From 516c9e7becd86046747318850f62d90883a50808 Mon Sep 17 00:00:00 2001 From: p31729568 Date: Sun, 29 Sep 2019 15:40:08 +0800 Subject: [PATCH 1/3] admin: modify user inport --- app/imports/admins/import_user_excel.rb | 22 +---- app/models/user.rb | 11 +++ app/services/admins/import_user_service.rb | 109 ++++++++++----------- 3 files changed, 66 insertions(+), 76 deletions(-) diff --git a/app/imports/admins/import_user_excel.rb b/app/imports/admins/import_user_excel.rb index a1d13e356..f8a98c440 100644 --- a/app/imports/admins/import_user_excel.rb +++ b/app/imports/admins/import_user_excel.rb @@ -1,33 +1,19 @@ class Admins::ImportUserExcel < BaseImportXlsx - UserData = Struct.new(:student_id, :name, :department_name, :identity, :technical_title, :phone) + UserData = Struct.new(:name, :phone, :mail, :school, :department, :identity, :student_id) def read_each(&block) - sheet.each_row_streaming(pad_cells: true, offset: 3) do |row| - data = row.map(&method(:cell_value))[0..5] + sheet.each_row_streaming(pad_cells: true, offset: 1) do |row| + data = row.map(&method(:cell_value))[0..7] block.call UserData.new(*data) end end - def school - @school ||= begin - school_id = sheet.cell(1, 1).to_s.strip - school_name = sheet.cell(1, 2).to_s.strip - - School.find_by(id: school_id, name: school_name) - end - end - - def identifier - @_identifier ||= sheet.cell(2, 1).to_s.strip - end - private def check_sheet_valid! - raise_import_error('请按照模板格式导入') if school.blank? end def cell_value(obj) - obj&.cell_value + obj&.cell_value&.presence end end diff --git a/app/models/user.rb b/app/models/user.rb index 0ff967a1a..0f169b5a4 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -28,6 +28,8 @@ class User < ApplicationRecord MIX_PASSWORD_LIMIT = 8 + CHARS = %W(2 3 4 5 6 7 8 9 a b c f e f g h i j k l m n o p q r s t u v w x y z) + has_one :user_extension, dependent: :destroy accepts_nested_attributes_for :user_extension, update_only: true @@ -611,6 +613,15 @@ class User < ApplicationRecord admin? || business? end + def self.generate_login(prefix = 'p') + code = CHARS.sample(8).join + while User.exists?(login: prefix + code) do + code = CHARS.sample(8).join + end + + prefix + code + end + protected def validate_password_length # 管理员的初始密码是5位 diff --git a/app/services/admins/import_user_service.rb b/app/services/admins/import_user_service.rb index f3408051b..437607be3 100644 --- a/app/services/admins/import_user_service.rb +++ b/app/services/admins/import_user_service.rb @@ -1,7 +1,8 @@ class Admins::ImportUserService < ApplicationService Error = Class.new(StandardError) - attr_reader :file, :school, :prefix, :result + attr_reader :file, :result + attr_accessor :school, :department def initialize(file) @file = file @@ -12,9 +13,6 @@ class Admins::ImportUserService < ApplicationService raise Error, '文件不存在' if file.blank? excel = Admins::ImportUserExcel.new(file) - @school = excel.school - @prefix = excel.identifier - excel.read_each(&method(:save_user)) result @@ -25,68 +23,63 @@ class Admins::ImportUserService < ApplicationService private def save_user(data) - user = find_user(data) + ActiveRecord::Base.transaction do + if school.blank? || school.name != data.school + @school = School.find_or_create_by!(name: data.school) + end + if department.blank? || department.school_id != school.id || department.name != data.department + @department = school.departments.find_or_initialize_by(name: data.department) + @department.is_auth = true + @department.save! + end + + user = + if data.phone && data.mail + User.find_by(phone: data.phone, mail: data.mail) + elsif data.phone && data.mail.blank? + User.find_by(phone: data.phone) + elsif data.phone.blank? && data.mail + User.find_by(mail: data.mail) + elsif + User.joins(:user_extension).where(user_extensions: { student_id: data.student_id }).first + end + + user ||= User.new + + attrs = { + type: 'User', + status: User::STATUS_ACTIVE, + login: user.login.presence || data.student_id || User.generate_login, + firstname: '', + lastname: data.name, + nickname: data.name, + password: '12345678', + professional_certification: 1, + certification: 1, + phone: data.phone, + mail: data.mail, + profile_completed: true, + } + user.assign_attributes(attrs) + user.save! + + identity = data.identity.present? ? data.identity.to_i : 2 - if user.blank? - create_user(data) - else - user.update_column(:certification, 1) + extension_attrs = { + school_id: school.id, location: school.province, location_city: school.city, + gender: 0, identity: identity, department_id: department.id, student_id: data.student_id.presence + } + extension = user.user_extension || user.build_user_extension + extension.assign_attributes(extension_attrs) + extension.save! end result[:success] += 1 rescue Exception => ex fail_data = data.as_json - fail_data[:data] = fail_data.values.join(',') + fail_data[:data] = fail_data.values.join(',') fail_data[:message] = ex.message result[:fail] << fail_data end - - def create_user(data) - department = school.departments.find_by(name: data.department_name) - - attr = { - type: 'User', - status: User::STATUS_ACTIVE, - login: "#{prefix}#{data.student_id}", - firstname: '', - lastname: data.name, - nickname: data.name, - professional_certification: 1, - certification: 1, - password: '12345678', - phone: data.phone, - mail: "#{prefix}#{data.student_id}@qq.com", - profile_completed: true - } - ActiveRecord::Base.transaction do - user = User.create!(attr) - - extension_attr = { - school_id: school.id, location: school.province, location_city: school.city, - gender: 0, identity: data.identity.to_i, department_id: department&.id, student_id: data.student_id - } - - extension_attr[:technical_title] = - case data.identity.to_i - when 0 then %w(教授 副教授 讲师 助教).include?(data.technical_title) ? data.technical_title : '讲师' - when 2 then %w(企业管理者 部门管理者 高级工程师 工程师 助理工程师).include?(data.technical_title) ? data.technical_title : '助理工程师' - else nil - end - - user.create_user_extension!(extension_attr) - end - end - - def find_user(data) - users = User.joins(:user_extension).where(user_extensions: { identity: data.identity, school_id: school.id }) - - if data.identity.to_i == 1 - users = users.where(user_extensions: { student_id: data.student_id }) - else - users = users.where(user_extensions: { technical_title: data.technical_title }).where('CONCAT(users.lastname,users.firstname) = ?', data.name) - end - - users.first - end end \ No newline at end of file From 9fccdb7c062834cbbe63ce8905092d15c45d5eec Mon Sep 17 00:00:00 2001 From: p31729568 Date: Mon, 30 Sep 2019 10:01:29 +0800 Subject: [PATCH 2/3] admin: banner image manager --- .../javascripts/admins/carousels/index.js | 125 ++++++++++++++++++ app/assets/stylesheets/admins/carousels.scss | 60 +++++++++ .../admins/carousels_controller.rb | 80 +++++++++++ app/models/portal_image.rb | 3 + .../admins/drag_portal_image_service.rb | 35 +++++ app/views/admins/carousels/index.html.erb | 43 ++++++ .../shared/_add_carousel_modal.html.erb | 36 +++++ app/views/admins/shared/_sidebar.html.erb | 3 +- config/routes.rb | 3 + ...20190930010405_resort_portal_image_data.rb | 7 + 10 files changed, 394 insertions(+), 1 deletion(-) create mode 100644 app/assets/javascripts/admins/carousels/index.js create mode 100644 app/assets/stylesheets/admins/carousels.scss create mode 100644 app/controllers/admins/carousels_controller.rb create mode 100644 app/services/admins/drag_portal_image_service.rb create mode 100644 app/views/admins/carousels/index.html.erb create mode 100644 app/views/admins/carousels/shared/_add_carousel_modal.html.erb create mode 100644 db/migrate/20190930010405_resort_portal_image_data.rb diff --git a/app/assets/javascripts/admins/carousels/index.js b/app/assets/javascripts/admins/carousels/index.js new file mode 100644 index 000000000..0f279f17e --- /dev/null +++ b/app/assets/javascripts/admins/carousels/index.js @@ -0,0 +1,125 @@ +$(document).on('turbolinks:load', function() { + if ($('body.admins-carousels-index-page').length > 0) { + // ------------ 保存链接 ----------- + $('.carousels-card').on('click', '.save-data-btn', function(){ + var $link = $(this); + var id = $link.data('id'); + var link = $('.custom-carousel-item-' + id).find('.link-input').val(); + var name = $('.custom-carousel-item-' + id).find('.name-input').val(); + if(!name || name.length == 0){ + $.notify({ message: '名称不能为空' },{ type: 'danger' }); + return; + } + $link.attr('disabled', true); + + $.ajax({ + url: '/admins/carousels/' + id, + method: 'PATCH', + dataType: 'json', + data: { link: link, name: name }, + success: function(data){ + $.notify({ message: '操作成功' }); + }, + error: ajaxErrorNotifyHandler, + complete: function(){ + $link.removeAttr('disabled'); + } + }) + }); + // -------------- 是否在首页展示 -------------- + $('.carousels-card').on('change', '.online-check-box', function(){ + var $checkbox = $(this); + var id = $checkbox.data('id'); + var checked = $checkbox.is(':checked'); + $checkbox.attr('disabled', true); + + $.ajax({ + url: '/admins/carousels/' + id, + method: 'PATCH', + dataType: 'json', + data: { status: checked }, + success: function(data){ + $.notify({ message: '保存成功' }); + var box = $('.custom-carousel-item-' + id).find('.drag'); + if(checked){ + box.removeClass('not_active'); + }else{ + box.addClass('not_active'); + } + }, + error: ajaxErrorNotifyHandler, + complete: function(){ + $checkbox.removeAttr('disabled'); + } + }) + }); + + // ------------ 拖拽 ------------- + var onDropFunc = function(el, _target, _source, sibling){ + var moveId = $(el).data('id'); + var insertId = $(sibling).data('id') || ''; + + $.ajax({ + url: '/admins/carousels/drag', + method: 'POST', + dataType: 'json', + data: { move_id: moveId, after_id: insertId }, + success: function(data){ + $('#carousels-container .custom-carousel-item-no').each(function(index, ele){ + $(ele).html(index + 1); + }) + }, + error: function(res){ + var data = res.responseJSON; + $.notify({message: '移动失败,原因:' + data.message}, {type: 'danger'}); + } + }) + }; + var ele1 = document.getElementById('carousels-container'); + dragula([ele1], { mirrorContainer: ele1 }).on('drop', onDropFunc); + + + // ----------- 新增 -------------- + var $createModal = $('.modal.admin-add-carousel-modal'); + var $createForm = $createModal.find('form.admin-add-carousel-form'); + + $createForm.validate({ + errorElement: 'span', + errorClass: 'danger text-danger', + rules: { + "portal_image[image]": { + required: true + }, + "portal_image[name]": { + required: true + }, + } + }); + + $createModal.on('show.bs.modal', function(event){ + resetFileInputFunc($createModal.find('.img-file-input')); + $createModal.find('.file-names').html('选择文件'); + }); + + $createModal.on('click', '.submit-btn', function() { + $createForm.find('.error').html(''); + + if ($createForm.valid()) { + $createForm.submit(); + } else { + $createForm.find('.error').html('请选择图片'); + } + }); + $createModal.on('change', '.img-file-input', function(){ + var file = $(this)[0].files[0]; + $createModal.find('.file-names').html(file ? file.name : '请选择文件'); + }) + + // -------------- 重新上传图片 -------------- + //replace_image_url + $('.modal.admin-upload-file-modal').on('upload:success', function(e, data){ + var $carouselItem = $('.custom-carousel-item-' + data.source_id); + $carouselItem.find('.custom-carousel-item-img img').attr('src', data.url); + }) + } +}) \ No newline at end of file diff --git a/app/assets/stylesheets/admins/carousels.scss b/app/assets/stylesheets/admins/carousels.scss new file mode 100644 index 000000000..8e8728aaf --- /dev/null +++ b/app/assets/stylesheets/admins/carousels.scss @@ -0,0 +1,60 @@ +.admins-carousels-index-page { + .carousels-card { + .custom-carousel-item { + & > .drag { + cursor: move; + background: #fff; + box-shadow: 1px 2px 5px 3px #f0f0f0; + } + + &-no { + font-size: 28px; + text-align: center; + } + + &-img { + cursor: pointer; + width: 100%; + height: 60px; + + & > img { + display: block; + width: 100%; + height: 60px; + background: #F5F5F5; + } + } + + .not_active { + background: #F0F0F0; + } + + .delete-btn { + font-size: 20px; + color: red; + cursor: pointer; + } + + .save-url-btn { + cursor: pointer; + } + + .operate-box { + display: flex; + justify-content: space-between; + align-items: center; + } + + .online-check-box { + font-size: 20px; + } + + .name-input { + flex: 1; + } + .link-input { + flex: 3; + } + } + } +} \ No newline at end of file diff --git a/app/controllers/admins/carousels_controller.rb b/app/controllers/admins/carousels_controller.rb new file mode 100644 index 000000000..67518174c --- /dev/null +++ b/app/controllers/admins/carousels_controller.rb @@ -0,0 +1,80 @@ +class Admins::CarouselsController < Admins::BaseController + before_action :convert_file!, only: [:create] + + def index + @images = PortalImage.order(position: :asc) + end + + def create + position = PortalImage.count + 1 + + ActiveRecord::Base.transaction do + image = PortalImage.create!(create_params.merge(position: position)) + + file_path = Util::FileManage.disk_filename('PortalImage', image.id) + File.delete(file_path) if File.exist?(file_path) # 删除之前的文件 + Util.write_file(@file, file_path) + end + + flash[:success] = '保存成功' + redirect_to admins_carousels_path + end + + def update + current_image.update!(update_params) + render_ok + end + + def destroy + ActiveRecord::Base.transaction do + current_image.destroy! + # 前移 + PortalImage.where('position > ?', current_image.position) + .update_all('position = position - 1') + + file_path = Util::FileManage.disk_filename('PortalImage', current_image.id) + File.delete(file_path) if File.exist?(file_path) + end + render_delete_success + end + + def drag + move = PortalImage.find_by(id: params[:move_id]) + after = PortalImage.find_by(id: params[:after_id]) + + Admins::DragPortalImageService.call(move, after) + render_ok + rescue Admins::DragPortalImageService::Error => e + render_error(e.message) + end + + private + + def current_image + @_current_image ||= PortalImage.find(params[:id]) + end + + def create_params + params.require(:portal_image).permit(:name, :link) + end + + def update_params + params.permit(:name, :link, :status) + end + + def convert_file! + max_size = 10 * 1024 * 1024 # 10M + file = params.dig('portal_image', 'image') + if file.class == ActionDispatch::Http::UploadedFile + @file = file + render_error('请上传文件') if @file.size.zero? + render_error('文件大小超过限制') if @file.size > max_size + else + file = file.to_s.strip + return render_error('请上传正确的图片') if file.blank? + @file = Util.convert_base64_image(file, max_size: max_size) + end + rescue Base64ImageConverter::Error => ex + render_error(ex.message) + end +end \ No newline at end of file diff --git a/app/models/portal_image.rb b/app/models/portal_image.rb index 24b9af39d..a3fd71bb5 100644 --- a/app/models/portal_image.rb +++ b/app/models/portal_image.rb @@ -1,2 +1,5 @@ class PortalImage < ApplicationRecord + def online? + status? + end end diff --git a/app/services/admins/drag_portal_image_service.rb b/app/services/admins/drag_portal_image_service.rb new file mode 100644 index 000000000..6fe1ea86d --- /dev/null +++ b/app/services/admins/drag_portal_image_service.rb @@ -0,0 +1,35 @@ +class Admins::DragPortalImageService < ApplicationService + Error = Class.new(StandardError) + + attr_reader :move, :after + + def initialize(move, after) + @move = move + @after = after # 移动后下一个位置的元素 + end + + def call + return if move.position + 1 == after&.position # 未移动 + + images = PortalImage.all + + ActiveRecord::Base.transaction do + if after.blank? # 移动至末尾 + total = images.count + + images.where('position > ?', move.position).update_all('position = position - 1') + move.update!(position: total) + return + end + + if move.position > after.position # 前移 + images.where('position >= ? AND position < ?', after.position, move.position).update_all('position = position + 1') + move.update!(position: after.position) + else # 后移 + images.where('position > ? AND position <= ?', move.position, after.position).update_all('position = position - 1') + move.update!(position: after.position) + end + end + end + +end \ No newline at end of file diff --git a/app/views/admins/carousels/index.html.erb b/app/views/admins/carousels/index.html.erb new file mode 100644 index 000000000..89c224784 --- /dev/null +++ b/app/views/admins/carousels/index.html.erb @@ -0,0 +1,43 @@ +<% + define_admin_breadcrumbs do + add_admin_breadcrumb('轮播图') + end +%> + +
+
+ 首页轮播图(拖动排序) + <%= javascript_void_link '添加', class: 'btn btn-primary btn-sm add-btn', data: { toggle: 'modal', target: '.admin-add-carousel-modal' } %> +
+
+ <% @images.each_with_index do |image, index| %> + + <% end %> +
+
+ + +<%= render partial: 'admins/carousels/shared/add_carousel_modal' %> +<%= render partial: 'admins/shared/modal/upload_file_modal' %> \ No newline at end of file diff --git a/app/views/admins/carousels/shared/_add_carousel_modal.html.erb b/app/views/admins/carousels/shared/_add_carousel_modal.html.erb new file mode 100644 index 000000000..d1e75e29e --- /dev/null +++ b/app/views/admins/carousels/shared/_add_carousel_modal.html.erb @@ -0,0 +1,36 @@ + \ No newline at end of file diff --git a/app/views/admins/shared/_sidebar.html.erb b/app/views/admins/shared/_sidebar.html.erb index 2d9461f45..553820e69 100644 --- a/app/views/admins/shared/_sidebar.html.erb +++ b/app/views/admins/shared/_sidebar.html.erb @@ -77,7 +77,8 @@
  • - <%= sidebar_item_group('#helps-submenu', '帮助中心', icon: 'info-circle') do %> + <%= sidebar_item_group('#setting-submenu', '网站建设', icon: 'cogs') do %> +
  • <%= sidebar_item(admins_carousels_path, '轮播图', icon: 'image', controller: 'admins-carousels') %>
  • <%= sidebar_item(edit_admins_about_path, '关于我们', icon: 'smile-o', controller: 'admins-abouts') %>
  • <%= sidebar_item(edit_admins_contact_us_path, '联系我们', icon: 'commenting-o', controller: 'admins-contact_us') %>
  • <%= sidebar_item(admins_cooperatives_path, '合作伙伴', icon: 'handshake-o', controller: 'admins-cooperatives') %>
  • diff --git a/config/routes.rb b/config/routes.rb index e37f447bd..c39356cb2 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -967,6 +967,9 @@ Rails.application.routes.draw do post :drag, on: :collection post :replace_image_url, on: :member end + resources :carousels, only: [:index, :create, :update, :destroy] do + post :drag, on: :collection + end end resources :colleges, only: [] do diff --git a/db/migrate/20190930010405_resort_portal_image_data.rb b/db/migrate/20190930010405_resort_portal_image_data.rb new file mode 100644 index 000000000..665b48466 --- /dev/null +++ b/db/migrate/20190930010405_resort_portal_image_data.rb @@ -0,0 +1,7 @@ +class ResortPortalImageData < ActiveRecord::Migration[5.2] + def change + PortalImage.order(position: :asc).each_with_index do |image, index| + image.update!(position: index + 1) + end + end +end From 2f3f0c34794502901e9108a7699654a6eca787ce Mon Sep 17 00:00:00 2001 From: p31729568 Date: Mon, 30 Sep 2019 14:43:33 +0800 Subject: [PATCH 3/3] precompile admin assets --- ...fest-90de7beed5564fc35f5bec59247d05aa.json | 2 +- ...d224a4b38117f594a02099231b7569263cb.css.gz | Bin 73007 -> 0 bytes ...274c3729fe20d37db68a54bb547269fa72dc7.css} | 5456 +- ...4c3729fe20d37db68a54bb547269fa72dc7.css.gz | Bin 0 -> 73199 bytes ...0da79ac246c2201868ef84654aa03bb6727b5a.js} | 126 + ...79ac246c2201868ef84654aa03bb6727b5a.js.gz} | Bin 959948 -> 960283 bytes ...2b3bc84fcdba125481dbe380a6533c05f22f3c.css | 57311 ++++++++++++++++ ...bc84fcdba125481dbe380a6533c05f22f3c.css.gz | Bin 0 -> 158021 bytes ...bf0d057ccc6454d07cfaafac3b06da37b8437.css} | 5378 +- ...0d057ccc6454d07cfaafac3b06da37b8437.css.gz | Bin 0 -> 43439 bytes ...68ecfb0af719c34efb70a827ead6fc7dfb1.css.gz | Bin 43436 -> 0 bytes 11 files changed, 62891 insertions(+), 5382 deletions(-) delete mode 100644 public/assets/admin-6ca7b4a84aaf88d838da2e100eac0d224a4b38117f594a02099231b7569263cb.css.gz rename public/assets/{admin-6ca7b4a84aaf88d838da2e100eac0d224a4b38117f594a02099231b7569263cb.css => admin-83f62f1d834d6b6790a87ca6927274c3729fe20d37db68a54bb547269fa72dc7.css} (79%) create mode 100644 public/assets/admin-83f62f1d834d6b6790a87ca6927274c3729fe20d37db68a54bb547269fa72dc7.css.gz rename public/assets/{admin-432c4eac09b036c57ff1e88d902b8aa7df81164e4b419bac557cf1366c1d3ad9.js => admin-978e5ce607f77c26814a174f480da79ac246c2201868ef84654aa03bb6727b5a.js} (99%) rename public/assets/{admin-432c4eac09b036c57ff1e88d902b8aa7df81164e4b419bac557cf1366c1d3ad9.js.gz => admin-978e5ce607f77c26814a174f480da79ac246c2201868ef84654aa03bb6727b5a.js.gz} (98%) create mode 100644 public/assets/application-3aaf730b0754ed5e84bd381bc42b3bc84fcdba125481dbe380a6533c05f22f3c.css create mode 100644 public/assets/application-3aaf730b0754ed5e84bd381bc42b3bc84fcdba125481dbe380a6533c05f22f3c.css.gz rename public/assets/{college-55ed707c611d1162b786815686efe68ecfb0af719c34efb70a827ead6fc7dfb1.css => college-38f953d6ba5b85d3fab63cb3c2bbf0d057ccc6454d07cfaafac3b06da37b8437.css} (70%) create mode 100644 public/assets/college-38f953d6ba5b85d3fab63cb3c2bbf0d057ccc6454d07cfaafac3b06da37b8437.css.gz delete mode 100644 public/assets/college-55ed707c611d1162b786815686efe68ecfb0af719c34efb70a827ead6fc7dfb1.css.gz diff --git a/public/assets/.sprockets-manifest-90de7beed5564fc35f5bec59247d05aa.json b/public/assets/.sprockets-manifest-90de7beed5564fc35f5bec59247d05aa.json index b2b7293b3..8277e1080 100644 --- a/public/assets/.sprockets-manifest-90de7beed5564fc35f5bec59247d05aa.json +++ b/public/assets/.sprockets-manifest-90de7beed5564fc35f5bec59247d05aa.json @@ -1 +1 @@ -{"files":{"admin-432c4eac09b036c57ff1e88d902b8aa7df81164e4b419bac557cf1366c1d3ad9.js":{"logical_path":"admin.js","mtime":"2019-09-27T10:23:26+08:00","size":4383103,"digest":"432c4eac09b036c57ff1e88d902b8aa7df81164e4b419bac557cf1366c1d3ad9","integrity":"sha256-QyxOrAmwNsV/8eiNkCuKp9+BFk5LQZusVXzxNmwdOtk="},"admin-6ca7b4a84aaf88d838da2e100eac0d224a4b38117f594a02099231b7569263cb.css":{"logical_path":"admin.css","mtime":"2019-09-26T14:45:59+08:00","size":840235,"digest":"6ca7b4a84aaf88d838da2e100eac0d224a4b38117f594a02099231b7569263cb","integrity":"sha256-bKe0qEqviNg42i4QDqwNIkpLOBF/WUoCCZIxt1aSY8s="},"font-awesome/fontawesome-webfont-7bfcab6db99d5cfbf1705ca0536ddc78585432cc5fa41bbd7ad0f009033b2979.eot":{"logical_path":"font-awesome/fontawesome-webfont.eot","mtime":"2019-08-30T10:00:22+08:00","size":165742,"digest":"7bfcab6db99d5cfbf1705ca0536ddc78585432cc5fa41bbd7ad0f009033b2979","integrity":"sha256-e/yrbbmdXPvxcFygU23ceFhUMsxfpBu9etDwCQM7KXk="},"font-awesome/fontawesome-webfont-2adefcbc041e7d18fcf2d417879dc5a09997aa64d675b7a3c4b6ce33da13f3fe.woff2":{"logical_path":"font-awesome/fontawesome-webfont.woff2","mtime":"2019-08-30T10:00:22+08:00","size":77160,"digest":"2adefcbc041e7d18fcf2d417879dc5a09997aa64d675b7a3c4b6ce33da13f3fe","integrity":"sha256-Kt78vAQefRj88tQXh53FoJmXqmTWdbejxLbOM9oT8/4="},"font-awesome/fontawesome-webfont-ba0c59deb5450f5cb41b3f93609ee2d0d995415877ddfa223e8a8a7533474f07.woff":{"logical_path":"font-awesome/fontawesome-webfont.woff","mtime":"2019-08-30T10:00:22+08:00","size":98024,"digest":"ba0c59deb5450f5cb41b3f93609ee2d0d995415877ddfa223e8a8a7533474f07","integrity":"sha256-ugxZ3rVFD1y0Gz+TYJ7i0NmVQVh33foiPoqKdTNHTwc="},"font-awesome/fontawesome-webfont-aa58f33f239a0fb02f5c7a6c45c043d7a9ac9a093335806694ecd6d4edc0d6a8.ttf":{"logical_path":"font-awesome/fontawesome-webfont.ttf","mtime":"2019-08-30T10:00:22+08:00","size":165548,"digest":"aa58f33f239a0fb02f5c7a6c45c043d7a9ac9a093335806694ecd6d4edc0d6a8","integrity":"sha256-qljzPyOaD7AvXHpsRcBD16msmgkzNYBmlOzW1O3A1qg="},"font-awesome/fontawesome-webfont-ad6157926c1622ba4e1d03d478f1541368524bfc46f51e42fe0d945f7ef323e4.svg":{"logical_path":"font-awesome/fontawesome-webfont.svg","mtime":"2019-08-30T10:00:22+08:00","size":444379,"digest":"ad6157926c1622ba4e1d03d478f1541368524bfc46f51e42fe0d945f7ef323e4","integrity":"sha256-rWFXkmwWIrpOHQPUePFUE2hSS/xG9R5C/g2UX37zI+Q="},"college-18f5e8400331634e898a35acc2187815c096c25e0ab74aba341ae916166cd287.js":{"logical_path":"college.js","mtime":"2019-09-27T10:23:26+08:00","size":3352744,"digest":"18f5e8400331634e898a35acc2187815c096c25e0ab74aba341ae916166cd287","integrity":"sha256-GPXoQAMxY06JijWswhh4FcCWwl4Kt0q6NBrpFhZs0oc="},"college-55ed707c611d1162b786815686efe68ecfb0af719c34efb70a827ead6fc7dfb1.css":{"logical_path":"college.css","mtime":"2019-09-12T11:13:32+08:00","size":579109,"digest":"55ed707c611d1162b786815686efe68ecfb0af719c34efb70a827ead6fc7dfb1","integrity":"sha256-Ve1wfGEdEWK3hoFWhu/mjs+wr3GcNO+3CoJ+rW/H37E="},"logo-176bc9e040958e2b21bdb9747ac96dc66f90d4b6a401487603a6bd62fb1e2794.png":{"logical_path":"logo.png","mtime":"2019-09-27T10:18:27+08:00","size":4926,"digest":"176bc9e040958e2b21bdb9747ac96dc66f90d4b6a401487603a6bd62fb1e2794","integrity":"sha256-F2vJ4ECVjishvbl0esltxm+Q1LakAUh2A6a9YvseJ5Q="},"application-9cfbc3d792599a1d0de5c7b84209e1c2b2e60336f0f01e19f0581663918708fb.js":{"logical_path":"application.js","mtime":"2019-09-27T10:23:26+08:00","size":600706,"digest":"9cfbc3d792599a1d0de5c7b84209e1c2b2e60336f0f01e19f0581663918708fb","integrity":"sha256-nPvD15JZmh0N5ce4QgnhwrLmAzbw8B4Z8FgWY5GHCPs="},"application-9e90af35b93bc5ed1b294930f54696c175ef7beb01be2c0b98aedbab7fae3d66.css":{"logical_path":"application.css","mtime":"2019-09-27T10:17:40+08:00","size":1989051,"digest":"9e90af35b93bc5ed1b294930f54696c175ef7beb01be2c0b98aedbab7fae3d66","integrity":"sha256-npCvNbk7xe0bKUkw9UaWwXXve+sBviwLmK7bq3+uPWY="}},"assets":{"admin.js":"admin-432c4eac09b036c57ff1e88d902b8aa7df81164e4b419bac557cf1366c1d3ad9.js","admin.css":"admin-6ca7b4a84aaf88d838da2e100eac0d224a4b38117f594a02099231b7569263cb.css","font-awesome/fontawesome-webfont.eot":"font-awesome/fontawesome-webfont-7bfcab6db99d5cfbf1705ca0536ddc78585432cc5fa41bbd7ad0f009033b2979.eot","font-awesome/fontawesome-webfont.woff2":"font-awesome/fontawesome-webfont-2adefcbc041e7d18fcf2d417879dc5a09997aa64d675b7a3c4b6ce33da13f3fe.woff2","font-awesome/fontawesome-webfont.woff":"font-awesome/fontawesome-webfont-ba0c59deb5450f5cb41b3f93609ee2d0d995415877ddfa223e8a8a7533474f07.woff","font-awesome/fontawesome-webfont.ttf":"font-awesome/fontawesome-webfont-aa58f33f239a0fb02f5c7a6c45c043d7a9ac9a093335806694ecd6d4edc0d6a8.ttf","font-awesome/fontawesome-webfont.svg":"font-awesome/fontawesome-webfont-ad6157926c1622ba4e1d03d478f1541368524bfc46f51e42fe0d945f7ef323e4.svg","college.js":"college-18f5e8400331634e898a35acc2187815c096c25e0ab74aba341ae916166cd287.js","college.css":"college-55ed707c611d1162b786815686efe68ecfb0af719c34efb70a827ead6fc7dfb1.css","logo.png":"logo-176bc9e040958e2b21bdb9747ac96dc66f90d4b6a401487603a6bd62fb1e2794.png","application.js":"application-9cfbc3d792599a1d0de5c7b84209e1c2b2e60336f0f01e19f0581663918708fb.js","application.css":"application-9e90af35b93bc5ed1b294930f54696c175ef7beb01be2c0b98aedbab7fae3d66.css"}} \ No newline at end of file +{"files":{"admin-432c4eac09b036c57ff1e88d902b8aa7df81164e4b419bac557cf1366c1d3ad9.js":{"logical_path":"admin.js","mtime":"2019-09-27T10:23:26+08:00","size":4383103,"digest":"432c4eac09b036c57ff1e88d902b8aa7df81164e4b419bac557cf1366c1d3ad9","integrity":"sha256-QyxOrAmwNsV/8eiNkCuKp9+BFk5LQZusVXzxNmwdOtk="},"admin-6ca7b4a84aaf88d838da2e100eac0d224a4b38117f594a02099231b7569263cb.css":{"logical_path":"admin.css","mtime":"2019-09-26T14:45:59+08:00","size":840235,"digest":"6ca7b4a84aaf88d838da2e100eac0d224a4b38117f594a02099231b7569263cb","integrity":"sha256-bKe0qEqviNg42i4QDqwNIkpLOBF/WUoCCZIxt1aSY8s="},"font-awesome/fontawesome-webfont-7bfcab6db99d5cfbf1705ca0536ddc78585432cc5fa41bbd7ad0f009033b2979.eot":{"logical_path":"font-awesome/fontawesome-webfont.eot","mtime":"2019-08-14T17:22:43+08:00","size":165742,"digest":"7bfcab6db99d5cfbf1705ca0536ddc78585432cc5fa41bbd7ad0f009033b2979","integrity":"sha256-e/yrbbmdXPvxcFygU23ceFhUMsxfpBu9etDwCQM7KXk="},"font-awesome/fontawesome-webfont-2adefcbc041e7d18fcf2d417879dc5a09997aa64d675b7a3c4b6ce33da13f3fe.woff2":{"logical_path":"font-awesome/fontawesome-webfont.woff2","mtime":"2019-08-14T17:22:43+08:00","size":77160,"digest":"2adefcbc041e7d18fcf2d417879dc5a09997aa64d675b7a3c4b6ce33da13f3fe","integrity":"sha256-Kt78vAQefRj88tQXh53FoJmXqmTWdbejxLbOM9oT8/4="},"font-awesome/fontawesome-webfont-ba0c59deb5450f5cb41b3f93609ee2d0d995415877ddfa223e8a8a7533474f07.woff":{"logical_path":"font-awesome/fontawesome-webfont.woff","mtime":"2019-08-14T17:22:43+08:00","size":98024,"digest":"ba0c59deb5450f5cb41b3f93609ee2d0d995415877ddfa223e8a8a7533474f07","integrity":"sha256-ugxZ3rVFD1y0Gz+TYJ7i0NmVQVh33foiPoqKdTNHTwc="},"font-awesome/fontawesome-webfont-aa58f33f239a0fb02f5c7a6c45c043d7a9ac9a093335806694ecd6d4edc0d6a8.ttf":{"logical_path":"font-awesome/fontawesome-webfont.ttf","mtime":"2019-08-14T17:22:43+08:00","size":165548,"digest":"aa58f33f239a0fb02f5c7a6c45c043d7a9ac9a093335806694ecd6d4edc0d6a8","integrity":"sha256-qljzPyOaD7AvXHpsRcBD16msmgkzNYBmlOzW1O3A1qg="},"font-awesome/fontawesome-webfont-ad6157926c1622ba4e1d03d478f1541368524bfc46f51e42fe0d945f7ef323e4.svg":{"logical_path":"font-awesome/fontawesome-webfont.svg","mtime":"2019-08-14T17:22:43+08:00","size":444379,"digest":"ad6157926c1622ba4e1d03d478f1541368524bfc46f51e42fe0d945f7ef323e4","integrity":"sha256-rWFXkmwWIrpOHQPUePFUE2hSS/xG9R5C/g2UX37zI+Q="},"college-18f5e8400331634e898a35acc2187815c096c25e0ab74aba341ae916166cd287.js":{"logical_path":"college.js","mtime":"2019-09-29T14:22:42+08:00","size":3352744,"digest":"18f5e8400331634e898a35acc2187815c096c25e0ab74aba341ae916166cd287","integrity":"sha256-GPXoQAMxY06JijWswhh4FcCWwl4Kt0q6NBrpFhZs0oc="},"college-55ed707c611d1162b786815686efe68ecfb0af719c34efb70a827ead6fc7dfb1.css":{"logical_path":"college.css","mtime":"2019-09-12T11:13:32+08:00","size":579109,"digest":"55ed707c611d1162b786815686efe68ecfb0af719c34efb70a827ead6fc7dfb1","integrity":"sha256-Ve1wfGEdEWK3hoFWhu/mjs+wr3GcNO+3CoJ+rW/H37E="},"logo-176bc9e040958e2b21bdb9747ac96dc66f90d4b6a401487603a6bd62fb1e2794.png":{"logical_path":"logo.png","mtime":"2019-09-29T14:22:42+08:00","size":4926,"digest":"176bc9e040958e2b21bdb9747ac96dc66f90d4b6a401487603a6bd62fb1e2794","integrity":"sha256-F2vJ4ECVjishvbl0esltxm+Q1LakAUh2A6a9YvseJ5Q="},"application-9cfbc3d792599a1d0de5c7b84209e1c2b2e60336f0f01e19f0581663918708fb.js":{"logical_path":"application.js","mtime":"2019-09-29T14:22:42+08:00","size":600706,"digest":"9cfbc3d792599a1d0de5c7b84209e1c2b2e60336f0f01e19f0581663918708fb","integrity":"sha256-nPvD15JZmh0N5ce4QgnhwrLmAzbw8B4Z8FgWY5GHCPs="},"application-9e90af35b93bc5ed1b294930f54696c175ef7beb01be2c0b98aedbab7fae3d66.css":{"logical_path":"application.css","mtime":"2019-09-27T10:17:40+08:00","size":1989051,"digest":"9e90af35b93bc5ed1b294930f54696c175ef7beb01be2c0b98aedbab7fae3d66","integrity":"sha256-npCvNbk7xe0bKUkw9UaWwXXve+sBviwLmK7bq3+uPWY="},"admin-978e5ce607f77c26814a174f480da79ac246c2201868ef84654aa03bb6727b5a.js":{"logical_path":"admin.js","mtime":"2019-09-30T14:38:12+08:00","size":4387200,"digest":"978e5ce607f77c26814a174f480da79ac246c2201868ef84654aa03bb6727b5a","integrity":"sha256-l45c5gf3fCaBShdPSA2nmsJGwiAYaO+EZUqgO7Zye1o="},"admin-83f62f1d834d6b6790a87ca6927274c3729fe20d37db68a54bb547269fa72dc7.css":{"logical_path":"admin.css","mtime":"2019-09-30T14:38:12+08:00","size":842411,"digest":"83f62f1d834d6b6790a87ca6927274c3729fe20d37db68a54bb547269fa72dc7","integrity":"sha256-g/YvHYNNa2eQqHymknJ0w3Kf4g0322ilS7VHJp+nLcc="},"college-38f953d6ba5b85d3fab63cb3c2bbf0d057ccc6454d07cfaafac3b06da37b8437.css":{"logical_path":"college.css","mtime":"2019-09-16T13:56:09+08:00","size":579109,"digest":"38f953d6ba5b85d3fab63cb3c2bbf0d057ccc6454d07cfaafac3b06da37b8437","integrity":"sha256-OPlT1rpbhdP6tjyzwrvw0FfMxkVNB8+q+sOwbaN7hDc="},"application-3aaf730b0754ed5e84bd381bc42b3bc84fcdba125481dbe380a6533c05f22f3c.css":{"logical_path":"application.css","mtime":"2019-09-30T14:38:12+08:00","size":1993402,"digest":"3aaf730b0754ed5e84bd381bc42b3bc84fcdba125481dbe380a6533c05f22f3c","integrity":"sha256-Oq9zCwdU7V6EvTgbxCs7yE/NuhJUgdvjgKZTPAXyLzw="}},"assets":{"admin.js":"admin-978e5ce607f77c26814a174f480da79ac246c2201868ef84654aa03bb6727b5a.js","admin.css":"admin-83f62f1d834d6b6790a87ca6927274c3729fe20d37db68a54bb547269fa72dc7.css","font-awesome/fontawesome-webfont.eot":"font-awesome/fontawesome-webfont-7bfcab6db99d5cfbf1705ca0536ddc78585432cc5fa41bbd7ad0f009033b2979.eot","font-awesome/fontawesome-webfont.woff2":"font-awesome/fontawesome-webfont-2adefcbc041e7d18fcf2d417879dc5a09997aa64d675b7a3c4b6ce33da13f3fe.woff2","font-awesome/fontawesome-webfont.woff":"font-awesome/fontawesome-webfont-ba0c59deb5450f5cb41b3f93609ee2d0d995415877ddfa223e8a8a7533474f07.woff","font-awesome/fontawesome-webfont.ttf":"font-awesome/fontawesome-webfont-aa58f33f239a0fb02f5c7a6c45c043d7a9ac9a093335806694ecd6d4edc0d6a8.ttf","font-awesome/fontawesome-webfont.svg":"font-awesome/fontawesome-webfont-ad6157926c1622ba4e1d03d478f1541368524bfc46f51e42fe0d945f7ef323e4.svg","college.js":"college-18f5e8400331634e898a35acc2187815c096c25e0ab74aba341ae916166cd287.js","college.css":"college-38f953d6ba5b85d3fab63cb3c2bbf0d057ccc6454d07cfaafac3b06da37b8437.css","logo.png":"logo-176bc9e040958e2b21bdb9747ac96dc66f90d4b6a401487603a6bd62fb1e2794.png","application.js":"application-9cfbc3d792599a1d0de5c7b84209e1c2b2e60336f0f01e19f0581663918708fb.js","application.css":"application-3aaf730b0754ed5e84bd381bc42b3bc84fcdba125481dbe380a6533c05f22f3c.css"}} \ No newline at end of file diff --git a/public/assets/admin-6ca7b4a84aaf88d838da2e100eac0d224a4b38117f594a02099231b7569263cb.css.gz b/public/assets/admin-6ca7b4a84aaf88d838da2e100eac0d224a4b38117f594a02099231b7569263cb.css.gz deleted file mode 100644 index bce64d40789f1f1519535f545e1760f2f9854974..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 73007 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 diff --git a/public/assets/admin-6ca7b4a84aaf88d838da2e100eac0d224a4b38117f594a02099231b7569263cb.css b/public/assets/admin-83f62f1d834d6b6790a87ca6927274c3729fe20d37db68a54bb547269fa72dc7.css similarity index 79% rename from public/assets/admin-6ca7b4a84aaf88d838da2e100eac0d224a4b38117f594a02099231b7569263cb.css rename to public/assets/admin-83f62f1d834d6b6790a87ca6927274c3729fe20d37db68a54bb547269fa72dc7.css index 359032c95..e6e9d196b 100644 --- a/public/assets/admin-6ca7b4a84aaf88d838da2e100eac0d224a4b38117f594a02099231b7569263cb.css +++ b/public/assets/admin-83f62f1d834d6b6790a87ca6927274c3729fe20d37db68a54bb547269fa72dc7.css @@ -5,7 +5,7 @@ * Copyright 2011-2019 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ -/* line 1, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_root.scss */ +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_root.scss */ :root { --blue: #007bff; --indigo: #6610f2; @@ -37,14 +37,14 @@ --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } -/* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ *, *::before, *::after { box-sizing: border-box; } -/* line 25, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ html { font-family: sans-serif; line-height: 1.15; @@ -52,12 +52,12 @@ html { -webkit-tap-highlight-color: transparent; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { display: block; } -/* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; @@ -69,31 +69,31 @@ body { background-color: #fff; } -/* line 62, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ [tabindex="-1"]:focus { outline: 0 !important; } -/* line 72, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ hr { box-sizing: content-box; height: 0; overflow: visible; } -/* line 88, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ h1, h2, h3, h4, h5, h6 { margin-top: 0; margin-bottom: 0.5rem; } -/* line 97, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 97, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ p { margin-top: 0; margin-bottom: 1rem; } -/* line 110, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 110, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ abbr[title], abbr[data-original-title] { text-decoration: underline; @@ -105,14 +105,14 @@ abbr[data-original-title] { text-decoration-skip-ink: none; } -/* line 119, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 119, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ address { margin-bottom: 1rem; font-style: normal; line-height: inherit; } -/* line 125, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ ol, ul, dl { @@ -120,7 +120,7 @@ dl { margin-bottom: 1rem; } -/* line 132, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 132, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ ol ol, ul ul, ol ul, @@ -128,34 +128,34 @@ ul ol { margin-bottom: 0; } -/* line 139, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 139, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ dt { font-weight: 700; } -/* line 143, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ dd { margin-bottom: .5rem; margin-left: 0; } -/* line 148, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 148, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ blockquote { margin: 0 0 1rem; } -/* line 152, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 152, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ b, strong { font-weight: bolder; } -/* line 157, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 157, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ small { font-size: 80%; } -/* line 166, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 166, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ sub, sup { position: relative; @@ -164,47 +164,47 @@ sup { vertical-align: baseline; } -/* line 174, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 174, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ sub { bottom: -.25em; } -/* line 175, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 175, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ sup { top: -.5em; } -/* line 182, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 182, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ a { color: #007bff; text-decoration: none; background-color: transparent; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a:hover { color: #0056b3; text-decoration: underline; } -/* line 199, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 199, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ a:not([href]):not([tabindex]) { color: inherit; text-decoration: none; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus { color: inherit; text-decoration: none; } -/* line 208, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 208, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ a:not([href]):not([tabindex]):focus { outline: 0; } -/* line 218, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 218, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ pre, code, kbd, @@ -213,36 +213,36 @@ samp { font-size: 1em; } -/* line 226, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 226, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ pre { margin-top: 0; margin-bottom: 1rem; overflow: auto; } -/* line 240, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 240, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ figure { margin: 0 0 1rem; } -/* line 250, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 250, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ img { vertical-align: middle; border-style: none; } -/* line 255, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 255, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ svg { overflow: hidden; vertical-align: middle; } -/* line 267, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 267, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ table { border-collapse: collapse; } -/* line 271, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 271, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ caption { padding-top: 0.75rem; padding-bottom: 0.75rem; @@ -251,29 +251,29 @@ caption { caption-side: bottom; } -/* line 279, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 279, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ th { text-align: inherit; } -/* line 290, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 290, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ label { display: inline-block; margin-bottom: 0.5rem; } -/* line 299, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 299, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ button { border-radius: 0; } -/* line 308, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 308, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ button:focus { outline: 1px dotted; outline: 5px auto -webkit-focus-ring-color; } -/* line 313, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 313, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ input, button, select, @@ -285,24 +285,24 @@ textarea { line-height: inherit; } -/* line 324, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 324, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ button, input { overflow: visible; } -/* line 329, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 329, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ button, select { text-transform: none; } -/* line 337, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 337, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ select { word-wrap: normal; } -/* line 345, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 345, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ button, [type="button"], [type="reset"], @@ -310,7 +310,7 @@ button, -webkit-appearance: button; } -/* line 358, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 358, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ button:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), @@ -318,7 +318,7 @@ button:not(:disabled), cursor: pointer; } -/* line 365, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 365, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, @@ -327,14 +327,14 @@ button::-moz-focus-inner, border-style: none; } -/* line 373, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 373, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ input[type="radio"], input[type="checkbox"] { box-sizing: border-box; padding: 0; } -/* line 380, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 380, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ input[type="date"], input[type="time"], input[type="datetime-local"], @@ -342,13 +342,13 @@ input[type="month"] { -webkit-appearance: listbox; } -/* line 392, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 392, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ textarea { overflow: auto; resize: vertical; } -/* line 398, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 398, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ fieldset { min-width: 0; padding: 0; @@ -356,7 +356,7 @@ fieldset { border: 0; } -/* line 413, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 413, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ legend { display: block; width: 100%; @@ -369,56 +369,56 @@ legend { white-space: normal; } -/* line 425, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 425, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ progress { vertical-align: baseline; } -/* line 430, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 430, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; } -/* line 435, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 435, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ [type="search"] { outline-offset: -2px; -webkit-appearance: none; } -/* line 448, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 448, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ [type="search"]::-webkit-search-decoration { -webkit-appearance: none; } -/* line 457, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 457, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ ::-webkit-file-upload-button { font: inherit; -webkit-appearance: button; } -/* line 466, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 466, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ output { display: inline-block; } -/* line 470, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 470, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ summary { display: list-item; cursor: pointer; } -/* line 475, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 475, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ template { display: none; } -/* line 481, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +/* line 481, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ [hidden] { display: none !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { margin-bottom: 0.5rem; @@ -426,71 +426,71 @@ h1, h2, h3, h4, h5, h6, line-height: 1.2; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ h1, .h1 { font-size: 2.5rem; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ h2, .h2 { font-size: 2rem; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ h3, .h3 { font-size: 1.75rem; } -/* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ h4, .h4 { font-size: 1.5rem; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ h5, .h5 { font-size: 1.25rem; } -/* line 21, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ h6, .h6 { font-size: 1rem; } -/* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ .lead { font-size: 1.25rem; font-weight: 300; } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ .display-1 { font-size: 6rem; font-weight: 300; line-height: 1.2; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ .display-2 { font-size: 5.5rem; font-weight: 300; line-height: 1.2; } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ .display-3 { font-size: 4.5rem; font-weight: 300; line-height: 1.2; } -/* line 44, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ .display-4 { font-size: 3.5rem; font-weight: 300; line-height: 1.2; } -/* line 55, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ hr { margin-top: 1rem; margin-bottom: 1rem; @@ -498,73 +498,73 @@ hr { border-top: 1px solid rgba(0, 0, 0, 0.1); } -/* line 67, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ small, .small { font-size: 80%; font-weight: 400; } -/* line 73, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ mark, .mark { padding: 0.2em; background-color: #fcf8e3; } -/* line 84, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ .list-unstyled { padding-left: 0; list-style: none; } -/* line 89, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ .list-inline { padding-left: 0; list-style: none; } -/* line 92, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 92, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ .list-inline-item { display: inline-block; } -/* line 95, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ .list-inline-item:not(:last-child) { margin-right: 0.5rem; } -/* line 106, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 106, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ .initialism { font-size: 90%; text-transform: uppercase; } -/* line 112, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 112, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ .blockquote { margin-bottom: 1rem; font-size: 1.25rem; } -/* line 117, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ .blockquote-footer { display: block; font-size: 80%; color: #6c757d; } -/* line 122, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ .blockquote-footer::before { content: "\2014\00A0"; } -/* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ .img-fluid { max-width: 100%; height: auto; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ .img-thumbnail { padding: 0.25rem; background-color: #fff; @@ -574,36 +574,36 @@ mark, height: auto; } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ .figure { display: inline-block; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ .figure-img { margin-bottom: 0.5rem; line-height: 1; } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ .figure-caption { font-size: 90%; color: #6c757d; } -/* line 2, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ code { font-size: 87.5%; color: #e83e8c; word-break: break-word; } -/* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ a > code { color: inherit; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ kbd { padding: 0.2rem 0.4rem; font-size: 87.5%; @@ -612,34 +612,34 @@ kbd { border-radius: 0.2rem; } -/* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ kbd kbd { padding: 0; font-size: 100%; font-weight: 700; } -/* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ pre { display: block; font-size: 87.5%; color: #212529; } -/* line 37, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ pre code { font-size: inherit; color: inherit; word-break: normal; } -/* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ .pre-scrollable { max-height: 340px; overflow-y: scroll; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ .container { width: 100%; padding-right: 15px; @@ -649,34 +649,34 @@ pre code { } @media (min-width: 576px) { - /* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ .container { max-width: 540px; } } @media (min-width: 768px) { - /* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ .container { max-width: 720px; } } @media (min-width: 992px) { - /* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ .container { max-width: 960px; } } @media (min-width: 1200px) { - /* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ .container { max-width: 1140px; } } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ .container-fluid { width: 100%; padding-right: 15px; @@ -685,7 +685,7 @@ pre code { margin-left: auto; } -/* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ .row { display: -webkit-box; display: flex; @@ -694,20 +694,20 @@ pre code { margin-left: -15px; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ .no-gutters { margin-right: 0; margin-left: 0; } -/* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ .no-gutters > .col, .no-gutters > [class*="col-"] { padding-right: 0; padding-left: 0; } -/* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, @@ -720,7 +720,7 @@ pre code { padding-left: 15px; } -/* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col { flex-basis: 0; -webkit-box-flex: 1; @@ -728,7 +728,7 @@ pre code { max-width: 100%; } -/* line 36, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-auto { -webkit-box-flex: 0; flex: 0 0 auto; @@ -736,1091 +736,1091 @@ pre code { max-width: 100%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-1 { -webkit-box-flex: 0; flex: 0 0 8.33333%; max-width: 8.33333%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-2 { -webkit-box-flex: 0; flex: 0 0 16.66667%; max-width: 16.66667%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-3 { -webkit-box-flex: 0; flex: 0 0 25%; max-width: 25%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-4 { -webkit-box-flex: 0; flex: 0 0 33.33333%; max-width: 33.33333%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-5 { -webkit-box-flex: 0; flex: 0 0 41.66667%; max-width: 41.66667%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-6 { -webkit-box-flex: 0; flex: 0 0 50%; max-width: 50%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-7 { -webkit-box-flex: 0; flex: 0 0 58.33333%; max-width: 58.33333%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-8 { -webkit-box-flex: 0; flex: 0 0 66.66667%; max-width: 66.66667%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-9 { -webkit-box-flex: 0; flex: 0 0 75%; max-width: 75%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-10 { -webkit-box-flex: 0; flex: 0 0 83.33333%; max-width: 83.33333%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-11 { -webkit-box-flex: 0; flex: 0 0 91.66667%; max-width: 91.66667%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-12 { -webkit-box-flex: 0; flex: 0 0 100%; max-width: 100%; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-first { -webkit-box-ordinal-group: 0; order: -1; } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-last { -webkit-box-ordinal-group: 14; order: 13; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-0 { -webkit-box-ordinal-group: 1; order: 0; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-1 { -webkit-box-ordinal-group: 2; order: 1; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-2 { -webkit-box-ordinal-group: 3; order: 2; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-3 { -webkit-box-ordinal-group: 4; order: 3; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-4 { -webkit-box-ordinal-group: 5; order: 4; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-5 { -webkit-box-ordinal-group: 6; order: 5; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-6 { -webkit-box-ordinal-group: 7; order: 6; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-7 { -webkit-box-ordinal-group: 8; order: 7; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-8 { -webkit-box-ordinal-group: 9; order: 8; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-9 { -webkit-box-ordinal-group: 10; order: 9; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-10 { -webkit-box-ordinal-group: 11; order: 10; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-11 { -webkit-box-ordinal-group: 12; order: 11; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-12 { -webkit-box-ordinal-group: 13; order: 12; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-1 { margin-left: 8.33333%; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-2 { margin-left: 16.66667%; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-3 { margin-left: 25%; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-4 { margin-left: 33.33333%; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-5 { margin-left: 41.66667%; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-6 { margin-left: 50%; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-7 { margin-left: 58.33333%; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-8 { margin-left: 66.66667%; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-9 { margin-left: 75%; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-10 { margin-left: 83.33333%; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-11 { margin-left: 91.66667%; } @media (min-width: 576px) { - /* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm { flex-basis: 0; -webkit-box-flex: 1; flex-grow: 1; max-width: 100%; } - /* line 36, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-auto { -webkit-box-flex: 0; flex: 0 0 auto; width: auto; max-width: 100%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-1 { -webkit-box-flex: 0; flex: 0 0 8.33333%; max-width: 8.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-2 { -webkit-box-flex: 0; flex: 0 0 16.66667%; max-width: 16.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-3 { -webkit-box-flex: 0; flex: 0 0 25%; max-width: 25%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-4 { -webkit-box-flex: 0; flex: 0 0 33.33333%; max-width: 33.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-5 { -webkit-box-flex: 0; flex: 0 0 41.66667%; max-width: 41.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-6 { -webkit-box-flex: 0; flex: 0 0 50%; max-width: 50%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-7 { -webkit-box-flex: 0; flex: 0 0 58.33333%; max-width: 58.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-8 { -webkit-box-flex: 0; flex: 0 0 66.66667%; max-width: 66.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-9 { -webkit-box-flex: 0; flex: 0 0 75%; max-width: 75%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-10 { -webkit-box-flex: 0; flex: 0 0 83.33333%; max-width: 83.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-11 { -webkit-box-flex: 0; flex: 0 0 91.66667%; max-width: 91.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-12 { -webkit-box-flex: 0; flex: 0 0 100%; max-width: 100%; } - /* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-first { -webkit-box-ordinal-group: 0; order: -1; } - /* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-last { -webkit-box-ordinal-group: 14; order: 13; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-0 { -webkit-box-ordinal-group: 1; order: 0; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-1 { -webkit-box-ordinal-group: 2; order: 1; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-2 { -webkit-box-ordinal-group: 3; order: 2; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-3 { -webkit-box-ordinal-group: 4; order: 3; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-4 { -webkit-box-ordinal-group: 5; order: 4; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-5 { -webkit-box-ordinal-group: 6; order: 5; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-6 { -webkit-box-ordinal-group: 7; order: 6; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-7 { -webkit-box-ordinal-group: 8; order: 7; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-8 { -webkit-box-ordinal-group: 9; order: 8; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-9 { -webkit-box-ordinal-group: 10; order: 9; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-10 { -webkit-box-ordinal-group: 11; order: 10; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-11 { -webkit-box-ordinal-group: 12; order: 11; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-12 { -webkit-box-ordinal-group: 13; order: 12; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-0 { margin-left: 0; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-1 { margin-left: 8.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-2 { margin-left: 16.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-3 { margin-left: 25%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-4 { margin-left: 33.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-5 { margin-left: 41.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-6 { margin-left: 50%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-7 { margin-left: 58.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-8 { margin-left: 66.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-9 { margin-left: 75%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-10 { margin-left: 83.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-11 { margin-left: 91.66667%; } } @media (min-width: 768px) { - /* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md { flex-basis: 0; -webkit-box-flex: 1; flex-grow: 1; max-width: 100%; } - /* line 36, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-auto { -webkit-box-flex: 0; flex: 0 0 auto; width: auto; max-width: 100%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-1 { -webkit-box-flex: 0; flex: 0 0 8.33333%; max-width: 8.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-2 { -webkit-box-flex: 0; flex: 0 0 16.66667%; max-width: 16.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-3 { -webkit-box-flex: 0; flex: 0 0 25%; max-width: 25%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-4 { -webkit-box-flex: 0; flex: 0 0 33.33333%; max-width: 33.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-5 { -webkit-box-flex: 0; flex: 0 0 41.66667%; max-width: 41.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-6 { -webkit-box-flex: 0; flex: 0 0 50%; max-width: 50%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-7 { -webkit-box-flex: 0; flex: 0 0 58.33333%; max-width: 58.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-8 { -webkit-box-flex: 0; flex: 0 0 66.66667%; max-width: 66.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-9 { -webkit-box-flex: 0; flex: 0 0 75%; max-width: 75%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-10 { -webkit-box-flex: 0; flex: 0 0 83.33333%; max-width: 83.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-11 { -webkit-box-flex: 0; flex: 0 0 91.66667%; max-width: 91.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-12 { -webkit-box-flex: 0; flex: 0 0 100%; max-width: 100%; } - /* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-first { -webkit-box-ordinal-group: 0; order: -1; } - /* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-last { -webkit-box-ordinal-group: 14; order: 13; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-0 { -webkit-box-ordinal-group: 1; order: 0; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-1 { -webkit-box-ordinal-group: 2; order: 1; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-2 { -webkit-box-ordinal-group: 3; order: 2; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-3 { -webkit-box-ordinal-group: 4; order: 3; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-4 { -webkit-box-ordinal-group: 5; order: 4; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-5 { -webkit-box-ordinal-group: 6; order: 5; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-6 { -webkit-box-ordinal-group: 7; order: 6; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-7 { -webkit-box-ordinal-group: 8; order: 7; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-8 { -webkit-box-ordinal-group: 9; order: 8; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-9 { -webkit-box-ordinal-group: 10; order: 9; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-10 { -webkit-box-ordinal-group: 11; order: 10; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-11 { -webkit-box-ordinal-group: 12; order: 11; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-12 { -webkit-box-ordinal-group: 13; order: 12; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-0 { margin-left: 0; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-1 { margin-left: 8.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-2 { margin-left: 16.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-3 { margin-left: 25%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-4 { margin-left: 33.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-5 { margin-left: 41.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-6 { margin-left: 50%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-7 { margin-left: 58.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-8 { margin-left: 66.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-9 { margin-left: 75%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-10 { margin-left: 83.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-11 { margin-left: 91.66667%; } } @media (min-width: 992px) { - /* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg { flex-basis: 0; -webkit-box-flex: 1; flex-grow: 1; max-width: 100%; } - /* line 36, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-auto { -webkit-box-flex: 0; flex: 0 0 auto; width: auto; max-width: 100%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-1 { -webkit-box-flex: 0; flex: 0 0 8.33333%; max-width: 8.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-2 { -webkit-box-flex: 0; flex: 0 0 16.66667%; max-width: 16.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-3 { -webkit-box-flex: 0; flex: 0 0 25%; max-width: 25%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-4 { -webkit-box-flex: 0; flex: 0 0 33.33333%; max-width: 33.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-5 { -webkit-box-flex: 0; flex: 0 0 41.66667%; max-width: 41.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-6 { -webkit-box-flex: 0; flex: 0 0 50%; max-width: 50%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-7 { -webkit-box-flex: 0; flex: 0 0 58.33333%; max-width: 58.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-8 { -webkit-box-flex: 0; flex: 0 0 66.66667%; max-width: 66.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-9 { -webkit-box-flex: 0; flex: 0 0 75%; max-width: 75%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-10 { -webkit-box-flex: 0; flex: 0 0 83.33333%; max-width: 83.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-11 { -webkit-box-flex: 0; flex: 0 0 91.66667%; max-width: 91.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-12 { -webkit-box-flex: 0; flex: 0 0 100%; max-width: 100%; } - /* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-first { -webkit-box-ordinal-group: 0; order: -1; } - /* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-last { -webkit-box-ordinal-group: 14; order: 13; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-0 { -webkit-box-ordinal-group: 1; order: 0; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-1 { -webkit-box-ordinal-group: 2; order: 1; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-2 { -webkit-box-ordinal-group: 3; order: 2; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-3 { -webkit-box-ordinal-group: 4; order: 3; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-4 { -webkit-box-ordinal-group: 5; order: 4; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-5 { -webkit-box-ordinal-group: 6; order: 5; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-6 { -webkit-box-ordinal-group: 7; order: 6; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-7 { -webkit-box-ordinal-group: 8; order: 7; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-8 { -webkit-box-ordinal-group: 9; order: 8; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-9 { -webkit-box-ordinal-group: 10; order: 9; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-10 { -webkit-box-ordinal-group: 11; order: 10; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-11 { -webkit-box-ordinal-group: 12; order: 11; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-12 { -webkit-box-ordinal-group: 13; order: 12; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-0 { margin-left: 0; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-1 { margin-left: 8.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-2 { margin-left: 16.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-3 { margin-left: 25%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-4 { margin-left: 33.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-5 { margin-left: 41.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-6 { margin-left: 50%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-7 { margin-left: 58.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-8 { margin-left: 66.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-9 { margin-left: 75%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-10 { margin-left: 83.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-11 { margin-left: 91.66667%; } } @media (min-width: 1200px) { - /* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl { flex-basis: 0; -webkit-box-flex: 1; flex-grow: 1; max-width: 100%; } - /* line 36, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-auto { -webkit-box-flex: 0; flex: 0 0 auto; width: auto; max-width: 100%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-1 { -webkit-box-flex: 0; flex: 0 0 8.33333%; max-width: 8.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-2 { -webkit-box-flex: 0; flex: 0 0 16.66667%; max-width: 16.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-3 { -webkit-box-flex: 0; flex: 0 0 25%; max-width: 25%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-4 { -webkit-box-flex: 0; flex: 0 0 33.33333%; max-width: 33.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-5 { -webkit-box-flex: 0; flex: 0 0 41.66667%; max-width: 41.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-6 { -webkit-box-flex: 0; flex: 0 0 50%; max-width: 50%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-7 { -webkit-box-flex: 0; flex: 0 0 58.33333%; max-width: 58.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-8 { -webkit-box-flex: 0; flex: 0 0 66.66667%; max-width: 66.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-9 { -webkit-box-flex: 0; flex: 0 0 75%; max-width: 75%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-10 { -webkit-box-flex: 0; flex: 0 0 83.33333%; max-width: 83.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-11 { -webkit-box-flex: 0; flex: 0 0 91.66667%; max-width: 91.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-12 { -webkit-box-flex: 0; flex: 0 0 100%; max-width: 100%; } - /* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-first { -webkit-box-ordinal-group: 0; order: -1; } - /* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-last { -webkit-box-ordinal-group: 14; order: 13; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-0 { -webkit-box-ordinal-group: 1; order: 0; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-1 { -webkit-box-ordinal-group: 2; order: 1; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-2 { -webkit-box-ordinal-group: 3; order: 2; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-3 { -webkit-box-ordinal-group: 4; order: 3; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-4 { -webkit-box-ordinal-group: 5; order: 4; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-5 { -webkit-box-ordinal-group: 6; order: 5; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-6 { -webkit-box-ordinal-group: 7; order: 6; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-7 { -webkit-box-ordinal-group: 8; order: 7; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-8 { -webkit-box-ordinal-group: 9; order: 8; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-9 { -webkit-box-ordinal-group: 10; order: 9; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-10 { -webkit-box-ordinal-group: 11; order: 10; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-11 { -webkit-box-ordinal-group: 12; order: 11; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-12 { -webkit-box-ordinal-group: 13; order: 12; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-0 { margin-left: 0; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-1 { margin-left: 8.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-2 { margin-left: 16.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-3 { margin-left: 25%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-4 { margin-left: 33.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-5 { margin-left: 41.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-6 { margin-left: 50%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-7 { margin-left: 58.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-8 { margin-left: 66.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-9 { margin-left: 75%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-10 { margin-left: 83.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-11 { margin-left: 91.66667%; } } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table { width: 100%; margin-bottom: 1rem; color: #212529; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table th, .table td { padding: 0.75rem; @@ -1828,41 +1828,41 @@ pre code { border-top: 1px solid #dee2e6; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table thead th { vertical-align: bottom; border-bottom: 2px solid #dee2e6; } -/* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table tbody + tbody { border-top: 2px solid #dee2e6; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-sm th, .table-sm td { padding: 0.3rem; } -/* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-bordered { border: 1px solid #dee2e6; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-bordered th, .table-bordered td { border: 1px solid #dee2e6; } -/* line 54, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-bordered thead th, .table-bordered thead td { border-bottom-width: 2px; } -/* line 62, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-borderless th, .table-borderless td, .table-borderless thead th, @@ -1870,25 +1870,25 @@ pre code { border: 0; } -/* line 75, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 75, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-striped tbody tr:nth-of-type(odd) { background-color: rgba(0, 0, 0, 0.05); } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-hover tbody tr:hover { color: #212529; background-color: rgba(0, 0, 0, 0.075); } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-primary, .table-primary > th, .table-primary > td { background-color: #b8daff; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-primary th, .table-primary td, .table-primary thead th, @@ -1896,25 +1896,25 @@ pre code { border-color: #7abaff; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-hover .table-primary:hover { background-color: #9fcdff; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover .table-primary:hover > td, .table-hover .table-primary:hover > th { background-color: #9fcdff; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-secondary, .table-secondary > th, .table-secondary > td { background-color: #d6d8db; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-secondary th, .table-secondary td, .table-secondary thead th, @@ -1922,25 +1922,25 @@ pre code { border-color: #b3b7bb; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-hover .table-secondary:hover { background-color: #c8cbcf; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover .table-secondary:hover > td, .table-hover .table-secondary:hover > th { background-color: #c8cbcf; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-success, .table-success > th, .table-success > td { background-color: #c3e6cb; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-success th, .table-success td, .table-success thead th, @@ -1948,25 +1948,25 @@ pre code { border-color: #8fd19e; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-hover .table-success:hover { background-color: #b1dfbb; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover .table-success:hover > td, .table-hover .table-success:hover > th { background-color: #b1dfbb; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-info, .table-info > th, .table-info > td { background-color: #bee5eb; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-info th, .table-info td, .table-info thead th, @@ -1974,25 +1974,25 @@ pre code { border-color: #86cfda; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-hover .table-info:hover { background-color: #abdde5; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover .table-info:hover > td, .table-hover .table-info:hover > th { background-color: #abdde5; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-warning, .table-warning > th, .table-warning > td { background-color: #ffeeba; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-warning th, .table-warning td, .table-warning thead th, @@ -2000,25 +2000,25 @@ pre code { border-color: #ffdf7e; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-hover .table-warning:hover { background-color: #ffe8a1; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover .table-warning:hover > td, .table-hover .table-warning:hover > th { background-color: #ffe8a1; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-danger, .table-danger > th, .table-danger > td { background-color: #f5c6cb; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-danger th, .table-danger td, .table-danger thead th, @@ -2026,25 +2026,25 @@ pre code { border-color: #ed969e; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-hover .table-danger:hover { background-color: #f1b0b7; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover .table-danger:hover > td, .table-hover .table-danger:hover > th { background-color: #f1b0b7; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-light, .table-light > th, .table-light > td { background-color: #fdfdfe; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-light th, .table-light td, .table-light thead th, @@ -2052,25 +2052,25 @@ pre code { border-color: #fbfcfc; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-hover .table-light:hover { background-color: #ececf6; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover .table-light:hover > td, .table-hover .table-light:hover > th { background-color: #ececf6; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-dark, .table-dark > th, .table-dark > td { background-color: #c6c8ca; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-dark th, .table-dark td, .table-dark thead th, @@ -2078,135 +2078,135 @@ pre code { border-color: #95999c; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-hover .table-dark:hover { background-color: #b9bbbe; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover .table-dark:hover > td, .table-hover .table-dark:hover > th { background-color: #b9bbbe; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-active, .table-active > th, .table-active > td { background-color: rgba(0, 0, 0, 0.075); } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-hover .table-active:hover { background-color: rgba(0, 0, 0, 0.075); } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover .table-active:hover > td, .table-hover .table-active:hover > th { background-color: rgba(0, 0, 0, 0.075); } -/* line 114, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 114, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table .thead-dark th { color: #fff; background-color: #343a40; border-color: #454d55; } -/* line 122, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table .thead-light th { color: #495057; background-color: #e9ecef; border-color: #dee2e6; } -/* line 130, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-dark { color: #fff; background-color: #343a40; } -/* line 134, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-dark th, .table-dark td, .table-dark thead th { border-color: #454d55; } -/* line 140, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-dark.table-bordered { border: 0; } -/* line 145, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 145, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-dark.table-striped tbody tr:nth-of-type(odd) { background-color: rgba(255, 255, 255, 0.05); } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-dark.table-hover tbody tr:hover { color: #fff; background-color: rgba(255, 255, 255, 0.075); } @media (max-width: 575.98px) { - /* line 171, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + /* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive-sm { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; } - /* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive-sm > .table-bordered { border: 0; } } @media (max-width: 767.98px) { - /* line 171, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + /* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive-md { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; } - /* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive-md > .table-bordered { border: 0; } } @media (max-width: 991.98px) { - /* line 171, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + /* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive-lg { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; } - /* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive-lg > .table-bordered { border: 0; } } @media (max-width: 1199.98px) { - /* line 171, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + /* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive-xl { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; } - /* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive-xl > .table-bordered { border: 0; } } -/* line 171, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive { display: block; width: 100%; @@ -2214,12 +2214,12 @@ pre code { -webkit-overflow-scrolling: touch; } -/* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive > .table-bordered { border: 0; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-control { display: block; width: 100%; @@ -2238,20 +2238,20 @@ pre code { } @media (prefers-reduced-motion: reduce) { - /* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-control { -webkit-transition: none; transition: none; } } -/* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-control::-ms-expand { background-color: transparent; border: 0; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .form-control:focus { color: #495057; background-color: #fff; @@ -2260,7 +2260,7 @@ pre code { box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } -/* line 37, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-control::-webkit-input-placeholder { color: #6c757d; opacity: 1; @@ -2282,26 +2282,26 @@ pre code { opacity: 1; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-control:disabled, .form-control[readonly] { background-color: #e9ecef; opacity: 1; } -/* line 57, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 57, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ select.form-control:focus::-ms-value { color: #495057; background-color: #fff; } -/* line 69, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-control-file, .form-control-range { display: block; width: 100%; } -/* line 82, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .col-form-label { padding-top: calc(0.375rem + 1px); padding-bottom: calc(0.375rem + 1px); @@ -2310,7 +2310,7 @@ select.form-control:focus::-ms-value { line-height: 1.5; } -/* line 90, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .col-form-label-lg { padding-top: calc(0.5rem + 1px); padding-bottom: calc(0.5rem + 1px); @@ -2318,7 +2318,7 @@ select.form-control:focus::-ms-value { line-height: 1.5; } -/* line 97, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 97, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .col-form-label-sm { padding-top: calc(0.25rem + 1px); padding-bottom: calc(0.25rem + 1px); @@ -2326,7 +2326,7 @@ select.form-control:focus::-ms-value { line-height: 1.5; } -/* line 110, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 110, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-control-plaintext { display: block; width: 100%; @@ -2340,13 +2340,13 @@ select.form-control:focus::-ms-value { border-width: 1px 0; } -/* line 122, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { padding-right: 0; padding-left: 0; } -/* line 137, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 137, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-control-sm { height: calc(1.5em + 0.5rem + 2px); padding: 0.25rem 0.5rem; @@ -2355,7 +2355,7 @@ select.form-control:focus::-ms-value { border-radius: 0.2rem; } -/* line 145, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 145, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-control-lg { height: calc(1.5em + 1rem + 2px); padding: 0.5rem 1rem; @@ -2364,28 +2364,28 @@ select.form-control:focus::-ms-value { border-radius: 0.3rem; } -/* line 155, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 155, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ select.form-control[size], select.form-control[multiple] { height: auto; } -/* line 161, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 161, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ textarea.form-control { height: auto; } -/* line 170, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 170, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-group { margin-bottom: 1rem; } -/* line 174, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 174, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-text { display: block; margin-top: 0.25rem; } -/* line 184, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 184, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-row { display: -webkit-box; display: flex; @@ -2394,38 +2394,38 @@ textarea.form-control { margin-left: -5px; } -/* line 190, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 190, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-row > .col, .form-row > [class*="col-"] { padding-right: 5px; padding-left: 5px; } -/* line 202, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 202, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-check { position: relative; display: block; padding-left: 1.25rem; } -/* line 208, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 208, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-check-input { position: absolute; margin-top: 0.3rem; margin-left: -1.25rem; } -/* line 213, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 213, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-check-input:disabled ~ .form-check-label { color: #6c757d; } -/* line 218, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 218, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-check-label { margin-bottom: 0; } -/* line 222, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 222, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-check-inline { display: -webkit-inline-box; display: inline-flex; @@ -2435,7 +2435,7 @@ textarea.form-control { margin-right: 0.75rem; } -/* line 229, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 229, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-check-inline .form-check-input { position: static; margin-top: 0; @@ -2443,7 +2443,7 @@ textarea.form-control { margin-left: 0; } -/* line 30, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .valid-feedback { display: none; width: 100%; @@ -2452,7 +2452,7 @@ textarea.form-control { color: #28a745; } -/* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .valid-tooltip { position: absolute; top: 100%; @@ -2468,7 +2468,7 @@ textarea.form-control { border-radius: 0.25rem; } -/* line 54, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-control:valid, .form-control.is-valid { border-color: #28a745; padding-right: calc(1.5em + 0.75rem); @@ -2478,116 +2478,116 @@ textarea.form-control { background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-control:valid:focus, .form-control.is-valid:focus { border-color: #28a745; box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-control:valid ~ .valid-feedback, .was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, .form-control.is-valid ~ .valid-tooltip { display: block; } -/* line 80, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated textarea.form-control:valid, textarea.form-control.is-valid { padding-right: calc(1.5em + 0.75rem); background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } -/* line 90, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-select:valid, .custom-select.is-valid { border-color: #28a745; padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem); background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } -/* line 99, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 99, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { border-color: #28a745; box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } -/* line 104, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 104, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-select:valid ~ .valid-feedback, .was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback, .custom-select.is-valid ~ .valid-tooltip { display: block; } -/* line 115, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 115, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-control-file:valid ~ .valid-feedback, .was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback, .form-control-file.is-valid ~ .valid-tooltip { display: block; } -/* line 125, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { color: #28a745; } -/* line 129, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 129, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-check-input:valid ~ .valid-feedback, .was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, .form-check-input.is-valid ~ .valid-tooltip { display: block; } -/* line 139, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 139, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { color: #28a745; } -/* line 142, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { border-color: #28a745; } -/* line 147, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:valid ~ .valid-feedback, .was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, .custom-control-input.is-valid ~ .valid-tooltip { display: block; } -/* line 153, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { border-color: #34ce57; background-color: #34ce57; } -/* line 160, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } -/* line 164, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 164, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before { border-color: #28a745; } -/* line 175, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 175, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { border-color: #28a745; } -/* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-file-input:valid ~ .valid-feedback, .was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, .custom-file-input.is-valid ~ .valid-tooltip { display: block; } -/* line 185, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 185, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { border-color: #28a745; box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } -/* line 30, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .invalid-feedback { display: none; width: 100%; @@ -2596,7 +2596,7 @@ textarea.form-control { color: #dc3545; } -/* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .invalid-tooltip { position: absolute; top: 100%; @@ -2612,7 +2612,7 @@ textarea.form-control { border-radius: 0.25rem; } -/* line 54, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-control:invalid, .form-control.is-invalid { border-color: #dc3545; padding-right: calc(1.5em + 0.75rem); @@ -2622,116 +2622,116 @@ textarea.form-control { background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { border-color: #dc3545; box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-control:invalid ~ .invalid-feedback, .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, .form-control.is-invalid ~ .invalid-tooltip { display: block; } -/* line 80, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { padding-right: calc(1.5em + 0.75rem); background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } -/* line 90, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-select:invalid, .custom-select.is-invalid { border-color: #dc3545; padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem); background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } -/* line 99, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 99, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { border-color: #dc3545; box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } -/* line 104, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 104, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-select:invalid ~ .invalid-feedback, .was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback, .custom-select.is-invalid ~ .invalid-tooltip { display: block; } -/* line 115, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 115, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-control-file:invalid ~ .invalid-feedback, .was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback, .form-control-file.is-invalid ~ .invalid-tooltip { display: block; } -/* line 125, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { color: #dc3545; } -/* line 129, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 129, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-check-input:invalid ~ .invalid-feedback, .was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, .form-check-input.is-invalid ~ .invalid-tooltip { display: block; } -/* line 139, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 139, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { color: #dc3545; } -/* line 142, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { border-color: #dc3545; } -/* line 147, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:invalid ~ .invalid-feedback, .was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, .custom-control-input.is-invalid ~ .invalid-tooltip { display: block; } -/* line 153, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { border-color: #e4606d; background-color: #e4606d; } -/* line 160, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } -/* line 164, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 164, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before { border-color: #dc3545; } -/* line 175, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 175, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { border-color: #dc3545; } -/* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-file-input:invalid ~ .invalid-feedback, .was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, .custom-file-input.is-invalid ~ .invalid-tooltip { display: block; } -/* line 185, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 185, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { border-color: #dc3545; box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } -/* line 258, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 258, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline { display: -webkit-box; display: flex; @@ -2742,13 +2742,13 @@ textarea.form-control { align-items: center; } -/* line 266, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 266, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .form-check { width: 100%; } @media (min-width: 576px) { - /* line 272, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + /* line 272, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline label { display: -webkit-box; display: flex; @@ -2758,7 +2758,7 @@ textarea.form-control { justify-content: center; margin-bottom: 0; } - /* line 280, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + /* line 280, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .form-group { display: -webkit-box; display: flex; @@ -2771,22 +2771,22 @@ textarea.form-control { align-items: center; margin-bottom: 0; } - /* line 289, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + /* line 289, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .form-control { display: inline-block; width: auto; vertical-align: middle; } - /* line 296, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + /* line 296, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .form-control-plaintext { display: inline-block; } - /* line 300, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + /* line 300, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .input-group, .form-inline .custom-select { width: auto; } - /* line 307, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + /* line 307, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .form-check { display: -webkit-box; display: flex; @@ -2797,7 +2797,7 @@ textarea.form-control { width: auto; padding-left: 0; } - /* line 314, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + /* line 314, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .form-check-input { position: relative; flex-shrink: 0; @@ -2805,20 +2805,20 @@ textarea.form-control { margin-right: 0.25rem; margin-left: 0; } - /* line 322, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + /* line 322, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .custom-control { -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; } - /* line 326, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + /* line 326, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .custom-control-label { margin-bottom: 0; } } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn { display: inline-block; font-weight: 400; @@ -2840,63 +2840,63 @@ textarea.form-control { } @media (prefers-reduced-motion: reduce) { - /* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn { -webkit-transition: none; transition: none; } } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn:hover { color: #212529; text-decoration: none; } -/* line 25, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn:focus, .btn.focus { outline: 0; box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn.disabled, .btn:disabled { opacity: 0.65; } -/* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ a.btn.disabled, fieldset:disabled a.btn { pointer-events: none; } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-primary { color: #fff; background-color: #007bff; border-color: #007bff; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-primary:hover { color: #fff; background-color: #0069d9; border-color: #0062cc; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-primary:focus, .btn-primary.focus { box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-primary.disabled, .btn-primary:disabled { color: #fff; background-color: #007bff; border-color: #007bff; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle { color: #fff; @@ -2904,39 +2904,39 @@ fieldset:disabled a.btn { border-color: #005cbf; } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-secondary { color: #fff; background-color: #6c757d; border-color: #6c757d; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-secondary:hover { color: #fff; background-color: #5a6268; border-color: #545b62; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-secondary:focus, .btn-secondary.focus { box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-secondary.disabled, .btn-secondary:disabled { color: #fff; background-color: #6c757d; border-color: #6c757d; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle { color: #fff; @@ -2944,39 +2944,39 @@ fieldset:disabled a.btn { border-color: #4e555b; } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-success { color: #fff; background-color: #28a745; border-color: #28a745; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-success:hover { color: #fff; background-color: #218838; border-color: #1e7e34; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-success:focus, .btn-success.focus { box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-success.disabled, .btn-success:disabled { color: #fff; background-color: #28a745; border-color: #28a745; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle { color: #fff; @@ -2984,39 +2984,39 @@ fieldset:disabled a.btn { border-color: #1c7430; } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-info { color: #fff; background-color: #17a2b8; border-color: #17a2b8; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-info:hover { color: #fff; background-color: #138496; border-color: #117a8b; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-info:focus, .btn-info.focus { box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-info.disabled, .btn-info:disabled { color: #fff; background-color: #17a2b8; border-color: #17a2b8; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle { color: #fff; @@ -3024,39 +3024,39 @@ fieldset:disabled a.btn { border-color: #10707f; } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-warning { color: #212529; background-color: #ffc107; border-color: #ffc107; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-warning:hover { color: #212529; background-color: #e0a800; border-color: #d39e00; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-warning:focus, .btn-warning.focus { box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-warning.disabled, .btn-warning:disabled { color: #212529; background-color: #ffc107; border-color: #ffc107; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle { color: #212529; @@ -3064,39 +3064,39 @@ fieldset:disabled a.btn { border-color: #c69500; } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-danger { color: #fff; background-color: #dc3545; border-color: #dc3545; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-danger:hover { color: #fff; background-color: #c82333; border-color: #bd2130; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-danger:focus, .btn-danger.focus { box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-danger.disabled, .btn-danger:disabled { color: #fff; background-color: #dc3545; border-color: #dc3545; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle { color: #fff; @@ -3104,39 +3104,39 @@ fieldset:disabled a.btn { border-color: #b21f2d; } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-light { color: #212529; background-color: #f8f9fa; border-color: #f8f9fa; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-light:hover { color: #212529; background-color: #e2e6ea; border-color: #dae0e5; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-light:focus, .btn-light.focus { box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-light.disabled, .btn-light:disabled { color: #212529; background-color: #f8f9fa; border-color: #f8f9fa; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle { color: #212529; @@ -3144,39 +3144,39 @@ fieldset:disabled a.btn { border-color: #d3d9df; } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-dark { color: #fff; background-color: #343a40; border-color: #343a40; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-dark:hover { color: #fff; background-color: #23272b; border-color: #1d2124; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-dark:focus, .btn-dark.focus { box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-dark.disabled, .btn-dark:disabled { color: #fff; background-color: #343a40; border-color: #343a40; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle { color: #fff; @@ -3184,37 +3184,37 @@ fieldset:disabled a.btn { border-color: #171a1d; } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-outline-primary { color: #007bff; border-color: #007bff; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-outline-primary:hover { color: #fff; background-color: #007bff; border-color: #007bff; } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-primary:focus, .btn-outline-primary.focus { box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-primary.disabled, .btn-outline-primary:disabled { color: #007bff; background-color: transparent; } -/* line 82, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle { color: #fff; @@ -3222,37 +3222,37 @@ fieldset:disabled a.btn { border-color: #007bff; } -/* line 89, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-outline-secondary { color: #6c757d; border-color: #6c757d; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-outline-secondary:hover { color: #fff; background-color: #6c757d; border-color: #6c757d; } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-secondary:focus, .btn-outline-secondary.focus { box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-secondary.disabled, .btn-outline-secondary:disabled { color: #6c757d; background-color: transparent; } -/* line 82, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle { color: #fff; @@ -3260,37 +3260,37 @@ fieldset:disabled a.btn { border-color: #6c757d; } -/* line 89, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-outline-success { color: #28a745; border-color: #28a745; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-outline-success:hover { color: #fff; background-color: #28a745; border-color: #28a745; } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-success:focus, .btn-outline-success.focus { box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-success.disabled, .btn-outline-success:disabled { color: #28a745; background-color: transparent; } -/* line 82, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle { color: #fff; @@ -3298,37 +3298,37 @@ fieldset:disabled a.btn { border-color: #28a745; } -/* line 89, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-outline-info { color: #17a2b8; border-color: #17a2b8; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-outline-info:hover { color: #fff; background-color: #17a2b8; border-color: #17a2b8; } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-info:focus, .btn-outline-info.focus { box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-info.disabled, .btn-outline-info:disabled { color: #17a2b8; background-color: transparent; } -/* line 82, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle { color: #fff; @@ -3336,37 +3336,37 @@ fieldset:disabled a.btn { border-color: #17a2b8; } -/* line 89, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-outline-warning { color: #ffc107; border-color: #ffc107; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-outline-warning:hover { color: #212529; background-color: #ffc107; border-color: #ffc107; } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-warning:focus, .btn-outline-warning.focus { box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-warning.disabled, .btn-outline-warning:disabled { color: #ffc107; background-color: transparent; } -/* line 82, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle { color: #212529; @@ -3374,37 +3374,37 @@ fieldset:disabled a.btn { border-color: #ffc107; } -/* line 89, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-outline-danger { color: #dc3545; border-color: #dc3545; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-outline-danger:hover { color: #fff; background-color: #dc3545; border-color: #dc3545; } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-danger:focus, .btn-outline-danger.focus { box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-danger.disabled, .btn-outline-danger:disabled { color: #dc3545; background-color: transparent; } -/* line 82, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle { color: #fff; @@ -3412,37 +3412,37 @@ fieldset:disabled a.btn { border-color: #dc3545; } -/* line 89, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-outline-light { color: #f8f9fa; border-color: #f8f9fa; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-outline-light:hover { color: #212529; background-color: #f8f9fa; border-color: #f8f9fa; } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-light:focus, .btn-outline-light.focus { box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-light.disabled, .btn-outline-light:disabled { color: #f8f9fa; background-color: transparent; } -/* line 82, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle { color: #212529; @@ -3450,37 +3450,37 @@ fieldset:disabled a.btn { border-color: #f8f9fa; } -/* line 89, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-outline-dark { color: #343a40; border-color: #343a40; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-outline-dark:hover { color: #fff; background-color: #343a40; border-color: #343a40; } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-dark:focus, .btn-outline-dark.focus { box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-dark.disabled, .btn-outline-dark:disabled { color: #343a40; background-color: transparent; } -/* line 82, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle { color: #fff; @@ -3488,38 +3488,38 @@ fieldset:disabled a.btn { border-color: #343a40; } -/* line 89, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } -/* line 77, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 77, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-link { font-weight: 400; color: #007bff; text-decoration: none; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-link:hover { color: #0056b3; text-decoration: underline; } -/* line 87, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-link:focus, .btn-link.focus { text-decoration: underline; box-shadow: none; } -/* line 93, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 93, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-link:disabled, .btn-link.disabled { color: #6c757d; pointer-events: none; } -/* line 107, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 107, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-lg, .btn-group-lg > .btn { padding: 0.5rem 1rem; font-size: 1.25rem; @@ -3527,7 +3527,7 @@ fieldset:disabled a.btn { border-radius: 0.3rem; } -/* line 111, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 111, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-sm, .btn-group-sm > .btn { padding: 0.25rem 0.5rem; font-size: 0.875rem; @@ -3535,49 +3535,49 @@ fieldset:disabled a.btn { border-radius: 0.2rem; } -/* line 120, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 120, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-block { display: block; width: 100%; } -/* line 125, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-block + .btn-block { margin-top: 0.5rem; } -/* line 134, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { width: 100%; } -/* line 1, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ .fade { -webkit-transition: opacity 0.15s linear; transition: opacity 0.15s linear; } @media (prefers-reduced-motion: reduce) { - /* line 1, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ + /* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ .fade { -webkit-transition: none; transition: none; } } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ .fade:not(.show) { opacity: 0; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ .collapse:not(.show) { display: none; } -/* line 15, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ .collapsing { position: relative; height: 0; @@ -3587,14 +3587,14 @@ input[type="button"].btn-block { } @media (prefers-reduced-motion: reduce) { - /* line 15, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ + /* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ .collapsing { -webkit-transition: none; transition: none; } } -/* line 2, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropup, .dropright, .dropdown, @@ -3602,12 +3602,12 @@ input[type="button"].btn-block { position: relative; } -/* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-toggle { white-space: nowrap; } -/* line 30, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ .dropdown-toggle::after { display: inline-block; margin-left: 0.255em; @@ -3619,12 +3619,12 @@ input[type="button"].btn-block { border-left: 0.3em solid transparent; } -/* line 58, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ .dropdown-toggle:empty::after { margin-left: 0; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu { position: absolute; top: 100%; @@ -3645,25 +3645,25 @@ input[type="button"].btn-block { border-radius: 0.25rem; } -/* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu-left { right: auto; left: 0; } -/* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu-right { right: 0; left: auto; } @media (min-width: 576px) { - /* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu-sm-left { right: auto; left: 0; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu-sm-right { right: 0; left: auto; @@ -3671,12 +3671,12 @@ input[type="button"].btn-block { } @media (min-width: 768px) { - /* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu-md-left { right: auto; left: 0; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu-md-right { right: 0; left: auto; @@ -3684,12 +3684,12 @@ input[type="button"].btn-block { } @media (min-width: 992px) { - /* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu-lg-left { right: auto; left: 0; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu-lg-right { right: 0; left: auto; @@ -3697,19 +3697,19 @@ input[type="button"].btn-block { } @media (min-width: 1200px) { - /* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu-xl-left { right: auto; left: 0; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu-xl-right { right: 0; left: auto; } } -/* line 57, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 57, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropup .dropdown-menu { top: auto; bottom: 100%; @@ -3717,7 +3717,7 @@ input[type="button"].btn-block { margin-bottom: 0.125rem; } -/* line 30, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ .dropup .dropdown-toggle::after { display: inline-block; margin-left: 0.255em; @@ -3729,12 +3729,12 @@ input[type="button"].btn-block { border-left: 0.3em solid transparent; } -/* line 58, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ .dropup .dropdown-toggle:empty::after { margin-left: 0; } -/* line 70, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 70, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropright .dropdown-menu { top: 0; right: auto; @@ -3743,7 +3743,7 @@ input[type="button"].btn-block { margin-left: 0.125rem; } -/* line 30, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ .dropright .dropdown-toggle::after { display: inline-block; margin-left: 0.255em; @@ -3755,17 +3755,17 @@ input[type="button"].btn-block { border-left: 0.3em solid; } -/* line 58, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ .dropright .dropdown-toggle:empty::after { margin-left: 0; } -/* line 80, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropright .dropdown-toggle::after { vertical-align: 0; } -/* line 87, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropleft .dropdown-menu { top: 0; right: 100%; @@ -3774,7 +3774,7 @@ input[type="button"].btn-block { margin-right: 0.125rem; } -/* line 30, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ .dropleft .dropdown-toggle::after { display: inline-block; margin-left: 0.255em; @@ -3782,12 +3782,12 @@ input[type="button"].btn-block { content: ""; } -/* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ .dropleft .dropdown-toggle::after { display: none; } -/* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ .dropleft .dropdown-toggle::before { display: inline-block; margin-right: 0.255em; @@ -3798,23 +3798,23 @@ input[type="button"].btn-block { border-bottom: 0.3em solid transparent; } -/* line 58, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ .dropleft .dropdown-toggle:empty::after { margin-left: 0; } -/* line 97, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 97, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropleft .dropdown-toggle::before { vertical-align: 0; } -/* line 106, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 106, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] { right: auto; bottom: auto; } -/* line 116, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 116, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-divider { height: 0; margin: 0.5rem 0; @@ -3822,7 +3822,7 @@ input[type="button"].btn-block { border-top: 1px solid #e9ecef; } -/* line 123, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 123, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-item { display: block; width: 100%; @@ -3836,33 +3836,33 @@ input[type="button"].btn-block { border: 0; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .dropdown-item:hover, .dropdown-item:focus { color: #16181b; text-decoration: none; background-color: #f8f9fa; } -/* line 153, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-item.active, .dropdown-item:active { color: #fff; text-decoration: none; background-color: #007bff; } -/* line 160, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-item.disabled, .dropdown-item:disabled { color: #6c757d; pointer-events: none; background-color: transparent; } -/* line 172, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu.show { display: block; } -/* line 177, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-header { display: block; padding: 0.5rem 1.5rem; @@ -3872,14 +3872,14 @@ input[type="button"].btn-block { white-space: nowrap; } -/* line 187, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 187, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-item-text { display: block; padding: 0.25rem 1.5rem; color: #212529; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group, .btn-group-vertical { position: relative; @@ -3888,7 +3888,7 @@ input[type="button"].btn-block { vertical-align: middle; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group > .btn, .btn-group-vertical > .btn { position: relative; @@ -3896,13 +3896,13 @@ input[type="button"].btn-block { flex: 1 1 auto; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-group > .btn:hover, .btn-group-vertical > .btn:hover { z-index: 1; } -/* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:active, @@ -3910,7 +3910,7 @@ input[type="button"].btn-block { z-index: 1; } -/* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-toolbar { display: -webkit-box; display: flex; @@ -3919,62 +3919,62 @@ input[type="button"].btn-block { justify-content: flex-start; } -/* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-toolbar .input-group { width: auto; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group > .btn:not(:first-child), .btn-group > .btn-group:not(:first-child) { margin-left: -1px; } -/* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group > .btn:not(:last-child):not(.dropdown-toggle), .btn-group > .btn-group:not(:last-child) > .btn { border-top-right-radius: 0; border-bottom-right-radius: 0; } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group > .btn:not(:first-child), .btn-group > .btn-group:not(:first-child) > .btn { border-top-left-radius: 0; border-bottom-left-radius: 0; } -/* line 69, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .dropdown-toggle-split { padding-right: 0.5625rem; padding-left: 0.5625rem; } -/* line 73, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after { margin-left: 0; } -/* line 79, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 79, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .dropleft .dropdown-toggle-split::before { margin-right: 0; } -/* line 84, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { padding-right: 0.375rem; padding-left: 0.375rem; } -/* line 89, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { padding-right: 0.75rem; padding-left: 0.75rem; } -/* line 111, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 111, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group-vertical { -webkit-box-orient: vertical; -webkit-box-direction: normal; @@ -3985,39 +3985,39 @@ input[type="button"].btn-block { justify-content: center; } -/* line 116, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 116, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group-vertical > .btn, .btn-group-vertical > .btn-group { width: 100%; } -/* line 121, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 121, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .btn-group:not(:first-child) { margin-top: -1px; } -/* line 127, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 127, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .btn-group-vertical > .btn-group:not(:last-child) > .btn { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } -/* line 132, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 132, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .btn-group:not(:first-child) > .btn { border-top-left-radius: 0; border-top-right-radius: 0; } -/* line 152, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 152, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group-toggle > .btn, .btn-group-toggle > .btn-group > .btn { margin-bottom: 0; } -/* line 156, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group-toggle > .btn input[type="radio"], .btn-group-toggle > .btn input[type="checkbox"], .btn-group-toggle > .btn-group > .btn input[type="radio"], @@ -4027,7 +4027,7 @@ input[type="button"].btn-block { pointer-events: none; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group { position: relative; display: -webkit-box; @@ -4038,7 +4038,7 @@ input[type="button"].btn-block { width: 100%; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .form-control, .input-group > .form-control-plaintext, .input-group > .custom-select, @@ -4050,7 +4050,7 @@ input[type="button"].btn-block { margin-bottom: 0; } -/* line 25, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .form-control + .form-control, .input-group > .form-control + .custom-select, .input-group > .form-control + .custom-file, @@ -4066,33 +4066,33 @@ input[type="button"].btn-block { margin-left: -1px; } -/* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .form-control:focus, .input-group > .custom-select:focus, .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { z-index: 3; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .custom-file .custom-file-input:focus { z-index: 4; } -/* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .form-control:not(:last-child), .input-group > .custom-select:not(:last-child) { border-top-right-radius: 0; border-bottom-right-radius: 0; } -/* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .form-control:not(:first-child), .input-group > .custom-select:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0; } -/* line 52, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .custom-file { display: -webkit-box; display: flex; @@ -4100,40 +4100,40 @@ input[type="button"].btn-block { align-items: center; } -/* line 56, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after { border-top-right-radius: 0; border-bottom-right-radius: 0; } -/* line 58, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .custom-file:not(:first-child) .custom-file-label { border-top-left-radius: 0; border-bottom-left-radius: 0; } -/* line 69, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-prepend, .input-group-append { display: -webkit-box; display: flex; } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-prepend .btn, .input-group-append .btn { position: relative; z-index: 2; } -/* line 80, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-prepend .btn:focus, .input-group-append .btn:focus { z-index: 3; } -/* line 85, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 85, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-prepend .btn + .btn, .input-group-prepend .btn + .input-group-text, .input-group-prepend .input-group-text + .input-group-text, @@ -4145,17 +4145,17 @@ input[type="button"].btn-block { margin-left: -1px; } -/* line 93, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 93, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-prepend { margin-right: -1px; } -/* line 94, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 94, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-append { margin-left: -1px; } -/* line 102, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 102, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-text { display: -webkit-box; display: flex; @@ -4174,19 +4174,19 @@ input[type="button"].btn-block { border-radius: 0.25rem; } -/* line 118, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 118, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-text input[type="radio"], .input-group-text input[type="checkbox"] { margin-top: 0; } -/* line 130, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-lg > .form-control:not(textarea), .input-group-lg > .custom-select { height: calc(1.5em + 1rem + 2px); } -/* line 135, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 135, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-lg > .form-control, .input-group-lg > .custom-select, .input-group-lg > .input-group-prepend > .input-group-text, @@ -4199,13 +4199,13 @@ input[type="button"].btn-block { border-radius: 0.3rem; } -/* line 147, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-sm > .form-control:not(textarea), .input-group-sm > .custom-select { height: calc(1.5em + 0.5rem + 2px); } -/* line 152, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 152, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-sm > .form-control, .input-group-sm > .custom-select, .input-group-sm > .input-group-prepend > .input-group-text, @@ -4218,13 +4218,13 @@ input[type="button"].btn-block { border-radius: 0.2rem; } -/* line 164, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 164, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-lg > .custom-select, .input-group-sm > .custom-select { padding-right: 1.75rem; } -/* line 177, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .input-group-text, .input-group > .input-group-append:not(:last-child) > .btn, @@ -4235,7 +4235,7 @@ input[type="button"].btn-block { border-bottom-right-radius: 0; } -/* line 186, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 186, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .input-group-append > .btn, .input-group > .input-group-append > .input-group-text, .input-group > .input-group-prepend:not(:first-child) > .btn, @@ -4246,7 +4246,7 @@ input[type="button"].btn-block { border-bottom-left-radius: 0; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control { position: relative; display: block; @@ -4254,62 +4254,62 @@ input[type="button"].btn-block { padding-left: 1.5rem; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-inline { display: -webkit-inline-box; display: inline-flex; margin-right: 1rem; } -/* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-input { position: absolute; z-index: -1; opacity: 0; } -/* line 27, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-input:checked ~ .custom-control-label::before { color: #fff; border-color: #007bff; background-color: #007bff; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-input:focus ~ .custom-control-label::before { box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-input:focus:not(:checked) ~ .custom-control-label::before { border-color: #80bdff; } -/* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-input:not(:disabled):active ~ .custom-control-label::before { color: #fff; background-color: #b3d7ff; border-color: #b3d7ff; } -/* line 55, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-input:disabled ~ .custom-control-label { color: #6c757d; } -/* line 58, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-input:disabled ~ .custom-control-label::before { background-color: #e9ecef; } -/* line 69, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-label { position: relative; margin-bottom: 0; vertical-align: top; } -/* line 75, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 75, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-label::before { position: absolute; top: 0.25rem; @@ -4323,7 +4323,7 @@ input[type="button"].btn-block { border: #adb5bd solid 1px; } -/* line 90, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-label::after { position: absolute; top: 0.25rem; @@ -4335,58 +4335,58 @@ input[type="button"].btn-block { background: no-repeat 50% / 50% 50%; } -/* line 108, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 108, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-checkbox .custom-control-label::before { border-radius: 0.25rem; } -/* line 113, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 113, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e"); } -/* line 119, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 119, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { border-color: #007bff; background-color: #007bff; } -/* line 124, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 124, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); } -/* line 130, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { background-color: rgba(0, 123, 255, 0.5); } -/* line 133, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 133, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { background-color: rgba(0, 123, 255, 0.5); } -/* line 144, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 144, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-radio .custom-control-label::before { border-radius: 50%; } -/* line 150, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 150, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-radio .custom-control-input:checked ~ .custom-control-label::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); } -/* line 156, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { background-color: rgba(0, 123, 255, 0.5); } -/* line 167, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-switch { padding-left: 2.25rem; } -/* line 171, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-switch .custom-control-label::before { left: -2.25rem; width: 1.75rem; @@ -4394,7 +4394,7 @@ input[type="button"].btn-block { border-radius: 0.5rem; } -/* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-switch .custom-control-label::after { top: calc(0.25rem + 2px); left: calc(-2.25rem + 2px); @@ -4409,26 +4409,26 @@ input[type="button"].btn-block { } @media (prefers-reduced-motion: reduce) { - /* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-switch .custom-control-label::after { -webkit-transition: none; transition: none; } } -/* line 192, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 192, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-switch .custom-control-input:checked ~ .custom-control-label::after { background-color: #fff; -webkit-transform: translateX(0.75rem); transform: translateX(0.75rem); } -/* line 199, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 199, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { background-color: rgba(0, 123, 255, 0.5); } -/* line 212, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 212, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-select { display: inline-block; width: 100%; @@ -4448,38 +4448,38 @@ input[type="button"].btn-block { appearance: none; } -/* line 230, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 230, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-select:focus { border-color: #80bdff; outline: 0; box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } -/* line 239, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 239, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-select:focus::-ms-value { color: #495057; background-color: #fff; } -/* line 250, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 250, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-select[multiple], .custom-select[size]:not([size="1"]) { height: auto; padding-right: 0.75rem; background-image: none; } -/* line 257, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 257, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-select:disabled { color: #6c757d; background-color: #e9ecef; } -/* line 263, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 263, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-select::-ms-expand { display: none; } -/* line 268, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 268, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-select-sm { height: calc(1.5em + 0.5rem + 2px); padding-top: 0.25rem; @@ -4488,7 +4488,7 @@ input[type="button"].btn-block { font-size: 0.875rem; } -/* line 276, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 276, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-select-lg { height: calc(1.5em + 1rem + 2px); padding-top: 0.5rem; @@ -4497,7 +4497,7 @@ input[type="button"].btn-block { font-size: 1.25rem; } -/* line 289, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 289, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-file { position: relative; display: inline-block; @@ -4506,7 +4506,7 @@ input[type="button"].btn-block { margin-bottom: 0; } -/* line 297, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 297, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-file-input { position: relative; z-index: 2; @@ -4516,28 +4516,28 @@ input[type="button"].btn-block { opacity: 0; } -/* line 305, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 305, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-file-input:focus ~ .custom-file-label { border-color: #80bdff; box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } -/* line 310, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 310, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-file-input:disabled ~ .custom-file-label { background-color: #e9ecef; } -/* line 315, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 315, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-file-input:lang(en) ~ .custom-file-label::after { content: "Browse"; } -/* line 320, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 320, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-file-input ~ .custom-file-label[data-browse]::after { content: attr(data-browse); } -/* line 325, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 325, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-file-label { position: absolute; top: 0; @@ -4554,7 +4554,7 @@ input[type="button"].btn-block { border-radius: 0.25rem; } -/* line 342, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 342, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-file-label::after { position: absolute; top: 0; @@ -4572,7 +4572,7 @@ input[type="button"].btn-block { border-radius: 0 0.25rem 0.25rem 0; } -/* line 366, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 366, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range { width: 100%; height: calc(1rem + 0.4rem); @@ -4583,32 +4583,32 @@ input[type="button"].btn-block { appearance: none; } -/* line 373, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 373, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range:focus { outline: none; } -/* line 378, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 378, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range:focus::-webkit-slider-thumb { box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } -/* line 379, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 379, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range:focus::-moz-range-thumb { box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } -/* line 380, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 380, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range:focus::-ms-thumb { box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } -/* line 383, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 383, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-moz-focus-outer { border: 0; } -/* line 387, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 387, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-webkit-slider-thumb { width: 1rem; height: 1rem; @@ -4623,19 +4623,19 @@ input[type="button"].btn-block { } @media (prefers-reduced-motion: reduce) { - /* line 387, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + /* line 387, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-webkit-slider-thumb { -webkit-transition: none; transition: none; } } -/* line 398, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 398, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-webkit-slider-thumb:active { background-color: #b3d7ff; } -/* line 403, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 403, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-webkit-slider-runnable-track { width: 100%; height: 0.5rem; @@ -4646,7 +4646,7 @@ input[type="button"].btn-block { border-radius: 1rem; } -/* line 414, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 414, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-moz-range-thumb { width: 1rem; height: 1rem; @@ -4660,19 +4660,19 @@ input[type="button"].btn-block { } @media (prefers-reduced-motion: reduce) { - /* line 414, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + /* line 414, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-moz-range-thumb { -webkit-transition: none; transition: none; } } -/* line 424, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 424, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-moz-range-thumb:active { background-color: #b3d7ff; } -/* line 429, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 429, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-moz-range-track { width: 100%; height: 0.5rem; @@ -4683,7 +4683,7 @@ input[type="button"].btn-block { border-radius: 1rem; } -/* line 440, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 440, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-ms-thumb { width: 1rem; height: 1rem; @@ -4699,19 +4699,19 @@ input[type="button"].btn-block { } @media (prefers-reduced-motion: reduce) { - /* line 440, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + /* line 440, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-ms-thumb { -webkit-transition: none; transition: none; } } -/* line 453, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 453, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-ms-thumb:active { background-color: #b3d7ff; } -/* line 458, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 458, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-ms-track { width: 100%; height: 0.5rem; @@ -4722,45 +4722,45 @@ input[type="button"].btn-block { border-width: 0.5rem; } -/* line 469, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 469, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-ms-fill-lower { background-color: #dee2e6; border-radius: 1rem; } -/* line 474, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 474, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-ms-fill-upper { margin-right: 15px; background-color: #dee2e6; border-radius: 1rem; } -/* line 481, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 481, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range:disabled::-webkit-slider-thumb { background-color: #adb5bd; } -/* line 485, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 485, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range:disabled::-webkit-slider-runnable-track { cursor: default; } -/* line 489, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 489, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range:disabled::-moz-range-thumb { background-color: #adb5bd; } -/* line 493, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 493, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range:disabled::-moz-range-track { cursor: default; } -/* line 497, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 497, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range:disabled::-ms-thumb { background-color: #adb5bd; } -/* line 503, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 503, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-label::before, .custom-file-label, .custom-select { @@ -4769,7 +4769,7 @@ input[type="button"].btn-block { } @media (prefers-reduced-motion: reduce) { - /* line 503, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + /* line 503, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-label::before, .custom-file-label, .custom-select { @@ -4778,7 +4778,7 @@ input[type="button"].btn-block { } } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav { display: -webkit-box; display: flex; @@ -4788,54 +4788,54 @@ input[type="button"].btn-block { list-style: none; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-link { display: block; padding: 0.5rem 1rem; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .nav-link:hover, .nav-link:focus { text-decoration: none; } -/* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-link.disabled { color: #6c757d; pointer-events: none; cursor: default; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-tabs { border-bottom: 1px solid #dee2e6; } -/* line 37, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-tabs .nav-item { margin-bottom: -1px; } -/* line 41, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-tabs .nav-link { border: 1px solid transparent; border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { border-color: #e9ecef #e9ecef #dee2e6; } -/* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-tabs .nav-link.disabled { color: #6c757d; background-color: transparent; border-color: transparent; } -/* line 56, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link { color: #495057; @@ -4843,33 +4843,33 @@ input[type="button"].btn-block { border-color: #dee2e6 #dee2e6 #fff; } -/* line 63, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-tabs .dropdown-menu { margin-top: -1px; border-top-left-radius: 0; border-top-right-radius: 0; } -/* line 77, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 77, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-pills .nav-link { border-radius: 0.25rem; } -/* line 81, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 81, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-pills .nav-link.active, .nav-pills .show > .nav-link { color: #fff; background-color: #007bff; } -/* line 94, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 94, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-fill .nav-item { -webkit-box-flex: 1; flex: 1 1 auto; text-align: center; } -/* line 101, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 101, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-justified .nav-item { flex-basis: 0; -webkit-box-flex: 1; @@ -4877,17 +4877,17 @@ input[type="button"].btn-block { text-align: center; } -/* line 114, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 114, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .tab-content > .tab-pane { display: none; } -/* line 117, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .tab-content > .active { display: block; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar { position: relative; display: -webkit-box; @@ -4900,7 +4900,7 @@ input[type="button"].btn-block { padding: 0.5rem 1rem; } -/* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar > .container, .navbar > .container-fluid { display: -webkit-box; @@ -4912,7 +4912,7 @@ input[type="button"].btn-block { justify-content: space-between; } -/* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-brand { display: inline-block; padding-top: 0.3125rem; @@ -4923,12 +4923,12 @@ input[type="button"].btn-block { white-space: nowrap; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .navbar-brand:hover, .navbar-brand:focus { text-decoration: none; } -/* line 61, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-nav { display: -webkit-box; display: flex; @@ -4940,26 +4940,26 @@ input[type="button"].btn-block { list-style: none; } -/* line 68, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-nav .nav-link { padding-right: 0; padding-left: 0; } -/* line 73, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-nav .dropdown-menu { position: static; float: none; } -/* line 84, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-text { display: inline-block; padding-top: 0.5rem; padding-bottom: 0.5rem; } -/* line 99, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 99, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-collapse { flex-basis: 100%; -webkit-box-flex: 1; @@ -4968,7 +4968,7 @@ input[type="button"].btn-block { align-items: center; } -/* line 108, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 108, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-toggler { padding: 0.25rem 0.75rem; font-size: 1.25rem; @@ -4978,12 +4978,12 @@ input[type="button"].btn-block { border-radius: 0.25rem; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .navbar-toggler:hover, .navbar-toggler:focus { text-decoration: none; } -/* line 123, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 123, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-toggler-icon { display: inline-block; width: 1.5em; @@ -4995,7 +4995,7 @@ input[type="button"].btn-block { } @media (max-width: 575.98px) { - /* line 142, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid { padding-right: 0; @@ -5004,7 +5004,7 @@ input[type="button"].btn-block { } @media (min-width: 576px) { - /* line 140, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-sm { -webkit-box-orient: horizontal; -webkit-box-direction: normal; @@ -5012,40 +5012,40 @@ input[type="button"].btn-block { -webkit-box-pack: start; justify-content: flex-start; } - /* line 153, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-sm .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } - /* line 156, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-sm .navbar-nav .dropdown-menu { position: absolute; } - /* line 160, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-sm .navbar-nav .nav-link { padding-right: 0.5rem; padding-left: 0.5rem; } - /* line 167, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid { flex-wrap: nowrap; } - /* line 172, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-sm .navbar-collapse { display: -webkit-box !important; display: flex !important; flex-basis: auto; } - /* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-sm .navbar-toggler { display: none; } } @media (max-width: 767.98px) { - /* line 142, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-md > .container, .navbar-expand-md > .container-fluid { padding-right: 0; @@ -5054,7 +5054,7 @@ input[type="button"].btn-block { } @media (min-width: 768px) { - /* line 140, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-md { -webkit-box-orient: horizontal; -webkit-box-direction: normal; @@ -5062,40 +5062,40 @@ input[type="button"].btn-block { -webkit-box-pack: start; justify-content: flex-start; } - /* line 153, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-md .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } - /* line 156, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-md .navbar-nav .dropdown-menu { position: absolute; } - /* line 160, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-md .navbar-nav .nav-link { padding-right: 0.5rem; padding-left: 0.5rem; } - /* line 167, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-md > .container, .navbar-expand-md > .container-fluid { flex-wrap: nowrap; } - /* line 172, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-md .navbar-collapse { display: -webkit-box !important; display: flex !important; flex-basis: auto; } - /* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-md .navbar-toggler { display: none; } } @media (max-width: 991.98px) { - /* line 142, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid { padding-right: 0; @@ -5104,7 +5104,7 @@ input[type="button"].btn-block { } @media (min-width: 992px) { - /* line 140, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-lg { -webkit-box-orient: horizontal; -webkit-box-direction: normal; @@ -5112,40 +5112,40 @@ input[type="button"].btn-block { -webkit-box-pack: start; justify-content: flex-start; } - /* line 153, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-lg .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } - /* line 156, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-lg .navbar-nav .dropdown-menu { position: absolute; } - /* line 160, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-lg .navbar-nav .nav-link { padding-right: 0.5rem; padding-left: 0.5rem; } - /* line 167, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid { flex-wrap: nowrap; } - /* line 172, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-lg .navbar-collapse { display: -webkit-box !important; display: flex !important; flex-basis: auto; } - /* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-lg .navbar-toggler { display: none; } } @media (max-width: 1199.98px) { - /* line 142, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid { padding-right: 0; @@ -5154,7 +5154,7 @@ input[type="button"].btn-block { } @media (min-width: 1200px) { - /* line 140, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-xl { -webkit-box-orient: horizontal; -webkit-box-direction: normal; @@ -5162,39 +5162,39 @@ input[type="button"].btn-block { -webkit-box-pack: start; justify-content: flex-start; } - /* line 153, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-xl .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } - /* line 156, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-xl .navbar-nav .dropdown-menu { position: absolute; } - /* line 160, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-xl .navbar-nav .nav-link { padding-right: 0.5rem; padding-left: 0.5rem; } - /* line 167, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid { flex-wrap: nowrap; } - /* line 172, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-xl .navbar-collapse { display: -webkit-box !important; display: flex !important; flex-basis: auto; } - /* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-xl .navbar-toggler { display: none; } } -/* line 140, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand { -webkit-box-orient: horizontal; -webkit-box-direction: normal; @@ -5203,75 +5203,75 @@ input[type="button"].btn-block { justify-content: flex-start; } -/* line 142, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand > .container, .navbar-expand > .container-fluid { padding-right: 0; padding-left: 0; } -/* line 153, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } -/* line 156, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand .navbar-nav .dropdown-menu { position: absolute; } -/* line 160, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand .navbar-nav .nav-link { padding-right: 0.5rem; padding-left: 0.5rem; } -/* line 167, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand > .container, .navbar-expand > .container-fluid { flex-wrap: nowrap; } -/* line 172, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand .navbar-collapse { display: -webkit-box !important; display: flex !important; flex-basis: auto; } -/* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand .navbar-toggler { display: none; } -/* line 194, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 194, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-light .navbar-brand { color: rgba(0, 0, 0, 0.9); } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { color: rgba(0, 0, 0, 0.9); } -/* line 203, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 203, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-light .navbar-nav .nav-link { color: rgba(0, 0, 0, 0.5); } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { color: rgba(0, 0, 0, 0.7); } -/* line 210, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 210, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-light .navbar-nav .nav-link.disabled { color: rgba(0, 0, 0, 0.3); } -/* line 215, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 215, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.show, @@ -5279,58 +5279,58 @@ input[type="button"].btn-block { color: rgba(0, 0, 0, 0.9); } -/* line 223, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 223, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-light .navbar-toggler { color: rgba(0, 0, 0, 0.5); border-color: rgba(0, 0, 0, 0.1); } -/* line 228, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 228, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-light .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } -/* line 232, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 232, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-light .navbar-text { color: rgba(0, 0, 0, 0.5); } -/* line 234, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 234, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-light .navbar-text a { color: rgba(0, 0, 0, 0.9); } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { color: rgba(0, 0, 0, 0.9); } -/* line 246, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 246, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-dark .navbar-brand { color: #fff; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { color: #fff; } -/* line 255, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 255, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-dark .navbar-nav .nav-link { color: rgba(255, 255, 255, 0.5); } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { color: rgba(255, 255, 255, 0.75); } -/* line 262, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 262, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-dark .navbar-nav .nav-link.disabled { color: rgba(255, 255, 255, 0.25); } -/* line 267, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 267, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-dark .navbar-nav .show > .nav-link, .navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.show, @@ -5338,33 +5338,33 @@ input[type="button"].btn-block { color: #fff; } -/* line 275, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 275, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-dark .navbar-toggler { color: rgba(255, 255, 255, 0.5); border-color: rgba(255, 255, 255, 0.1); } -/* line 280, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 280, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-dark .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } -/* line 284, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 284, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-dark .navbar-text { color: rgba(255, 255, 255, 0.5); } -/* line 286, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 286, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-dark .navbar-text a { color: #fff; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { color: #fff; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card { position: relative; display: -webkit-box; @@ -5380,58 +5380,58 @@ input[type="button"].btn-block { border-radius: 0.25rem; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card > hr { margin-right: 0; margin-left: 0; } -/* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card > .list-group:first-child .list-group-item:first-child { border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem; } -/* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card > .list-group:last-child .list-group-item:last-child { border-bottom-right-radius: 0.25rem; border-bottom-left-radius: 0.25rem; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-body { -webkit-box-flex: 1; flex: 1 1 auto; padding: 1.25rem; } -/* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-title { margin-bottom: 0.75rem; } -/* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-subtitle { margin-top: -0.375rem; margin-bottom: 0; } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-text:last-child { margin-bottom: 0; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .card-link:hover { text-decoration: none; } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-link + .card-link { margin-left: 1.25rem; } -/* line 69, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-header { padding: 0.75rem 1.25rem; margin-bottom: 0; @@ -5439,29 +5439,29 @@ input[type="button"].btn-block { border-bottom: 1px solid rgba(0, 0, 0, 0.125); } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-header:first-child { border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; } -/* line 81, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 81, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-header + .list-group .list-group-item:first-child { border-top: 0; } -/* line 87, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-footer { padding: 0.75rem 1.25rem; background-color: rgba(0, 0, 0, 0.03); border-top: 1px solid rgba(0, 0, 0, 0.125); } -/* line 92, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 92, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-footer:last-child { border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); } -/* line 102, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 102, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-header-tabs { margin-right: -0.625rem; margin-bottom: -0.75rem; @@ -5469,13 +5469,13 @@ input[type="button"].btn-block { border-bottom: 0; } -/* line 109, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 109, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-header-pills { margin-right: -0.625rem; margin-left: -0.625rem; } -/* line 115, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 115, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-img-overlay { position: absolute; top: 0; @@ -5485,27 +5485,27 @@ input[type="button"].btn-block { padding: 1.25rem; } -/* line 124, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 124, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-img { width: 100%; border-radius: calc(0.25rem - 1px); } -/* line 130, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-img-top { width: 100%; border-top-left-radius: calc(0.25rem - 1px); border-top-right-radius: calc(0.25rem - 1px); } -/* line 135, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 135, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-img-bottom { width: 100%; border-bottom-right-radius: calc(0.25rem - 1px); border-bottom-left-radius: calc(0.25rem - 1px); } -/* line 143, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-deck { display: -webkit-box; display: flex; @@ -5514,13 +5514,13 @@ input[type="button"].btn-block { flex-direction: column; } -/* line 147, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-deck .card { margin-bottom: 15px; } @media (min-width: 576px) { - /* line 143, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-deck { -webkit-box-orient: horizontal; -webkit-box-direction: normal; @@ -5528,7 +5528,7 @@ input[type="button"].btn-block { margin-right: -15px; margin-left: -15px; } - /* line 156, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-deck .card { display: -webkit-box; display: flex; @@ -5543,7 +5543,7 @@ input[type="button"].btn-block { } } -/* line 173, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 173, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group { display: -webkit-box; display: flex; @@ -5552,68 +5552,68 @@ input[type="button"].btn-block { flex-direction: column; } -/* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group > .card { margin-bottom: 15px; } @media (min-width: 576px) { - /* line 173, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 173, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-flow: row wrap; } - /* line 187, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 187, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group > .card { -webkit-box-flex: 1; flex: 1 0 0%; margin-bottom: 0; } - /* line 192, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 192, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group > .card + .card { margin-left: 0; border-left: 0; } - /* line 199, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 199, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group > .card:not(:last-child) { border-top-right-radius: 0; border-bottom-right-radius: 0; } - /* line 202, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 202, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group > .card:not(:last-child) .card-img-top, .card-group > .card:not(:last-child) .card-header { border-top-right-radius: 0; } - /* line 207, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 207, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group > .card:not(:last-child) .card-img-bottom, .card-group > .card:not(:last-child) .card-footer { border-bottom-right-radius: 0; } - /* line 214, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 214, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group > .card:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0; } - /* line 217, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 217, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group > .card:not(:first-child) .card-img-top, .card-group > .card:not(:first-child) .card-header { border-top-left-radius: 0; } - /* line 222, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 222, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group > .card:not(:first-child) .card-img-bottom, .card-group > .card:not(:first-child) .card-footer { border-bottom-left-radius: 0; } } -/* line 239, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 239, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-columns .card { margin-bottom: 0.75rem; } @media (min-width: 576px) { - /* line 238, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 238, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-columns { -webkit-column-count: 3; -moz-column-count: 3; @@ -5624,48 +5624,48 @@ input[type="button"].btn-block { orphans: 1; widows: 1; } - /* line 249, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 249, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-columns .card { display: inline-block; width: 100%; } } -/* line 262, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 262, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .accordion > .card { overflow: hidden; } -/* line 266, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 266, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .accordion > .card:not(:first-of-type) .card-header:first-child { border-radius: 0; } -/* line 270, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 270, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .accordion > .card:not(:first-of-type):not(:last-of-type) { border-bottom: 0; border-radius: 0; } -/* line 276, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 276, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .accordion > .card:first-of-type { border-bottom: 0; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } -/* line 281, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 281, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .accordion > .card:last-of-type { border-top-left-radius: 0; border-top-right-radius: 0; } -/* line 285, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 285, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .accordion > .card .card-header { margin-bottom: -1px; } -/* line 1, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ .breadcrumb { display: -webkit-box; display: flex; @@ -5677,12 +5677,12 @@ input[type="button"].btn-block { border-radius: 0.25rem; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ .breadcrumb-item + .breadcrumb-item { padding-left: 0.5rem; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ .breadcrumb-item + .breadcrumb-item::before { display: inline-block; padding-right: 0.5rem; @@ -5690,22 +5690,22 @@ input[type="button"].btn-block { content: "/"; } -/* line 30, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ .breadcrumb-item + .breadcrumb-item:hover::before { text-decoration: underline; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ .breadcrumb-item + .breadcrumb-item:hover::before { text-decoration: none; } -/* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ .breadcrumb-item.active { color: #6c757d; } -/* line 1, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ .pagination { display: -webkit-box; display: flex; @@ -5714,7 +5714,7 @@ input[type="button"].btn-block { border-radius: 0.25rem; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ .page-link { position: relative; display: block; @@ -5726,7 +5726,7 @@ input[type="button"].btn-block { border: 1px solid #dee2e6; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ .page-link:hover { z-index: 2; color: #0056b3; @@ -5735,27 +5735,27 @@ input[type="button"].btn-block { border-color: #dee2e6; } -/* line 25, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ .page-link:focus { z-index: 2; outline: 0; box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ .page-item:first-child .page-link { margin-left: 0; border-top-left-radius: 0.25rem; border-bottom-left-radius: 0.25rem; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ .page-item:last-child .page-link { border-top-right-radius: 0.25rem; border-bottom-right-radius: 0.25rem; } -/* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ .page-item.active .page-link { z-index: 1; color: #fff; @@ -5763,7 +5763,7 @@ input[type="button"].btn-block { border-color: #007bff; } -/* line 52, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ .page-item.disabled .page-link { color: #6c757d; pointer-events: none; @@ -5772,45 +5772,45 @@ input[type="button"].btn-block { border-color: #dee2e6; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ .pagination-lg .page-link { padding: 0.75rem 1.5rem; font-size: 1.25rem; line-height: 1.5; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ .pagination-lg .page-item:first-child .page-link { border-top-left-radius: 0.3rem; border-bottom-left-radius: 0.3rem; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ .pagination-lg .page-item:last-child .page-link { border-top-right-radius: 0.3rem; border-bottom-right-radius: 0.3rem; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ .pagination-sm .page-link { padding: 0.25rem 0.5rem; font-size: 0.875rem; line-height: 1.5; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ .pagination-sm .page-item:first-child .page-link { border-top-left-radius: 0.2rem; border-bottom-left-radius: 0.2rem; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ .pagination-sm .page-item:last-child .page-link { border-top-right-radius: 0.2rem; border-bottom-right-radius: 0.2rem; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge { display: inline-block; padding: 0.25em 0.4em; @@ -5826,181 +5826,181 @@ input[type="button"].btn-block { } @media (prefers-reduced-motion: reduce) { - /* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge { -webkit-transition: none; transition: none; } } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.badge:hover, a.badge:focus { text-decoration: none; } -/* line 25, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge:empty { display: none; } -/* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .btn .badge { position: relative; top: -1px; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge-pill { padding-right: 0.6em; padding-left: 0.6em; border-radius: 10rem; } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge-primary { color: #fff; background-color: #007bff; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.badge-primary:hover, a.badge-primary:focus { color: #fff; background-color: #0062cc; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ a.badge-primary:focus, a.badge-primary.focus { outline: 0; box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge-secondary { color: #fff; background-color: #6c757d; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.badge-secondary:hover, a.badge-secondary:focus { color: #fff; background-color: #545b62; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ a.badge-secondary:focus, a.badge-secondary.focus { outline: 0; box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge-success { color: #fff; background-color: #28a745; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.badge-success:hover, a.badge-success:focus { color: #fff; background-color: #1e7e34; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ a.badge-success:focus, a.badge-success.focus { outline: 0; box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge-info { color: #fff; background-color: #17a2b8; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.badge-info:hover, a.badge-info:focus { color: #fff; background-color: #117a8b; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ a.badge-info:focus, a.badge-info.focus { outline: 0; box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge-warning { color: #212529; background-color: #ffc107; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.badge-warning:hover, a.badge-warning:focus { color: #212529; background-color: #d39e00; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ a.badge-warning:focus, a.badge-warning.focus { outline: 0; box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge-danger { color: #fff; background-color: #dc3545; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.badge-danger:hover, a.badge-danger:focus { color: #fff; background-color: #bd2130; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ a.badge-danger:focus, a.badge-danger.focus { outline: 0; box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge-light { color: #212529; background-color: #f8f9fa; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.badge-light:hover, a.badge-light:focus { color: #212529; background-color: #dae0e5; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ a.badge-light:focus, a.badge-light.focus { outline: 0; box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge-dark { color: #fff; background-color: #343a40; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.badge-dark:hover, a.badge-dark:focus { color: #fff; background-color: #1d2124; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ a.badge-dark:focus, a.badge-dark.focus { outline: 0; box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } -/* line 1, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_jumbotron.scss */ +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_jumbotron.scss */ .jumbotron { padding: 2rem 1rem; margin-bottom: 2rem; @@ -6009,20 +6009,20 @@ a.badge-dark:focus, a.badge-dark.focus { } @media (min-width: 576px) { - /* line 1, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_jumbotron.scss */ + /* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_jumbotron.scss */ .jumbotron { padding: 4rem 2rem; } } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_jumbotron.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_jumbotron.scss */ .jumbotron-fluid { padding-right: 0; padding-left: 0; border-radius: 0; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert { position: relative; padding: 0.75rem 1.25rem; @@ -6031,22 +6031,22 @@ a.badge-dark:focus, a.badge-dark.focus { border-radius: 0.25rem; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-heading { color: inherit; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-link { font-weight: 700; } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-dismissible { padding-right: 4rem; } -/* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-dismissible .close { position: absolute; top: 0; @@ -6055,138 +6055,138 @@ a.badge-dark:focus, a.badge-dark.focus { color: inherit; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-primary { color: #004085; background-color: #cce5ff; border-color: #b8daff; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-primary hr { border-top-color: #9fcdff; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-primary .alert-link { color: #002752; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-secondary { color: #383d41; background-color: #e2e3e5; border-color: #d6d8db; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-secondary hr { border-top-color: #c8cbcf; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-secondary .alert-link { color: #202326; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-success { color: #155724; background-color: #d4edda; border-color: #c3e6cb; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-success hr { border-top-color: #b1dfbb; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-success .alert-link { color: #0b2e13; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-info { color: #0c5460; background-color: #d1ecf1; border-color: #bee5eb; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-info hr { border-top-color: #abdde5; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-info .alert-link { color: #062c33; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-warning { color: #856404; background-color: #fff3cd; border-color: #ffeeba; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-warning hr { border-top-color: #ffe8a1; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-warning .alert-link { color: #533f03; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-danger { color: #721c24; background-color: #f8d7da; border-color: #f5c6cb; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-danger hr { border-top-color: #f1b0b7; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-danger .alert-link { color: #491217; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-light { color: #818182; background-color: #fefefe; border-color: #fdfdfe; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-light hr { border-top-color: #ececf6; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-light .alert-link { color: #686868; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-dark { color: #1b1e21; background-color: #d6d8d9; border-color: #c6c8ca; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-dark hr { border-top-color: #b9bbbe; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-dark .alert-link { color: #040505; } @@ -6209,7 +6209,7 @@ a.badge-dark:focus, a.badge-dark.focus { } } -/* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ .progress { display: -webkit-box; display: flex; @@ -6220,7 +6220,7 @@ a.badge-dark:focus, a.badge-dark.focus { border-radius: 0.25rem; } -/* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ .progress-bar { display: -webkit-box; display: flex; @@ -6238,34 +6238,34 @@ a.badge-dark:focus, a.badge-dark.focus { } @media (prefers-reduced-motion: reduce) { - /* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ .progress-bar { -webkit-transition: none; transition: none; } } -/* line 30, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ .progress-bar-striped { background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-size: 1rem 1rem; } -/* line 36, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ .progress-bar-animated { -webkit-animation: progress-bar-stripes 1s linear infinite; animation: progress-bar-stripes 1s linear infinite; } @media (prefers-reduced-motion: reduce) { - /* line 36, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ .progress-bar-animated { -webkit-animation: none; animation: none; } } -/* line 1, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_media.scss */ +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_media.scss */ .media { display: -webkit-box; display: flex; @@ -6273,13 +6273,13 @@ a.badge-dark:focus, a.badge-dark.focus { align-items: flex-start; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_media.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_media.scss */ .media-body { -webkit-box-flex: 1; flex: 1; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group { display: -webkit-box; display: flex; @@ -6290,14 +6290,14 @@ a.badge-dark:focus, a.badge-dark.focus { margin-bottom: 0; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-item-action { width: 100%; color: #495057; text-align: inherit; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .list-group-item-action:hover, .list-group-item-action:focus { z-index: 1; color: #495057; @@ -6305,13 +6305,13 @@ a.badge-dark:focus, a.badge-dark.focus { background-color: #f8f9fa; } -/* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-item-action:active { color: #212529; background-color: #e9ecef; } -/* line 44, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-item { position: relative; display: block; @@ -6321,27 +6321,27 @@ a.badge-dark:focus, a.badge-dark.focus { border: 1px solid rgba(0, 0, 0, 0.125); } -/* line 54, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-item:first-child { border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem; } -/* line 58, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-item:last-child { margin-bottom: 0; border-bottom-right-radius: 0.25rem; border-bottom-left-radius: 0.25rem; } -/* line 63, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-item.disabled, .list-group-item:disabled { color: #6c757d; pointer-events: none; background-color: #fff; } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-item.active { z-index: 2; color: #fff; @@ -6349,27 +6349,27 @@ a.badge-dark:focus, a.badge-dark.focus { border-color: #007bff; } -/* line 88, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } -/* line 91, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal .list-group-item { margin-right: -1px; margin-bottom: 0; } -/* line 95, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal .list-group-item:first-child { border-top-left-radius: 0.25rem; border-bottom-left-radius: 0.25rem; border-top-right-radius: 0; } -/* line 100, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal .list-group-item:last-child { margin-right: 0; border-top-right-radius: 0.25rem; @@ -6378,24 +6378,24 @@ a.badge-dark:focus, a.badge-dark.focus { } @media (min-width: 576px) { - /* line 88, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-sm { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } - /* line 91, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-sm .list-group-item { margin-right: -1px; margin-bottom: 0; } - /* line 95, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-sm .list-group-item:first-child { border-top-left-radius: 0.25rem; border-bottom-left-radius: 0.25rem; border-top-right-radius: 0; } - /* line 100, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-sm .list-group-item:last-child { margin-right: 0; border-top-right-radius: 0.25rem; @@ -6405,24 +6405,24 @@ a.badge-dark:focus, a.badge-dark.focus { } @media (min-width: 768px) { - /* line 88, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-md { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } - /* line 91, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-md .list-group-item { margin-right: -1px; margin-bottom: 0; } - /* line 95, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-md .list-group-item:first-child { border-top-left-radius: 0.25rem; border-bottom-left-radius: 0.25rem; border-top-right-radius: 0; } - /* line 100, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-md .list-group-item:last-child { margin-right: 0; border-top-right-radius: 0.25rem; @@ -6432,24 +6432,24 @@ a.badge-dark:focus, a.badge-dark.focus { } @media (min-width: 992px) { - /* line 88, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-lg { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } - /* line 91, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-lg .list-group-item { margin-right: -1px; margin-bottom: 0; } - /* line 95, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-lg .list-group-item:first-child { border-top-left-radius: 0.25rem; border-bottom-left-radius: 0.25rem; border-top-right-radius: 0; } - /* line 100, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-lg .list-group-item:last-child { margin-right: 0; border-top-right-radius: 0.25rem; @@ -6459,24 +6459,24 @@ a.badge-dark:focus, a.badge-dark.focus { } @media (min-width: 1200px) { - /* line 88, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-xl { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } - /* line 91, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-xl .list-group-item { margin-right: -1px; margin-bottom: 0; } - /* line 95, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-xl .list-group-item:first-child { border-top-left-radius: 0.25rem; border-bottom-left-radius: 0.25rem; border-top-right-radius: 0; } - /* line 100, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-xl .list-group-item:last-child { margin-right: 0; border-top-right-radius: 0.25rem; @@ -6485,182 +6485,182 @@ a.badge-dark:focus, a.badge-dark.focus { } } -/* line 117, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-flush .list-group-item { border-right: 0; border-left: 0; border-radius: 0; } -/* line 122, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-flush .list-group-item:last-child { margin-bottom: -1px; } -/* line 128, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 128, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-flush:first-child .list-group-item:first-child { border-top: 0; } -/* line 134, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-flush:last-child .list-group-item:last-child { margin-bottom: 0; border-bottom: 0; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-primary { color: #004085; background-color: #b8daff; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { color: #004085; background-color: #9fcdff; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-primary.list-group-item-action.active { color: #fff; background-color: #004085; border-color: #004085; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-secondary { color: #383d41; background-color: #d6d8db; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { color: #383d41; background-color: #c8cbcf; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-secondary.list-group-item-action.active { color: #fff; background-color: #383d41; border-color: #383d41; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-success { color: #155724; background-color: #c3e6cb; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { color: #155724; background-color: #b1dfbb; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-success.list-group-item-action.active { color: #fff; background-color: #155724; border-color: #155724; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-info { color: #0c5460; background-color: #bee5eb; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { color: #0c5460; background-color: #abdde5; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-info.list-group-item-action.active { color: #fff; background-color: #0c5460; border-color: #0c5460; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-warning { color: #856404; background-color: #ffeeba; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { color: #856404; background-color: #ffe8a1; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-warning.list-group-item-action.active { color: #fff; background-color: #856404; border-color: #856404; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-danger { color: #721c24; background-color: #f5c6cb; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { color: #721c24; background-color: #f1b0b7; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-danger.list-group-item-action.active { color: #fff; background-color: #721c24; border-color: #721c24; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-light { color: #818182; background-color: #fdfdfe; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { color: #818182; background-color: #ececf6; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-light.list-group-item-action.active { color: #fff; background-color: #818182; border-color: #818182; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-dark { color: #1b1e21; background-color: #c6c8ca; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { color: #1b1e21; background-color: #b9bbbe; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-dark.list-group-item-action.active { color: #fff; background-color: #1b1e21; border-color: #1b1e21; } -/* line 1, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_close.scss */ +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_close.scss */ .close { float: right; font-size: 1.5rem; @@ -6671,18 +6671,18 @@ a.badge-dark:focus, a.badge-dark.focus { opacity: .5; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .close:hover { color: #000; text-decoration: none; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { opacity: .75; } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_close.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_close.scss */ button.close { padding: 0; background-color: transparent; @@ -6692,12 +6692,12 @@ button.close { appearance: none; } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_close.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_close.scss */ a.close.disabled { pointer-events: none; } -/* line 1, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ .toast { max-width: 350px; overflow: hidden; @@ -6712,28 +6712,28 @@ a.close.disabled { border-radius: 0.25rem; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ .toast:not(:last-child) { margin-bottom: 0.75rem; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ .toast.showing { opacity: 1; } -/* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ .toast.show { display: block; opacity: 1; } -/* line 27, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ .toast.hide { display: none; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ .toast-header { display: -webkit-box; display: flex; @@ -6746,23 +6746,23 @@ a.close.disabled { border-bottom: 1px solid rgba(0, 0, 0, 0.05); } -/* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ .toast-body { padding: 0.75rem; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-open { overflow: hidden; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-open .modal { overflow-x: hidden; overflow-y: auto; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal { position: fixed; top: 0; @@ -6775,7 +6775,7 @@ a.close.disabled { outline: 0; } -/* line 36, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog { position: relative; width: auto; @@ -6783,7 +6783,7 @@ a.close.disabled { pointer-events: none; } -/* line 44, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal.fade .modal-dialog { -webkit-transition: -webkit-transform 0.3s ease-out; transition: -webkit-transform 0.3s ease-out; @@ -6794,44 +6794,44 @@ a.close.disabled { } @media (prefers-reduced-motion: reduce) { - /* line 44, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal.fade .modal-dialog { -webkit-transition: none; transition: none; } } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal.show .modal-dialog { -webkit-transform: none; transform: none; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-scrollable { display: -webkit-box; display: flex; max-height: calc(100% - 1rem); } -/* line 57, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 57, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-scrollable .modal-content { max-height: calc(100vh - 1rem); overflow: hidden; } -/* line 62, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-scrollable .modal-header, .modal-dialog-scrollable .modal-footer { flex-shrink: 0; } -/* line 67, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-scrollable .modal-body { overflow-y: auto; } -/* line 72, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-centered { display: -webkit-box; display: flex; @@ -6840,14 +6840,14 @@ a.close.disabled { min-height: calc(100% - 1rem); } -/* line 78, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 78, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-centered::before { display: block; height: calc(100vh - 1rem); content: ""; } -/* line 85, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 85, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-centered.modal-dialog-scrollable { -webkit-box-orient: vertical; -webkit-box-direction: normal; @@ -6857,17 +6857,17 @@ a.close.disabled { height: 100%; } -/* line 90, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-centered.modal-dialog-scrollable .modal-content { max-height: none; } -/* line 94, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 94, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-centered.modal-dialog-scrollable::before { content: none; } -/* line 101, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 101, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-content { position: relative; display: -webkit-box; @@ -6884,7 +6884,7 @@ a.close.disabled { outline: 0; } -/* line 119, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 119, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-backdrop { position: fixed; top: 0; @@ -6895,17 +6895,17 @@ a.close.disabled { background-color: #000; } -/* line 129, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 129, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-backdrop.fade { opacity: 0; } -/* line 130, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-backdrop.show { opacity: 0.5; } -/* line 135, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 135, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-header { display: -webkit-box; display: flex; @@ -6919,19 +6919,19 @@ a.close.disabled { border-top-right-radius: 0.3rem; } -/* line 143, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-header .close { padding: 1rem 1rem; margin: -1rem -1rem -1rem auto; } -/* line 151, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 151, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-title { margin-bottom: 0; line-height: 1.5; } -/* line 158, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 158, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-body { position: relative; -webkit-box-flex: 1; @@ -6939,7 +6939,7 @@ a.close.disabled { padding: 1rem; } -/* line 167, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-footer { display: -webkit-box; display: flex; @@ -6953,17 +6953,17 @@ a.close.disabled { border-bottom-left-radius: 0.3rem; } -/* line 176, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 176, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-footer > :not(:first-child) { margin-left: .25rem; } -/* line 177, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-footer > :not(:last-child) { margin-right: .25rem; } -/* line 181, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 181, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-scrollbar-measure { position: absolute; top: -9999px; @@ -6973,35 +6973,35 @@ a.close.disabled { } @media (min-width: 576px) { - /* line 192, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + /* line 192, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog { max-width: 500px; margin: 1.75rem auto; } - /* line 197, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + /* line 197, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-scrollable { max-height: calc(100% - 3.5rem); } - /* line 200, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + /* line 200, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-scrollable .modal-content { max-height: calc(100vh - 3.5rem); } - /* line 205, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + /* line 205, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-centered { min-height: calc(100% - 3.5rem); } - /* line 208, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + /* line 208, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-centered::before { height: calc(100vh - 3.5rem); } - /* line 217, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + /* line 217, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-sm { max-width: 300px; } } @media (min-width: 992px) { - /* line 221, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + /* line 221, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-lg, .modal-xl { max-width: 800px; @@ -7009,13 +7009,13 @@ a.close.disabled { } @media (min-width: 1200px) { - /* line 228, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + /* line 228, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-xl { max-width: 1140px; } } -/* line 2, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .tooltip { position: absolute; z-index: 1070; @@ -7040,12 +7040,12 @@ a.close.disabled { opacity: 0; } -/* line 15, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .tooltip.show { opacity: 0.9; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .tooltip .arrow { position: absolute; display: block; @@ -7053,7 +7053,7 @@ a.close.disabled { height: 0.4rem; } -/* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .tooltip .arrow::before { position: absolute; content: ""; @@ -7061,79 +7061,79 @@ a.close.disabled { border-style: solid; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { padding: 0.4rem 0; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { bottom: 0; } -/* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { top: 0; border-width: 0.4rem 0.4rem 0; border-top-color: #000; } -/* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { padding: 0 0.4rem; } -/* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { left: 0; width: 0.4rem; height: 0.8rem; } -/* line 54, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { right: 0; border-width: 0.4rem 0.4rem 0.4rem 0; border-right-color: #000; } -/* line 62, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { padding: 0.4rem 0; } -/* line 65, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 65, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { top: 0; } -/* line 68, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { bottom: 0; border-width: 0 0.4rem 0.4rem; border-bottom-color: #000; } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { padding: 0 0.4rem; } -/* line 79, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 79, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { right: 0; width: 0.4rem; height: 0.8rem; } -/* line 84, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { left: 0; border-width: 0.4rem 0 0.4rem 0.4rem; border-left-color: #000; } -/* line 108, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 108, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .tooltip-inner { max-width: 200px; padding: 0.25rem 0.5rem; @@ -7143,7 +7143,7 @@ a.close.disabled { border-radius: 0.25rem; } -/* line 1, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .popover { position: absolute; top: 0; @@ -7173,7 +7173,7 @@ a.close.disabled { border-radius: 0.3rem; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .popover .arrow { position: absolute; display: block; @@ -7182,7 +7182,7 @@ a.close.disabled { margin: 0 0.3rem; } -/* line 27, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .popover .arrow::before, .popover .arrow::after { position: absolute; display: block; @@ -7191,36 +7191,36 @@ a.close.disabled { border-style: solid; } -/* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-top, .bs-popover-auto[x-placement^="top"] { margin-bottom: 0.5rem; } -/* line 41, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow { bottom: calc((0.5rem + 1px) * -1); } -/* line 44, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before { bottom: 0; border-width: 0.5rem 0.5rem 0; border-top-color: rgba(0, 0, 0, 0.25); } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after { bottom: 1px; border-width: 0.5rem 0.5rem 0; border-top-color: #fff; } -/* line 58, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-right, .bs-popover-auto[x-placement^="right"] { margin-left: 0.5rem; } -/* line 61, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow { left: calc((0.5rem + 1px) * -1); width: 0.5rem; @@ -7228,45 +7228,45 @@ a.close.disabled { margin: 0.3rem 0; } -/* line 67, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before { left: 0; border-width: 0.5rem 0.5rem 0.5rem 0; border-right-color: rgba(0, 0, 0, 0.25); } -/* line 73, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after { left: 1px; border-width: 0.5rem 0.5rem 0.5rem 0; border-right-color: #fff; } -/* line 81, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 81, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { margin-top: 0.5rem; } -/* line 84, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow { top: calc((0.5rem + 1px) * -1); } -/* line 87, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before { top: 0; border-width: 0 0.5rem 0.5rem 0.5rem; border-bottom-color: rgba(0, 0, 0, 0.25); } -/* line 93, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 93, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after { top: 1px; border-width: 0 0.5rem 0.5rem 0.5rem; border-bottom-color: #fff; } -/* line 101, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 101, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { position: absolute; top: 0; @@ -7278,12 +7278,12 @@ a.close.disabled { border-bottom: 1px solid #f7f7f7; } -/* line 113, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 113, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-left, .bs-popover-auto[x-placement^="left"] { margin-right: 0.5rem; } -/* line 116, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 116, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow { right: calc((0.5rem + 1px) * -1); width: 0.5rem; @@ -7291,21 +7291,21 @@ a.close.disabled { margin: 0.3rem 0; } -/* line 122, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before { right: 0; border-width: 0.5rem 0 0.5rem 0.5rem; border-left-color: rgba(0, 0, 0, 0.25); } -/* line 128, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 128, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after { right: 1px; border-width: 0.5rem 0 0.5rem 0.5rem; border-left-color: #fff; } -/* line 153, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .popover-header { padding: 0.5rem 0.75rem; margin-bottom: 0; @@ -7316,42 +7316,42 @@ a.close.disabled { border-top-right-radius: calc(0.3rem - 1px); } -/* line 163, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 163, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .popover-header:empty { display: none; } -/* line 168, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 168, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .popover-body { padding: 0.5rem 0.75rem; color: #212529; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel { position: relative; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel.pointer-event { touch-action: pan-y; } -/* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-inner { position: relative; width: 100%; overflow: hidden; } -/* line 2, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .carousel-inner::after { display: block; clear: both; content: ""; } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-item { position: relative; display: none; @@ -7367,35 +7367,35 @@ a.close.disabled { } @media (prefers-reduced-motion: reduce) { - /* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-item { -webkit-transition: none; transition: none; } } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-item.active, .carousel-item-next, .carousel-item-prev { display: block; } -/* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-item-next:not(.carousel-item-left), .active.carousel-item-right { -webkit-transform: translateX(100%); transform: translateX(100%); } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-item-prev:not(.carousel-item-right), .active.carousel-item-left { -webkit-transform: translateX(-100%); transform: translateX(-100%); } -/* line 61, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-fade .carousel-item { opacity: 0; -webkit-transition-property: opacity; @@ -7404,7 +7404,7 @@ a.close.disabled { transform: none; } -/* line 67, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-fade .carousel-item.active, .carousel-fade .carousel-item-next.carousel-item-left, .carousel-fade .carousel-item-prev.carousel-item-right { @@ -7412,7 +7412,7 @@ a.close.disabled { opacity: 1; } -/* line 74, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 74, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right { z-index: 0; @@ -7422,7 +7422,7 @@ a.close.disabled { } @media (prefers-reduced-motion: reduce) { - /* line 74, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ + /* line 74, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right { -webkit-transition: none; @@ -7430,7 +7430,7 @@ a.close.disabled { } } -/* line 87, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-control-prev, .carousel-control-next { position: absolute; @@ -7452,7 +7452,7 @@ a.close.disabled { } @media (prefers-reduced-motion: reduce) { - /* line 87, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ + /* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-control-prev, .carousel-control-next { -webkit-transition: none; @@ -7460,7 +7460,7 @@ a.close.disabled { } } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .carousel-control-prev:hover, .carousel-control-prev:focus, .carousel-control-next:hover, .carousel-control-next:focus { @@ -7470,17 +7470,17 @@ a.close.disabled { opacity: 0.9; } -/* line 111, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 111, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-control-prev { left: 0; } -/* line 117, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-control-next { right: 0; } -/* line 125, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-control-prev-icon, .carousel-control-next-icon { display: inline-block; @@ -7489,17 +7489,17 @@ a.close.disabled { background: no-repeat 50% / 100% 100%; } -/* line 132, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 132, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-control-prev-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"); } -/* line 135, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 135, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-control-next-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"); } -/* line 145, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 145, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-indicators { position: absolute; right: 0; @@ -7516,7 +7516,7 @@ a.close.disabled { list-style: none; } -/* line 159, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 159, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-indicators li { box-sizing: content-box; -webkit-box-flex: 0; @@ -7537,19 +7537,19 @@ a.close.disabled { } @media (prefers-reduced-motion: reduce) { - /* line 159, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ + /* line 159, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-indicators li { -webkit-transition: none; transition: none; } } -/* line 177, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-indicators .active { opacity: 1; } -/* line 187, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 187, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-caption { position: absolute; right: 15%; @@ -7576,7 +7576,7 @@ a.close.disabled { } } -/* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ .spinner-border { display: inline-block; width: 2rem; @@ -7589,7 +7589,7 @@ a.close.disabled { animation: spinner-border .75s linear infinite; } -/* line 21, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ +/* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ .spinner-border-sm { width: 1rem; height: 1rem; @@ -7616,7 +7616,7 @@ a.close.disabled { } } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ .spinner-grow { display: inline-block; width: 2rem; @@ -7629,386 +7629,386 @@ a.close.disabled { animation: spinner-grow .75s linear infinite; } -/* line 52, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ .spinner-grow-sm { width: 1rem; height: 1rem; } -/* line 3, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +/* line 3, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ .align-baseline { vertical-align: baseline !important; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ .align-top { vertical-align: top !important; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ .align-middle { vertical-align: middle !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ .align-bottom { vertical-align: bottom !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ .align-text-bottom { vertical-align: text-bottom !important; } -/* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ .align-text-top { vertical-align: text-top !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ .bg-primary { background-color: #007bff !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.bg-primary:hover, a.bg-primary:focus, button.bg-primary:hover, button.bg-primary:focus { background-color: #0062cc !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ .bg-secondary { background-color: #6c757d !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.bg-secondary:hover, a.bg-secondary:focus, button.bg-secondary:hover, button.bg-secondary:focus { background-color: #545b62 !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ .bg-success { background-color: #28a745 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.bg-success:hover, a.bg-success:focus, button.bg-success:hover, button.bg-success:focus { background-color: #1e7e34 !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ .bg-info { background-color: #17a2b8 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.bg-info:hover, a.bg-info:focus, button.bg-info:hover, button.bg-info:focus { background-color: #117a8b !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ .bg-warning { background-color: #ffc107 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.bg-warning:hover, a.bg-warning:focus, button.bg-warning:hover, button.bg-warning:focus { background-color: #d39e00 !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ .bg-danger { background-color: #dc3545 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.bg-danger:hover, a.bg-danger:focus, button.bg-danger:hover, button.bg-danger:focus { background-color: #bd2130 !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ .bg-light { background-color: #f8f9fa !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.bg-light:hover, a.bg-light:focus, button.bg-light:hover, button.bg-light:focus { background-color: #dae0e5 !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ .bg-dark { background-color: #343a40 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.bg-dark:hover, a.bg-dark:focus, button.bg-dark:hover, button.bg-dark:focus { background-color: #1d2124 !important; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_background.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_background.scss */ .bg-white { background-color: #fff !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_background.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_background.scss */ .bg-transparent { background-color: transparent !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border { border: 1px solid #dee2e6 !important; } -/* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-top { border-top: 1px solid #dee2e6 !important; } -/* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-right { border-right: 1px solid #dee2e6 !important; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-bottom { border-bottom: 1px solid #dee2e6 !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-left { border-left: 1px solid #dee2e6 !important; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-0 { border: 0 !important; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-top-0 { border-top: 0 !important; } -/* line 15, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-right-0 { border-right: 0 !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-bottom-0 { border-bottom: 0 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-left-0 { border-left: 0 !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-primary { border-color: #007bff !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-secondary { border-color: #6c757d !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-success { border-color: #28a745 !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-info { border-color: #17a2b8 !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-warning { border-color: #ffc107 !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-danger { border-color: #dc3545 !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-light { border-color: #f8f9fa !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-dark { border-color: #343a40 !important; } -/* line 25, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-white { border-color: #fff !important; } -/* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .rounded-sm { border-radius: 0.2rem !important; } -/* line 37, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .rounded { border-radius: 0.25rem !important; } -/* line 41, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .rounded-top { border-top-left-radius: 0.25rem !important; border-top-right-radius: 0.25rem !important; } -/* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .rounded-right { border-top-right-radius: 0.25rem !important; border-bottom-right-radius: 0.25rem !important; } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .rounded-bottom { border-bottom-right-radius: 0.25rem !important; border-bottom-left-radius: 0.25rem !important; } -/* line 56, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .rounded-left { border-top-left-radius: 0.25rem !important; border-bottom-left-radius: 0.25rem !important; } -/* line 61, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .rounded-lg { border-radius: 0.3rem !important; } -/* line 65, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 65, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .rounded-circle { border-radius: 50% !important; } -/* line 69, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .rounded-pill { border-radius: 50rem !important; } -/* line 73, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .rounded-0 { border-radius: 0 !important; } -/* line 2, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .clearfix::after { display: block; clear: both; content: ""; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-none { display: none !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-inline { display: inline !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-inline-block { display: inline-block !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-block { display: block !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-table { display: table !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-table-row { display: table-row !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-table-cell { display: table-cell !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-flex { display: -webkit-box !important; display: flex !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-inline-flex { display: -webkit-inline-box !important; display: inline-flex !important; } @media (min-width: 576px) { - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-sm-none { display: none !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-sm-inline { display: inline !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-sm-inline-block { display: inline-block !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-sm-block { display: block !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-sm-table { display: table !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-sm-table-row { display: table-row !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-sm-table-cell { display: table-cell !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-sm-flex { display: -webkit-box !important; display: flex !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-sm-inline-flex { display: -webkit-inline-box !important; display: inline-flex !important; @@ -8016,40 +8016,40 @@ button.bg-dark:focus { } @media (min-width: 768px) { - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-md-none { display: none !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-md-inline { display: inline !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-md-inline-block { display: inline-block !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-md-block { display: block !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-md-table { display: table !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-md-table-row { display: table-row !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-md-table-cell { display: table-cell !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-md-flex { display: -webkit-box !important; display: flex !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-md-inline-flex { display: -webkit-inline-box !important; display: inline-flex !important; @@ -8057,40 +8057,40 @@ button.bg-dark:focus { } @media (min-width: 992px) { - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-lg-none { display: none !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-lg-inline { display: inline !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-lg-inline-block { display: inline-block !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-lg-block { display: block !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-lg-table { display: table !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-lg-table-row { display: table-row !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-lg-table-cell { display: table-cell !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-lg-flex { display: -webkit-box !important; display: flex !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-lg-inline-flex { display: -webkit-inline-box !important; display: inline-flex !important; @@ -8098,40 +8098,40 @@ button.bg-dark:focus { } @media (min-width: 1200px) { - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-xl-none { display: none !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-xl-inline { display: inline !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-xl-inline-block { display: inline-block !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-xl-block { display: block !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-xl-table { display: table !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-xl-table-row { display: table-row !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-xl-table-cell { display: table-cell !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-xl-flex { display: -webkit-box !important; display: flex !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-xl-inline-flex { display: -webkit-inline-box !important; display: inline-flex !important; @@ -8139,47 +8139,47 @@ button.bg-dark:focus { } @media print { - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-print-none { display: none !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-print-inline { display: inline !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-print-inline-block { display: inline-block !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-print-block { display: block !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-print-table { display: table !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-print-table-row { display: table-row !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-print-table-cell { display: table-cell !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-print-flex { display: -webkit-box !important; display: flex !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-print-inline-flex { display: -webkit-inline-box !important; display: inline-flex !important; } } -/* line 3, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +/* line 3, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ .embed-responsive { position: relative; display: block; @@ -8188,13 +8188,13 @@ button.bg-dark:focus { overflow: hidden; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ .embed-responsive::before { display: block; content: ""; } -/* line 15, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ .embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, @@ -8209,964 +8209,964 @@ button.bg-dark:focus { border: 0; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ .embed-responsive-21by9::before { padding-top: 42.85714%; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ .embed-responsive-16by9::before { padding-top: 56.25%; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ .embed-responsive-4by3::before { padding-top: 75%; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ .embed-responsive-1by1::before { padding-top: 100%; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-row { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; flex-direction: row !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-column { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; flex-direction: column !important; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; flex-direction: row-reverse !important; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; flex-direction: column-reverse !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-wrap { flex-wrap: wrap !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-nowrap { flex-wrap: nowrap !important; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-wrap-reverse { flex-wrap: wrap-reverse !important; } -/* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-fill { -webkit-box-flex: 1 !important; flex: 1 1 auto !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-grow-0 { -webkit-box-flex: 0 !important; flex-grow: 0 !important; } -/* line 21, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-grow-1 { -webkit-box-flex: 1 !important; flex-grow: 1 !important; } -/* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-shrink-0 { flex-shrink: 0 !important; } -/* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-shrink-1 { flex-shrink: 1 !important; } -/* line 25, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-start { -webkit-box-pack: start !important; justify-content: flex-start !important; } -/* line 26, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-end { -webkit-box-pack: end !important; justify-content: flex-end !important; } -/* line 27, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-center { -webkit-box-pack: center !important; justify-content: center !important; } -/* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-between { -webkit-box-pack: justify !important; justify-content: space-between !important; } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-around { justify-content: space-around !important; } -/* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-start { -webkit-box-align: start !important; align-items: flex-start !important; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-end { -webkit-box-align: end !important; align-items: flex-end !important; } -/* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-center { -webkit-box-align: center !important; align-items: center !important; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-baseline { -webkit-box-align: baseline !important; align-items: baseline !important; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-stretch { -webkit-box-align: stretch !important; align-items: stretch !important; } -/* line 37, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-start { align-content: flex-start !important; } -/* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-end { align-content: flex-end !important; } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-center { align-content: center !important; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-between { align-content: space-between !important; } -/* line 41, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-around { align-content: space-around !important; } -/* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-stretch { align-content: stretch !important; } -/* line 44, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-auto { align-self: auto !important; } -/* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-start { align-self: flex-start !important; } -/* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-end { align-self: flex-end !important; } -/* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-center { align-self: center !important; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-baseline { align-self: baseline !important; } -/* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-stretch { align-self: stretch !important; } @media (min-width: 576px) { - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-row { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; flex-direction: row !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-column { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; flex-direction: column !important; } - /* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; flex-direction: row-reverse !important; } - /* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; flex-direction: column-reverse !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-wrap { flex-wrap: wrap !important; } - /* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-nowrap { flex-wrap: nowrap !important; } - /* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-wrap-reverse { flex-wrap: wrap-reverse !important; } - /* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-fill { -webkit-box-flex: 1 !important; flex: 1 1 auto !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-grow-0 { -webkit-box-flex: 0 !important; flex-grow: 0 !important; } - /* line 21, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-grow-1 { -webkit-box-flex: 1 !important; flex-grow: 1 !important; } - /* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-shrink-0 { flex-shrink: 0 !important; } - /* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-shrink-1 { flex-shrink: 1 !important; } - /* line 25, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-sm-start { -webkit-box-pack: start !important; justify-content: flex-start !important; } - /* line 26, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-sm-end { -webkit-box-pack: end !important; justify-content: flex-end !important; } - /* line 27, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-sm-center { -webkit-box-pack: center !important; justify-content: center !important; } - /* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-sm-between { -webkit-box-pack: justify !important; justify-content: space-between !important; } - /* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-sm-around { justify-content: space-around !important; } - /* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-sm-start { -webkit-box-align: start !important; align-items: flex-start !important; } - /* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-sm-end { -webkit-box-align: end !important; align-items: flex-end !important; } - /* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-sm-center { -webkit-box-align: center !important; align-items: center !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-sm-baseline { -webkit-box-align: baseline !important; align-items: baseline !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-sm-stretch { -webkit-box-align: stretch !important; align-items: stretch !important; } - /* line 37, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-sm-start { align-content: flex-start !important; } - /* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-sm-end { align-content: flex-end !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-sm-center { align-content: center !important; } - /* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-sm-between { align-content: space-between !important; } - /* line 41, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-sm-around { align-content: space-around !important; } - /* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-sm-stretch { align-content: stretch !important; } - /* line 44, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-sm-auto { align-self: auto !important; } - /* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-sm-start { align-self: flex-start !important; } - /* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-sm-end { align-self: flex-end !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-sm-center { align-self: center !important; } - /* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-sm-baseline { align-self: baseline !important; } - /* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-sm-stretch { align-self: stretch !important; } } @media (min-width: 768px) { - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-row { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; flex-direction: row !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-column { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; flex-direction: column !important; } - /* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; flex-direction: row-reverse !important; } - /* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; flex-direction: column-reverse !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-wrap { flex-wrap: wrap !important; } - /* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-nowrap { flex-wrap: nowrap !important; } - /* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-wrap-reverse { flex-wrap: wrap-reverse !important; } - /* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-fill { -webkit-box-flex: 1 !important; flex: 1 1 auto !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-grow-0 { -webkit-box-flex: 0 !important; flex-grow: 0 !important; } - /* line 21, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-grow-1 { -webkit-box-flex: 1 !important; flex-grow: 1 !important; } - /* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-shrink-0 { flex-shrink: 0 !important; } - /* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-shrink-1 { flex-shrink: 1 !important; } - /* line 25, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-md-start { -webkit-box-pack: start !important; justify-content: flex-start !important; } - /* line 26, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-md-end { -webkit-box-pack: end !important; justify-content: flex-end !important; } - /* line 27, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-md-center { -webkit-box-pack: center !important; justify-content: center !important; } - /* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-md-between { -webkit-box-pack: justify !important; justify-content: space-between !important; } - /* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-md-around { justify-content: space-around !important; } - /* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-md-start { -webkit-box-align: start !important; align-items: flex-start !important; } - /* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-md-end { -webkit-box-align: end !important; align-items: flex-end !important; } - /* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-md-center { -webkit-box-align: center !important; align-items: center !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-md-baseline { -webkit-box-align: baseline !important; align-items: baseline !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-md-stretch { -webkit-box-align: stretch !important; align-items: stretch !important; } - /* line 37, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-md-start { align-content: flex-start !important; } - /* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-md-end { align-content: flex-end !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-md-center { align-content: center !important; } - /* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-md-between { align-content: space-between !important; } - /* line 41, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-md-around { align-content: space-around !important; } - /* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-md-stretch { align-content: stretch !important; } - /* line 44, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-md-auto { align-self: auto !important; } - /* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-md-start { align-self: flex-start !important; } - /* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-md-end { align-self: flex-end !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-md-center { align-self: center !important; } - /* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-md-baseline { align-self: baseline !important; } - /* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-md-stretch { align-self: stretch !important; } } @media (min-width: 992px) { - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-row { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; flex-direction: row !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-column { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; flex-direction: column !important; } - /* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; flex-direction: row-reverse !important; } - /* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; flex-direction: column-reverse !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-wrap { flex-wrap: wrap !important; } - /* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-nowrap { flex-wrap: nowrap !important; } - /* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-wrap-reverse { flex-wrap: wrap-reverse !important; } - /* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-fill { -webkit-box-flex: 1 !important; flex: 1 1 auto !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-grow-0 { -webkit-box-flex: 0 !important; flex-grow: 0 !important; } - /* line 21, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-grow-1 { -webkit-box-flex: 1 !important; flex-grow: 1 !important; } - /* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-shrink-0 { flex-shrink: 0 !important; } - /* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-shrink-1 { flex-shrink: 1 !important; } - /* line 25, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-lg-start { -webkit-box-pack: start !important; justify-content: flex-start !important; } - /* line 26, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-lg-end { -webkit-box-pack: end !important; justify-content: flex-end !important; } - /* line 27, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-lg-center { -webkit-box-pack: center !important; justify-content: center !important; } - /* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-lg-between { -webkit-box-pack: justify !important; justify-content: space-between !important; } - /* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-lg-around { justify-content: space-around !important; } - /* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-lg-start { -webkit-box-align: start !important; align-items: flex-start !important; } - /* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-lg-end { -webkit-box-align: end !important; align-items: flex-end !important; } - /* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-lg-center { -webkit-box-align: center !important; align-items: center !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-lg-baseline { -webkit-box-align: baseline !important; align-items: baseline !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-lg-stretch { -webkit-box-align: stretch !important; align-items: stretch !important; } - /* line 37, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-lg-start { align-content: flex-start !important; } - /* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-lg-end { align-content: flex-end !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-lg-center { align-content: center !important; } - /* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-lg-between { align-content: space-between !important; } - /* line 41, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-lg-around { align-content: space-around !important; } - /* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-lg-stretch { align-content: stretch !important; } - /* line 44, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-lg-auto { align-self: auto !important; } - /* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-lg-start { align-self: flex-start !important; } - /* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-lg-end { align-self: flex-end !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-lg-center { align-self: center !important; } - /* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-lg-baseline { align-self: baseline !important; } - /* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-lg-stretch { align-self: stretch !important; } } @media (min-width: 1200px) { - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-row { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; flex-direction: row !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-column { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; flex-direction: column !important; } - /* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; flex-direction: row-reverse !important; } - /* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; flex-direction: column-reverse !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-wrap { flex-wrap: wrap !important; } - /* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-nowrap { flex-wrap: nowrap !important; } - /* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-wrap-reverse { flex-wrap: wrap-reverse !important; } - /* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-fill { -webkit-box-flex: 1 !important; flex: 1 1 auto !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-grow-0 { -webkit-box-flex: 0 !important; flex-grow: 0 !important; } - /* line 21, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-grow-1 { -webkit-box-flex: 1 !important; flex-grow: 1 !important; } - /* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-shrink-0 { flex-shrink: 0 !important; } - /* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-shrink-1 { flex-shrink: 1 !important; } - /* line 25, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-xl-start { -webkit-box-pack: start !important; justify-content: flex-start !important; } - /* line 26, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-xl-end { -webkit-box-pack: end !important; justify-content: flex-end !important; } - /* line 27, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-xl-center { -webkit-box-pack: center !important; justify-content: center !important; } - /* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-xl-between { -webkit-box-pack: justify !important; justify-content: space-between !important; } - /* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-xl-around { justify-content: space-around !important; } - /* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-xl-start { -webkit-box-align: start !important; align-items: flex-start !important; } - /* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-xl-end { -webkit-box-align: end !important; align-items: flex-end !important; } - /* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-xl-center { -webkit-box-align: center !important; align-items: center !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-xl-baseline { -webkit-box-align: baseline !important; align-items: baseline !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-xl-stretch { -webkit-box-align: stretch !important; align-items: stretch !important; } - /* line 37, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-xl-start { align-content: flex-start !important; } - /* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-xl-end { align-content: flex-end !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-xl-center { align-content: center !important; } - /* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-xl-between { align-content: space-between !important; } - /* line 41, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-xl-around { align-content: space-around !important; } - /* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-xl-stretch { align-content: stretch !important; } - /* line 44, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-xl-auto { align-self: auto !important; } - /* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-xl-start { align-self: flex-start !important; } - /* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-xl-end { align-self: flex-end !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-xl-center { align-self: center !important; } - /* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-xl-baseline { align-self: baseline !important; } - /* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-xl-stretch { align-self: stretch !important; } } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-left { float: left !important; } -/* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-right { float: right !important; } -/* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-none { float: none !important; } @media (min-width: 576px) { - /* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-sm-left { float: left !important; } - /* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-sm-right { float: right !important; } - /* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-sm-none { float: none !important; } } @media (min-width: 768px) { - /* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-md-left { float: left !important; } - /* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-md-right { float: right !important; } - /* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-md-none { float: none !important; } } @media (min-width: 992px) { - /* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-lg-left { float: left !important; } - /* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-lg-right { float: right !important; } - /* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-lg-none { float: none !important; } } @media (min-width: 1200px) { - /* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-xl-left { float: left !important; } - /* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-xl-right { float: right !important; } - /* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-xl-none { float: none !important; } } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_overflow.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_overflow.scss */ .overflow-auto { overflow: auto !important; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_overflow.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_overflow.scss */ .overflow-hidden { overflow: hidden !important; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ .position-static { position: static !important; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ .position-relative { position: relative !important; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ .position-absolute { position: absolute !important; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ .position-fixed { position: fixed !important; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ .position-sticky { position: -webkit-sticky !important; position: sticky !important; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ .fixed-top { position: fixed; top: 0; @@ -9175,7 +9175,7 @@ button.bg-dark:focus { z-index: 1030; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ .fixed-bottom { position: fixed; right: 0; @@ -9185,7 +9185,7 @@ button.bg-dark:focus { } @supports ((position: -webkit-sticky) or (position: sticky)) { - /* line 26, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ .sticky-top { position: -webkit-sticky; position: sticky; @@ -9194,7 +9194,7 @@ button.bg-dark:focus { } } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_screenreaders.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_screenreaders.scss */ .sr-only { position: absolute; width: 1px; @@ -9206,7 +9206,7 @@ button.bg-dark:focus { border: 0; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_screen-reader.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_screen-reader.scss */ .sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; @@ -9216,107 +9216,107 @@ button.bg-dark:focus { white-space: normal; } -/* line 3, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ +/* line 3, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ .shadow-sm { box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ .shadow { box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ .shadow-lg { box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ .shadow-none { box-shadow: none !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .w-25 { width: 25% !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .w-50 { width: 50% !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .w-75 { width: 75% !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .w-100 { width: 100% !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .w-auto { width: auto !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .h-25 { height: 25% !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .h-50 { height: 50% !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .h-75 { height: 75% !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .h-100 { height: 100% !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .h-auto { height: auto !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .mw-100 { max-width: 100% !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .mh-100 { max-height: 100% !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .min-vw-100 { min-width: 100vw !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .min-vh-100 { min-height: 100vh !important; } -/* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .vw-100 { width: 100vw !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .vh-100 { height: 100vh !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_stretched-link.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_stretched-link.scss */ .stretched-link::after { position: absolute; top: 0; @@ -9329,957 +9329,957 @@ button.bg-dark:focus { background-color: transparent; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-0 { margin: 0 !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-0, .my-0 { margin-top: 0 !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-0, .mx-0 { margin-right: 0 !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-0, .my-0 { margin-bottom: 0 !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-0, .mx-0 { margin-left: 0 !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-1 { margin: 0.25rem !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-1, .my-1 { margin-top: 0.25rem !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-1, .mx-1 { margin-right: 0.25rem !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-1, .my-1 { margin-bottom: 0.25rem !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-1, .mx-1 { margin-left: 0.25rem !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-2 { margin: 0.5rem !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-2, .my-2 { margin-top: 0.5rem !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-2, .mx-2 { margin-right: 0.5rem !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-2, .my-2 { margin-bottom: 0.5rem !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-2, .mx-2 { margin-left: 0.5rem !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-3 { margin: 1rem !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-3, .my-3 { margin-top: 1rem !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-3, .mx-3 { margin-right: 1rem !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-3, .my-3 { margin-bottom: 1rem !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-3, .mx-3 { margin-left: 1rem !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-4 { margin: 1.5rem !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-4, .my-4 { margin-top: 1.5rem !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-4, .mx-4 { margin-right: 1.5rem !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-4, .my-4 { margin-bottom: 1.5rem !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-4, .mx-4 { margin-left: 1.5rem !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-5 { margin: 3rem !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-5, .my-5 { margin-top: 3rem !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-5, .mx-5 { margin-right: 3rem !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-5, .my-5 { margin-bottom: 3rem !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-5, .mx-5 { margin-left: 3rem !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-0 { padding: 0 !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-0, .py-0 { padding-top: 0 !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-0, .px-0 { padding-right: 0 !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-0, .py-0 { padding-bottom: 0 !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-0, .px-0 { padding-left: 0 !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-1 { padding: 0.25rem !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-1, .py-1 { padding-top: 0.25rem !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-1, .px-1 { padding-right: 0.25rem !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-1, .py-1 { padding-bottom: 0.25rem !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-1, .px-1 { padding-left: 0.25rem !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-2 { padding: 0.5rem !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-2, .py-2 { padding-top: 0.5rem !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-2, .px-2 { padding-right: 0.5rem !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-2, .py-2 { padding-bottom: 0.5rem !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-2, .px-2 { padding-left: 0.5rem !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-3 { padding: 1rem !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-3, .py-3 { padding-top: 1rem !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-3, .px-3 { padding-right: 1rem !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-3, .py-3 { padding-bottom: 1rem !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-3, .px-3 { padding-left: 1rem !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-4 { padding: 1.5rem !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-4, .py-4 { padding-top: 1.5rem !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-4, .px-4 { padding-right: 1.5rem !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-4, .py-4 { padding-bottom: 1.5rem !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-4, .px-4 { padding-left: 1.5rem !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-5 { padding: 3rem !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-5, .py-5 { padding-top: 3rem !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-5, .px-5 { padding-right: 3rem !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-5, .py-5 { padding-bottom: 3rem !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-5, .px-5 { padding-left: 3rem !important; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-n1 { margin: -0.25rem !important; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-n1, .my-n1 { margin-top: -0.25rem !important; } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-n1, .mx-n1 { margin-right: -0.25rem !important; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-n1, .my-n1 { margin-bottom: -0.25rem !important; } -/* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-n1, .mx-n1 { margin-left: -0.25rem !important; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-n2 { margin: -0.5rem !important; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-n2, .my-n2 { margin-top: -0.5rem !important; } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-n2, .mx-n2 { margin-right: -0.5rem !important; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-n2, .my-n2 { margin-bottom: -0.5rem !important; } -/* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-n2, .mx-n2 { margin-left: -0.5rem !important; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-n3 { margin: -1rem !important; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-n3, .my-n3 { margin-top: -1rem !important; } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-n3, .mx-n3 { margin-right: -1rem !important; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-n3, .my-n3 { margin-bottom: -1rem !important; } -/* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-n3, .mx-n3 { margin-left: -1rem !important; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-n4 { margin: -1.5rem !important; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-n4, .my-n4 { margin-top: -1.5rem !important; } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-n4, .mx-n4 { margin-right: -1.5rem !important; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-n4, .my-n4 { margin-bottom: -1.5rem !important; } -/* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-n4, .mx-n4 { margin-left: -1.5rem !important; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-n5 { margin: -3rem !important; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-n5, .my-n5 { margin-top: -3rem !important; } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-n5, .mx-n5 { margin-right: -3rem !important; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-n5, .my-n5 { margin-bottom: -3rem !important; } -/* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-n5, .mx-n5 { margin-left: -3rem !important; } -/* line 55, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-auto { margin: auto !important; } -/* line 56, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-auto, .my-auto { margin-top: auto !important; } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-auto, .mx-auto { margin-right: auto !important; } -/* line 64, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-auto, .my-auto { margin-bottom: auto !important; } -/* line 68, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-auto, .mx-auto { margin-left: auto !important; } @media (min-width: 576px) { - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-0 { margin: 0 !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-0, .my-sm-0 { margin-top: 0 !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-0, .mx-sm-0 { margin-right: 0 !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-0, .my-sm-0 { margin-bottom: 0 !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-0, .mx-sm-0 { margin-left: 0 !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-1 { margin: 0.25rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-1, .my-sm-1 { margin-top: 0.25rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-1, .mx-sm-1 { margin-right: 0.25rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-1, .my-sm-1 { margin-bottom: 0.25rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-1, .mx-sm-1 { margin-left: 0.25rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-2 { margin: 0.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-2, .my-sm-2 { margin-top: 0.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-2, .mx-sm-2 { margin-right: 0.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-2, .my-sm-2 { margin-bottom: 0.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-2, .mx-sm-2 { margin-left: 0.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-3 { margin: 1rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-3, .my-sm-3 { margin-top: 1rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-3, .mx-sm-3 { margin-right: 1rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-3, .my-sm-3 { margin-bottom: 1rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-3, .mx-sm-3 { margin-left: 1rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-4 { margin: 1.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-4, .my-sm-4 { margin-top: 1.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-4, .mx-sm-4 { margin-right: 1.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-4, .my-sm-4 { margin-bottom: 1.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-4, .mx-sm-4 { margin-left: 1.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-5 { margin: 3rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-5, .my-sm-5 { margin-top: 3rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-5, .mx-sm-5 { margin-right: 3rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-5, .my-sm-5 { margin-bottom: 3rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-5, .mx-sm-5 { margin-left: 3rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-sm-0 { padding: 0 !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-sm-0, .py-sm-0 { padding-top: 0 !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-sm-0, .px-sm-0 { padding-right: 0 !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-sm-0, .py-sm-0 { padding-bottom: 0 !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-sm-0, .px-sm-0 { padding-left: 0 !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-sm-1 { padding: 0.25rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-sm-1, .py-sm-1 { padding-top: 0.25rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-sm-1, .px-sm-1 { padding-right: 0.25rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-sm-1, .py-sm-1 { padding-bottom: 0.25rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-sm-1, .px-sm-1 { padding-left: 0.25rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-sm-2 { padding: 0.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-sm-2, .py-sm-2 { padding-top: 0.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-sm-2, .px-sm-2 { padding-right: 0.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-sm-2, .py-sm-2 { padding-bottom: 0.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-sm-2, .px-sm-2 { padding-left: 0.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-sm-3 { padding: 1rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-sm-3, .py-sm-3 { padding-top: 1rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-sm-3, .px-sm-3 { padding-right: 1rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-sm-3, .py-sm-3 { padding-bottom: 1rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-sm-3, .px-sm-3 { padding-left: 1rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-sm-4 { padding: 1.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-sm-4, .py-sm-4 { padding-top: 1.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-sm-4, .px-sm-4 { padding-right: 1.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-sm-4, .py-sm-4 { padding-bottom: 1.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-sm-4, .px-sm-4 { padding-left: 1.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-sm-5 { padding: 3rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-sm-5, .py-sm-5 { padding-top: 3rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-sm-5, .px-sm-5 { padding-right: 3rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-sm-5, .py-sm-5 { padding-bottom: 3rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-sm-5, .px-sm-5 { padding-left: 3rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-n1 { margin: -0.25rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-n1, .my-sm-n1 { margin-top: -0.25rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-n1, .mx-sm-n1 { margin-right: -0.25rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-n1, .my-sm-n1 { margin-bottom: -0.25rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-n1, .mx-sm-n1 { margin-left: -0.25rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-n2 { margin: -0.5rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-n2, .my-sm-n2 { margin-top: -0.5rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-n2, .mx-sm-n2 { margin-right: -0.5rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-n2, .my-sm-n2 { margin-bottom: -0.5rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-n2, .mx-sm-n2 { margin-left: -0.5rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-n3 { margin: -1rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-n3, .my-sm-n3 { margin-top: -1rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-n3, .mx-sm-n3 { margin-right: -1rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-n3, .my-sm-n3 { margin-bottom: -1rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-n3, .mx-sm-n3 { margin-left: -1rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-n4 { margin: -1.5rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-n4, .my-sm-n4 { margin-top: -1.5rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-n4, .mx-sm-n4 { margin-right: -1.5rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-n4, .my-sm-n4 { margin-bottom: -1.5rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-n4, .mx-sm-n4 { margin-left: -1.5rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-n5 { margin: -3rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-n5, .my-sm-n5 { margin-top: -3rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-n5, .mx-sm-n5 { margin-right: -3rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-n5, .my-sm-n5 { margin-bottom: -3rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-n5, .mx-sm-n5 { margin-left: -3rem !important; } - /* line 55, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-auto { margin: auto !important; } - /* line 56, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-auto, .my-sm-auto { margin-top: auto !important; } - /* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-auto, .mx-sm-auto { margin-right: auto !important; } - /* line 64, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-auto, .my-sm-auto { margin-bottom: auto !important; } - /* line 68, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-auto, .mx-sm-auto { margin-left: auto !important; @@ -10287,434 +10287,434 @@ button.bg-dark:focus { } @media (min-width: 768px) { - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-0 { margin: 0 !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-0, .my-md-0 { margin-top: 0 !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-0, .mx-md-0 { margin-right: 0 !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-0, .my-md-0 { margin-bottom: 0 !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-0, .mx-md-0 { margin-left: 0 !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-1 { margin: 0.25rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-1, .my-md-1 { margin-top: 0.25rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-1, .mx-md-1 { margin-right: 0.25rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-1, .my-md-1 { margin-bottom: 0.25rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-1, .mx-md-1 { margin-left: 0.25rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-2 { margin: 0.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-2, .my-md-2 { margin-top: 0.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-2, .mx-md-2 { margin-right: 0.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-2, .my-md-2 { margin-bottom: 0.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-2, .mx-md-2 { margin-left: 0.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-3 { margin: 1rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-3, .my-md-3 { margin-top: 1rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-3, .mx-md-3 { margin-right: 1rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-3, .my-md-3 { margin-bottom: 1rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-3, .mx-md-3 { margin-left: 1rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-4 { margin: 1.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-4, .my-md-4 { margin-top: 1.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-4, .mx-md-4 { margin-right: 1.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-4, .my-md-4 { margin-bottom: 1.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-4, .mx-md-4 { margin-left: 1.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-5 { margin: 3rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-5, .my-md-5 { margin-top: 3rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-5, .mx-md-5 { margin-right: 3rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-5, .my-md-5 { margin-bottom: 3rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-5, .mx-md-5 { margin-left: 3rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-md-0 { padding: 0 !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-md-0, .py-md-0 { padding-top: 0 !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-md-0, .px-md-0 { padding-right: 0 !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-md-0, .py-md-0 { padding-bottom: 0 !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-md-0, .px-md-0 { padding-left: 0 !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-md-1 { padding: 0.25rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-md-1, .py-md-1 { padding-top: 0.25rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-md-1, .px-md-1 { padding-right: 0.25rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-md-1, .py-md-1 { padding-bottom: 0.25rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-md-1, .px-md-1 { padding-left: 0.25rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-md-2 { padding: 0.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-md-2, .py-md-2 { padding-top: 0.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-md-2, .px-md-2 { padding-right: 0.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-md-2, .py-md-2 { padding-bottom: 0.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-md-2, .px-md-2 { padding-left: 0.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-md-3 { padding: 1rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-md-3, .py-md-3 { padding-top: 1rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-md-3, .px-md-3 { padding-right: 1rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-md-3, .py-md-3 { padding-bottom: 1rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-md-3, .px-md-3 { padding-left: 1rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-md-4 { padding: 1.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-md-4, .py-md-4 { padding-top: 1.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-md-4, .px-md-4 { padding-right: 1.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-md-4, .py-md-4 { padding-bottom: 1.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-md-4, .px-md-4 { padding-left: 1.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-md-5 { padding: 3rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-md-5, .py-md-5 { padding-top: 3rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-md-5, .px-md-5 { padding-right: 3rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-md-5, .py-md-5 { padding-bottom: 3rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-md-5, .px-md-5 { padding-left: 3rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-n1 { margin: -0.25rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-n1, .my-md-n1 { margin-top: -0.25rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-n1, .mx-md-n1 { margin-right: -0.25rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-n1, .my-md-n1 { margin-bottom: -0.25rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-n1, .mx-md-n1 { margin-left: -0.25rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-n2 { margin: -0.5rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-n2, .my-md-n2 { margin-top: -0.5rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-n2, .mx-md-n2 { margin-right: -0.5rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-n2, .my-md-n2 { margin-bottom: -0.5rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-n2, .mx-md-n2 { margin-left: -0.5rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-n3 { margin: -1rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-n3, .my-md-n3 { margin-top: -1rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-n3, .mx-md-n3 { margin-right: -1rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-n3, .my-md-n3 { margin-bottom: -1rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-n3, .mx-md-n3 { margin-left: -1rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-n4 { margin: -1.5rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-n4, .my-md-n4 { margin-top: -1.5rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-n4, .mx-md-n4 { margin-right: -1.5rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-n4, .my-md-n4 { margin-bottom: -1.5rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-n4, .mx-md-n4 { margin-left: -1.5rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-n5 { margin: -3rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-n5, .my-md-n5 { margin-top: -3rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-n5, .mx-md-n5 { margin-right: -3rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-n5, .my-md-n5 { margin-bottom: -3rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-n5, .mx-md-n5 { margin-left: -3rem !important; } - /* line 55, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-auto { margin: auto !important; } - /* line 56, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-auto, .my-md-auto { margin-top: auto !important; } - /* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-auto, .mx-md-auto { margin-right: auto !important; } - /* line 64, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-auto, .my-md-auto { margin-bottom: auto !important; } - /* line 68, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-auto, .mx-md-auto { margin-left: auto !important; @@ -10722,434 +10722,434 @@ button.bg-dark:focus { } @media (min-width: 992px) { - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-0 { margin: 0 !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-0, .my-lg-0 { margin-top: 0 !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-0, .mx-lg-0 { margin-right: 0 !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-0, .my-lg-0 { margin-bottom: 0 !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-0, .mx-lg-0 { margin-left: 0 !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-1 { margin: 0.25rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-1, .my-lg-1 { margin-top: 0.25rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-1, .mx-lg-1 { margin-right: 0.25rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-1, .my-lg-1 { margin-bottom: 0.25rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-1, .mx-lg-1 { margin-left: 0.25rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-2 { margin: 0.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-2, .my-lg-2 { margin-top: 0.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-2, .mx-lg-2 { margin-right: 0.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-2, .my-lg-2 { margin-bottom: 0.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-2, .mx-lg-2 { margin-left: 0.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-3 { margin: 1rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-3, .my-lg-3 { margin-top: 1rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-3, .mx-lg-3 { margin-right: 1rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-3, .my-lg-3 { margin-bottom: 1rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-3, .mx-lg-3 { margin-left: 1rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-4 { margin: 1.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-4, .my-lg-4 { margin-top: 1.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-4, .mx-lg-4 { margin-right: 1.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-4, .my-lg-4 { margin-bottom: 1.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-4, .mx-lg-4 { margin-left: 1.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-5 { margin: 3rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-5, .my-lg-5 { margin-top: 3rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-5, .mx-lg-5 { margin-right: 3rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-5, .my-lg-5 { margin-bottom: 3rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-5, .mx-lg-5 { margin-left: 3rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-lg-0 { padding: 0 !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-lg-0, .py-lg-0 { padding-top: 0 !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-lg-0, .px-lg-0 { padding-right: 0 !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-lg-0, .py-lg-0 { padding-bottom: 0 !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-lg-0, .px-lg-0 { padding-left: 0 !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-lg-1 { padding: 0.25rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-lg-1, .py-lg-1 { padding-top: 0.25rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-lg-1, .px-lg-1 { padding-right: 0.25rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-lg-1, .py-lg-1 { padding-bottom: 0.25rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-lg-1, .px-lg-1 { padding-left: 0.25rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-lg-2 { padding: 0.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-lg-2, .py-lg-2 { padding-top: 0.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-lg-2, .px-lg-2 { padding-right: 0.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-lg-2, .py-lg-2 { padding-bottom: 0.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-lg-2, .px-lg-2 { padding-left: 0.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-lg-3 { padding: 1rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-lg-3, .py-lg-3 { padding-top: 1rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-lg-3, .px-lg-3 { padding-right: 1rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-lg-3, .py-lg-3 { padding-bottom: 1rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-lg-3, .px-lg-3 { padding-left: 1rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-lg-4 { padding: 1.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-lg-4, .py-lg-4 { padding-top: 1.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-lg-4, .px-lg-4 { padding-right: 1.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-lg-4, .py-lg-4 { padding-bottom: 1.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-lg-4, .px-lg-4 { padding-left: 1.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-lg-5 { padding: 3rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-lg-5, .py-lg-5 { padding-top: 3rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-lg-5, .px-lg-5 { padding-right: 3rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-lg-5, .py-lg-5 { padding-bottom: 3rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-lg-5, .px-lg-5 { padding-left: 3rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-n1 { margin: -0.25rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-n1, .my-lg-n1 { margin-top: -0.25rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-n1, .mx-lg-n1 { margin-right: -0.25rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-n1, .my-lg-n1 { margin-bottom: -0.25rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-n1, .mx-lg-n1 { margin-left: -0.25rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-n2 { margin: -0.5rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-n2, .my-lg-n2 { margin-top: -0.5rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-n2, .mx-lg-n2 { margin-right: -0.5rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-n2, .my-lg-n2 { margin-bottom: -0.5rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-n2, .mx-lg-n2 { margin-left: -0.5rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-n3 { margin: -1rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-n3, .my-lg-n3 { margin-top: -1rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-n3, .mx-lg-n3 { margin-right: -1rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-n3, .my-lg-n3 { margin-bottom: -1rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-n3, .mx-lg-n3 { margin-left: -1rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-n4 { margin: -1.5rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-n4, .my-lg-n4 { margin-top: -1.5rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-n4, .mx-lg-n4 { margin-right: -1.5rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-n4, .my-lg-n4 { margin-bottom: -1.5rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-n4, .mx-lg-n4 { margin-left: -1.5rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-n5 { margin: -3rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-n5, .my-lg-n5 { margin-top: -3rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-n5, .mx-lg-n5 { margin-right: -3rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-n5, .my-lg-n5 { margin-bottom: -3rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-n5, .mx-lg-n5 { margin-left: -3rem !important; } - /* line 55, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-auto { margin: auto !important; } - /* line 56, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-auto, .my-lg-auto { margin-top: auto !important; } - /* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-auto, .mx-lg-auto { margin-right: auto !important; } - /* line 64, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-auto, .my-lg-auto { margin-bottom: auto !important; } - /* line 68, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-auto, .mx-lg-auto { margin-left: auto !important; @@ -11157,693 +11157,693 @@ button.bg-dark:focus { } @media (min-width: 1200px) { - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-0 { margin: 0 !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-0, .my-xl-0 { margin-top: 0 !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-0, .mx-xl-0 { margin-right: 0 !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-0, .my-xl-0 { margin-bottom: 0 !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-0, .mx-xl-0 { margin-left: 0 !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-1 { margin: 0.25rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-1, .my-xl-1 { margin-top: 0.25rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-1, .mx-xl-1 { margin-right: 0.25rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-1, .my-xl-1 { margin-bottom: 0.25rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-1, .mx-xl-1 { margin-left: 0.25rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-2 { margin: 0.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-2, .my-xl-2 { margin-top: 0.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-2, .mx-xl-2 { margin-right: 0.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-2, .my-xl-2 { margin-bottom: 0.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-2, .mx-xl-2 { margin-left: 0.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-3 { margin: 1rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-3, .my-xl-3 { margin-top: 1rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-3, .mx-xl-3 { margin-right: 1rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-3, .my-xl-3 { margin-bottom: 1rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-3, .mx-xl-3 { margin-left: 1rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-4 { margin: 1.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-4, .my-xl-4 { margin-top: 1.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-4, .mx-xl-4 { margin-right: 1.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-4, .my-xl-4 { margin-bottom: 1.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-4, .mx-xl-4 { margin-left: 1.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-5 { margin: 3rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-5, .my-xl-5 { margin-top: 3rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-5, .mx-xl-5 { margin-right: 3rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-5, .my-xl-5 { margin-bottom: 3rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-5, .mx-xl-5 { margin-left: 3rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-xl-0 { padding: 0 !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-xl-0, .py-xl-0 { padding-top: 0 !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-xl-0, .px-xl-0 { padding-right: 0 !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-xl-0, .py-xl-0 { padding-bottom: 0 !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-xl-0, .px-xl-0 { padding-left: 0 !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-xl-1 { padding: 0.25rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-xl-1, .py-xl-1 { padding-top: 0.25rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-xl-1, .px-xl-1 { padding-right: 0.25rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-xl-1, .py-xl-1 { padding-bottom: 0.25rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-xl-1, .px-xl-1 { padding-left: 0.25rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-xl-2 { padding: 0.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-xl-2, .py-xl-2 { padding-top: 0.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-xl-2, .px-xl-2 { padding-right: 0.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-xl-2, .py-xl-2 { padding-bottom: 0.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-xl-2, .px-xl-2 { padding-left: 0.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-xl-3 { padding: 1rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-xl-3, .py-xl-3 { padding-top: 1rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-xl-3, .px-xl-3 { padding-right: 1rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-xl-3, .py-xl-3 { padding-bottom: 1rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-xl-3, .px-xl-3 { padding-left: 1rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-xl-4 { padding: 1.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-xl-4, .py-xl-4 { padding-top: 1.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-xl-4, .px-xl-4 { padding-right: 1.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-xl-4, .py-xl-4 { padding-bottom: 1.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-xl-4, .px-xl-4 { padding-left: 1.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-xl-5 { padding: 3rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-xl-5, .py-xl-5 { padding-top: 3rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-xl-5, .px-xl-5 { padding-right: 3rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-xl-5, .py-xl-5 { padding-bottom: 3rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-xl-5, .px-xl-5 { padding-left: 3rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-n1 { margin: -0.25rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-n1, .my-xl-n1 { margin-top: -0.25rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-n1, .mx-xl-n1 { margin-right: -0.25rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-n1, .my-xl-n1 { margin-bottom: -0.25rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-n1, .mx-xl-n1 { margin-left: -0.25rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-n2 { margin: -0.5rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-n2, .my-xl-n2 { margin-top: -0.5rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-n2, .mx-xl-n2 { margin-right: -0.5rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-n2, .my-xl-n2 { margin-bottom: -0.5rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-n2, .mx-xl-n2 { margin-left: -0.5rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-n3 { margin: -1rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-n3, .my-xl-n3 { margin-top: -1rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-n3, .mx-xl-n3 { margin-right: -1rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-n3, .my-xl-n3 { margin-bottom: -1rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-n3, .mx-xl-n3 { margin-left: -1rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-n4 { margin: -1.5rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-n4, .my-xl-n4 { margin-top: -1.5rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-n4, .mx-xl-n4 { margin-right: -1.5rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-n4, .my-xl-n4 { margin-bottom: -1.5rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-n4, .mx-xl-n4 { margin-left: -1.5rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-n5 { margin: -3rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-n5, .my-xl-n5 { margin-top: -3rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-n5, .mx-xl-n5 { margin-right: -3rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-n5, .my-xl-n5 { margin-bottom: -3rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-n5, .mx-xl-n5 { margin-left: -3rem !important; } - /* line 55, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-auto { margin: auto !important; } - /* line 56, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-auto, .my-xl-auto { margin-top: auto !important; } - /* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-auto, .mx-xl-auto { margin-right: auto !important; } - /* line 64, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-auto, .my-xl-auto { margin-bottom: auto !important; } - /* line 68, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-auto, .mx-xl-auto { margin-left: auto !important; } } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-monospace { font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-justify { text-align: justify !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-wrap { white-space: normal !important; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-nowrap { white-space: nowrap !important; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } -/* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-left { text-align: left !important; } -/* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-right { text-align: right !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-center { text-align: center !important; } @media (min-width: 576px) { - /* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-sm-left { text-align: left !important; } - /* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-sm-right { text-align: right !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-sm-center { text-align: center !important; } } @media (min-width: 768px) { - /* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-md-left { text-align: left !important; } - /* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-md-right { text-align: right !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-md-center { text-align: center !important; } } @media (min-width: 992px) { - /* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-lg-left { text-align: left !important; } - /* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-lg-right { text-align: right !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-lg-center { text-align: center !important; } } @media (min-width: 1200px) { - /* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-xl-left { text-align: left !important; } - /* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-xl-right { text-align: right !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-xl-center { text-align: center !important; } } -/* line 30, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-lowercase { text-transform: lowercase !important; } -/* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-uppercase { text-transform: uppercase !important; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-capitalize { text-transform: capitalize !important; } -/* line 36, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .font-weight-light { font-weight: 300 !important; } -/* line 37, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .font-weight-lighter { font-weight: lighter !important; } -/* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .font-weight-normal { font-weight: 400 !important; } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .font-weight-bold { font-weight: 700 !important; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .font-weight-bolder { font-weight: bolder !important; } -/* line 41, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .font-italic { font-style: italic !important; } -/* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-white { color: #fff !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ .text-primary { color: #007bff !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.text-primary:hover, a.text-primary:focus { color: #0056b3 !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ .text-secondary { color: #6c757d !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.text-secondary:hover, a.text-secondary:focus { color: #494f54 !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ .text-success { color: #28a745 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.text-success:hover, a.text-success:focus { color: #19692c !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ .text-info { color: #17a2b8 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.text-info:hover, a.text-info:focus { color: #0f6674 !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ .text-warning { color: #ffc107 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.text-warning:hover, a.text-warning:focus { color: #ba8b00 !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ .text-danger { color: #dc3545 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.text-danger:hover, a.text-danger:focus { color: #a71d2a !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ .text-light { color: #f8f9fa !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.text-light:hover, a.text-light:focus { color: #cbd3da !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ .text-dark { color: #343a40 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.text-dark:hover, a.text-dark:focus { color: #121416 !important; } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-body { color: #212529 !important; } -/* line 52, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-muted { color: #6c757d !important; } -/* line 54, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-black-50 { color: rgba(0, 0, 0, 0.5) !important; } -/* line 55, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-white-50 { color: rgba(255, 255, 255, 0.5) !important; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-hide { font: 0/0 a; color: transparent; @@ -11852,75 +11852,75 @@ a.text-dark:hover, a.text-dark:focus { border: 0; } -/* line 63, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-decoration-none { text-decoration: none !important; } -/* line 65, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 65, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-break { word-break: break-word !important; overflow-wrap: break-word !important; } -/* line 72, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-reset { color: inherit !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_visibility.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_visibility.scss */ .visible { visibility: visible !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_visibility.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_visibility.scss */ .invisible { visibility: hidden !important; } @media print { - /* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ *, *::before, *::after { text-shadow: none !important; box-shadow: none !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ a:not(.btn) { text-decoration: underline; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ abbr[title]::after { content: " (" attr(title) ")"; } - /* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ pre { white-space: pre-wrap !important; } - /* line 52, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ pre, blockquote { border: 1px solid #adb5bd; page-break-inside: avoid; } - /* line 63, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ thead { display: table-header-group; } - /* line 67, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ tr, img { page-break-inside: avoid; } - /* line 72, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ p, h2, h3 { orphans: 3; widows: 3; } - /* line 79, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 79, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ h2, h3 { page-break-after: avoid; @@ -11928,48 +11928,48 @@ a.text-dark:hover, a.text-dark:focus { @page { size: a3; } - /* line 92, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 92, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ body { min-width: 992px !important; } - /* line 95, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ .container { min-width: 992px !important; } - /* line 100, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ .navbar { display: none; } - /* line 103, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 103, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ .badge { border: 1px solid #000; } - /* line 107, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 107, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ .table { border-collapse: collapse !important; } - /* line 110, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 110, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ .table td, .table th { background-color: #fff !important; } - /* line 117, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ .table-bordered th, .table-bordered td { border: 1px solid #dee2e6 !important; } - /* line 123, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 123, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ .table-dark { color: inherit; } - /* line 126, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 126, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ .table-dark th, .table-dark td, .table-dark thead th, .table-dark tbody + tbody { border-color: #dee2e6; } - /* line 134, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ .table .thead-dark th { color: inherit; border-color: #dee2e6; @@ -11990,7 +11990,7 @@ a.text-dark:hover, a.text-dark:focus { font-style: normal; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_core.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_core.scss */ .fa { display: inline-block; font: normal normal normal 14px/1 FontAwesome; @@ -12001,52 +12001,52 @@ a.text-dark:hover, a.text-dark:focus { } /* makes the font 33% larger relative to the icon container */ -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ .fa-lg { font-size: 1.33333em; line-height: 0.75em; vertical-align: -15%; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ .fa-2x { font-size: 2em; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ .fa-3x { font-size: 3em; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ .fa-4x { font-size: 4em; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ .fa-5x { font-size: 5em; } -/* line 3, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_fixed-width.scss */ +/* line 3, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_fixed-width.scss */ .fa-fw { width: 1.28571em; text-align: center; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ .fa-ul { padding-left: 0; margin-left: 2.14286em; list-style-type: none; } -/* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ .fa-ul > li { position: relative; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ .fa-li { position: absolute; left: -2.14286em; @@ -12055,66 +12055,66 @@ a.text-dark:hover, a.text-dark:focus { text-align: center; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ .fa-li.fa-lg { left: -1.85714em; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ .fa-border { padding: .2em .25em .15em; border: solid 0.08em #eee; border-radius: .1em; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ .fa-pull-left { float: left; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ .fa-pull-right { float: right; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ .fa.fa-pull-left { margin-right: .3em; } -/* line 15, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ .fa.fa-pull-right { margin-left: .3em; } /* Deprecated as of 4.4.0 */ -/* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ .pull-right { float: right; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ .pull-left { float: left; } -/* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ .fa.pull-left { margin-right: .3em; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ .fa.pull-right { margin-left: .3em; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_animated.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_animated.scss */ .fa-spin { -webkit-animation: fa-spin 2s infinite linear; animation: fa-spin 2s infinite linear; } -/* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_animated.scss */ +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_animated.scss */ .fa-pulse { -webkit-animation: fa-spin 1s infinite steps(8); animation: fa-spin 1s infinite steps(8); @@ -12142,42 +12142,42 @@ a.text-dark:hover, a.text-dark:focus { } } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ .fa-rotate-90 { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; -webkit-transform: rotate(90deg); transform: rotate(90deg); } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ .fa-rotate-180 { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; -webkit-transform: rotate(180deg); transform: rotate(180deg); } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ .fa-rotate-270 { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; -webkit-transform: rotate(270deg); transform: rotate(270deg); } -/* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ .fa-flip-horizontal { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; -webkit-transform: scale(-1, 1); transform: scale(-1, 1); } -/* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ .fa-flip-vertical { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; -webkit-transform: scale(1, -1); transform: scale(1, -1); } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ :root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, @@ -12187,7 +12187,7 @@ a.text-dark:hover, a.text-dark:focus { filter: none; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ .fa-stack { position: relative; display: inline-block; @@ -12197,7 +12197,7 @@ a.text-dark:hover, a.text-dark:focus { vertical-align: middle; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ .fa-stack-1x, .fa-stack-2x { position: absolute; left: 0; @@ -12205,1605 +12205,1605 @@ a.text-dark:hover, a.text-dark:focus { text-align: center; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ .fa-stack-1x { line-height: inherit; } -/* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ .fa-stack-2x { font-size: 2em; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ .fa-inverse { color: #fff; } /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons */ -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-glass:before { content: ""; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-music:before { content: ""; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-search:before { content: ""; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-envelope-o:before { content: ""; } -/* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-heart:before { content: ""; } -/* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-star:before { content: ""; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-star-o:before { content: ""; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-user:before { content: ""; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-film:before { content: ""; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-th-large:before { content: ""; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-th:before { content: ""; } -/* line 15, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-th-list:before { content: ""; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-check:before { content: ""; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-remove:before, .fa-close:before, .fa-times:before { content: ""; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-search-plus:before { content: ""; } -/* line 21, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-search-minus:before { content: ""; } -/* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-power-off:before { content: ""; } -/* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-signal:before { content: ""; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-gear:before, .fa-cog:before { content: ""; } -/* line 26, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-trash-o:before { content: ""; } -/* line 27, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-home:before { content: ""; } -/* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-o:before { content: ""; } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-clock-o:before { content: ""; } -/* line 30, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-road:before { content: ""; } -/* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-download:before { content: ""; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-circle-o-down:before { content: ""; } -/* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-circle-o-up:before { content: ""; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-inbox:before { content: ""; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-play-circle-o:before { content: ""; } -/* line 36, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-rotate-right:before, .fa-repeat:before { content: ""; } -/* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-refresh:before { content: ""; } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-list-alt:before { content: ""; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-lock:before { content: ""; } -/* line 41, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-flag:before { content: ""; } -/* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-headphones:before { content: ""; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-volume-off:before { content: ""; } -/* line 44, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-volume-down:before { content: ""; } -/* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-volume-up:before { content: ""; } -/* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-qrcode:before { content: ""; } -/* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-barcode:before { content: ""; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tag:before { content: ""; } -/* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tags:before { content: ""; } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-book:before { content: ""; } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bookmark:before { content: ""; } -/* line 52, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-print:before { content: ""; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-camera:before { content: ""; } -/* line 54, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-font:before { content: ""; } -/* line 55, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bold:before { content: ""; } -/* line 56, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-italic:before { content: ""; } -/* line 57, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 57, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-text-height:before { content: ""; } -/* line 58, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-text-width:before { content: ""; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-align-left:before { content: ""; } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-align-center:before { content: ""; } -/* line 61, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-align-right:before { content: ""; } -/* line 62, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-align-justify:before { content: ""; } -/* line 63, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-list:before { content: ""; } -/* line 64, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-dedent:before, .fa-outdent:before { content: ""; } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-indent:before { content: ""; } -/* line 67, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-video-camera:before { content: ""; } -/* line 68, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-photo:before, .fa-image:before, .fa-picture-o:before { content: ""; } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pencil:before { content: ""; } -/* line 72, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-map-marker:before { content: ""; } -/* line 73, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-adjust:before { content: ""; } -/* line 74, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 74, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tint:before { content: ""; } -/* line 75, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 75, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-edit:before, .fa-pencil-square-o:before { content: ""; } -/* line 77, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 77, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-share-square-o:before { content: ""; } -/* line 78, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 78, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-check-square-o:before { content: ""; } -/* line 79, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 79, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrows:before { content: ""; } -/* line 80, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-step-backward:before { content: ""; } -/* line 81, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 81, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-fast-backward:before { content: ""; } -/* line 82, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-backward:before { content: ""; } -/* line 83, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 83, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-play:before { content: ""; } -/* line 84, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pause:before { content: ""; } -/* line 85, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 85, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-stop:before { content: ""; } -/* line 86, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 86, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-forward:before { content: ""; } -/* line 87, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-fast-forward:before { content: ""; } -/* line 88, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-step-forward:before { content: ""; } -/* line 89, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-eject:before { content: ""; } -/* line 90, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-chevron-left:before { content: ""; } -/* line 91, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-chevron-right:before { content: ""; } -/* line 92, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 92, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-plus-circle:before { content: ""; } -/* line 93, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 93, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-minus-circle:before { content: ""; } -/* line 94, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 94, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-times-circle:before { content: ""; } -/* line 95, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-check-circle:before { content: ""; } -/* line 96, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 96, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-question-circle:before { content: ""; } -/* line 97, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 97, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-info-circle:before { content: ""; } -/* line 98, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 98, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-crosshairs:before { content: ""; } -/* line 99, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 99, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-times-circle-o:before { content: ""; } -/* line 100, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-check-circle-o:before { content: ""; } -/* line 101, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 101, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ban:before { content: ""; } -/* line 102, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 102, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-left:before { content: ""; } -/* line 103, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 103, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-right:before { content: ""; } -/* line 104, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 104, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-up:before { content: ""; } -/* line 105, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 105, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-down:before { content: ""; } -/* line 106, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 106, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mail-forward:before, .fa-share:before { content: ""; } -/* line 108, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 108, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-expand:before { content: ""; } -/* line 109, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 109, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-compress:before { content: ""; } -/* line 110, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 110, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-plus:before { content: ""; } -/* line 111, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 111, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-minus:before { content: ""; } -/* line 112, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 112, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-asterisk:before { content: ""; } -/* line 113, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 113, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-exclamation-circle:before { content: ""; } -/* line 114, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 114, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-gift:before { content: ""; } -/* line 115, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 115, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-leaf:before { content: ""; } -/* line 116, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 116, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-fire:before { content: ""; } -/* line 117, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-eye:before { content: ""; } -/* line 118, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 118, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-eye-slash:before { content: ""; } -/* line 119, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 119, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-warning:before, .fa-exclamation-triangle:before { content: ""; } -/* line 121, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 121, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-plane:before { content: ""; } -/* line 122, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-calendar:before { content: ""; } -/* line 123, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 123, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-random:before { content: ""; } -/* line 124, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 124, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-comment:before { content: ""; } -/* line 125, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-magnet:before { content: ""; } -/* line 126, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 126, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-chevron-up:before { content: ""; } -/* line 127, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 127, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-chevron-down:before { content: ""; } -/* line 128, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 128, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-retweet:before { content: ""; } -/* line 129, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 129, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-shopping-cart:before { content: ""; } -/* line 130, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-folder:before { content: ""; } -/* line 131, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 131, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-folder-open:before { content: ""; } -/* line 132, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 132, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrows-v:before { content: ""; } -/* line 133, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 133, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrows-h:before { content: ""; } -/* line 134, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bar-chart-o:before, .fa-bar-chart:before { content: ""; } -/* line 136, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 136, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-twitter-square:before { content: ""; } -/* line 137, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 137, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-facebook-square:before { content: ""; } -/* line 138, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 138, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-camera-retro:before { content: ""; } -/* line 139, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 139, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-key:before { content: ""; } -/* line 140, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-gears:before, .fa-cogs:before { content: ""; } -/* line 142, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-comments:before { content: ""; } -/* line 143, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-thumbs-o-up:before { content: ""; } -/* line 144, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 144, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-thumbs-o-down:before { content: ""; } -/* line 145, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 145, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-star-half:before { content: ""; } -/* line 146, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 146, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-heart-o:before { content: ""; } -/* line 147, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sign-out:before { content: ""; } -/* line 148, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 148, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-linkedin-square:before { content: ""; } -/* line 149, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 149, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-thumb-tack:before { content: ""; } -/* line 150, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 150, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-external-link:before { content: ""; } -/* line 151, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 151, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sign-in:before { content: ""; } -/* line 152, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 152, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-trophy:before { content: ""; } -/* line 153, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-github-square:before { content: ""; } -/* line 154, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 154, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-upload:before { content: ""; } -/* line 155, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 155, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-lemon-o:before { content: ""; } -/* line 156, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-phone:before { content: ""; } -/* line 157, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 157, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-square-o:before { content: ""; } -/* line 158, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 158, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bookmark-o:before { content: ""; } -/* line 159, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 159, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-phone-square:before { content: ""; } -/* line 160, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-twitter:before { content: ""; } -/* line 161, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 161, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-facebook-f:before, .fa-facebook:before { content: ""; } -/* line 163, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 163, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-github:before { content: ""; } -/* line 164, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 164, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-unlock:before { content: ""; } -/* line 165, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 165, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-credit-card:before { content: ""; } -/* line 166, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 166, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-feed:before, .fa-rss:before { content: ""; } -/* line 168, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 168, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hdd-o:before { content: ""; } -/* line 169, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 169, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bullhorn:before { content: ""; } -/* line 170, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 170, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bell:before { content: ""; } -/* line 171, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-certificate:before { content: ""; } -/* line 172, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-o-right:before { content: ""; } -/* line 173, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 173, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-o-left:before { content: ""; } -/* line 174, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 174, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-o-up:before { content: ""; } -/* line 175, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 175, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-o-down:before { content: ""; } -/* line 176, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 176, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-circle-left:before { content: ""; } -/* line 177, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-circle-right:before { content: ""; } -/* line 178, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 178, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-circle-up:before { content: ""; } -/* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-circle-down:before { content: ""; } -/* line 180, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 180, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-globe:before { content: ""; } -/* line 181, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 181, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-wrench:before { content: ""; } -/* line 182, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 182, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tasks:before { content: ""; } -/* line 183, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 183, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-filter:before { content: ""; } -/* line 184, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 184, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-briefcase:before { content: ""; } -/* line 185, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 185, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrows-alt:before { content: ""; } -/* line 186, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 186, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-group:before, .fa-users:before { content: ""; } -/* line 188, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 188, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-chain:before, .fa-link:before { content: ""; } -/* line 190, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 190, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cloud:before { content: ""; } -/* line 191, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 191, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-flask:before { content: ""; } -/* line 192, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 192, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cut:before, .fa-scissors:before { content: ""; } -/* line 194, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 194, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-copy:before, .fa-files-o:before { content: ""; } -/* line 196, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 196, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-paperclip:before { content: ""; } -/* line 197, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 197, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-save:before, .fa-floppy-o:before { content: ""; } -/* line 199, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 199, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-square:before { content: ""; } -/* line 200, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 200, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-navicon:before, .fa-reorder:before, .fa-bars:before { content: ""; } -/* line 203, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 203, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-list-ul:before { content: ""; } -/* line 204, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 204, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-list-ol:before { content: ""; } -/* line 205, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 205, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-strikethrough:before { content: ""; } -/* line 206, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 206, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-underline:before { content: ""; } -/* line 207, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 207, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-table:before { content: ""; } -/* line 208, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 208, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-magic:before { content: ""; } -/* line 209, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 209, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-truck:before { content: ""; } -/* line 210, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 210, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pinterest:before { content: ""; } -/* line 211, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 211, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pinterest-square:before { content: ""; } -/* line 212, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 212, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-google-plus-square:before { content: ""; } -/* line 213, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 213, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-google-plus:before { content: ""; } -/* line 214, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 214, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-money:before { content: ""; } -/* line 215, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 215, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-caret-down:before { content: ""; } -/* line 216, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 216, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-caret-up:before { content: ""; } -/* line 217, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 217, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-caret-left:before { content: ""; } -/* line 218, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 218, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-caret-right:before { content: ""; } -/* line 219, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 219, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-columns:before { content: ""; } -/* line 220, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 220, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-unsorted:before, .fa-sort:before { content: ""; } -/* line 222, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 222, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sort-down:before, .fa-sort-desc:before { content: ""; } -/* line 224, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 224, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sort-up:before, .fa-sort-asc:before { content: ""; } -/* line 226, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 226, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-envelope:before { content: ""; } -/* line 227, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 227, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-linkedin:before { content: ""; } -/* line 228, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 228, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-rotate-left:before, .fa-undo:before { content: ""; } -/* line 230, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 230, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-legal:before, .fa-gavel:before { content: ""; } -/* line 232, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 232, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-dashboard:before, .fa-tachometer:before { content: ""; } -/* line 234, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 234, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-comment-o:before { content: ""; } -/* line 235, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 235, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-comments-o:before { content: ""; } -/* line 236, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 236, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-flash:before, .fa-bolt:before { content: ""; } -/* line 238, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 238, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sitemap:before { content: ""; } -/* line 239, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 239, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-umbrella:before { content: ""; } -/* line 240, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 240, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-paste:before, .fa-clipboard:before { content: ""; } -/* line 242, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 242, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-lightbulb-o:before { content: ""; } -/* line 243, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 243, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-exchange:before { content: ""; } -/* line 244, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 244, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cloud-download:before { content: ""; } -/* line 245, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 245, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cloud-upload:before { content: ""; } -/* line 246, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 246, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-user-md:before { content: ""; } -/* line 247, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 247, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-stethoscope:before { content: ""; } -/* line 248, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 248, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-suitcase:before { content: ""; } -/* line 249, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 249, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bell-o:before { content: ""; } -/* line 250, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 250, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-coffee:before { content: ""; } -/* line 251, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 251, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cutlery:before { content: ""; } -/* line 252, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 252, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-text-o:before { content: ""; } -/* line 253, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 253, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-building-o:before { content: ""; } -/* line 254, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 254, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hospital-o:before { content: ""; } -/* line 255, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 255, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ambulance:before { content: ""; } -/* line 256, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 256, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-medkit:before { content: ""; } -/* line 257, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 257, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-fighter-jet:before { content: ""; } -/* line 258, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 258, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-beer:before { content: ""; } -/* line 259, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 259, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-h-square:before { content: ""; } -/* line 260, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 260, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-plus-square:before { content: ""; } -/* line 261, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 261, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-angle-double-left:before { content: ""; } -/* line 262, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 262, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-angle-double-right:before { content: ""; } -/* line 263, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 263, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-angle-double-up:before { content: ""; } -/* line 264, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 264, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-angle-double-down:before { content: ""; } -/* line 265, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 265, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-angle-left:before { content: ""; } -/* line 266, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 266, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-angle-right:before { content: ""; } -/* line 267, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 267, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-angle-up:before { content: ""; } -/* line 268, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 268, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-angle-down:before { content: ""; } -/* line 269, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 269, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-desktop:before { content: ""; } -/* line 270, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 270, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-laptop:before { content: ""; } -/* line 271, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 271, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tablet:before { content: ""; } -/* line 272, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 272, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mobile-phone:before, .fa-mobile:before { content: ""; } -/* line 274, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 274, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-circle-o:before { content: ""; } -/* line 275, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 275, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-quote-left:before { content: ""; } -/* line 276, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 276, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-quote-right:before { content: ""; } -/* line 277, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 277, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-spinner:before { content: ""; } -/* line 278, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 278, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-circle:before { content: ""; } -/* line 279, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 279, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mail-reply:before, .fa-reply:before { content: ""; } -/* line 281, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 281, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-github-alt:before { content: ""; } -/* line 282, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 282, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-folder-o:before { content: ""; } -/* line 283, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 283, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-folder-open-o:before { content: ""; } -/* line 284, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 284, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-smile-o:before { content: ""; } -/* line 285, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 285, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-frown-o:before { content: ""; } -/* line 286, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 286, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-meh-o:before { content: ""; } -/* line 287, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 287, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-gamepad:before { content: ""; } -/* line 288, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 288, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-keyboard-o:before { content: ""; } -/* line 289, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 289, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-flag-o:before { content: ""; } -/* line 290, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 290, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-flag-checkered:before { content: ""; } -/* line 291, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 291, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-terminal:before { content: ""; } -/* line 292, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 292, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-code:before { content: ""; } -/* line 293, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 293, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mail-reply-all:before, .fa-reply-all:before { content: ""; } -/* line 295, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 295, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before { content: ""; } -/* line 298, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 298, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-location-arrow:before { content: ""; } -/* line 299, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 299, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-crop:before { content: ""; } -/* line 300, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 300, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-code-fork:before { content: ""; } -/* line 301, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 301, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-unlink:before, .fa-chain-broken:before { content: ""; } -/* line 303, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 303, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-question:before { content: ""; } -/* line 304, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 304, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-info:before { content: ""; } -/* line 305, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 305, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-exclamation:before { content: ""; } -/* line 306, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 306, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-superscript:before { content: ""; } -/* line 307, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 307, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-subscript:before { content: ""; } -/* line 308, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 308, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-eraser:before { content: ""; } -/* line 309, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 309, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-puzzle-piece:before { content: ""; } -/* line 310, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 310, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-microphone:before { content: ""; } -/* line 311, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 311, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-microphone-slash:before { content: ""; } -/* line 312, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 312, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-shield:before { content: ""; } -/* line 313, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 313, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-calendar-o:before { content: ""; } -/* line 314, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 314, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-fire-extinguisher:before { content: ""; } -/* line 315, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 315, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-rocket:before { content: ""; } -/* line 316, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 316, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-maxcdn:before { content: ""; } -/* line 317, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 317, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-chevron-circle-left:before { content: ""; } -/* line 318, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 318, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-chevron-circle-right:before { content: ""; } -/* line 319, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 319, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-chevron-circle-up:before { content: ""; } -/* line 320, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 320, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-chevron-circle-down:before { content: ""; } -/* line 321, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 321, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-html5:before { content: ""; } -/* line 322, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 322, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-css3:before { content: ""; } -/* line 323, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 323, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-anchor:before { content: ""; } -/* line 324, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 324, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-unlock-alt:before { content: ""; } -/* line 325, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 325, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bullseye:before { content: ""; } -/* line 326, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 326, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ellipsis-h:before { content: ""; } -/* line 327, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 327, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ellipsis-v:before { content: ""; } -/* line 328, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 328, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-rss-square:before { content: ""; } -/* line 329, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 329, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-play-circle:before { content: ""; } -/* line 330, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 330, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ticket:before { content: ""; } -/* line 331, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 331, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-minus-square:before { content: ""; } -/* line 332, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 332, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-minus-square-o:before { content: ""; } -/* line 333, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 333, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-level-up:before { content: ""; } -/* line 334, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 334, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-level-down:before { content: ""; } -/* line 335, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 335, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-check-square:before { content: ""; } -/* line 336, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 336, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pencil-square:before { content: ""; } -/* line 337, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 337, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-external-link-square:before { content: ""; } -/* line 338, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 338, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-share-square:before { content: ""; } -/* line 339, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 339, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-compass:before { content: ""; } -/* line 340, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 340, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-toggle-down:before, .fa-caret-square-o-down:before { content: ""; } -/* line 342, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 342, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-toggle-up:before, .fa-caret-square-o-up:before { content: ""; } -/* line 344, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 344, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-toggle-right:before, .fa-caret-square-o-right:before { content: ""; } -/* line 346, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 346, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-euro:before, .fa-eur:before { content: ""; } -/* line 348, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 348, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-gbp:before { content: ""; } -/* line 349, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 349, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-dollar:before, .fa-usd:before { content: ""; } -/* line 351, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 351, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-rupee:before, .fa-inr:before { content: ""; } -/* line 353, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 353, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cny:before, .fa-rmb:before, .fa-yen:before, @@ -13811,574 +13811,574 @@ a.text-dark:hover, a.text-dark:focus { content: ""; } -/* line 357, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 357, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ruble:before, .fa-rouble:before, .fa-rub:before { content: ""; } -/* line 360, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 360, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-won:before, .fa-krw:before { content: ""; } -/* line 362, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 362, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bitcoin:before, .fa-btc:before { content: ""; } -/* line 364, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 364, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file:before { content: ""; } -/* line 365, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 365, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-text:before { content: ""; } -/* line 366, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 366, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sort-alpha-asc:before { content: ""; } -/* line 367, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 367, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sort-alpha-desc:before { content: ""; } -/* line 368, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 368, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sort-amount-asc:before { content: ""; } -/* line 369, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 369, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sort-amount-desc:before { content: ""; } -/* line 370, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 370, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sort-numeric-asc:before { content: ""; } -/* line 371, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 371, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sort-numeric-desc:before { content: ""; } -/* line 372, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 372, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-thumbs-up:before { content: ""; } -/* line 373, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 373, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-thumbs-down:before { content: ""; } -/* line 374, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 374, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-youtube-square:before { content: ""; } -/* line 375, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 375, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-youtube:before { content: ""; } -/* line 376, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 376, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-xing:before { content: ""; } -/* line 377, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 377, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-xing-square:before { content: ""; } -/* line 378, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 378, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-youtube-play:before { content: ""; } -/* line 379, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 379, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-dropbox:before { content: ""; } -/* line 380, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 380, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-stack-overflow:before { content: ""; } -/* line 381, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 381, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-instagram:before { content: ""; } -/* line 382, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 382, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-flickr:before { content: ""; } -/* line 383, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 383, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-adn:before { content: ""; } -/* line 384, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 384, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bitbucket:before { content: ""; } -/* line 385, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 385, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bitbucket-square:before { content: ""; } -/* line 386, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 386, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tumblr:before { content: ""; } -/* line 387, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 387, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tumblr-square:before { content: ""; } -/* line 388, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 388, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-long-arrow-down:before { content: ""; } -/* line 389, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 389, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-long-arrow-up:before { content: ""; } -/* line 390, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 390, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-long-arrow-left:before { content: ""; } -/* line 391, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 391, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-long-arrow-right:before { content: ""; } -/* line 392, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 392, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-apple:before { content: ""; } -/* line 393, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 393, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-windows:before { content: ""; } -/* line 394, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 394, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-android:before { content: ""; } -/* line 395, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 395, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-linux:before { content: ""; } -/* line 396, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 396, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-dribbble:before { content: ""; } -/* line 397, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 397, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-skype:before { content: ""; } -/* line 398, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 398, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-foursquare:before { content: ""; } -/* line 399, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 399, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-trello:before { content: ""; } -/* line 400, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 400, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-female:before { content: ""; } -/* line 401, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 401, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-male:before { content: ""; } -/* line 402, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 402, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-gittip:before, .fa-gratipay:before { content: ""; } -/* line 404, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 404, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sun-o:before { content: ""; } -/* line 405, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 405, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-moon-o:before { content: ""; } -/* line 406, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 406, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-archive:before { content: ""; } -/* line 407, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 407, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bug:before { content: ""; } -/* line 408, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 408, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-vk:before { content: ""; } -/* line 409, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 409, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-weibo:before { content: ""; } -/* line 410, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 410, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-renren:before { content: ""; } -/* line 411, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 411, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pagelines:before { content: ""; } -/* line 412, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 412, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-stack-exchange:before { content: ""; } -/* line 413, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 413, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-circle-o-right:before { content: ""; } -/* line 414, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 414, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-circle-o-left:before { content: ""; } -/* line 415, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 415, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-toggle-left:before, .fa-caret-square-o-left:before { content: ""; } -/* line 417, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 417, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-dot-circle-o:before { content: ""; } -/* line 418, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 418, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-wheelchair:before { content: ""; } -/* line 419, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 419, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-vimeo-square:before { content: ""; } -/* line 420, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 420, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-turkish-lira:before, .fa-try:before { content: ""; } -/* line 422, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 422, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-plus-square-o:before { content: ""; } -/* line 423, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 423, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-space-shuttle:before { content: ""; } -/* line 424, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 424, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-slack:before { content: ""; } -/* line 425, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 425, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-envelope-square:before { content: ""; } -/* line 426, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 426, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-wordpress:before { content: ""; } -/* line 427, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 427, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-openid:before { content: ""; } -/* line 428, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 428, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-institution:before, .fa-bank:before, .fa-university:before { content: ""; } -/* line 431, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 431, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mortar-board:before, .fa-graduation-cap:before { content: ""; } -/* line 433, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 433, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-yahoo:before { content: ""; } -/* line 434, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 434, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-google:before { content: ""; } -/* line 435, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 435, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-reddit:before { content: ""; } -/* line 436, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 436, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-reddit-square:before { content: ""; } -/* line 437, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 437, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-stumbleupon-circle:before { content: ""; } -/* line 438, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 438, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-stumbleupon:before { content: ""; } -/* line 439, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 439, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-delicious:before { content: ""; } -/* line 440, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 440, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-digg:before { content: ""; } -/* line 441, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 441, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pied-piper-pp:before { content: ""; } -/* line 442, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 442, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pied-piper-alt:before { content: ""; } -/* line 443, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 443, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-drupal:before { content: ""; } -/* line 444, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 444, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-joomla:before { content: ""; } -/* line 445, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 445, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-language:before { content: ""; } -/* line 446, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 446, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-fax:before { content: ""; } -/* line 447, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 447, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-building:before { content: ""; } -/* line 448, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 448, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-child:before { content: ""; } -/* line 449, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 449, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-paw:before { content: ""; } -/* line 450, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 450, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-spoon:before { content: ""; } -/* line 451, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 451, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cube:before { content: ""; } -/* line 452, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 452, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cubes:before { content: ""; } -/* line 453, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 453, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-behance:before { content: ""; } -/* line 454, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 454, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-behance-square:before { content: ""; } -/* line 455, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 455, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-steam:before { content: ""; } -/* line 456, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 456, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-steam-square:before { content: ""; } -/* line 457, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 457, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-recycle:before { content: ""; } -/* line 458, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 458, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-automobile:before, .fa-car:before { content: ""; } -/* line 460, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 460, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cab:before, .fa-taxi:before { content: ""; } -/* line 462, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 462, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tree:before { content: ""; } -/* line 463, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 463, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-spotify:before { content: ""; } -/* line 464, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 464, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-deviantart:before { content: ""; } -/* line 465, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 465, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-soundcloud:before { content: ""; } -/* line 466, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 466, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-database:before { content: ""; } -/* line 467, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 467, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-pdf-o:before { content: ""; } -/* line 468, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 468, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-word-o:before { content: ""; } -/* line 469, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 469, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-excel-o:before { content: ""; } -/* line 470, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 470, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-powerpoint-o:before { content: ""; } -/* line 471, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 471, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before { content: ""; } -/* line 474, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 474, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-zip-o:before, .fa-file-archive-o:before { content: ""; } -/* line 476, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 476, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-sound-o:before, .fa-file-audio-o:before { content: ""; } -/* line 478, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 478, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-movie-o:before, .fa-file-video-o:before { content: ""; } -/* line 480, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 480, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-code-o:before { content: ""; } -/* line 481, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 481, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-vine:before { content: ""; } -/* line 482, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 482, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-codepen:before { content: ""; } -/* line 483, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 483, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-jsfiddle:before { content: ""; } -/* line 484, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 484, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, @@ -14387,1328 +14387,1328 @@ a.text-dark:hover, a.text-dark:focus { content: ""; } -/* line 489, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 489, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-circle-o-notch:before { content: ""; } -/* line 490, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 490, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ra:before, .fa-resistance:before, .fa-rebel:before { content: ""; } -/* line 493, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 493, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ge:before, .fa-empire:before { content: ""; } -/* line 495, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 495, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-git-square:before { content: ""; } -/* line 496, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 496, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-git:before { content: ""; } -/* line 497, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 497, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before { content: ""; } -/* line 500, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 500, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tencent-weibo:before { content: ""; } -/* line 501, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 501, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-qq:before { content: ""; } -/* line 502, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 502, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-wechat:before, .fa-weixin:before { content: ""; } -/* line 504, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 504, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-send:before, .fa-paper-plane:before { content: ""; } -/* line 506, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 506, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-send-o:before, .fa-paper-plane-o:before { content: ""; } -/* line 508, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 508, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-history:before { content: ""; } -/* line 509, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 509, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-circle-thin:before { content: ""; } -/* line 510, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 510, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-header:before { content: ""; } -/* line 511, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 511, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-paragraph:before { content: ""; } -/* line 512, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 512, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sliders:before { content: ""; } -/* line 513, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 513, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-share-alt:before { content: ""; } -/* line 514, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 514, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-share-alt-square:before { content: ""; } -/* line 515, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 515, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bomb:before { content: ""; } -/* line 516, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 516, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-soccer-ball-o:before, .fa-futbol-o:before { content: ""; } -/* line 518, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 518, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tty:before { content: ""; } -/* line 519, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 519, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-binoculars:before { content: ""; } -/* line 520, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 520, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-plug:before { content: ""; } -/* line 521, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 521, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-slideshare:before { content: ""; } -/* line 522, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 522, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-twitch:before { content: ""; } -/* line 523, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 523, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-yelp:before { content: ""; } -/* line 524, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 524, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-newspaper-o:before { content: ""; } -/* line 525, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 525, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-wifi:before { content: ""; } -/* line 526, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 526, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-calculator:before { content: ""; } -/* line 527, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 527, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-paypal:before { content: ""; } -/* line 528, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 528, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-google-wallet:before { content: ""; } -/* line 529, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 529, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cc-visa:before { content: ""; } -/* line 530, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 530, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cc-mastercard:before { content: ""; } -/* line 531, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 531, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cc-discover:before { content: ""; } -/* line 532, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 532, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cc-amex:before { content: ""; } -/* line 533, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 533, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cc-paypal:before { content: ""; } -/* line 534, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 534, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cc-stripe:before { content: ""; } -/* line 535, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 535, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bell-slash:before { content: ""; } -/* line 536, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 536, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bell-slash-o:before { content: ""; } -/* line 537, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 537, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-trash:before { content: ""; } -/* line 538, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 538, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-copyright:before { content: ""; } -/* line 539, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 539, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-at:before { content: ""; } -/* line 540, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 540, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-eyedropper:before { content: ""; } -/* line 541, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 541, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-paint-brush:before { content: ""; } -/* line 542, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 542, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-birthday-cake:before { content: ""; } -/* line 543, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 543, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-area-chart:before { content: ""; } -/* line 544, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 544, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pie-chart:before { content: ""; } -/* line 545, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 545, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-line-chart:before { content: ""; } -/* line 546, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 546, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-lastfm:before { content: ""; } -/* line 547, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 547, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-lastfm-square:before { content: ""; } -/* line 548, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 548, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-toggle-off:before { content: ""; } -/* line 549, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 549, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-toggle-on:before { content: ""; } -/* line 550, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 550, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bicycle:before { content: ""; } -/* line 551, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 551, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bus:before { content: ""; } -/* line 552, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 552, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ioxhost:before { content: ""; } -/* line 553, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 553, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-angellist:before { content: ""; } -/* line 554, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 554, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cc:before { content: ""; } -/* line 555, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 555, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-shekel:before, .fa-sheqel:before, .fa-ils:before { content: ""; } -/* line 558, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 558, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-meanpath:before { content: ""; } -/* line 559, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 559, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-buysellads:before { content: ""; } -/* line 560, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 560, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-connectdevelop:before { content: ""; } -/* line 561, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 561, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-dashcube:before { content: ""; } -/* line 562, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 562, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-forumbee:before { content: ""; } -/* line 563, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 563, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-leanpub:before { content: ""; } -/* line 564, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 564, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sellsy:before { content: ""; } -/* line 565, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 565, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-shirtsinbulk:before { content: ""; } -/* line 566, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 566, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-simplybuilt:before { content: ""; } -/* line 567, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 567, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-skyatlas:before { content: ""; } -/* line 568, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 568, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cart-plus:before { content: ""; } -/* line 569, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 569, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cart-arrow-down:before { content: ""; } -/* line 570, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 570, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-diamond:before { content: ""; } -/* line 571, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 571, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ship:before { content: ""; } -/* line 572, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 572, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-user-secret:before { content: ""; } -/* line 573, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 573, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-motorcycle:before { content: ""; } -/* line 574, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 574, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-street-view:before { content: ""; } -/* line 575, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 575, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-heartbeat:before { content: ""; } -/* line 576, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 576, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-venus:before { content: ""; } -/* line 577, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 577, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mars:before { content: ""; } -/* line 578, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 578, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mercury:before { content: ""; } -/* line 579, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 579, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-intersex:before, .fa-transgender:before { content: ""; } -/* line 581, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 581, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-transgender-alt:before { content: ""; } -/* line 582, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 582, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-venus-double:before { content: ""; } -/* line 583, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 583, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mars-double:before { content: ""; } -/* line 584, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 584, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-venus-mars:before { content: ""; } -/* line 585, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 585, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mars-stroke:before { content: ""; } -/* line 586, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 586, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mars-stroke-v:before { content: ""; } -/* line 587, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 587, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mars-stroke-h:before { content: ""; } -/* line 588, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 588, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-neuter:before { content: ""; } -/* line 589, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 589, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-genderless:before { content: ""; } -/* line 590, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 590, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-facebook-official:before { content: ""; } -/* line 591, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 591, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pinterest-p:before { content: ""; } -/* line 592, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 592, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-whatsapp:before { content: ""; } -/* line 593, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 593, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-server:before { content: ""; } -/* line 594, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 594, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-user-plus:before { content: ""; } -/* line 595, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 595, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-user-times:before { content: ""; } -/* line 596, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 596, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hotel:before, .fa-bed:before { content: ""; } -/* line 598, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 598, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-viacoin:before { content: ""; } -/* line 599, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 599, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-train:before { content: ""; } -/* line 600, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 600, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-subway:before { content: ""; } -/* line 601, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 601, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-medium:before { content: ""; } -/* line 602, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 602, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-yc:before, .fa-y-combinator:before { content: ""; } -/* line 604, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 604, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-optin-monster:before { content: ""; } -/* line 605, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 605, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-opencart:before { content: ""; } -/* line 606, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 606, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-expeditedssl:before { content: ""; } -/* line 607, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 607, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-battery-4:before, .fa-battery:before, .fa-battery-full:before { content: ""; } -/* line 610, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 610, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-battery-3:before, .fa-battery-three-quarters:before { content: ""; } -/* line 612, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 612, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-battery-2:before, .fa-battery-half:before { content: ""; } -/* line 614, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 614, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-battery-1:before, .fa-battery-quarter:before { content: ""; } -/* line 616, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 616, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-battery-0:before, .fa-battery-empty:before { content: ""; } -/* line 618, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 618, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mouse-pointer:before { content: ""; } -/* line 619, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 619, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-i-cursor:before { content: ""; } -/* line 620, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 620, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-object-group:before { content: ""; } -/* line 621, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 621, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-object-ungroup:before { content: ""; } -/* line 622, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 622, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sticky-note:before { content: ""; } -/* line 623, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 623, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sticky-note-o:before { content: ""; } -/* line 624, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 624, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cc-jcb:before { content: ""; } -/* line 625, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 625, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cc-diners-club:before { content: ""; } -/* line 626, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 626, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-clone:before { content: ""; } -/* line 627, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 627, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-balance-scale:before { content: ""; } -/* line 628, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 628, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hourglass-o:before { content: ""; } -/* line 629, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 629, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hourglass-1:before, .fa-hourglass-start:before { content: ""; } -/* line 631, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 631, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hourglass-2:before, .fa-hourglass-half:before { content: ""; } -/* line 633, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 633, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hourglass-3:before, .fa-hourglass-end:before { content: ""; } -/* line 635, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 635, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hourglass:before { content: ""; } -/* line 636, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 636, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-grab-o:before, .fa-hand-rock-o:before { content: ""; } -/* line 638, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 638, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-stop-o:before, .fa-hand-paper-o:before { content: ""; } -/* line 640, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 640, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-scissors-o:before { content: ""; } -/* line 641, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 641, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-lizard-o:before { content: ""; } -/* line 642, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 642, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-spock-o:before { content: ""; } -/* line 643, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 643, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-pointer-o:before { content: ""; } -/* line 644, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 644, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-peace-o:before { content: ""; } -/* line 645, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 645, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-trademark:before { content: ""; } -/* line 646, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 646, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-registered:before { content: ""; } -/* line 647, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 647, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-creative-commons:before { content: ""; } -/* line 648, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 648, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-gg:before { content: ""; } -/* line 649, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 649, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-gg-circle:before { content: ""; } -/* line 650, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 650, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tripadvisor:before { content: ""; } -/* line 651, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 651, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-odnoklassniki:before { content: ""; } -/* line 652, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 652, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-odnoklassniki-square:before { content: ""; } -/* line 653, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 653, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-get-pocket:before { content: ""; } -/* line 654, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 654, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-wikipedia-w:before { content: ""; } -/* line 655, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 655, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-safari:before { content: ""; } -/* line 656, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 656, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-chrome:before { content: ""; } -/* line 657, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 657, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-firefox:before { content: ""; } -/* line 658, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 658, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-opera:before { content: ""; } -/* line 659, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 659, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-internet-explorer:before { content: ""; } -/* line 660, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 660, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tv:before, .fa-television:before { content: ""; } -/* line 662, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 662, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-contao:before { content: ""; } -/* line 663, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 663, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-500px:before { content: ""; } -/* line 664, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 664, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-amazon:before { content: ""; } -/* line 665, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 665, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-calendar-plus-o:before { content: ""; } -/* line 666, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 666, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-calendar-minus-o:before { content: ""; } -/* line 667, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 667, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-calendar-times-o:before { content: ""; } -/* line 668, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 668, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-calendar-check-o:before { content: ""; } -/* line 669, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 669, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-industry:before { content: ""; } -/* line 670, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 670, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-map-pin:before { content: ""; } -/* line 671, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 671, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-map-signs:before { content: ""; } -/* line 672, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 672, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-map-o:before { content: ""; } -/* line 673, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 673, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-map:before { content: ""; } -/* line 674, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 674, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-commenting:before { content: ""; } -/* line 675, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 675, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-commenting-o:before { content: ""; } -/* line 676, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 676, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-houzz:before { content: ""; } -/* line 677, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 677, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-vimeo:before { content: ""; } -/* line 678, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 678, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-black-tie:before { content: ""; } -/* line 679, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 679, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-fonticons:before { content: ""; } -/* line 680, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 680, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-reddit-alien:before { content: ""; } -/* line 681, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 681, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-edge:before { content: ""; } -/* line 682, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 682, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-credit-card-alt:before { content: ""; } -/* line 683, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 683, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-codiepie:before { content: ""; } -/* line 684, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 684, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-modx:before { content: ""; } -/* line 685, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 685, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-fort-awesome:before { content: ""; } -/* line 686, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 686, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-usb:before { content: ""; } -/* line 687, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 687, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-product-hunt:before { content: ""; } -/* line 688, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 688, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mixcloud:before { content: ""; } -/* line 689, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 689, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-scribd:before { content: ""; } -/* line 690, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 690, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pause-circle:before { content: ""; } -/* line 691, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 691, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pause-circle-o:before { content: ""; } -/* line 692, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 692, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-stop-circle:before { content: ""; } -/* line 693, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 693, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-stop-circle-o:before { content: ""; } -/* line 694, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 694, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-shopping-bag:before { content: ""; } -/* line 695, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 695, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-shopping-basket:before { content: ""; } -/* line 696, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 696, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hashtag:before { content: ""; } -/* line 697, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 697, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bluetooth:before { content: ""; } -/* line 698, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 698, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bluetooth-b:before { content: ""; } -/* line 699, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 699, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-percent:before { content: ""; } -/* line 700, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 700, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-gitlab:before { content: ""; } -/* line 701, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 701, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-wpbeginner:before { content: ""; } -/* line 702, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 702, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-wpforms:before { content: ""; } -/* line 703, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 703, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-envira:before { content: ""; } -/* line 704, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 704, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-universal-access:before { content: ""; } -/* line 705, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 705, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-wheelchair-alt:before { content: ""; } -/* line 706, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 706, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-question-circle-o:before { content: ""; } -/* line 707, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 707, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-blind:before { content: ""; } -/* line 708, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 708, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-audio-description:before { content: ""; } -/* line 709, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 709, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-volume-control-phone:before { content: ""; } -/* line 710, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 710, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-braille:before { content: ""; } -/* line 711, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 711, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-assistive-listening-systems:before { content: ""; } -/* line 712, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 712, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before { content: ""; } -/* line 714, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 714, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before { content: ""; } -/* line 717, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 717, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-glide:before { content: ""; } -/* line 718, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 718, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-glide-g:before { content: ""; } -/* line 719, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 719, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-signing:before, .fa-sign-language:before { content: ""; } -/* line 721, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 721, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-low-vision:before { content: ""; } -/* line 722, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 722, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-viadeo:before { content: ""; } -/* line 723, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 723, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-viadeo-square:before { content: ""; } -/* line 724, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 724, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-snapchat:before { content: ""; } -/* line 725, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 725, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-snapchat-ghost:before { content: ""; } -/* line 726, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 726, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-snapchat-square:before { content: ""; } -/* line 727, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 727, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pied-piper:before { content: ""; } -/* line 728, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 728, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-first-order:before { content: ""; } -/* line 729, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 729, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-yoast:before { content: ""; } -/* line 730, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 730, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-themeisle:before { content: ""; } -/* line 731, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 731, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-google-plus-circle:before, .fa-google-plus-official:before { content: ""; } -/* line 733, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 733, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-fa:before, .fa-font-awesome:before { content: ""; } -/* line 735, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 735, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-handshake-o:before { content: ""; } -/* line 736, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 736, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-envelope-open:before { content: ""; } -/* line 737, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 737, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-envelope-open-o:before { content: ""; } -/* line 738, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 738, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-linode:before { content: ""; } -/* line 739, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 739, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-address-book:before { content: ""; } -/* line 740, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 740, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-address-book-o:before { content: ""; } -/* line 741, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 741, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-vcard:before, .fa-address-card:before { content: ""; } -/* line 743, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 743, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-vcard-o:before, .fa-address-card-o:before { content: ""; } -/* line 745, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 745, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-user-circle:before { content: ""; } -/* line 746, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 746, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-user-circle-o:before { content: ""; } -/* line 747, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 747, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-user-o:before { content: ""; } -/* line 748, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 748, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-id-badge:before { content: ""; } -/* line 749, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 749, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-drivers-license:before, .fa-id-card:before { content: ""; } -/* line 751, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 751, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-drivers-license-o:before, .fa-id-card-o:before { content: ""; } -/* line 753, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 753, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-quora:before { content: ""; } -/* line 754, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 754, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-free-code-camp:before { content: ""; } -/* line 755, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 755, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-telegram:before { content: ""; } -/* line 756, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 756, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-thermometer-4:before, .fa-thermometer:before, .fa-thermometer-full:before { content: ""; } -/* line 759, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 759, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-thermometer-3:before, .fa-thermometer-three-quarters:before { content: ""; } -/* line 761, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 761, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-thermometer-2:before, .fa-thermometer-half:before { content: ""; } -/* line 763, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 763, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-thermometer-1:before, .fa-thermometer-quarter:before { content: ""; } -/* line 765, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 765, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-thermometer-0:before, .fa-thermometer-empty:before { content: ""; } -/* line 767, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 767, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-shower:before { content: ""; } -/* line 768, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 768, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bathtub:before, .fa-s15:before, .fa-bath:before { content: ""; } -/* line 771, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 771, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-podcast:before { content: ""; } -/* line 772, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 772, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-window-maximize:before { content: ""; } -/* line 773, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 773, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-window-minimize:before { content: ""; } -/* line 774, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 774, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-window-restore:before { content: ""; } -/* line 775, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 775, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-times-rectangle:before, .fa-window-close:before { content: ""; } -/* line 777, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 777, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-times-rectangle-o:before, .fa-window-close-o:before { content: ""; } -/* line 779, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 779, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bandcamp:before { content: ""; } -/* line 780, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 780, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-grav:before { content: ""; } -/* line 781, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 781, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-etsy:before { content: ""; } -/* line 782, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 782, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-imdb:before { content: ""; } -/* line 783, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 783, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ravelry:before { content: ""; } -/* line 784, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 784, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-eercast:before { content: ""; } -/* line 785, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 785, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-microchip:before { content: ""; } -/* line 786, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 786, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-snowflake-o:before { content: ""; } -/* line 787, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 787, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-superpowers:before { content: ""; } -/* line 788, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 788, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-wpexplorer:before { content: ""; } -/* line 789, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 789, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-meetup:before { content: ""; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_screen-reader.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_screen-reader.scss */ .sr-only { position: absolute; width: 1px; @@ -15720,7 +15720,7 @@ a.text-dark:hover, a.text-dark:focus { border: 0; } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_mixins.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_mixins.scss */ .sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; @@ -20566,9 +20566,9 @@ span.CodeMirror-selectedtext { } /*! prefixes.scss v0.1.0 | Author: Pandao | https://github.com/pandao/prefixes.scss | MIT license | Copyright (c) 2015 */ -/*! - * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) +/*! + * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */ @font-face { font-family: FontAwesome; @@ -24946,6 +24946,78 @@ input.form-control { margin-right: 5px; } +/* line 4, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item > .drag { + cursor: move; + background: #fff; + box-shadow: 1px 2px 5px 3px #f0f0f0; +} + +/* line 10, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item-no { + font-size: 28px; + text-align: center; +} + +/* line 15, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item-img { + cursor: pointer; + width: 100%; + height: 60px; +} + +/* line 20, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item-img > img { + display: block; + width: 100%; + height: 60px; + background: #F5F5F5; +} + +/* line 28, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item .not_active { + background: #F0F0F0; +} + +/* line 32, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item .delete-btn { + font-size: 20px; + color: red; + cursor: pointer; +} + +/* line 38, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item .save-url-btn { + cursor: pointer; +} + +/* line 42, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item .operate-box { + display: -webkit-box; + display: flex; + -webkit-box-pack: justify; + justify-content: space-between; + -webkit-box-align: center; + align-items: center; +} + +/* line 48, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item .online-check-box { + font-size: 20px; +} + +/* line 52, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item .name-input { + -webkit-box-flex: 1; + flex: 1; +} + +/* line 55, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item .link-input { + -webkit-box-flex: 3; + flex: 3; +} + /* line 1, app/assets/stylesheets/admins/common.scss */ .admin-body-container { padding: 20px; diff --git a/public/assets/admin-83f62f1d834d6b6790a87ca6927274c3729fe20d37db68a54bb547269fa72dc7.css.gz b/public/assets/admin-83f62f1d834d6b6790a87ca6927274c3729fe20d37db68a54bb547269fa72dc7.css.gz new file mode 100644 index 0000000000000000000000000000000000000000..da1a9e3f3d36a58ca622c91e38896ad2cc573bb1 GIT binary patch literal 73199 zcmd42QHG zM&d_70WB3K=z@S=c3a0CjwMjM`}%>m#t6E5OIh)WmjC9h>s}ky?0XJ-qH_q~bVg5> zNCEuCOEYpUAGv+IVo#d&5h0UQMPqKPFu$aXC@%I8HxV&8!e{HG;3p4xy6*kC*fpPY z&+~tM{P2J4fA4-OJ*?-z@N{YDd2_bE*1&fYb>!Ohdv{4gy*N4Xao+NO56}BqJv?KS zzi|sW-iT!u{?XL@X_gMZc{}v2=RPstA4IfNBzcQ@!VjCq;eR}JNy3?twAsc#AZh)+ z$Nv%Si%0MLaDBTN9(?~S2L~*2ao6x)6*0e8$oqfC`G2+ceqZe}_~aq!siormnryE> zd60klxwrQYp8fu$?A7O=(FwMA4I}B{H+?a0?U?s_s3I9G1w@y*e!I}&H6C?I-(Fmg z{*a5)pPo*?Mf=~O_cngt1({BpU0m|DH~X1y?t689>F7xzI(oT_U|_(G?sO~a8Lg$`Bhz&A>BDHn z9!02(a`#NcnPYXw3YjjABAK`)^={N!jpDg97?K_w=_0-#>8KzrI9P9vJ@BmP81p zPL0v#Ea>8{vuS5%8wWUG+bCT>yu`ts2^aC~=x#Qfhn5_<{0tZI_BZ~5hJIM>70K#N zx%t8M1&nyTv>sijYy5oS-`G|C@YKW&BkO+XOFq+5F36gEv9`<4fl< z@$(;%Uwe*QLV;?)eRn8#ZiGjV(1rze7SNeU5*8%9k&W<4CN>>Q#HQvdWqfaxyY5#=Nny}gRG<8AXU`)?w*W$Aty0YjLhW{*^M6|$x^~#QRnW!TanK6Gz5t`PQ z3Ez0f}Oa4u5Zf54WXkZhrilaoy_E-KQ@3 z6q8^>j%hH_-m|{2ctC4>Lt;PBYUliu0qZVg_N^phjY>q4Mt@^A)2VOYIy(K;esq1; z)3-?~RwNBoWX9Lk{-E0wom|GVgdv zDSPFW^P^NOn)>Ob+#OLwB$Qwk84%r|=~_8dyflUh9+Z;RTm8omj``HRue1uYAUnC= z_+d6bjQ!;e>*AemT&@JoV#|5jY`k`MMt^a!3T_&46h^LJ-dSD=Cxb~M;($Zkkd>0B zsfr~O-5)!YZC4!2Tzzp60n2mah$BgiVf6AO%=__&qf-fy$6d*y8pZ&2(5LEq>o5w5 z*al*O@|c*eqpj|)s$g2+$Xi(mRhXrs+TI(N+cDPZJGrMA?(4hP8 zOndh;zzzq|oyS_SFQf_=bTirRGI|QO9<}_SlT=SCo`Ci*T;c3Xy1`3I5HIem|9c)TLKU}--Q)|LT))wk z?{!2=+2?q1{rJ_shR>^M8u_L^zgle;>0B+oq{zmt@EDF%A=;eYABo{KZ0T=>*0oLu z^Hsg`0d|LVDbNcU=u2qwQ?^meua^rhu~5E^yjPXANfWX&5(wi<9d|}rEHSW|qe9*e z`dF5|?_}u-D&bXpqxSw}g^~}dHlv(xzL-NA!j+V(j>zRT1Et=NYLM2$a|GZ_96o6U zfOk;;ol2X*U39-9@4=_fk( zr5!6BXZ80#N=Z*~Qw{^~EeN}q*`+Q^!!^?DOYuTj!0xOiFlO^y;{Y2UFN(o?E=qoq zkW;zew^cXD1dvKi4-|4YvsGb_WUi-ZD)GB+au`I;D|!fXrk7|NJeqIwnz5oi$@ago z%qK1dy*Rcp*jeSqHpw*`1aIO>3o8Jh0U?;+mx}W1!BD+W_;NZ|({Y|P{G2HERG(Pd zh$Y*+?j=ASk+?aGl&kWa#yyZc#iz2FX#fImfeKD<0Yuj`ghPFscPM_g98$o3z!}#_>BrMP9GI zM%u9hm|rSgRdZhHvl!BG(p%GW%UfF;zwTN$-2R4vY7slBAn`9C34Mx4!(JmZxs}`M z%Qu~eByHY8$R82JY4nXpW$8A&b@1s~abmb?&q*W#Xlz9RLy8G?Yp7?rouPSytL7BR z5lqi?T1M#H5sBt!?FJvRUCYVstP_(B){>J#3)=6CW>@_J9oa6v877R^VKj%psI+{= zj`fwxf7E_aX_bM+q|o>;7?4X}Ckn&46%(+l?ax1+T^3D7w}TmuV(5&aig_c)`sE*~ zt_yNhV)p_0pUZ2B@f?qKw%~D57~gn57xNO7{K3C|xgeppb+6tj*%vbz!YMQc`PM`& zTbxZ@W7|5o=lm|-)`)Qz8nIejtMf8tR3-f|bJtB12x z&v89q%4h{%2<-gTWD?%>jy6(Ks2fnG;$et=B(L5e%&=7B`t!sOtz{vvb-ZynV*Z=$ zGRb@l^_u@>sPMZOjS~#%Pi>81Yu`OlM>f;wvvf+%X9}d$+Rt<1oMFn1C1K~AVXXbs zT@Ggt>*&kL>q)j9gK?6gOduan=WpG=JbaWbP|Pg`H}@GV=0fPnB5s`d9Pz1(fhrAK z#)3|nLpLV8=PW8EaPK@SK6p#H2xUs-Ab1pMVG|h$6{4l(I;V`#iR@Ss4>S=*gc+Ef z`;5HW*DgwIwX~1X%qXyg#k}Y<52azbjpY42ZNL4%mrkSO{CPinK;E6rCOYxH(`aiJ zLWxh$&k?pO#!^=zrUbJ*D*4Ujb2rjd_!8OUaUH@{$>&0JZ^X@0k_GjKtJgYekjCEVweLMr{{A=4LYrAxM1(Z&e zP9~S@d&%M7qvh8-QVG`SVWxv*Q++)wZ->O8yJKS8_yO}=;)3r!=AW+1fgn<-dE7Po z4PJk*IWyVPe1RzLnem%P4;GyKN}y& zMtMhN#hIRiW2&D&y@I6|cNqqmStm}{UN>7rmA5_M9#yKJz|B%Kpc)Pr@3F=iH~hAB}*L&F;sJG`|-nfF4~(n&FGndbbWT zzadI(#IAD(ewCmw1~lN=5f<0$%#FVLx@5N-t|Kk#+H|d3$BkZnNPca|`rsw|8qyjt zCkoPWSrdZL?b4a1_p)%K2eCaV`oeUnN7tD~eL!w=z(dF9jaJhFq6S-WFTrWXsf+e)Z5Za>487f$1bxD)DCUHinc_CM>j)bsqY~Jdd zF~H4PWM*E3WRE(`GOa1W-c#m_Td75Sa-};Ky+T*8`Kv{DFR@OewCuJ%(!EOIx}z6e za#PMWa;Ts)!~2Q2dAX�?qD@V>e^eBk&WfL+4`@Z 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 im)FO456~eiua1$7WPTXBR|zPU*g>eW~0?- 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 V5)W0mM*sF-{C`fP6=JK}3;^UW6^j4> literal 0 HcmV?d00001 diff --git a/public/assets/admin-432c4eac09b036c57ff1e88d902b8aa7df81164e4b419bac557cf1366c1d3ad9.js b/public/assets/admin-978e5ce607f77c26814a174f480da79ac246c2201868ef84654aa03bb6727b5a.js similarity index 99% rename from public/assets/admin-432c4eac09b036c57ff1e88d902b8aa7df81164e4b419bac557cf1366c1d3ad9.js rename to public/assets/admin-978e5ce607f77c26814a174f480da79ac246c2201868ef84654aa03bb6727b5a.js index 0e5b00aea..49e1025c7 100644 --- a/public/assets/admin-432c4eac09b036c57ff1e88d902b8aa7df81164e4b419bac557cf1366c1d3ad9.js +++ b/public/assets/admin-978e5ce607f77c26814a174f480da79ac246c2201868ef84654aa03bb6727b5a.js @@ -133846,6 +133846,132 @@ $(document).on('turbolinks:load', function(){ $('.batch-all-check-box').prop('checked', allChecked); }) }); +$(document).on('turbolinks:load', function() { + if ($('body.admins-carousels-index-page').length > 0) { + // ------------ 保存链接 ----------- + $('.carousels-card').on('click', '.save-data-btn', function(){ + var $link = $(this); + var id = $link.data('id'); + var link = $('.custom-carousel-item-' + id).find('.link-input').val(); + var name = $('.custom-carousel-item-' + id).find('.name-input').val(); + if(!name || name.length == 0){ + $.notify({ message: '名称不能为空' },{ type: 'danger' }); + return; + } + $link.attr('disabled', true); + + $.ajax({ + url: '/admins/carousels/' + id, + method: 'PATCH', + dataType: 'json', + data: { link: link, name: name }, + success: function(data){ + $.notify({ message: '操作成功' }); + }, + error: ajaxErrorNotifyHandler, + complete: function(){ + $link.removeAttr('disabled'); + } + }) + }); + // -------------- 是否在首页展示 -------------- + $('.carousels-card').on('change', '.online-check-box', function(){ + var $checkbox = $(this); + var id = $checkbox.data('id'); + var checked = $checkbox.is(':checked'); + $checkbox.attr('disabled', true); + + $.ajax({ + url: '/admins/carousels/' + id, + method: 'PATCH', + dataType: 'json', + data: { status: checked }, + success: function(data){ + $.notify({ message: '保存成功' }); + var box = $('.custom-carousel-item-' + id).find('.drag'); + if(checked){ + box.removeClass('not_active'); + }else{ + box.addClass('not_active'); + } + }, + error: ajaxErrorNotifyHandler, + complete: function(){ + $checkbox.removeAttr('disabled'); + } + }) + }); + + // ------------ 拖拽 ------------- + var onDropFunc = function(el, _target, _source, sibling){ + var moveId = $(el).data('id'); + var insertId = $(sibling).data('id') || ''; + + $.ajax({ + url: '/admins/carousels/drag', + method: 'POST', + dataType: 'json', + data: { move_id: moveId, after_id: insertId }, + success: function(data){ + $('#carousels-container .custom-carousel-item-no').each(function(index, ele){ + $(ele).html(index + 1); + }) + }, + error: function(res){ + var data = res.responseJSON; + $.notify({message: '移动失败,原因:' + data.message}, {type: 'danger'}); + } + }) + }; + var ele1 = document.getElementById('carousels-container'); + dragula([ele1], { mirrorContainer: ele1 }).on('drop', onDropFunc); + + + // ----------- 新增 -------------- + var $createModal = $('.modal.admin-add-carousel-modal'); + var $createForm = $createModal.find('form.admin-add-carousel-form'); + + $createForm.validate({ + errorElement: 'span', + errorClass: 'danger text-danger', + rules: { + "portal_image[image]": { + required: true + }, + "portal_image[name]": { + required: true + }, + } + }); + + $createModal.on('show.bs.modal', function(event){ + resetFileInputFunc($createModal.find('.img-file-input')); + $createModal.find('.file-names').html('选择文件'); + }); + + $createModal.on('click', '.submit-btn', function() { + $createForm.find('.error').html(''); + + if ($createForm.valid()) { + $createForm.submit(); + } else { + $createForm.find('.error').html('请选择图片'); + } + }); + $createModal.on('change', '.img-file-input', function(){ + var file = $(this)[0].files[0]; + $createModal.find('.file-names').html(file ? file.name : '请选择文件'); + }) + + // -------------- 重新上传图片 -------------- + //replace_image_url + $('.modal.admin-upload-file-modal').on('upload:success', function(e, data){ + var $carouselItem = $('.custom-carousel-item-' + data.source_id); + $carouselItem.find('.custom-carousel-item-img img').attr('src', data.url); + }) + } +}) +; $(document).on('turbolinks:load', function() { var $refuseModal = $('.admin-common-refuse-modal'); if ($refuseModal.length > 0) { diff --git a/public/assets/admin-432c4eac09b036c57ff1e88d902b8aa7df81164e4b419bac557cf1366c1d3ad9.js.gz b/public/assets/admin-978e5ce607f77c26814a174f480da79ac246c2201868ef84654aa03bb6727b5a.js.gz similarity index 98% rename from public/assets/admin-432c4eac09b036c57ff1e88d902b8aa7df81164e4b419bac557cf1366c1d3ad9.js.gz rename to public/assets/admin-978e5ce607f77c26814a174f480da79ac246c2201868ef84654aa03bb6727b5a.js.gz index 95f6688ef2316ed1965873b8afbd614bd80a04c2..68781bc40c801486cddf16c5b804cfe4c13e74be 100644 GIT binary patch delta 10602 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 E05hJN-~a#s delta 10268 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 iOrTk#HLeFHoYxK6nE@&5s30h-N!;X(kg80&uk diff --git a/public/assets/application-3aaf730b0754ed5e84bd381bc42b3bc84fcdba125481dbe380a6533c05f22f3c.css b/public/assets/application-3aaf730b0754ed5e84bd381bc42b3bc84fcdba125481dbe380a6533c05f22f3c.css new file mode 100644 index 000000000..6072f27a5 --- /dev/null +++ b/public/assets/application-3aaf730b0754ed5e84bd381bc42b3bc84fcdba125481dbe380a6533c05f22f3c.css @@ -0,0 +1,57311 @@ +@charset "UTF-8"; +/*! + * Bootstrap v4.3.1 (https://getbootstrap.com/) + * Copyright 2011-2019 The Bootstrap Authors + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_root.scss */ +:root { + --blue: #007bff; + --indigo: #6610f2; + --purple: #6f42c1; + --pink: #e83e8c; + --red: #dc3545; + --orange: #fd7e14; + --yellow: #ffc107; + --green: #28a745; + --teal: #20c997; + --cyan: #17a2b8; + --white: #fff; + --gray: #6c757d; + --gray-dark: #343a40; + --primary: #007bff; + --secondary: #6c757d; + --success: #28a745; + --info: #17a2b8; + --warning: #ffc107; + --danger: #dc3545; + --light: #f8f9fa; + --dark: #343a40; + --breakpoint-xs: 0; + --breakpoint-sm: 576px; + --breakpoint-md: 768px; + --breakpoint-lg: 992px; + --breakpoint-xl: 1200px; + --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +*, +*::before, +*::after { + box-sizing: border-box; +} + +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +html { + font-family: sans-serif; + line-height: 1.15; + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: transparent; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { + display: block; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + text-align: left; + background-color: #fff; +} + +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +[tabindex="-1"]:focus { + outline: 0 !important; +} + +/* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +hr { + box-sizing: content-box; + height: 0; + overflow: visible; +} + +/* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +h1, h2, h3, h4, h5, h6 { + margin-top: 0; + margin-bottom: 0.5rem; +} + +/* line 97, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +p { + margin-top: 0; + margin-bottom: 1rem; +} + +/* line 110, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +abbr[title], +abbr[data-original-title] { + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + cursor: help; + border-bottom: 0; + -webkit-text-decoration-skip-ink: none; + text-decoration-skip-ink: none; +} + +/* line 119, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; +} + +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; +} + +/* line 132, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; +} + +/* line 139, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +dt { + font-weight: 700; +} + +/* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +dd { + margin-bottom: .5rem; + margin-left: 0; +} + +/* line 148, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +blockquote { + margin: 0 0 1rem; +} + +/* line 152, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +b, +strong { + font-weight: bolder; +} + +/* line 157, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +small { + font-size: 80%; +} + +/* line 166, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +/* line 174, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +sub { + bottom: -.25em; +} + +/* line 175, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +sup { + top: -.5em; +} + +/* line 182, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +a { + color: #007bff; + text-decoration: none; + background-color: transparent; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a:hover { + color: #0056b3; + text-decoration: underline; +} + +/* line 199, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +a:not([href]):not([tabindex]) { + color: inherit; + text-decoration: none; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus { + color: inherit; + text-decoration: none; +} + +/* line 208, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +a:not([href]):not([tabindex]):focus { + outline: 0; +} + +/* line 218, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +pre, +code, +kbd, +samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + font-size: 1em; +} + +/* line 226, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +pre { + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; +} + +/* line 240, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +figure { + margin: 0 0 1rem; +} + +/* line 250, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +img { + vertical-align: middle; + border-style: none; +} + +/* line 255, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +svg { + overflow: hidden; + vertical-align: middle; +} + +/* line 267, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +table { + border-collapse: collapse; +} + +/* line 271, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +caption { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + color: #6c757d; + text-align: left; + caption-side: bottom; +} + +/* line 279, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +th { + text-align: inherit; +} + +/* line 290, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +label { + display: inline-block; + margin-bottom: 0.5rem; +} + +/* line 299, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +button { + border-radius: 0; +} + +/* line 308, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +button:focus { + outline: 1px dotted; + outline: 5px auto -webkit-focus-ring-color; +} + +/* line 313, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; +} + +/* line 324, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +button, +input { + overflow: visible; +} + +/* line 329, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +button, +select { + text-transform: none; +} + +/* line 337, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +select { + word-wrap: normal; +} + +/* line 345, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +/* line 358, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +button:not(:disabled), +[type="button"]:not(:disabled), +[type="reset"]:not(:disabled), +[type="submit"]:not(:disabled) { + cursor: pointer; +} + +/* line 365, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + padding: 0; + border-style: none; +} + +/* line 373, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +input[type="radio"], +input[type="checkbox"] { + box-sizing: border-box; + padding: 0; +} + +/* line 380, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +input[type="date"], +input[type="time"], +input[type="datetime-local"], +input[type="month"] { + -webkit-appearance: listbox; +} + +/* line 392, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +textarea { + overflow: auto; + resize: vertical; +} + +/* line 398, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} + +/* line 413, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +legend { + display: block; + width: 100%; + max-width: 100%; + padding: 0; + margin-bottom: .5rem; + font-size: 1.5rem; + line-height: inherit; + color: inherit; + white-space: normal; +} + +/* line 425, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +progress { + vertical-align: baseline; +} + +/* line 430, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/* line 435, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +[type="search"] { + outline-offset: -2px; + -webkit-appearance: none; +} + +/* line 448, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/* line 457, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; +} + +/* line 466, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +output { + display: inline-block; +} + +/* line 470, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +summary { + display: list-item; + cursor: pointer; +} + +/* line 475, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +template { + display: none; +} + +/* line 481, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +[hidden] { + display: none !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +h1, h2, h3, h4, h5, h6, +.h1, .h2, .h3, .h4, .h5, .h6 { + margin-bottom: 0.5rem; + font-weight: 500; + line-height: 1.2; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +h1, .h1 { + font-size: 2.5rem; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +h2, .h2 { + font-size: 2rem; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +h3, .h3 { + font-size: 1.75rem; +} + +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +h4, .h4 { + font-size: 1.5rem; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +h5, .h5 { + font-size: 1.25rem; +} + +/* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +h6, .h6 { + font-size: 1rem; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.lead { + font-size: 1.25rem; + font-weight: 300; +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.display-1 { + font-size: 6rem; + font-weight: 300; + line-height: 1.2; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.display-2 { + font-size: 5.5rem; + font-weight: 300; + line-height: 1.2; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.display-3 { + font-size: 4.5rem; + font-weight: 300; + line-height: 1.2; +} + +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.display-4 { + font-size: 3.5rem; + font-weight: 300; + line-height: 1.2; +} + +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +hr { + margin-top: 1rem; + margin-bottom: 1rem; + border: 0; + border-top: 1px solid rgba(0, 0, 0, 0.1); +} + +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +small, +.small { + font-size: 80%; + font-weight: 400; +} + +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +mark, +.mark { + padding: 0.2em; + background-color: #fcf8e3; +} + +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.list-unstyled { + padding-left: 0; + list-style: none; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.list-inline { + padding-left: 0; + list-style: none; +} + +/* line 92, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.list-inline-item { + display: inline-block; +} + +/* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.list-inline-item:not(:last-child) { + margin-right: 0.5rem; +} + +/* line 106, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.initialism { + font-size: 90%; + text-transform: uppercase; +} + +/* line 112, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.blockquote { + margin-bottom: 1rem; + font-size: 1.25rem; +} + +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.blockquote-footer { + display: block; + font-size: 80%; + color: #6c757d; +} + +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.blockquote-footer::before { + content: "\2014\00A0"; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ +.img-fluid { + max-width: 100%; + height: auto; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ +.img-thumbnail { + padding: 0.25rem; + background-color: #fff; + border: 1px solid #dee2e6; + border-radius: 0.25rem; + max-width: 100%; + height: auto; +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ +.figure { + display: inline-block; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ +.figure-caption { + font-size: 90%; + color: #6c757d; +} + +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +code { + font-size: 87.5%; + color: #e83e8c; + word-break: break-word; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +a > code { + color: inherit; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +kbd { + padding: 0.2rem 0.4rem; + font-size: 87.5%; + color: #fff; + background-color: #212529; + border-radius: 0.2rem; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700; +} + +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +pre { + display: block; + font-size: 87.5%; + color: #212529; +} + +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +pre code { + font-size: inherit; + color: inherit; + word-break: normal; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +.container { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} + +@media (min-width: 576px) { + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ + .container { + max-width: 540px; + } +} + +@media (min-width: 768px) { + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ + .container { + max-width: 720px; + } +} + +@media (min-width: 992px) { + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ + .container { + max-width: 960px; + } +} + +@media (min-width: 1200px) { + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ + .container { + max-width: 1140px; + } +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +.container-fluid { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} + +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +.row { + display: -webkit-box; + display: flex; + flex-wrap: wrap; + margin-right: -15px; + margin-left: -15px; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +.no-gutters { + margin-right: 0; + margin-left: 0; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +.no-gutters > .col, +.no-gutters > [class*="col-"] { + padding-right: 0; + padding-left: 0; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, +.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, +.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, +.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, +.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, +.col-xl-auto { + position: relative; + width: 100%; + padding-right: 15px; + padding-left: 15px; +} + +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col { + flex-basis: 0; + -webkit-box-flex: 1; + flex-grow: 1; + max-width: 100%; +} + +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-auto { + -webkit-box-flex: 0; + flex: 0 0 auto; + width: auto; + max-width: 100%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-1 { + -webkit-box-flex: 0; + flex: 0 0 8.33333%; + max-width: 8.33333%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-2 { + -webkit-box-flex: 0; + flex: 0 0 16.66667%; + max-width: 16.66667%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-3 { + -webkit-box-flex: 0; + flex: 0 0 25%; + max-width: 25%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-4 { + -webkit-box-flex: 0; + flex: 0 0 33.33333%; + max-width: 33.33333%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-5 { + -webkit-box-flex: 0; + flex: 0 0 41.66667%; + max-width: 41.66667%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-6 { + -webkit-box-flex: 0; + flex: 0 0 50%; + max-width: 50%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-7 { + -webkit-box-flex: 0; + flex: 0 0 58.33333%; + max-width: 58.33333%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-8 { + -webkit-box-flex: 0; + flex: 0 0 66.66667%; + max-width: 66.66667%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-9 { + -webkit-box-flex: 0; + flex: 0 0 75%; + max-width: 75%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-10 { + -webkit-box-flex: 0; + flex: 0 0 83.33333%; + max-width: 83.33333%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-11 { + -webkit-box-flex: 0; + flex: 0 0 91.66667%; + max-width: 91.66667%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-12 { + -webkit-box-flex: 0; + flex: 0 0 100%; + max-width: 100%; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-first { + -webkit-box-ordinal-group: 0; + order: -1; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-last { + -webkit-box-ordinal-group: 14; + order: 13; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-0 { + -webkit-box-ordinal-group: 1; + order: 0; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-1 { + -webkit-box-ordinal-group: 2; + order: 1; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-2 { + -webkit-box-ordinal-group: 3; + order: 2; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-3 { + -webkit-box-ordinal-group: 4; + order: 3; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-4 { + -webkit-box-ordinal-group: 5; + order: 4; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-5 { + -webkit-box-ordinal-group: 6; + order: 5; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-6 { + -webkit-box-ordinal-group: 7; + order: 6; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-7 { + -webkit-box-ordinal-group: 8; + order: 7; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-8 { + -webkit-box-ordinal-group: 9; + order: 8; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-9 { + -webkit-box-ordinal-group: 10; + order: 9; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-10 { + -webkit-box-ordinal-group: 11; + order: 10; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-11 { + -webkit-box-ordinal-group: 12; + order: 11; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-12 { + -webkit-box-ordinal-group: 13; + order: 12; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-1 { + margin-left: 8.33333%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-2 { + margin-left: 16.66667%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-3 { + margin-left: 25%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-4 { + margin-left: 33.33333%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-5 { + margin-left: 41.66667%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-6 { + margin-left: 50%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-7 { + margin-left: 58.33333%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-8 { + margin-left: 66.66667%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-9 { + margin-left: 75%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-10 { + margin-left: 83.33333%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-11 { + margin-left: 91.66667%; +} + +@media (min-width: 576px) { + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm { + flex-basis: 0; + -webkit-box-flex: 1; + flex-grow: 1; + max-width: 100%; + } + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-auto { + -webkit-box-flex: 0; + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-1 { + -webkit-box-flex: 0; + flex: 0 0 8.33333%; + max-width: 8.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-2 { + -webkit-box-flex: 0; + flex: 0 0 16.66667%; + max-width: 16.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-3 { + -webkit-box-flex: 0; + flex: 0 0 25%; + max-width: 25%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-4 { + -webkit-box-flex: 0; + flex: 0 0 33.33333%; + max-width: 33.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-5 { + -webkit-box-flex: 0; + flex: 0 0 41.66667%; + max-width: 41.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-6 { + -webkit-box-flex: 0; + flex: 0 0 50%; + max-width: 50%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-7 { + -webkit-box-flex: 0; + flex: 0 0 58.33333%; + max-width: 58.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-8 { + -webkit-box-flex: 0; + flex: 0 0 66.66667%; + max-width: 66.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-9 { + -webkit-box-flex: 0; + flex: 0 0 75%; + max-width: 75%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-10 { + -webkit-box-flex: 0; + flex: 0 0 83.33333%; + max-width: 83.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-11 { + -webkit-box-flex: 0; + flex: 0 0 91.66667%; + max-width: 91.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-12 { + -webkit-box-flex: 0; + flex: 0 0 100%; + max-width: 100%; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-first { + -webkit-box-ordinal-group: 0; + order: -1; + } + /* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-last { + -webkit-box-ordinal-group: 14; + order: 13; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-0 { + -webkit-box-ordinal-group: 1; + order: 0; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-1 { + -webkit-box-ordinal-group: 2; + order: 1; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-2 { + -webkit-box-ordinal-group: 3; + order: 2; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-3 { + -webkit-box-ordinal-group: 4; + order: 3; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-4 { + -webkit-box-ordinal-group: 5; + order: 4; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-5 { + -webkit-box-ordinal-group: 6; + order: 5; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-6 { + -webkit-box-ordinal-group: 7; + order: 6; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-7 { + -webkit-box-ordinal-group: 8; + order: 7; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-8 { + -webkit-box-ordinal-group: 9; + order: 8; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-9 { + -webkit-box-ordinal-group: 10; + order: 9; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-10 { + -webkit-box-ordinal-group: 11; + order: 10; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-11 { + -webkit-box-ordinal-group: 12; + order: 11; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-12 { + -webkit-box-ordinal-group: 13; + order: 12; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-0 { + margin-left: 0; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-1 { + margin-left: 8.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-2 { + margin-left: 16.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-3 { + margin-left: 25%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-4 { + margin-left: 33.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-5 { + margin-left: 41.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-6 { + margin-left: 50%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-7 { + margin-left: 58.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-8 { + margin-left: 66.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-9 { + margin-left: 75%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-10 { + margin-left: 83.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-11 { + margin-left: 91.66667%; + } +} + +@media (min-width: 768px) { + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md { + flex-basis: 0; + -webkit-box-flex: 1; + flex-grow: 1; + max-width: 100%; + } + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-auto { + -webkit-box-flex: 0; + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-1 { + -webkit-box-flex: 0; + flex: 0 0 8.33333%; + max-width: 8.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-2 { + -webkit-box-flex: 0; + flex: 0 0 16.66667%; + max-width: 16.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-3 { + -webkit-box-flex: 0; + flex: 0 0 25%; + max-width: 25%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-4 { + -webkit-box-flex: 0; + flex: 0 0 33.33333%; + max-width: 33.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-5 { + -webkit-box-flex: 0; + flex: 0 0 41.66667%; + max-width: 41.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-6 { + -webkit-box-flex: 0; + flex: 0 0 50%; + max-width: 50%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-7 { + -webkit-box-flex: 0; + flex: 0 0 58.33333%; + max-width: 58.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-8 { + -webkit-box-flex: 0; + flex: 0 0 66.66667%; + max-width: 66.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-9 { + -webkit-box-flex: 0; + flex: 0 0 75%; + max-width: 75%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-10 { + -webkit-box-flex: 0; + flex: 0 0 83.33333%; + max-width: 83.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-11 { + -webkit-box-flex: 0; + flex: 0 0 91.66667%; + max-width: 91.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-12 { + -webkit-box-flex: 0; + flex: 0 0 100%; + max-width: 100%; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-first { + -webkit-box-ordinal-group: 0; + order: -1; + } + /* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-last { + -webkit-box-ordinal-group: 14; + order: 13; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-0 { + -webkit-box-ordinal-group: 1; + order: 0; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-1 { + -webkit-box-ordinal-group: 2; + order: 1; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-2 { + -webkit-box-ordinal-group: 3; + order: 2; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-3 { + -webkit-box-ordinal-group: 4; + order: 3; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-4 { + -webkit-box-ordinal-group: 5; + order: 4; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-5 { + -webkit-box-ordinal-group: 6; + order: 5; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-6 { + -webkit-box-ordinal-group: 7; + order: 6; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-7 { + -webkit-box-ordinal-group: 8; + order: 7; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-8 { + -webkit-box-ordinal-group: 9; + order: 8; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-9 { + -webkit-box-ordinal-group: 10; + order: 9; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-10 { + -webkit-box-ordinal-group: 11; + order: 10; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-11 { + -webkit-box-ordinal-group: 12; + order: 11; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-12 { + -webkit-box-ordinal-group: 13; + order: 12; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-0 { + margin-left: 0; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-1 { + margin-left: 8.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-2 { + margin-left: 16.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-3 { + margin-left: 25%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-4 { + margin-left: 33.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-5 { + margin-left: 41.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-6 { + margin-left: 50%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-7 { + margin-left: 58.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-8 { + margin-left: 66.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-9 { + margin-left: 75%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-10 { + margin-left: 83.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-11 { + margin-left: 91.66667%; + } +} + +@media (min-width: 992px) { + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg { + flex-basis: 0; + -webkit-box-flex: 1; + flex-grow: 1; + max-width: 100%; + } + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-auto { + -webkit-box-flex: 0; + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-1 { + -webkit-box-flex: 0; + flex: 0 0 8.33333%; + max-width: 8.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-2 { + -webkit-box-flex: 0; + flex: 0 0 16.66667%; + max-width: 16.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-3 { + -webkit-box-flex: 0; + flex: 0 0 25%; + max-width: 25%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-4 { + -webkit-box-flex: 0; + flex: 0 0 33.33333%; + max-width: 33.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-5 { + -webkit-box-flex: 0; + flex: 0 0 41.66667%; + max-width: 41.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-6 { + -webkit-box-flex: 0; + flex: 0 0 50%; + max-width: 50%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-7 { + -webkit-box-flex: 0; + flex: 0 0 58.33333%; + max-width: 58.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-8 { + -webkit-box-flex: 0; + flex: 0 0 66.66667%; + max-width: 66.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-9 { + -webkit-box-flex: 0; + flex: 0 0 75%; + max-width: 75%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-10 { + -webkit-box-flex: 0; + flex: 0 0 83.33333%; + max-width: 83.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-11 { + -webkit-box-flex: 0; + flex: 0 0 91.66667%; + max-width: 91.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-12 { + -webkit-box-flex: 0; + flex: 0 0 100%; + max-width: 100%; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-first { + -webkit-box-ordinal-group: 0; + order: -1; + } + /* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-last { + -webkit-box-ordinal-group: 14; + order: 13; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-0 { + -webkit-box-ordinal-group: 1; + order: 0; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-1 { + -webkit-box-ordinal-group: 2; + order: 1; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-2 { + -webkit-box-ordinal-group: 3; + order: 2; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-3 { + -webkit-box-ordinal-group: 4; + order: 3; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-4 { + -webkit-box-ordinal-group: 5; + order: 4; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-5 { + -webkit-box-ordinal-group: 6; + order: 5; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-6 { + -webkit-box-ordinal-group: 7; + order: 6; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-7 { + -webkit-box-ordinal-group: 8; + order: 7; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-8 { + -webkit-box-ordinal-group: 9; + order: 8; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-9 { + -webkit-box-ordinal-group: 10; + order: 9; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-10 { + -webkit-box-ordinal-group: 11; + order: 10; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-11 { + -webkit-box-ordinal-group: 12; + order: 11; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-12 { + -webkit-box-ordinal-group: 13; + order: 12; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-0 { + margin-left: 0; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-1 { + margin-left: 8.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-2 { + margin-left: 16.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-3 { + margin-left: 25%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-4 { + margin-left: 33.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-5 { + margin-left: 41.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-6 { + margin-left: 50%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-7 { + margin-left: 58.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-8 { + margin-left: 66.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-9 { + margin-left: 75%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-10 { + margin-left: 83.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-11 { + margin-left: 91.66667%; + } +} + +@media (min-width: 1200px) { + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl { + flex-basis: 0; + -webkit-box-flex: 1; + flex-grow: 1; + max-width: 100%; + } + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-auto { + -webkit-box-flex: 0; + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-1 { + -webkit-box-flex: 0; + flex: 0 0 8.33333%; + max-width: 8.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-2 { + -webkit-box-flex: 0; + flex: 0 0 16.66667%; + max-width: 16.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-3 { + -webkit-box-flex: 0; + flex: 0 0 25%; + max-width: 25%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-4 { + -webkit-box-flex: 0; + flex: 0 0 33.33333%; + max-width: 33.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-5 { + -webkit-box-flex: 0; + flex: 0 0 41.66667%; + max-width: 41.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-6 { + -webkit-box-flex: 0; + flex: 0 0 50%; + max-width: 50%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-7 { + -webkit-box-flex: 0; + flex: 0 0 58.33333%; + max-width: 58.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-8 { + -webkit-box-flex: 0; + flex: 0 0 66.66667%; + max-width: 66.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-9 { + -webkit-box-flex: 0; + flex: 0 0 75%; + max-width: 75%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-10 { + -webkit-box-flex: 0; + flex: 0 0 83.33333%; + max-width: 83.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-11 { + -webkit-box-flex: 0; + flex: 0 0 91.66667%; + max-width: 91.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-12 { + -webkit-box-flex: 0; + flex: 0 0 100%; + max-width: 100%; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-first { + -webkit-box-ordinal-group: 0; + order: -1; + } + /* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-last { + -webkit-box-ordinal-group: 14; + order: 13; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-0 { + -webkit-box-ordinal-group: 1; + order: 0; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-1 { + -webkit-box-ordinal-group: 2; + order: 1; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-2 { + -webkit-box-ordinal-group: 3; + order: 2; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-3 { + -webkit-box-ordinal-group: 4; + order: 3; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-4 { + -webkit-box-ordinal-group: 5; + order: 4; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-5 { + -webkit-box-ordinal-group: 6; + order: 5; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-6 { + -webkit-box-ordinal-group: 7; + order: 6; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-7 { + -webkit-box-ordinal-group: 8; + order: 7; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-8 { + -webkit-box-ordinal-group: 9; + order: 8; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-9 { + -webkit-box-ordinal-group: 10; + order: 9; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-10 { + -webkit-box-ordinal-group: 11; + order: 10; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-11 { + -webkit-box-ordinal-group: 12; + order: 11; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-12 { + -webkit-box-ordinal-group: 13; + order: 12; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-0 { + margin-left: 0; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-1 { + margin-left: 8.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-2 { + margin-left: 16.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-3 { + margin-left: 25%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-4 { + margin-left: 33.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-5 { + margin-left: 41.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-6 { + margin-left: 50%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-7 { + margin-left: 58.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-8 { + margin-left: 66.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-9 { + margin-left: 75%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-10 { + margin-left: 83.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-11 { + margin-left: 91.66667%; + } +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table { + width: 100%; + margin-bottom: 1rem; + color: #212529; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table th, +.table td { + padding: 0.75rem; + vertical-align: top; + border-top: 1px solid #dee2e6; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table thead th { + vertical-align: bottom; + border-bottom: 2px solid #dee2e6; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table tbody + tbody { + border-top: 2px solid #dee2e6; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-sm th, +.table-sm td { + padding: 0.3rem; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-bordered { + border: 1px solid #dee2e6; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-bordered th, +.table-bordered td { + border: 1px solid #dee2e6; +} + +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-bordered thead th, +.table-bordered thead td { + border-bottom-width: 2px; +} + +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-borderless th, +.table-borderless td, +.table-borderless thead th, +.table-borderless tbody + tbody { + border: 0; +} + +/* line 75, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(0, 0, 0, 0.05); +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover tbody tr:hover { + color: #212529; + background-color: rgba(0, 0, 0, 0.075); +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-primary, +.table-primary > th, +.table-primary > td { + background-color: #b8daff; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-primary th, +.table-primary td, +.table-primary thead th, +.table-primary tbody + tbody { + border-color: #7abaff; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-primary:hover { + background-color: #9fcdff; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-primary:hover > td, +.table-hover .table-primary:hover > th { + background-color: #9fcdff; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-secondary, +.table-secondary > th, +.table-secondary > td { + background-color: #d6d8db; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-secondary th, +.table-secondary td, +.table-secondary thead th, +.table-secondary tbody + tbody { + border-color: #b3b7bb; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-secondary:hover { + background-color: #c8cbcf; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-secondary:hover > td, +.table-hover .table-secondary:hover > th { + background-color: #c8cbcf; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-success, +.table-success > th, +.table-success > td { + background-color: #c3e6cb; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-success th, +.table-success td, +.table-success thead th, +.table-success tbody + tbody { + border-color: #8fd19e; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-success:hover { + background-color: #b1dfbb; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-success:hover > td, +.table-hover .table-success:hover > th { + background-color: #b1dfbb; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-info, +.table-info > th, +.table-info > td { + background-color: #bee5eb; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-info th, +.table-info td, +.table-info thead th, +.table-info tbody + tbody { + border-color: #86cfda; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-info:hover { + background-color: #abdde5; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-info:hover > td, +.table-hover .table-info:hover > th { + background-color: #abdde5; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-warning, +.table-warning > th, +.table-warning > td { + background-color: #ffeeba; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-warning th, +.table-warning td, +.table-warning thead th, +.table-warning tbody + tbody { + border-color: #ffdf7e; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-warning:hover { + background-color: #ffe8a1; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-warning:hover > td, +.table-hover .table-warning:hover > th { + background-color: #ffe8a1; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-danger, +.table-danger > th, +.table-danger > td { + background-color: #f5c6cb; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-danger th, +.table-danger td, +.table-danger thead th, +.table-danger tbody + tbody { + border-color: #ed969e; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-danger:hover { + background-color: #f1b0b7; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-danger:hover > td, +.table-hover .table-danger:hover > th { + background-color: #f1b0b7; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-light, +.table-light > th, +.table-light > td { + background-color: #fdfdfe; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-light th, +.table-light td, +.table-light thead th, +.table-light tbody + tbody { + border-color: #fbfcfc; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-light:hover { + background-color: #ececf6; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-light:hover > td, +.table-hover .table-light:hover > th { + background-color: #ececf6; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-dark, +.table-dark > th, +.table-dark > td { + background-color: #c6c8ca; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-dark th, +.table-dark td, +.table-dark thead th, +.table-dark tbody + tbody { + border-color: #95999c; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-dark:hover { + background-color: #b9bbbe; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-dark:hover > td, +.table-hover .table-dark:hover > th { + background-color: #b9bbbe; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-active, +.table-active > th, +.table-active > td { + background-color: rgba(0, 0, 0, 0.075); +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-active:hover { + background-color: rgba(0, 0, 0, 0.075); +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-active:hover > td, +.table-hover .table-active:hover > th { + background-color: rgba(0, 0, 0, 0.075); +} + +/* line 114, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table .thead-dark th { + color: #fff; + background-color: #343a40; + border-color: #454d55; +} + +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table .thead-light th { + color: #495057; + background-color: #e9ecef; + border-color: #dee2e6; +} + +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-dark { + color: #fff; + background-color: #343a40; +} + +/* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-dark th, +.table-dark td, +.table-dark thead th { + border-color: #454d55; +} + +/* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-dark.table-bordered { + border: 0; +} + +/* line 145, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-dark.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(255, 255, 255, 0.05); +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-dark.table-hover tbody tr:hover { + color: #fff; + background-color: rgba(255, 255, 255, 0.075); +} + +@media (max-width: 575.98px) { + /* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-sm { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-sm > .table-bordered { + border: 0; + } +} + +@media (max-width: 767.98px) { + /* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-md { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-md > .table-bordered { + border: 0; + } +} + +@media (max-width: 991.98px) { + /* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-lg { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-lg > .table-bordered { + border: 0; + } +} + +@media (max-width: 1199.98px) { + /* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-xl { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-xl > .table-bordered { + border: 0; + } +} + +/* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-responsive { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; +} + +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-responsive > .table-bordered { + border: 0; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control { + display: block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-radius: 0.25rem; + -webkit-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-control { + -webkit-transition: none; + transition: none; + } +} + +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control::-ms-expand { + background-color: transparent; + border: 0; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.form-control:focus { + color: #495057; + background-color: #fff; + border-color: #80bdff; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control::-webkit-input-placeholder { + color: #6c757d; + opacity: 1; +} +.form-control::-moz-placeholder { + color: #6c757d; + opacity: 1; +} +.form-control:-ms-input-placeholder { + color: #6c757d; + opacity: 1; +} +.form-control::-ms-input-placeholder { + color: #6c757d; + opacity: 1; +} +.form-control::placeholder { + color: #6c757d; + opacity: 1; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control:disabled, .form-control[readonly] { + background-color: #e9ecef; + opacity: 1; +} + +/* line 57, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +select.form-control:focus::-ms-value { + color: #495057; + background-color: #fff; +} + +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control-file, +.form-control-range { + display: block; + width: 100%; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.col-form-label { + padding-top: calc(0.375rem + 1px); + padding-bottom: calc(0.375rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1.5; +} + +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.col-form-label-lg { + padding-top: calc(0.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); + font-size: 1.25rem; + line-height: 1.5; +} + +/* line 97, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.col-form-label-sm { + padding-top: calc(0.25rem + 1px); + padding-bottom: calc(0.25rem + 1px); + font-size: 0.875rem; + line-height: 1.5; +} + +/* line 110, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control-plaintext { + display: block; + width: 100%; + padding-top: 0.375rem; + padding-bottom: 0.375rem; + margin-bottom: 0; + line-height: 1.5; + color: #212529; + background-color: transparent; + border: solid transparent; + border-width: 1px 0; +} + +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { + padding-right: 0; + padding-left: 0; +} + +/* line 137, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control-sm { + height: calc(1.5em + 0.5rem + 2px); + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +/* line 145, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control-lg { + height: calc(1.5em + 1rem + 2px); + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +/* line 155, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +select.form-control[size], select.form-control[multiple] { + height: auto; +} + +/* line 161, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +textarea.form-control { + height: auto; +} + +/* line 170, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-group { + margin-bottom: 1rem; +} + +/* line 174, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-text { + display: block; + margin-top: 0.25rem; +} + +/* line 184, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-row { + display: -webkit-box; + display: flex; + flex-wrap: wrap; + margin-right: -5px; + margin-left: -5px; +} + +/* line 190, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-row > .col, +.form-row > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; +} + +/* line 202, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-check { + position: relative; + display: block; + padding-left: 1.25rem; +} + +/* line 208, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-check-input { + position: absolute; + margin-top: 0.3rem; + margin-left: -1.25rem; +} + +/* line 213, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-check-input:disabled ~ .form-check-label { + color: #6c757d; +} + +/* line 218, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-check-label { + margin-bottom: 0; +} + +/* line 222, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-check-inline { + display: -webkit-inline-box; + display: inline-flex; + -webkit-box-align: center; + align-items: center; + padding-left: 0; + margin-right: 0.75rem; +} + +/* line 229, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-check-inline .form-check-input { + position: static; + margin-top: 0; + margin-right: 0.3125rem; + margin-left: 0; +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #28a745; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(40, 167, 69, 0.9); + border-radius: 0.25rem; +} + +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control:valid, .form-control.is-valid { + border-color: #28a745; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center right calc(0.375em + 0.1875rem); + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control:valid:focus, .form-control.is-valid:focus { + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control:valid ~ .valid-feedback, +.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, +.form-control.is-valid ~ .valid-tooltip { + display: block; +} + +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated textarea.form-control:valid, textarea.form-control.is-valid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); +} + +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-select:valid, .custom-select.is-valid { + border-color: #28a745; + padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +/* line 99, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +/* line 104, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-select:valid ~ .valid-feedback, +.was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback, +.custom-select.is-valid ~ .valid-tooltip { + display: block; +} + +/* line 115, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control-file:valid ~ .valid-feedback, +.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback, +.form-control-file.is-valid ~ .valid-tooltip { + display: block; +} + +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { + color: #28a745; +} + +/* line 129, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-check-input:valid ~ .valid-feedback, +.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, +.form-check-input.is-valid ~ .valid-tooltip { + display: block; +} + +/* line 139, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { + color: #28a745; +} + +/* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { + border-color: #28a745; +} + +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:valid ~ .valid-feedback, +.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, +.custom-control-input.is-valid ~ .valid-tooltip { + display: block; +} + +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { + border-color: #34ce57; + background-color: #34ce57; +} + +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +/* line 164, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before { + border-color: #28a745; +} + +/* line 175, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { + border-color: #28a745; +} + +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-file-input:valid ~ .valid-feedback, +.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, +.custom-file-input.is-valid ~ .valid-tooltip { + display: block; +} + +/* line 185, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #dc3545; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(220, 53, 69, 0.9); + border-radius: 0.25rem; +} + +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control:invalid, .form-control.is-invalid { + border-color: #dc3545; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E"); + background-repeat: no-repeat; + background-position: center right calc(0.375em + 0.1875rem); + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control:invalid ~ .invalid-feedback, +.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, +.form-control.is-invalid ~ .invalid-tooltip { + display: block; +} + +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); +} + +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-select:invalid, .custom-select.is-invalid { + border-color: #dc3545; + padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +/* line 99, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +/* line 104, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-select:invalid ~ .invalid-feedback, +.was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback, +.custom-select.is-invalid ~ .invalid-tooltip { + display: block; +} + +/* line 115, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control-file:invalid ~ .invalid-feedback, +.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback, +.form-control-file.is-invalid ~ .invalid-tooltip { + display: block; +} + +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { + color: #dc3545; +} + +/* line 129, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-check-input:invalid ~ .invalid-feedback, +.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, +.form-check-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +/* line 139, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { + color: #dc3545; +} + +/* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { + border-color: #dc3545; +} + +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:invalid ~ .invalid-feedback, +.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, +.custom-control-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { + border-color: #e4606d; + background-color: #e4606d; +} + +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +/* line 164, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before { + border-color: #dc3545; +} + +/* line 175, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { + border-color: #dc3545; +} + +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-file-input:invalid ~ .invalid-feedback, +.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, +.custom-file-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +/* line 185, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +/* line 258, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-inline { + display: -webkit-box; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row wrap; + -webkit-box-align: center; + align-items: center; +} + +/* line 266, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-inline .form-check { + width: 100%; +} + +@media (min-width: 576px) { + /* line 272, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline label { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: center; + justify-content: center; + margin-bottom: 0; + } + /* line 280, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .form-group { + display: -webkit-box; + display: flex; + -webkit-box-flex: 0; + flex: 0 0 auto; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row wrap; + -webkit-box-align: center; + align-items: center; + margin-bottom: 0; + } + /* line 289, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + /* line 296, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .form-control-plaintext { + display: inline-block; + } + /* line 300, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .input-group, + .form-inline .custom-select { + width: auto; + } + /* line 307, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .form-check { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: center; + justify-content: center; + width: auto; + padding-left: 0; + } + /* line 314, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .form-check-input { + position: relative; + flex-shrink: 0; + margin-top: 0; + margin-right: 0.25rem; + margin-left: 0; + } + /* line 322, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .custom-control { + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: center; + justify-content: center; + } + /* line 326, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .custom-control-label { + margin-bottom: 0; + } +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn { + display: inline-block; + font-weight: 400; + color: #212529; + text-align: center; + vertical-align: middle; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-color: transparent; + border: 1px solid transparent; + padding: 0.375rem 0.75rem; + font-size: 1rem; + line-height: 1.5; + border-radius: 0.25rem; + -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ + .btn { + -webkit-transition: none; + transition: none; + } +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn:hover { + color: #212529; + text-decoration: none; +} + +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn:focus, .btn.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn.disabled, .btn:disabled { + opacity: 0.65; +} + +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +a.btn.disabled, +fieldset:disabled a.btn { + pointer-events: none; +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-primary { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-primary:hover { + color: #fff; + background-color: #0069d9; + border-color: #0062cc; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-primary:focus, .btn-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-primary.disabled, .btn-primary:disabled { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, +.show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #0062cc; + border-color: #005cbf; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, +.show > .btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-secondary { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-secondary:hover { + color: #fff; + background-color: #5a6268; + border-color: #545b62; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-secondary:focus, .btn-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-secondary.disabled, .btn-secondary:disabled { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, +.show > .btn-secondary.dropdown-toggle { + color: #fff; + background-color: #545b62; + border-color: #4e555b; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, +.show > .btn-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-success { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-success:hover { + color: #fff; + background-color: #218838; + border-color: #1e7e34; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-success:focus, .btn-success.focus { + box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-success.disabled, .btn-success:disabled { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, +.show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #1e7e34; + border-color: #1c7430; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, +.show > .btn-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-info { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-info:hover { + color: #fff; + background-color: #138496; + border-color: #117a8b; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-info:focus, .btn-info.focus { + box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-info.disabled, .btn-info:disabled { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, +.show > .btn-info.dropdown-toggle { + color: #fff; + background-color: #117a8b; + border-color: #10707f; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, +.show > .btn-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-warning { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-warning:hover { + color: #212529; + background-color: #e0a800; + border-color: #d39e00; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-warning:focus, .btn-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-warning.disabled, .btn-warning:disabled { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, +.show > .btn-warning.dropdown-toggle { + color: #212529; + background-color: #d39e00; + border-color: #c69500; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, +.show > .btn-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-danger { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-danger:hover { + color: #fff; + background-color: #c82333; + border-color: #bd2130; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-danger:focus, .btn-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-danger.disabled, .btn-danger:disabled { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, +.show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #bd2130; + border-color: #b21f2d; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, +.show > .btn-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-light { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-light:hover { + color: #212529; + background-color: #e2e6ea; + border-color: #dae0e5; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-light:focus, .btn-light.focus { + box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-light.disabled, .btn-light:disabled { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, +.show > .btn-light.dropdown-toggle { + color: #212529; + background-color: #dae0e5; + border-color: #d3d9df; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, +.show > .btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-dark { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-dark:hover { + color: #fff; + background-color: #23272b; + border-color: #1d2124; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-dark:focus, .btn-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-dark.disabled, .btn-dark:disabled { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, +.show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #1d2124; + border-color: #171a1d; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, +.show > .btn-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-primary { + color: #007bff; + border-color: #007bff; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-primary:hover { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-primary:focus, .btn-outline-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-primary.disabled, .btn-outline-primary:disabled { + color: #007bff; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, +.show > .btn-outline-primary.dropdown-toggle { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-secondary { + color: #6c757d; + border-color: #6c757d; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-secondary:hover { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-secondary:focus, .btn-outline-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-secondary.disabled, .btn-outline-secondary:disabled { + color: #6c757d; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, +.show > .btn-outline-secondary.dropdown-toggle { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-success { + color: #28a745; + border-color: #28a745; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-success:hover { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-success:focus, .btn-outline-success.focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-success.disabled, .btn-outline-success:disabled { + color: #28a745; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, +.show > .btn-outline-success.dropdown-toggle { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-info { + color: #17a2b8; + border-color: #17a2b8; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-info:hover { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-info:focus, .btn-outline-info.focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-info.disabled, .btn-outline-info:disabled { + color: #17a2b8; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, +.show > .btn-outline-info.dropdown-toggle { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-warning { + color: #ffc107; + border-color: #ffc107; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-warning:hover { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-warning:focus, .btn-outline-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-warning.disabled, .btn-outline-warning:disabled { + color: #ffc107; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, +.show > .btn-outline-warning.dropdown-toggle { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-danger { + color: #dc3545; + border-color: #dc3545; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-danger:hover { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-danger:focus, .btn-outline-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-danger.disabled, .btn-outline-danger:disabled { + color: #dc3545; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, +.show > .btn-outline-danger.dropdown-toggle { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-light { + color: #f8f9fa; + border-color: #f8f9fa; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-light:hover { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-light:focus, .btn-outline-light.focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-light.disabled, .btn-outline-light:disabled { + color: #f8f9fa; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, +.show > .btn-outline-light.dropdown-toggle { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-dark { + color: #343a40; + border-color: #343a40; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-dark:hover { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-dark:focus, .btn-outline-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-dark.disabled, .btn-outline-dark:disabled { + color: #343a40; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, +.show > .btn-outline-dark.dropdown-toggle { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +/* line 77, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-link { + font-weight: 400; + color: #007bff; + text-decoration: none; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-link:hover { + color: #0056b3; + text-decoration: underline; +} + +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-link:focus, .btn-link.focus { + text-decoration: underline; + box-shadow: none; +} + +/* line 93, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-link:disabled, .btn-link.disabled { + color: #6c757d; + pointer-events: none; +} + +/* line 107, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-lg, .btn-group-lg > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +/* line 111, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-sm, .btn-group-sm > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +/* line 120, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-block { + display: block; + width: 100%; +} + +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-block + .btn-block { + margin-top: 0.5rem; +} + +/* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ +.fade { + -webkit-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; +} + +@media (prefers-reduced-motion: reduce) { + /* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ + .fade { + -webkit-transition: none; + transition: none; + } +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ +.fade:not(.show) { + opacity: 0; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ +.collapse:not(.show) { + display: none; +} + +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ +.collapsing { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition: height 0.35s ease; + transition: height 0.35s ease; +} + +@media (prefers-reduced-motion: reduce) { + /* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ + .collapsing { + -webkit-transition: none; + transition: none; + } +} + +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropup, +.dropright, +.dropdown, +.dropleft { + position: relative; +} + +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-toggle { + white-space: nowrap; +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropdown-toggle:empty::after { + margin-left: 0; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0.125rem 0 0; + font-size: 1rem; + color: #212529; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 0.25rem; +} + +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-menu-left { + right: auto; + left: 0; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-menu-right { + right: 0; + left: auto; +} + +@media (min-width: 576px) { + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-sm-left { + right: auto; + left: 0; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-sm-right { + right: 0; + left: auto; + } +} + +@media (min-width: 768px) { + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-md-left { + right: auto; + left: 0; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-md-right { + right: 0; + left: auto; + } +} + +@media (min-width: 992px) { + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-lg-left { + right: auto; + left: 0; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-lg-right { + right: 0; + left: auto; + } +} + +@media (min-width: 1200px) { + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-xl-left { + right: auto; + left: 0; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-xl-right { + right: 0; + left: auto; + } +} + +/* line 57, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropup .dropdown-menu { + top: auto; + bottom: 100%; + margin-top: 0; + margin-bottom: 0.125rem; +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropup .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropup .dropdown-toggle:empty::after { + margin-left: 0; +} + +/* line 70, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropright .dropdown-menu { + top: 0; + right: auto; + left: 100%; + margin-top: 0; + margin-left: 0.125rem; +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropright .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0; + border-bottom: 0.3em solid transparent; + border-left: 0.3em solid; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropright .dropdown-toggle:empty::after { + margin-left: 0; +} + +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropright .dropdown-toggle::after { + vertical-align: 0; +} + +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropleft .dropdown-menu { + top: 0; + right: 100%; + left: auto; + margin-top: 0; + margin-right: 0.125rem; +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropleft .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropleft .dropdown-toggle::after { + display: none; +} + +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropleft .dropdown-toggle::before { + display: inline-block; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropleft .dropdown-toggle:empty::after { + margin-left: 0; +} + +/* line 97, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropleft .dropdown-toggle::before { + vertical-align: 0; +} + +/* line 106, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] { + right: auto; + bottom: auto; +} + +/* line 116, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-divider { + height: 0; + margin: 0.5rem 0; + overflow: hidden; + border-top: 1px solid #e9ecef; +} + +/* line 123, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-item { + display: block; + width: 100%; + padding: 0.25rem 1.5rem; + clear: both; + font-weight: 400; + color: #212529; + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.dropdown-item:hover, .dropdown-item:focus { + color: #16181b; + text-decoration: none; + background-color: #f8f9fa; +} + +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-item.active, .dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #007bff; +} + +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-item.disabled, .dropdown-item:disabled { + color: #6c757d; + pointer-events: none; + background-color: transparent; +} + +/* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-menu.show { + display: block; +} + +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-header { + display: block; + padding: 0.5rem 1.5rem; + margin-bottom: 0; + font-size: 0.875rem; + color: #6c757d; + white-space: nowrap; +} + +/* line 187, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-item-text { + display: block; + padding: 0.25rem 1.5rem; + color: #212529; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group, +.btn-group-vertical { + position: relative; + display: -webkit-inline-box; + display: inline-flex; + vertical-align: middle; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + -webkit-box-flex: 1; + flex: 1 1 auto; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-group > .btn:hover, +.btn-group-vertical > .btn:hover { + z-index: 1; +} + +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, +.btn-group-vertical > .btn:focus, +.btn-group-vertical > .btn:active, +.btn-group-vertical > .btn.active { + z-index: 1; +} + +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-toolbar { + display: -webkit-box; + display: flex; + flex-wrap: wrap; + -webkit-box-pack: start; + justify-content: flex-start; +} + +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-toolbar .input-group { + width: auto; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) { + margin-left: -1px; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.dropdown-toggle-split { + padding-right: 0.5625rem; + padding-left: 0.5625rem; +} + +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.dropdown-toggle-split::after, +.dropup .dropdown-toggle-split::after, +.dropright .dropdown-toggle-split::after { + margin-left: 0; +} + +/* line 79, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.dropleft .dropdown-toggle-split::before { + margin-right: 0; +} + +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { + padding-right: 0.375rem; + padding-left: 0.375rem; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { + padding-right: 0.75rem; + padding-left: 0.75rem; +} + +/* line 111, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group-vertical { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + -webkit-box-align: start; + align-items: flex-start; + -webkit-box-pack: center; + justify-content: center; +} + +/* line 116, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group-vertical > .btn, +.btn-group-vertical > .btn-group { + width: 100%; +} + +/* line 121, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group-vertical > .btn:not(:first-child), +.btn-group-vertical > .btn-group:not(:first-child) { + margin-top: -1px; +} + +/* line 127, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group-vertical > .btn-group:not(:last-child) > .btn { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +/* line 132, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group-vertical > .btn:not(:first-child), +.btn-group-vertical > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +/* line 152, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group-toggle > .btn, +.btn-group-toggle > .btn-group > .btn { + margin-bottom: 0; +} + +/* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group-toggle > .btn input[type="radio"], +.btn-group-toggle > .btn input[type="checkbox"], +.btn-group-toggle > .btn-group > .btn input[type="radio"], +.btn-group-toggle > .btn-group > .btn input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group { + position: relative; + display: -webkit-box; + display: flex; + flex-wrap: wrap; + -webkit-box-align: stretch; + align-items: stretch; + width: 100%; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .form-control, +.input-group > .form-control-plaintext, +.input-group > .custom-select, +.input-group > .custom-file { + position: relative; + -webkit-box-flex: 1; + flex: 1 1 auto; + width: 1%; + margin-bottom: 0; +} + +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .form-control + .form-control, +.input-group > .form-control + .custom-select, +.input-group > .form-control + .custom-file, +.input-group > .form-control-plaintext + .form-control, +.input-group > .form-control-plaintext + .custom-select, +.input-group > .form-control-plaintext + .custom-file, +.input-group > .custom-select + .form-control, +.input-group > .custom-select + .custom-select, +.input-group > .custom-select + .custom-file, +.input-group > .custom-file + .form-control, +.input-group > .custom-file + .custom-select, +.input-group > .custom-file + .custom-file { + margin-left: -1px; +} + +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .form-control:focus, +.input-group > .custom-select:focus, +.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { + z-index: 3; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .custom-file .custom-file-input:focus { + z-index: 4; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .form-control:not(:last-child), +.input-group > .custom-select:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .form-control:not(:first-child), +.input-group > .custom-select:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .custom-file { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; +} + +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .custom-file:not(:last-child) .custom-file-label, +.input-group > .custom-file:not(:last-child) .custom-file-label::after { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .custom-file:not(:first-child) .custom-file-label { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-prepend, +.input-group-append { + display: -webkit-box; + display: flex; +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-prepend .btn, +.input-group-append .btn { + position: relative; + z-index: 2; +} + +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-prepend .btn:focus, +.input-group-append .btn:focus { + z-index: 3; +} + +/* line 85, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-prepend .btn + .btn, +.input-group-prepend .btn + .input-group-text, +.input-group-prepend .input-group-text + .input-group-text, +.input-group-prepend .input-group-text + .btn, +.input-group-append .btn + .btn, +.input-group-append .btn + .input-group-text, +.input-group-append .input-group-text + .input-group-text, +.input-group-append .input-group-text + .btn { + margin-left: -1px; +} + +/* line 93, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-prepend { + margin-right: -1px; +} + +/* line 94, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-append { + margin-left: -1px; +} + +/* line 102, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-text { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + padding: 0.375rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + text-align: center; + white-space: nowrap; + background-color: #e9ecef; + border: 1px solid #ced4da; + border-radius: 0.25rem; +} + +/* line 118, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-text input[type="radio"], +.input-group-text input[type="checkbox"] { + margin-top: 0; +} + +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-lg > .form-control:not(textarea), +.input-group-lg > .custom-select { + height: calc(1.5em + 1rem + 2px); +} + +/* line 135, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-lg > .form-control, +.input-group-lg > .custom-select, +.input-group-lg > .input-group-prepend > .input-group-text, +.input-group-lg > .input-group-append > .input-group-text, +.input-group-lg > .input-group-prepend > .btn, +.input-group-lg > .input-group-append > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-sm > .form-control:not(textarea), +.input-group-sm > .custom-select { + height: calc(1.5em + 0.5rem + 2px); +} + +/* line 152, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-sm > .form-control, +.input-group-sm > .custom-select, +.input-group-sm > .input-group-prepend > .input-group-text, +.input-group-sm > .input-group-append > .input-group-text, +.input-group-sm > .input-group-prepend > .btn, +.input-group-sm > .input-group-append > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +/* line 164, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-lg > .custom-select, +.input-group-sm > .custom-select { + padding-right: 1.75rem; +} + +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .input-group-prepend > .btn, +.input-group > .input-group-prepend > .input-group-text, +.input-group > .input-group-append:not(:last-child) > .btn, +.input-group > .input-group-append:not(:last-child) > .input-group-text, +.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), +.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +/* line 186, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .input-group-append > .btn, +.input-group > .input-group-append > .input-group-text, +.input-group > .input-group-prepend:not(:first-child) > .btn, +.input-group > .input-group-prepend:not(:first-child) > .input-group-text, +.input-group > .input-group-prepend:first-child > .btn:not(:first-child), +.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control { + position: relative; + display: block; + min-height: 1.5rem; + padding-left: 1.5rem; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-inline { + display: -webkit-inline-box; + display: inline-flex; + margin-right: 1rem; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-input { + position: absolute; + z-index: -1; + opacity: 0; +} + +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-input:checked ~ .custom-control-label::before { + color: #fff; + border-color: #007bff; + background-color: #007bff; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-input:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-input:focus:not(:checked) ~ .custom-control-label::before { + border-color: #80bdff; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-input:not(:disabled):active ~ .custom-control-label::before { + color: #fff; + background-color: #b3d7ff; + border-color: #b3d7ff; +} + +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-input:disabled ~ .custom-control-label { + color: #6c757d; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-input:disabled ~ .custom-control-label::before { + background-color: #e9ecef; +} + +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-label { + position: relative; + margin-bottom: 0; + vertical-align: top; +} + +/* line 75, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-label::before { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + pointer-events: none; + content: ""; + background-color: #fff; + border: #adb5bd solid 1px; +} + +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-label::after { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + content: ""; + background: no-repeat 50% / 50% 50%; +} + +/* line 108, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-checkbox .custom-control-label::before { + border-radius: 0.25rem; +} + +/* line 113, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e"); +} + +/* line 119, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { + border-color: #007bff; + background-color: #007bff; +} + +/* line 124, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); +} + +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +/* line 133, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +/* line 144, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-radio .custom-control-label::before { + border-radius: 50%; +} + +/* line 150, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-radio .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); +} + +/* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +/* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-switch { + padding-left: 2.25rem; +} + +/* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-switch .custom-control-label::before { + left: -2.25rem; + width: 1.75rem; + pointer-events: all; + border-radius: 0.5rem; +} + +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-switch .custom-control-label::after { + top: calc(0.25rem + 2px); + left: calc(-2.25rem + 2px); + width: calc(1rem - 4px); + height: calc(1rem - 4px); + background-color: #adb5bd; + border-radius: 0.5rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; + transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + .custom-switch .custom-control-label::after { + -webkit-transition: none; + transition: none; + } +} + +/* line 192, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-switch .custom-control-input:checked ~ .custom-control-label::after { + background-color: #fff; + -webkit-transform: translateX(0.75rem); + transform: translateX(0.75rem); +} + +/* line 199, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +/* line 212, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select { + display: inline-block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 1.75rem 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + vertical-align: middle; + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: 0.25rem; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +/* line 230, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select:focus { + border-color: #80bdff; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 239, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select:focus::-ms-value { + color: #495057; + background-color: #fff; +} + +/* line 250, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select[multiple], .custom-select[size]:not([size="1"]) { + height: auto; + padding-right: 0.75rem; + background-image: none; +} + +/* line 257, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select:disabled { + color: #6c757d; + background-color: #e9ecef; +} + +/* line 263, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select::-ms-expand { + display: none; +} + +/* line 268, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select-sm { + height: calc(1.5em + 0.5rem + 2px); + padding-top: 0.25rem; + padding-bottom: 0.25rem; + padding-left: 0.5rem; + font-size: 0.875rem; +} + +/* line 276, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select-lg { + height: calc(1.5em + 1rem + 2px); + padding-top: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 1rem; + font-size: 1.25rem; +} + +/* line 289, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file { + position: relative; + display: inline-block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + margin-bottom: 0; +} + +/* line 297, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file-input { + position: relative; + z-index: 2; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + margin: 0; + opacity: 0; +} + +/* line 305, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file-input:focus ~ .custom-file-label { + border-color: #80bdff; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 310, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file-input:disabled ~ .custom-file-label { + background-color: #e9ecef; +} + +/* line 315, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file-input:lang(en) ~ .custom-file-label::after { + content: "Browse"; +} + +/* line 320, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file-input ~ .custom-file-label[data-browse]::after { + content: attr(data-browse); +} + +/* line 325, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file-label { + position: absolute; + top: 0; + right: 0; + left: 0; + z-index: 1; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: 0.25rem; +} + +/* line 342, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file-label::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + z-index: 3; + display: block; + height: calc(1.5em + 0.75rem); + padding: 0.375rem 0.75rem; + line-height: 1.5; + color: #495057; + content: "Browse"; + background-color: #e9ecef; + border-left: inherit; + border-radius: 0 0.25rem 0.25rem 0; +} + +/* line 366, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range { + width: 100%; + height: calc(1rem + 0.4rem); + padding: 0; + background-color: transparent; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +/* line 373, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:focus { + outline: none; +} + +/* line 378, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:focus::-webkit-slider-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 379, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 380, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:focus::-ms-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 383, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-moz-focus-outer { + border: 0; +} + +/* line 387, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -0.25rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + -webkit-appearance: none; + appearance: none; +} + +@media (prefers-reduced-motion: reduce) { + /* line 387, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + .custom-range::-webkit-slider-thumb { + -webkit-transition: none; + transition: none; + } +} + +/* line 398, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-webkit-slider-thumb:active { + background-color: #b3d7ff; +} + +/* line 403, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-webkit-slider-runnable-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; +} + +/* line 414, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + -moz-appearance: none; + appearance: none; +} + +@media (prefers-reduced-motion: reduce) { + /* line 414, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + .custom-range::-moz-range-thumb { + -webkit-transition: none; + transition: none; + } +} + +/* line 424, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-moz-range-thumb:active { + background-color: #b3d7ff; +} + +/* line 429, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-moz-range-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; +} + +/* line 440, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-ms-thumb { + width: 1rem; + height: 1rem; + margin-top: 0; + margin-right: 0.2rem; + margin-left: 0.2rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + appearance: none; +} + +@media (prefers-reduced-motion: reduce) { + /* line 440, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + .custom-range::-ms-thumb { + -webkit-transition: none; + transition: none; + } +} + +/* line 453, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-ms-thumb:active { + background-color: #b3d7ff; +} + +/* line 458, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-ms-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: transparent; + border-color: transparent; + border-width: 0.5rem; +} + +/* line 469, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-ms-fill-lower { + background-color: #dee2e6; + border-radius: 1rem; +} + +/* line 474, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-ms-fill-upper { + margin-right: 15px; + background-color: #dee2e6; + border-radius: 1rem; +} + +/* line 481, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:disabled::-webkit-slider-thumb { + background-color: #adb5bd; +} + +/* line 485, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:disabled::-webkit-slider-runnable-track { + cursor: default; +} + +/* line 489, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:disabled::-moz-range-thumb { + background-color: #adb5bd; +} + +/* line 493, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:disabled::-moz-range-track { + cursor: default; +} + +/* line 497, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:disabled::-ms-thumb { + background-color: #adb5bd; +} + +/* line 503, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-label::before, +.custom-file-label, +.custom-select { + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + /* line 503, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + .custom-control-label::before, + .custom-file-label, + .custom-select { + -webkit-transition: none; + transition: none; + } +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav { + display: -webkit-box; + display: flex; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-link { + display: block; + padding: 0.5rem 1rem; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.nav-link:hover, .nav-link:focus { + text-decoration: none; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-link.disabled { + color: #6c757d; + pointer-events: none; + cursor: default; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-tabs { + border-bottom: 1px solid #dee2e6; +} + +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-tabs .nav-item { + margin-bottom: -1px; +} + +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-tabs .nav-link { + border: 1px solid transparent; + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { + border-color: #e9ecef #e9ecef #dee2e6; +} + +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-tabs .nav-link.disabled { + color: #6c757d; + background-color: transparent; + border-color: transparent; +} + +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-tabs .nav-link.active, +.nav-tabs .nav-item.show .nav-link { + color: #495057; + background-color: #fff; + border-color: #dee2e6 #dee2e6 #fff; +} + +/* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +/* line 77, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-pills .nav-link { + border-radius: 0.25rem; +} + +/* line 81, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #007bff; +} + +/* line 94, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-fill .nav-item { + -webkit-box-flex: 1; + flex: 1 1 auto; + text-align: center; +} + +/* line 101, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-justified .nav-item { + flex-basis: 0; + -webkit-box-flex: 1; + flex-grow: 1; + text-align: center; +} + +/* line 114, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.tab-content > .tab-pane { + display: none; +} + +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.tab-content > .active { + display: block; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar { + position: relative; + display: -webkit-box; + display: flex; + flex-wrap: wrap; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: justify; + justify-content: space-between; + padding: 0.5rem 1rem; +} + +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar > .container, +.navbar > .container-fluid { + display: -webkit-box; + display: flex; + flex-wrap: wrap; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: justify; + justify-content: space-between; +} + +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-brand { + display: inline-block; + padding-top: 0.3125rem; + padding-bottom: 0.3125rem; + margin-right: 1rem; + font-size: 1.25rem; + line-height: inherit; + white-space: nowrap; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-brand:hover, .navbar-brand:focus { + text-decoration: none; +} + +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-nav { + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +/* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-nav .nav-link { + padding-right: 0; + padding-left: 0; +} + +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-nav .dropdown-menu { + position: static; + float: none; +} + +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-text { + display: inline-block; + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} + +/* line 99, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-collapse { + flex-basis: 100%; + -webkit-box-flex: 1; + flex-grow: 1; + -webkit-box-align: center; + align-items: center; +} + +/* line 108, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-toggler { + padding: 0.25rem 0.75rem; + font-size: 1.25rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: 0.25rem; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-toggler:hover, .navbar-toggler:focus { + text-decoration: none; +} + +/* line 123, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + content: ""; + background: no-repeat center center; + background-size: 100% 100%; +} + +@media (max-width: 575.98px) { + /* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 576px) { + /* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row nowrap; + -webkit-box-pack: start; + justify-content: flex-start; + } + /* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute; + } + /* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + /* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + flex-wrap: nowrap; + } + /* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm .navbar-collapse { + display: -webkit-box !important; + display: flex !important; + flex-basis: auto; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm .navbar-toggler { + display: none; + } +} + +@media (max-width: 767.98px) { + /* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 768px) { + /* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row nowrap; + -webkit-box-pack: start; + justify-content: flex-start; + } + /* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute; + } + /* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + /* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + flex-wrap: nowrap; + } + /* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md .navbar-collapse { + display: -webkit-box !important; + display: flex !important; + flex-basis: auto; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md .navbar-toggler { + display: none; + } +} + +@media (max-width: 991.98px) { + /* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 992px) { + /* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row nowrap; + -webkit-box-pack: start; + justify-content: flex-start; + } + /* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute; + } + /* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + /* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + flex-wrap: nowrap; + } + /* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg .navbar-collapse { + display: -webkit-box !important; + display: flex !important; + flex-basis: auto; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg .navbar-toggler { + display: none; + } +} + +@media (max-width: 1199.98px) { + /* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 1200px) { + /* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row nowrap; + -webkit-box-pack: start; + justify-content: flex-start; + } + /* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute; + } + /* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + /* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + flex-wrap: nowrap; + } + /* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl .navbar-collapse { + display: -webkit-box !important; + display: flex !important; + flex-basis: auto; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl .navbar-toggler { + display: none; + } +} + +/* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row nowrap; + -webkit-box-pack: start; + justify-content: flex-start; +} + +/* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand > .container, +.navbar-expand > .container-fluid { + padding-right: 0; + padding-left: 0; +} + +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; +} + +/* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand .navbar-nav .dropdown-menu { + position: absolute; +} + +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; +} + +/* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand > .container, +.navbar-expand > .container-fluid { + flex-wrap: nowrap; +} + +/* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand .navbar-collapse { + display: -webkit-box !important; + display: flex !important; + flex-basis: auto; +} + +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand .navbar-toggler { + display: none; +} + +/* line 194, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-brand { + color: rgba(0, 0, 0, 0.9); +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { + color: rgba(0, 0, 0, 0.9); +} + +/* line 203, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-nav .nav-link { + color: rgba(0, 0, 0, 0.5); +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { + color: rgba(0, 0, 0, 0.7); +} + +/* line 210, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, 0.3); +} + +/* line 215, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-nav .show > .nav-link, +.navbar-light .navbar-nav .active > .nav-link, +.navbar-light .navbar-nav .nav-link.show, +.navbar-light .navbar-nav .nav-link.active { + color: rgba(0, 0, 0, 0.9); +} + +/* line 223, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, 0.5); + border-color: rgba(0, 0, 0, 0.1); +} + +/* line 228, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); +} + +/* line 232, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-text { + color: rgba(0, 0, 0, 0.5); +} + +/* line 234, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-text a { + color: rgba(0, 0, 0, 0.9); +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { + color: rgba(0, 0, 0, 0.9); +} + +/* line 246, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-brand { + color: #fff; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { + color: #fff; +} + +/* line 255, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-nav .nav-link { + color: rgba(255, 255, 255, 0.5); +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { + color: rgba(255, 255, 255, 0.75); +} + +/* line 262, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, 0.25); +} + +/* line 267, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-nav .show > .nav-link, +.navbar-dark .navbar-nav .active > .nav-link, +.navbar-dark .navbar-nav .nav-link.show, +.navbar-dark .navbar-nav .nav-link.active { + color: #fff; +} + +/* line 275, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, 0.5); + border-color: rgba(255, 255, 255, 0.1); +} + +/* line 280, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); +} + +/* line 284, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-text { + color: rgba(255, 255, 255, 0.5); +} + +/* line 286, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-text a { + color: #fff; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { + color: #fff; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card { + position: relative; + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid rgba(0, 0, 0, 0.125); + border-radius: 0.25rem; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card > hr { + margin-right: 0; + margin-left: 0; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card > .list-group:first-child .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card > .list-group:last-child .list-group-item:last-child { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-body { + -webkit-box-flex: 1; + flex: 1 1 auto; + padding: 1.25rem; +} + +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-title { + margin-bottom: 0.75rem; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-subtitle { + margin-top: -0.375rem; + margin-bottom: 0; +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-text:last-child { + margin-bottom: 0; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.card-link:hover { + text-decoration: none; +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-link + .card-link { + margin-left: 1.25rem; +} + +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-header { + padding: 0.75rem 1.25rem; + margin-bottom: 0; + background-color: rgba(0, 0, 0, 0.03); + border-bottom: 1px solid rgba(0, 0, 0, 0.125); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-header:first-child { + border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; +} + +/* line 81, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-header + .list-group .list-group-item:first-child { + border-top: 0; +} + +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-footer { + padding: 0.75rem 1.25rem; + background-color: rgba(0, 0, 0, 0.03); + border-top: 1px solid rgba(0, 0, 0, 0.125); +} + +/* line 92, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-footer:last-child { + border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); +} + +/* line 102, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-header-tabs { + margin-right: -0.625rem; + margin-bottom: -0.75rem; + margin-left: -0.625rem; + border-bottom: 0; +} + +/* line 109, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-header-pills { + margin-right: -0.625rem; + margin-left: -0.625rem; +} + +/* line 115, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1.25rem; +} + +/* line 124, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-img { + width: 100%; + border-radius: calc(0.25rem - 1px); +} + +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-img-top { + width: 100%; + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); +} + +/* line 135, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-img-bottom { + width: 100%; + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); +} + +/* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-deck { + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; +} + +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-deck .card { + margin-bottom: 15px; +} + +@media (min-width: 576px) { + /* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-deck { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row wrap; + margin-right: -15px; + margin-left: -15px; + } + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-deck .card { + display: -webkit-box; + display: flex; + -webkit-box-flex: 1; + flex: 1 0 0%; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + margin-right: 15px; + margin-bottom: 0; + margin-left: 15px; + } +} + +/* line 173, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-group { + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; +} + +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-group > .card { + margin-bottom: 15px; +} + +@media (min-width: 576px) { + /* line 173, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row wrap; + } + /* line 187, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card { + -webkit-box-flex: 1; + flex: 1 0 0%; + margin-bottom: 0; + } + /* line 192, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card + .card { + margin-left: 0; + border-left: 0; + } + /* line 199, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + /* line 202, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card:not(:last-child) .card-img-top, + .card-group > .card:not(:last-child) .card-header { + border-top-right-radius: 0; + } + /* line 207, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card:not(:last-child) .card-img-bottom, + .card-group > .card:not(:last-child) .card-footer { + border-bottom-right-radius: 0; + } + /* line 214, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + /* line 217, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card:not(:first-child) .card-img-top, + .card-group > .card:not(:first-child) .card-header { + border-top-left-radius: 0; + } + /* line 222, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card:not(:first-child) .card-img-bottom, + .card-group > .card:not(:first-child) .card-footer { + border-bottom-left-radius: 0; + } +} + +/* line 239, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-columns .card { + margin-bottom: 0.75rem; +} + +@media (min-width: 576px) { + /* line 238, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-columns { + -webkit-column-count: 3; + -moz-column-count: 3; + column-count: 3; + -webkit-column-gap: 1.25rem; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + orphans: 1; + widows: 1; + } + /* line 249, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-columns .card { + display: inline-block; + width: 100%; + } +} + +/* line 262, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.accordion > .card { + overflow: hidden; +} + +/* line 266, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.accordion > .card:not(:first-of-type) .card-header:first-child { + border-radius: 0; +} + +/* line 270, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.accordion > .card:not(:first-of-type):not(:last-of-type) { + border-bottom: 0; + border-radius: 0; +} + +/* line 276, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.accordion > .card:first-of-type { + border-bottom: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +/* line 281, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.accordion > .card:last-of-type { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +/* line 285, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.accordion > .card .card-header { + margin-bottom: -1px; +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +.breadcrumb { + display: -webkit-box; + display: flex; + flex-wrap: wrap; + padding: 0.75rem 1rem; + margin-bottom: 1rem; + list-style: none; + background-color: #e9ecef; + border-radius: 0.25rem; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +.breadcrumb-item + .breadcrumb-item { + padding-left: 0.5rem; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +.breadcrumb-item + .breadcrumb-item::before { + display: inline-block; + padding-right: 0.5rem; + color: #6c757d; + content: "/"; +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: underline; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: none; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +.breadcrumb-item.active { + color: #6c757d; +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.pagination { + display: -webkit-box; + display: flex; + padding-left: 0; + list-style: none; + border-radius: 0.25rem; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.page-link { + position: relative; + display: block; + padding: 0.5rem 0.75rem; + margin-left: -1px; + line-height: 1.25; + color: #007bff; + background-color: #fff; + border: 1px solid #dee2e6; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.page-link:hover { + z-index: 2; + color: #0056b3; + text-decoration: none; + background-color: #e9ecef; + border-color: #dee2e6; +} + +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.page-link:focus { + z-index: 2; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.page-item:first-child .page-link { + margin-left: 0; + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.page-item:last-child .page-link { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.page-item.active .page-link { + z-index: 1; + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.page-item.disabled .page-link { + color: #6c757d; + pointer-events: none; + cursor: auto; + background-color: #fff; + border-color: #dee2e6; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +.pagination-lg .page-link { + padding: 0.75rem 1.5rem; + font-size: 1.25rem; + line-height: 1.5; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +.pagination-lg .page-item:first-child .page-link { + border-top-left-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +.pagination-lg .page-item:last-child .page-link { + border-top-right-radius: 0.3rem; + border-bottom-right-radius: 0.3rem; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +.pagination-sm .page-link { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +.pagination-sm .page-item:first-child .page-link { + border-top-left-radius: 0.2rem; + border-bottom-left-radius: 0.2rem; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +.pagination-sm .page-item:last-child .page-link { + border-top-right-radius: 0.2rem; + border-bottom-right-radius: 0.2rem; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge { + display: inline-block; + padding: 0.25em 0.4em; + font-size: 75%; + font-weight: 700; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 0.25rem; + -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ + .badge { + -webkit-transition: none; + transition: none; + } +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge:hover, a.badge:focus { + text-decoration: none; +} + +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge:empty { + display: none; +} + +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.btn .badge { + position: relative; + top: -1px; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-pill { + padding-right: 0.6em; + padding-left: 0.6em; + border-radius: 10rem; +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-primary { + color: #fff; + background-color: #007bff; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-primary:hover, a.badge-primary:focus { + color: #fff; + background-color: #0062cc; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-primary:focus, a.badge-primary.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-secondary { + color: #fff; + background-color: #6c757d; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-secondary:hover, a.badge-secondary:focus { + color: #fff; + background-color: #545b62; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-secondary:focus, a.badge-secondary.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-success { + color: #fff; + background-color: #28a745; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-success:hover, a.badge-success:focus { + color: #fff; + background-color: #1e7e34; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-success:focus, a.badge-success.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-info { + color: #fff; + background-color: #17a2b8; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-info:hover, a.badge-info:focus { + color: #fff; + background-color: #117a8b; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-info:focus, a.badge-info.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-warning { + color: #212529; + background-color: #ffc107; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-warning:hover, a.badge-warning:focus { + color: #212529; + background-color: #d39e00; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-warning:focus, a.badge-warning.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-danger { + color: #fff; + background-color: #dc3545; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-danger:hover, a.badge-danger:focus { + color: #fff; + background-color: #bd2130; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-danger:focus, a.badge-danger.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-light { + color: #212529; + background-color: #f8f9fa; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-light:hover, a.badge-light:focus { + color: #212529; + background-color: #dae0e5; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-light:focus, a.badge-light.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-dark { + color: #fff; + background-color: #343a40; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-dark:hover, a.badge-dark:focus { + color: #fff; + background-color: #1d2124; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-dark:focus, a.badge-dark.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_jumbotron.scss */ +.jumbotron { + padding: 2rem 1rem; + margin-bottom: 2rem; + background-color: #e9ecef; + border-radius: 0.3rem; +} + +@media (min-width: 576px) { + /* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_jumbotron.scss */ + .jumbotron { + padding: 4rem 2rem; + } +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_jumbotron.scss */ +.jumbotron-fluid { + padding-right: 0; + padding-left: 0; + border-radius: 0; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert { + position: relative; + padding: 0.75rem 1.25rem; + margin-bottom: 1rem; + border: 1px solid transparent; + border-radius: 0.25rem; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-heading { + color: inherit; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-link { + font-weight: 700; +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-dismissible { + padding-right: 4rem; +} + +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-dismissible .close { + position: absolute; + top: 0; + right: 0; + padding: 0.75rem 1.25rem; + color: inherit; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-primary { + color: #004085; + background-color: #cce5ff; + border-color: #b8daff; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-primary hr { + border-top-color: #9fcdff; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-primary .alert-link { + color: #002752; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-secondary { + color: #383d41; + background-color: #e2e3e5; + border-color: #d6d8db; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-secondary hr { + border-top-color: #c8cbcf; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-secondary .alert-link { + color: #202326; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-success { + color: #155724; + background-color: #d4edda; + border-color: #c3e6cb; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-success hr { + border-top-color: #b1dfbb; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-success .alert-link { + color: #0b2e13; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-info { + color: #0c5460; + background-color: #d1ecf1; + border-color: #bee5eb; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-info hr { + border-top-color: #abdde5; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-info .alert-link { + color: #062c33; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-warning { + color: #856404; + background-color: #fff3cd; + border-color: #ffeeba; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-warning hr { + border-top-color: #ffe8a1; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-warning .alert-link { + color: #533f03; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-danger { + color: #721c24; + background-color: #f8d7da; + border-color: #f5c6cb; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-danger hr { + border-top-color: #f1b0b7; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-danger .alert-link { + color: #491217; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-light { + color: #818182; + background-color: #fefefe; + border-color: #fdfdfe; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-light hr { + border-top-color: #ececf6; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-light .alert-link { + color: #686868; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-dark { + color: #1b1e21; + background-color: #d6d8d9; + border-color: #c6c8ca; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-dark hr { + border-top-color: #b9bbbe; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-dark .alert-link { + color: #040505; +} + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 1rem 0; + } + to { + background-position: 0 0; + } +} + +@keyframes progress-bar-stripes { + from { + background-position: 1rem 0; + } + to { + background-position: 0 0; + } +} + +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ +.progress { + display: -webkit-box; + display: flex; + height: 1rem; + overflow: hidden; + font-size: 0.75rem; + background-color: #e9ecef; + border-radius: 0.25rem; +} + +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ +.progress-bar { + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + -webkit-box-pack: center; + justify-content: center; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #007bff; + -webkit-transition: width 0.6s ease; + transition: width 0.6s ease; +} + +@media (prefers-reduced-motion: reduce) { + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ + .progress-bar { + -webkit-transition: none; + transition: none; + } +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ +.progress-bar-striped { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 1rem 1rem; +} + +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ +.progress-bar-animated { + -webkit-animation: progress-bar-stripes 1s linear infinite; + animation: progress-bar-stripes 1s linear infinite; +} + +@media (prefers-reduced-motion: reduce) { + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ + .progress-bar-animated { + -webkit-animation: none; + animation: none; + } +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_media.scss */ +.media { + display: -webkit-box; + display: flex; + -webkit-box-align: start; + align-items: flex-start; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_media.scss */ +.media-body { + -webkit-box-flex: 1; + flex: 1; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group { + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-item-action { + width: 100%; + color: #495057; + text-align: inherit; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-action:hover, .list-group-item-action:focus { + z-index: 1; + color: #495057; + text-decoration: none; + background-color: #f8f9fa; +} + +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-item-action:active { + color: #212529; + background-color: #e9ecef; +} + +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-item { + position: relative; + display: block; + padding: 0.75rem 1.25rem; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.125); +} + +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +/* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-item.disabled, .list-group-item:disabled { + color: #6c757d; + pointer-events: none; + background-color: #fff; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-item.active { + z-index: 2; + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +/* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-horizontal { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; +} + +/* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-horizontal .list-group-item { + margin-right: -1px; + margin-bottom: 0; +} + +/* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-horizontal .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; +} + +/* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-horizontal .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; +} + +@media (min-width: 576px) { + /* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-sm { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-sm .list-group-item { + margin-right: -1px; + margin-bottom: 0; + } + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-sm .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-sm .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } +} + +@media (min-width: 768px) { + /* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-md { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-md .list-group-item { + margin-right: -1px; + margin-bottom: 0; + } + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-md .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-md .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } +} + +@media (min-width: 992px) { + /* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-lg { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-lg .list-group-item { + margin-right: -1px; + margin-bottom: 0; + } + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-lg .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-lg .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } +} + +@media (min-width: 1200px) { + /* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-xl { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-xl .list-group-item { + margin-right: -1px; + margin-bottom: 0; + } + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-xl .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-xl .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } +} + +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-flush .list-group-item { + border-right: 0; + border-left: 0; + border-radius: 0; +} + +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-flush .list-group-item:last-child { + margin-bottom: -1px; +} + +/* line 128, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-flush:first-child .list-group-item:first-child { + border-top: 0; +} + +/* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-flush:last-child .list-group-item:last-child { + margin-bottom: 0; + border-bottom: 0; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-primary { + color: #004085; + background-color: #b8daff; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { + color: #004085; + background-color: #9fcdff; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #004085; + border-color: #004085; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-secondary { + color: #383d41; + background-color: #d6d8db; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { + color: #383d41; + background-color: #c8cbcf; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #383d41; + border-color: #383d41; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-success { + color: #155724; + background-color: #c3e6cb; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { + color: #155724; + background-color: #b1dfbb; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #155724; + border-color: #155724; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-info { + color: #0c5460; + background-color: #bee5eb; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { + color: #0c5460; + background-color: #abdde5; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #0c5460; + border-color: #0c5460; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-warning { + color: #856404; + background-color: #ffeeba; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { + color: #856404; + background-color: #ffe8a1; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #856404; + border-color: #856404; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-danger { + color: #721c24; + background-color: #f5c6cb; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { + color: #721c24; + background-color: #f1b0b7; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-danger.list-group-item-action.active { + color: #fff; + background-color: #721c24; + border-color: #721c24; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-light { + color: #818182; + background-color: #fdfdfe; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { + color: #818182; + background-color: #ececf6; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #818182; + border-color: #818182; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-dark { + color: #1b1e21; + background-color: #c6c8ca; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { + color: #1b1e21; + background-color: #b9bbbe; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #1b1e21; + border-color: #1b1e21; +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_close.scss */ +.close { + float: right; + font-size: 1.5rem; + font-weight: 700; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + opacity: .5; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.close:hover { + color: #000; + text-decoration: none; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { + opacity: .75; +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_close.scss */ +button.close { + padding: 0; + background-color: transparent; + border: 0; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_close.scss */ +a.close.disabled { + pointer-events: none; +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +.toast { + max-width: 350px; + overflow: hidden; + font-size: 0.875rem; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.1); + box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); + -webkit-backdrop-filter: blur(10px); + backdrop-filter: blur(10px); + opacity: 0; + border-radius: 0.25rem; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +.toast:not(:last-child) { + margin-bottom: 0.75rem; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +.toast.showing { + opacity: 1; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +.toast.show { + display: block; + opacity: 1; +} + +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +.toast.hide { + display: none; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +.toast-header { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + padding: 0.25rem 0.75rem; + color: #6c757d; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border-bottom: 1px solid rgba(0, 0, 0, 0.05); +} + +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +.toast-body { + padding: 0.75rem; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-open { + overflow: hidden; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal { + position: fixed; + top: 0; + left: 0; + z-index: 1050; + display: none; + width: 100%; + height: 100%; + overflow: hidden; + outline: 0; +} + +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog { + position: relative; + width: auto; + margin: 0.5rem; + pointer-events: none; +} + +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal.fade .modal-dialog { + -webkit-transition: -webkit-transform 0.3s ease-out; + transition: -webkit-transform 0.3s ease-out; + transition: transform 0.3s ease-out; + transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; + -webkit-transform: translate(0, -50px); + transform: translate(0, -50px); +} + +@media (prefers-reduced-motion: reduce) { + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal.fade .modal-dialog { + -webkit-transition: none; + transition: none; + } +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal.show .modal-dialog { + -webkit-transform: none; + transform: none; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-scrollable { + display: -webkit-box; + display: flex; + max-height: calc(100% - 1rem); +} + +/* line 57, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 1rem); + overflow: hidden; +} + +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-scrollable .modal-header, +.modal-dialog-scrollable .modal-footer { + flex-shrink: 0; +} + +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-scrollable .modal-body { + overflow-y: auto; +} + +/* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-centered { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + min-height: calc(100% - 1rem); +} + +/* line 78, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-centered::before { + display: block; + height: calc(100vh - 1rem); + content: ""; +} + +/* line 85, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-centered.modal-dialog-scrollable { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + -webkit-box-pack: center; + justify-content: center; + height: 100%; +} + +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-centered.modal-dialog-scrollable .modal-content { + max-height: none; +} + +/* line 94, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-centered.modal-dialog-scrollable::before { + content: none; +} + +/* line 101, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-content { + position: relative; + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; + outline: 0; +} + +/* line 119, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-backdrop { + position: fixed; + top: 0; + left: 0; + z-index: 1040; + width: 100vw; + height: 100vh; + background-color: #000; +} + +/* line 129, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-backdrop.fade { + opacity: 0; +} + +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-backdrop.show { + opacity: 0.5; +} + +/* line 135, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-header { + display: -webkit-box; + display: flex; + -webkit-box-align: start; + align-items: flex-start; + -webkit-box-pack: justify; + justify-content: space-between; + padding: 1rem 1rem; + border-bottom: 1px solid #dee2e6; + border-top-left-radius: 0.3rem; + border-top-right-radius: 0.3rem; +} + +/* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-header .close { + padding: 1rem 1rem; + margin: -1rem -1rem -1rem auto; +} + +/* line 151, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-title { + margin-bottom: 0; + line-height: 1.5; +} + +/* line 158, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-body { + position: relative; + -webkit-box-flex: 1; + flex: 1 1 auto; + padding: 1rem; +} + +/* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-footer { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: end; + justify-content: flex-end; + padding: 1rem; + border-top: 1px solid #dee2e6; + border-bottom-right-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; +} + +/* line 176, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-footer > :not(:first-child) { + margin-left: .25rem; +} + +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-footer > :not(:last-child) { + margin-right: .25rem; +} + +/* line 181, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; +} + +@media (min-width: 576px) { + /* line 192, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-dialog { + max-width: 500px; + margin: 1.75rem auto; + } + /* line 197, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-dialog-scrollable { + max-height: calc(100% - 3.5rem); + } + /* line 200, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 3.5rem); + } + /* line 205, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-dialog-centered { + min-height: calc(100% - 3.5rem); + } + /* line 208, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-dialog-centered::before { + height: calc(100vh - 3.5rem); + } + /* line 217, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-sm { + max-width: 300px; + } +} + +@media (min-width: 992px) { + /* line 221, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-lg, + .modal-xl { + max-width: 800px; + } +} + +@media (min-width: 1200px) { + /* line 228, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-xl { + max-width: 1140px; + } +} + +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.tooltip { + position: absolute; + z-index: 1070; + display: block; + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + opacity: 0; +} + +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.tooltip.show { + opacity: 0.9; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.tooltip .arrow { + position: absolute; + display: block; + width: 0.8rem; + height: 0.4rem; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.tooltip .arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { + padding: 0.4rem 0; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { + bottom: 0; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { + top: 0; + border-width: 0.4rem 0.4rem 0; + border-top-color: #000; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { + padding: 0 0.4rem; +} + +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { + left: 0; + width: 0.4rem; + height: 0.8rem; +} + +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { + right: 0; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #000; +} + +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { + padding: 0.4rem 0; +} + +/* line 65, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { + top: 0; +} + +/* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + bottom: 0; + border-width: 0 0.4rem 0.4rem; + border-bottom-color: #000; +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { + padding: 0 0.4rem; +} + +/* line 79, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { + right: 0; + width: 0.4rem; + height: 0.8rem; +} + +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { + left: 0; + border-width: 0.4rem 0 0.4rem 0.4rem; + border-left-color: #000; +} + +/* line 108, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.tooltip-inner { + max-width: 200px; + padding: 0.25rem 0.5rem; + color: #fff; + text-align: center; + background-color: #000; + border-radius: 0.25rem; +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: block; + max-width: 276px; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.popover .arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; + margin: 0 0.3rem; +} + +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.popover .arrow::before, .popover .arrow::after { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-top, .bs-popover-auto[x-placement^="top"] { + margin-bottom: 0.5rem; +} + +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow { + bottom: calc((0.5rem + 1px) * -1); +} + +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before { + bottom: 0; + border-width: 0.5rem 0.5rem 0; + border-top-color: rgba(0, 0, 0, 0.25); +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after { + bottom: 1px; + border-width: 0.5rem 0.5rem 0; + border-top-color: #fff; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-right, .bs-popover-auto[x-placement^="right"] { + margin-left: 0.5rem; +} + +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow { + left: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; +} + +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before { + left: 0; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: rgba(0, 0, 0, 0.25); +} + +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after { + left: 1px; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: #fff; +} + +/* line 81, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { + margin-top: 0.5rem; +} + +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow { + top: calc((0.5rem + 1px) * -1); +} + +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before { + top: 0; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: rgba(0, 0, 0, 0.25); +} + +/* line 93, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after { + top: 1px; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: #fff; +} + +/* line 101, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: ""; + border-bottom: 1px solid #f7f7f7; +} + +/* line 113, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-left, .bs-popover-auto[x-placement^="left"] { + margin-right: 0.5rem; +} + +/* line 116, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow { + right: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; +} + +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before { + right: 0; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: rgba(0, 0, 0, 0.25); +} + +/* line 128, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after { + right: 1px; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: #fff; +} + +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.popover-header { + padding: 0.5rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); +} + +/* line 163, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.popover-header:empty { + display: none; +} + +/* line 168, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.popover-body { + padding: 0.5rem 0.75rem; + color: #212529; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel { + position: relative; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel.pointer-event { + touch-action: pan-y; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} + +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ +.carousel-inner::after { + display: block; + clear: both; + content: ""; +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-item { + position: relative; + display: none; + float: left; + width: 100%; + margin-right: -100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-transition: -webkit-transform 0.6s ease-in-out; + transition: -webkit-transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ + .carousel-item { + -webkit-transition: none; + transition: none; + } +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-item-next:not(.carousel-item-left), +.active.carousel-item-right { + -webkit-transform: translateX(100%); + transform: translateX(100%); +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-item-prev:not(.carousel-item-right), +.active.carousel-item-left { + -webkit-transform: translateX(-100%); + transform: translateX(-100%); +} + +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-fade .carousel-item { + opacity: 0; + -webkit-transition-property: opacity; + transition-property: opacity; + -webkit-transform: none; + transform: none; +} + +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-fade .carousel-item.active, +.carousel-fade .carousel-item-next.carousel-item-left, +.carousel-fade .carousel-item-prev.carousel-item-right { + z-index: 1; + opacity: 1; +} + +/* line 74, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-fade .active.carousel-item-left, +.carousel-fade .active.carousel-item-right { + z-index: 0; + opacity: 0; + -webkit-transition: 0s 0.6s opacity; + transition: 0s 0.6s opacity; +} + +@media (prefers-reduced-motion: reduce) { + /* line 74, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ + .carousel-fade .active.carousel-item-left, + .carousel-fade .active.carousel-item-right { + -webkit-transition: none; + transition: none; + } +} + +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-control-prev, +.carousel-control-next { + position: absolute; + top: 0; + bottom: 0; + z-index: 1; + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: center; + justify-content: center; + width: 15%; + color: #fff; + text-align: center; + opacity: 0.5; + -webkit-transition: opacity 0.15s ease; + transition: opacity 0.15s ease; +} + +@media (prefers-reduced-motion: reduce) { + /* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ + .carousel-control-prev, + .carousel-control-next { + -webkit-transition: none; + transition: none; + } +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.carousel-control-prev:hover, .carousel-control-prev:focus, +.carousel-control-next:hover, +.carousel-control-next:focus { + color: #fff; + text-decoration: none; + outline: 0; + opacity: 0.9; +} + +/* line 111, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-control-prev { + left: 0; +} + +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-control-next { + right: 0; +} + +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: 20px; + height: 20px; + background: no-repeat 50% / 100% 100%; +} + +/* line 132, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"); +} + +/* line 135, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-control-next-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"); +} + +/* line 145, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-indicators { + position: absolute; + right: 0; + bottom: 0; + left: 0; + z-index: 15; + display: -webkit-box; + display: flex; + -webkit-box-pack: center; + justify-content: center; + padding-left: 0; + margin-right: 15%; + margin-left: 15%; + list-style: none; +} + +/* line 159, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-indicators li { + box-sizing: content-box; + -webkit-box-flex: 0; + flex: 0 1 auto; + width: 30px; + height: 3px; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: #fff; + background-clip: padding-box; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: .5; + -webkit-transition: opacity 0.6s ease; + transition: opacity 0.6s ease; +} + +@media (prefers-reduced-motion: reduce) { + /* line 159, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ + .carousel-indicators li { + -webkit-transition: none; + transition: none; + } +} + +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-indicators .active { + opacity: 1; +} + +/* line 187, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; +} + +@-webkit-keyframes spinner-border { + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@keyframes spinner-border { + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ +.spinner-border { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + border: 0.25em solid currentColor; + border-right-color: transparent; + border-radius: 50%; + -webkit-animation: spinner-border .75s linear infinite; + animation: spinner-border .75s linear infinite; +} + +/* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ +.spinner-border-sm { + width: 1rem; + height: 1rem; + border-width: 0.2em; +} + +@-webkit-keyframes spinner-grow { + 0% { + -webkit-transform: scale(0); + transform: scale(0); + } + 50% { + opacity: 1; + } +} + +@keyframes spinner-grow { + 0% { + -webkit-transform: scale(0); + transform: scale(0); + } + 50% { + opacity: 1; + } +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ +.spinner-grow { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + background-color: currentColor; + border-radius: 50%; + opacity: 0; + -webkit-animation: spinner-grow .75s linear infinite; + animation: spinner-grow .75s linear infinite; +} + +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ +.spinner-grow-sm { + width: 1rem; + height: 1rem; +} + +/* line 3, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +.align-baseline { + vertical-align: baseline !important; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +.align-top { + vertical-align: top !important; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +.align-middle { + vertical-align: middle !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +.align-bottom { + vertical-align: bottom !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +.align-text-bottom { + vertical-align: text-bottom !important; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +.align-text-top { + vertical-align: text-top !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-primary { + background-color: #007bff !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-primary:hover, a.bg-primary:focus, +button.bg-primary:hover, +button.bg-primary:focus { + background-color: #0062cc !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-secondary { + background-color: #6c757d !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-secondary:hover, a.bg-secondary:focus, +button.bg-secondary:hover, +button.bg-secondary:focus { + background-color: #545b62 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-success { + background-color: #28a745 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-success:hover, a.bg-success:focus, +button.bg-success:hover, +button.bg-success:focus { + background-color: #1e7e34 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-info { + background-color: #17a2b8 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-info:hover, a.bg-info:focus, +button.bg-info:hover, +button.bg-info:focus { + background-color: #117a8b !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-warning { + background-color: #ffc107 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-warning:hover, a.bg-warning:focus, +button.bg-warning:hover, +button.bg-warning:focus { + background-color: #d39e00 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-danger { + background-color: #dc3545 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-danger:hover, a.bg-danger:focus, +button.bg-danger:hover, +button.bg-danger:focus { + background-color: #bd2130 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-light { + background-color: #f8f9fa !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-light:hover, a.bg-light:focus, +button.bg-light:hover, +button.bg-light:focus { + background-color: #dae0e5 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-dark { + background-color: #343a40 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-dark:hover, a.bg-dark:focus, +button.bg-dark:hover, +button.bg-dark:focus { + background-color: #1d2124 !important; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_background.scss */ +.bg-white { + background-color: #fff !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_background.scss */ +.bg-transparent { + background-color: transparent !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border { + border: 1px solid #dee2e6 !important; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-top { + border-top: 1px solid #dee2e6 !important; +} + +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-right { + border-right: 1px solid #dee2e6 !important; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-bottom { + border-bottom: 1px solid #dee2e6 !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-left { + border-left: 1px solid #dee2e6 !important; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-0 { + border: 0 !important; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-top-0 { + border-top: 0 !important; +} + +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-right-0 { + border-right: 0 !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-bottom-0 { + border-bottom: 0 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-left-0 { + border-left: 0 !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-primary { + border-color: #007bff !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-secondary { + border-color: #6c757d !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-success { + border-color: #28a745 !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-info { + border-color: #17a2b8 !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-warning { + border-color: #ffc107 !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-danger { + border-color: #dc3545 !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-light { + border-color: #f8f9fa !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-dark { + border-color: #343a40 !important; +} + +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-white { + border-color: #fff !important; +} + +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-sm { + border-radius: 0.2rem !important; +} + +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded { + border-radius: 0.25rem !important; +} + +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-top { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-right { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-bottom { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} + +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-left { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} + +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-lg { + border-radius: 0.3rem !important; +} + +/* line 65, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-circle { + border-radius: 50% !important; +} + +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-pill { + border-radius: 50rem !important; +} + +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-0 { + border-radius: 0 !important; +} + +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ +.clearfix::after { + display: block; + clear: both; + content: ""; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-none { + display: none !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-inline { + display: inline !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-inline-block { + display: inline-block !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-block { + display: block !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-table { + display: table !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-table-row { + display: table-row !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-table-cell { + display: table-cell !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-flex { + display: -webkit-box !important; + display: flex !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-inline-flex { + display: -webkit-inline-box !important; + display: inline-flex !important; +} + +@media (min-width: 576px) { + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-none { + display: none !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-inline { + display: inline !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-inline-block { + display: inline-block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-block { + display: block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-table { + display: table !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-table-row { + display: table-row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-table-cell { + display: table-cell !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-flex { + display: -webkit-box !important; + display: flex !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-inline-flex { + display: -webkit-inline-box !important; + display: inline-flex !important; + } +} + +@media (min-width: 768px) { + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-none { + display: none !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-inline { + display: inline !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-inline-block { + display: inline-block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-block { + display: block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-table { + display: table !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-table-row { + display: table-row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-table-cell { + display: table-cell !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-flex { + display: -webkit-box !important; + display: flex !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-inline-flex { + display: -webkit-inline-box !important; + display: inline-flex !important; + } +} + +@media (min-width: 992px) { + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-none { + display: none !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-inline { + display: inline !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-inline-block { + display: inline-block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-block { + display: block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-table { + display: table !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-table-row { + display: table-row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-table-cell { + display: table-cell !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-flex { + display: -webkit-box !important; + display: flex !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-inline-flex { + display: -webkit-inline-box !important; + display: inline-flex !important; + } +} + +@media (min-width: 1200px) { + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-none { + display: none !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-inline { + display: inline !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-inline-block { + display: inline-block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-block { + display: block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-table { + display: table !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-table-row { + display: table-row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-table-cell { + display: table-cell !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-flex { + display: -webkit-box !important; + display: flex !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-inline-flex { + display: -webkit-inline-box !important; + display: inline-flex !important; + } +} + +@media print { + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-none { + display: none !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-inline { + display: inline !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-inline-block { + display: inline-block !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-block { + display: block !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-table { + display: table !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-table-row { + display: table-row !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-table-cell { + display: table-cell !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-flex { + display: -webkit-box !important; + display: flex !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-inline-flex { + display: -webkit-inline-box !important; + display: inline-flex !important; + } +} + +/* line 3, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +.embed-responsive { + position: relative; + display: block; + width: 100%; + padding: 0; + overflow: hidden; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +.embed-responsive::before { + display: block; + content: ""; +} + +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +.embed-responsive .embed-responsive-item, +.embed-responsive iframe, +.embed-responsive embed, +.embed-responsive object, +.embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +.embed-responsive-21by9::before { + padding-top: 42.85714%; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +.embed-responsive-16by9::before { + padding-top: 56.25%; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +.embed-responsive-4by3::before { + padding-top: 75%; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +.embed-responsive-1by1::before { + padding-top: 100%; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + flex-direction: row !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + flex-direction: column !important; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + flex-direction: row-reverse !important; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + flex-direction: column-reverse !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-wrap { + flex-wrap: wrap !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-nowrap { + flex-wrap: nowrap !important; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; +} + +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-fill { + -webkit-box-flex: 1 !important; + flex: 1 1 auto !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-grow-0 { + -webkit-box-flex: 0 !important; + flex-grow: 0 !important; +} + +/* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-grow-1 { + -webkit-box-flex: 1 !important; + flex-grow: 1 !important; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-shrink-0 { + flex-shrink: 0 !important; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-shrink-1 { + flex-shrink: 1 !important; +} + +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.justify-content-start { + -webkit-box-pack: start !important; + justify-content: flex-start !important; +} + +/* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.justify-content-end { + -webkit-box-pack: end !important; + justify-content: flex-end !important; +} + +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.justify-content-center { + -webkit-box-pack: center !important; + justify-content: center !important; +} + +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.justify-content-between { + -webkit-box-pack: justify !important; + justify-content: space-between !important; +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.justify-content-around { + justify-content: space-around !important; +} + +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-items-start { + -webkit-box-align: start !important; + align-items: flex-start !important; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-items-end { + -webkit-box-align: end !important; + align-items: flex-end !important; +} + +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-items-center { + -webkit-box-align: center !important; + align-items: center !important; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-items-baseline { + -webkit-box-align: baseline !important; + align-items: baseline !important; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-items-stretch { + -webkit-box-align: stretch !important; + align-items: stretch !important; +} + +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-content-start { + align-content: flex-start !important; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-content-end { + align-content: flex-end !important; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-content-center { + align-content: center !important; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-content-between { + align-content: space-between !important; +} + +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-content-around { + align-content: space-around !important; +} + +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-content-stretch { + align-content: stretch !important; +} + +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-self-auto { + align-self: auto !important; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-self-start { + align-self: flex-start !important; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-self-end { + align-self: flex-end !important; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-self-center { + align-self: center !important; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-self-baseline { + align-self: baseline !important; +} + +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-self-stretch { + align-self: stretch !important; +} + +@media (min-width: 576px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + flex-direction: row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + flex-direction: column !important; + } + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + flex-direction: row-reverse !important; + } + /* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + flex-direction: column-reverse !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-wrap { + flex-wrap: wrap !important; + } + /* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-nowrap { + flex-wrap: nowrap !important; + } + /* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-fill { + -webkit-box-flex: 1 !important; + flex: 1 1 auto !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-grow-0 { + -webkit-box-flex: 0 !important; + flex-grow: 0 !important; + } + /* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-grow-1 { + -webkit-box-flex: 1 !important; + flex-grow: 1 !important; + } + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-shrink-0 { + flex-shrink: 0 !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-shrink-1 { + flex-shrink: 1 !important; + } + /* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-sm-start { + -webkit-box-pack: start !important; + justify-content: flex-start !important; + } + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-sm-end { + -webkit-box-pack: end !important; + justify-content: flex-end !important; + } + /* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-sm-center { + -webkit-box-pack: center !important; + justify-content: center !important; + } + /* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-sm-between { + -webkit-box-pack: justify !important; + justify-content: space-between !important; + } + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-sm-around { + justify-content: space-around !important; + } + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-sm-start { + -webkit-box-align: start !important; + align-items: flex-start !important; + } + /* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-sm-end { + -webkit-box-align: end !important; + align-items: flex-end !important; + } + /* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-sm-center { + -webkit-box-align: center !important; + align-items: center !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-sm-baseline { + -webkit-box-align: baseline !important; + align-items: baseline !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-sm-stretch { + -webkit-box-align: stretch !important; + align-items: stretch !important; + } + /* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-sm-start { + align-content: flex-start !important; + } + /* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-sm-end { + align-content: flex-end !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-sm-center { + align-content: center !important; + } + /* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-sm-between { + align-content: space-between !important; + } + /* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-sm-around { + align-content: space-around !important; + } + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-sm-stretch { + align-content: stretch !important; + } + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-sm-auto { + align-self: auto !important; + } + /* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-sm-start { + align-self: flex-start !important; + } + /* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-sm-end { + align-self: flex-end !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-sm-center { + align-self: center !important; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-sm-baseline { + align-self: baseline !important; + } + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-sm-stretch { + align-self: stretch !important; + } +} + +@media (min-width: 768px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + flex-direction: row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + flex-direction: column !important; + } + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + flex-direction: row-reverse !important; + } + /* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + flex-direction: column-reverse !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-wrap { + flex-wrap: wrap !important; + } + /* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-nowrap { + flex-wrap: nowrap !important; + } + /* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-fill { + -webkit-box-flex: 1 !important; + flex: 1 1 auto !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-grow-0 { + -webkit-box-flex: 0 !important; + flex-grow: 0 !important; + } + /* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-grow-1 { + -webkit-box-flex: 1 !important; + flex-grow: 1 !important; + } + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-shrink-0 { + flex-shrink: 0 !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-shrink-1 { + flex-shrink: 1 !important; + } + /* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-md-start { + -webkit-box-pack: start !important; + justify-content: flex-start !important; + } + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-md-end { + -webkit-box-pack: end !important; + justify-content: flex-end !important; + } + /* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-md-center { + -webkit-box-pack: center !important; + justify-content: center !important; + } + /* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-md-between { + -webkit-box-pack: justify !important; + justify-content: space-between !important; + } + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-md-around { + justify-content: space-around !important; + } + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-md-start { + -webkit-box-align: start !important; + align-items: flex-start !important; + } + /* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-md-end { + -webkit-box-align: end !important; + align-items: flex-end !important; + } + /* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-md-center { + -webkit-box-align: center !important; + align-items: center !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-md-baseline { + -webkit-box-align: baseline !important; + align-items: baseline !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-md-stretch { + -webkit-box-align: stretch !important; + align-items: stretch !important; + } + /* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-md-start { + align-content: flex-start !important; + } + /* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-md-end { + align-content: flex-end !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-md-center { + align-content: center !important; + } + /* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-md-between { + align-content: space-between !important; + } + /* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-md-around { + align-content: space-around !important; + } + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-md-stretch { + align-content: stretch !important; + } + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-md-auto { + align-self: auto !important; + } + /* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-md-start { + align-self: flex-start !important; + } + /* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-md-end { + align-self: flex-end !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-md-center { + align-self: center !important; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-md-baseline { + align-self: baseline !important; + } + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-md-stretch { + align-self: stretch !important; + } +} + +@media (min-width: 992px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + flex-direction: row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + flex-direction: column !important; + } + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + flex-direction: row-reverse !important; + } + /* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + flex-direction: column-reverse !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-wrap { + flex-wrap: wrap !important; + } + /* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-nowrap { + flex-wrap: nowrap !important; + } + /* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-fill { + -webkit-box-flex: 1 !important; + flex: 1 1 auto !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-grow-0 { + -webkit-box-flex: 0 !important; + flex-grow: 0 !important; + } + /* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-grow-1 { + -webkit-box-flex: 1 !important; + flex-grow: 1 !important; + } + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-shrink-0 { + flex-shrink: 0 !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-shrink-1 { + flex-shrink: 1 !important; + } + /* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-lg-start { + -webkit-box-pack: start !important; + justify-content: flex-start !important; + } + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-lg-end { + -webkit-box-pack: end !important; + justify-content: flex-end !important; + } + /* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-lg-center { + -webkit-box-pack: center !important; + justify-content: center !important; + } + /* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-lg-between { + -webkit-box-pack: justify !important; + justify-content: space-between !important; + } + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-lg-around { + justify-content: space-around !important; + } + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-lg-start { + -webkit-box-align: start !important; + align-items: flex-start !important; + } + /* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-lg-end { + -webkit-box-align: end !important; + align-items: flex-end !important; + } + /* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-lg-center { + -webkit-box-align: center !important; + align-items: center !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-lg-baseline { + -webkit-box-align: baseline !important; + align-items: baseline !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-lg-stretch { + -webkit-box-align: stretch !important; + align-items: stretch !important; + } + /* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-lg-start { + align-content: flex-start !important; + } + /* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-lg-end { + align-content: flex-end !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-lg-center { + align-content: center !important; + } + /* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-lg-between { + align-content: space-between !important; + } + /* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-lg-around { + align-content: space-around !important; + } + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-lg-stretch { + align-content: stretch !important; + } + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-lg-auto { + align-self: auto !important; + } + /* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-lg-start { + align-self: flex-start !important; + } + /* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-lg-end { + align-self: flex-end !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-lg-center { + align-self: center !important; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-lg-baseline { + align-self: baseline !important; + } + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-lg-stretch { + align-self: stretch !important; + } +} + +@media (min-width: 1200px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + flex-direction: row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + flex-direction: column !important; + } + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + flex-direction: row-reverse !important; + } + /* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + flex-direction: column-reverse !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-wrap { + flex-wrap: wrap !important; + } + /* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-nowrap { + flex-wrap: nowrap !important; + } + /* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-fill { + -webkit-box-flex: 1 !important; + flex: 1 1 auto !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-grow-0 { + -webkit-box-flex: 0 !important; + flex-grow: 0 !important; + } + /* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-grow-1 { + -webkit-box-flex: 1 !important; + flex-grow: 1 !important; + } + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-shrink-0 { + flex-shrink: 0 !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-shrink-1 { + flex-shrink: 1 !important; + } + /* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-xl-start { + -webkit-box-pack: start !important; + justify-content: flex-start !important; + } + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-xl-end { + -webkit-box-pack: end !important; + justify-content: flex-end !important; + } + /* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-xl-center { + -webkit-box-pack: center !important; + justify-content: center !important; + } + /* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-xl-between { + -webkit-box-pack: justify !important; + justify-content: space-between !important; + } + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-xl-around { + justify-content: space-around !important; + } + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-xl-start { + -webkit-box-align: start !important; + align-items: flex-start !important; + } + /* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-xl-end { + -webkit-box-align: end !important; + align-items: flex-end !important; + } + /* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-xl-center { + -webkit-box-align: center !important; + align-items: center !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-xl-baseline { + -webkit-box-align: baseline !important; + align-items: baseline !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-xl-stretch { + -webkit-box-align: stretch !important; + align-items: stretch !important; + } + /* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-xl-start { + align-content: flex-start !important; + } + /* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-xl-end { + align-content: flex-end !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-xl-center { + align-content: center !important; + } + /* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-xl-between { + align-content: space-between !important; + } + /* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-xl-around { + align-content: space-around !important; + } + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-xl-stretch { + align-content: stretch !important; + } + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-xl-auto { + align-self: auto !important; + } + /* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-xl-start { + align-self: flex-start !important; + } + /* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-xl-end { + align-self: flex-end !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-xl-center { + align-self: center !important; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-xl-baseline { + align-self: baseline !important; + } + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-xl-stretch { + align-self: stretch !important; + } +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ +.float-left { + float: left !important; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ +.float-right { + float: right !important; +} + +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ +.float-none { + float: none !important; +} + +@media (min-width: 576px) { + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-sm-left { + float: left !important; + } + /* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-sm-right { + float: right !important; + } + /* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-sm-none { + float: none !important; + } +} + +@media (min-width: 768px) { + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-md-left { + float: left !important; + } + /* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-md-right { + float: right !important; + } + /* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-md-none { + float: none !important; + } +} + +@media (min-width: 992px) { + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-lg-left { + float: left !important; + } + /* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-lg-right { + float: right !important; + } + /* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-lg-none { + float: none !important; + } +} + +@media (min-width: 1200px) { + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-xl-left { + float: left !important; + } + /* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-xl-right { + float: right !important; + } + /* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-xl-none { + float: none !important; + } +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_overflow.scss */ +.overflow-auto { + overflow: auto !important; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_overflow.scss */ +.overflow-hidden { + overflow: hidden !important; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +.position-static { + position: static !important; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +.position-relative { + position: relative !important; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +.position-absolute { + position: absolute !important; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +.position-fixed { + position: fixed !important; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +.position-sticky { + position: -webkit-sticky !important; + position: sticky !important; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +.fixed-bottom { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; +} + +@supports ((position: -webkit-sticky) or (position: sticky)) { + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ + .sticky-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; + } +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_screenreaders.scss */ +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border: 0; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_screen-reader.scss */ +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + overflow: visible; + clip: auto; + white-space: normal; +} + +/* line 3, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ +.shadow-sm { + box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ +.shadow { + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ +.shadow-lg { + box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ +.shadow-none { + box-shadow: none !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.w-25 { + width: 25% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.w-50 { + width: 50% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.w-75 { + width: 75% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.w-100 { + width: 100% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.w-auto { + width: auto !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.h-25 { + height: 25% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.h-50 { + height: 50% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.h-75 { + height: 75% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.h-100 { + height: 100% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.h-auto { + height: auto !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.mw-100 { + max-width: 100% !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.mh-100 { + max-height: 100% !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.min-vw-100 { + min-width: 100vw !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.min-vh-100 { + min-height: 100vh !important; +} + +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.vw-100 { + width: 100vw !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.vh-100 { + height: 100vh !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_stretched-link.scss */ +.stretched-link::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + pointer-events: auto; + content: ""; + background-color: transparent; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-0 { + margin: 0 !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-0, +.my-0 { + margin-top: 0 !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-0, +.mx-0 { + margin-right: 0 !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-0, +.my-0 { + margin-bottom: 0 !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-0, +.mx-0 { + margin-left: 0 !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-1 { + margin: 0.25rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-1, +.my-1 { + margin-top: 0.25rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-1, +.mx-1 { + margin-right: 0.25rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-1, +.my-1 { + margin-bottom: 0.25rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-1, +.mx-1 { + margin-left: 0.25rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-2 { + margin: 0.5rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-2, +.my-2 { + margin-top: 0.5rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-2, +.mx-2 { + margin-right: 0.5rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-2, +.my-2 { + margin-bottom: 0.5rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-2, +.mx-2 { + margin-left: 0.5rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-3 { + margin: 1rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-3, +.my-3 { + margin-top: 1rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-3, +.mx-3 { + margin-right: 1rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-3, +.my-3 { + margin-bottom: 1rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-3, +.mx-3 { + margin-left: 1rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-4 { + margin: 1.5rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-4, +.my-4 { + margin-top: 1.5rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-4, +.mx-4 { + margin-right: 1.5rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-4, +.my-4 { + margin-bottom: 1.5rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-4, +.mx-4 { + margin-left: 1.5rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-5 { + margin: 3rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-5, +.my-5 { + margin-top: 3rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-5, +.mx-5 { + margin-right: 3rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-5, +.my-5 { + margin-bottom: 3rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-5, +.mx-5 { + margin-left: 3rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.p-0 { + padding: 0 !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pt-0, +.py-0 { + padding-top: 0 !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pr-0, +.px-0 { + padding-right: 0 !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pb-0, +.py-0 { + padding-bottom: 0 !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pl-0, +.px-0 { + padding-left: 0 !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.p-1 { + padding: 0.25rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pt-1, +.py-1 { + padding-top: 0.25rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pr-1, +.px-1 { + padding-right: 0.25rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pb-1, +.py-1 { + padding-bottom: 0.25rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pl-1, +.px-1 { + padding-left: 0.25rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.p-2 { + padding: 0.5rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pt-2, +.py-2 { + padding-top: 0.5rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pr-2, +.px-2 { + padding-right: 0.5rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pb-2, +.py-2 { + padding-bottom: 0.5rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pl-2, +.px-2 { + padding-left: 0.5rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.p-3 { + padding: 1rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pt-3, +.py-3 { + padding-top: 1rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pr-3, +.px-3 { + padding-right: 1rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pb-3, +.py-3 { + padding-bottom: 1rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pl-3, +.px-3 { + padding-left: 1rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.p-4 { + padding: 1.5rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pt-4, +.py-4 { + padding-top: 1.5rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pr-4, +.px-4 { + padding-right: 1.5rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pb-4, +.py-4 { + padding-bottom: 1.5rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pl-4, +.px-4 { + padding-left: 1.5rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.p-5 { + padding: 3rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pt-5, +.py-5 { + padding-top: 3rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pr-5, +.px-5 { + padding-right: 3rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pb-5, +.py-5 { + padding-bottom: 3rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pl-5, +.px-5 { + padding-left: 3rem !important; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-n1 { + margin: -0.25rem !important; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-n1, +.my-n1 { + margin-top: -0.25rem !important; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-n1, +.mx-n1 { + margin-right: -0.25rem !important; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-n1, +.my-n1 { + margin-bottom: -0.25rem !important; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-n1, +.mx-n1 { + margin-left: -0.25rem !important; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-n2 { + margin: -0.5rem !important; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-n2, +.my-n2 { + margin-top: -0.5rem !important; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-n2, +.mx-n2 { + margin-right: -0.5rem !important; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-n2, +.my-n2 { + margin-bottom: -0.5rem !important; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-n2, +.mx-n2 { + margin-left: -0.5rem !important; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-n3 { + margin: -1rem !important; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-n3, +.my-n3 { + margin-top: -1rem !important; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-n3, +.mx-n3 { + margin-right: -1rem !important; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-n3, +.my-n3 { + margin-bottom: -1rem !important; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-n3, +.mx-n3 { + margin-left: -1rem !important; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-n4 { + margin: -1.5rem !important; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-n4, +.my-n4 { + margin-top: -1.5rem !important; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-n4, +.mx-n4 { + margin-right: -1.5rem !important; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-n4, +.my-n4 { + margin-bottom: -1.5rem !important; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-n4, +.mx-n4 { + margin-left: -1.5rem !important; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-n5 { + margin: -3rem !important; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-n5, +.my-n5 { + margin-top: -3rem !important; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-n5, +.mx-n5 { + margin-right: -3rem !important; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-n5, +.my-n5 { + margin-bottom: -3rem !important; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-n5, +.mx-n5 { + margin-left: -3rem !important; +} + +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-auto { + margin: auto !important; +} + +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-auto, +.my-auto { + margin-top: auto !important; +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-auto, +.mx-auto { + margin-right: auto !important; +} + +/* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-auto, +.my-auto { + margin-bottom: auto !important; +} + +/* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-auto, +.mx-auto { + margin-left: auto !important; +} + +@media (min-width: 576px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-0 { + margin: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-0, + .my-sm-0 { + margin-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-0, + .mx-sm-0 { + margin-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-0, + .my-sm-0 { + margin-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-0, + .mx-sm-0 { + margin-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-1 { + margin: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-1, + .my-sm-1 { + margin-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-1, + .mx-sm-1 { + margin-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-1, + .my-sm-1 { + margin-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-1, + .mx-sm-1 { + margin-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-2 { + margin: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-2, + .my-sm-2 { + margin-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-2, + .mx-sm-2 { + margin-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-2, + .my-sm-2 { + margin-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-2, + .mx-sm-2 { + margin-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-3 { + margin: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-3, + .my-sm-3 { + margin-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-3, + .mx-sm-3 { + margin-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-3, + .my-sm-3 { + margin-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-3, + .mx-sm-3 { + margin-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-4 { + margin: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-4, + .my-sm-4 { + margin-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-4, + .mx-sm-4 { + margin-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-4, + .my-sm-4 { + margin-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-4, + .mx-sm-4 { + margin-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-5 { + margin: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-5, + .my-sm-5 { + margin-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-5, + .mx-sm-5 { + margin-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-5, + .my-sm-5 { + margin-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-5, + .mx-sm-5 { + margin-left: 3rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-sm-0 { + padding: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-sm-0, + .py-sm-0 { + padding-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-sm-0, + .px-sm-0 { + padding-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-sm-0, + .py-sm-0 { + padding-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-sm-0, + .px-sm-0 { + padding-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-sm-1 { + padding: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-sm-1, + .py-sm-1 { + padding-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-sm-1, + .px-sm-1 { + padding-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-sm-1, + .py-sm-1 { + padding-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-sm-1, + .px-sm-1 { + padding-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-sm-2 { + padding: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-sm-2, + .py-sm-2 { + padding-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-sm-2, + .px-sm-2 { + padding-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-sm-2, + .py-sm-2 { + padding-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-sm-2, + .px-sm-2 { + padding-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-sm-3 { + padding: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-sm-3, + .py-sm-3 { + padding-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-sm-3, + .px-sm-3 { + padding-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-sm-3, + .py-sm-3 { + padding-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-sm-3, + .px-sm-3 { + padding-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-sm-4 { + padding: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-sm-4, + .py-sm-4 { + padding-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-sm-4, + .px-sm-4 { + padding-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-sm-4, + .py-sm-4 { + padding-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-sm-4, + .px-sm-4 { + padding-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-sm-5 { + padding: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-sm-5, + .py-sm-5 { + padding-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-sm-5, + .px-sm-5 { + padding-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-sm-5, + .py-sm-5 { + padding-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-sm-5, + .px-sm-5 { + padding-left: 3rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-n1 { + margin: -0.25rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-n1, + .my-sm-n1 { + margin-top: -0.25rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-n1, + .mx-sm-n1 { + margin-right: -0.25rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-n1, + .my-sm-n1 { + margin-bottom: -0.25rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-n1, + .mx-sm-n1 { + margin-left: -0.25rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-n2 { + margin: -0.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-n2, + .my-sm-n2 { + margin-top: -0.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-n2, + .mx-sm-n2 { + margin-right: -0.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-n2, + .my-sm-n2 { + margin-bottom: -0.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-n2, + .mx-sm-n2 { + margin-left: -0.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-n3 { + margin: -1rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-n3, + .my-sm-n3 { + margin-top: -1rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-n3, + .mx-sm-n3 { + margin-right: -1rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-n3, + .my-sm-n3 { + margin-bottom: -1rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-n3, + .mx-sm-n3 { + margin-left: -1rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-n4 { + margin: -1.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-n4, + .my-sm-n4 { + margin-top: -1.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-n4, + .mx-sm-n4 { + margin-right: -1.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-n4, + .my-sm-n4 { + margin-bottom: -1.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-n4, + .mx-sm-n4 { + margin-left: -1.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-n5 { + margin: -3rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-n5, + .my-sm-n5 { + margin-top: -3rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-n5, + .mx-sm-n5 { + margin-right: -3rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-n5, + .my-sm-n5 { + margin-bottom: -3rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-n5, + .mx-sm-n5 { + margin-left: -3rem !important; + } + /* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-auto { + margin: auto !important; + } + /* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-auto, + .my-sm-auto { + margin-top: auto !important; + } + /* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-auto, + .mx-sm-auto { + margin-right: auto !important; + } + /* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-auto, + .my-sm-auto { + margin-bottom: auto !important; + } + /* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-auto, + .mx-sm-auto { + margin-left: auto !important; + } +} + +@media (min-width: 768px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-0 { + margin: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-0, + .my-md-0 { + margin-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-0, + .mx-md-0 { + margin-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-0, + .my-md-0 { + margin-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-0, + .mx-md-0 { + margin-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-1 { + margin: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-1, + .my-md-1 { + margin-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-1, + .mx-md-1 { + margin-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-1, + .my-md-1 { + margin-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-1, + .mx-md-1 { + margin-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-2 { + margin: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-2, + .my-md-2 { + margin-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-2, + .mx-md-2 { + margin-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-2, + .my-md-2 { + margin-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-2, + .mx-md-2 { + margin-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-3 { + margin: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-3, + .my-md-3 { + margin-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-3, + .mx-md-3 { + margin-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-3, + .my-md-3 { + margin-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-3, + .mx-md-3 { + margin-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-4 { + margin: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-4, + .my-md-4 { + margin-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-4, + .mx-md-4 { + margin-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-4, + .my-md-4 { + margin-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-4, + .mx-md-4 { + margin-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-5 { + margin: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-5, + .my-md-5 { + margin-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-5, + .mx-md-5 { + margin-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-5, + .my-md-5 { + margin-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-5, + .mx-md-5 { + margin-left: 3rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-md-0 { + padding: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-md-0, + .py-md-0 { + padding-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-md-0, + .px-md-0 { + padding-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-md-0, + .py-md-0 { + padding-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-md-0, + .px-md-0 { + padding-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-md-1 { + padding: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-md-1, + .py-md-1 { + padding-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-md-1, + .px-md-1 { + padding-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-md-1, + .py-md-1 { + padding-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-md-1, + .px-md-1 { + padding-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-md-2 { + padding: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-md-2, + .py-md-2 { + padding-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-md-2, + .px-md-2 { + padding-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-md-2, + .py-md-2 { + padding-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-md-2, + .px-md-2 { + padding-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-md-3 { + padding: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-md-3, + .py-md-3 { + padding-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-md-3, + .px-md-3 { + padding-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-md-3, + .py-md-3 { + padding-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-md-3, + .px-md-3 { + padding-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-md-4 { + padding: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-md-4, + .py-md-4 { + padding-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-md-4, + .px-md-4 { + padding-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-md-4, + .py-md-4 { + padding-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-md-4, + .px-md-4 { + padding-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-md-5 { + padding: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-md-5, + .py-md-5 { + padding-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-md-5, + .px-md-5 { + padding-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-md-5, + .py-md-5 { + padding-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-md-5, + .px-md-5 { + padding-left: 3rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-n1 { + margin: -0.25rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-n1, + .my-md-n1 { + margin-top: -0.25rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-n1, + .mx-md-n1 { + margin-right: -0.25rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-n1, + .my-md-n1 { + margin-bottom: -0.25rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-n1, + .mx-md-n1 { + margin-left: -0.25rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-n2 { + margin: -0.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-n2, + .my-md-n2 { + margin-top: -0.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-n2, + .mx-md-n2 { + margin-right: -0.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-n2, + .my-md-n2 { + margin-bottom: -0.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-n2, + .mx-md-n2 { + margin-left: -0.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-n3 { + margin: -1rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-n3, + .my-md-n3 { + margin-top: -1rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-n3, + .mx-md-n3 { + margin-right: -1rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-n3, + .my-md-n3 { + margin-bottom: -1rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-n3, + .mx-md-n3 { + margin-left: -1rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-n4 { + margin: -1.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-n4, + .my-md-n4 { + margin-top: -1.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-n4, + .mx-md-n4 { + margin-right: -1.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-n4, + .my-md-n4 { + margin-bottom: -1.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-n4, + .mx-md-n4 { + margin-left: -1.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-n5 { + margin: -3rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-n5, + .my-md-n5 { + margin-top: -3rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-n5, + .mx-md-n5 { + margin-right: -3rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-n5, + .my-md-n5 { + margin-bottom: -3rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-n5, + .mx-md-n5 { + margin-left: -3rem !important; + } + /* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-auto { + margin: auto !important; + } + /* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-auto, + .my-md-auto { + margin-top: auto !important; + } + /* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-auto, + .mx-md-auto { + margin-right: auto !important; + } + /* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-auto, + .my-md-auto { + margin-bottom: auto !important; + } + /* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-auto, + .mx-md-auto { + margin-left: auto !important; + } +} + +@media (min-width: 992px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-0 { + margin: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-0, + .my-lg-0 { + margin-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-0, + .mx-lg-0 { + margin-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-0, + .my-lg-0 { + margin-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-0, + .mx-lg-0 { + margin-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-1 { + margin: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-1, + .my-lg-1 { + margin-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-1, + .mx-lg-1 { + margin-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-1, + .my-lg-1 { + margin-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-1, + .mx-lg-1 { + margin-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-2 { + margin: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-2, + .my-lg-2 { + margin-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-2, + .mx-lg-2 { + margin-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-2, + .my-lg-2 { + margin-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-2, + .mx-lg-2 { + margin-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-3 { + margin: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-3, + .my-lg-3 { + margin-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-3, + .mx-lg-3 { + margin-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-3, + .my-lg-3 { + margin-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-3, + .mx-lg-3 { + margin-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-4 { + margin: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-4, + .my-lg-4 { + margin-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-4, + .mx-lg-4 { + margin-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-4, + .my-lg-4 { + margin-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-4, + .mx-lg-4 { + margin-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-5 { + margin: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-5, + .my-lg-5 { + margin-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-5, + .mx-lg-5 { + margin-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-5, + .my-lg-5 { + margin-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-5, + .mx-lg-5 { + margin-left: 3rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-lg-0 { + padding: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-lg-0, + .py-lg-0 { + padding-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-lg-0, + .px-lg-0 { + padding-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-lg-0, + .py-lg-0 { + padding-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-lg-0, + .px-lg-0 { + padding-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-lg-1 { + padding: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-lg-1, + .py-lg-1 { + padding-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-lg-1, + .px-lg-1 { + padding-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-lg-1, + .py-lg-1 { + padding-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-lg-1, + .px-lg-1 { + padding-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-lg-2 { + padding: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-lg-2, + .py-lg-2 { + padding-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-lg-2, + .px-lg-2 { + padding-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-lg-2, + .py-lg-2 { + padding-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-lg-2, + .px-lg-2 { + padding-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-lg-3 { + padding: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-lg-3, + .py-lg-3 { + padding-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-lg-3, + .px-lg-3 { + padding-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-lg-3, + .py-lg-3 { + padding-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-lg-3, + .px-lg-3 { + padding-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-lg-4 { + padding: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-lg-4, + .py-lg-4 { + padding-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-lg-4, + .px-lg-4 { + padding-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-lg-4, + .py-lg-4 { + padding-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-lg-4, + .px-lg-4 { + padding-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-lg-5 { + padding: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-lg-5, + .py-lg-5 { + padding-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-lg-5, + .px-lg-5 { + padding-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-lg-5, + .py-lg-5 { + padding-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-lg-5, + .px-lg-5 { + padding-left: 3rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-n1 { + margin: -0.25rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-n1, + .my-lg-n1 { + margin-top: -0.25rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-n1, + .mx-lg-n1 { + margin-right: -0.25rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-n1, + .my-lg-n1 { + margin-bottom: -0.25rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-n1, + .mx-lg-n1 { + margin-left: -0.25rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-n2 { + margin: -0.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-n2, + .my-lg-n2 { + margin-top: -0.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-n2, + .mx-lg-n2 { + margin-right: -0.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-n2, + .my-lg-n2 { + margin-bottom: -0.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-n2, + .mx-lg-n2 { + margin-left: -0.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-n3 { + margin: -1rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-n3, + .my-lg-n3 { + margin-top: -1rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-n3, + .mx-lg-n3 { + margin-right: -1rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-n3, + .my-lg-n3 { + margin-bottom: -1rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-n3, + .mx-lg-n3 { + margin-left: -1rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-n4 { + margin: -1.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-n4, + .my-lg-n4 { + margin-top: -1.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-n4, + .mx-lg-n4 { + margin-right: -1.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-n4, + .my-lg-n4 { + margin-bottom: -1.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-n4, + .mx-lg-n4 { + margin-left: -1.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-n5 { + margin: -3rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-n5, + .my-lg-n5 { + margin-top: -3rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-n5, + .mx-lg-n5 { + margin-right: -3rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-n5, + .my-lg-n5 { + margin-bottom: -3rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-n5, + .mx-lg-n5 { + margin-left: -3rem !important; + } + /* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-auto { + margin: auto !important; + } + /* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-auto, + .my-lg-auto { + margin-top: auto !important; + } + /* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-auto, + .mx-lg-auto { + margin-right: auto !important; + } + /* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-auto, + .my-lg-auto { + margin-bottom: auto !important; + } + /* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-auto, + .mx-lg-auto { + margin-left: auto !important; + } +} + +@media (min-width: 1200px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-0 { + margin: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-0, + .my-xl-0 { + margin-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-0, + .mx-xl-0 { + margin-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-0, + .my-xl-0 { + margin-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-0, + .mx-xl-0 { + margin-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-1 { + margin: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-1, + .my-xl-1 { + margin-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-1, + .mx-xl-1 { + margin-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-1, + .my-xl-1 { + margin-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-1, + .mx-xl-1 { + margin-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-2 { + margin: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-2, + .my-xl-2 { + margin-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-2, + .mx-xl-2 { + margin-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-2, + .my-xl-2 { + margin-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-2, + .mx-xl-2 { + margin-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-3 { + margin: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-3, + .my-xl-3 { + margin-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-3, + .mx-xl-3 { + margin-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-3, + .my-xl-3 { + margin-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-3, + .mx-xl-3 { + margin-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-4 { + margin: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-4, + .my-xl-4 { + margin-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-4, + .mx-xl-4 { + margin-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-4, + .my-xl-4 { + margin-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-4, + .mx-xl-4 { + margin-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-5 { + margin: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-5, + .my-xl-5 { + margin-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-5, + .mx-xl-5 { + margin-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-5, + .my-xl-5 { + margin-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-5, + .mx-xl-5 { + margin-left: 3rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-xl-0 { + padding: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-xl-0, + .py-xl-0 { + padding-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-xl-0, + .px-xl-0 { + padding-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-xl-0, + .py-xl-0 { + padding-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-xl-0, + .px-xl-0 { + padding-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-xl-1 { + padding: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-xl-1, + .py-xl-1 { + padding-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-xl-1, + .px-xl-1 { + padding-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-xl-1, + .py-xl-1 { + padding-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-xl-1, + .px-xl-1 { + padding-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-xl-2 { + padding: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-xl-2, + .py-xl-2 { + padding-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-xl-2, + .px-xl-2 { + padding-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-xl-2, + .py-xl-2 { + padding-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-xl-2, + .px-xl-2 { + padding-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-xl-3 { + padding: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-xl-3, + .py-xl-3 { + padding-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-xl-3, + .px-xl-3 { + padding-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-xl-3, + .py-xl-3 { + padding-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-xl-3, + .px-xl-3 { + padding-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-xl-4 { + padding: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-xl-4, + .py-xl-4 { + padding-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-xl-4, + .px-xl-4 { + padding-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-xl-4, + .py-xl-4 { + padding-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-xl-4, + .px-xl-4 { + padding-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-xl-5 { + padding: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-xl-5, + .py-xl-5 { + padding-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-xl-5, + .px-xl-5 { + padding-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-xl-5, + .py-xl-5 { + padding-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-xl-5, + .px-xl-5 { + padding-left: 3rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-n1 { + margin: -0.25rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-n1, + .my-xl-n1 { + margin-top: -0.25rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-n1, + .mx-xl-n1 { + margin-right: -0.25rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-n1, + .my-xl-n1 { + margin-bottom: -0.25rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-n1, + .mx-xl-n1 { + margin-left: -0.25rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-n2 { + margin: -0.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-n2, + .my-xl-n2 { + margin-top: -0.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-n2, + .mx-xl-n2 { + margin-right: -0.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-n2, + .my-xl-n2 { + margin-bottom: -0.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-n2, + .mx-xl-n2 { + margin-left: -0.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-n3 { + margin: -1rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-n3, + .my-xl-n3 { + margin-top: -1rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-n3, + .mx-xl-n3 { + margin-right: -1rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-n3, + .my-xl-n3 { + margin-bottom: -1rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-n3, + .mx-xl-n3 { + margin-left: -1rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-n4 { + margin: -1.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-n4, + .my-xl-n4 { + margin-top: -1.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-n4, + .mx-xl-n4 { + margin-right: -1.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-n4, + .my-xl-n4 { + margin-bottom: -1.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-n4, + .mx-xl-n4 { + margin-left: -1.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-n5 { + margin: -3rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-n5, + .my-xl-n5 { + margin-top: -3rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-n5, + .mx-xl-n5 { + margin-right: -3rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-n5, + .my-xl-n5 { + margin-bottom: -3rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-n5, + .mx-xl-n5 { + margin-left: -3rem !important; + } + /* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-auto { + margin: auto !important; + } + /* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-auto, + .my-xl-auto { + margin-top: auto !important; + } + /* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-auto, + .mx-xl-auto { + margin-right: auto !important; + } + /* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-auto, + .my-xl-auto { + margin-bottom: auto !important; + } + /* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-auto, + .mx-xl-auto { + margin-left: auto !important; + } +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-monospace { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-justify { + text-align: justify !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-wrap { + white-space: normal !important; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-nowrap { + white-space: nowrap !important; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-left { + text-align: left !important; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-right { + text-align: right !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-center { + text-align: center !important; +} + +@media (min-width: 576px) { + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-sm-left { + text-align: left !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-sm-right { + text-align: right !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-sm-center { + text-align: center !important; + } +} + +@media (min-width: 768px) { + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-md-left { + text-align: left !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-md-right { + text-align: right !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-md-center { + text-align: center !important; + } +} + +@media (min-width: 992px) { + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-lg-left { + text-align: left !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-lg-right { + text-align: right !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-lg-center { + text-align: center !important; + } +} + +@media (min-width: 1200px) { + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-xl-left { + text-align: left !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-xl-right { + text-align: right !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-xl-center { + text-align: center !important; + } +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-lowercase { + text-transform: lowercase !important; +} + +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-uppercase { + text-transform: uppercase !important; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-capitalize { + text-transform: capitalize !important; +} + +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.font-weight-light { + font-weight: 300 !important; +} + +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.font-weight-lighter { + font-weight: lighter !important; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.font-weight-normal { + font-weight: 400 !important; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.font-weight-bold { + font-weight: 700 !important; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.font-weight-bolder { + font-weight: bolder !important; +} + +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.font-italic { + font-style: italic !important; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-white { + color: #fff !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-primary { + color: #007bff !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-primary:hover, a.text-primary:focus { + color: #0056b3 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-secondary { + color: #6c757d !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-secondary:hover, a.text-secondary:focus { + color: #494f54 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-success { + color: #28a745 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-success:hover, a.text-success:focus { + color: #19692c !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-info { + color: #17a2b8 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-info:hover, a.text-info:focus { + color: #0f6674 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-warning { + color: #ffc107 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-warning:hover, a.text-warning:focus { + color: #ba8b00 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-danger { + color: #dc3545 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-danger:hover, a.text-danger:focus { + color: #a71d2a !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-light { + color: #f8f9fa !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-light:hover, a.text-light:focus { + color: #cbd3da !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-dark { + color: #343a40 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-dark:hover, a.text-dark:focus { + color: #121416 !important; +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-body { + color: #212529 !important; +} + +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-muted { + color: #6c757d !important; +} + +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-black-50 { + color: rgba(0, 0, 0, 0.5) !important; +} + +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-white-50 { + color: rgba(255, 255, 255, 0.5) !important; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +/* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-decoration-none { + text-decoration: none !important; +} + +/* line 65, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-break { + word-break: break-word !important; + overflow-wrap: break-word !important; +} + +/* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-reset { + color: inherit !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_visibility.scss */ +.visible { + visibility: visible !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_visibility.scss */ +.invisible { + visibility: hidden !important; +} + +@media print { + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + *, + *::before, + *::after { + text-shadow: none !important; + box-shadow: none !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + a:not(.btn) { + text-decoration: underline; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + abbr[title]::after { + content: " (" attr(title) ")"; + } + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + pre { + white-space: pre-wrap !important; + } + /* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + pre, + blockquote { + border: 1px solid #adb5bd; + page-break-inside: avoid; + } + /* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + thead { + display: table-header-group; + } + /* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + tr, + img { + page-break-inside: avoid; + } + /* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + /* line 79, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + h2, + h3 { + page-break-after: avoid; + } + @page { + size: a3; + } + /* line 92, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + body { + min-width: 992px !important; + } + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .container { + min-width: 992px !important; + } + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .navbar { + display: none; + } + /* line 103, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .badge { + border: 1px solid #000; + } + /* line 107, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .table { + border-collapse: collapse !important; + } + /* line 110, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .table td, + .table th { + background-color: #fff !important; + } + /* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .table-bordered th, + .table-bordered td { + border: 1px solid #dee2e6 !important; + } + /* line 123, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .table-dark { + color: inherit; + } + /* line 126, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .table-dark th, + .table-dark td, + .table-dark thead th, + .table-dark tbody + tbody { + border-color: #dee2e6; + } + /* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .table .thead-dark th { + color: inherit; + border-color: #dee2e6; + } +} + +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ +/* FONT PATH + * -------------------------- */ +@font-face { + font-family: 'FontAwesome'; + src: url("/assets/font-awesome/fontawesome-webfont-7bfcab6db99d5cfbf1705ca0536ddc78585432cc5fa41bbd7ad0f009033b2979.eot?v=4.7.0"); + src: url("/assets/font-awesome/fontawesome-webfont-7bfcab6db99d5cfbf1705ca0536ddc78585432cc5fa41bbd7ad0f009033b2979.eot?v=4.7.0#iefix") format("embedded-opentype"), url("/assets/font-awesome/fontawesome-webfont-2adefcbc041e7d18fcf2d417879dc5a09997aa64d675b7a3c4b6ce33da13f3fe.woff2?v=4.7.0") format("woff2"), url("/assets/font-awesome/fontawesome-webfont-ba0c59deb5450f5cb41b3f93609ee2d0d995415877ddfa223e8a8a7533474f07.woff?v=4.7.0") format("woff"), url("/assets/font-awesome/fontawesome-webfont-aa58f33f239a0fb02f5c7a6c45c043d7a9ac9a093335806694ecd6d4edc0d6a8.ttf?v=4.7.0") format("truetype"), url("/assets/font-awesome/fontawesome-webfont-ad6157926c1622ba4e1d03d478f1541368524bfc46f51e42fe0d945f7ef323e4.svg?v=4.7.0#fontawesomeregular") format("svg"); + font-weight: normal; + font-style: normal; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_core.scss */ +.fa { + display: inline-block; + font: normal normal normal 14px/1 FontAwesome; + font-size: inherit; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +/* makes the font 33% larger relative to the icon container */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ +.fa-lg { + font-size: 1.33333em; + line-height: 0.75em; + vertical-align: -15%; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ +.fa-2x { + font-size: 2em; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ +.fa-3x { + font-size: 3em; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ +.fa-4x { + font-size: 4em; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ +.fa-5x { + font-size: 5em; +} + +/* line 3, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_fixed-width.scss */ +.fa-fw { + width: 1.28571em; + text-align: center; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ +.fa-ul { + padding-left: 0; + margin-left: 2.14286em; + list-style-type: none; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ +.fa-ul > li { + position: relative; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ +.fa-li { + position: absolute; + left: -2.14286em; + width: 2.14286em; + top: 0.14286em; + text-align: center; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ +.fa-li.fa-lg { + left: -1.85714em; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +.fa-border { + padding: .2em .25em .15em; + border: solid 0.08em #eee; + border-radius: .1em; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +.fa-pull-left { + float: left; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +.fa-pull-right { + float: right; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +.fa.fa-pull-left { + margin-right: .3em; +} + +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +.fa.fa-pull-right { + margin-left: .3em; +} + +/* Deprecated as of 4.4.0 */ +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +.pull-right { + float: right; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +.pull-left { + float: left; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +.fa.pull-left { + margin-right: .3em; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +.fa.pull-right { + margin-left: .3em; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_animated.scss */ +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; +} + +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_animated.scss */ +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); +} + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + transform: rotate(180deg); +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + transform: rotate(270deg); +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); +} + +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + transform: scale(1, -1); +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + -webkit-filter: none; + filter: none; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ +.fa-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ +.fa-stack-1x, .fa-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ +.fa-stack-1x { + line-height: inherit; +} + +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ +.fa-stack-2x { + font-size: 2em; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ +.fa-inverse { + color: #fff; +} + +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-glass:before { + content: ""; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-music:before { + content: ""; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-search:before { + content: ""; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-envelope-o:before { + content: ""; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-heart:before { + content: ""; +} + +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-star:before { + content: ""; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-star-o:before { + content: ""; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-user:before { + content: ""; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-film:before { + content: ""; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-th-large:before { + content: ""; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-th:before { + content: ""; +} + +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-th-list:before { + content: ""; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-check:before { + content: ""; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-remove:before, +.fa-close:before, +.fa-times:before { + content: ""; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-search-plus:before { + content: ""; +} + +/* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-search-minus:before { + content: ""; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-power-off:before { + content: ""; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-signal:before { + content: ""; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-gear:before, +.fa-cog:before { + content: ""; +} + +/* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-trash-o:before { + content: ""; +} + +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-home:before { + content: ""; +} + +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-o:before { + content: ""; +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-clock-o:before { + content: ""; +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-road:before { + content: ""; +} + +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-download:before { + content: ""; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-circle-o-down:before { + content: ""; +} + +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-circle-o-up:before { + content: ""; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-inbox:before { + content: ""; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-play-circle-o:before { + content: ""; +} + +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-rotate-right:before, +.fa-repeat:before { + content: ""; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-refresh:before { + content: ""; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-list-alt:before { + content: ""; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-lock:before { + content: ""; +} + +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-flag:before { + content: ""; +} + +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-headphones:before { + content: ""; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-volume-off:before { + content: ""; +} + +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-volume-down:before { + content: ""; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-volume-up:before { + content: ""; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-qrcode:before { + content: ""; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-barcode:before { + content: ""; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tag:before { + content: ""; +} + +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tags:before { + content: ""; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-book:before { + content: ""; +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bookmark:before { + content: ""; +} + +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-print:before { + content: ""; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-camera:before { + content: ""; +} + +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-font:before { + content: ""; +} + +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bold:before { + content: ""; +} + +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-italic:before { + content: ""; +} + +/* line 57, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-text-height:before { + content: ""; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-text-width:before { + content: ""; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-align-left:before { + content: ""; +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-align-center:before { + content: ""; +} + +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-align-right:before { + content: ""; +} + +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-align-justify:before { + content: ""; +} + +/* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-list:before { + content: ""; +} + +/* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-dedent:before, +.fa-outdent:before { + content: ""; +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-indent:before { + content: ""; +} + +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-video-camera:before { + content: ""; +} + +/* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-photo:before, +.fa-image:before, +.fa-picture-o:before { + content: ""; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pencil:before { + content: ""; +} + +/* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-map-marker:before { + content: ""; +} + +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-adjust:before { + content: ""; +} + +/* line 74, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tint:before { + content: ""; +} + +/* line 75, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-edit:before, +.fa-pencil-square-o:before { + content: ""; +} + +/* line 77, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-share-square-o:before { + content: ""; +} + +/* line 78, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-check-square-o:before { + content: ""; +} + +/* line 79, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrows:before { + content: ""; +} + +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-step-backward:before { + content: ""; +} + +/* line 81, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-fast-backward:before { + content: ""; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-backward:before { + content: ""; +} + +/* line 83, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-play:before { + content: ""; +} + +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pause:before { + content: ""; +} + +/* line 85, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-stop:before { + content: ""; +} + +/* line 86, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-forward:before { + content: ""; +} + +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-fast-forward:before { + content: ""; +} + +/* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-step-forward:before { + content: ""; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-eject:before { + content: ""; +} + +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-chevron-left:before { + content: ""; +} + +/* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-chevron-right:before { + content: ""; +} + +/* line 92, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-plus-circle:before { + content: ""; +} + +/* line 93, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-minus-circle:before { + content: ""; +} + +/* line 94, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-times-circle:before { + content: ""; +} + +/* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-check-circle:before { + content: ""; +} + +/* line 96, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-question-circle:before { + content: ""; +} + +/* line 97, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-info-circle:before { + content: ""; +} + +/* line 98, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-crosshairs:before { + content: ""; +} + +/* line 99, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-times-circle-o:before { + content: ""; +} + +/* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-check-circle-o:before { + content: ""; +} + +/* line 101, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ban:before { + content: ""; +} + +/* line 102, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-left:before { + content: ""; +} + +/* line 103, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-right:before { + content: ""; +} + +/* line 104, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-up:before { + content: ""; +} + +/* line 105, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-down:before { + content: ""; +} + +/* line 106, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mail-forward:before, +.fa-share:before { + content: ""; +} + +/* line 108, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-expand:before { + content: ""; +} + +/* line 109, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-compress:before { + content: ""; +} + +/* line 110, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-plus:before { + content: ""; +} + +/* line 111, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-minus:before { + content: ""; +} + +/* line 112, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-asterisk:before { + content: ""; +} + +/* line 113, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-exclamation-circle:before { + content: ""; +} + +/* line 114, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-gift:before { + content: ""; +} + +/* line 115, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-leaf:before { + content: ""; +} + +/* line 116, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-fire:before { + content: ""; +} + +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-eye:before { + content: ""; +} + +/* line 118, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-eye-slash:before { + content: ""; +} + +/* line 119, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-warning:before, +.fa-exclamation-triangle:before { + content: ""; +} + +/* line 121, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-plane:before { + content: ""; +} + +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-calendar:before { + content: ""; +} + +/* line 123, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-random:before { + content: ""; +} + +/* line 124, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-comment:before { + content: ""; +} + +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-magnet:before { + content: ""; +} + +/* line 126, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-chevron-up:before { + content: ""; +} + +/* line 127, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-chevron-down:before { + content: ""; +} + +/* line 128, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-retweet:before { + content: ""; +} + +/* line 129, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-shopping-cart:before { + content: ""; +} + +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-folder:before { + content: ""; +} + +/* line 131, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-folder-open:before { + content: ""; +} + +/* line 132, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrows-v:before { + content: ""; +} + +/* line 133, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrows-h:before { + content: ""; +} + +/* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bar-chart-o:before, +.fa-bar-chart:before { + content: ""; +} + +/* line 136, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-twitter-square:before { + content: ""; +} + +/* line 137, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-facebook-square:before { + content: ""; +} + +/* line 138, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-camera-retro:before { + content: ""; +} + +/* line 139, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-key:before { + content: ""; +} + +/* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-gears:before, +.fa-cogs:before { + content: ""; +} + +/* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-comments:before { + content: ""; +} + +/* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-thumbs-o-up:before { + content: ""; +} + +/* line 144, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-thumbs-o-down:before { + content: ""; +} + +/* line 145, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-star-half:before { + content: ""; +} + +/* line 146, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-heart-o:before { + content: ""; +} + +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sign-out:before { + content: ""; +} + +/* line 148, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-linkedin-square:before { + content: ""; +} + +/* line 149, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-thumb-tack:before { + content: ""; +} + +/* line 150, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-external-link:before { + content: ""; +} + +/* line 151, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sign-in:before { + content: ""; +} + +/* line 152, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-trophy:before { + content: ""; +} + +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-github-square:before { + content: ""; +} + +/* line 154, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-upload:before { + content: ""; +} + +/* line 155, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-lemon-o:before { + content: ""; +} + +/* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-phone:before { + content: ""; +} + +/* line 157, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-square-o:before { + content: ""; +} + +/* line 158, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bookmark-o:before { + content: ""; +} + +/* line 159, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-phone-square:before { + content: ""; +} + +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-twitter:before { + content: ""; +} + +/* line 161, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-facebook-f:before, +.fa-facebook:before { + content: ""; +} + +/* line 163, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-github:before { + content: ""; +} + +/* line 164, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-unlock:before { + content: ""; +} + +/* line 165, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-credit-card:before { + content: ""; +} + +/* line 166, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-feed:before, +.fa-rss:before { + content: ""; +} + +/* line 168, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hdd-o:before { + content: ""; +} + +/* line 169, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bullhorn:before { + content: ""; +} + +/* line 170, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bell:before { + content: ""; +} + +/* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-certificate:before { + content: ""; +} + +/* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-o-right:before { + content: ""; +} + +/* line 173, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-o-left:before { + content: ""; +} + +/* line 174, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-o-up:before { + content: ""; +} + +/* line 175, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-o-down:before { + content: ""; +} + +/* line 176, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-circle-left:before { + content: ""; +} + +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-circle-right:before { + content: ""; +} + +/* line 178, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-circle-up:before { + content: ""; +} + +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-circle-down:before { + content: ""; +} + +/* line 180, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-globe:before { + content: ""; +} + +/* line 181, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-wrench:before { + content: ""; +} + +/* line 182, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tasks:before { + content: ""; +} + +/* line 183, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-filter:before { + content: ""; +} + +/* line 184, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-briefcase:before { + content: ""; +} + +/* line 185, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrows-alt:before { + content: ""; +} + +/* line 186, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-group:before, +.fa-users:before { + content: ""; +} + +/* line 188, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-chain:before, +.fa-link:before { + content: ""; +} + +/* line 190, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cloud:before { + content: ""; +} + +/* line 191, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-flask:before { + content: ""; +} + +/* line 192, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cut:before, +.fa-scissors:before { + content: ""; +} + +/* line 194, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-copy:before, +.fa-files-o:before { + content: ""; +} + +/* line 196, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-paperclip:before { + content: ""; +} + +/* line 197, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-save:before, +.fa-floppy-o:before { + content: ""; +} + +/* line 199, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-square:before { + content: ""; +} + +/* line 200, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-navicon:before, +.fa-reorder:before, +.fa-bars:before { + content: ""; +} + +/* line 203, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-list-ul:before { + content: ""; +} + +/* line 204, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-list-ol:before { + content: ""; +} + +/* line 205, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-strikethrough:before { + content: ""; +} + +/* line 206, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-underline:before { + content: ""; +} + +/* line 207, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-table:before { + content: ""; +} + +/* line 208, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-magic:before { + content: ""; +} + +/* line 209, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-truck:before { + content: ""; +} + +/* line 210, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pinterest:before { + content: ""; +} + +/* line 211, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pinterest-square:before { + content: ""; +} + +/* line 212, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-google-plus-square:before { + content: ""; +} + +/* line 213, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-google-plus:before { + content: ""; +} + +/* line 214, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-money:before { + content: ""; +} + +/* line 215, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-caret-down:before { + content: ""; +} + +/* line 216, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-caret-up:before { + content: ""; +} + +/* line 217, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-caret-left:before { + content: ""; +} + +/* line 218, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-caret-right:before { + content: ""; +} + +/* line 219, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-columns:before { + content: ""; +} + +/* line 220, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-unsorted:before, +.fa-sort:before { + content: ""; +} + +/* line 222, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sort-down:before, +.fa-sort-desc:before { + content: ""; +} + +/* line 224, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sort-up:before, +.fa-sort-asc:before { + content: ""; +} + +/* line 226, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-envelope:before { + content: ""; +} + +/* line 227, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-linkedin:before { + content: ""; +} + +/* line 228, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-rotate-left:before, +.fa-undo:before { + content: ""; +} + +/* line 230, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-legal:before, +.fa-gavel:before { + content: ""; +} + +/* line 232, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-dashboard:before, +.fa-tachometer:before { + content: ""; +} + +/* line 234, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-comment-o:before { + content: ""; +} + +/* line 235, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-comments-o:before { + content: ""; +} + +/* line 236, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-flash:before, +.fa-bolt:before { + content: ""; +} + +/* line 238, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sitemap:before { + content: ""; +} + +/* line 239, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-umbrella:before { + content: ""; +} + +/* line 240, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-paste:before, +.fa-clipboard:before { + content: ""; +} + +/* line 242, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-lightbulb-o:before { + content: ""; +} + +/* line 243, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-exchange:before { + content: ""; +} + +/* line 244, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cloud-download:before { + content: ""; +} + +/* line 245, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cloud-upload:before { + content: ""; +} + +/* line 246, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-user-md:before { + content: ""; +} + +/* line 247, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-stethoscope:before { + content: ""; +} + +/* line 248, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-suitcase:before { + content: ""; +} + +/* line 249, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bell-o:before { + content: ""; +} + +/* line 250, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-coffee:before { + content: ""; +} + +/* line 251, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cutlery:before { + content: ""; +} + +/* line 252, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-text-o:before { + content: ""; +} + +/* line 253, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-building-o:before { + content: ""; +} + +/* line 254, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hospital-o:before { + content: ""; +} + +/* line 255, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ambulance:before { + content: ""; +} + +/* line 256, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-medkit:before { + content: ""; +} + +/* line 257, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-fighter-jet:before { + content: ""; +} + +/* line 258, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-beer:before { + content: ""; +} + +/* line 259, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-h-square:before { + content: ""; +} + +/* line 260, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-plus-square:before { + content: ""; +} + +/* line 261, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-angle-double-left:before { + content: ""; +} + +/* line 262, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-angle-double-right:before { + content: ""; +} + +/* line 263, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-angle-double-up:before { + content: ""; +} + +/* line 264, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-angle-double-down:before { + content: ""; +} + +/* line 265, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-angle-left:before { + content: ""; +} + +/* line 266, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-angle-right:before { + content: ""; +} + +/* line 267, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-angle-up:before { + content: ""; +} + +/* line 268, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-angle-down:before { + content: ""; +} + +/* line 269, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-desktop:before { + content: ""; +} + +/* line 270, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-laptop:before { + content: ""; +} + +/* line 271, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tablet:before { + content: ""; +} + +/* line 272, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mobile-phone:before, +.fa-mobile:before { + content: ""; +} + +/* line 274, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-circle-o:before { + content: ""; +} + +/* line 275, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-quote-left:before { + content: ""; +} + +/* line 276, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-quote-right:before { + content: ""; +} + +/* line 277, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-spinner:before { + content: ""; +} + +/* line 278, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-circle:before { + content: ""; +} + +/* line 279, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mail-reply:before, +.fa-reply:before { + content: ""; +} + +/* line 281, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-github-alt:before { + content: ""; +} + +/* line 282, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-folder-o:before { + content: ""; +} + +/* line 283, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-folder-open-o:before { + content: ""; +} + +/* line 284, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-smile-o:before { + content: ""; +} + +/* line 285, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-frown-o:before { + content: ""; +} + +/* line 286, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-meh-o:before { + content: ""; +} + +/* line 287, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-gamepad:before { + content: ""; +} + +/* line 288, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-keyboard-o:before { + content: ""; +} + +/* line 289, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-flag-o:before { + content: ""; +} + +/* line 290, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-flag-checkered:before { + content: ""; +} + +/* line 291, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-terminal:before { + content: ""; +} + +/* line 292, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-code:before { + content: ""; +} + +/* line 293, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mail-reply-all:before, +.fa-reply-all:before { + content: ""; +} + +/* line 295, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-star-half-empty:before, +.fa-star-half-full:before, +.fa-star-half-o:before { + content: ""; +} + +/* line 298, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-location-arrow:before { + content: ""; +} + +/* line 299, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-crop:before { + content: ""; +} + +/* line 300, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-code-fork:before { + content: ""; +} + +/* line 301, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-unlink:before, +.fa-chain-broken:before { + content: ""; +} + +/* line 303, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-question:before { + content: ""; +} + +/* line 304, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-info:before { + content: ""; +} + +/* line 305, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-exclamation:before { + content: ""; +} + +/* line 306, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-superscript:before { + content: ""; +} + +/* line 307, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-subscript:before { + content: ""; +} + +/* line 308, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-eraser:before { + content: ""; +} + +/* line 309, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-puzzle-piece:before { + content: ""; +} + +/* line 310, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-microphone:before { + content: ""; +} + +/* line 311, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-microphone-slash:before { + content: ""; +} + +/* line 312, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-shield:before { + content: ""; +} + +/* line 313, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-calendar-o:before { + content: ""; +} + +/* line 314, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-fire-extinguisher:before { + content: ""; +} + +/* line 315, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-rocket:before { + content: ""; +} + +/* line 316, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-maxcdn:before { + content: ""; +} + +/* line 317, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-chevron-circle-left:before { + content: ""; +} + +/* line 318, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-chevron-circle-right:before { + content: ""; +} + +/* line 319, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-chevron-circle-up:before { + content: ""; +} + +/* line 320, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-chevron-circle-down:before { + content: ""; +} + +/* line 321, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-html5:before { + content: ""; +} + +/* line 322, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-css3:before { + content: ""; +} + +/* line 323, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-anchor:before { + content: ""; +} + +/* line 324, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-unlock-alt:before { + content: ""; +} + +/* line 325, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bullseye:before { + content: ""; +} + +/* line 326, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ellipsis-h:before { + content: ""; +} + +/* line 327, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ellipsis-v:before { + content: ""; +} + +/* line 328, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-rss-square:before { + content: ""; +} + +/* line 329, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-play-circle:before { + content: ""; +} + +/* line 330, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ticket:before { + content: ""; +} + +/* line 331, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-minus-square:before { + content: ""; +} + +/* line 332, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-minus-square-o:before { + content: ""; +} + +/* line 333, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-level-up:before { + content: ""; +} + +/* line 334, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-level-down:before { + content: ""; +} + +/* line 335, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-check-square:before { + content: ""; +} + +/* line 336, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pencil-square:before { + content: ""; +} + +/* line 337, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-external-link-square:before { + content: ""; +} + +/* line 338, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-share-square:before { + content: ""; +} + +/* line 339, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-compass:before { + content: ""; +} + +/* line 340, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-toggle-down:before, +.fa-caret-square-o-down:before { + content: ""; +} + +/* line 342, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-toggle-up:before, +.fa-caret-square-o-up:before { + content: ""; +} + +/* line 344, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-toggle-right:before, +.fa-caret-square-o-right:before { + content: ""; +} + +/* line 346, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-euro:before, +.fa-eur:before { + content: ""; +} + +/* line 348, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-gbp:before { + content: ""; +} + +/* line 349, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-dollar:before, +.fa-usd:before { + content: ""; +} + +/* line 351, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-rupee:before, +.fa-inr:before { + content: ""; +} + +/* line 353, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cny:before, +.fa-rmb:before, +.fa-yen:before, +.fa-jpy:before { + content: ""; +} + +/* line 357, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ruble:before, +.fa-rouble:before, +.fa-rub:before { + content: ""; +} + +/* line 360, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-won:before, +.fa-krw:before { + content: ""; +} + +/* line 362, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bitcoin:before, +.fa-btc:before { + content: ""; +} + +/* line 364, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file:before { + content: ""; +} + +/* line 365, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-text:before { + content: ""; +} + +/* line 366, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sort-alpha-asc:before { + content: ""; +} + +/* line 367, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sort-alpha-desc:before { + content: ""; +} + +/* line 368, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sort-amount-asc:before { + content: ""; +} + +/* line 369, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sort-amount-desc:before { + content: ""; +} + +/* line 370, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sort-numeric-asc:before { + content: ""; +} + +/* line 371, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sort-numeric-desc:before { + content: ""; +} + +/* line 372, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-thumbs-up:before { + content: ""; +} + +/* line 373, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-thumbs-down:before { + content: ""; +} + +/* line 374, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-youtube-square:before { + content: ""; +} + +/* line 375, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-youtube:before { + content: ""; +} + +/* line 376, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-xing:before { + content: ""; +} + +/* line 377, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-xing-square:before { + content: ""; +} + +/* line 378, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-youtube-play:before { + content: ""; +} + +/* line 379, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-dropbox:before { + content: ""; +} + +/* line 380, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-stack-overflow:before { + content: ""; +} + +/* line 381, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-instagram:before { + content: ""; +} + +/* line 382, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-flickr:before { + content: ""; +} + +/* line 383, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-adn:before { + content: ""; +} + +/* line 384, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bitbucket:before { + content: ""; +} + +/* line 385, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bitbucket-square:before { + content: ""; +} + +/* line 386, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tumblr:before { + content: ""; +} + +/* line 387, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tumblr-square:before { + content: ""; +} + +/* line 388, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-long-arrow-down:before { + content: ""; +} + +/* line 389, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-long-arrow-up:before { + content: ""; +} + +/* line 390, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-long-arrow-left:before { + content: ""; +} + +/* line 391, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-long-arrow-right:before { + content: ""; +} + +/* line 392, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-apple:before { + content: ""; +} + +/* line 393, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-windows:before { + content: ""; +} + +/* line 394, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-android:before { + content: ""; +} + +/* line 395, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-linux:before { + content: ""; +} + +/* line 396, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-dribbble:before { + content: ""; +} + +/* line 397, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-skype:before { + content: ""; +} + +/* line 398, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-foursquare:before { + content: ""; +} + +/* line 399, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-trello:before { + content: ""; +} + +/* line 400, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-female:before { + content: ""; +} + +/* line 401, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-male:before { + content: ""; +} + +/* line 402, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-gittip:before, +.fa-gratipay:before { + content: ""; +} + +/* line 404, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sun-o:before { + content: ""; +} + +/* line 405, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-moon-o:before { + content: ""; +} + +/* line 406, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-archive:before { + content: ""; +} + +/* line 407, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bug:before { + content: ""; +} + +/* line 408, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-vk:before { + content: ""; +} + +/* line 409, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-weibo:before { + content: ""; +} + +/* line 410, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-renren:before { + content: ""; +} + +/* line 411, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pagelines:before { + content: ""; +} + +/* line 412, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-stack-exchange:before { + content: ""; +} + +/* line 413, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-circle-o-right:before { + content: ""; +} + +/* line 414, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-circle-o-left:before { + content: ""; +} + +/* line 415, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-toggle-left:before, +.fa-caret-square-o-left:before { + content: ""; +} + +/* line 417, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-dot-circle-o:before { + content: ""; +} + +/* line 418, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-wheelchair:before { + content: ""; +} + +/* line 419, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-vimeo-square:before { + content: ""; +} + +/* line 420, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-turkish-lira:before, +.fa-try:before { + content: ""; +} + +/* line 422, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-plus-square-o:before { + content: ""; +} + +/* line 423, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-space-shuttle:before { + content: ""; +} + +/* line 424, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-slack:before { + content: ""; +} + +/* line 425, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-envelope-square:before { + content: ""; +} + +/* line 426, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-wordpress:before { + content: ""; +} + +/* line 427, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-openid:before { + content: ""; +} + +/* line 428, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-institution:before, +.fa-bank:before, +.fa-university:before { + content: ""; +} + +/* line 431, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mortar-board:before, +.fa-graduation-cap:before { + content: ""; +} + +/* line 433, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-yahoo:before { + content: ""; +} + +/* line 434, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-google:before { + content: ""; +} + +/* line 435, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-reddit:before { + content: ""; +} + +/* line 436, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-reddit-square:before { + content: ""; +} + +/* line 437, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-stumbleupon-circle:before { + content: ""; +} + +/* line 438, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-stumbleupon:before { + content: ""; +} + +/* line 439, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-delicious:before { + content: ""; +} + +/* line 440, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-digg:before { + content: ""; +} + +/* line 441, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pied-piper-pp:before { + content: ""; +} + +/* line 442, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pied-piper-alt:before { + content: ""; +} + +/* line 443, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-drupal:before { + content: ""; +} + +/* line 444, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-joomla:before { + content: ""; +} + +/* line 445, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-language:before { + content: ""; +} + +/* line 446, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-fax:before { + content: ""; +} + +/* line 447, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-building:before { + content: ""; +} + +/* line 448, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-child:before { + content: ""; +} + +/* line 449, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-paw:before { + content: ""; +} + +/* line 450, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-spoon:before { + content: ""; +} + +/* line 451, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cube:before { + content: ""; +} + +/* line 452, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cubes:before { + content: ""; +} + +/* line 453, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-behance:before { + content: ""; +} + +/* line 454, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-behance-square:before { + content: ""; +} + +/* line 455, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-steam:before { + content: ""; +} + +/* line 456, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-steam-square:before { + content: ""; +} + +/* line 457, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-recycle:before { + content: ""; +} + +/* line 458, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-automobile:before, +.fa-car:before { + content: ""; +} + +/* line 460, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cab:before, +.fa-taxi:before { + content: ""; +} + +/* line 462, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tree:before { + content: ""; +} + +/* line 463, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-spotify:before { + content: ""; +} + +/* line 464, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-deviantart:before { + content: ""; +} + +/* line 465, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-soundcloud:before { + content: ""; +} + +/* line 466, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-database:before { + content: ""; +} + +/* line 467, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-pdf-o:before { + content: ""; +} + +/* line 468, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-word-o:before { + content: ""; +} + +/* line 469, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-excel-o:before { + content: ""; +} + +/* line 470, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-powerpoint-o:before { + content: ""; +} + +/* line 471, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-photo-o:before, +.fa-file-picture-o:before, +.fa-file-image-o:before { + content: ""; +} + +/* line 474, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-zip-o:before, +.fa-file-archive-o:before { + content: ""; +} + +/* line 476, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-sound-o:before, +.fa-file-audio-o:before { + content: ""; +} + +/* line 478, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-movie-o:before, +.fa-file-video-o:before { + content: ""; +} + +/* line 480, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-code-o:before { + content: ""; +} + +/* line 481, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-vine:before { + content: ""; +} + +/* line 482, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-codepen:before { + content: ""; +} + +/* line 483, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-jsfiddle:before { + content: ""; +} + +/* line 484, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-life-bouy:before, +.fa-life-buoy:before, +.fa-life-saver:before, +.fa-support:before, +.fa-life-ring:before { + content: ""; +} + +/* line 489, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-circle-o-notch:before { + content: ""; +} + +/* line 490, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ra:before, +.fa-resistance:before, +.fa-rebel:before { + content: ""; +} + +/* line 493, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ge:before, +.fa-empire:before { + content: ""; +} + +/* line 495, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-git-square:before { + content: ""; +} + +/* line 496, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-git:before { + content: ""; +} + +/* line 497, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-y-combinator-square:before, +.fa-yc-square:before, +.fa-hacker-news:before { + content: ""; +} + +/* line 500, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tencent-weibo:before { + content: ""; +} + +/* line 501, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-qq:before { + content: ""; +} + +/* line 502, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-wechat:before, +.fa-weixin:before { + content: ""; +} + +/* line 504, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-send:before, +.fa-paper-plane:before { + content: ""; +} + +/* line 506, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-send-o:before, +.fa-paper-plane-o:before { + content: ""; +} + +/* line 508, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-history:before { + content: ""; +} + +/* line 509, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-circle-thin:before { + content: ""; +} + +/* line 510, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-header:before { + content: ""; +} + +/* line 511, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-paragraph:before { + content: ""; +} + +/* line 512, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sliders:before { + content: ""; +} + +/* line 513, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-share-alt:before { + content: ""; +} + +/* line 514, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-share-alt-square:before { + content: ""; +} + +/* line 515, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bomb:before { + content: ""; +} + +/* line 516, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-soccer-ball-o:before, +.fa-futbol-o:before { + content: ""; +} + +/* line 518, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tty:before { + content: ""; +} + +/* line 519, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-binoculars:before { + content: ""; +} + +/* line 520, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-plug:before { + content: ""; +} + +/* line 521, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-slideshare:before { + content: ""; +} + +/* line 522, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-twitch:before { + content: ""; +} + +/* line 523, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-yelp:before { + content: ""; +} + +/* line 524, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-newspaper-o:before { + content: ""; +} + +/* line 525, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-wifi:before { + content: ""; +} + +/* line 526, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-calculator:before { + content: ""; +} + +/* line 527, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-paypal:before { + content: ""; +} + +/* line 528, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-google-wallet:before { + content: ""; +} + +/* line 529, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cc-visa:before { + content: ""; +} + +/* line 530, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cc-mastercard:before { + content: ""; +} + +/* line 531, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cc-discover:before { + content: ""; +} + +/* line 532, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cc-amex:before { + content: ""; +} + +/* line 533, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cc-paypal:before { + content: ""; +} + +/* line 534, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cc-stripe:before { + content: ""; +} + +/* line 535, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bell-slash:before { + content: ""; +} + +/* line 536, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bell-slash-o:before { + content: ""; +} + +/* line 537, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-trash:before { + content: ""; +} + +/* line 538, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-copyright:before { + content: ""; +} + +/* line 539, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-at:before { + content: ""; +} + +/* line 540, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-eyedropper:before { + content: ""; +} + +/* line 541, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-paint-brush:before { + content: ""; +} + +/* line 542, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-birthday-cake:before { + content: ""; +} + +/* line 543, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-area-chart:before { + content: ""; +} + +/* line 544, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pie-chart:before { + content: ""; +} + +/* line 545, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-line-chart:before { + content: ""; +} + +/* line 546, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-lastfm:before { + content: ""; +} + +/* line 547, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-lastfm-square:before { + content: ""; +} + +/* line 548, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-toggle-off:before { + content: ""; +} + +/* line 549, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-toggle-on:before { + content: ""; +} + +/* line 550, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bicycle:before { + content: ""; +} + +/* line 551, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bus:before { + content: ""; +} + +/* line 552, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ioxhost:before { + content: ""; +} + +/* line 553, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-angellist:before { + content: ""; +} + +/* line 554, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cc:before { + content: ""; +} + +/* line 555, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-shekel:before, +.fa-sheqel:before, +.fa-ils:before { + content: ""; +} + +/* line 558, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-meanpath:before { + content: ""; +} + +/* line 559, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-buysellads:before { + content: ""; +} + +/* line 560, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-connectdevelop:before { + content: ""; +} + +/* line 561, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-dashcube:before { + content: ""; +} + +/* line 562, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-forumbee:before { + content: ""; +} + +/* line 563, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-leanpub:before { + content: ""; +} + +/* line 564, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sellsy:before { + content: ""; +} + +/* line 565, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-shirtsinbulk:before { + content: ""; +} + +/* line 566, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-simplybuilt:before { + content: ""; +} + +/* line 567, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-skyatlas:before { + content: ""; +} + +/* line 568, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cart-plus:before { + content: ""; +} + +/* line 569, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cart-arrow-down:before { + content: ""; +} + +/* line 570, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-diamond:before { + content: ""; +} + +/* line 571, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ship:before { + content: ""; +} + +/* line 572, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-user-secret:before { + content: ""; +} + +/* line 573, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-motorcycle:before { + content: ""; +} + +/* line 574, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-street-view:before { + content: ""; +} + +/* line 575, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-heartbeat:before { + content: ""; +} + +/* line 576, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-venus:before { + content: ""; +} + +/* line 577, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mars:before { + content: ""; +} + +/* line 578, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mercury:before { + content: ""; +} + +/* line 579, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-intersex:before, +.fa-transgender:before { + content: ""; +} + +/* line 581, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-transgender-alt:before { + content: ""; +} + +/* line 582, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-venus-double:before { + content: ""; +} + +/* line 583, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mars-double:before { + content: ""; +} + +/* line 584, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-venus-mars:before { + content: ""; +} + +/* line 585, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mars-stroke:before { + content: ""; +} + +/* line 586, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mars-stroke-v:before { + content: ""; +} + +/* line 587, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mars-stroke-h:before { + content: ""; +} + +/* line 588, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-neuter:before { + content: ""; +} + +/* line 589, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-genderless:before { + content: ""; +} + +/* line 590, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-facebook-official:before { + content: ""; +} + +/* line 591, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pinterest-p:before { + content: ""; +} + +/* line 592, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-whatsapp:before { + content: ""; +} + +/* line 593, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-server:before { + content: ""; +} + +/* line 594, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-user-plus:before { + content: ""; +} + +/* line 595, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-user-times:before { + content: ""; +} + +/* line 596, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hotel:before, +.fa-bed:before { + content: ""; +} + +/* line 598, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-viacoin:before { + content: ""; +} + +/* line 599, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-train:before { + content: ""; +} + +/* line 600, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-subway:before { + content: ""; +} + +/* line 601, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-medium:before { + content: ""; +} + +/* line 602, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-yc:before, +.fa-y-combinator:before { + content: ""; +} + +/* line 604, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-optin-monster:before { + content: ""; +} + +/* line 605, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-opencart:before { + content: ""; +} + +/* line 606, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-expeditedssl:before { + content: ""; +} + +/* line 607, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-battery-4:before, +.fa-battery:before, +.fa-battery-full:before { + content: ""; +} + +/* line 610, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-battery-3:before, +.fa-battery-three-quarters:before { + content: ""; +} + +/* line 612, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-battery-2:before, +.fa-battery-half:before { + content: ""; +} + +/* line 614, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-battery-1:before, +.fa-battery-quarter:before { + content: ""; +} + +/* line 616, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-battery-0:before, +.fa-battery-empty:before { + content: ""; +} + +/* line 618, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mouse-pointer:before { + content: ""; +} + +/* line 619, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-i-cursor:before { + content: ""; +} + +/* line 620, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-object-group:before { + content: ""; +} + +/* line 621, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-object-ungroup:before { + content: ""; +} + +/* line 622, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sticky-note:before { + content: ""; +} + +/* line 623, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sticky-note-o:before { + content: ""; +} + +/* line 624, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cc-jcb:before { + content: ""; +} + +/* line 625, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cc-diners-club:before { + content: ""; +} + +/* line 626, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-clone:before { + content: ""; +} + +/* line 627, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-balance-scale:before { + content: ""; +} + +/* line 628, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hourglass-o:before { + content: ""; +} + +/* line 629, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hourglass-1:before, +.fa-hourglass-start:before { + content: ""; +} + +/* line 631, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hourglass-2:before, +.fa-hourglass-half:before { + content: ""; +} + +/* line 633, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hourglass-3:before, +.fa-hourglass-end:before { + content: ""; +} + +/* line 635, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hourglass:before { + content: ""; +} + +/* line 636, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-grab-o:before, +.fa-hand-rock-o:before { + content: ""; +} + +/* line 638, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-stop-o:before, +.fa-hand-paper-o:before { + content: ""; +} + +/* line 640, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-scissors-o:before { + content: ""; +} + +/* line 641, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-lizard-o:before { + content: ""; +} + +/* line 642, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-spock-o:before { + content: ""; +} + +/* line 643, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-pointer-o:before { + content: ""; +} + +/* line 644, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-peace-o:before { + content: ""; +} + +/* line 645, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-trademark:before { + content: ""; +} + +/* line 646, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-registered:before { + content: ""; +} + +/* line 647, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-creative-commons:before { + content: ""; +} + +/* line 648, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-gg:before { + content: ""; +} + +/* line 649, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-gg-circle:before { + content: ""; +} + +/* line 650, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tripadvisor:before { + content: ""; +} + +/* line 651, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-odnoklassniki:before { + content: ""; +} + +/* line 652, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-odnoklassniki-square:before { + content: ""; +} + +/* line 653, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-get-pocket:before { + content: ""; +} + +/* line 654, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-wikipedia-w:before { + content: ""; +} + +/* line 655, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-safari:before { + content: ""; +} + +/* line 656, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-chrome:before { + content: ""; +} + +/* line 657, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-firefox:before { + content: ""; +} + +/* line 658, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-opera:before { + content: ""; +} + +/* line 659, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-internet-explorer:before { + content: ""; +} + +/* line 660, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tv:before, +.fa-television:before { + content: ""; +} + +/* line 662, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-contao:before { + content: ""; +} + +/* line 663, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-500px:before { + content: ""; +} + +/* line 664, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-amazon:before { + content: ""; +} + +/* line 665, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-calendar-plus-o:before { + content: ""; +} + +/* line 666, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-calendar-minus-o:before { + content: ""; +} + +/* line 667, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-calendar-times-o:before { + content: ""; +} + +/* line 668, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-calendar-check-o:before { + content: ""; +} + +/* line 669, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-industry:before { + content: ""; +} + +/* line 670, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-map-pin:before { + content: ""; +} + +/* line 671, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-map-signs:before { + content: ""; +} + +/* line 672, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-map-o:before { + content: ""; +} + +/* line 673, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-map:before { + content: ""; +} + +/* line 674, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-commenting:before { + content: ""; +} + +/* line 675, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-commenting-o:before { + content: ""; +} + +/* line 676, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-houzz:before { + content: ""; +} + +/* line 677, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-vimeo:before { + content: ""; +} + +/* line 678, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-black-tie:before { + content: ""; +} + +/* line 679, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-fonticons:before { + content: ""; +} + +/* line 680, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-reddit-alien:before { + content: ""; +} + +/* line 681, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-edge:before { + content: ""; +} + +/* line 682, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-credit-card-alt:before { + content: ""; +} + +/* line 683, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-codiepie:before { + content: ""; +} + +/* line 684, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-modx:before { + content: ""; +} + +/* line 685, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-fort-awesome:before { + content: ""; +} + +/* line 686, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-usb:before { + content: ""; +} + +/* line 687, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-product-hunt:before { + content: ""; +} + +/* line 688, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mixcloud:before { + content: ""; +} + +/* line 689, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-scribd:before { + content: ""; +} + +/* line 690, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pause-circle:before { + content: ""; +} + +/* line 691, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pause-circle-o:before { + content: ""; +} + +/* line 692, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-stop-circle:before { + content: ""; +} + +/* line 693, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-stop-circle-o:before { + content: ""; +} + +/* line 694, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-shopping-bag:before { + content: ""; +} + +/* line 695, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-shopping-basket:before { + content: ""; +} + +/* line 696, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hashtag:before { + content: ""; +} + +/* line 697, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bluetooth:before { + content: ""; +} + +/* line 698, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bluetooth-b:before { + content: ""; +} + +/* line 699, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-percent:before { + content: ""; +} + +/* line 700, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-gitlab:before { + content: ""; +} + +/* line 701, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-wpbeginner:before { + content: ""; +} + +/* line 702, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-wpforms:before { + content: ""; +} + +/* line 703, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-envira:before { + content: ""; +} + +/* line 704, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-universal-access:before { + content: ""; +} + +/* line 705, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-wheelchair-alt:before { + content: ""; +} + +/* line 706, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-question-circle-o:before { + content: ""; +} + +/* line 707, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-blind:before { + content: ""; +} + +/* line 708, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-audio-description:before { + content: ""; +} + +/* line 709, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-volume-control-phone:before { + content: ""; +} + +/* line 710, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-braille:before { + content: ""; +} + +/* line 711, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-assistive-listening-systems:before { + content: ""; +} + +/* line 712, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-asl-interpreting:before, +.fa-american-sign-language-interpreting:before { + content: ""; +} + +/* line 714, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-deafness:before, +.fa-hard-of-hearing:before, +.fa-deaf:before { + content: ""; +} + +/* line 717, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-glide:before { + content: ""; +} + +/* line 718, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-glide-g:before { + content: ""; +} + +/* line 719, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-signing:before, +.fa-sign-language:before { + content: ""; +} + +/* line 721, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-low-vision:before { + content: ""; +} + +/* line 722, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-viadeo:before { + content: ""; +} + +/* line 723, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-viadeo-square:before { + content: ""; +} + +/* line 724, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-snapchat:before { + content: ""; +} + +/* line 725, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-snapchat-ghost:before { + content: ""; +} + +/* line 726, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-snapchat-square:before { + content: ""; +} + +/* line 727, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pied-piper:before { + content: ""; +} + +/* line 728, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-first-order:before { + content: ""; +} + +/* line 729, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-yoast:before { + content: ""; +} + +/* line 730, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-themeisle:before { + content: ""; +} + +/* line 731, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-google-plus-circle:before, +.fa-google-plus-official:before { + content: ""; +} + +/* line 733, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-fa:before, +.fa-font-awesome:before { + content: ""; +} + +/* line 735, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-handshake-o:before { + content: ""; +} + +/* line 736, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-envelope-open:before { + content: ""; +} + +/* line 737, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-envelope-open-o:before { + content: ""; +} + +/* line 738, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-linode:before { + content: ""; +} + +/* line 739, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-address-book:before { + content: ""; +} + +/* line 740, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-address-book-o:before { + content: ""; +} + +/* line 741, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-vcard:before, +.fa-address-card:before { + content: ""; +} + +/* line 743, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-vcard-o:before, +.fa-address-card-o:before { + content: ""; +} + +/* line 745, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-user-circle:before { + content: ""; +} + +/* line 746, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-user-circle-o:before { + content: ""; +} + +/* line 747, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-user-o:before { + content: ""; +} + +/* line 748, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-id-badge:before { + content: ""; +} + +/* line 749, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-drivers-license:before, +.fa-id-card:before { + content: ""; +} + +/* line 751, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-drivers-license-o:before, +.fa-id-card-o:before { + content: ""; +} + +/* line 753, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-quora:before { + content: ""; +} + +/* line 754, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-free-code-camp:before { + content: ""; +} + +/* line 755, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-telegram:before { + content: ""; +} + +/* line 756, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-thermometer-4:before, +.fa-thermometer:before, +.fa-thermometer-full:before { + content: ""; +} + +/* line 759, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-thermometer-3:before, +.fa-thermometer-three-quarters:before { + content: ""; +} + +/* line 761, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-thermometer-2:before, +.fa-thermometer-half:before { + content: ""; +} + +/* line 763, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-thermometer-1:before, +.fa-thermometer-quarter:before { + content: ""; +} + +/* line 765, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-thermometer-0:before, +.fa-thermometer-empty:before { + content: ""; +} + +/* line 767, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-shower:before { + content: ""; +} + +/* line 768, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bathtub:before, +.fa-s15:before, +.fa-bath:before { + content: ""; +} + +/* line 771, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-podcast:before { + content: ""; +} + +/* line 772, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-window-maximize:before { + content: ""; +} + +/* line 773, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-window-minimize:before { + content: ""; +} + +/* line 774, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-window-restore:before { + content: ""; +} + +/* line 775, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-times-rectangle:before, +.fa-window-close:before { + content: ""; +} + +/* line 777, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-times-rectangle-o:before, +.fa-window-close-o:before { + content: ""; +} + +/* line 779, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bandcamp:before { + content: ""; +} + +/* line 780, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-grav:before { + content: ""; +} + +/* line 781, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-etsy:before { + content: ""; +} + +/* line 782, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-imdb:before { + content: ""; +} + +/* line 783, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ravelry:before { + content: ""; +} + +/* line 784, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-eercast:before { + content: ""; +} + +/* line 785, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-microchip:before { + content: ""; +} + +/* line 786, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-snowflake-o:before { + content: ""; +} + +/* line 787, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-superpowers:before { + content: ""; +} + +/* line 788, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-wpexplorer:before { + content: ""; +} + +/* line 789, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-meetup:before { + content: ""; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_screen-reader.scss */ +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0; +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_mixins.scss */ +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container { + box-sizing: border-box; + display: inline-block; + margin: 0; + position: relative; + vertical-align: middle; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container .select2-selection--single { + box-sizing: border-box; + cursor: pointer; + display: block; + height: 28px; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -webkit-user-select: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container .select2-selection--single .select2-selection__rendered { + display: block; + padding-left: 8px; + padding-right: 20px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container .select2-selection--single .select2-selection__clear { + position: relative; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered { + padding-right: 8px; + padding-left: 20px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container .select2-selection--multiple { + box-sizing: border-box; + cursor: pointer; + display: block; + min-height: 32px; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -webkit-user-select: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container .select2-selection--multiple .select2-selection__rendered { + display: inline-block; + overflow: hidden; + padding-left: 8px; + text-overflow: ellipsis; + white-space: nowrap; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container .select2-search--inline { + float: left; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container .select2-search--inline .select2-search__field { + box-sizing: border-box; + border: none; + font-size: 100%; + margin-top: 5px; + padding: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button { + -webkit-appearance: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-dropdown { + background-color: white; + border: 1px solid #aaa; + border-radius: 4px; + box-sizing: border-box; + display: block; + position: absolute; + left: -100000px; + width: 100%; + z-index: 1051; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-results { + display: block; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-results__options { + list-style: none; + margin: 0; + padding: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-results__option { + padding: 6px; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -webkit-user-select: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-results__option[aria-selected] { + cursor: pointer; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--open .select2-dropdown { + left: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--open .select2-dropdown--above { + border-bottom: none; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--open .select2-dropdown--below { + border-top: none; + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-search--dropdown { + display: block; + padding: 4px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-search--dropdown .select2-search__field { + padding: 4px; + width: 100%; + box-sizing: border-box; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button { + -webkit-appearance: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-search--dropdown.select2-search--hide { + display: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-close-mask { + border: 0; + margin: 0; + padding: 0; + display: block; + position: fixed; + left: 0; + top: 0; + min-height: 100%; + min-width: 100%; + height: auto; + width: auto; + opacity: 0; + z-index: 99; + background-color: #fff; + filter: alpha(opacity=0); +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-hidden-accessible { + border: 0 !important; + clip: rect(0 0 0 0) !important; + -webkit-clip-path: inset(50%) !important; + clip-path: inset(50%) !important; + height: 1px !important; + overflow: hidden !important; + padding: 0 !important; + position: absolute !important; + width: 1px !important; + white-space: nowrap !important; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--single { + background-color: #fff; + border: 1px solid #aaa; + border-radius: 4px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--single .select2-selection__rendered { + color: #444; + line-height: 28px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--single .select2-selection__clear { + cursor: pointer; + float: right; + font-weight: bold; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--single .select2-selection__placeholder { + color: #999; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--single .select2-selection__arrow { + height: 26px; + position: absolute; + top: 1px; + right: 1px; + width: 20px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--single .select2-selection__arrow b { + border-color: #888 transparent transparent transparent; + border-style: solid; + border-width: 5px 4px 0 4px; + height: 0; + left: 50%; + margin-left: -4px; + margin-top: -2px; + position: absolute; + top: 50%; + width: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear { + float: left; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow { + left: 1px; + right: auto; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default.select2-container--disabled .select2-selection--single { + background-color: #eee; + cursor: default; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear { + display: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b { + border-color: transparent transparent #888 transparent; + border-width: 0 4px 5px 4px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--multiple { + background-color: white; + border: 1px solid #aaa; + border-radius: 4px; + cursor: text; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--multiple .select2-selection__rendered { + box-sizing: border-box; + list-style: none; + margin: 0; + padding: 0 5px; + width: 100%; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--multiple .select2-selection__rendered li { + list-style: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--multiple .select2-selection__clear { + cursor: pointer; + float: right; + font-weight: bold; + margin-top: 5px; + margin-right: 10px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--multiple .select2-selection__choice { + background-color: #e4e4e4; + border: 1px solid #aaa; + border-radius: 4px; + cursor: default; + float: left; + margin-right: 5px; + margin-top: 5px; + padding: 0 5px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--multiple .select2-selection__choice__remove { + color: #999; + cursor: pointer; + display: inline-block; + font-weight: bold; + margin-right: 2px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover { + color: #333; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline { + float: right; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice { + margin-left: 5px; + margin-right: auto; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove { + margin-left: 2px; + margin-right: auto; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default.select2-container--focus .select2-selection--multiple { + border: solid black 1px; + outline: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default.select2-container--disabled .select2-selection--multiple { + background-color: #eee; + cursor: default; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default.select2-container--disabled .select2-selection__choice__remove { + display: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-search--dropdown .select2-search__field { + border: 1px solid #aaa; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-search--inline .select2-search__field { + background: transparent; + border: none; + outline: 0; + box-shadow: none; + -webkit-appearance: textfield; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results > .select2-results__options { + max-height: 200px; + overflow-y: auto; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option[role=group] { + padding: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option[aria-disabled=true] { + color: #999; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option[aria-selected=true] { + background-color: #ddd; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option .select2-results__option { + padding-left: 1em; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option .select2-results__option .select2-results__group { + padding-left: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option .select2-results__option .select2-results__option { + margin-left: -1em; + padding-left: 2em; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -2em; + padding-left: 3em; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -3em; + padding-left: 4em; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -4em; + padding-left: 5em; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -5em; + padding-left: 6em; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option--highlighted[aria-selected] { + background-color: #5897fb; + color: white; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__group { + cursor: default; + display: block; + padding: 6px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--single { + background-color: #f7f7f7; + border: 1px solid #aaa; + border-radius: 4px; + outline: 0; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), to(#eee)); + background-image: linear-gradient(to bottom, #fff 50%, #eee 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--single:focus { + border: 1px solid #5897fb; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--single .select2-selection__rendered { + color: #444; + line-height: 28px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--single .select2-selection__clear { + cursor: pointer; + float: right; + font-weight: bold; + margin-right: 10px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--single .select2-selection__placeholder { + color: #999; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--single .select2-selection__arrow { + background-color: #ddd; + border: none; + border-left: 1px solid #aaa; + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; + height: 26px; + position: absolute; + top: 1px; + right: 1px; + width: 20px; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#ccc)); + background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--single .select2-selection__arrow b { + border-color: #888 transparent transparent transparent; + border-style: solid; + border-width: 5px 4px 0 4px; + height: 0; + left: 50%; + margin-left: -4px; + margin-top: -2px; + position: absolute; + top: 50%; + width: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear { + float: left; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow { + border: none; + border-right: 1px solid #aaa; + border-radius: 0; + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; + left: 1px; + right: auto; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic.select2-container--open .select2-selection--single { + border: 1px solid #5897fb; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow { + background: transparent; + border: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b { + border-color: transparent transparent #888 transparent; + border-width: 0 4px 5px 4px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single { + border-top: none; + border-top-left-radius: 0; + border-top-right-radius: 0; + background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #eee)); + background-image: linear-gradient(to bottom, #fff 0%, #eee 50%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single { + border-bottom: none; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#fff)); + background-image: linear-gradient(to bottom, #eee 50%, #fff 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--multiple { + background-color: white; + border: 1px solid #aaa; + border-radius: 4px; + cursor: text; + outline: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--multiple:focus { + border: 1px solid #5897fb; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--multiple .select2-selection__rendered { + list-style: none; + margin: 0; + padding: 0 5px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--multiple .select2-selection__clear { + display: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--multiple .select2-selection__choice { + background-color: #e4e4e4; + border: 1px solid #aaa; + border-radius: 4px; + cursor: default; + float: left; + margin-right: 5px; + margin-top: 5px; + padding: 0 5px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove { + color: #888; + cursor: pointer; + display: inline-block; + font-weight: bold; + margin-right: 2px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover { + color: #555; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice { + float: right; + margin-left: 5px; + margin-right: auto; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove { + margin-left: 2px; + margin-right: auto; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic.select2-container--open .select2-selection--multiple { + border: 1px solid #5897fb; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple { + border-top: none; + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple { + border-bottom: none; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-search--dropdown .select2-search__field { + border: 1px solid #aaa; + outline: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-search--inline .select2-search__field { + outline: 0; + box-shadow: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-dropdown { + background-color: #fff; + border: 1px solid transparent; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-dropdown--above { + border-bottom: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-dropdown--below { + border-top: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-results > .select2-results__options { + max-height: 200px; + overflow-y: auto; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-results__option[role=group] { + padding: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-results__option[aria-disabled=true] { + color: grey; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-results__option--highlighted[aria-selected] { + background-color: #3875d7; + color: #fff; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-results__group { + cursor: default; + display: block; + padding: 6px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic.select2-container--open .select2-dropdown { + border-color: #5897fb; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection--single { + height: calc(1.5em + .75rem + 2px) !important; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection--single .select2-selection__placeholder { + color: #757575; + line-height: calc(1.5em + .75rem); +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow { + position: absolute; + top: 50%; + right: 3px; + width: 20px; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow b { + top: 60%; + border-color: #343a40 transparent transparent; + border-style: solid; + border-width: 5px 4px 0; + width: 0; + height: 0; + left: 50%; + margin-left: -4px; + margin-top: -2px; + position: absolute; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered { + line-height: calc(1.5em + .75rem); +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-search--dropdown .select2-search__field { + border: 1px solid #ced4da; + border-radius: .25rem; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-results__message { + color: #6c757d; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection--multiple { + min-height: calc(1.5em + .75rem + 2px) !important; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__rendered { + box-sizing: border-box; + list-style: none; + margin: 0; + padding: 0 5px; + width: 100%; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice { + color: #343a40; + border: 1px solid #bdc6d0; + border-radius: .2rem; + padding: 0 5px 0 0; + cursor: pointer; + float: left; + margin-top: .3em; + margin-right: 5px; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove { + color: #bdc6d0; + font-weight: 700; + margin-left: 3px; + margin-right: 1px; + padding-right: 3px; + padding-left: 3px; + float: left; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove:hover { + color: #343a40; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container { + display: block; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container :focus { + outline: 0; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.input-group .select2-container--bootstrap4 { + -webkit-box-flex: 1; + flex-grow: 1; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.input-group-prepend ~ .select2-container--bootstrap4 .select2-selection { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection { + border: 1px solid #ced4da; + border-radius: .25rem; + width: 100%; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4.select2-container--focus .select2-selection { + border-color: #17a2b8; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4.select2-container--focus.select2-container--open .select2-selection { + border-bottom: none; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4.select2-container--disabled.select2-container--focus .select2-selection, .select2-container--bootstrap4.select2-container--disabled .select2-selection { + background-color: #e9ecef; + cursor: not-allowed; + border-color: #ced4da; + box-shadow: none; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4.select2-container--disabled.select2-container--focus .select2-search__field, .select2-container--bootstrap4.select2-container--disabled .select2-search__field { + background-color: transparent; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +form.was-validated select:invalid ~ .select2-container--bootstrap4 .select2-selection, select.is-invalid ~ .select2-container--bootstrap4 .select2-selection { + border-color: #dc3545; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +form.was-validated select:valid ~ .select2-container--bootstrap4 .select2-selection, select.is-valid ~ .select2-container--bootstrap4 .select2-selection { + border-color: #28a745; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-dropdown { + border-color: #ced4da; + border-top: none; + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-dropdown.select2-dropdown--above { + border-top: 1px solid #ced4da; + border-top-left-radius: .25rem; + border-top-right-radius: .25rem; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-dropdown .select2-results__option[aria-selected=true] { + background-color: #e9ecef; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-results__option--highlighted, .select2-container--bootstrap4 .select2-results__option--highlighted.select2-results__option[aria-selected=true] { + background-color: #007bff; + color: #f8f9fa; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-results__option[role=group] { + padding: 0; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-results > .select2-results__options { + max-height: 15em; + overflow-y: auto; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-results__group { + padding: 6px; + display: list-item; + color: #6c757d; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection__clear { + width: 1.2em; + height: 1.2em; + line-height: 1.15em; + padding-left: .3em; + margin-top: .5em; + border-radius: 100%; + background-color: #ccc; + color: #f8f9fa; + float: right; + margin-right: .3em; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection__clear:hover { + background-color: #343a40; +} + +/*! + * Datepicker for Bootstrap v1.9.0 (https://github.com/uxsolutions/bootstrap-datepicker) + * + * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) + */ +/* line 7, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker { + padding: 4px; + border-radius: 4px; + direction: ltr; +} + +/* line 14, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-inline { + width: 220px; +} + +/* line 17, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-rtl { + direction: rtl; +} + +/* line 20, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-rtl.dropdown-menu { + left: auto; +} + +/* line 23, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-rtl table tr td span { + float: right; +} + +/* line 26, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown { + top: 0; + left: 0; +} + +/* line 30, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown:before { + content: ''; + display: inline-block; + border-left: 7px solid transparent; + border-right: 7px solid transparent; + border-bottom: 7px solid #999; + border-top: 0; + border-bottom-color: rgba(0, 0, 0, 0.2); + position: absolute; +} + +/* line 40, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown:after { + content: ''; + display: inline-block; + border-left: 6px solid transparent; + border-right: 6px solid transparent; + border-bottom: 6px solid #fff; + border-top: 0; + position: absolute; +} + +/* line 49, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown.datepicker-orient-left:before { + left: 6px; +} + +/* line 52, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown.datepicker-orient-left:after { + left: 7px; +} + +/* line 55, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown.datepicker-orient-right:before { + right: 6px; +} + +/* line 58, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown.datepicker-orient-right:after { + right: 7px; +} + +/* line 61, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown.datepicker-orient-bottom:before { + top: -7px; +} + +/* line 64, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown.datepicker-orient-bottom:after { + top: -6px; +} + +/* line 67, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown.datepicker-orient-top:before { + bottom: -7px; + border-bottom: 0; + border-top: 7px solid #999; +} + +/* line 72, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown.datepicker-orient-top:after { + bottom: -6px; + border-bottom: 0; + border-top: 6px solid #fff; +} + +/* line 77, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table { + margin: 0; + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +/* line 86, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker td, +.datepicker th { + text-align: center; + width: 20px; + height: 20px; + border-radius: 4px; + border: none; +} + +/* line 96, app/assets/stylesheets/bootstrap-datepicker.scss */ +.table-striped .datepicker table tr td, +.table-striped .datepicker table tr th { + background-color: transparent; +} + +/* line 100, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.day:hover, +.datepicker table tr td.day.focused { + background: #eee; + cursor: pointer; +} + +/* line 105, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.old, +.datepicker table tr td.new { + color: #999; +} + +/* line 109, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.disabled, +.datepicker table tr td.disabled:hover { + background: none; + color: #999; + cursor: default; +} + +/* line 115, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.highlighted { + background: #d9edf7; + border-radius: 0; +} + +/* line 119, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.today, +.datepicker table tr td.today:hover, +.datepicker table tr td.today.disabled, +.datepicker table tr td.today.disabled:hover { + background-color: #fde19a; + background-image: -webkit-gradient(linear, left top, left bottom, from(#fdd49a), to(#fdf59a)); + background-image: linear-gradient(to bottom, #fdd49a, #fdf59a); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0); + border-color: #fdf59a #fdf59a #fbed50; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + color: #000; +} + +/* line 137, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.today:hover, +.datepicker table tr td.today:hover:hover, +.datepicker table tr td.today.disabled:hover, +.datepicker table tr td.today.disabled:hover:hover, +.datepicker table tr td.today:active, +.datepicker table tr td.today:hover:active, +.datepicker table tr td.today.disabled:active, +.datepicker table tr td.today.disabled:hover:active, +.datepicker table tr td.today.active, +.datepicker table tr td.today:hover.active, +.datepicker table tr td.today.disabled.active, +.datepicker table tr td.today.disabled:hover.active, +.datepicker table tr td.today.disabled, +.datepicker table tr td.today:hover.disabled, +.datepicker table tr td.today.disabled.disabled, +.datepicker table tr td.today.disabled:hover.disabled, +.datepicker table tr td.today[disabled], +.datepicker table tr td.today:hover[disabled], +.datepicker table tr td.today.disabled[disabled], +.datepicker table tr td.today.disabled:hover[disabled] { + background-color: #fdf59a; +} + +/* line 159, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.today:active, +.datepicker table tr td.today:hover:active, +.datepicker table tr td.today.disabled:active, +.datepicker table tr td.today.disabled:hover:active, +.datepicker table tr td.today.active, +.datepicker table tr td.today:hover.active, +.datepicker table tr td.today.disabled.active, +.datepicker table tr td.today.disabled:hover.active { + background-color: #fbf069 \9; +} + +/* line 169, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.today:hover:hover { + color: #000; +} + +/* line 172, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.today.active:hover { + color: #fff; +} + +/* line 175, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.range, +.datepicker table tr td.range:hover, +.datepicker table tr td.range.disabled, +.datepicker table tr td.range.disabled:hover { + background: #eee; + border-radius: 0; +} + +/* line 184, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.range.today, +.datepicker table tr td.range.today:hover, +.datepicker table tr td.range.today.disabled, +.datepicker table tr td.range.today.disabled:hover { + background-color: #f3d17a; + background-image: -webkit-gradient(linear, left top, left bottom, from(#f3c17a), to(#f3e97a)); + background-image: linear-gradient(to bottom, #f3c17a, #f3e97a); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0); + border-color: #f3e97a #f3e97a #edde34; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + border-radius: 0; +} + +/* line 204, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.range.today:hover, +.datepicker table tr td.range.today:hover:hover, +.datepicker table tr td.range.today.disabled:hover, +.datepicker table tr td.range.today.disabled:hover:hover, +.datepicker table tr td.range.today:active, +.datepicker table tr td.range.today:hover:active, +.datepicker table tr td.range.today.disabled:active, +.datepicker table tr td.range.today.disabled:hover:active, +.datepicker table tr td.range.today.active, +.datepicker table tr td.range.today:hover.active, +.datepicker table tr td.range.today.disabled.active, +.datepicker table tr td.range.today.disabled:hover.active, +.datepicker table tr td.range.today.disabled, +.datepicker table tr td.range.today:hover.disabled, +.datepicker table tr td.range.today.disabled.disabled, +.datepicker table tr td.range.today.disabled:hover.disabled, +.datepicker table tr td.range.today[disabled], +.datepicker table tr td.range.today:hover[disabled], +.datepicker table tr td.range.today.disabled[disabled], +.datepicker table tr td.range.today.disabled:hover[disabled] { + background-color: #f3e97a; +} + +/* line 226, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.range.today:active, +.datepicker table tr td.range.today:hover:active, +.datepicker table tr td.range.today.disabled:active, +.datepicker table tr td.range.today.disabled:hover:active, +.datepicker table tr td.range.today.active, +.datepicker table tr td.range.today:hover.active, +.datepicker table tr td.range.today.disabled.active, +.datepicker table tr td.range.today.disabled:hover.active { + background-color: #efe24b \9; +} + +/* line 236, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.selected, +.datepicker table tr td.selected:hover, +.datepicker table tr td.selected.disabled, +.datepicker table tr td.selected.disabled:hover { + background-color: #9e9e9e; + background-image: -webkit-gradient(linear, left top, left bottom, from(#b3b3b3), to(#808080)); + background-image: linear-gradient(to bottom, #b3b3b3, #808080); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0); + border-color: #808080 #808080 #595959; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + color: #fff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} + +/* line 255, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.selected:hover, +.datepicker table tr td.selected:hover:hover, +.datepicker table tr td.selected.disabled:hover, +.datepicker table tr td.selected.disabled:hover:hover, +.datepicker table tr td.selected:active, +.datepicker table tr td.selected:hover:active, +.datepicker table tr td.selected.disabled:active, +.datepicker table tr td.selected.disabled:hover:active, +.datepicker table tr td.selected.active, +.datepicker table tr td.selected:hover.active, +.datepicker table tr td.selected.disabled.active, +.datepicker table tr td.selected.disabled:hover.active, +.datepicker table tr td.selected.disabled, +.datepicker table tr td.selected:hover.disabled, +.datepicker table tr td.selected.disabled.disabled, +.datepicker table tr td.selected.disabled:hover.disabled, +.datepicker table tr td.selected[disabled], +.datepicker table tr td.selected:hover[disabled], +.datepicker table tr td.selected.disabled[disabled], +.datepicker table tr td.selected.disabled:hover[disabled] { + background-color: #808080; +} + +/* line 277, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.selected:active, +.datepicker table tr td.selected:hover:active, +.datepicker table tr td.selected.disabled:active, +.datepicker table tr td.selected.disabled:hover:active, +.datepicker table tr td.selected.active, +.datepicker table tr td.selected:hover.active, +.datepicker table tr td.selected.disabled.active, +.datepicker table tr td.selected.disabled:hover.active { + background-color: #666666 \9; +} + +/* line 287, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.active, +.datepicker table tr td.active:hover, +.datepicker table tr td.active.disabled, +.datepicker table tr td.active.disabled:hover { + background-color: #006dcc; + background-image: -webkit-gradient(linear, left top, left bottom, from(#08c), to(#0044cc)); + background-image: linear-gradient(to bottom, #08c, #0044cc); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0); + border-color: #0044cc #0044cc #002a80; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + color: #fff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} + +/* line 306, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.active:hover, +.datepicker table tr td.active:hover:hover, +.datepicker table tr td.active.disabled:hover, +.datepicker table tr td.active.disabled:hover:hover, +.datepicker table tr td.active:active, +.datepicker table tr td.active:hover:active, +.datepicker table tr td.active.disabled:active, +.datepicker table tr td.active.disabled:hover:active, +.datepicker table tr td.active.active, +.datepicker table tr td.active:hover.active, +.datepicker table tr td.active.disabled.active, +.datepicker table tr td.active.disabled:hover.active, +.datepicker table tr td.active.disabled, +.datepicker table tr td.active:hover.disabled, +.datepicker table tr td.active.disabled.disabled, +.datepicker table tr td.active.disabled:hover.disabled, +.datepicker table tr td.active[disabled], +.datepicker table tr td.active:hover[disabled], +.datepicker table tr td.active.disabled[disabled], +.datepicker table tr td.active.disabled:hover[disabled] { + background-color: #0044cc; +} + +/* line 328, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.active:active, +.datepicker table tr td.active:hover:active, +.datepicker table tr td.active.disabled:active, +.datepicker table tr td.active.disabled:hover:active, +.datepicker table tr td.active.active, +.datepicker table tr td.active:hover.active, +.datepicker table tr td.active.disabled.active, +.datepicker table tr td.active.disabled:hover.active { + background-color: #003399 \9; +} + +/* line 338, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td span { + display: block; + width: 23%; + height: 54px; + line-height: 54px; + float: left; + margin: 1%; + cursor: pointer; + border-radius: 4px; +} + +/* line 350, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td span:hover, +.datepicker table tr td span.focused { + background: #eee; +} + +/* line 354, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td span.disabled, +.datepicker table tr td span.disabled:hover { + background: none; + color: #999; + cursor: default; +} + +/* line 360, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td span.active, +.datepicker table tr td span.active:hover, +.datepicker table tr td span.active.disabled, +.datepicker table tr td span.active.disabled:hover { + background-color: #006dcc; + background-image: -webkit-gradient(linear, left top, left bottom, from(#08c), to(#0044cc)); + background-image: linear-gradient(to bottom, #08c, #0044cc); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0); + border-color: #0044cc #0044cc #002a80; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + color: #fff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} + +/* line 379, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td span.active:hover, +.datepicker table tr td span.active:hover:hover, +.datepicker table tr td span.active.disabled:hover, +.datepicker table tr td span.active.disabled:hover:hover, +.datepicker table tr td span.active:active, +.datepicker table tr td span.active:hover:active, +.datepicker table tr td span.active.disabled:active, +.datepicker table tr td span.active.disabled:hover:active, +.datepicker table tr td span.active.active, +.datepicker table tr td span.active:hover.active, +.datepicker table tr td span.active.disabled.active, +.datepicker table tr td span.active.disabled:hover.active, +.datepicker table tr td span.active.disabled, +.datepicker table tr td span.active:hover.disabled, +.datepicker table tr td span.active.disabled.disabled, +.datepicker table tr td span.active.disabled:hover.disabled, +.datepicker table tr td span.active[disabled], +.datepicker table tr td span.active:hover[disabled], +.datepicker table tr td span.active.disabled[disabled], +.datepicker table tr td span.active.disabled:hover[disabled] { + background-color: #0044cc; +} + +/* line 401, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td span.active:active, +.datepicker table tr td span.active:hover:active, +.datepicker table tr td span.active.disabled:active, +.datepicker table tr td span.active.disabled:hover:active, +.datepicker table tr td span.active.active, +.datepicker table tr td span.active:hover.active, +.datepicker table tr td span.active.disabled.active, +.datepicker table tr td span.active.disabled:hover.active { + background-color: #003399 \9; +} + +/* line 411, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td span.old, +.datepicker table tr td span.new { + color: #999; +} + +/* line 415, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker .datepicker-switch { + width: 145px; +} + +/* line 418, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker .datepicker-switch, +.datepicker .prev, +.datepicker .next, +.datepicker tfoot tr th { + cursor: pointer; +} + +/* line 424, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker .datepicker-switch:hover, +.datepicker .prev:hover, +.datepicker .next:hover, +.datepicker tfoot tr th:hover { + background: #eee; +} + +/* line 430, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker .prev.disabled, +.datepicker .next.disabled { + visibility: hidden; +} + +/* line 434, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker .cw { + font-size: 10px; + width: 12px; + padding: 0 2px 0 5px; + vertical-align: middle; +} + +/* line 440, app/assets/stylesheets/bootstrap-datepicker.scss */ +.input-append.date .add-on, +.input-prepend.date .add-on { + cursor: pointer; +} + +/* line 444, app/assets/stylesheets/bootstrap-datepicker.scss */ +.input-append.date .add-on i, +.input-prepend.date .add-on i { + margin-top: 3px; +} + +/* line 448, app/assets/stylesheets/bootstrap-datepicker.scss */ +.input-daterange input { + text-align: center; +} + +/* line 451, app/assets/stylesheets/bootstrap-datepicker.scss */ +.input-daterange input:first-child { + border-radius: 3px 0 0 3px; +} + +/* line 456, app/assets/stylesheets/bootstrap-datepicker.scss */ +.input-daterange input:last-child { + border-radius: 0 3px 3px 0; +} + +/* line 461, app/assets/stylesheets/bootstrap-datepicker.scss */ +.input-daterange .add-on { + display: inline-block; + width: auto; + min-width: 16px; + height: 18px; + padding: 4px 5px; + font-weight: normal; + line-height: 18px; + text-align: center; + text-shadow: 0 1px 0 #fff; + vertical-align: middle; + background-color: #eee; + border: 1px solid #ccc; + margin-left: -5px; + margin-right: -5px; +} +/*! + * Datepicker for Bootstrap v1.9.0 (https://github.com/uxsolutions/bootstrap-datepicker) + * + * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) + */ +/* line 7, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker { + padding: 4px; + border-radius: 4px; + direction: ltr; +} + +/* line 14, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-inline { + width: 220px; +} + +/* line 17, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-rtl { + direction: rtl; +} + +/* line 20, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-rtl.dropdown-menu { + left: auto; +} + +/* line 23, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-rtl table tr td span { + float: right; +} + +/* line 26, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown { + top: 0; + left: 0; +} + +/* line 30, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown:before { + content: ''; + display: inline-block; + border-left: 7px solid transparent; + border-right: 7px solid transparent; + border-bottom: 7px solid #999; + border-top: 0; + border-bottom-color: rgba(0, 0, 0, 0.2); + position: absolute; +} + +/* line 40, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown:after { + content: ''; + display: inline-block; + border-left: 6px solid transparent; + border-right: 6px solid transparent; + border-bottom: 6px solid #fff; + border-top: 0; + position: absolute; +} + +/* line 49, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown.datepicker-orient-left:before { + left: 6px; +} + +/* line 52, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown.datepicker-orient-left:after { + left: 7px; +} + +/* line 55, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown.datepicker-orient-right:before { + right: 6px; +} + +/* line 58, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown.datepicker-orient-right:after { + right: 7px; +} + +/* line 61, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown.datepicker-orient-bottom:before { + top: -7px; +} + +/* line 64, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown.datepicker-orient-bottom:after { + top: -6px; +} + +/* line 67, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown.datepicker-orient-top:before { + bottom: -7px; + border-bottom: 0; + border-top: 7px solid #999; +} + +/* line 72, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown.datepicker-orient-top:after { + bottom: -6px; + border-bottom: 0; + border-top: 6px solid #fff; +} + +/* line 77, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table { + margin: 0; + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +/* line 86, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker td, +.datepicker th { + text-align: center; + width: 20px; + height: 20px; + border-radius: 4px; + border: none; +} + +/* line 96, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.table-striped .datepicker table tr td, +.table-striped .datepicker table tr th { + background-color: transparent; +} + +/* line 100, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.day:hover, +.datepicker table tr td.day.focused { + background: #eee; + cursor: pointer; +} + +/* line 105, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.old, +.datepicker table tr td.new { + color: #999; +} + +/* line 109, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.disabled, +.datepicker table tr td.disabled:hover { + background: none; + color: #999; + cursor: default; +} + +/* line 115, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.highlighted { + background: #d9edf7; + border-radius: 0; +} + +/* line 119, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.today, +.datepicker table tr td.today:hover, +.datepicker table tr td.today.disabled, +.datepicker table tr td.today.disabled:hover { + background-color: #fde19a; + background-image: -webkit-gradient(linear, left top, left bottom, from(#fdd49a), to(#fdf59a)); + background-image: linear-gradient(to bottom, #fdd49a, #fdf59a); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0); + border-color: #fdf59a #fdf59a #fbed50; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + color: #000; +} + +/* line 137, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.today:hover, +.datepicker table tr td.today:hover:hover, +.datepicker table tr td.today.disabled:hover, +.datepicker table tr td.today.disabled:hover:hover, +.datepicker table tr td.today:active, +.datepicker table tr td.today:hover:active, +.datepicker table tr td.today.disabled:active, +.datepicker table tr td.today.disabled:hover:active, +.datepicker table tr td.today.active, +.datepicker table tr td.today:hover.active, +.datepicker table tr td.today.disabled.active, +.datepicker table tr td.today.disabled:hover.active, +.datepicker table tr td.today.disabled, +.datepicker table tr td.today:hover.disabled, +.datepicker table tr td.today.disabled.disabled, +.datepicker table tr td.today.disabled:hover.disabled, +.datepicker table tr td.today[disabled], +.datepicker table tr td.today:hover[disabled], +.datepicker table tr td.today.disabled[disabled], +.datepicker table tr td.today.disabled:hover[disabled] { + background-color: #fdf59a; +} + +/* line 159, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.today:active, +.datepicker table tr td.today:hover:active, +.datepicker table tr td.today.disabled:active, +.datepicker table tr td.today.disabled:hover:active, +.datepicker table tr td.today.active, +.datepicker table tr td.today:hover.active, +.datepicker table tr td.today.disabled.active, +.datepicker table tr td.today.disabled:hover.active { + background-color: #fbf069 \9; +} + +/* line 169, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.today:hover:hover { + color: #000; +} + +/* line 172, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.today.active:hover { + color: #fff; +} + +/* line 175, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.range, +.datepicker table tr td.range:hover, +.datepicker table tr td.range.disabled, +.datepicker table tr td.range.disabled:hover { + background: #eee; + border-radius: 0; +} + +/* line 184, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.range.today, +.datepicker table tr td.range.today:hover, +.datepicker table tr td.range.today.disabled, +.datepicker table tr td.range.today.disabled:hover { + background-color: #f3d17a; + background-image: -webkit-gradient(linear, left top, left bottom, from(#f3c17a), to(#f3e97a)); + background-image: linear-gradient(to bottom, #f3c17a, #f3e97a); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0); + border-color: #f3e97a #f3e97a #edde34; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + border-radius: 0; +} + +/* line 204, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.range.today:hover, +.datepicker table tr td.range.today:hover:hover, +.datepicker table tr td.range.today.disabled:hover, +.datepicker table tr td.range.today.disabled:hover:hover, +.datepicker table tr td.range.today:active, +.datepicker table tr td.range.today:hover:active, +.datepicker table tr td.range.today.disabled:active, +.datepicker table tr td.range.today.disabled:hover:active, +.datepicker table tr td.range.today.active, +.datepicker table tr td.range.today:hover.active, +.datepicker table tr td.range.today.disabled.active, +.datepicker table tr td.range.today.disabled:hover.active, +.datepicker table tr td.range.today.disabled, +.datepicker table tr td.range.today:hover.disabled, +.datepicker table tr td.range.today.disabled.disabled, +.datepicker table tr td.range.today.disabled:hover.disabled, +.datepicker table tr td.range.today[disabled], +.datepicker table tr td.range.today:hover[disabled], +.datepicker table tr td.range.today.disabled[disabled], +.datepicker table tr td.range.today.disabled:hover[disabled] { + background-color: #f3e97a; +} + +/* line 226, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.range.today:active, +.datepicker table tr td.range.today:hover:active, +.datepicker table tr td.range.today.disabled:active, +.datepicker table tr td.range.today.disabled:hover:active, +.datepicker table tr td.range.today.active, +.datepicker table tr td.range.today:hover.active, +.datepicker table tr td.range.today.disabled.active, +.datepicker table tr td.range.today.disabled:hover.active { + background-color: #efe24b \9; +} + +/* line 236, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.selected, +.datepicker table tr td.selected:hover, +.datepicker table tr td.selected.disabled, +.datepicker table tr td.selected.disabled:hover { + background-color: #9e9e9e; + background-image: -webkit-gradient(linear, left top, left bottom, from(#b3b3b3), to(#808080)); + background-image: linear-gradient(to bottom, #b3b3b3, #808080); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0); + border-color: #808080 #808080 #595959; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + color: #fff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} + +/* line 255, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.selected:hover, +.datepicker table tr td.selected:hover:hover, +.datepicker table tr td.selected.disabled:hover, +.datepicker table tr td.selected.disabled:hover:hover, +.datepicker table tr td.selected:active, +.datepicker table tr td.selected:hover:active, +.datepicker table tr td.selected.disabled:active, +.datepicker table tr td.selected.disabled:hover:active, +.datepicker table tr td.selected.active, +.datepicker table tr td.selected:hover.active, +.datepicker table tr td.selected.disabled.active, +.datepicker table tr td.selected.disabled:hover.active, +.datepicker table tr td.selected.disabled, +.datepicker table tr td.selected:hover.disabled, +.datepicker table tr td.selected.disabled.disabled, +.datepicker table tr td.selected.disabled:hover.disabled, +.datepicker table tr td.selected[disabled], +.datepicker table tr td.selected:hover[disabled], +.datepicker table tr td.selected.disabled[disabled], +.datepicker table tr td.selected.disabled:hover[disabled] { + background-color: #808080; +} + +/* line 277, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.selected:active, +.datepicker table tr td.selected:hover:active, +.datepicker table tr td.selected.disabled:active, +.datepicker table tr td.selected.disabled:hover:active, +.datepicker table tr td.selected.active, +.datepicker table tr td.selected:hover.active, +.datepicker table tr td.selected.disabled.active, +.datepicker table tr td.selected.disabled:hover.active { + background-color: #666666 \9; +} + +/* line 287, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.active, +.datepicker table tr td.active:hover, +.datepicker table tr td.active.disabled, +.datepicker table tr td.active.disabled:hover { + background-color: #006dcc; + background-image: -webkit-gradient(linear, left top, left bottom, from(#08c), to(#0044cc)); + background-image: linear-gradient(to bottom, #08c, #0044cc); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0); + border-color: #0044cc #0044cc #002a80; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + color: #fff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} + +/* line 306, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.active:hover, +.datepicker table tr td.active:hover:hover, +.datepicker table tr td.active.disabled:hover, +.datepicker table tr td.active.disabled:hover:hover, +.datepicker table tr td.active:active, +.datepicker table tr td.active:hover:active, +.datepicker table tr td.active.disabled:active, +.datepicker table tr td.active.disabled:hover:active, +.datepicker table tr td.active.active, +.datepicker table tr td.active:hover.active, +.datepicker table tr td.active.disabled.active, +.datepicker table tr td.active.disabled:hover.active, +.datepicker table tr td.active.disabled, +.datepicker table tr td.active:hover.disabled, +.datepicker table tr td.active.disabled.disabled, +.datepicker table tr td.active.disabled:hover.disabled, +.datepicker table tr td.active[disabled], +.datepicker table tr td.active:hover[disabled], +.datepicker table tr td.active.disabled[disabled], +.datepicker table tr td.active.disabled:hover[disabled] { + background-color: #0044cc; +} + +/* line 328, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.active:active, +.datepicker table tr td.active:hover:active, +.datepicker table tr td.active.disabled:active, +.datepicker table tr td.active.disabled:hover:active, +.datepicker table tr td.active.active, +.datepicker table tr td.active:hover.active, +.datepicker table tr td.active.disabled.active, +.datepicker table tr td.active.disabled:hover.active { + background-color: #003399 \9; +} + +/* line 338, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td span { + display: block; + width: 23%; + height: 54px; + line-height: 54px; + float: left; + margin: 1%; + cursor: pointer; + border-radius: 4px; +} + +/* line 350, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td span:hover, +.datepicker table tr td span.focused { + background: #eee; +} + +/* line 354, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td span.disabled, +.datepicker table tr td span.disabled:hover { + background: none; + color: #999; + cursor: default; +} + +/* line 360, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td span.active, +.datepicker table tr td span.active:hover, +.datepicker table tr td span.active.disabled, +.datepicker table tr td span.active.disabled:hover { + background-color: #006dcc; + background-image: -webkit-gradient(linear, left top, left bottom, from(#08c), to(#0044cc)); + background-image: linear-gradient(to bottom, #08c, #0044cc); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0); + border-color: #0044cc #0044cc #002a80; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + color: #fff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} + +/* line 379, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td span.active:hover, +.datepicker table tr td span.active:hover:hover, +.datepicker table tr td span.active.disabled:hover, +.datepicker table tr td span.active.disabled:hover:hover, +.datepicker table tr td span.active:active, +.datepicker table tr td span.active:hover:active, +.datepicker table tr td span.active.disabled:active, +.datepicker table tr td span.active.disabled:hover:active, +.datepicker table tr td span.active.active, +.datepicker table tr td span.active:hover.active, +.datepicker table tr td span.active.disabled.active, +.datepicker table tr td span.active.disabled:hover.active, +.datepicker table tr td span.active.disabled, +.datepicker table tr td span.active:hover.disabled, +.datepicker table tr td span.active.disabled.disabled, +.datepicker table tr td span.active.disabled:hover.disabled, +.datepicker table tr td span.active[disabled], +.datepicker table tr td span.active:hover[disabled], +.datepicker table tr td span.active.disabled[disabled], +.datepicker table tr td span.active.disabled:hover[disabled] { + background-color: #0044cc; +} + +/* line 401, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td span.active:active, +.datepicker table tr td span.active:hover:active, +.datepicker table tr td span.active.disabled:active, +.datepicker table tr td span.active.disabled:hover:active, +.datepicker table tr td span.active.active, +.datepicker table tr td span.active:hover.active, +.datepicker table tr td span.active.disabled.active, +.datepicker table tr td span.active.disabled:hover.active { + background-color: #003399 \9; +} + +/* line 411, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td span.old, +.datepicker table tr td span.new { + color: #999; +} + +/* line 415, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker .datepicker-switch { + width: 145px; +} + +/* line 418, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker .datepicker-switch, +.datepicker .prev, +.datepicker .next, +.datepicker tfoot tr th { + cursor: pointer; +} + +/* line 424, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker .datepicker-switch:hover, +.datepicker .prev:hover, +.datepicker .next:hover, +.datepicker tfoot tr th:hover { + background: #eee; +} + +/* line 430, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker .prev.disabled, +.datepicker .next.disabled { + visibility: hidden; +} + +/* line 434, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker .cw { + font-size: 10px; + width: 12px; + padding: 0 2px 0 5px; + vertical-align: middle; +} + +/* line 440, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.input-append.date .add-on, +.input-prepend.date .add-on { + cursor: pointer; +} + +/* line 444, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.input-append.date .add-on i, +.input-prepend.date .add-on i { + margin-top: 3px; +} + +/* line 448, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.input-daterange input { + text-align: center; +} + +/* line 451, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.input-daterange input:first-child { + border-radius: 3px 0 0 3px; +} + +/* line 456, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.input-daterange input:last-child { + border-radius: 0 3px 3px 0; +} + +/* line 461, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.input-daterange .add-on { + display: inline-block; + width: auto; + min-width: 16px; + height: 20px; + padding: 4px 5px; + font-weight: normal; + line-height: 20px; + text-align: center; + text-shadow: 0 1px 0 #fff; + vertical-align: middle; + background-color: #eee; + border: 1px solid #ccc; + margin-left: -5px; + margin-right: -5px; +} + +/* line 477, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + float: left; + display: none; + min-width: 160px; + list-style: none; + background-color: #fff; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 5px; + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + -webkit-background-clip: padding-box; + -moz-background-clip: padding; + background-clip: padding-box; + *border-right-width: 2px; + *border-bottom-width: 2px; + color: #333333; + font-size: 13px; + line-height: 20px; +} + +/* line 504, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker.dropdown-menu th, +.datepicker.datepicker-inline th, +.datepicker.dropdown-menu td, +.datepicker.datepicker-inline td { + padding: 4px 5px; +} +/* Author:mingyuhisoft@163.com + * Github:https://github.com/imingyu/jquery.mloading + * Npm:npm install jquery.mloading.js + * Date:2016-7-4 + */ +/* line 6, app/assets/stylesheets/jquery.mloading.scss */ +.mloading-container { + position: relative; + min-height: 70px; + -webkit-transition: height 0.6s ease-in-out; + transition: height 0.6s ease-in-out; +} + +/* line 13, app/assets/stylesheets/jquery.mloading.scss */ +.mloading { + position: absolute; + background: #E9E9E8; + font: normal 12px/22px "Microsoft Yahei", "微软雅黑", "宋体"; + display: none; + z-index: 1600; + background: rgba(233, 233, 232, 0); +} + +/* line 21, app/assets/stylesheets/jquery.mloading.scss */ +.mloading.active { + display: block; +} + +/* line 24, app/assets/stylesheets/jquery.mloading.scss */ +.mloading.mloading-mask { + background: rgba(233, 233, 232, 0.75); + filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75); +} + +/* line 28, app/assets/stylesheets/jquery.mloading.scss */ +.mloading-full { + position: fixed; + width: 100%; + height: 100%; + top: 0; + left: 0; +} + +/* line 35, app/assets/stylesheets/jquery.mloading.scss */ +.mloading-container > .mloading { + top: 0px; + left: 0px; + width: 100%; + height: 100%; +} + +/* line 41, app/assets/stylesheets/jquery.mloading.scss */ +.mloading-body { + width: 100%; + height: 100%; + position: relative; +} + +/* line 46, app/assets/stylesheets/jquery.mloading.scss */ +.mloading-bar { + width: 250px; + min-height: 22px; + text-align: center; + background: #fff; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.27); + border-radius: 7px; + padding: 20px 15px; + font-size: 14px; + color: #999; + position: absolute; + top: 50%; + left: 50%; + margin-left: -140px; + margin-top: -30px; + word-break: break-all; +} + +@media (max-width: 300px) { + /* line 64, app/assets/stylesheets/jquery.mloading.scss */ + .mloading-bar { + width: 62px; + height: 56px; + margin-left: -30px !important; + margin-top: -30px !important; + padding: 0; + line-height: 56px; + } + /* line 72, app/assets/stylesheets/jquery.mloading.scss */ + .mloading-bar > .mloading-text { + display: none; + } +} + +/* line 76, app/assets/stylesheets/jquery.mloading.scss */ +.mloading-bar-sm { + width: 62px; + height: 56px; + margin-left: -30px !important; + margin-top: -30px !important; + padding: 0; + line-height: 56px; +} + +/* line 84, app/assets/stylesheets/jquery.mloading.scss */ +.mloading-bar-sm > .mloading-text { + display: none; +} + +/* line 87, app/assets/stylesheets/jquery.mloading.scss */ +.mloading-icon { + width: 16px; + height: 16px; + vertical-align: middle; +} + +/* line 92, app/assets/stylesheets/jquery.mloading.scss */ +.mloading-text { + margin-left: 10px; +} + +/*! + * jquery-confirm v3.3.4 (http://craftpip.github.io/jquery-confirm/) + * Author: boniface pereira + * Website: www.craftpip.com + * Contact: hey@craftpip.com + * + * Copyright 2013-2019 jquery-confirm + * Licensed under MIT (https://github.com/craftpip/jquery-confirm/blob/master/LICENSE) + */ +@-webkit-keyframes jconfirm-spin { + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@keyframes jconfirm-spin { + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +body[class*=jconfirm-no-scroll-] { + overflow: hidden !important; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm { + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: 99999999; + font-family: inherit; + overflow: hidden; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-bg { + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + -webkit-transition: opacity .4s; + transition: opacity .4s; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-bg.jconfirm-bg-h { + opacity: 0 !important; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-scrollpane { + -webkit-perspective: 500px; + perspective: 500px; + -webkit-perspective-origin: center; + perspective-origin: center; + display: table; + width: 100%; + height: 100%; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-row { + display: table-row; + width: 100%; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-cell { + display: table-cell; + vertical-align: middle; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-holder { + max-height: 100%; + padding: 50px 0; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box-container { + -webkit-transition: -webkit-transform; + transition: -webkit-transform; + transition: transform; + transition: transform, -webkit-transform; + transition: transform,-webkit-transform; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box-container.jconfirm-no-transition { + -webkit-transition: none !important; + transition: none !important; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box { + background: white; + border-radius: 4px; + position: relative; + outline: 0; + padding: 15px 15px 0; + overflow: hidden; + margin-left: auto; + margin-right: auto; +} + +@-webkit-keyframes type-blue { + 1%, 100% { + border-color: #3498db; + } + 50% { + border-color: #5faee3; + } +} + +@keyframes type-blue { + 1%, 100% { + border-color: #3498db; + } + 50% { + border-color: #5faee3; + } +} + +@-webkit-keyframes type-green { + 1%, 100% { + border-color: #2ecc71; + } + 50% { + border-color: #54d98c; + } +} + +@keyframes type-green { + 1%, 100% { + border-color: #2ecc71; + } + 50% { + border-color: #54d98c; + } +} + +@-webkit-keyframes type-red { + 1%, 100% { + border-color: #e74c3c; + } + 50% { + border-color: #ed7669; + } +} + +@keyframes type-red { + 1%, 100% { + border-color: #e74c3c; + } + 50% { + border-color: #ed7669; + } +} + +@-webkit-keyframes type-orange { + 1%, 100% { + border-color: #f1c40f; + } + 50% { + border-color: #f4d03f; + } +} + +@keyframes type-orange { + 1%, 100% { + border-color: #f1c40f; + } + 50% { + border-color: #f4d03f; + } +} + +@-webkit-keyframes type-purple { + 1%, 100% { + border-color: #9b59b6; + } + 50% { + border-color: #b07cc6; + } +} + +@keyframes type-purple { + 1%, 100% { + border-color: #9b59b6; + } + 50% { + border-color: #b07cc6; + } +} + +@-webkit-keyframes type-dark { + 1%, 100% { + border-color: #34495e; + } + 50% { + border-color: #46627f; + } +} + +@keyframes type-dark { + 1%, 100% { + border-color: #34495e; + } + 50% { + border-color: #46627f; + } +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-type-animated { + -webkit-animation-duration: 2s; + animation-duration: 2s; + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-type-blue { + border-top: solid 7px #3498db; + -webkit-animation-name: type-blue; + animation-name: type-blue; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-type-green { + border-top: solid 7px #2ecc71; + -webkit-animation-name: type-green; + animation-name: type-green; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-type-red { + border-top: solid 7px #e74c3c; + -webkit-animation-name: type-red; + animation-name: type-red; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-type-orange { + border-top: solid 7px #f1c40f; + -webkit-animation-name: type-orange; + animation-name: type-orange; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-type-purple { + border-top: solid 7px #9b59b6; + -webkit-animation-name: type-purple; + animation-name: type-purple; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-type-dark { + border-top: solid 7px #34495e; + -webkit-animation-name: type-dark; + animation-name: type-dark; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.loading { + height: 120px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.loading:before { + content: ''; + position: absolute; + left: 0; + background: white; + right: 0; + top: 0; + bottom: 0; + border-radius: 10px; + z-index: 1; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.loading:after { + opacity: .6; + content: ''; + height: 30px; + width: 30px; + border: solid 3px transparent; + position: absolute; + left: 50%; + margin-left: -15px; + border-radius: 50%; + -webkit-animation: jconfirm-spin 1s infinite linear; + animation: jconfirm-spin 1s infinite linear; + border-bottom-color: dodgerblue; + top: 50%; + margin-top: -15px; + z-index: 2; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box div.jconfirm-closeIcon { + height: 20px; + width: 20px; + position: absolute; + top: 10px; + right: 10px; + cursor: pointer; + opacity: .6; + text-align: center; + font-size: 27px !important; + line-height: 14px !important; + display: none; + z-index: 1; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box div.jconfirm-closeIcon:empty { + display: none; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box div.jconfirm-closeIcon .fa { + font-size: 16px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box div.jconfirm-closeIcon .glyphicon { + font-size: 16px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box div.jconfirm-closeIcon .zmdi { + font-size: 16px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box div.jconfirm-closeIcon:hover { + opacity: 1; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box div.jconfirm-title-c { + display: block; + font-size: 22px; + line-height: 20px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + cursor: default; + padding-bottom: 15px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box div.jconfirm-title-c.jconfirm-hand { + cursor: move; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c { + font-size: inherit; + display: inline-block; + vertical-align: middle; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c i { + vertical-align: middle; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c:empty { + display: none; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + font-size: inherit; + font-family: inherit; + display: inline-block; + vertical-align: middle; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title:empty { + display: none; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box div.jconfirm-content-pane { + margin-bottom: 15px; + height: auto; + -webkit-transition: height .4s ease-in; + transition: height .4s ease-in; + display: inline-block; + width: 100%; + position: relative; + overflow-x: hidden; + overflow-y: auto; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box div.jconfirm-content-pane.no-scroll { + overflow-y: hidden; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar { + width: 3px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar-track { + background: rgba(0, 0, 0, 0.1); +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar-thumb { + background: #666; + border-radius: 3px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content { + overflow: auto; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content img { + max-width: 100%; + height: auto; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content:empty { + display: none; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box .jconfirm-buttons { + padding-bottom: 11px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box .jconfirm-buttons > button { + margin-bottom: 4px; + margin-left: 2px; + margin-right: 2px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box .jconfirm-buttons button { + display: inline-block; + padding: 6px 12px; + font-size: 14px; + font-weight: 400; + line-height: 1.42857143; + text-align: center; + white-space: nowrap; + vertical-align: middle; + touch-action: manipulation; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + border-radius: 4px; + min-height: 1em; + -webkit-transition: opacity .1s ease,background-color .1s ease,color .1s ease,background .1s ease,-webkit-box-shadow .1s ease; + -webkit-transition: opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease; + transition: opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease; + -webkit-tap-highlight-color: transparent; + border: 0; + background-image: none; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box .jconfirm-buttons button.btn-blue { + background-color: #3498db; + color: #FFF; + text-shadow: none; + -webkit-transition: background .2s; + transition: background .2s; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box .jconfirm-buttons button.btn-blue:hover { + background-color: #2980b9; + color: #FFF; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green { + background-color: #2ecc71; + color: #FFF; + text-shadow: none; + -webkit-transition: background .2s; + transition: background .2s; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green:hover { + background-color: #27ae60; + color: #FFF; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red { + background-color: #e74c3c; + color: #FFF; + text-shadow: none; + -webkit-transition: background .2s; + transition: background .2s; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red:hover { + background-color: #c0392b; + color: #FFF; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box .jconfirm-buttons button.btn-orange { + background-color: #f1c40f; + color: #FFF; + text-shadow: none; + -webkit-transition: background .2s; + transition: background .2s; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box .jconfirm-buttons button.btn-orange:hover { + background-color: #f39c12; + color: #FFF; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default { + background-color: #ecf0f1; + color: #000; + text-shadow: none; + -webkit-transition: background .2s; + transition: background .2s; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default:hover { + background-color: #bdc3c7; + color: #000; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box .jconfirm-buttons button.btn-purple { + background-color: #9b59b6; + color: #FFF; + text-shadow: none; + -webkit-transition: background .2s; + transition: background .2s; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box .jconfirm-buttons button.btn-purple:hover { + background-color: #8e44ad; + color: #FFF; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box .jconfirm-buttons button.btn-dark { + background-color: #34495e; + color: #FFF; + text-shadow: none; + -webkit-transition: background .2s; + transition: background .2s; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box .jconfirm-buttons button.btn-dark:hover { + background-color: #2c3e50; + color: #FFF; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-type-red .jconfirm-title-c .jconfirm-icon-c { + color: #e74c3c !important; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-type-blue .jconfirm-title-c .jconfirm-icon-c { + color: #3498db !important; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-type-green .jconfirm-title-c .jconfirm-icon-c { + color: #2ecc71 !important; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-type-purple .jconfirm-title-c .jconfirm-icon-c { + color: #9b59b6 !important; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-type-orange .jconfirm-title-c .jconfirm-icon-c { + color: #f1c40f !important; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-type-dark .jconfirm-title-c .jconfirm-icon-c { + color: #34495e !important; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-clear { + clear: both; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-rtl { + direction: rtl; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-rtl div.jconfirm-closeIcon { + left: 5px; + right: auto; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-white .jconfirm-bg, .jconfirm.jconfirm-light .jconfirm-bg { + background-color: #444; + opacity: .2; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-white .jconfirm-box, .jconfirm.jconfirm-light .jconfirm-box { + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); + border-radius: 5px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-white .jconfirm-box .jconfirm-title-c .jconfirm-icon-c, .jconfirm.jconfirm-light .jconfirm-box .jconfirm-title-c .jconfirm-icon-c { + margin-right: 8px; + margin-left: 0; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons, .jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons { + float: right; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button, .jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button { + text-transform: uppercase; + font-size: 14px; + font-weight: bold; + text-shadow: none; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button.btn-default, .jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button.btn-default { + box-shadow: none; + color: #333; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button.btn-default:hover, .jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button.btn-default:hover { + background: #ddd; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-white.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c, .jconfirm.jconfirm-light.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c { + margin-left: 8px; + margin-right: 0; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-black .jconfirm-bg, .jconfirm.jconfirm-dark .jconfirm-bg { + background-color: darkslategray; + opacity: .4; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-black .jconfirm-box, .jconfirm.jconfirm-dark .jconfirm-box { + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); + background: #444; + border-radius: 5px; + color: white; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-black .jconfirm-box .jconfirm-title-c .jconfirm-icon-c, .jconfirm.jconfirm-dark .jconfirm-box .jconfirm-title-c .jconfirm-icon-c { + margin-right: 8px; + margin-left: 0; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons, .jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons { + float: right; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button, .jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button { + border: 0; + background-image: none; + text-transform: uppercase; + font-size: 14px; + font-weight: bold; + text-shadow: none; + -webkit-transition: background .1s; + transition: background .1s; + color: white; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button.btn-default, .jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button.btn-default { + box-shadow: none; + color: #fff; + background: 0; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button.btn-default:hover, .jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button.btn-default:hover { + background: #666; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-black.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c, .jconfirm.jconfirm-dark.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c { + margin-left: 8px; + margin-right: 0; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.hilight.jconfirm-hilight-shake { + -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both; + animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.hilight.jconfirm-hilight-glow { + -webkit-animation: glow 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both; + animation: glow 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); +} + +@-webkit-keyframes shake { + 10%, 90% { + -webkit-transform: translate3d(-2px, 0, 0); + transform: translate3d(-2px, 0, 0); + } + 20%, 80% { + -webkit-transform: translate3d(4px, 0, 0); + transform: translate3d(4px, 0, 0); + } + 30%, 50%, 70% { + -webkit-transform: translate3d(-8px, 0, 0); + transform: translate3d(-8px, 0, 0); + } + 40%, 60% { + -webkit-transform: translate3d(8px, 0, 0); + transform: translate3d(8px, 0, 0); + } +} + +@keyframes shake { + 10%, 90% { + -webkit-transform: translate3d(-2px, 0, 0); + transform: translate3d(-2px, 0, 0); + } + 20%, 80% { + -webkit-transform: translate3d(4px, 0, 0); + transform: translate3d(4px, 0, 0); + } + 30%, 50%, 70% { + -webkit-transform: translate3d(-8px, 0, 0); + transform: translate3d(-8px, 0, 0); + } + 40%, 60% { + -webkit-transform: translate3d(8px, 0, 0); + transform: translate3d(8px, 0, 0); + } +} + +@-webkit-keyframes glow { + 0%, 100% { + box-shadow: 0 0 0 red; + } + 50% { + box-shadow: 0 0 30px red; + } +} + +@keyframes glow { + 0%, 100% { + box-shadow: 0 0 0 red; + } + 50% { + box-shadow: 0 0 30px red; + } +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm { + -webkit-perspective: 400px; + perspective: 400px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box { + opacity: 1; + -webkit-transition-property: all; + transition-property: all; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-animation-top, .jconfirm .jconfirm-box.jconfirm-animation-left, .jconfirm .jconfirm-box.jconfirm-animation-right, .jconfirm .jconfirm-box.jconfirm-animation-bottom, .jconfirm .jconfirm-box.jconfirm-animation-opacity, .jconfirm .jconfirm-box.jconfirm-animation-zoom, .jconfirm .jconfirm-box.jconfirm-animation-scale, .jconfirm .jconfirm-box.jconfirm-animation-none, .jconfirm .jconfirm-box.jconfirm-animation-rotate, .jconfirm .jconfirm-box.jconfirm-animation-rotatex, .jconfirm .jconfirm-box.jconfirm-animation-rotatey, .jconfirm .jconfirm-box.jconfirm-animation-scaley, .jconfirm .jconfirm-box.jconfirm-animation-scalex { + opacity: 0; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-animation-rotate { + -webkit-transform: rotate(90deg); + transform: rotate(90deg); +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-animation-rotatex { + -webkit-transform: rotateX(90deg); + transform: rotateX(90deg); + -webkit-transform-origin: center; + transform-origin: center; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-animation-rotatexr { + -webkit-transform: rotateX(-90deg); + transform: rotateX(-90deg); + -webkit-transform-origin: center; + transform-origin: center; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-animation-rotatey { + -webkit-transform: rotatey(90deg); + transform: rotatey(90deg); + -webkit-transform-origin: center; + transform-origin: center; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-animation-rotateyr { + -webkit-transform: rotatey(-90deg); + transform: rotatey(-90deg); + -webkit-transform-origin: center; + transform-origin: center; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-animation-scaley { + -webkit-transform: scaley(1.5); + transform: scaley(1.5); + -webkit-transform-origin: center; + transform-origin: center; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-animation-scalex { + -webkit-transform: scalex(1.5); + transform: scalex(1.5); + -webkit-transform-origin: center; + transform-origin: center; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-animation-top { + -webkit-transform: translate(0px, -100px); + transform: translate(0px, -100px); +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-animation-left { + -webkit-transform: translate(-100px, 0px); + transform: translate(-100px, 0px); +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-animation-right { + -webkit-transform: translate(100px, 0px); + transform: translate(100px, 0px); +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-animation-bottom { + -webkit-transform: translate(0px, 100px); + transform: translate(0px, 100px); +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-animation-zoom { + -webkit-transform: scale(1.2); + transform: scale(1.2); +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-animation-scale { + -webkit-transform: scale(0.5); + transform: scale(0.5); +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm .jconfirm-box.jconfirm-animation-none { + visibility: hidden; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-supervan .jconfirm-bg { + background-color: rgba(54, 70, 93, 0.95); +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-supervan .jconfirm-box { + background-color: transparent; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-blue { + border: 0; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-green { + border: 0; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-red { + border: 0; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-orange { + border: 0; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-purple { + border: 0; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-dark { + border: 0; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-closeIcon { + color: white; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c { + text-align: center; + color: white; + font-size: 28px; + font-weight: normal; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c > * { + padding-bottom: 25px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c { + margin-right: 8px; + margin-left: 0; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-content-pane { + margin-bottom: 25px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-content { + text-align: center; + color: white; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-supervan .jconfirm-box .jconfirm-buttons { + text-align: center; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-supervan .jconfirm-box .jconfirm-buttons button { + font-size: 16px; + border-radius: 2px; + background: #303f53; + text-shadow: none; + border: 0; + color: white; + padding: 10px; + min-width: 100px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-supervan.jconfirm-rtl .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c { + margin-left: 8px; + margin-right: 0; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-material .jconfirm-bg { + background-color: rgba(0, 0, 0, 0.67); +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-material .jconfirm-box { + background-color: white; + box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12); + padding: 30px 25px 10px 25px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-material .jconfirm-box .jconfirm-title-c .jconfirm-icon-c { + margin-right: 8px; + margin-left: 0; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-closeIcon { + color: rgba(0, 0, 0, 0.87); +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-title-c { + color: rgba(0, 0, 0, 0.87); + font-size: 22px; + font-weight: bold; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-content { + color: rgba(0, 0, 0, 0.87); +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-material .jconfirm-box .jconfirm-buttons { + text-align: right; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-material .jconfirm-box .jconfirm-buttons button { + text-transform: uppercase; + font-weight: 500; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-material.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c { + margin-left: 8px; + margin-right: 0; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-bootstrap .jconfirm-bg { + background-color: rgba(0, 0, 0, 0.21); +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-bootstrap .jconfirm-box { + background-color: white; + box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2); + border: solid 1px rgba(0, 0, 0, 0.4); + padding: 15px 0 0; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-title-c .jconfirm-icon-c { + margin-right: 8px; + margin-left: 0; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-closeIcon { + color: rgba(0, 0, 0, 0.87); +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-title-c { + color: rgba(0, 0, 0, 0.87); + font-size: 22px; + font-weight: bold; + padding-left: 15px; + padding-right: 15px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-content { + color: rgba(0, 0, 0, 0.87); + padding: 0 15px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-buttons { + text-align: right; + padding: 10px; + margin: -5px 0 0; + border-top: solid 1px #ddd; + overflow: hidden; + border-radius: 0 0 4px 4px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-buttons button { + font-weight: 500; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-bootstrap.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c { + margin-left: 8px; + margin-right: 0; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-modern .jconfirm-bg { + background-color: slategray; + opacity: .6; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-modern .jconfirm-box { + background-color: white; + box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12); + padding: 30px 30px 15px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-closeIcon { + color: rgba(0, 0, 0, 0.87); + top: 15px; + right: 15px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c { + color: rgba(0, 0, 0, 0.87); + font-size: 24px; + font-weight: bold; + text-align: center; + margin-bottom: 10px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c { + -webkit-transition: -webkit-transform .5s; + transition: -webkit-transform .5s; + transition: transform .5s; + transition: transform .5s, -webkit-transform .5s; + transition: transform .5s,-webkit-transform .5s; + -webkit-transform: scale(0); + transform: scale(0); + display: block; + margin-right: 0; + margin-left: 0; + margin-bottom: 10px; + font-size: 69px; + color: #aaa; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-content { + text-align: center; + font-size: 15px; + color: #777; + margin-bottom: 25px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons { + text-align: center; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons button { + font-weight: bold; + text-transform: uppercase; + -webkit-transition: background .1s; + transition: background .1s; + padding: 10px 20px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons button + button { + margin-left: 4px; +} + +/* line 9, app/assets/stylesheets/jquery-confirm.min.css */ +.jconfirm.jconfirm-modern.jconfirm-open .jconfirm-box .jconfirm-title-c .jconfirm-icon-c { + -webkit-transform: scale(1); + transform: scale(1); +} + +/* BASICS */ +/* line 3, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror { + /* Set height, width, borders, and global font properties here */ + font-family: monospace; + height: 300px; + color: black; + direction: ltr; +} + +/* PADDING */ +/* line 13, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-lines { + padding: 4px 0; + /* Vertical padding around content */ +} + +/* line 16, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror pre.CodeMirror-line, +.CodeMirror pre.CodeMirror-line-like { + padding: 0 4px; + /* Horizontal padding of content */ +} + +/* line 21, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler { + background-color: white; + /* The little square between H and V scrollbars */ +} + +/* GUTTER */ +/* line 27, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-gutters { + border-right: 1px solid #ddd; + background-color: #f7f7f7; + white-space: nowrap; +} + +/* line 33, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-linenumber { + padding: 0 3px 0 5px; + min-width: 20px; + text-align: right; + color: #999; + white-space: nowrap; +} + +/* line 41, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-guttermarker { + color: black; +} + +/* line 42, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-guttermarker-subtle { + color: #999; +} + +/* CURSOR */ +/* line 46, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-cursor { + border-left: 1px solid black; + border-right: none; + width: 0; +} + +/* Shown when moving in bi-directional text */ +/* line 52, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror div.CodeMirror-secondarycursor { + border-left: 1px solid silver; +} + +/* line 55, vendor/assets/codemirror/lib/codemirror.css */ +.cm-fat-cursor .CodeMirror-cursor { + width: auto; + border: 0 !important; + background: #7e7; +} + +/* line 60, vendor/assets/codemirror/lib/codemirror.css */ +.cm-fat-cursor div.CodeMirror-cursors { + z-index: 1; +} + +/* line 63, vendor/assets/codemirror/lib/codemirror.css */ +.cm-fat-cursor-mark { + background-color: rgba(20, 255, 20, 0.5); + -webkit-animation: blink 1.06s steps(1) infinite; + animation: blink 1.06s steps(1) infinite; +} + +/* line 69, vendor/assets/codemirror/lib/codemirror.css */ +.cm-animate-fat-cursor { + width: auto; + border: 0; + -webkit-animation: blink 1.06s steps(1) infinite; + animation: blink 1.06s steps(1) infinite; + background-color: #7e7; +} + +@-webkit-keyframes blink { + 0% { + } + 50% { + background-color: transparent; + } + 100% { + } +} + +@keyframes blink { + 0% { + } + 50% { + background-color: transparent; + } + 100% { + } +} + +/* Can style cursor different in overwrite (non-insert) mode */ +/* line 96, vendor/assets/codemirror/lib/codemirror.css */ +.cm-tab { + display: inline-block; + text-decoration: inherit; +} + +/* line 98, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-rulers { + position: absolute; + left: 0; + right: 0; + top: -50px; + bottom: 0; + overflow: hidden; +} + +/* line 103, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-ruler { + border-left: 1px solid #ccc; + top: 0; + bottom: 0; + position: absolute; +} + +/* DEFAULT THEME */ +/* line 111, vendor/assets/codemirror/lib/codemirror.css */ +.cm-s-default .cm-header { + color: blue; +} + +/* line 112, vendor/assets/codemirror/lib/codemirror.css */ +.cm-s-default .cm-quote { + color: #090; +} + +/* line 113, vendor/assets/codemirror/lib/codemirror.css */ +.cm-negative { + color: #d44; +} + +/* line 114, vendor/assets/codemirror/lib/codemirror.css */ +.cm-positive { + color: #292; +} + +/* line 115, vendor/assets/codemirror/lib/codemirror.css */ +.cm-header, .cm-strong { + font-weight: bold; +} + +/* line 116, vendor/assets/codemirror/lib/codemirror.css */ +.cm-em { + font-style: italic; +} + +/* line 117, vendor/assets/codemirror/lib/codemirror.css */ +.cm-link { + text-decoration: underline; +} + +/* line 118, vendor/assets/codemirror/lib/codemirror.css */ +.cm-strikethrough { + text-decoration: line-through; +} + +/* line 120, vendor/assets/codemirror/lib/codemirror.css */ +.cm-s-default .cm-keyword { + color: #708; +} + +/* line 121, vendor/assets/codemirror/lib/codemirror.css */ +.cm-s-default .cm-atom { + color: #219; +} + +/* line 122, vendor/assets/codemirror/lib/codemirror.css */ +.cm-s-default .cm-number { + color: #164; +} + +/* line 123, vendor/assets/codemirror/lib/codemirror.css */ +.cm-s-default .cm-def { + color: #00f; +} + +/* line 128, vendor/assets/codemirror/lib/codemirror.css */ +.cm-s-default .cm-variable-2 { + color: #05a; +} + +/* line 129, vendor/assets/codemirror/lib/codemirror.css */ +.cm-s-default .cm-variable-3, .cm-s-default .cm-type { + color: #085; +} + +/* line 130, vendor/assets/codemirror/lib/codemirror.css */ +.cm-s-default .cm-comment { + color: #a50; +} + +/* line 131, vendor/assets/codemirror/lib/codemirror.css */ +.cm-s-default .cm-string { + color: #a11; +} + +/* line 132, vendor/assets/codemirror/lib/codemirror.css */ +.cm-s-default .cm-string-2 { + color: #f50; +} + +/* line 133, vendor/assets/codemirror/lib/codemirror.css */ +.cm-s-default .cm-meta { + color: #555; +} + +/* line 134, vendor/assets/codemirror/lib/codemirror.css */ +.cm-s-default .cm-qualifier { + color: #555; +} + +/* line 135, vendor/assets/codemirror/lib/codemirror.css */ +.cm-s-default .cm-builtin { + color: #30a; +} + +/* line 136, vendor/assets/codemirror/lib/codemirror.css */ +.cm-s-default .cm-bracket { + color: #997; +} + +/* line 137, vendor/assets/codemirror/lib/codemirror.css */ +.cm-s-default .cm-tag { + color: #170; +} + +/* line 138, vendor/assets/codemirror/lib/codemirror.css */ +.cm-s-default .cm-attribute { + color: #00c; +} + +/* line 139, vendor/assets/codemirror/lib/codemirror.css */ +.cm-s-default .cm-hr { + color: #999; +} + +/* line 140, vendor/assets/codemirror/lib/codemirror.css */ +.cm-s-default .cm-link { + color: #00c; +} + +/* line 142, vendor/assets/codemirror/lib/codemirror.css */ +.cm-s-default .cm-error { + color: #f00; +} + +/* line 143, vendor/assets/codemirror/lib/codemirror.css */ +.cm-invalidchar { + color: #f00; +} + +/* line 145, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-composing { + border-bottom: 2px solid; +} + +/* Default styles for common addons */ +/* line 149, vendor/assets/codemirror/lib/codemirror.css */ +div.CodeMirror span.CodeMirror-matchingbracket { + color: #0b0; +} + +/* line 150, vendor/assets/codemirror/lib/codemirror.css */ +div.CodeMirror span.CodeMirror-nonmatchingbracket { + color: #a22; +} + +/* line 151, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-matchingtag { + background: rgba(255, 150, 0, 0.3); +} + +/* line 152, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-activeline-background { + background: #e8f2ff; +} + +/* STOP */ +/* The rest of this file contains styles related to the mechanics of + the editor. You probably shouldn't touch them. */ +/* line 159, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror { + position: relative; + overflow: hidden; + background: white; +} + +/* line 165, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-scroll { + overflow: scroll !important; + /* Things will break if this is overridden */ + /* 30px is the magic margin used to hide the element's real scrollbars */ + /* See overflow: hidden in .CodeMirror */ + margin-bottom: -30px; + margin-right: -30px; + padding-bottom: 30px; + height: 100%; + outline: none; + /* Prevent dragging from highlighting the element */ + position: relative; +} + +/* line 175, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-sizer { + position: relative; + border-right: 30px solid transparent; +} + +/* The fake, visible scrollbars. Used to force redraw during scrolling + before actual scrolling happens, thus preventing shaking and + flickering artifacts. */ +/* line 183, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler { + position: absolute; + z-index: 6; + display: none; +} + +/* line 188, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-vscrollbar { + right: 0; + top: 0; + overflow-x: hidden; + overflow-y: scroll; +} + +/* line 193, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-hscrollbar { + bottom: 0; + left: 0; + overflow-y: hidden; + overflow-x: scroll; +} + +/* line 198, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-scrollbar-filler { + right: 0; + bottom: 0; +} + +/* line 201, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-gutter-filler { + left: 0; + bottom: 0; +} + +/* line 205, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-gutters { + position: absolute; + left: 0; + top: 0; + min-height: 100%; + z-index: 3; +} + +/* line 210, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-gutter { + white-space: normal; + height: 100%; + display: inline-block; + vertical-align: top; + margin-bottom: -30px; +} + +/* line 217, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-gutter-wrapper { + position: absolute; + z-index: 4; + background: none !important; + border: none !important; +} + +/* line 223, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-gutter-background { + position: absolute; + top: 0; + bottom: 0; + z-index: 4; +} + +/* line 228, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-gutter-elt { + position: absolute; + cursor: default; + z-index: 4; +} + +/* line 233, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-gutter-wrapper ::-moz-selection { + background-color: transparent; +} +.CodeMirror-gutter-wrapper ::selection { + background-color: transparent; +} + +/* line 234, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-gutter-wrapper ::-moz-selection { + background-color: transparent; +} + +/* line 236, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-lines { + cursor: text; + min-height: 1px; + /* prevents collapsing before first draw */ +} + +/* line 240, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror pre.CodeMirror-line, +.CodeMirror pre.CodeMirror-line-like { + /* Reset some styles that the rest of the page might have set */ + border-radius: 0; + border-width: 0; + background: transparent; + font-family: inherit; + font-size: inherit; + margin: 0; + white-space: pre; + word-wrap: normal; + line-height: inherit; + color: inherit; + z-index: 2; + position: relative; + overflow: visible; + -webkit-tap-highlight-color: transparent; + -webkit-font-variant-ligatures: contextual; + font-variant-ligatures: contextual; +} + +/* line 260, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-wrap pre.CodeMirror-line, +.CodeMirror-wrap pre.CodeMirror-line-like { + word-wrap: break-word; + white-space: pre-wrap; + word-break: normal; +} + +/* line 267, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-linebackground { + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + z-index: 0; +} + +/* line 273, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-linewidget { + position: relative; + z-index: 2; + padding: 0.1px; + /* Force widget margins to stay inside of the container */ +} + +/* line 281, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-rtl pre { + direction: rtl; +} + +/* line 283, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-code { + outline: none; +} + +/* Force content-box sizing for the elements where we expect it */ +/* line 288, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-scroll, +.CodeMirror-sizer, +.CodeMirror-gutter, +.CodeMirror-gutters, +.CodeMirror-linenumber { + box-sizing: content-box; +} + +/* line 297, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-measure { + position: absolute; + width: 100%; + height: 0; + overflow: hidden; + visibility: hidden; +} + +/* line 305, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-cursor { + position: absolute; + pointer-events: none; +} + +/* line 309, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-measure pre { + position: static; +} + +/* line 311, vendor/assets/codemirror/lib/codemirror.css */ +div.CodeMirror-cursors { + visibility: hidden; + position: relative; + z-index: 3; +} + +/* line 316, vendor/assets/codemirror/lib/codemirror.css */ +div.CodeMirror-dragcursors { + visibility: visible; +} + +/* line 320, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-focused div.CodeMirror-cursors { + visibility: visible; +} + +/* line 324, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-selected { + background: #d9d9d9; +} + +/* line 325, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-focused .CodeMirror-selected { + background: #d7d4f0; +} + +/* line 326, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-crosshair { + cursor: crosshair; +} + +/* line 327, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { + background: #d7d4f0; +} +.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { + background: #d7d4f0; +} + +/* line 328, vendor/assets/codemirror/lib/codemirror.css */ +.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { + background: #d7d4f0; +} + +/* line 330, vendor/assets/codemirror/lib/codemirror.css */ +.cm-searching { + background-color: #ffa; + background-color: rgba(255, 255, 0, 0.4); +} + +/* Used to force a border model for a node */ +/* line 336, vendor/assets/codemirror/lib/codemirror.css */ +.cm-force-border { + padding-right: .1px; +} + +@media print { + /* Hide the cursor when printing */ + /* line 340, vendor/assets/codemirror/lib/codemirror.css */ + .CodeMirror div.CodeMirror-cursors { + visibility: hidden; + } +} + +/* See issue #2901 */ +/* line 346, vendor/assets/codemirror/lib/codemirror.css */ +.cm-tab-wrap-hack:after { + content: ''; +} + +/* Help users use markselection to safely style text background */ +/* line 349, vendor/assets/codemirror/lib/codemirror.css */ +span.CodeMirror-selectedtext { + background: none; +} + +/*! Editor.md v1.5.0 | editormd.min.css | Open source online markdown editor. | MIT License | By: Pandao | https://github.com/pandao/editor.md | 2015-06-09 */ +/*! prefixes.scss v0.1.0 | Author: Pandao | https://github.com/pandao/prefixes.scss | MIT license | Copyright (c) 2015 */ +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.fa-ul, .markdown-body .task-list-item, li.L0, li.L1, li.L2, li.L3, li.L5, li.L6, li.L7, li.L8 { + list-style-type: none; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-form br, .markdown-body hr:after { + clear: both; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd { + width: 90%; + height: 640px; + margin: 0 auto 15px; + text-align: left; + overflow: hidden; + position: relative; + border: 1px solid #ddd; + font-family: "Meiryo UI","Microsoft YaHei","Malgun Gothic","Segoe UI","Trebuchet MS",Helvetica,Monaco,monospace,Tahoma,STXihei,"华文细黑",STHeiti,"Helvetica Neue","Droid Sans","wenquanyi micro hei",FreeSans,Arimo,Arial,SimSun,"宋体",Heiti,"黑体",sans-serif; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd *, .editormd :after, .editormd :before { + box-sizing: border-box; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd a { + text-decoration: none; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd img { + border: none; + vertical-align: middle; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd .editormd-html-textarea, .editormd .editormd-markdown-textarea, .editormd > textarea { + width: 0; + height: 0; + outline: 0; + resize: none; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd .editormd-html-textarea, .editormd .editormd-markdown-textarea { + display: none; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd button, .editormd input[type=text], .editormd input[type=button], .editormd input[type=submit], .editormd select, .editormd textarea { + -webkit-appearance: none; + -moz-appearance: none; + -ms-appearance: none; + appearance: none; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd ::-webkit-scrollbar { + height: 10px; + width: 7px; + background: rgba(0, 0, 0, 0.1); +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd ::-webkit-scrollbar:hover { + background: rgba(0, 0, 0, 0.2); +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd ::-webkit-scrollbar-thumb { + background: rgba(0, 0, 0, 0.3); + border-radius: 6px; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd ::-webkit-scrollbar-thumb:hover { + -ms-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25); + -o-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25); + box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25); + background-color: rgba(0, 0, 0, 0.4); +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-user-unselect { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-toolbar { + width: 100%; + min-height: 37px; + background: #fff; + display: none; + position: absolute; + top: 0; + left: 0; + z-index: 10; + border-bottom: 1px solid #ddd; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-toolbar-container { + padding: 0 8px; + min-height: 35px; + -o-user-select: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-toolbar-container, .markdown-body .octicon { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-menu, .markdown-body ol, .markdown-body td, .markdown-body th, .markdown-body ul { + padding: 0; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-menu { + margin: 0; + list-style: none; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-menu > li { + margin: 0; + padding: 5px 1px; + display: inline-block; + position: relative; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-menu > li.divider { + display: inline-block; + text-indent: -9999px; + margin: 0 5px; + height: 65%; + border-right: 1px solid #ddd; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-menu > li > a { + outline: 0; + color: #666; + display: inline-block; + min-width: 24px; + font-size: 16px; + text-decoration: none; + text-align: center; + border-radius: 2px; + border: 1px solid #fff; + -webkit-transition: all 300ms ease-out; + transition: all 300ms ease-out; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dropdown-menu > li > a:hover, .editormd-menu > li > a { + -webkit-transition: all 300ms ease-out; + -moz-transition: all 300ms ease-out; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-menu > li > a.active, .editormd-menu > li > a:hover { + border: 1px solid #ddd; + background: #eee; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-menu > li > a > .fa { + text-align: center; + display: block; + padding: 5px; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-menu > li > a > .editormd-bold { + padding: 5px 2px; + display: inline-block; + font-weight: 700; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-menu > li:hover .editormd-dropdown-menu { + display: block; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-menu > li + li > a { + margin-left: 3px; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dropdown-menu { + display: none; + background: #fff; + border: 1px solid #ddd; + width: 148px; + list-style: none; + position: absolute; + top: 33px; + left: 0; + z-index: 100; + -ms-box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.15); + -o-box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.15); + box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.15); +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dropdown-menu:after, .editormd-dropdown-menu:before { + width: 0; + height: 0; + display: block; + content: ""; + position: absolute; + top: -11px; + left: 8px; + border: 5px solid transparent; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dropdown-menu:before { + border-bottom-color: #ccc; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dropdown-menu:after { + border-bottom-color: #fff; + top: -10px; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dropdown-menu > li > a { + color: #666; + display: block; + text-decoration: none; + padding: 8px 10px; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dropdown-menu > li > a:hover { + background: #f6f6f6; + -webkit-transition: all 300ms ease-out; + transition: all 300ms ease-out; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dropdown-menu > li + li { + border-top: 1px solid #ddd; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-container { + margin: 0; + width: 100%; + height: 100%; + overflow: hidden; + padding: 35px 0 0; + position: relative; + background: #fff; + box-sizing: border-box; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog { + color: #666; + position: fixed; + z-index: 99999; + display: none; + border-radius: 3px; + -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); + -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); + box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); + background: #fff; + font-size: 14px; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-container { + position: relative; + padding: 20px; + line-height: 1.4; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-container h1 { + font-size: 24px; + margin-bottom: 10px; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-container h1 .fa { + color: #2C7EEA; + padding-right: 5px; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-container h1 small { + padding-left: 5px; + font-weight: 400; + font-size: 12px; + color: #999; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-container select { + color: #999; + padding: 3px 8px; + border: 1px solid #ddd; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-close { + position: absolute; + top: 12px; + right: 15px; + font-size: 18px; + color: #ccc; + -webkit-transition: color 300ms ease-out; + transition: color 300ms ease-out; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-close:hover { + color: #999; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-header { + padding: 11px 20px; + border-bottom: 1px solid #eee; + -webkit-transition: background 300ms ease-out; + transition: background 300ms ease-out; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-header:hover { + background: #f6f6f6; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-title { + font-size: 14px; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-footer { + padding: 10px 0 0; + text-align: right; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-info { + width: 420px; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-info h1 { + font-weight: 400; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-info .editormd-dialog-container { + padding: 20px 25px 25px; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-info .editormd-dialog-close { + top: 10px; + right: 10px; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-info .hover-link:hover, .editormd-dialog-info p > a { + color: #2196F3; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-info .hover-link { + color: #666; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-info a .fa-external-link { + display: none; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-info a:hover { + color: #2196F3; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-info a:hover .fa-external-link { + display: inline-block; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-container-mask, .editormd-dialog-mask, .editormd-mask { + display: none; + width: 100%; + height: 100%; + position: absolute; + top: 0; + left: 0; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-mask-bg, .editormd-mask { + background: #fff; + opacity: .5; + filter: alpha(opacity=50); +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-mask { + position: fixed; + background: #000; + opacity: .2; + filter: alpha(opacity=20); + z-index: 99998; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-container-mask, .editormd-dialog-mask-con { + background: url(../images/loading.gif) center center no-repeat; + background-size: 32px 32px; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-container-mask { + z-index: 20; + display: block; + background-color: #fff; +} + +@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) { + /* line 2, vendor/assets/editormd/css/editormd.min.css */ + .editormd-container-mask, .editormd-dialog-mask-con { + background-image: url(../images/loading@2x.gif); + } +} + +@media only screen and (-webkit-min-device-pixel-ratio: 3), only screen and (min-device-pixel-ratio: 3) { + /* line 2, vendor/assets/editormd/css/editormd.min.css */ + .editormd-container-mask, .editormd-dialog-mask-con { + background-image: url(../images/loading@3x.gif); + } +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-code-block-dialog textarea, .editormd-preformatted-text-dialog textarea { + width: 100%; + height: 400px; + margin-bottom: 6px; + overflow: auto; + border: 1px solid #eee; + background: #fff; + padding: 15px; + resize: none; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-code-toolbar { + color: #999; + font-size: 14px; + margin: -5px 0 10px; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-grid-table { + width: 99%; + display: table; + border: 1px solid #ddd; + border-collapse: collapse; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-grid-table-row { + width: 100%; + display: table-row; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-grid-table-row a { + font-size: 1.4em; + width: 5%; + height: 36px; + color: #999; + text-align: center; + display: table-cell; + vertical-align: middle; + border: 1px solid #ddd; + text-decoration: none; + -webkit-transition: background-color 300ms ease-out,color 100ms ease-in; + transition: background-color 300ms ease-out,color 100ms ease-in; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-grid-table-row a.selected { + color: #666; + background-color: #eee; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-grid-table-row a:hover { + color: #777; + background-color: #f6f6f6; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-tab-head { + list-style: none; + border-bottom: 1px solid #ddd; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-tab-head li { + display: inline-block; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-tab-head li a { + color: #999; + display: block; + padding: 6px 12px 5px; + text-align: center; + text-decoration: none; + margin-bottom: -1px; + border: 1px solid #ddd; + -moz-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-top-right-radius: 3px; + border-top-right-radius: 3px; + background: #f6f6f6; + -webkit-transition: all 300ms ease-out; + transition: all 300ms ease-out; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-tab-head li a:hover { + color: #666; + background: #eee; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-tab-head li.active a { + color: #666; + background: #fff; + border-bottom-color: #fff; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-tab-head li + li { + margin-left: 3px; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-tab-box { + padding: 20px 0; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-form { + color: #666; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-form label { + float: left; + display: block; + width: 75px; + text-align: left; + padding: 7px 0 15px 5px; + margin: 0 0 2px; + font-weight: 400; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-form iframe { + display: none; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-form input:focus { + outline: 0; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-form input[type=text], .editormd-form input[type=number] { + color: #999; + padding: 8px; + border: 1px solid #ddd; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-form input[type=number] { + width: 40px; + display: inline-block; + padding: 6px 8px; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-form input[type=text] { + display: inline-block; + width: 264px; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-form .fa-btns { + display: inline-block; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-form .fa-btns a { + color: #999; + padding: 7px 10px 0 0; + display: inline-block; + text-decoration: none; + text-align: center; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-form .fa-btns .fa { + font-size: 1.3em; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-form .fa-btns label { + float: none; + display: inline-block; + width: auto; + text-align: left; + padding: 0 0 0 5px; + cursor: pointer; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.fa-fw, .fa-li { + text-align: center; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-container .editormd-btn, .editormd-dialog-container button, .editormd-dialog-container input[type=submit], .editormd-dialog-footer .editormd-btn, .editormd-dialog-footer button, .editormd-dialog-footer input[type=submit], .editormd-form .editormd-btn, .editormd-form button, .editormd-form input[type=submit] { + color: #666; + min-width: 75px; + cursor: pointer; + background: #fff; + padding: 7px 10px; + border: 1px solid #ddd; + border-radius: 3px; + -webkit-transition: background 300ms ease-out; + transition: background 300ms ease-out; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-container .editormd-btn:hover, .editormd-dialog-container button:hover, .editormd-dialog-container input[type=submit]:hover, .editormd-dialog-footer .editormd-btn:hover, .editormd-dialog-footer button:hover, .editormd-dialog-footer input[type=submit]:hover, .editormd-form .editormd-btn:hover, .editormd-form button:hover, .editormd-form input[type=submit]:hover { + background: #eee; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-dialog-container .editormd-btn + .editormd-btn, .editormd-dialog-footer .editormd-btn + .editormd-btn, .editormd-form .editormd-btn + .editormd-btn { + margin-left: 8px; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-file-input { + width: 75px; + height: 32px; + margin-left: 8px; + position: relative; + display: inline-block; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-file-input input[type=file] { + width: 75px; + height: 32px; + opacity: 0; + cursor: pointer; + background: #000; + display: inline-block; + position: absolute; + top: 0; + right: 0; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-file-input input[type=file]::-webkit-file-upload-button { + visibility: hidden; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-file-input:hover input[type=submit] { + background: #eee; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd .CodeMirror, .editormd-preview { + display: inline-block; + width: 50%; + height: 100%; + vertical-align: top; + box-sizing: border-box; + margin: 0; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview { + position: absolute; + top: 35px; + right: 0; + overflow: auto; + line-height: 1.6; + display: none; + background: #fff; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.fa, .fa-stack { + display: inline-block; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd .CodeMirror { + z-index: 10; + float: left; + border-right: 1px solid #ddd; + font-size: 14px; + font-family: "YaHei Consolas Hybrid",Consolas,"微软雅黑","Meiryo UI","Malgun Gothic","Segoe UI","Trebuchet MS",Helvetica,Monaco,courier,monospace; + line-height: 1.6; + margin-top: 35px; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd .CodeMirror pre { + font-size: 14px; + padding: 0 12px; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd .CodeMirror-linenumbers { + padding: 0 5px; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd .CodeMirror-focused .CodeMirror-selected, .editormd .CodeMirror-selected { + background: #70B7FF; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd .CodeMirror, .editormd .CodeMirror-scroll, .editormd .editormd-preview { + -webkit-overflow-scrolling: touch; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd .styled-background { + background-color: #ff7; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd .CodeMirror-focused .cm-matchhighlight { + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAFklEQVQI12NgYGBgkKzc8x9CMDAwAAAmhwSbidEoSQAAAABJRU5ErkJggg==); + background-position: bottom; + background-repeat: repeat-x; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd .CodeMirror-empty.CodeMirror-focused { + outline: 0; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd .CodeMirror pre.CodeMirror-placeholder { + color: #999; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd .cm-trailingspace { + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAACCAYAAAB/qH1jAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QUXCToH00Y1UgAAACFJREFUCNdjPMDBUc/AwNDAAAFMTAwMDA0OP34wQgX/AQBYgwYEx4f9lQAAAABJRU5ErkJggg==); + background-position: bottom left; + background-repeat: repeat-x; +} + +/* line 2, vendor/assets/editormd/css/editormd.min.css */ +.editormd .cm-tab { + background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=) right no-repeat; +} + +/*! prefixes.scss v0.1.0 | Author: Pandao | https://github.com/pandao/prefixes.scss | MIT license | Copyright (c) 2015 */ +/*! + * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ +@font-face { + font-family: FontAwesome; + src: url(../fonts/fontawesome-webfont.eot?v=4.3.0); + src: url(../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff2?v=4.3.0) format("woff2"), url(../fonts/fontawesome-webfont.woff?v=4.3.0) format("woff"), url(../fonts/fontawesome-webfont.ttf?v=4.3.0) format("truetype"), url(../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular) format("svg"); + font-weight: 400; + font-style: normal; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa { + font: normal normal normal 14px/1 FontAwesome; + font-size: inherit; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + -webkit-transform: translate(0, 0); + transform: translate(0, 0); +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-lg { + font-size: 1.33333333em; + line-height: .75em; + vertical-align: -15%; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-2x { + font-size: 2em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-3x { + font-size: 3em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-4x { + font-size: 4em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-5x { + font-size: 5em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-fw { + width: 1.28571429em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-ul { + padding-left: 0; + margin-left: 2.14285714em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-ul > li { + position: relative; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-li { + position: absolute; + left: -2.14285714em; + width: 2.14285714em; + top: .14285714em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-li.fa-lg { + left: -1.85714286em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-border { + padding: .2em .25em .15em; + border: .08em solid #eee; + border-radius: .1em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.pull-right { + float: right; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.pull-left { + float: left; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa.pull-left { + margin-right: .3em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa.pull-right { + margin-left: .3em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); +} + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0); + transform: rotate(0); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0); + transform: rotate(0); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-rotate-90 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); + -webkit-transform: rotate(90deg); + transform: rotate(90deg); +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-rotate-180 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); + -webkit-transform: rotate(180deg); + transform: rotate(180deg); +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-rotate-270 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); + -webkit-transform: rotate(270deg); + transform: rotate(270deg); +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-flip-horizontal { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-flip-vertical { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); + -webkit-transform: scale(1, -1); + transform: scale(1, -1); +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +:root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-rotate-90 { + -webkit-filter: none; + filter: none; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-stack { + position: relative; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-stack-1x, .fa-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-stack-1x { + line-height: inherit; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-stack-2x { + font-size: 2em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-inverse { + color: #fff; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-glass:before { + content: "\f000"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-music:before { + content: "\f001"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-search:before { + content: "\f002"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-envelope-o:before { + content: "\f003"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-heart:before { + content: "\f004"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-star:before { + content: "\f005"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-star-o:before { + content: "\f006"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-user:before { + content: "\f007"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-film:before { + content: "\f008"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-th-large:before { + content: "\f009"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-th:before { + content: "\f00a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-th-list:before { + content: "\f00b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-check:before { + content: "\f00c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-close:before, .fa-remove:before, .fa-times:before { + content: "\f00d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-search-plus:before { + content: "\f00e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-search-minus:before { + content: "\f010"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-power-off:before { + content: "\f011"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-signal:before { + content: "\f012"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-cog:before, .fa-gear:before { + content: "\f013"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-trash-o:before { + content: "\f014"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-home:before { + content: "\f015"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-file-o:before { + content: "\f016"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-clock-o:before { + content: "\f017"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-road:before { + content: "\f018"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-download:before { + content: "\f019"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-arrow-circle-o-down:before { + content: "\f01a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-arrow-circle-o-up:before { + content: "\f01b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-inbox:before { + content: "\f01c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-play-circle-o:before { + content: "\f01d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-repeat:before, .fa-rotate-right:before { + content: "\f01e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-refresh:before { + content: "\f021"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-list-alt:before { + content: "\f022"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-lock:before { + content: "\f023"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-flag:before { + content: "\f024"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-headphones:before { + content: "\f025"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-volume-off:before { + content: "\f026"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-volume-down:before { + content: "\f027"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-volume-up:before { + content: "\f028"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-qrcode:before { + content: "\f029"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-barcode:before { + content: "\f02a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-tag:before { + content: "\f02b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-tags:before { + content: "\f02c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-book:before { + content: "\f02d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-bookmark:before { + content: "\f02e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-print:before { + content: "\f02f"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-camera:before { + content: "\f030"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-font:before { + content: "\f031"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-bold:before { + content: "\f032"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-italic:before { + content: "\f033"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-text-height:before { + content: "\f034"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-text-width:before { + content: "\f035"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-align-left:before { + content: "\f036"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-align-center:before { + content: "\f037"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-align-right:before { + content: "\f038"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-align-justify:before { + content: "\f039"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-list:before { + content: "\f03a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-dedent:before, +.fa-outdent:before { + content: "\f03b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-indent:before { + content: "\f03c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-video-camera:before { + content: "\f03d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-image:before, .fa-photo:before, .fa-picture-o:before { + content: "\f03e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-pencil:before { + content: "\f040"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-map-marker:before { + content: "\f041"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-adjust:before { + content: "\f042"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-tint:before { + content: "\f043"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-edit:before, +.fa-pencil-square-o:before { + content: "\f044"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-share-square-o:before { + content: "\f045"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-check-square-o:before { + content: "\f046"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-arrows:before { + content: "\f047"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-step-backward:before { + content: "\f048"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-fast-backward:before { + content: "\f049"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-backward:before { + content: "\f04a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-play:before { + content: "\f04b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-pause:before { + content: "\f04c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-stop:before { + content: "\f04d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-forward:before { + content: "\f04e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-fast-forward:before { + content: "\f050"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-step-forward:before { + content: "\f051"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-eject:before { + content: "\f052"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-chevron-left:before { + content: "\f053"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-chevron-right:before { + content: "\f054"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-plus-circle:before { + content: "\f055"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-minus-circle:before { + content: "\f056"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-times-circle:before { + content: "\f057"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-check-circle:before { + content: "\f058"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-question-circle:before { + content: "\f059"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-info-circle:before { + content: "\f05a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-crosshairs:before { + content: "\f05b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-times-circle-o:before { + content: "\f05c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-check-circle-o:before { + content: "\f05d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-ban:before { + content: "\f05e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-arrow-left:before { + content: "\f060"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-arrow-right:before { + content: "\f061"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-arrow-up:before { + content: "\f062"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-arrow-down:before { + content: "\f063"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-mail-forward:before, +.fa-share:before { + content: "\f064"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-expand:before { + content: "\f065"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-compress:before { + content: "\f066"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-plus:before { + content: "\f067"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-minus:before { + content: "\f068"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-asterisk:before { + content: "\f069"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-exclamation-circle:before { + content: "\f06a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-gift:before { + content: "\f06b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-leaf:before { + content: "\f06c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-fire:before { + content: "\f06d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-eye:before { + content: "\f06e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-eye-slash:before { + content: "\f070"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-exclamation-triangle:before, .fa-warning:before { + content: "\f071"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-plane:before { + content: "\f072"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-calendar:before { + content: "\f073"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-random:before { + content: "\f074"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-comment:before { + content: "\f075"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-magnet:before { + content: "\f076"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-chevron-up:before { + content: "\f077"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-chevron-down:before { + content: "\f078"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-retweet:before { + content: "\f079"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-shopping-cart:before { + content: "\f07a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-folder:before { + content: "\f07b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-folder-open:before { + content: "\f07c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-arrows-v:before { + content: "\f07d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-arrows-h:before { + content: "\f07e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-bar-chart-o:before, +.fa-bar-chart:before { + content: "\f080"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-twitter-square:before { + content: "\f081"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-facebook-square:before { + content: "\f082"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-camera-retro:before { + content: "\f083"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-key:before { + content: "\f084"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-cogs:before, .fa-gears:before { + content: "\f085"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-comments:before { + content: "\f086"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-thumbs-o-up:before { + content: "\f087"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-thumbs-o-down:before { + content: "\f088"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-star-half:before { + content: "\f089"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-heart-o:before { + content: "\f08a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-sign-out:before { + content: "\f08b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-linkedin-square:before { + content: "\f08c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-thumb-tack:before { + content: "\f08d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-external-link:before { + content: "\f08e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-sign-in:before { + content: "\f090"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-trophy:before { + content: "\f091"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-github-square:before { + content: "\f092"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-upload:before { + content: "\f093"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-lemon-o:before { + content: "\f094"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-phone:before { + content: "\f095"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-square-o:before { + content: "\f096"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-bookmark-o:before { + content: "\f097"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-phone-square:before { + content: "\f098"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-twitter:before { + content: "\f099"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-facebook-f:before, +.fa-facebook:before { + content: "\f09a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-github:before { + content: "\f09b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-unlock:before { + content: "\f09c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-credit-card:before { + content: "\f09d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-rss:before { + content: "\f09e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-hdd-o:before { + content: "\f0a0"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-bullhorn:before { + content: "\f0a1"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-bell:before { + content: "\f0f3"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-certificate:before { + content: "\f0a3"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-hand-o-right:before { + content: "\f0a4"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-hand-o-left:before { + content: "\f0a5"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-hand-o-up:before { + content: "\f0a6"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-hand-o-down:before { + content: "\f0a7"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-arrow-circle-left:before { + content: "\f0a8"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-arrow-circle-right:before { + content: "\f0a9"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-arrow-circle-up:before { + content: "\f0aa"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-arrow-circle-down:before { + content: "\f0ab"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-globe:before { + content: "\f0ac"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-wrench:before { + content: "\f0ad"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-tasks:before { + content: "\f0ae"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-filter:before { + content: "\f0b0"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-briefcase:before { + content: "\f0b1"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-arrows-alt:before { + content: "\f0b2"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-group:before, +.fa-users:before { + content: "\f0c0"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-chain:before, +.fa-link:before { + content: "\f0c1"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-cloud:before { + content: "\f0c2"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-flask:before { + content: "\f0c3"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-cut:before, +.fa-scissors:before { + content: "\f0c4"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-copy:before, +.fa-files-o:before { + content: "\f0c5"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-paperclip:before { + content: "\f0c6"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-floppy-o:before, .fa-save:before { + content: "\f0c7"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-square:before { + content: "\f0c8"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-bars:before, .fa-navicon:before, .fa-reorder:before { + content: "\f0c9"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-list-ul:before { + content: "\f0ca"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-list-ol:before { + content: "\f0cb"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-strikethrough:before { + content: "\f0cc"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-underline:before { + content: "\f0cd"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-table:before { + content: "\f0ce"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-magic:before { + content: "\f0d0"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-truck:before { + content: "\f0d1"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-pinterest:before { + content: "\f0d2"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-pinterest-square:before { + content: "\f0d3"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-google-plus-square:before { + content: "\f0d4"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-google-plus:before { + content: "\f0d5"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-money:before { + content: "\f0d6"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-caret-down:before { + content: "\f0d7"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-caret-up:before { + content: "\f0d8"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-caret-left:before { + content: "\f0d9"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-caret-right:before { + content: "\f0da"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-columns:before { + content: "\f0db"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-sort:before, .fa-unsorted:before { + content: "\f0dc"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-sort-desc:before, .fa-sort-down:before { + content: "\f0dd"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-sort-asc:before, .fa-sort-up:before { + content: "\f0de"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-envelope:before { + content: "\f0e0"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-linkedin:before { + content: "\f0e1"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-rotate-left:before, +.fa-undo:before { + content: "\f0e2"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-gavel:before, .fa-legal:before { + content: "\f0e3"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-dashboard:before, +.fa-tachometer:before { + content: "\f0e4"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-comment-o:before { + content: "\f0e5"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-comments-o:before { + content: "\f0e6"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-bolt:before, .fa-flash:before { + content: "\f0e7"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-sitemap:before { + content: "\f0e8"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-umbrella:before { + content: "\f0e9"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-clipboard:before, .fa-paste:before { + content: "\f0ea"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-lightbulb-o:before { + content: "\f0eb"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-exchange:before { + content: "\f0ec"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-cloud-download:before { + content: "\f0ed"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-cloud-upload:before { + content: "\f0ee"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-user-md:before { + content: "\f0f0"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-stethoscope:before { + content: "\f0f1"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-suitcase:before { + content: "\f0f2"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-bell-o:before { + content: "\f0a2"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-coffee:before { + content: "\f0f4"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-cutlery:before { + content: "\f0f5"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-file-text-o:before { + content: "\f0f6"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-building-o:before { + content: "\f0f7"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-hospital-o:before { + content: "\f0f8"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-ambulance:before { + content: "\f0f9"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-medkit:before { + content: "\f0fa"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-fighter-jet:before { + content: "\f0fb"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-beer:before { + content: "\f0fc"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-h-square:before { + content: "\f0fd"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-plus-square:before { + content: "\f0fe"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-angle-double-left:before { + content: "\f100"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-angle-double-right:before { + content: "\f101"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-angle-double-up:before { + content: "\f102"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-angle-double-down:before { + content: "\f103"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-angle-left:before { + content: "\f104"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-angle-right:before { + content: "\f105"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-angle-up:before { + content: "\f106"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-angle-down:before { + content: "\f107"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-desktop:before { + content: "\f108"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-laptop:before { + content: "\f109"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-tablet:before { + content: "\f10a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-mobile-phone:before, +.fa-mobile:before { + content: "\f10b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-circle-o:before { + content: "\f10c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-quote-left:before { + content: "\f10d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-quote-right:before { + content: "\f10e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-spinner:before { + content: "\f110"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-circle:before { + content: "\f111"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-mail-reply:before, +.fa-reply:before { + content: "\f112"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-github-alt:before { + content: "\f113"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-folder-o:before { + content: "\f114"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-folder-open-o:before { + content: "\f115"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-smile-o:before { + content: "\f118"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-frown-o:before { + content: "\f119"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-meh-o:before { + content: "\f11a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-gamepad:before { + content: "\f11b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-keyboard-o:before { + content: "\f11c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-flag-o:before { + content: "\f11d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-flag-checkered:before { + content: "\f11e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-terminal:before { + content: "\f120"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-code:before { + content: "\f121"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-mail-reply-all:before, +.fa-reply-all:before { + content: "\f122"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-star-half-empty:before, +.fa-star-half-full:before, +.fa-star-half-o:before { + content: "\f123"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-location-arrow:before { + content: "\f124"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-crop:before { + content: "\f125"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-code-fork:before { + content: "\f126"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-chain-broken:before, .fa-unlink:before { + content: "\f127"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-question:before { + content: "\f128"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-info:before { + content: "\f129"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-exclamation:before { + content: "\f12a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-superscript:before { + content: "\f12b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-subscript:before { + content: "\f12c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-eraser:before { + content: "\f12d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-puzzle-piece:before { + content: "\f12e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-microphone:before { + content: "\f130"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-microphone-slash:before { + content: "\f131"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-shield:before { + content: "\f132"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-calendar-o:before { + content: "\f133"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-fire-extinguisher:before { + content: "\f134"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-rocket:before { + content: "\f135"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-maxcdn:before { + content: "\f136"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-chevron-circle-left:before { + content: "\f137"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-chevron-circle-right:before { + content: "\f138"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-chevron-circle-up:before { + content: "\f139"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-chevron-circle-down:before { + content: "\f13a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-html5:before { + content: "\f13b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-css3:before { + content: "\f13c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-anchor:before { + content: "\f13d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-unlock-alt:before { + content: "\f13e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-bullseye:before { + content: "\f140"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-ellipsis-h:before { + content: "\f141"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-ellipsis-v:before { + content: "\f142"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-rss-square:before { + content: "\f143"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-play-circle:before { + content: "\f144"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-ticket:before { + content: "\f145"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-minus-square:before { + content: "\f146"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-minus-square-o:before { + content: "\f147"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-level-up:before { + content: "\f148"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-level-down:before { + content: "\f149"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-check-square:before { + content: "\f14a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-pencil-square:before { + content: "\f14b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-external-link-square:before { + content: "\f14c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-share-square:before { + content: "\f14d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-compass:before { + content: "\f14e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-caret-square-o-down:before, .fa-toggle-down:before { + content: "\f150"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-caret-square-o-up:before, .fa-toggle-up:before { + content: "\f151"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-caret-square-o-right:before, .fa-toggle-right:before { + content: "\f152"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-eur:before, .fa-euro:before { + content: "\f153"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-gbp:before { + content: "\f154"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-dollar:before, +.fa-usd:before { + content: "\f155"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-inr:before, .fa-rupee:before { + content: "\f156"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-cny:before, .fa-jpy:before, .fa-rmb:before, .fa-yen:before { + content: "\f157"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-rouble:before, .fa-rub:before, .fa-ruble:before { + content: "\f158"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-krw:before, .fa-won:before { + content: "\f159"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-bitcoin:before, +.fa-btc:before { + content: "\f15a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-file:before { + content: "\f15b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-file-text:before { + content: "\f15c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-sort-alpha-asc:before { + content: "\f15d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-sort-alpha-desc:before { + content: "\f15e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-sort-amount-asc:before { + content: "\f160"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-sort-amount-desc:before { + content: "\f161"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-sort-numeric-asc:before { + content: "\f162"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-sort-numeric-desc:before { + content: "\f163"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-thumbs-up:before { + content: "\f164"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-thumbs-down:before { + content: "\f165"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-youtube-square:before { + content: "\f166"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-youtube:before { + content: "\f167"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-xing:before { + content: "\f168"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-xing-square:before { + content: "\f169"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-youtube-play:before { + content: "\f16a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-dropbox:before { + content: "\f16b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-stack-overflow:before { + content: "\f16c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-instagram:before { + content: "\f16d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-flickr:before { + content: "\f16e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-adn:before { + content: "\f170"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-bitbucket:before { + content: "\f171"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-bitbucket-square:before { + content: "\f172"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-tumblr:before { + content: "\f173"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-tumblr-square:before { + content: "\f174"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-long-arrow-down:before { + content: "\f175"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-long-arrow-up:before { + content: "\f176"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-long-arrow-left:before { + content: "\f177"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-long-arrow-right:before { + content: "\f178"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-apple:before { + content: "\f179"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-windows:before { + content: "\f17a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-android:before { + content: "\f17b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-linux:before { + content: "\f17c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-dribbble:before { + content: "\f17d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-skype:before { + content: "\f17e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-foursquare:before { + content: "\f180"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-trello:before { + content: "\f181"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-female:before { + content: "\f182"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-male:before { + content: "\f183"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-gittip:before, +.fa-gratipay:before { + content: "\f184"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-sun-o:before { + content: "\f185"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-moon-o:before { + content: "\f186"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-archive:before { + content: "\f187"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-bug:before { + content: "\f188"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-vk:before { + content: "\f189"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-weibo:before { + content: "\f18a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-renren:before { + content: "\f18b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-pagelines:before { + content: "\f18c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-stack-exchange:before { + content: "\f18d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-arrow-circle-o-right:before { + content: "\f18e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-arrow-circle-o-left:before { + content: "\f190"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-caret-square-o-left:before, .fa-toggle-left:before { + content: "\f191"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-dot-circle-o:before { + content: "\f192"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-wheelchair:before { + content: "\f193"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-vimeo-square:before { + content: "\f194"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-try:before, .fa-turkish-lira:before { + content: "\f195"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-plus-square-o:before { + content: "\f196"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-space-shuttle:before { + content: "\f197"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-slack:before { + content: "\f198"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-envelope-square:before { + content: "\f199"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-wordpress:before { + content: "\f19a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-openid:before { + content: "\f19b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-bank:before, .fa-institution:before, .fa-university:before { + content: "\f19c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-graduation-cap:before, .fa-mortar-board:before { + content: "\f19d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-yahoo:before { + content: "\f19e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-google:before { + content: "\f1a0"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-reddit:before { + content: "\f1a1"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-reddit-square:before { + content: "\f1a2"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-stumbleupon-circle:before { + content: "\f1a3"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-stumbleupon:before { + content: "\f1a4"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-delicious:before { + content: "\f1a5"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-digg:before { + content: "\f1a6"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-pied-piper:before { + content: "\f1a7"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-pied-piper-alt:before { + content: "\f1a8"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-drupal:before { + content: "\f1a9"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-joomla:before { + content: "\f1aa"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-language:before { + content: "\f1ab"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-fax:before { + content: "\f1ac"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-building:before { + content: "\f1ad"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-child:before { + content: "\f1ae"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-paw:before { + content: "\f1b0"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-spoon:before { + content: "\f1b1"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-cube:before { + content: "\f1b2"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-cubes:before { + content: "\f1b3"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-behance:before { + content: "\f1b4"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-behance-square:before { + content: "\f1b5"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-steam:before { + content: "\f1b6"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-steam-square:before { + content: "\f1b7"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-recycle:before { + content: "\f1b8"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-automobile:before, +.fa-car:before { + content: "\f1b9"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-cab:before, +.fa-taxi:before { + content: "\f1ba"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-tree:before { + content: "\f1bb"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-spotify:before { + content: "\f1bc"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-deviantart:before { + content: "\f1bd"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-soundcloud:before { + content: "\f1be"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-database:before { + content: "\f1c0"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-file-pdf-o:before { + content: "\f1c1"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-file-word-o:before { + content: "\f1c2"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-file-excel-o:before { + content: "\f1c3"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-file-powerpoint-o:before { + content: "\f1c4"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-file-image-o:before, .fa-file-photo-o:before, .fa-file-picture-o:before { + content: "\f1c5"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-file-archive-o:before, .fa-file-zip-o:before { + content: "\f1c6"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-file-audio-o:before, .fa-file-sound-o:before { + content: "\f1c7"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-file-movie-o:before, +.fa-file-video-o:before { + content: "\f1c8"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-file-code-o:before { + content: "\f1c9"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-vine:before { + content: "\f1ca"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-codepen:before { + content: "\f1cb"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-jsfiddle:before { + content: "\f1cc"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-ring:before, .fa-life-saver:before, .fa-support:before { + content: "\f1cd"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-circle-o-notch:before { + content: "\f1ce"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-ra:before, .fa-rebel:before { + content: "\f1d0"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-empire:before, .fa-ge:before { + content: "\f1d1"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-git-square:before { + content: "\f1d2"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-git:before { + content: "\f1d3"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-hacker-news:before { + content: "\f1d4"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-tencent-weibo:before { + content: "\f1d5"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-qq:before { + content: "\f1d6"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-wechat:before, +.fa-weixin:before { + content: "\f1d7"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-paper-plane:before, .fa-send:before { + content: "\f1d8"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-paper-plane-o:before, .fa-send-o:before { + content: "\f1d9"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-history:before { + content: "\f1da"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-circle-thin:before, .fa-genderless:before { + content: "\f1db"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-header:before { + content: "\f1dc"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-paragraph:before { + content: "\f1dd"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-sliders:before { + content: "\f1de"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-share-alt:before { + content: "\f1e0"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-share-alt-square:before { + content: "\f1e1"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-bomb:before { + content: "\f1e2"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-futbol-o:before, .fa-soccer-ball-o:before { + content: "\f1e3"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-tty:before { + content: "\f1e4"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-binoculars:before { + content: "\f1e5"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-plug:before { + content: "\f1e6"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-slideshare:before { + content: "\f1e7"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-twitch:before { + content: "\f1e8"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-yelp:before { + content: "\f1e9"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-newspaper-o:before { + content: "\f1ea"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-wifi:before { + content: "\f1eb"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-calculator:before { + content: "\f1ec"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-paypal:before { + content: "\f1ed"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-google-wallet:before { + content: "\f1ee"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-cc-visa:before { + content: "\f1f0"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-cc-mastercard:before { + content: "\f1f1"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-cc-discover:before { + content: "\f1f2"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-cc-amex:before { + content: "\f1f3"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-cc-paypal:before { + content: "\f1f4"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-cc-stripe:before { + content: "\f1f5"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-bell-slash:before { + content: "\f1f6"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-bell-slash-o:before { + content: "\f1f7"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-trash:before { + content: "\f1f8"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-copyright:before { + content: "\f1f9"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-at:before { + content: "\f1fa"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-eyedropper:before { + content: "\f1fb"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-paint-brush:before { + content: "\f1fc"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-birthday-cake:before { + content: "\f1fd"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-area-chart:before { + content: "\f1fe"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-pie-chart:before { + content: "\f200"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-line-chart:before { + content: "\f201"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-lastfm:before { + content: "\f202"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-lastfm-square:before { + content: "\f203"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-toggle-off:before { + content: "\f204"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-toggle-on:before { + content: "\f205"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-bicycle:before { + content: "\f206"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-bus:before { + content: "\f207"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-ioxhost:before { + content: "\f208"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-angellist:before { + content: "\f209"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-cc:before { + content: "\f20a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-ils:before, .fa-shekel:before, .fa-sheqel:before { + content: "\f20b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-meanpath:before { + content: "\f20c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-buysellads:before { + content: "\f20d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-connectdevelop:before { + content: "\f20e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-dashcube:before { + content: "\f210"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-forumbee:before { + content: "\f211"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-leanpub:before { + content: "\f212"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-sellsy:before { + content: "\f213"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-shirtsinbulk:before { + content: "\f214"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-simplybuilt:before { + content: "\f215"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-skyatlas:before { + content: "\f216"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-cart-plus:before { + content: "\f217"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-cart-arrow-down:before { + content: "\f218"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-diamond:before { + content: "\f219"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-ship:before { + content: "\f21a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-user-secret:before { + content: "\f21b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-motorcycle:before { + content: "\f21c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-street-view:before { + content: "\f21d"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-heartbeat:before { + content: "\f21e"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-venus:before { + content: "\f221"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-mars:before { + content: "\f222"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-mercury:before { + content: "\f223"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-transgender:before { + content: "\f224"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-transgender-alt:before { + content: "\f225"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-venus-double:before { + content: "\f226"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-mars-double:before { + content: "\f227"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-venus-mars:before { + content: "\f228"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-mars-stroke:before { + content: "\f229"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-mars-stroke-v:before { + content: "\f22a"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-mars-stroke-h:before { + content: "\f22b"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-neuter:before { + content: "\f22c"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-facebook-official:before { + content: "\f230"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-pinterest-p:before { + content: "\f231"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-whatsapp:before { + content: "\f232"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-server:before { + content: "\f233"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-user-plus:before { + content: "\f234"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-user-times:before { + content: "\f235"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-bed:before, .fa-hotel:before { + content: "\f236"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-viacoin:before { + content: "\f237"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-train:before { + content: "\f238"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-subway:before { + content: "\f239"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.fa-medium:before { + content: "\f23a"; +} + +/*! prefixes.scss v0.1.0 | Author: Pandao | https://github.com/pandao/prefixes.scss | MIT license | Copyright (c) 2015 */ +@font-face { + font-family: editormd-logo; + src: url(../fonts/editormd-logo.eot?-5y8q6h); + src: url(.../fonts/editormd-logo.eot?#iefix-5y8q6h) format("embedded-opentype"), url(../fonts/editormd-logo.woff?-5y8q6h) format("woff"), url(../fonts/editormd-logo.ttf?-5y8q6h) format("truetype"), url(../fonts/editormd-logo.svg?-5y8q6h#icomoon) format("svg"); + font-weight: 400; + font-style: normal; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-logo, .editormd-logo-1x, .editormd-logo-2x, .editormd-logo-3x, .editormd-logo-4x, .editormd-logo-5x, .editormd-logo-6x, .editormd-logo-7x, .editormd-logo-8x { + font-family: editormd-logo; + speak: none; + font-style: normal; + font-weight: 400; + font-variant: normal; + text-transform: none; + font-size: inherit; + line-height: 1; + display: inline-block; + text-rendering: auto; + vertical-align: inherit; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body hr:after, .markdown-body hr:before { + content: ""; + display: table; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-logo-1x:before, .editormd-logo-2x:before, .editormd-logo-3x:before, .editormd-logo-4x:before, .editormd-logo-5x:before, .editormd-logo-6x:before, .editormd-logo-7x:before, .editormd-logo-8x:before, .editormd-logo:before { + content: "\e1987"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-logo-1x { + font-size: 1em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-logo-lg { + font-size: 1.2em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-logo-2x { + font-size: 2em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-logo-3x { + font-size: 3em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-logo-4x { + font-size: 4em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-logo-5x { + font-size: 5em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-logo-6x { + font-size: 6em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-logo-7x { + font-size: 7em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-logo-8x { + font-size: 8em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-logo-color { + color: #2196F3; +} + +/*! github-markdown-css | The MIT License (MIT) | Copyright (c) Sindre Sorhus (sindresorhus.com) | https://github.com/sindresorhus/github-markdown-css */ +@font-face { + font-family: octicons-anchor; + src: url(data:font/woff;charset=utf-8;base64,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) format("woff"); +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body { + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; + color: #333; + overflow: hidden; + font-family: "Microsoft YaHei",Helvetica,"Meiryo UI","Malgun Gothic","Segoe UI","Trebuchet MS",Monaco,monospace,Tahoma,STXihei,"华文细黑",STHeiti,"Helvetica Neue","Droid Sans","wenquanyi micro hei",FreeSans,Arimo,Arial,SimSun,"宋体",Heiti,"黑体",sans-serif; + font-size: 16px; + line-height: 1.6; + word-wrap: break-word; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body strong { + font-weight: 700; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body h1 { + margin: .67em 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body img { + border: 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body hr { + box-sizing: content-box; + height: 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body input { + color: inherit; + margin: 0; + line-height: normal; + font: 13px/1.4 Helvetica,arial,freesans,clean,sans-serif,"Segoe UI Emoji","Segoe UI Symbol"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body html input[disabled] { + cursor: default; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body input[type=checkbox] { + box-sizing: border-box; + padding: 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body * { + box-sizing: border-box; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body a { + background: 0 0; + color: #4183c4; + text-decoration: none; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body a:active, .markdown-body a:hover { + outline: 0; + text-decoration: underline; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body hr { + margin: 15px 0; + overflow: hidden; + background: 0 0; + border: 0; + border-bottom: 1px solid #ddd; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body h1, .markdown-body h2 { + padding-bottom: .3em; + border-bottom: 1px solid #eee; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body blockquote { + margin: 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body ol ol, .markdown-body ul ol { + list-style-type: lower-roman; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body ol ol ol, .markdown-body ol ul ol, .markdown-body ul ol ol, .markdown-body ul ul ol { + list-style-type: lower-alpha; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body dd { + margin-left: 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body code { + font-family: Consolas,"Liberation Mono",Menlo,Courier,monospace; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body pre { + font: 12px Consolas,"Liberation Mono",Menlo,Courier,monospace; + word-wrap: normal; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .octicon { + font: normal normal 16px octicons-anchor; + line-height: 1; + display: inline-block; + text-decoration: none; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .octicon-link:before { + content: '\f05c'; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body > :first-child { + margin-top: 0 !important; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body > :last-child { + margin-bottom: 0 !important; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .anchor { + position: absolute; + top: 0; + left: 0; + display: block; + padding-right: 6px; + padding-left: 30px; + margin-left: -30px; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .anchor:focus { + outline: 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body h1, .markdown-body h2, .markdown-body h3, .markdown-body h4, .markdown-body h5, .markdown-body h6 { + position: relative; + margin-top: 1em; + margin-bottom: 16px; + font-weight: 700; + line-height: 1.4; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body h1 .octicon-link, .markdown-body h2 .octicon-link, .markdown-body h3 .octicon-link, .markdown-body h4 .octicon-link, .markdown-body h5 .octicon-link, .markdown-body h6 .octicon-link { + display: none; + color: #000; + vertical-align: middle; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body h1:hover .anchor, .markdown-body h2:hover .anchor, .markdown-body h3:hover .anchor, .markdown-body h4:hover .anchor, .markdown-body h5:hover .anchor, .markdown-body h6:hover .anchor { + padding-left: 8px; + margin-left: -30px; + text-decoration: none; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body h1:hover .anchor .octicon-link, .markdown-body h2:hover .anchor .octicon-link, .markdown-body h3:hover .anchor .octicon-link, .markdown-body h4:hover .anchor .octicon-link, .markdown-body h5:hover .anchor .octicon-link, .markdown-body h6:hover .anchor .octicon-link { + display: inline-block; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body h1 { + font-size: 2.25em; + line-height: 1.2; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body h1 .anchor { + line-height: 1; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body h2 { + font-size: 1.75em; + line-height: 1.225; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body h2 .anchor { + line-height: 1; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body h3 { + font-size: 1.5em; + line-height: 1.43; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body h3 .anchor, .markdown-body h4 .anchor { + line-height: 1.2; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body h4 { + font-size: 1.25em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body h5 .anchor, .markdown-body h6 .anchor { + line-height: 1.1; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body h5 { + font-size: 1em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body h6 { + font-size: 1em; + color: #777; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body blockquote, .markdown-body dl, .markdown-body ol, .markdown-body p, .markdown-body pre, .markdown-body table, .markdown-body ul { + margin-top: 0; + margin-bottom: 16px; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body ol, .markdown-body ul { + padding-left: 2em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body ol ol, .markdown-body ol ul, .markdown-body ul ol, .markdown-body ul ul { + margin-top: 0; + margin-bottom: 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body li > p { + margin-top: 16px; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body dl { + padding: 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body dl dt { + padding: 0; + margin-top: 16px; + font-size: 1em; + font-style: italic; + font-weight: 700; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body dl dd { + padding: 0 16px; + margin-bottom: 16px; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body blockquote { + padding: 0 15px; + color: #777; + border-left: 4px solid #ddd; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body blockquote > :first-child { + margin-top: 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body blockquote > :last-child { + margin-bottom: 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body table { + border-collapse: collapse; + border-spacing: 0; + display: block; + width: 100%; + overflow: auto; + word-break: normal; + word-break: keep-all; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body table th { + font-weight: 700; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body table td, .markdown-body table th { + padding: 6px 13px; + border: 1px solid #ddd; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body table tr { + background-color: #fff; + border-top: 1px solid #ccc; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body table tr:nth-child(2n) { + background-color: #f8f8f8; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body img { + max-width: 100%; + box-sizing: border-box; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body code { + padding: .2em 0; + margin: 0; + font-size: 85%; + background-color: rgba(0, 0, 0, 0.04); + border-radius: 3px; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body code:after, .markdown-body code:before { + letter-spacing: -.2em; + content: "\00a0"; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body pre > code { + padding: 0; + margin: 0; + font-size: 100%; + word-break: normal; + white-space: pre; + background: 0 0; + border: 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .highlight { + margin-bottom: 16px; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .highlight pre, .markdown-body pre { + padding: 16px; + overflow: auto; + font-size: 85%; + background-color: #f7f7f7; + border-radius: 3px; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .highlight pre { + margin-bottom: 0; + word-break: normal; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body pre code { + display: inline; + max-width: initial; + padding: 0; + margin: 0; + overflow: initial; + line-height: inherit; + word-wrap: normal; + background-color: transparent; + border: 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body pre code:after, .markdown-body pre code:before { + content: normal; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .pl-c { + color: #969896; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .pl-c1, .markdown-body .pl-mdh, .markdown-body .pl-mm, .markdown-body .pl-mp, .markdown-body .pl-mr, .markdown-body .pl-s1 .pl-v, .markdown-body .pl-s3, .markdown-body .pl-sc, .markdown-body .pl-sv { + color: #0086b3; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .pl-e, .markdown-body .pl-en { + color: #795da3; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .pl-s1 .pl-s2, .markdown-body .pl-smi, .markdown-body .pl-smp, .markdown-body .pl-stj, .markdown-body .pl-vo, .markdown-body .pl-vpf { + color: #333; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .pl-ent { + color: #63a35c; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .pl-k, .markdown-body .pl-s, .markdown-body .pl-st { + color: #a71d5d; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .pl-pds, .markdown-body .pl-s1, .markdown-body .pl-s1 .pl-pse .pl-s2, .markdown-body .pl-sr, .markdown-body .pl-sr .pl-cce, .markdown-body .pl-sr .pl-sra, .markdown-body .pl-sr .pl-sre, .markdown-body .pl-src { + color: #df5000; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .pl-mo, .markdown-body .pl-v { + color: #1d3e81; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .pl-id { + color: #b52a1d; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .pl-ii { + background-color: #b52a1d; + color: #f8f8f8; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .pl-sr .pl-cce { + color: #63a35c; + font-weight: 700; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .pl-ml { + color: #693a17; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .pl-mh, .markdown-body .pl-mh .pl-en, .markdown-body .pl-ms { + color: #1d3e81; + font-weight: 700; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .pl-mq { + color: teal; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .pl-mi { + color: #333; + font-style: italic; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .pl-mb { + color: #333; + font-weight: 700; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .pl-md, .markdown-body .pl-mdhf { + background-color: #ffecec; + color: #bd2c00; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .pl-mdht, .markdown-body .pl-mi1 { + background-color: #eaffea; + color: #55a532; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .pl-mdr { + color: #795da3; + font-weight: 700; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body kbd { + display: inline-block; + padding: 3px 5px; + font: 11px Consolas,"Liberation Mono",Menlo,Courier,monospace; + line-height: 10px; + color: #555; + vertical-align: middle; + background-color: #fcfcfc; + border: 1px solid #ccc; + border-bottom-color: #bbb; + border-radius: 3px; + box-shadow: inset 0 -1px 0 #bbb; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .task-list-item + .task-list-item { + margin-top: 3px; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .task-list-item input { + float: left; + margin: .3em 0 .25em -1.6em; + vertical-align: middle; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body :checked + .radio-label { + z-index: 1; + position: relative; + border-color: #4183c4; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview, .editormd-preview-container { + text-align: left; + font-size: 14px; + line-height: 1.6; + padding: 20px; + overflow: auto; + width: 100%; + background-color: #fff; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview blockquote, .editormd-preview-container blockquote { + color: #666; + border-left: 4px solid #ddd; + padding-left: 20px; + margin-left: 0; + font-size: 14px; + font-style: italic; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview p code, .editormd-preview-container p code { + margin-left: 5px; + margin-right: 4px; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview abbr, .editormd-preview-container abbr { + background: #ffd; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview hr, .editormd-preview-container hr { + height: 1px; + border: none; + border-top: 1px solid #ddd; + background: 0 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview code, .editormd-preview-container code { + border: 1px solid #ddd; + background: #f6f6f6; + padding: 3px; + border-radius: 3px; + font-size: 14px; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview pre, .editormd-preview-container pre { + border: 1px solid #ddd; + background: #f6f6f6; + padding: 10px; + border-radius: 3px; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview pre code, .editormd-preview-container pre code { + padding: 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview code, .editormd-html-preview kbd, .editormd-html-preview pre, .editormd-preview-container code, .editormd-preview-container kbd, .editormd-preview-container pre { + font-family: "YaHei Consolas Hybrid",Consolas,"Meiryo UI","Malgun Gothic","Segoe UI","Trebuchet MS",Helvetica,monospace,monospace; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview table thead tr, .editormd-preview-container table thead tr { + background-color: #F8F8F8; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview p.editormd-tex, .editormd-preview-container p.editormd-tex { + text-align: center; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview span.editormd-tex, .editormd-preview-container span.editormd-tex { + margin: 0 5px; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .emoji, .editormd-preview-container .emoji { + width: 24px; + height: 24px; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .katex, .editormd-preview-container .katex { + font-size: 1.4em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .flowchart, .editormd-html-preview .sequence-diagram, .editormd-preview-container .flowchart, .editormd-preview-container .sequence-diagram { + margin: 0 auto; + text-align: center; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .flowchart svg, .editormd-html-preview .sequence-diagram svg, .editormd-preview-container .flowchart svg, .editormd-preview-container .sequence-diagram svg { + margin: 0 auto; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .flowchart text, .editormd-html-preview .sequence-diagram text, .editormd-preview-container .flowchart text, .editormd-preview-container .sequence-diagram text { + font-size: 15px !important; + font-family: "YaHei Consolas Hybrid", Consolas, "Microsoft YaHei", "Malgun Gothic", "Segoe UI", Helvetica, Arial !important; +} + +/*! Pretty printing styles. Used with prettify.js. */ +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.pln { + color: #000; +} + +@media screen { + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .str { + color: #080; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .kwd { + color: #008; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .com { + color: #800; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .typ { + color: #606; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .lit { + color: #066; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .clo, .opn, .pun { + color: #660; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .tag { + color: #008; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .atn { + color: #606; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .atv { + color: #080; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .dec, .var { + color: #606; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .fun { + color: red; + } +} + +@media print, projection { + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .kwd, .tag, .typ { + font-weight: 700; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .str { + color: #060; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .kwd { + color: #006; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .com { + color: #600; + font-style: italic; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .typ { + color: #404; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .lit { + color: #044; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .clo, .opn, .pun { + color: #440; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .tag { + color: #006; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .atn { + color: #404; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .atv { + color: #060; + } +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +pre.prettyprint { + padding: 2px; + border: 1px solid #888; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +ol.linenums { + margin-top: 0; + margin-bottom: 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +li.L1, li.L3, li.L5, li.L7, li.L9 { + background: #eee; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview pre.prettyprint, .editormd-preview-container pre.prettyprint { + padding: 10px; + border: 1px solid #ddd; + white-space: pre-wrap; + word-wrap: break-word; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview ol.linenums, .editormd-preview-container ol.linenums { + color: #999; + padding-left: 2.5em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview ol.linenums li, .editormd-preview-container ol.linenums li { + list-style-type: decimal; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview ol.linenums li code, .editormd-preview-container ol.linenums li code { + border: none; + background: 0 0; + padding: 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .editormd-toc-menu, .editormd-preview-container .editormd-toc-menu { + margin: 8px 0 12px; + display: inline-block; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .editormd-toc-menu > .markdown-toc, .editormd-preview-container .editormd-toc-menu > .markdown-toc { + position: relative; + border-radius: 4px; + border: 1px solid #ddd; + display: inline-block; + font-size: 1em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .editormd-toc-menu > .markdown-toc > ul, .editormd-preview-container .editormd-toc-menu > .markdown-toc > ul { + width: 160%; + min-width: 180px; + position: absolute; + left: -1px; + top: -2px; + z-index: 100; + padding: 0 10px 10px; + display: none; + background: #fff; + border: 1px solid #ddd; + border-radius: 4px; + -ms-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); + -o-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); + box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .editormd-toc-menu > .markdown-toc > ul > li ul, .editormd-preview-container .editormd-toc-menu > .markdown-toc > ul > li ul { + width: 100%; + min-width: 180px; + border: 1px solid #ddd; + display: none; + background: #fff; + border-radius: 4px; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .editormd-toc-menu .toc-menu-btn:hover, .editormd-html-preview .editormd-toc-menu > .markdown-toc > ul > li a:hover, .editormd-preview-container .editormd-toc-menu .toc-menu-btn:hover, .editormd-preview-container .editormd-toc-menu > .markdown-toc > ul > li a:hover { + background-color: #f6f6f6; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .editormd-toc-menu > .markdown-toc > ul > li a, .editormd-preview-container .editormd-toc-menu > .markdown-toc > ul > li a { + color: #666; + padding: 6px 10px; + display: block; + -webkit-transition: background-color 500ms ease-out; + transition: background-color 500ms ease-out; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .editormd-toc-menu > .markdown-toc li, .editormd-preview-container .editormd-toc-menu > .markdown-toc li { + position: relative; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .editormd-toc-menu > .markdown-toc li > ul, .editormd-preview-container .editormd-toc-menu > .markdown-toc li > ul { + position: absolute; + top: 32px; + left: 10%; + display: none; + -ms-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); + -o-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); + box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .editormd-toc-menu > .markdown-toc li > ul:after, .editormd-html-preview .editormd-toc-menu > .markdown-toc li > ul:before, .editormd-preview-container .editormd-toc-menu > .markdown-toc li > ul:after, .editormd-preview-container .editormd-toc-menu > .markdown-toc li > ul:before { + pointer-events: pointer-events; + position: absolute; + left: 15px; + top: -6px; + display: block; + content: ""; + width: 0; + height: 0; + border: 6px solid transparent; + border-width: 0 6px 6px; + z-index: 10; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .editormd-toc-menu > .markdown-toc li > ul:before, .editormd-preview-container .editormd-toc-menu > .markdown-toc li > ul:before { + border-bottom-color: #ccc; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .editormd-toc-menu > .markdown-toc li > ul:after, .editormd-preview-container .editormd-toc-menu > .markdown-toc li > ul:after { + border-bottom-color: #fff; + top: -5px; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .editormd-toc-menu ul, .editormd-preview-container .editormd-toc-menu ul { + list-style: none; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .editormd-toc-menu a, .editormd-preview-container .editormd-toc-menu a { + text-decoration: none; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .editormd-toc-menu h1, .editormd-preview-container .editormd-toc-menu h1 { + font-size: 16px; + padding: 5px 0 10px 10px; + line-height: 1; + border-bottom: 1px solid #eee; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .editormd-toc-menu h1 .fa, .editormd-preview-container .editormd-toc-menu h1 .fa { + padding-left: 10px; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .editormd-toc-menu .toc-menu-btn, .editormd-preview-container .editormd-toc-menu .toc-menu-btn { + color: #666; + min-width: 180px; + padding: 5px 10px; + border-radius: 4px; + display: inline-block; + -webkit-transition: background-color 500ms ease-out; + transition: background-color 500ms ease-out; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview textarea, .editormd-onlyread .editormd-toolbar { + display: none; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview .editormd-toc-menu .toc-menu-btn .fa, .editormd-preview-container .editormd-toc-menu .toc-menu-btn .fa { + float: right; + padding: 3px 0 0 10px; + font-size: 1.3em; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .editormd-toc-menu ul { + padding-left: 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.markdown-body .highlight pre, .markdown-body pre { + line-height: 1.6; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +hr.editormd-page-break { + border: 1px dotted #ccc; + font-size: 0; + height: 2px; +} + +@media only print { + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + hr.editormd-page-break { + background: 0 0; + border: none; + height: 0; + } +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-html-preview hr.editormd-page-break { + background: 0 0; + border: none; + height: 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-close-btn { + color: #fff; + padding: 4px 6px; + font-size: 18px; + border-radius: 500px; + display: none; + background-color: #ccc; + position: absolute; + top: 25px; + right: 35px; + z-index: 19; + -webkit-transition: background-color 300ms ease-out; + transition: background-color 300ms ease-out; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-close-btn:hover { + background-color: #999; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-active { + width: 100%; + padding: 40px; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-theme-dark { + color: #777; + background: #2C2827; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-theme-dark .editormd-preview-container { + color: #888; + background-color: #2C2827; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-theme-dark .editormd-preview-container pre.prettyprint { + border: none; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-theme-dark .editormd-preview-container blockquote { + color: #555; + padding: .5em; + background: #222; + border-color: #333; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-theme-dark .editormd-preview-container abbr { + color: #fff; + padding: 1px 3px; + border-radius: 3px; + background: #f90; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-theme-dark .editormd-preview-container code { + color: #fff; + border: none; + padding: 1px 3px; + border-radius: 3px; + background: #5A9600; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-theme-dark .editormd-preview-container table { + border: none; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-theme-dark .editormd-preview-container .fa-emoji { + color: #B4BF42; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-theme-dark .editormd-preview-container .katex { + color: #FEC93F; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-theme-dark .editormd-toc-menu > .markdown-toc { + background: #fff; + border: none; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-theme-dark .editormd-toc-menu > .markdown-toc h1 { + border-color: #ddd; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-theme-dark .markdown-body h1, .editormd-preview-theme-dark .markdown-body h2, .editormd-preview-theme-dark .markdown-body hr { + border-color: #222; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-theme-dark pre { + color: #999; + background-color: #111; + background-color: rgba(0, 0, 0, 0.4); +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-theme-dark pre .pln { + color: #999; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-theme-dark li.L1, .editormd-preview-theme-dark li.L3, .editormd-preview-theme-dark li.L5, .editormd-preview-theme-dark li.L7, .editormd-preview-theme-dark li.L9 { + background: 0 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-theme-dark [class*=editormd-logo] { + color: #2196F3; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-theme-dark .sequence-diagram text { + fill: #fff; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-theme-dark .sequence-diagram path, .editormd-preview-theme-dark .sequence-diagram rect { + color: #fff; + fill: #64D1CB; + stroke: #64D1CB; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-theme-dark .flowchart path, .editormd-preview-theme-dark .flowchart rect { + stroke: #A6C6FF; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-theme-dark .flowchart rect { + fill: #A6C6FF; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-preview-theme-dark .flowchart text { + fill: #5879B4; +} + +@media screen { + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .editormd-preview-theme-dark .str { + color: #080; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .editormd-preview-theme-dark .kwd { + color: #f90; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .editormd-preview-theme-dark .com { + color: #444; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .editormd-preview-theme-dark .typ { + color: #606; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .editormd-preview-theme-dark .lit { + color: #066; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .editormd-preview-theme-dark .clo, .editormd-preview-theme-dark .opn, .editormd-preview-theme-dark .pun { + color: #660; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .editormd-preview-theme-dark .tag { + color: #f90; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .editormd-preview-theme-dark .atn { + color: #6C95F5; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .editormd-preview-theme-dark .atv { + color: #080; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .editormd-preview-theme-dark .dec, .editormd-preview-theme-dark .var { + color: #008BA7; + } + /* line 5, vendor/assets/editormd/css/editormd.min.css */ + .editormd-preview-theme-dark .fun { + color: red; + } +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-onlyread .CodeMirror { + margin-top: 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-onlyread .editormd-preview { + top: 0; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-fullscreen { + position: fixed; + top: 0; + left: 0; + border: none; + margin: 0 auto; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-theme-dark { + border-color: #1a1a17; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-theme-dark .editormd-toolbar { + background: #1A1A17; + border-color: #1a1a17; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-theme-dark .editormd-menu > li > a { + color: #777; + border-color: #1a1a17; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-theme-dark .editormd-menu > li > a.active, .editormd-theme-dark .editormd-menu > li > a:hover { + border-color: #333; + background: #333; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-theme-dark .editormd-menu > li.divider { + border-right: 1px solid #111; +} + +/* line 5, vendor/assets/editormd/css/editormd.min.css */ +.editormd-theme-dark .CodeMirror { + border-right: 1px solid rgba(0, 0, 0, 0.1); +} + +/* line 1, vendor/assets/dragula/dragula.css */ +.gu-mirror { + position: fixed !important; + margin: 0 !important; + z-index: 9999 !important; + opacity: 0.8; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; + filter: alpha(opacity=80); +} + +/* line 9, vendor/assets/dragula/dragula.css */ +.gu-hide { + display: none !important; +} + +/* line 12, vendor/assets/dragula/dragula.css */ +.gu-unselectable { + -webkit-user-select: none !important; + -moz-user-select: none !important; + -ms-user-select: none !important; + user-select: none !important; +} + +/* line 18, vendor/assets/dragula/dragula.css */ +.gu-transit { + opacity: 0.2; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)"; + filter: alpha(opacity=20); +} + +/* line 1, app/assets/stylesheets/common.scss */ +body { + font-size: 14px; + background: #efefef; +} + +/* line 7, app/assets/stylesheets/common.scss */ +a:hover { + text-decoration: unset; +} + +/* line 12, app/assets/stylesheets/common.scss */ +textarea.danger, input.danger { + border-color: #dc3545 !important; +} + +/* line 16, app/assets/stylesheets/common.scss */ +label.error { + color: #dc3545 !important; +} + +/* line 20, app/assets/stylesheets/common.scss */ +input.form-control { + font-size: 14px; +} + +/* line 24, app/assets/stylesheets/common.scss */ +.input-group-prepend .input-group-text { + font-size: 14px; +} + +/* line 29, app/assets/stylesheets/common.scss */ +.flex-1 { + -webkit-box-flex: 1; + flex: 1; +} + +/* line 33, app/assets/stylesheets/common.scss */ +.font-12 { + font-size: 12px !important; +} + +/* line 34, app/assets/stylesheets/common.scss */ +.font-14 { + font-size: 14px !important; +} + +/* line 35, app/assets/stylesheets/common.scss */ +.font-16 { + font-size: 16px !important; +} + +/* line 36, app/assets/stylesheets/common.scss */ +.font-18 { + font-size: 18px !important; +} + +/* line 37, app/assets/stylesheets/common.scss */ +.padding10-5 { + padding: 10px 5px; +} + +/* line 38, app/assets/stylesheets/common.scss */ +.width100 { + width: 100%; +} + +/* line 39, app/assets/stylesheets/common.scss */ +.mb10 { + margin-bottom: 10px; +} + +/* line 40, app/assets/stylesheets/common.scss */ +.mt10 { + margin-top: 10px; +} + +/* line 41, app/assets/stylesheets/common.scss */ +.mr10 { + margin-right: 10px; +} + +/* line 42, app/assets/stylesheets/common.scss */ +.textarea-width-100 { + width: 100%; + resize: none; + border: 1px solid #ccc; +} + +/* line 43, app/assets/stylesheets/common.scss */ +.padding10 { + padding: 10px; +} + +/* line 44, app/assets/stylesheets/common.scss */ +.padding5-10 { + padding: 5px 10px; +} + +/* line 45, app/assets/stylesheets/common.scss */ +.position-r { + position: relative; +} + +/* line 46, app/assets/stylesheets/common.scss */ +.color-grey-c { + color: #ccc; +} + +/* line 47, app/assets/stylesheets/common.scss */ +.inline-block { + display: inline-block; +} + +/* line 48, app/assets/stylesheets/common.scss */ +.hide { + display: none; +} + +/* line 49, app/assets/stylesheets/common.scss */ +.show { + display: block; +} + +/* line 2, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .list-item-title { + padding-bottom: 5px; + padding-left: 33px; + color: #555; +} + +/* line 7, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .list-item-title-1 { + width: 100px; + display: inline-block; +} + +/* line 11, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .list-item-title-2 { + width: 200px; + display: inline-block; +} + +/* line 15, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .collegeManage { + float: left; + padding: 0px 8px; + border-radius: 6px; + background-color: #f5f5f5; + margin: 3px 0px 3px 10px; + height: 34px; + line-height: 34px; +} + +/* line 23, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .collegeManage a { + color: #05101a; +} + +/* line 26, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .collegeManage a:hover { + color: #007bff; +} + +/* line 30, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page i:hover { + color: #333; +} + +/* line 33, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .add-manager-i { + float: left; +} + +/* line 35, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .add-manager-i i { + padding: 10px 5px; +} + +/* line 41, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .auth-schools-new-add .flex-column input, .admins-auth-schools-index-page .auth-schools-user-add .flex-column input { + height: 38px; +} + +/* line 45, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .auth-schools-new-add .search-school, .admins-auth-schools-index-page .auth-schools-user-add .search-school { + margin-left: 15px; +} + +/* line 50, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .school-search-list { + background: #F4FAFF; + height: 280px; + overflow-y: scroll; + padding: 10px 0; +} + +/* line 56, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .school-list-item { + padding: 2px 10px; +} + +/* line 58, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .school-list-item input { + font-size: 20px; + margin-right: 5px; +} + +/* line 4, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item > .drag { + cursor: move; + background: #fff; + box-shadow: 1px 2px 5px 3px #f0f0f0; +} + +/* line 10, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item-no { + font-size: 28px; + text-align: center; +} + +/* line 15, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item-img { + cursor: pointer; + width: 100%; + height: 60px; +} + +/* line 20, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item-img > img { + display: block; + width: 100%; + height: 60px; + background: #F5F5F5; +} + +/* line 28, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item .not_active { + background: #F0F0F0; +} + +/* line 32, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item .delete-btn { + font-size: 20px; + color: red; + cursor: pointer; +} + +/* line 38, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item .save-url-btn { + cursor: pointer; +} + +/* line 42, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item .operate-box { + display: -webkit-box; + display: flex; + -webkit-box-pack: justify; + justify-content: space-between; + -webkit-box-align: center; + align-items: center; +} + +/* line 48, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item .online-check-box { + font-size: 20px; +} + +/* line 52, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item .name-input { + -webkit-box-flex: 1; + flex: 1; +} + +/* line 55, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item .link-input { + -webkit-box-flex: 3; + flex: 3; +} + +/* line 1, app/assets/stylesheets/admins/common.scss */ +.admin-body-container { + padding: 20px; + -webkit-box-flex: 1; + flex: 1; + min-height: 100vh; + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + overflow-y: scroll; + /* 面包屑 */ + /* 内容表格 */ + /* 分页 */ + /* 搜索表单 */ +} + +/* line 9, app/assets/stylesheets/admins/common.scss */ +.admin-body-container > .content { + -webkit-box-flex: 1; + flex: 1; + font-size: 14px; +} + +/* line 13, app/assets/stylesheets/admins/common.scss */ +.admin-body-container > .content .box { + padding: 20px; + border-radius: 5px; + background: #fff; +} + +/* line 21, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .breadcrumb { + padding-left: 5px; + font-size: 20px; + background: unset; +} + +/* line 28, app/assets/stylesheets/admins/common.scss */ +.admin-body-container table { + table-layout: fixed; +} + +/* line 31, app/assets/stylesheets/admins/common.scss */ +.admin-body-container table td { + vertical-align: middle; +} + +/* line 37, app/assets/stylesheets/admins/common.scss */ +.admin-body-container table tr.no-data:hover { + color: darkgrey; + background: unset; +} + +/* line 42, app/assets/stylesheets/admins/common.scss */ +.admin-body-container table tr.no-data > td { + text-align: center; + height: 300px; +} + +/* line 51, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .action-container .action { + padding: 0 3px; +} + +/* line 57, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .paginate-container { + margin-top: 20px; + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + -webkit-box-pack: center; + justify-content: center; + -webkit-box-align: center; + align-items: center; +} + +/* line 64, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .paginate-container .paginate-total { + margin-bottom: 10px; + color: darkgrey; +} + +/* line 69, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .paginate-container .pagination { + margin-bottom: 0px; +} + +/* line 75, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .search-form-container { + display: -webkit-box; + display: flex; + margin-bottom: 20px; +} + +/* line 79, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .search-form-container .search-form { + -webkit-box-flex: 1; + flex: 1; +} + +/* line 82, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .search-form-container .search-form * { + font-size: 14px; +} + +/* line 84, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .search-form-container .search-form select, .admin-body-container .search-form-container .search-form input { + margin-right: 10px; + font-size: 14px; +} + +/* line 91, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .global-error { + color: grey; + min-height: 300px; +} + +/* line 95, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .global-error-code { + font-size: 80px; +} + +/* line 99, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .global-error-text { + font-size: 24px; +} + +/* line 105, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .nav-tabs .nav-link { + padding: 0.5rem 2rem; +} + +/* line 110, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .CodeMirror { + border: 1px solid #ced4da; +} + +/* line 114, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .batch-action-container { + margin-bottom: -15px; + padding: 10px 20px 0; + background: #fff; +} + +/* line 4, app/assets/stylesheets/admins/cooperatives.scss */ +.admins-cooperatives-index-page .coo-img-card .coo-img-item > .drag { + cursor: move; + background: #fff; + box-shadow: 1px 2px 5px 3px #f0f0f0; +} + +/* line 10, app/assets/stylesheets/admins/cooperatives.scss */ +.admins-cooperatives-index-page .coo-img-card .coo-img-item-img { + cursor: pointer; + width: 100%; + height: 40px; + margin-bottom: 10px; +} + +/* line 16, app/assets/stylesheets/admins/cooperatives.scss */ +.admins-cooperatives-index-page .coo-img-card .coo-img-item-img > img { + width: 100%; + height: 40px; +} + +/* line 22, app/assets/stylesheets/admins/cooperatives.scss */ +.admins-cooperatives-index-page .coo-img-card .coo-img-item .delete-btn { + position: absolute; + top: 3px; + right: 20px; + color: red; + cursor: pointer; +} + +/* line 30, app/assets/stylesheets/admins/cooperatives.scss */ +.admins-cooperatives-index-page .coo-img-card .coo-img-item .save-url-btn { + cursor: pointer; +} + +/* line 2, app/assets/stylesheets/admins/daily_school_statistics.scss */ +.admins-daily-school-statistics-index-page .daily-school-statistic-list-container { + text-align: center; +} + +/* line 3, app/assets/stylesheets/admins/dashboards.scss */ +.admins-dashboards-index-page .pie-statistic .pie { + height: 300px; +} + +/* line 4, app/assets/stylesheets/admins/departments.scss */ +.admins-departments-index-page .department-list-table .member-container .member-user { + display: -webkit-box; + display: flex; + -webkit-box-pack: center; + justify-content: center; + flex-wrap: wrap; +} + +/* line 9, app/assets/stylesheets/admins/departments.scss */ +.admins-departments-index-page .department-list-table .member-container .member-user .member-user-item { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + height: 22px; + line-height: 22px; + padding: 2px 5px; + margin: 2px 2px; + border: 1px solid #91D5FF; + background-color: #E6F7FF; + color: #91D5FF; + border-radius: 4px; +} + +/* line 2, app/assets/stylesheets/admins/ec_tempaltes.scss */ +.admins-ec-templates-index-page .template-file-upload { + padding: 10px; + background: #fafafa; + border: 1px dashed #ccc; + text-align: center; + color: #999; + position: relative; + width: 100%; +} + +/* line 12, app/assets/stylesheets/admins/ec_tempaltes.scss */ +.admins-ec-templates-index-page input[name='file'] { + opacity: 0; + position: absolute; + display: inline-block; + left: 0; + height: 43px; + top: 0; + width: 100%; + cursor: pointer; +} + +/* line 4, app/assets/stylesheets/admins/identity_authentications.scss */ +.admins-identity-authentications-index-page .identity-authentication-list-container span.apply-status-1 { + color: #28a745; +} + +/* line 5, app/assets/stylesheets/admins/identity_authentications.scss */ +.admins-identity-authentications-index-page .identity-authentication-list-container span.apply-status-2 { + color: #dc3545; +} + +/* line 6, app/assets/stylesheets/admins/identity_authentications.scss */ +.admins-identity-authentications-index-page .identity-authentication-list-container span.apply-status-3 { + color: #6c757d; +} + +/* line 4, app/assets/stylesheets/admins/library_applies.scss */ +.admins-library-applies-index-page .library-applies-list-container span.apply-status-agreed { + color: #28a745; +} + +/* line 5, app/assets/stylesheets/admins/library_applies.scss */ +.admins-library-applies-index-page .library-applies-list-container span.apply-status-refused { + color: #dc3545; +} + +/* line 6, app/assets/stylesheets/admins/library_applies.scss */ +.admins-library-applies-index-page .library-applies-list-container span.apply-status-processed { + color: #6c757d; +} + +/* line 2, app/assets/stylesheets/admins/major_informations.scss */ +.admins-major-informations-index-page .fr { + float: right; +} + +/* line 5, app/assets/stylesheets/admins/major_informations.scss */ +.admins-major-informations-index-page .panel-default { + margin-bottom: 10px; + background-color: whitesmoke; +} + +/* line 9, app/assets/stylesheets/admins/major_informations.scss */ +.admins-major-informations-index-page .panel-default .panel-heading i { + margin-right: 15px; + font-size: 16px; + color: #cccccc; +} + +/* line 14, app/assets/stylesheets/admins/major_informations.scss */ +.admins-major-informations-index-page .panel-default .panel-heading a { + padding: 8px 10px; + display: inline-block; + width: 100%; + color: #666666; +} + +/* line 21, app/assets/stylesheets/admins/major_informations.scss */ +.admins-major-informations-index-page .panel-default .panel-collapse { + padding-top: 10px; + background: #fff; +} + +/* line 24, app/assets/stylesheets/admins/major_informations.scss */ +.admins-major-informations-index-page .panel-default .panel-collapse table { + text-align: center; +} + +/* line 26, app/assets/stylesheets/admins/major_informations.scss */ +.admins-major-informations-index-page .panel-default .panel-collapse table th, .admins-major-informations-index-page .panel-default .panel-collapse table td { + padding: 8px; +} + +/* line 29, app/assets/stylesheets/admins/major_informations.scss */ +.admins-major-informations-index-page .panel-default .panel-collapse table td { + color: #888; +} + +/* line 4, app/assets/stylesheets/admins/professional_authentications.scss */ +.admins-professional-authentications-index-page .professional-authentication-list-container span.apply-status-1 { + color: #28a745; +} + +/* line 5, app/assets/stylesheets/admins/professional_authentications.scss */ +.admins-professional-authentications-index-page .professional-authentication-list-container span.apply-status-2 { + color: #dc3545; +} + +/* line 6, app/assets/stylesheets/admins/professional_authentications.scss */ +.admins-professional-authentications-index-page .professional-authentication-list-container span.apply-status-3 { + color: #6c757d; +} + +/* line 4, app/assets/stylesheets/admins/project_package_apply.scss */ +.admins-project-package-applies-index-page .project-package-applies-list-container span.apply-status-agreed { + color: #28a745; +} + +/* line 5, app/assets/stylesheets/admins/project_package_apply.scss */ +.admins-project-package-applies-index-page .project-package-applies-list-container span.apply-status-refused { + color: #dc3545; +} + +/* line 6, app/assets/stylesheets/admins/project_package_apply.scss */ +.admins-project-package-applies-index-page .project-package-applies-list-container span.apply-status-processed { + color: #6c757d; +} + +/* line 3, app/assets/stylesheets/admins/school_statistics.scss */ +.admins-school-statistics-index-page .school-statistic-list-form .time-select { + -webkit-box-flex: 1; + flex: 1; +} + +/* line 8, app/assets/stylesheets/admins/school_statistics.scss */ +.admins-school-statistics-index-page .school-statistic-list-form .type-box .btn { + margin: 0 5px; +} + +/* line 11, app/assets/stylesheets/admins/school_statistics.scss */ +.admins-school-statistics-index-page .school-statistic-list-form .search-input { + width: 220px; +} + +/* line 15, app/assets/stylesheets/admins/school_statistics.scss */ +.admins-school-statistics-index-page .school-statistic-list-form .contrast-date-container { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; +} + +/* line 22, app/assets/stylesheets/admins/school_statistics.scss */ +.admins-school-statistics-index-page .school-statistic-list-container .contrast-column-select { + position: absolute; + right: 30px; + top: 15px; + width: 130px; +} + +/* line 29, app/assets/stylesheets/admins/school_statistics.scss */ +.admins-school-statistics-index-page .school-statistic-list-container .relative { + position: relative; +} + +/* line 33, app/assets/stylesheets/admins/school_statistics.scss */ +.admins-school-statistics-index-page .school-statistic-list-container .right-border::after { + position: absolute; + top: 10px; + right: 0; + content: ''; + width: 0; + height: 20px; + border-right: 1px solid #000; +} + +/* line 3, app/assets/stylesheets/admins/shixun.scss */ +.admins-shixuns-index-page .shixuns-list-container .shixuns-status-1 { + color: #6c757d; +} + +/* line 4, app/assets/stylesheets/admins/shixun.scss */ +.admins-shixuns-index-page .shixuns-list-container .shixuns-status-2 { + color: #28a745; +} + +/* line 5, app/assets/stylesheets/admins/shixun.scss */ +.admins-shixuns-index-page .shixuns-list-container .shixuns-status-3 { + color: #dc3545; +} + +/* line 4, app/assets/stylesheets/admins/shixun_authorizations.scss */ +.admins-shixun-authorizations-index-page .shixun-authorization-list-container span.apply-status-1 { + color: #28a745; +} + +/* line 5, app/assets/stylesheets/admins/shixun_authorizations.scss */ +.admins-shixun-authorizations-index-page .shixun-authorization-list-container span.apply-status-2 { + color: #dc3545; +} + +/* line 6, app/assets/stylesheets/admins/shixun_authorizations.scss */ +.admins-shixun-authorizations-index-page .shixun-authorization-list-container span.apply-status-3 { + color: #6c757d; +} + +/* line 2, app/assets/stylesheets/admins/shixun_settings.scss */ +.admins-shixun-settings-index-page input[type="checkbox"] { + font-size: 18px; +} + +/* line 5, app/assets/stylesheets/admins/shixun_settings.scss */ +.admins-shixun-settings-index-page .select2 input::-webkit-input-placeholder { + color: #ccc; +} + +/* line 8, app/assets/stylesheets/admins/shixun_settings.scss */ +.admins-shixun-settings-index-page .select2 .select2-selection__choice { + border: 1px solid #eee !important; +} + +/* line 11, app/assets/stylesheets/admins/shixun_settings.scss */ +.admins-shixun-settings-index-page .setting-chosen { + font-weight: 400; + font-size: 10px; + color: #333; +} + +/* line 17, app/assets/stylesheets/admins/shixun_settings.scss */ +.admins-shixun-settings-index-page .shixun-setting-image { + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + -webkit-box-align: center; + align-items: center; +} + +/* line 1, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar { + min-width: 200px; + max-width: 200px; + background: #272822; + color: #fff; + -webkit-transition: all 0.5s; + transition: all 0.5s; + overflow-y: scroll; +} + +/* line 9, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar::-webkit-scrollbar { + display: none; +} + +/* line 13, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar.active { + min-width: 60px; + max-width: 60px; + text-align: center; +} + +/* line 18, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar.active .sidebar-header { + padding: 10px; + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; +} + +/* line 23, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar.active .sidebar-header-logo { + padding-left: 5px; + overflow: hidden; + margin-bottom: 10px; +} + +/* line 30, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar.active ul li a { + padding: 10px; + text-align: center; + font-size: 0.85em; + display: -webkit-box; + display: flex; + -webkit-box-pack: center; + justify-content: center; +} + +/* line 37, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar.active ul li a span { + display: none; +} + +/* line 39, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar.active ul li a i { + margin-right: 0; + display: block; + font-size: 1.8em; + margin-bottom: 5px; + width: 30px; + height: 20px; +} + +/* line 49, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar.active .dropdown-toggle::after { + top: auto; + bottom: 10px; + right: 50%; + -webkit-transform: translateX(50%); + transform: translateX(50%); +} + +/* line 58, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar.active ul ul a { + padding: 10px !important; +} + +/* line 61, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar.active ul ul a span { + display: none; +} + +/* line 63, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar.active ul ul a i { + margin-left: 0px; + display: block; + font-size: 0.8em; + width: 30px; + height: 10px; +} + +/* line 73, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar .sidebar-header { + padding: 20px; + background: #272822; + display: -webkit-box; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + -webkit-box-pack: justify; + justify-content: space-between; +} + +/* line 81, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar #sidebarCollapse { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: center; + justify-content: center; + cursor: pointer; + text-align: right; +} + +/* line 88, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar #sidebarCollapse.active { + width: 40px; + height: 30px; + background: #3f3f3f; + border: 1px solid grey; + border-radius: 3px; +} + +/* line 95, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar #sidebarCollapse.active i.fold { + display: none; +} + +/* line 96, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar #sidebarCollapse.active i.unfold { + display: block; +} + +/* line 99, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar #sidebarCollapse i.fold { + display: block; +} + +/* line 102, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar #sidebarCollapse i.unfold { + display: none; +} + +/* line 105, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar a, #sidebar a:hover, #sidebar a:focus { + color: inherit; + text-decoration: none; + -webkit-transition: all 0.3s; + transition: all 0.3s; +} + +/* line 111, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar > ul > li > a > i { + width: 14px; + height: 14px; +} + +/* line 117, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar ul.components { + padding: 20px 0; + border-bottom: 1px solid #3f3f3f; +} + +/* line 122, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar ul p { + color: #fff; + padding: 10px; +} + +/* line 127, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar ul li > a { + padding: 10px; + font-size: 1em; + display: block; + text-align: left; +} + +/* line 133, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar ul li > a i { + margin-right: 10px; + font-size: 1em; + margin-bottom: 5px; +} + +/* line 141, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar ul li a:hover, #sidebar ul li a.active { + color: #fff; + background: #276891; +} + +/* line 147, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar ul li.active > a, #sidebar ul a[aria-expanded="true"] { + color: #fff; +} + +/* line 152, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar ul ul a { + font-size: 0.9em !important; + padding-left: 30px !important; + background: #3f3f3f; +} + +@media (max-width: 768px) { + /* line 162, app/assets/stylesheets/admins/sidebar.scss */ + #sidebar.active { + padding: 10px 5px; + min-width: 40px; + max-width: 40px; + text-align: center; + margin-left: 0; + -webkit-transform: none; + transform: none; + } + /* line 170, app/assets/stylesheets/admins/sidebar.scss */ + #sidebar.active .sidebar-header { + padding: 0px; + } + /* line 172, app/assets/stylesheets/admins/sidebar.scss */ + #sidebar.active .sidebar-header .sidebar-header-logo { + display: none; + } + /* line 174, app/assets/stylesheets/admins/sidebar.scss */ + #sidebar.active .sidebar-header .sidebar-header-logo img { + width: 93%; + } + /* line 179, app/assets/stylesheets/admins/sidebar.scss */ + #sidebar.active .sidebar-header #sidebarCollapse { + width: 30px; + height: 20px; + } + /* line 185, app/assets/stylesheets/admins/sidebar.scss */ + #sidebar.active ul li a { + padding: 10px; + font-size: 0.85em; + } + /* line 189, app/assets/stylesheets/admins/sidebar.scss */ + #sidebar.active ul li a i { + margin-right: 0; + display: block; + margin-bottom: 5px; + } + /* line 196, app/assets/stylesheets/admins/sidebar.scss */ + #sidebar.active > ul > li > a > i { + font-size: 1.8em; + } + /* line 200, app/assets/stylesheets/admins/sidebar.scss */ + #sidebar.active ul ul a { + padding: 10px !important; + } + /* line 211, app/assets/stylesheets/admins/sidebar.scss */ + .dropdown-toggle::after { + top: auto; + bottom: 10px; + right: 50%; + -webkit-transform: translateX(50%); + transform: translateX(50%); + } +} + +/* line 4, app/assets/stylesheets/admins/subject_authorizations.scss */ +.admins-subject-authorizations-index-page .subject-authorization-list-container span.apply-status-1 { + color: #28a745; +} + +/* line 5, app/assets/stylesheets/admins/subject_authorizations.scss */ +.admins-subject-authorizations-index-page .subject-authorization-list-container span.apply-status-2 { + color: #dc3545; +} + +/* line 6, app/assets/stylesheets/admins/subject_authorizations.scss */ +.admins-subject-authorizations-index-page .subject-authorization-list-container span.apply-status-3 { + color: #6c757d; +} + +/* line 5, app/assets/stylesheets/admins/users.scss */ +.admins-users-index-page .users-list-container { + text-align: center; +} + +/* line 12, app/assets/stylesheets/admins/users.scss */ +.admins-users-edit-page .user-edit-container .user-info-content, .admins-users-update-page .user-edit-container .user-info-content { + padding-top: 5px; + padding-bottom: 5px; + height: 80px; +} + +/* line 18, app/assets/stylesheets/admins/users.scss */ +.admins-users-edit-page .user-edit-container .user-info-name, .admins-users-update-page .user-edit-container .user-info-name { + -webkit-box-flex: 2; + flex: 2; + font-size: 16px; +} + +/* line 23, app/assets/stylesheets/admins/users.scss */ +.admins-users-edit-page .user-edit-container .user-info-auth, .admins-users-update-page .user-edit-container .user-info-auth { + -webkit-box-flex: 1; + flex: 1; +} + +/* line 26, app/assets/stylesheets/admins/users.scss */ +.admins-users-edit-page .user-edit-container .user-info-auth i.fa, .admins-users-update-page .user-edit-container .user-info-auth i.fa { + margin-right: 10px; + font-size: 16px; + width: 16px; + height: 16px; + text-align: center; +} + +/* line 4, app/assets/stylesheets/admins/video_apply.scss */ +.admins-video-applies-index-page .video-applies-list-container span.apply-status-agreed { + color: #28a745; +} + +/* line 5, app/assets/stylesheets/admins/video_apply.scss */ +.admins-video-applies-index-page .video-applies-list-container span.apply-status-refused { + color: #dc3545; +} + +/* line 6, app/assets/stylesheets/admins/video_apply.scss */ +.admins-video-applies-index-page .video-applies-list-container span.apply-status-processed { + color: #6c757d; +} + +/* line 18, app/assets/stylesheets/admin.scss */ +body { + width: 100vw; + height: 100vh; + max-width: 100vw; + max-height: 100vh; + display: -webkit-box; + display: flex; + -webkit-box-align: stretch; + align-items: stretch; + font-size: 14px; + background: #efefef; + overflow: hidden; +} + +/* line 32, app/assets/stylesheets/admin.scss */ +.simple_form .form-group .collection_radio_buttons { + margin-bottom: 0px; +} + +/* line 36, app/assets/stylesheets/admin.scss */ +.simple_form .form-group .form-check-inline { + height: calc(1.5em + 0.75rem + 2px); +} + +/* line 42, app/assets/stylesheets/admin.scss */ +input.form-control { + font-size: 14px; +} + +/* line 46, app/assets/stylesheets/admin.scss */ +.btn-default { + color: #666; + background: #e1e1e1 !important; +} + +/* line 50, app/assets/stylesheets/admin.scss */ +.export-absolute { + right: 20px; + position: absolute; +} +/* line 2, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .list-item-title { + padding-bottom: 5px; + padding-left: 33px; + color: #555; +} + +/* line 7, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .list-item-title-1 { + width: 100px; + display: inline-block; +} + +/* line 11, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .list-item-title-2 { + width: 200px; + display: inline-block; +} + +/* line 15, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .collegeManage { + float: left; + padding: 0px 8px; + border-radius: 6px; + background-color: #f5f5f5; + margin: 3px 0px 3px 10px; + height: 34px; + line-height: 34px; +} + +/* line 23, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .collegeManage a { + color: #05101a; +} + +/* line 26, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .collegeManage a:hover { + color: #007bff; +} + +/* line 30, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page i:hover { + color: #333; +} + +/* line 33, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .add-manager-i { + float: left; +} + +/* line 35, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .add-manager-i i { + padding: 10px 5px; +} + +/* line 41, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .auth-schools-new-add .flex-column input, .admins-auth-schools-index-page .auth-schools-user-add .flex-column input { + height: 38px; +} + +/* line 45, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .auth-schools-new-add .search-school, .admins-auth-schools-index-page .auth-schools-user-add .search-school { + margin-left: 15px; +} + +/* line 50, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .school-search-list { + background: #F4FAFF; + height: 280px; + overflow-y: scroll; + padding: 10px 0; +} + +/* line 56, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .school-list-item { + padding: 2px 10px; +} + +/* line 58, app/assets/stylesheets/admins/auth_schools.scss */ +.admins-auth-schools-index-page .school-list-item input { + font-size: 20px; + margin-right: 5px; +} +/* line 4, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item > .drag { + cursor: move; + background: #fff; + box-shadow: 1px 2px 5px 3px #f0f0f0; +} + +/* line 10, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item-no { + font-size: 28px; + text-align: center; +} + +/* line 15, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item-img { + cursor: pointer; + width: 100%; + height: 60px; +} + +/* line 20, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item-img > img { + display: block; + width: 100%; + height: 60px; + background: #F5F5F5; +} + +/* line 28, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item .not_active { + background: #F0F0F0; +} + +/* line 32, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item .delete-btn { + font-size: 20px; + color: red; + cursor: pointer; +} + +/* line 38, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item .save-url-btn { + cursor: pointer; +} + +/* line 42, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item .operate-box { + display: -webkit-box; + display: flex; + -webkit-box-pack: justify; + justify-content: space-between; + -webkit-box-align: center; + align-items: center; +} + +/* line 48, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item .online-check-box { + font-size: 20px; +} + +/* line 52, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item .name-input { + -webkit-box-flex: 1; + flex: 1; +} + +/* line 55, app/assets/stylesheets/admins/carousels.scss */ +.admins-carousels-index-page .carousels-card .custom-carousel-item .link-input { + -webkit-box-flex: 3; + flex: 3; +} +@charset "UTF-8"; +/* line 1, app/assets/stylesheets/admins/common.scss */ +.admin-body-container { + padding: 20px; + -webkit-box-flex: 1; + flex: 1; + min-height: 100vh; + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + overflow-y: scroll; + /* 面包屑 */ + /* 内容表格 */ + /* 分页 */ + /* 搜索表单 */ +} + +/* line 9, app/assets/stylesheets/admins/common.scss */ +.admin-body-container > .content { + -webkit-box-flex: 1; + flex: 1; + font-size: 14px; +} + +/* line 13, app/assets/stylesheets/admins/common.scss */ +.admin-body-container > .content .box { + padding: 20px; + border-radius: 5px; + background: #fff; +} + +/* line 21, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .breadcrumb { + padding-left: 5px; + font-size: 20px; + background: unset; +} + +/* line 28, app/assets/stylesheets/admins/common.scss */ +.admin-body-container table { + table-layout: fixed; +} + +/* line 31, app/assets/stylesheets/admins/common.scss */ +.admin-body-container table td { + vertical-align: middle; +} + +/* line 37, app/assets/stylesheets/admins/common.scss */ +.admin-body-container table tr.no-data:hover { + color: darkgrey; + background: unset; +} + +/* line 42, app/assets/stylesheets/admins/common.scss */ +.admin-body-container table tr.no-data > td { + text-align: center; + height: 300px; +} + +/* line 51, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .action-container .action { + padding: 0 3px; +} + +/* line 57, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .paginate-container { + margin-top: 20px; + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + -webkit-box-pack: center; + justify-content: center; + -webkit-box-align: center; + align-items: center; +} + +/* line 64, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .paginate-container .paginate-total { + margin-bottom: 10px; + color: darkgrey; +} + +/* line 69, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .paginate-container .pagination { + margin-bottom: 0px; +} + +/* line 75, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .search-form-container { + display: -webkit-box; + display: flex; + margin-bottom: 20px; +} + +/* line 79, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .search-form-container .search-form { + -webkit-box-flex: 1; + flex: 1; +} + +/* line 82, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .search-form-container .search-form * { + font-size: 14px; +} + +/* line 84, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .search-form-container .search-form select, .admin-body-container .search-form-container .search-form input { + margin-right: 10px; + font-size: 14px; +} + +/* line 91, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .global-error { + color: grey; + min-height: 300px; +} + +/* line 95, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .global-error-code { + font-size: 80px; +} + +/* line 99, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .global-error-text { + font-size: 24px; +} + +/* line 105, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .nav-tabs .nav-link { + padding: 0.5rem 2rem; +} + +/* line 110, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .CodeMirror { + border: 1px solid #ced4da; +} + +/* line 114, app/assets/stylesheets/admins/common.scss */ +.admin-body-container .batch-action-container { + margin-bottom: -15px; + padding: 10px 20px 0; + background: #fff; +} +/* line 4, app/assets/stylesheets/admins/cooperatives.scss */ +.admins-cooperatives-index-page .coo-img-card .coo-img-item > .drag { + cursor: move; + background: #fff; + box-shadow: 1px 2px 5px 3px #f0f0f0; +} + +/* line 10, app/assets/stylesheets/admins/cooperatives.scss */ +.admins-cooperatives-index-page .coo-img-card .coo-img-item-img { + cursor: pointer; + width: 100%; + height: 40px; + margin-bottom: 10px; +} + +/* line 16, app/assets/stylesheets/admins/cooperatives.scss */ +.admins-cooperatives-index-page .coo-img-card .coo-img-item-img > img { + width: 100%; + height: 40px; +} + +/* line 22, app/assets/stylesheets/admins/cooperatives.scss */ +.admins-cooperatives-index-page .coo-img-card .coo-img-item .delete-btn { + position: absolute; + top: 3px; + right: 20px; + color: red; + cursor: pointer; +} + +/* line 30, app/assets/stylesheets/admins/cooperatives.scss */ +.admins-cooperatives-index-page .coo-img-card .coo-img-item .save-url-btn { + cursor: pointer; +} +/* line 2, app/assets/stylesheets/admins/daily_school_statistics.scss */ +.admins-daily-school-statistics-index-page .daily-school-statistic-list-container { + text-align: center; +} +/* line 3, app/assets/stylesheets/admins/dashboards.scss */ +.admins-dashboards-index-page .pie-statistic .pie { + height: 300px; +} +/* line 4, app/assets/stylesheets/admins/departments.scss */ +.admins-departments-index-page .department-list-table .member-container .member-user { + display: -webkit-box; + display: flex; + -webkit-box-pack: center; + justify-content: center; + flex-wrap: wrap; +} + +/* line 9, app/assets/stylesheets/admins/departments.scss */ +.admins-departments-index-page .department-list-table .member-container .member-user .member-user-item { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + height: 22px; + line-height: 22px; + padding: 2px 5px; + margin: 2px 2px; + border: 1px solid #91D5FF; + background-color: #E6F7FF; + color: #91D5FF; + border-radius: 4px; +} +/* line 2, app/assets/stylesheets/admins/ec_tempaltes.scss */ +.admins-ec-templates-index-page .template-file-upload { + padding: 10px; + background: #fafafa; + border: 1px dashed #ccc; + text-align: center; + color: #999; + position: relative; + width: 100%; +} + +/* line 12, app/assets/stylesheets/admins/ec_tempaltes.scss */ +.admins-ec-templates-index-page input[name='file'] { + opacity: 0; + position: absolute; + display: inline-block; + left: 0; + height: 43px; + top: 0; + width: 100%; + cursor: pointer; +} +/* line 4, app/assets/stylesheets/admins/identity_authentications.scss */ +.admins-identity-authentications-index-page .identity-authentication-list-container span.apply-status-1 { + color: #28a745; +} + +/* line 5, app/assets/stylesheets/admins/identity_authentications.scss */ +.admins-identity-authentications-index-page .identity-authentication-list-container span.apply-status-2 { + color: #dc3545; +} + +/* line 6, app/assets/stylesheets/admins/identity_authentications.scss */ +.admins-identity-authentications-index-page .identity-authentication-list-container span.apply-status-3 { + color: #6c757d; +} +/* line 4, app/assets/stylesheets/admins/library_applies.scss */ +.admins-library-applies-index-page .library-applies-list-container span.apply-status-agreed { + color: #28a745; +} + +/* line 5, app/assets/stylesheets/admins/library_applies.scss */ +.admins-library-applies-index-page .library-applies-list-container span.apply-status-refused { + color: #dc3545; +} + +/* line 6, app/assets/stylesheets/admins/library_applies.scss */ +.admins-library-applies-index-page .library-applies-list-container span.apply-status-processed { + color: #6c757d; +} +/* line 2, app/assets/stylesheets/admins/major_informations.scss */ +.admins-major-informations-index-page .fr { + float: right; +} + +/* line 5, app/assets/stylesheets/admins/major_informations.scss */ +.admins-major-informations-index-page .panel-default { + margin-bottom: 10px; + background-color: whitesmoke; +} + +/* line 9, app/assets/stylesheets/admins/major_informations.scss */ +.admins-major-informations-index-page .panel-default .panel-heading i { + margin-right: 15px; + font-size: 16px; + color: #cccccc; +} + +/* line 14, app/assets/stylesheets/admins/major_informations.scss */ +.admins-major-informations-index-page .panel-default .panel-heading a { + padding: 8px 10px; + display: inline-block; + width: 100%; + color: #666666; +} + +/* line 21, app/assets/stylesheets/admins/major_informations.scss */ +.admins-major-informations-index-page .panel-default .panel-collapse { + padding-top: 10px; + background: #fff; +} + +/* line 24, app/assets/stylesheets/admins/major_informations.scss */ +.admins-major-informations-index-page .panel-default .panel-collapse table { + text-align: center; +} + +/* line 26, app/assets/stylesheets/admins/major_informations.scss */ +.admins-major-informations-index-page .panel-default .panel-collapse table th, .admins-major-informations-index-page .panel-default .panel-collapse table td { + padding: 8px; +} + +/* line 29, app/assets/stylesheets/admins/major_informations.scss */ +.admins-major-informations-index-page .panel-default .panel-collapse table td { + color: #888; +} +/* line 4, app/assets/stylesheets/admins/professional_authentications.scss */ +.admins-professional-authentications-index-page .professional-authentication-list-container span.apply-status-1 { + color: #28a745; +} + +/* line 5, app/assets/stylesheets/admins/professional_authentications.scss */ +.admins-professional-authentications-index-page .professional-authentication-list-container span.apply-status-2 { + color: #dc3545; +} + +/* line 6, app/assets/stylesheets/admins/professional_authentications.scss */ +.admins-professional-authentications-index-page .professional-authentication-list-container span.apply-status-3 { + color: #6c757d; +} +/* line 4, app/assets/stylesheets/admins/project_package_apply.scss */ +.admins-project-package-applies-index-page .project-package-applies-list-container span.apply-status-agreed { + color: #28a745; +} + +/* line 5, app/assets/stylesheets/admins/project_package_apply.scss */ +.admins-project-package-applies-index-page .project-package-applies-list-container span.apply-status-refused { + color: #dc3545; +} + +/* line 6, app/assets/stylesheets/admins/project_package_apply.scss */ +.admins-project-package-applies-index-page .project-package-applies-list-container span.apply-status-processed { + color: #6c757d; +} +/* line 3, app/assets/stylesheets/admins/school_statistics.scss */ +.admins-school-statistics-index-page .school-statistic-list-form .time-select { + -webkit-box-flex: 1; + flex: 1; +} + +/* line 8, app/assets/stylesheets/admins/school_statistics.scss */ +.admins-school-statistics-index-page .school-statistic-list-form .type-box .btn { + margin: 0 5px; +} + +/* line 11, app/assets/stylesheets/admins/school_statistics.scss */ +.admins-school-statistics-index-page .school-statistic-list-form .search-input { + width: 220px; +} + +/* line 15, app/assets/stylesheets/admins/school_statistics.scss */ +.admins-school-statistics-index-page .school-statistic-list-form .contrast-date-container { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; +} + +/* line 22, app/assets/stylesheets/admins/school_statistics.scss */ +.admins-school-statistics-index-page .school-statistic-list-container .contrast-column-select { + position: absolute; + right: 30px; + top: 15px; + width: 130px; +} + +/* line 29, app/assets/stylesheets/admins/school_statistics.scss */ +.admins-school-statistics-index-page .school-statistic-list-container .relative { + position: relative; +} + +/* line 33, app/assets/stylesheets/admins/school_statistics.scss */ +.admins-school-statistics-index-page .school-statistic-list-container .right-border::after { + position: absolute; + top: 10px; + right: 0; + content: ''; + width: 0; + height: 20px; + border-right: 1px solid #000; +} +/* line 3, app/assets/stylesheets/admins/shixun.scss */ +.admins-shixuns-index-page .shixuns-list-container .shixuns-status-1 { + color: #6c757d; +} + +/* line 4, app/assets/stylesheets/admins/shixun.scss */ +.admins-shixuns-index-page .shixuns-list-container .shixuns-status-2 { + color: #28a745; +} + +/* line 5, app/assets/stylesheets/admins/shixun.scss */ +.admins-shixuns-index-page .shixuns-list-container .shixuns-status-3 { + color: #dc3545; +} +/* line 4, app/assets/stylesheets/admins/shixun_authorizations.scss */ +.admins-shixun-authorizations-index-page .shixun-authorization-list-container span.apply-status-1 { + color: #28a745; +} + +/* line 5, app/assets/stylesheets/admins/shixun_authorizations.scss */ +.admins-shixun-authorizations-index-page .shixun-authorization-list-container span.apply-status-2 { + color: #dc3545; +} + +/* line 6, app/assets/stylesheets/admins/shixun_authorizations.scss */ +.admins-shixun-authorizations-index-page .shixun-authorization-list-container span.apply-status-3 { + color: #6c757d; +} +/* line 2, app/assets/stylesheets/admins/shixun_settings.scss */ +.admins-shixun-settings-index-page input[type="checkbox"] { + font-size: 18px; +} + +/* line 5, app/assets/stylesheets/admins/shixun_settings.scss */ +.admins-shixun-settings-index-page .select2 input::-webkit-input-placeholder { + color: #ccc; +} + +/* line 8, app/assets/stylesheets/admins/shixun_settings.scss */ +.admins-shixun-settings-index-page .select2 .select2-selection__choice { + border: 1px solid #eee !important; +} + +/* line 11, app/assets/stylesheets/admins/shixun_settings.scss */ +.admins-shixun-settings-index-page .setting-chosen { + font-weight: 400; + font-size: 10px; + color: #333; +} + +/* line 17, app/assets/stylesheets/admins/shixun_settings.scss */ +.admins-shixun-settings-index-page .shixun-setting-image { + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + -webkit-box-align: center; + align-items: center; +} +/* line 1, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar { + min-width: 200px; + max-width: 200px; + background: #272822; + color: #fff; + -webkit-transition: all 0.5s; + transition: all 0.5s; + overflow-y: scroll; +} + +/* line 9, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar::-webkit-scrollbar { + display: none; +} + +/* line 13, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar.active { + min-width: 60px; + max-width: 60px; + text-align: center; +} + +/* line 18, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar.active .sidebar-header { + padding: 10px; + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; +} + +/* line 23, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar.active .sidebar-header-logo { + padding-left: 5px; + overflow: hidden; + margin-bottom: 10px; +} + +/* line 30, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar.active ul li a { + padding: 10px; + text-align: center; + font-size: 0.85em; + display: -webkit-box; + display: flex; + -webkit-box-pack: center; + justify-content: center; +} + +/* line 37, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar.active ul li a span { + display: none; +} + +/* line 39, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar.active ul li a i { + margin-right: 0; + display: block; + font-size: 1.8em; + margin-bottom: 5px; + width: 30px; + height: 20px; +} + +/* line 49, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar.active .dropdown-toggle::after { + top: auto; + bottom: 10px; + right: 50%; + -webkit-transform: translateX(50%); + transform: translateX(50%); +} + +/* line 58, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar.active ul ul a { + padding: 10px !important; +} + +/* line 61, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar.active ul ul a span { + display: none; +} + +/* line 63, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar.active ul ul a i { + margin-left: 0px; + display: block; + font-size: 0.8em; + width: 30px; + height: 10px; +} + +/* line 73, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar .sidebar-header { + padding: 20px; + background: #272822; + display: -webkit-box; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + -webkit-box-pack: justify; + justify-content: space-between; +} + +/* line 81, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar #sidebarCollapse { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: center; + justify-content: center; + cursor: pointer; + text-align: right; +} + +/* line 88, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar #sidebarCollapse.active { + width: 40px; + height: 30px; + background: #3f3f3f; + border: 1px solid grey; + border-radius: 3px; +} + +/* line 95, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar #sidebarCollapse.active i.fold { + display: none; +} + +/* line 96, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar #sidebarCollapse.active i.unfold { + display: block; +} + +/* line 99, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar #sidebarCollapse i.fold { + display: block; +} + +/* line 102, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar #sidebarCollapse i.unfold { + display: none; +} + +/* line 105, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar a, #sidebar a:hover, #sidebar a:focus { + color: inherit; + text-decoration: none; + -webkit-transition: all 0.3s; + transition: all 0.3s; +} + +/* line 111, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar > ul > li > a > i { + width: 14px; + height: 14px; +} + +/* line 117, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar ul.components { + padding: 20px 0; + border-bottom: 1px solid #3f3f3f; +} + +/* line 122, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar ul p { + color: #fff; + padding: 10px; +} + +/* line 127, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar ul li > a { + padding: 10px; + font-size: 1em; + display: block; + text-align: left; +} + +/* line 133, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar ul li > a i { + margin-right: 10px; + font-size: 1em; + margin-bottom: 5px; +} + +/* line 141, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar ul li a:hover, #sidebar ul li a.active { + color: #fff; + background: #276891; +} + +/* line 147, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar ul li.active > a, #sidebar ul a[aria-expanded="true"] { + color: #fff; +} + +/* line 152, app/assets/stylesheets/admins/sidebar.scss */ +#sidebar ul ul a { + font-size: 0.9em !important; + padding-left: 30px !important; + background: #3f3f3f; +} + +@media (max-width: 768px) { + /* line 162, app/assets/stylesheets/admins/sidebar.scss */ + #sidebar.active { + padding: 10px 5px; + min-width: 40px; + max-width: 40px; + text-align: center; + margin-left: 0; + -webkit-transform: none; + transform: none; + } + /* line 170, app/assets/stylesheets/admins/sidebar.scss */ + #sidebar.active .sidebar-header { + padding: 0px; + } + /* line 172, app/assets/stylesheets/admins/sidebar.scss */ + #sidebar.active .sidebar-header .sidebar-header-logo { + display: none; + } + /* line 174, app/assets/stylesheets/admins/sidebar.scss */ + #sidebar.active .sidebar-header .sidebar-header-logo img { + width: 93%; + } + /* line 179, app/assets/stylesheets/admins/sidebar.scss */ + #sidebar.active .sidebar-header #sidebarCollapse { + width: 30px; + height: 20px; + } + /* line 185, app/assets/stylesheets/admins/sidebar.scss */ + #sidebar.active ul li a { + padding: 10px; + font-size: 0.85em; + } + /* line 189, app/assets/stylesheets/admins/sidebar.scss */ + #sidebar.active ul li a i { + margin-right: 0; + display: block; + margin-bottom: 5px; + } + /* line 196, app/assets/stylesheets/admins/sidebar.scss */ + #sidebar.active > ul > li > a > i { + font-size: 1.8em; + } + /* line 200, app/assets/stylesheets/admins/sidebar.scss */ + #sidebar.active ul ul a { + padding: 10px !important; + } + /* line 211, app/assets/stylesheets/admins/sidebar.scss */ + .dropdown-toggle::after { + top: auto; + bottom: 10px; + right: 50%; + -webkit-transform: translateX(50%); + transform: translateX(50%); + } +} +/* line 4, app/assets/stylesheets/admins/subject_authorizations.scss */ +.admins-subject-authorizations-index-page .subject-authorization-list-container span.apply-status-1 { + color: #28a745; +} + +/* line 5, app/assets/stylesheets/admins/subject_authorizations.scss */ +.admins-subject-authorizations-index-page .subject-authorization-list-container span.apply-status-2 { + color: #dc3545; +} + +/* line 6, app/assets/stylesheets/admins/subject_authorizations.scss */ +.admins-subject-authorizations-index-page .subject-authorization-list-container span.apply-status-3 { + color: #6c757d; +} +/* line 5, app/assets/stylesheets/admins/users.scss */ +.admins-users-index-page .users-list-container { + text-align: center; +} + +/* line 12, app/assets/stylesheets/admins/users.scss */ +.admins-users-edit-page .user-edit-container .user-info-content, .admins-users-update-page .user-edit-container .user-info-content { + padding-top: 5px; + padding-bottom: 5px; + height: 80px; +} + +/* line 18, app/assets/stylesheets/admins/users.scss */ +.admins-users-edit-page .user-edit-container .user-info-name, .admins-users-update-page .user-edit-container .user-info-name { + -webkit-box-flex: 2; + flex: 2; + font-size: 16px; +} + +/* line 23, app/assets/stylesheets/admins/users.scss */ +.admins-users-edit-page .user-edit-container .user-info-auth, .admins-users-update-page .user-edit-container .user-info-auth { + -webkit-box-flex: 1; + flex: 1; +} + +/* line 26, app/assets/stylesheets/admins/users.scss */ +.admins-users-edit-page .user-edit-container .user-info-auth i.fa, .admins-users-update-page .user-edit-container .user-info-auth i.fa { + margin-right: 10px; + font-size: 16px; + width: 16px; + height: 16px; + text-align: center; +} +/* line 4, app/assets/stylesheets/admins/video_apply.scss */ +.admins-video-applies-index-page .video-applies-list-container span.apply-status-agreed { + color: #28a745; +} + +/* line 5, app/assets/stylesheets/admins/video_apply.scss */ +.admins-video-applies-index-page .video-applies-list-container span.apply-status-refused { + color: #dc3545; +} + +/* line 6, app/assets/stylesheets/admins/video_apply.scss */ +.admins-video-applies-index-page .video-applies-list-container span.apply-status-processed { + color: #6c757d; +} +/*! + * Bootstrap v4.3.1 (https://getbootstrap.com/) + * Copyright 2011-2019 The Bootstrap Authors + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_root.scss */ +:root { + --blue: #007bff; + --indigo: #6610f2; + --purple: #6f42c1; + --pink: #e83e8c; + --red: #dc3545; + --orange: #fd7e14; + --yellow: #ffc107; + --green: #28a745; + --teal: #20c997; + --cyan: #17a2b8; + --white: #fff; + --gray: #6c757d; + --gray-dark: #343a40; + --primary: #007bff; + --secondary: #6c757d; + --success: #28a745; + --info: #17a2b8; + --warning: #ffc107; + --danger: #dc3545; + --light: #f8f9fa; + --dark: #343a40; + --breakpoint-xs: 0; + --breakpoint-sm: 576px; + --breakpoint-md: 768px; + --breakpoint-lg: 992px; + --breakpoint-xl: 1200px; + --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +*, +*::before, +*::after { + box-sizing: border-box; +} + +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +html { + font-family: sans-serif; + line-height: 1.15; + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: transparent; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { + display: block; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + text-align: left; + background-color: #fff; +} + +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +[tabindex="-1"]:focus { + outline: 0 !important; +} + +/* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +hr { + box-sizing: content-box; + height: 0; + overflow: visible; +} + +/* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +h1, h2, h3, h4, h5, h6 { + margin-top: 0; + margin-bottom: 0.5rem; +} + +/* line 97, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +p { + margin-top: 0; + margin-bottom: 1rem; +} + +/* line 110, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +abbr[title], +abbr[data-original-title] { + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + cursor: help; + border-bottom: 0; + -webkit-text-decoration-skip-ink: none; + text-decoration-skip-ink: none; +} + +/* line 119, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; +} + +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; +} + +/* line 132, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; +} + +/* line 139, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +dt { + font-weight: 700; +} + +/* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +dd { + margin-bottom: .5rem; + margin-left: 0; +} + +/* line 148, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +blockquote { + margin: 0 0 1rem; +} + +/* line 152, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +b, +strong { + font-weight: bolder; +} + +/* line 157, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +small { + font-size: 80%; +} + +/* line 166, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +/* line 174, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +sub { + bottom: -.25em; +} + +/* line 175, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +sup { + top: -.5em; +} + +/* line 182, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +a { + color: #007bff; + text-decoration: none; + background-color: transparent; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a:hover { + color: #0056b3; + text-decoration: underline; +} + +/* line 199, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +a:not([href]):not([tabindex]) { + color: inherit; + text-decoration: none; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus { + color: inherit; + text-decoration: none; +} + +/* line 208, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +a:not([href]):not([tabindex]):focus { + outline: 0; +} + +/* line 218, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +pre, +code, +kbd, +samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + font-size: 1em; +} + +/* line 226, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +pre { + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; +} + +/* line 240, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +figure { + margin: 0 0 1rem; +} + +/* line 250, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +img { + vertical-align: middle; + border-style: none; +} + +/* line 255, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +svg { + overflow: hidden; + vertical-align: middle; +} + +/* line 267, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +table { + border-collapse: collapse; +} + +/* line 271, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +caption { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + color: #6c757d; + text-align: left; + caption-side: bottom; +} + +/* line 279, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +th { + text-align: inherit; +} + +/* line 290, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +label { + display: inline-block; + margin-bottom: 0.5rem; +} + +/* line 299, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +button { + border-radius: 0; +} + +/* line 308, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +button:focus { + outline: 1px dotted; + outline: 5px auto -webkit-focus-ring-color; +} + +/* line 313, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; +} + +/* line 324, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +button, +input { + overflow: visible; +} + +/* line 329, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +button, +select { + text-transform: none; +} + +/* line 337, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +select { + word-wrap: normal; +} + +/* line 345, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +/* line 358, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +button:not(:disabled), +[type="button"]:not(:disabled), +[type="reset"]:not(:disabled), +[type="submit"]:not(:disabled) { + cursor: pointer; +} + +/* line 365, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + padding: 0; + border-style: none; +} + +/* line 373, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +input[type="radio"], +input[type="checkbox"] { + box-sizing: border-box; + padding: 0; +} + +/* line 380, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +input[type="date"], +input[type="time"], +input[type="datetime-local"], +input[type="month"] { + -webkit-appearance: listbox; +} + +/* line 392, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +textarea { + overflow: auto; + resize: vertical; +} + +/* line 398, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} + +/* line 413, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +legend { + display: block; + width: 100%; + max-width: 100%; + padding: 0; + margin-bottom: .5rem; + font-size: 1.5rem; + line-height: inherit; + color: inherit; + white-space: normal; +} + +/* line 425, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +progress { + vertical-align: baseline; +} + +/* line 430, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/* line 435, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +[type="search"] { + outline-offset: -2px; + -webkit-appearance: none; +} + +/* line 448, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/* line 457, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; +} + +/* line 466, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +output { + display: inline-block; +} + +/* line 470, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +summary { + display: list-item; + cursor: pointer; +} + +/* line 475, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +template { + display: none; +} + +/* line 481, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +[hidden] { + display: none !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +h1, h2, h3, h4, h5, h6, +.h1, .h2, .h3, .h4, .h5, .h6 { + margin-bottom: 0.5rem; + font-weight: 500; + line-height: 1.2; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +h1, .h1 { + font-size: 2.5rem; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +h2, .h2 { + font-size: 2rem; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +h3, .h3 { + font-size: 1.75rem; +} + +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +h4, .h4 { + font-size: 1.5rem; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +h5, .h5 { + font-size: 1.25rem; +} + +/* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +h6, .h6 { + font-size: 1rem; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.lead { + font-size: 1.25rem; + font-weight: 300; +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.display-1 { + font-size: 6rem; + font-weight: 300; + line-height: 1.2; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.display-2 { + font-size: 5.5rem; + font-weight: 300; + line-height: 1.2; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.display-3 { + font-size: 4.5rem; + font-weight: 300; + line-height: 1.2; +} + +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.display-4 { + font-size: 3.5rem; + font-weight: 300; + line-height: 1.2; +} + +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +hr { + margin-top: 1rem; + margin-bottom: 1rem; + border: 0; + border-top: 1px solid rgba(0, 0, 0, 0.1); +} + +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +small, +.small { + font-size: 80%; + font-weight: 400; +} + +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +mark, +.mark { + padding: 0.2em; + background-color: #fcf8e3; +} + +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.list-unstyled { + padding-left: 0; + list-style: none; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.list-inline { + padding-left: 0; + list-style: none; +} + +/* line 92, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.list-inline-item { + display: inline-block; +} + +/* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.list-inline-item:not(:last-child) { + margin-right: 0.5rem; +} + +/* line 106, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.initialism { + font-size: 90%; + text-transform: uppercase; +} + +/* line 112, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.blockquote { + margin-bottom: 1rem; + font-size: 1.25rem; +} + +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.blockquote-footer { + display: block; + font-size: 80%; + color: #6c757d; +} + +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.blockquote-footer::before { + content: "\2014\00A0"; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ +.img-fluid { + max-width: 100%; + height: auto; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ +.img-thumbnail { + padding: 0.25rem; + background-color: #fff; + border: 1px solid #dee2e6; + border-radius: 0.25rem; + max-width: 100%; + height: auto; +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ +.figure { + display: inline-block; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ +.figure-caption { + font-size: 90%; + color: #6c757d; +} + +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +code { + font-size: 87.5%; + color: #e83e8c; + word-break: break-word; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +a > code { + color: inherit; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +kbd { + padding: 0.2rem 0.4rem; + font-size: 87.5%; + color: #fff; + background-color: #212529; + border-radius: 0.2rem; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700; +} + +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +pre { + display: block; + font-size: 87.5%; + color: #212529; +} + +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +pre code { + font-size: inherit; + color: inherit; + word-break: normal; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +.container { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} + +@media (min-width: 576px) { + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ + .container { + max-width: 540px; + } +} + +@media (min-width: 768px) { + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ + .container { + max-width: 720px; + } +} + +@media (min-width: 992px) { + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ + .container { + max-width: 960px; + } +} + +@media (min-width: 1200px) { + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ + .container { + max-width: 1140px; + } +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +.container-fluid { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} + +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +.row { + display: -webkit-box; + display: flex; + flex-wrap: wrap; + margin-right: -15px; + margin-left: -15px; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +.no-gutters { + margin-right: 0; + margin-left: 0; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +.no-gutters > .col, +.no-gutters > [class*="col-"] { + padding-right: 0; + padding-left: 0; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, +.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, +.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, +.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, +.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, +.col-xl-auto { + position: relative; + width: 100%; + padding-right: 15px; + padding-left: 15px; +} + +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col { + flex-basis: 0; + -webkit-box-flex: 1; + flex-grow: 1; + max-width: 100%; +} + +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-auto { + -webkit-box-flex: 0; + flex: 0 0 auto; + width: auto; + max-width: 100%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-1 { + -webkit-box-flex: 0; + flex: 0 0 8.33333%; + max-width: 8.33333%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-2 { + -webkit-box-flex: 0; + flex: 0 0 16.66667%; + max-width: 16.66667%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-3 { + -webkit-box-flex: 0; + flex: 0 0 25%; + max-width: 25%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-4 { + -webkit-box-flex: 0; + flex: 0 0 33.33333%; + max-width: 33.33333%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-5 { + -webkit-box-flex: 0; + flex: 0 0 41.66667%; + max-width: 41.66667%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-6 { + -webkit-box-flex: 0; + flex: 0 0 50%; + max-width: 50%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-7 { + -webkit-box-flex: 0; + flex: 0 0 58.33333%; + max-width: 58.33333%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-8 { + -webkit-box-flex: 0; + flex: 0 0 66.66667%; + max-width: 66.66667%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-9 { + -webkit-box-flex: 0; + flex: 0 0 75%; + max-width: 75%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-10 { + -webkit-box-flex: 0; + flex: 0 0 83.33333%; + max-width: 83.33333%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-11 { + -webkit-box-flex: 0; + flex: 0 0 91.66667%; + max-width: 91.66667%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-12 { + -webkit-box-flex: 0; + flex: 0 0 100%; + max-width: 100%; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-first { + -webkit-box-ordinal-group: 0; + order: -1; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-last { + -webkit-box-ordinal-group: 14; + order: 13; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-0 { + -webkit-box-ordinal-group: 1; + order: 0; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-1 { + -webkit-box-ordinal-group: 2; + order: 1; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-2 { + -webkit-box-ordinal-group: 3; + order: 2; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-3 { + -webkit-box-ordinal-group: 4; + order: 3; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-4 { + -webkit-box-ordinal-group: 5; + order: 4; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-5 { + -webkit-box-ordinal-group: 6; + order: 5; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-6 { + -webkit-box-ordinal-group: 7; + order: 6; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-7 { + -webkit-box-ordinal-group: 8; + order: 7; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-8 { + -webkit-box-ordinal-group: 9; + order: 8; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-9 { + -webkit-box-ordinal-group: 10; + order: 9; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-10 { + -webkit-box-ordinal-group: 11; + order: 10; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-11 { + -webkit-box-ordinal-group: 12; + order: 11; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-12 { + -webkit-box-ordinal-group: 13; + order: 12; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-1 { + margin-left: 8.33333%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-2 { + margin-left: 16.66667%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-3 { + margin-left: 25%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-4 { + margin-left: 33.33333%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-5 { + margin-left: 41.66667%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-6 { + margin-left: 50%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-7 { + margin-left: 58.33333%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-8 { + margin-left: 66.66667%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-9 { + margin-left: 75%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-10 { + margin-left: 83.33333%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-11 { + margin-left: 91.66667%; +} + +@media (min-width: 576px) { + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm { + flex-basis: 0; + -webkit-box-flex: 1; + flex-grow: 1; + max-width: 100%; + } + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-auto { + -webkit-box-flex: 0; + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-1 { + -webkit-box-flex: 0; + flex: 0 0 8.33333%; + max-width: 8.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-2 { + -webkit-box-flex: 0; + flex: 0 0 16.66667%; + max-width: 16.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-3 { + -webkit-box-flex: 0; + flex: 0 0 25%; + max-width: 25%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-4 { + -webkit-box-flex: 0; + flex: 0 0 33.33333%; + max-width: 33.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-5 { + -webkit-box-flex: 0; + flex: 0 0 41.66667%; + max-width: 41.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-6 { + -webkit-box-flex: 0; + flex: 0 0 50%; + max-width: 50%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-7 { + -webkit-box-flex: 0; + flex: 0 0 58.33333%; + max-width: 58.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-8 { + -webkit-box-flex: 0; + flex: 0 0 66.66667%; + max-width: 66.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-9 { + -webkit-box-flex: 0; + flex: 0 0 75%; + max-width: 75%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-10 { + -webkit-box-flex: 0; + flex: 0 0 83.33333%; + max-width: 83.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-11 { + -webkit-box-flex: 0; + flex: 0 0 91.66667%; + max-width: 91.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-12 { + -webkit-box-flex: 0; + flex: 0 0 100%; + max-width: 100%; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-first { + -webkit-box-ordinal-group: 0; + order: -1; + } + /* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-last { + -webkit-box-ordinal-group: 14; + order: 13; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-0 { + -webkit-box-ordinal-group: 1; + order: 0; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-1 { + -webkit-box-ordinal-group: 2; + order: 1; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-2 { + -webkit-box-ordinal-group: 3; + order: 2; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-3 { + -webkit-box-ordinal-group: 4; + order: 3; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-4 { + -webkit-box-ordinal-group: 5; + order: 4; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-5 { + -webkit-box-ordinal-group: 6; + order: 5; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-6 { + -webkit-box-ordinal-group: 7; + order: 6; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-7 { + -webkit-box-ordinal-group: 8; + order: 7; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-8 { + -webkit-box-ordinal-group: 9; + order: 8; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-9 { + -webkit-box-ordinal-group: 10; + order: 9; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-10 { + -webkit-box-ordinal-group: 11; + order: 10; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-11 { + -webkit-box-ordinal-group: 12; + order: 11; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-12 { + -webkit-box-ordinal-group: 13; + order: 12; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-0 { + margin-left: 0; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-1 { + margin-left: 8.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-2 { + margin-left: 16.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-3 { + margin-left: 25%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-4 { + margin-left: 33.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-5 { + margin-left: 41.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-6 { + margin-left: 50%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-7 { + margin-left: 58.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-8 { + margin-left: 66.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-9 { + margin-left: 75%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-10 { + margin-left: 83.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-11 { + margin-left: 91.66667%; + } +} + +@media (min-width: 768px) { + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md { + flex-basis: 0; + -webkit-box-flex: 1; + flex-grow: 1; + max-width: 100%; + } + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-auto { + -webkit-box-flex: 0; + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-1 { + -webkit-box-flex: 0; + flex: 0 0 8.33333%; + max-width: 8.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-2 { + -webkit-box-flex: 0; + flex: 0 0 16.66667%; + max-width: 16.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-3 { + -webkit-box-flex: 0; + flex: 0 0 25%; + max-width: 25%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-4 { + -webkit-box-flex: 0; + flex: 0 0 33.33333%; + max-width: 33.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-5 { + -webkit-box-flex: 0; + flex: 0 0 41.66667%; + max-width: 41.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-6 { + -webkit-box-flex: 0; + flex: 0 0 50%; + max-width: 50%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-7 { + -webkit-box-flex: 0; + flex: 0 0 58.33333%; + max-width: 58.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-8 { + -webkit-box-flex: 0; + flex: 0 0 66.66667%; + max-width: 66.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-9 { + -webkit-box-flex: 0; + flex: 0 0 75%; + max-width: 75%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-10 { + -webkit-box-flex: 0; + flex: 0 0 83.33333%; + max-width: 83.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-11 { + -webkit-box-flex: 0; + flex: 0 0 91.66667%; + max-width: 91.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-12 { + -webkit-box-flex: 0; + flex: 0 0 100%; + max-width: 100%; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-first { + -webkit-box-ordinal-group: 0; + order: -1; + } + /* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-last { + -webkit-box-ordinal-group: 14; + order: 13; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-0 { + -webkit-box-ordinal-group: 1; + order: 0; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-1 { + -webkit-box-ordinal-group: 2; + order: 1; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-2 { + -webkit-box-ordinal-group: 3; + order: 2; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-3 { + -webkit-box-ordinal-group: 4; + order: 3; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-4 { + -webkit-box-ordinal-group: 5; + order: 4; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-5 { + -webkit-box-ordinal-group: 6; + order: 5; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-6 { + -webkit-box-ordinal-group: 7; + order: 6; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-7 { + -webkit-box-ordinal-group: 8; + order: 7; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-8 { + -webkit-box-ordinal-group: 9; + order: 8; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-9 { + -webkit-box-ordinal-group: 10; + order: 9; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-10 { + -webkit-box-ordinal-group: 11; + order: 10; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-11 { + -webkit-box-ordinal-group: 12; + order: 11; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-12 { + -webkit-box-ordinal-group: 13; + order: 12; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-0 { + margin-left: 0; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-1 { + margin-left: 8.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-2 { + margin-left: 16.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-3 { + margin-left: 25%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-4 { + margin-left: 33.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-5 { + margin-left: 41.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-6 { + margin-left: 50%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-7 { + margin-left: 58.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-8 { + margin-left: 66.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-9 { + margin-left: 75%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-10 { + margin-left: 83.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-11 { + margin-left: 91.66667%; + } +} + +@media (min-width: 992px) { + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg { + flex-basis: 0; + -webkit-box-flex: 1; + flex-grow: 1; + max-width: 100%; + } + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-auto { + -webkit-box-flex: 0; + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-1 { + -webkit-box-flex: 0; + flex: 0 0 8.33333%; + max-width: 8.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-2 { + -webkit-box-flex: 0; + flex: 0 0 16.66667%; + max-width: 16.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-3 { + -webkit-box-flex: 0; + flex: 0 0 25%; + max-width: 25%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-4 { + -webkit-box-flex: 0; + flex: 0 0 33.33333%; + max-width: 33.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-5 { + -webkit-box-flex: 0; + flex: 0 0 41.66667%; + max-width: 41.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-6 { + -webkit-box-flex: 0; + flex: 0 0 50%; + max-width: 50%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-7 { + -webkit-box-flex: 0; + flex: 0 0 58.33333%; + max-width: 58.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-8 { + -webkit-box-flex: 0; + flex: 0 0 66.66667%; + max-width: 66.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-9 { + -webkit-box-flex: 0; + flex: 0 0 75%; + max-width: 75%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-10 { + -webkit-box-flex: 0; + flex: 0 0 83.33333%; + max-width: 83.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-11 { + -webkit-box-flex: 0; + flex: 0 0 91.66667%; + max-width: 91.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-12 { + -webkit-box-flex: 0; + flex: 0 0 100%; + max-width: 100%; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-first { + -webkit-box-ordinal-group: 0; + order: -1; + } + /* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-last { + -webkit-box-ordinal-group: 14; + order: 13; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-0 { + -webkit-box-ordinal-group: 1; + order: 0; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-1 { + -webkit-box-ordinal-group: 2; + order: 1; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-2 { + -webkit-box-ordinal-group: 3; + order: 2; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-3 { + -webkit-box-ordinal-group: 4; + order: 3; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-4 { + -webkit-box-ordinal-group: 5; + order: 4; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-5 { + -webkit-box-ordinal-group: 6; + order: 5; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-6 { + -webkit-box-ordinal-group: 7; + order: 6; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-7 { + -webkit-box-ordinal-group: 8; + order: 7; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-8 { + -webkit-box-ordinal-group: 9; + order: 8; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-9 { + -webkit-box-ordinal-group: 10; + order: 9; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-10 { + -webkit-box-ordinal-group: 11; + order: 10; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-11 { + -webkit-box-ordinal-group: 12; + order: 11; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-12 { + -webkit-box-ordinal-group: 13; + order: 12; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-0 { + margin-left: 0; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-1 { + margin-left: 8.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-2 { + margin-left: 16.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-3 { + margin-left: 25%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-4 { + margin-left: 33.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-5 { + margin-left: 41.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-6 { + margin-left: 50%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-7 { + margin-left: 58.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-8 { + margin-left: 66.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-9 { + margin-left: 75%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-10 { + margin-left: 83.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-11 { + margin-left: 91.66667%; + } +} + +@media (min-width: 1200px) { + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl { + flex-basis: 0; + -webkit-box-flex: 1; + flex-grow: 1; + max-width: 100%; + } + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-auto { + -webkit-box-flex: 0; + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-1 { + -webkit-box-flex: 0; + flex: 0 0 8.33333%; + max-width: 8.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-2 { + -webkit-box-flex: 0; + flex: 0 0 16.66667%; + max-width: 16.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-3 { + -webkit-box-flex: 0; + flex: 0 0 25%; + max-width: 25%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-4 { + -webkit-box-flex: 0; + flex: 0 0 33.33333%; + max-width: 33.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-5 { + -webkit-box-flex: 0; + flex: 0 0 41.66667%; + max-width: 41.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-6 { + -webkit-box-flex: 0; + flex: 0 0 50%; + max-width: 50%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-7 { + -webkit-box-flex: 0; + flex: 0 0 58.33333%; + max-width: 58.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-8 { + -webkit-box-flex: 0; + flex: 0 0 66.66667%; + max-width: 66.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-9 { + -webkit-box-flex: 0; + flex: 0 0 75%; + max-width: 75%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-10 { + -webkit-box-flex: 0; + flex: 0 0 83.33333%; + max-width: 83.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-11 { + -webkit-box-flex: 0; + flex: 0 0 91.66667%; + max-width: 91.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-12 { + -webkit-box-flex: 0; + flex: 0 0 100%; + max-width: 100%; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-first { + -webkit-box-ordinal-group: 0; + order: -1; + } + /* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-last { + -webkit-box-ordinal-group: 14; + order: 13; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-0 { + -webkit-box-ordinal-group: 1; + order: 0; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-1 { + -webkit-box-ordinal-group: 2; + order: 1; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-2 { + -webkit-box-ordinal-group: 3; + order: 2; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-3 { + -webkit-box-ordinal-group: 4; + order: 3; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-4 { + -webkit-box-ordinal-group: 5; + order: 4; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-5 { + -webkit-box-ordinal-group: 6; + order: 5; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-6 { + -webkit-box-ordinal-group: 7; + order: 6; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-7 { + -webkit-box-ordinal-group: 8; + order: 7; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-8 { + -webkit-box-ordinal-group: 9; + order: 8; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-9 { + -webkit-box-ordinal-group: 10; + order: 9; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-10 { + -webkit-box-ordinal-group: 11; + order: 10; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-11 { + -webkit-box-ordinal-group: 12; + order: 11; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-12 { + -webkit-box-ordinal-group: 13; + order: 12; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-0 { + margin-left: 0; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-1 { + margin-left: 8.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-2 { + margin-left: 16.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-3 { + margin-left: 25%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-4 { + margin-left: 33.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-5 { + margin-left: 41.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-6 { + margin-left: 50%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-7 { + margin-left: 58.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-8 { + margin-left: 66.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-9 { + margin-left: 75%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-10 { + margin-left: 83.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-11 { + margin-left: 91.66667%; + } +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table { + width: 100%; + margin-bottom: 1rem; + color: #212529; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table th, +.table td { + padding: 0.75rem; + vertical-align: top; + border-top: 1px solid #dee2e6; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table thead th { + vertical-align: bottom; + border-bottom: 2px solid #dee2e6; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table tbody + tbody { + border-top: 2px solid #dee2e6; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-sm th, +.table-sm td { + padding: 0.3rem; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-bordered { + border: 1px solid #dee2e6; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-bordered th, +.table-bordered td { + border: 1px solid #dee2e6; +} + +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-bordered thead th, +.table-bordered thead td { + border-bottom-width: 2px; +} + +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-borderless th, +.table-borderless td, +.table-borderless thead th, +.table-borderless tbody + tbody { + border: 0; +} + +/* line 75, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(0, 0, 0, 0.05); +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover tbody tr:hover { + color: #212529; + background-color: rgba(0, 0, 0, 0.075); +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-primary, +.table-primary > th, +.table-primary > td { + background-color: #b8daff; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-primary th, +.table-primary td, +.table-primary thead th, +.table-primary tbody + tbody { + border-color: #7abaff; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-primary:hover { + background-color: #9fcdff; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-primary:hover > td, +.table-hover .table-primary:hover > th { + background-color: #9fcdff; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-secondary, +.table-secondary > th, +.table-secondary > td { + background-color: #d6d8db; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-secondary th, +.table-secondary td, +.table-secondary thead th, +.table-secondary tbody + tbody { + border-color: #b3b7bb; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-secondary:hover { + background-color: #c8cbcf; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-secondary:hover > td, +.table-hover .table-secondary:hover > th { + background-color: #c8cbcf; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-success, +.table-success > th, +.table-success > td { + background-color: #c3e6cb; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-success th, +.table-success td, +.table-success thead th, +.table-success tbody + tbody { + border-color: #8fd19e; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-success:hover { + background-color: #b1dfbb; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-success:hover > td, +.table-hover .table-success:hover > th { + background-color: #b1dfbb; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-info, +.table-info > th, +.table-info > td { + background-color: #bee5eb; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-info th, +.table-info td, +.table-info thead th, +.table-info tbody + tbody { + border-color: #86cfda; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-info:hover { + background-color: #abdde5; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-info:hover > td, +.table-hover .table-info:hover > th { + background-color: #abdde5; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-warning, +.table-warning > th, +.table-warning > td { + background-color: #ffeeba; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-warning th, +.table-warning td, +.table-warning thead th, +.table-warning tbody + tbody { + border-color: #ffdf7e; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-warning:hover { + background-color: #ffe8a1; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-warning:hover > td, +.table-hover .table-warning:hover > th { + background-color: #ffe8a1; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-danger, +.table-danger > th, +.table-danger > td { + background-color: #f5c6cb; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-danger th, +.table-danger td, +.table-danger thead th, +.table-danger tbody + tbody { + border-color: #ed969e; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-danger:hover { + background-color: #f1b0b7; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-danger:hover > td, +.table-hover .table-danger:hover > th { + background-color: #f1b0b7; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-light, +.table-light > th, +.table-light > td { + background-color: #fdfdfe; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-light th, +.table-light td, +.table-light thead th, +.table-light tbody + tbody { + border-color: #fbfcfc; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-light:hover { + background-color: #ececf6; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-light:hover > td, +.table-hover .table-light:hover > th { + background-color: #ececf6; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-dark, +.table-dark > th, +.table-dark > td { + background-color: #c6c8ca; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-dark th, +.table-dark td, +.table-dark thead th, +.table-dark tbody + tbody { + border-color: #95999c; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-dark:hover { + background-color: #b9bbbe; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-dark:hover > td, +.table-hover .table-dark:hover > th { + background-color: #b9bbbe; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-active, +.table-active > th, +.table-active > td { + background-color: rgba(0, 0, 0, 0.075); +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-active:hover { + background-color: rgba(0, 0, 0, 0.075); +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-active:hover > td, +.table-hover .table-active:hover > th { + background-color: rgba(0, 0, 0, 0.075); +} + +/* line 114, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table .thead-dark th { + color: #fff; + background-color: #343a40; + border-color: #454d55; +} + +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table .thead-light th { + color: #495057; + background-color: #e9ecef; + border-color: #dee2e6; +} + +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-dark { + color: #fff; + background-color: #343a40; +} + +/* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-dark th, +.table-dark td, +.table-dark thead th { + border-color: #454d55; +} + +/* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-dark.table-bordered { + border: 0; +} + +/* line 145, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-dark.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(255, 255, 255, 0.05); +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-dark.table-hover tbody tr:hover { + color: #fff; + background-color: rgba(255, 255, 255, 0.075); +} + +@media (max-width: 575.98px) { + /* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-sm { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-sm > .table-bordered { + border: 0; + } +} + +@media (max-width: 767.98px) { + /* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-md { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-md > .table-bordered { + border: 0; + } +} + +@media (max-width: 991.98px) { + /* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-lg { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-lg > .table-bordered { + border: 0; + } +} + +@media (max-width: 1199.98px) { + /* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-xl { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-xl > .table-bordered { + border: 0; + } +} + +/* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-responsive { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; +} + +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-responsive > .table-bordered { + border: 0; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control { + display: block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-radius: 0.25rem; + -webkit-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-control { + -webkit-transition: none; + transition: none; + } +} + +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control::-ms-expand { + background-color: transparent; + border: 0; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.form-control:focus { + color: #495057; + background-color: #fff; + border-color: #80bdff; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control::-webkit-input-placeholder { + color: #6c757d; + opacity: 1; +} +.form-control::-moz-placeholder { + color: #6c757d; + opacity: 1; +} +.form-control:-ms-input-placeholder { + color: #6c757d; + opacity: 1; +} +.form-control::-ms-input-placeholder { + color: #6c757d; + opacity: 1; +} +.form-control::placeholder { + color: #6c757d; + opacity: 1; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control:disabled, .form-control[readonly] { + background-color: #e9ecef; + opacity: 1; +} + +/* line 57, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +select.form-control:focus::-ms-value { + color: #495057; + background-color: #fff; +} + +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control-file, +.form-control-range { + display: block; + width: 100%; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.col-form-label { + padding-top: calc(0.375rem + 1px); + padding-bottom: calc(0.375rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1.5; +} + +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.col-form-label-lg { + padding-top: calc(0.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); + font-size: 1.25rem; + line-height: 1.5; +} + +/* line 97, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.col-form-label-sm { + padding-top: calc(0.25rem + 1px); + padding-bottom: calc(0.25rem + 1px); + font-size: 0.875rem; + line-height: 1.5; +} + +/* line 110, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control-plaintext { + display: block; + width: 100%; + padding-top: 0.375rem; + padding-bottom: 0.375rem; + margin-bottom: 0; + line-height: 1.5; + color: #212529; + background-color: transparent; + border: solid transparent; + border-width: 1px 0; +} + +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { + padding-right: 0; + padding-left: 0; +} + +/* line 137, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control-sm { + height: calc(1.5em + 0.5rem + 2px); + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +/* line 145, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control-lg { + height: calc(1.5em + 1rem + 2px); + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +/* line 155, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +select.form-control[size], select.form-control[multiple] { + height: auto; +} + +/* line 161, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +textarea.form-control { + height: auto; +} + +/* line 170, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-group { + margin-bottom: 1rem; +} + +/* line 174, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-text { + display: block; + margin-top: 0.25rem; +} + +/* line 184, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-row { + display: -webkit-box; + display: flex; + flex-wrap: wrap; + margin-right: -5px; + margin-left: -5px; +} + +/* line 190, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-row > .col, +.form-row > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; +} + +/* line 202, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-check { + position: relative; + display: block; + padding-left: 1.25rem; +} + +/* line 208, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-check-input { + position: absolute; + margin-top: 0.3rem; + margin-left: -1.25rem; +} + +/* line 213, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-check-input:disabled ~ .form-check-label { + color: #6c757d; +} + +/* line 218, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-check-label { + margin-bottom: 0; +} + +/* line 222, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-check-inline { + display: -webkit-inline-box; + display: inline-flex; + -webkit-box-align: center; + align-items: center; + padding-left: 0; + margin-right: 0.75rem; +} + +/* line 229, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-check-inline .form-check-input { + position: static; + margin-top: 0; + margin-right: 0.3125rem; + margin-left: 0; +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #28a745; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(40, 167, 69, 0.9); + border-radius: 0.25rem; +} + +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control:valid, .form-control.is-valid { + border-color: #28a745; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center right calc(0.375em + 0.1875rem); + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control:valid:focus, .form-control.is-valid:focus { + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control:valid ~ .valid-feedback, +.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, +.form-control.is-valid ~ .valid-tooltip { + display: block; +} + +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated textarea.form-control:valid, textarea.form-control.is-valid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); +} + +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-select:valid, .custom-select.is-valid { + border-color: #28a745; + padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +/* line 99, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +/* line 104, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-select:valid ~ .valid-feedback, +.was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback, +.custom-select.is-valid ~ .valid-tooltip { + display: block; +} + +/* line 115, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control-file:valid ~ .valid-feedback, +.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback, +.form-control-file.is-valid ~ .valid-tooltip { + display: block; +} + +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { + color: #28a745; +} + +/* line 129, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-check-input:valid ~ .valid-feedback, +.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, +.form-check-input.is-valid ~ .valid-tooltip { + display: block; +} + +/* line 139, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { + color: #28a745; +} + +/* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { + border-color: #28a745; +} + +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:valid ~ .valid-feedback, +.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, +.custom-control-input.is-valid ~ .valid-tooltip { + display: block; +} + +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { + border-color: #34ce57; + background-color: #34ce57; +} + +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +/* line 164, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before { + border-color: #28a745; +} + +/* line 175, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { + border-color: #28a745; +} + +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-file-input:valid ~ .valid-feedback, +.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, +.custom-file-input.is-valid ~ .valid-tooltip { + display: block; +} + +/* line 185, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #dc3545; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(220, 53, 69, 0.9); + border-radius: 0.25rem; +} + +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control:invalid, .form-control.is-invalid { + border-color: #dc3545; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E"); + background-repeat: no-repeat; + background-position: center right calc(0.375em + 0.1875rem); + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control:invalid ~ .invalid-feedback, +.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, +.form-control.is-invalid ~ .invalid-tooltip { + display: block; +} + +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); +} + +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-select:invalid, .custom-select.is-invalid { + border-color: #dc3545; + padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +/* line 99, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +/* line 104, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-select:invalid ~ .invalid-feedback, +.was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback, +.custom-select.is-invalid ~ .invalid-tooltip { + display: block; +} + +/* line 115, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control-file:invalid ~ .invalid-feedback, +.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback, +.form-control-file.is-invalid ~ .invalid-tooltip { + display: block; +} + +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { + color: #dc3545; +} + +/* line 129, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-check-input:invalid ~ .invalid-feedback, +.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, +.form-check-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +/* line 139, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { + color: #dc3545; +} + +/* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { + border-color: #dc3545; +} + +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:invalid ~ .invalid-feedback, +.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, +.custom-control-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { + border-color: #e4606d; + background-color: #e4606d; +} + +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +/* line 164, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before { + border-color: #dc3545; +} + +/* line 175, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { + border-color: #dc3545; +} + +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-file-input:invalid ~ .invalid-feedback, +.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, +.custom-file-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +/* line 185, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +/* line 258, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-inline { + display: -webkit-box; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row wrap; + -webkit-box-align: center; + align-items: center; +} + +/* line 266, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-inline .form-check { + width: 100%; +} + +@media (min-width: 576px) { + /* line 272, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline label { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: center; + justify-content: center; + margin-bottom: 0; + } + /* line 280, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .form-group { + display: -webkit-box; + display: flex; + -webkit-box-flex: 0; + flex: 0 0 auto; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row wrap; + -webkit-box-align: center; + align-items: center; + margin-bottom: 0; + } + /* line 289, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + /* line 296, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .form-control-plaintext { + display: inline-block; + } + /* line 300, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .input-group, + .form-inline .custom-select { + width: auto; + } + /* line 307, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .form-check { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: center; + justify-content: center; + width: auto; + padding-left: 0; + } + /* line 314, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .form-check-input { + position: relative; + flex-shrink: 0; + margin-top: 0; + margin-right: 0.25rem; + margin-left: 0; + } + /* line 322, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .custom-control { + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: center; + justify-content: center; + } + /* line 326, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .custom-control-label { + margin-bottom: 0; + } +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn { + display: inline-block; + font-weight: 400; + color: #212529; + text-align: center; + vertical-align: middle; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-color: transparent; + border: 1px solid transparent; + padding: 0.375rem 0.75rem; + font-size: 1rem; + line-height: 1.5; + border-radius: 0.25rem; + -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ + .btn { + -webkit-transition: none; + transition: none; + } +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn:hover { + color: #212529; + text-decoration: none; +} + +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn:focus, .btn.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn.disabled, .btn:disabled { + opacity: 0.65; +} + +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +a.btn.disabled, +fieldset:disabled a.btn { + pointer-events: none; +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-primary { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-primary:hover { + color: #fff; + background-color: #0069d9; + border-color: #0062cc; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-primary:focus, .btn-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-primary.disabled, .btn-primary:disabled { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, +.show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #0062cc; + border-color: #005cbf; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, +.show > .btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-secondary { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-secondary:hover { + color: #fff; + background-color: #5a6268; + border-color: #545b62; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-secondary:focus, .btn-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-secondary.disabled, .btn-secondary:disabled { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, +.show > .btn-secondary.dropdown-toggle { + color: #fff; + background-color: #545b62; + border-color: #4e555b; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, +.show > .btn-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-success { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-success:hover { + color: #fff; + background-color: #218838; + border-color: #1e7e34; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-success:focus, .btn-success.focus { + box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-success.disabled, .btn-success:disabled { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, +.show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #1e7e34; + border-color: #1c7430; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, +.show > .btn-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-info { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-info:hover { + color: #fff; + background-color: #138496; + border-color: #117a8b; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-info:focus, .btn-info.focus { + box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-info.disabled, .btn-info:disabled { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, +.show > .btn-info.dropdown-toggle { + color: #fff; + background-color: #117a8b; + border-color: #10707f; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, +.show > .btn-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-warning { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-warning:hover { + color: #212529; + background-color: #e0a800; + border-color: #d39e00; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-warning:focus, .btn-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-warning.disabled, .btn-warning:disabled { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, +.show > .btn-warning.dropdown-toggle { + color: #212529; + background-color: #d39e00; + border-color: #c69500; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, +.show > .btn-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-danger { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-danger:hover { + color: #fff; + background-color: #c82333; + border-color: #bd2130; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-danger:focus, .btn-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-danger.disabled, .btn-danger:disabled { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, +.show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #bd2130; + border-color: #b21f2d; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, +.show > .btn-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-light { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-light:hover { + color: #212529; + background-color: #e2e6ea; + border-color: #dae0e5; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-light:focus, .btn-light.focus { + box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-light.disabled, .btn-light:disabled { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, +.show > .btn-light.dropdown-toggle { + color: #212529; + background-color: #dae0e5; + border-color: #d3d9df; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, +.show > .btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-dark { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-dark:hover { + color: #fff; + background-color: #23272b; + border-color: #1d2124; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-dark:focus, .btn-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-dark.disabled, .btn-dark:disabled { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, +.show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #1d2124; + border-color: #171a1d; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, +.show > .btn-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-primary { + color: #007bff; + border-color: #007bff; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-primary:hover { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-primary:focus, .btn-outline-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-primary.disabled, .btn-outline-primary:disabled { + color: #007bff; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, +.show > .btn-outline-primary.dropdown-toggle { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-secondary { + color: #6c757d; + border-color: #6c757d; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-secondary:hover { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-secondary:focus, .btn-outline-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-secondary.disabled, .btn-outline-secondary:disabled { + color: #6c757d; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, +.show > .btn-outline-secondary.dropdown-toggle { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-success { + color: #28a745; + border-color: #28a745; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-success:hover { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-success:focus, .btn-outline-success.focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-success.disabled, .btn-outline-success:disabled { + color: #28a745; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, +.show > .btn-outline-success.dropdown-toggle { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-info { + color: #17a2b8; + border-color: #17a2b8; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-info:hover { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-info:focus, .btn-outline-info.focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-info.disabled, .btn-outline-info:disabled { + color: #17a2b8; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, +.show > .btn-outline-info.dropdown-toggle { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-warning { + color: #ffc107; + border-color: #ffc107; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-warning:hover { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-warning:focus, .btn-outline-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-warning.disabled, .btn-outline-warning:disabled { + color: #ffc107; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, +.show > .btn-outline-warning.dropdown-toggle { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-danger { + color: #dc3545; + border-color: #dc3545; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-danger:hover { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-danger:focus, .btn-outline-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-danger.disabled, .btn-outline-danger:disabled { + color: #dc3545; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, +.show > .btn-outline-danger.dropdown-toggle { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-light { + color: #f8f9fa; + border-color: #f8f9fa; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-light:hover { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-light:focus, .btn-outline-light.focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-light.disabled, .btn-outline-light:disabled { + color: #f8f9fa; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, +.show > .btn-outline-light.dropdown-toggle { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-dark { + color: #343a40; + border-color: #343a40; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-dark:hover { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-dark:focus, .btn-outline-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-dark.disabled, .btn-outline-dark:disabled { + color: #343a40; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, +.show > .btn-outline-dark.dropdown-toggle { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +/* line 77, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-link { + font-weight: 400; + color: #007bff; + text-decoration: none; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-link:hover { + color: #0056b3; + text-decoration: underline; +} + +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-link:focus, .btn-link.focus { + text-decoration: underline; + box-shadow: none; +} + +/* line 93, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-link:disabled, .btn-link.disabled { + color: #6c757d; + pointer-events: none; +} + +/* line 107, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-lg, .btn-group-lg > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +/* line 111, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-sm, .btn-group-sm > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +/* line 120, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-block { + display: block; + width: 100%; +} + +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-block + .btn-block { + margin-top: 0.5rem; +} + +/* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ +.fade { + -webkit-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; +} + +@media (prefers-reduced-motion: reduce) { + /* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ + .fade { + -webkit-transition: none; + transition: none; + } +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ +.fade:not(.show) { + opacity: 0; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ +.collapse:not(.show) { + display: none; +} + +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ +.collapsing { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition: height 0.35s ease; + transition: height 0.35s ease; +} + +@media (prefers-reduced-motion: reduce) { + /* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ + .collapsing { + -webkit-transition: none; + transition: none; + } +} + +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropup, +.dropright, +.dropdown, +.dropleft { + position: relative; +} + +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-toggle { + white-space: nowrap; +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropdown-toggle:empty::after { + margin-left: 0; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0.125rem 0 0; + font-size: 1rem; + color: #212529; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 0.25rem; +} + +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-menu-left { + right: auto; + left: 0; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-menu-right { + right: 0; + left: auto; +} + +@media (min-width: 576px) { + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-sm-left { + right: auto; + left: 0; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-sm-right { + right: 0; + left: auto; + } +} + +@media (min-width: 768px) { + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-md-left { + right: auto; + left: 0; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-md-right { + right: 0; + left: auto; + } +} + +@media (min-width: 992px) { + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-lg-left { + right: auto; + left: 0; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-lg-right { + right: 0; + left: auto; + } +} + +@media (min-width: 1200px) { + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-xl-left { + right: auto; + left: 0; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-xl-right { + right: 0; + left: auto; + } +} + +/* line 57, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropup .dropdown-menu { + top: auto; + bottom: 100%; + margin-top: 0; + margin-bottom: 0.125rem; +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropup .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropup .dropdown-toggle:empty::after { + margin-left: 0; +} + +/* line 70, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropright .dropdown-menu { + top: 0; + right: auto; + left: 100%; + margin-top: 0; + margin-left: 0.125rem; +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropright .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0; + border-bottom: 0.3em solid transparent; + border-left: 0.3em solid; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropright .dropdown-toggle:empty::after { + margin-left: 0; +} + +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropright .dropdown-toggle::after { + vertical-align: 0; +} + +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropleft .dropdown-menu { + top: 0; + right: 100%; + left: auto; + margin-top: 0; + margin-right: 0.125rem; +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropleft .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropleft .dropdown-toggle::after { + display: none; +} + +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropleft .dropdown-toggle::before { + display: inline-block; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropleft .dropdown-toggle:empty::after { + margin-left: 0; +} + +/* line 97, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropleft .dropdown-toggle::before { + vertical-align: 0; +} + +/* line 106, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] { + right: auto; + bottom: auto; +} + +/* line 116, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-divider { + height: 0; + margin: 0.5rem 0; + overflow: hidden; + border-top: 1px solid #e9ecef; +} + +/* line 123, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-item { + display: block; + width: 100%; + padding: 0.25rem 1.5rem; + clear: both; + font-weight: 400; + color: #212529; + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.dropdown-item:hover, .dropdown-item:focus { + color: #16181b; + text-decoration: none; + background-color: #f8f9fa; +} + +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-item.active, .dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #007bff; +} + +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-item.disabled, .dropdown-item:disabled { + color: #6c757d; + pointer-events: none; + background-color: transparent; +} + +/* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-menu.show { + display: block; +} + +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-header { + display: block; + padding: 0.5rem 1.5rem; + margin-bottom: 0; + font-size: 0.875rem; + color: #6c757d; + white-space: nowrap; +} + +/* line 187, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-item-text { + display: block; + padding: 0.25rem 1.5rem; + color: #212529; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group, +.btn-group-vertical { + position: relative; + display: -webkit-inline-box; + display: inline-flex; + vertical-align: middle; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + -webkit-box-flex: 1; + flex: 1 1 auto; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-group > .btn:hover, +.btn-group-vertical > .btn:hover { + z-index: 1; +} + +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, +.btn-group-vertical > .btn:focus, +.btn-group-vertical > .btn:active, +.btn-group-vertical > .btn.active { + z-index: 1; +} + +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-toolbar { + display: -webkit-box; + display: flex; + flex-wrap: wrap; + -webkit-box-pack: start; + justify-content: flex-start; +} + +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-toolbar .input-group { + width: auto; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) { + margin-left: -1px; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.dropdown-toggle-split { + padding-right: 0.5625rem; + padding-left: 0.5625rem; +} + +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.dropdown-toggle-split::after, +.dropup .dropdown-toggle-split::after, +.dropright .dropdown-toggle-split::after { + margin-left: 0; +} + +/* line 79, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.dropleft .dropdown-toggle-split::before { + margin-right: 0; +} + +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { + padding-right: 0.375rem; + padding-left: 0.375rem; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { + padding-right: 0.75rem; + padding-left: 0.75rem; +} + +/* line 111, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group-vertical { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + -webkit-box-align: start; + align-items: flex-start; + -webkit-box-pack: center; + justify-content: center; +} + +/* line 116, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group-vertical > .btn, +.btn-group-vertical > .btn-group { + width: 100%; +} + +/* line 121, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group-vertical > .btn:not(:first-child), +.btn-group-vertical > .btn-group:not(:first-child) { + margin-top: -1px; +} + +/* line 127, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group-vertical > .btn-group:not(:last-child) > .btn { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +/* line 132, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group-vertical > .btn:not(:first-child), +.btn-group-vertical > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +/* line 152, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group-toggle > .btn, +.btn-group-toggle > .btn-group > .btn { + margin-bottom: 0; +} + +/* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group-toggle > .btn input[type="radio"], +.btn-group-toggle > .btn input[type="checkbox"], +.btn-group-toggle > .btn-group > .btn input[type="radio"], +.btn-group-toggle > .btn-group > .btn input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group { + position: relative; + display: -webkit-box; + display: flex; + flex-wrap: wrap; + -webkit-box-align: stretch; + align-items: stretch; + width: 100%; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .form-control, +.input-group > .form-control-plaintext, +.input-group > .custom-select, +.input-group > .custom-file { + position: relative; + -webkit-box-flex: 1; + flex: 1 1 auto; + width: 1%; + margin-bottom: 0; +} + +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .form-control + .form-control, +.input-group > .form-control + .custom-select, +.input-group > .form-control + .custom-file, +.input-group > .form-control-plaintext + .form-control, +.input-group > .form-control-plaintext + .custom-select, +.input-group > .form-control-plaintext + .custom-file, +.input-group > .custom-select + .form-control, +.input-group > .custom-select + .custom-select, +.input-group > .custom-select + .custom-file, +.input-group > .custom-file + .form-control, +.input-group > .custom-file + .custom-select, +.input-group > .custom-file + .custom-file { + margin-left: -1px; +} + +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .form-control:focus, +.input-group > .custom-select:focus, +.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { + z-index: 3; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .custom-file .custom-file-input:focus { + z-index: 4; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .form-control:not(:last-child), +.input-group > .custom-select:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .form-control:not(:first-child), +.input-group > .custom-select:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .custom-file { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; +} + +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .custom-file:not(:last-child) .custom-file-label, +.input-group > .custom-file:not(:last-child) .custom-file-label::after { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .custom-file:not(:first-child) .custom-file-label { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-prepend, +.input-group-append { + display: -webkit-box; + display: flex; +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-prepend .btn, +.input-group-append .btn { + position: relative; + z-index: 2; +} + +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-prepend .btn:focus, +.input-group-append .btn:focus { + z-index: 3; +} + +/* line 85, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-prepend .btn + .btn, +.input-group-prepend .btn + .input-group-text, +.input-group-prepend .input-group-text + .input-group-text, +.input-group-prepend .input-group-text + .btn, +.input-group-append .btn + .btn, +.input-group-append .btn + .input-group-text, +.input-group-append .input-group-text + .input-group-text, +.input-group-append .input-group-text + .btn { + margin-left: -1px; +} + +/* line 93, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-prepend { + margin-right: -1px; +} + +/* line 94, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-append { + margin-left: -1px; +} + +/* line 102, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-text { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + padding: 0.375rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + text-align: center; + white-space: nowrap; + background-color: #e9ecef; + border: 1px solid #ced4da; + border-radius: 0.25rem; +} + +/* line 118, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-text input[type="radio"], +.input-group-text input[type="checkbox"] { + margin-top: 0; +} + +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-lg > .form-control:not(textarea), +.input-group-lg > .custom-select { + height: calc(1.5em + 1rem + 2px); +} + +/* line 135, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-lg > .form-control, +.input-group-lg > .custom-select, +.input-group-lg > .input-group-prepend > .input-group-text, +.input-group-lg > .input-group-append > .input-group-text, +.input-group-lg > .input-group-prepend > .btn, +.input-group-lg > .input-group-append > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-sm > .form-control:not(textarea), +.input-group-sm > .custom-select { + height: calc(1.5em + 0.5rem + 2px); +} + +/* line 152, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-sm > .form-control, +.input-group-sm > .custom-select, +.input-group-sm > .input-group-prepend > .input-group-text, +.input-group-sm > .input-group-append > .input-group-text, +.input-group-sm > .input-group-prepend > .btn, +.input-group-sm > .input-group-append > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +/* line 164, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-lg > .custom-select, +.input-group-sm > .custom-select { + padding-right: 1.75rem; +} + +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .input-group-prepend > .btn, +.input-group > .input-group-prepend > .input-group-text, +.input-group > .input-group-append:not(:last-child) > .btn, +.input-group > .input-group-append:not(:last-child) > .input-group-text, +.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), +.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +/* line 186, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .input-group-append > .btn, +.input-group > .input-group-append > .input-group-text, +.input-group > .input-group-prepend:not(:first-child) > .btn, +.input-group > .input-group-prepend:not(:first-child) > .input-group-text, +.input-group > .input-group-prepend:first-child > .btn:not(:first-child), +.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control { + position: relative; + display: block; + min-height: 1.5rem; + padding-left: 1.5rem; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-inline { + display: -webkit-inline-box; + display: inline-flex; + margin-right: 1rem; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-input { + position: absolute; + z-index: -1; + opacity: 0; +} + +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-input:checked ~ .custom-control-label::before { + color: #fff; + border-color: #007bff; + background-color: #007bff; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-input:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-input:focus:not(:checked) ~ .custom-control-label::before { + border-color: #80bdff; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-input:not(:disabled):active ~ .custom-control-label::before { + color: #fff; + background-color: #b3d7ff; + border-color: #b3d7ff; +} + +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-input:disabled ~ .custom-control-label { + color: #6c757d; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-input:disabled ~ .custom-control-label::before { + background-color: #e9ecef; +} + +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-label { + position: relative; + margin-bottom: 0; + vertical-align: top; +} + +/* line 75, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-label::before { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + pointer-events: none; + content: ""; + background-color: #fff; + border: #adb5bd solid 1px; +} + +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-label::after { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + content: ""; + background: no-repeat 50% / 50% 50%; +} + +/* line 108, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-checkbox .custom-control-label::before { + border-radius: 0.25rem; +} + +/* line 113, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e"); +} + +/* line 119, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { + border-color: #007bff; + background-color: #007bff; +} + +/* line 124, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); +} + +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +/* line 133, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +/* line 144, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-radio .custom-control-label::before { + border-radius: 50%; +} + +/* line 150, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-radio .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); +} + +/* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +/* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-switch { + padding-left: 2.25rem; +} + +/* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-switch .custom-control-label::before { + left: -2.25rem; + width: 1.75rem; + pointer-events: all; + border-radius: 0.5rem; +} + +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-switch .custom-control-label::after { + top: calc(0.25rem + 2px); + left: calc(-2.25rem + 2px); + width: calc(1rem - 4px); + height: calc(1rem - 4px); + background-color: #adb5bd; + border-radius: 0.5rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; + transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + .custom-switch .custom-control-label::after { + -webkit-transition: none; + transition: none; + } +} + +/* line 192, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-switch .custom-control-input:checked ~ .custom-control-label::after { + background-color: #fff; + -webkit-transform: translateX(0.75rem); + transform: translateX(0.75rem); +} + +/* line 199, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +/* line 212, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select { + display: inline-block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 1.75rem 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + vertical-align: middle; + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: 0.25rem; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +/* line 230, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select:focus { + border-color: #80bdff; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 239, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select:focus::-ms-value { + color: #495057; + background-color: #fff; +} + +/* line 250, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select[multiple], .custom-select[size]:not([size="1"]) { + height: auto; + padding-right: 0.75rem; + background-image: none; +} + +/* line 257, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select:disabled { + color: #6c757d; + background-color: #e9ecef; +} + +/* line 263, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select::-ms-expand { + display: none; +} + +/* line 268, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select-sm { + height: calc(1.5em + 0.5rem + 2px); + padding-top: 0.25rem; + padding-bottom: 0.25rem; + padding-left: 0.5rem; + font-size: 0.875rem; +} + +/* line 276, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select-lg { + height: calc(1.5em + 1rem + 2px); + padding-top: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 1rem; + font-size: 1.25rem; +} + +/* line 289, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file { + position: relative; + display: inline-block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + margin-bottom: 0; +} + +/* line 297, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file-input { + position: relative; + z-index: 2; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + margin: 0; + opacity: 0; +} + +/* line 305, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file-input:focus ~ .custom-file-label { + border-color: #80bdff; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 310, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file-input:disabled ~ .custom-file-label { + background-color: #e9ecef; +} + +/* line 315, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file-input:lang(en) ~ .custom-file-label::after { + content: "Browse"; +} + +/* line 320, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file-input ~ .custom-file-label[data-browse]::after { + content: attr(data-browse); +} + +/* line 325, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file-label { + position: absolute; + top: 0; + right: 0; + left: 0; + z-index: 1; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: 0.25rem; +} + +/* line 342, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file-label::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + z-index: 3; + display: block; + height: calc(1.5em + 0.75rem); + padding: 0.375rem 0.75rem; + line-height: 1.5; + color: #495057; + content: "Browse"; + background-color: #e9ecef; + border-left: inherit; + border-radius: 0 0.25rem 0.25rem 0; +} + +/* line 366, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range { + width: 100%; + height: calc(1rem + 0.4rem); + padding: 0; + background-color: transparent; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +/* line 373, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:focus { + outline: none; +} + +/* line 378, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:focus::-webkit-slider-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 379, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 380, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:focus::-ms-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 383, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-moz-focus-outer { + border: 0; +} + +/* line 387, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -0.25rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + -webkit-appearance: none; + appearance: none; +} + +@media (prefers-reduced-motion: reduce) { + /* line 387, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + .custom-range::-webkit-slider-thumb { + -webkit-transition: none; + transition: none; + } +} + +/* line 398, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-webkit-slider-thumb:active { + background-color: #b3d7ff; +} + +/* line 403, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-webkit-slider-runnable-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; +} + +/* line 414, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + -moz-appearance: none; + appearance: none; +} + +@media (prefers-reduced-motion: reduce) { + /* line 414, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + .custom-range::-moz-range-thumb { + -webkit-transition: none; + transition: none; + } +} + +/* line 424, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-moz-range-thumb:active { + background-color: #b3d7ff; +} + +/* line 429, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-moz-range-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; +} + +/* line 440, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-ms-thumb { + width: 1rem; + height: 1rem; + margin-top: 0; + margin-right: 0.2rem; + margin-left: 0.2rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + appearance: none; +} + +@media (prefers-reduced-motion: reduce) { + /* line 440, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + .custom-range::-ms-thumb { + -webkit-transition: none; + transition: none; + } +} + +/* line 453, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-ms-thumb:active { + background-color: #b3d7ff; +} + +/* line 458, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-ms-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: transparent; + border-color: transparent; + border-width: 0.5rem; +} + +/* line 469, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-ms-fill-lower { + background-color: #dee2e6; + border-radius: 1rem; +} + +/* line 474, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-ms-fill-upper { + margin-right: 15px; + background-color: #dee2e6; + border-radius: 1rem; +} + +/* line 481, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:disabled::-webkit-slider-thumb { + background-color: #adb5bd; +} + +/* line 485, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:disabled::-webkit-slider-runnable-track { + cursor: default; +} + +/* line 489, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:disabled::-moz-range-thumb { + background-color: #adb5bd; +} + +/* line 493, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:disabled::-moz-range-track { + cursor: default; +} + +/* line 497, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:disabled::-ms-thumb { + background-color: #adb5bd; +} + +/* line 503, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-label::before, +.custom-file-label, +.custom-select { + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + /* line 503, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + .custom-control-label::before, + .custom-file-label, + .custom-select { + -webkit-transition: none; + transition: none; + } +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav { + display: -webkit-box; + display: flex; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-link { + display: block; + padding: 0.5rem 1rem; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.nav-link:hover, .nav-link:focus { + text-decoration: none; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-link.disabled { + color: #6c757d; + pointer-events: none; + cursor: default; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-tabs { + border-bottom: 1px solid #dee2e6; +} + +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-tabs .nav-item { + margin-bottom: -1px; +} + +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-tabs .nav-link { + border: 1px solid transparent; + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { + border-color: #e9ecef #e9ecef #dee2e6; +} + +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-tabs .nav-link.disabled { + color: #6c757d; + background-color: transparent; + border-color: transparent; +} + +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-tabs .nav-link.active, +.nav-tabs .nav-item.show .nav-link { + color: #495057; + background-color: #fff; + border-color: #dee2e6 #dee2e6 #fff; +} + +/* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +/* line 77, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-pills .nav-link { + border-radius: 0.25rem; +} + +/* line 81, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #007bff; +} + +/* line 94, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-fill .nav-item { + -webkit-box-flex: 1; + flex: 1 1 auto; + text-align: center; +} + +/* line 101, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-justified .nav-item { + flex-basis: 0; + -webkit-box-flex: 1; + flex-grow: 1; + text-align: center; +} + +/* line 114, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.tab-content > .tab-pane { + display: none; +} + +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.tab-content > .active { + display: block; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar { + position: relative; + display: -webkit-box; + display: flex; + flex-wrap: wrap; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: justify; + justify-content: space-between; + padding: 0.5rem 1rem; +} + +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar > .container, +.navbar > .container-fluid { + display: -webkit-box; + display: flex; + flex-wrap: wrap; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: justify; + justify-content: space-between; +} + +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-brand { + display: inline-block; + padding-top: 0.3125rem; + padding-bottom: 0.3125rem; + margin-right: 1rem; + font-size: 1.25rem; + line-height: inherit; + white-space: nowrap; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-brand:hover, .navbar-brand:focus { + text-decoration: none; +} + +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-nav { + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +/* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-nav .nav-link { + padding-right: 0; + padding-left: 0; +} + +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-nav .dropdown-menu { + position: static; + float: none; +} + +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-text { + display: inline-block; + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} + +/* line 99, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-collapse { + flex-basis: 100%; + -webkit-box-flex: 1; + flex-grow: 1; + -webkit-box-align: center; + align-items: center; +} + +/* line 108, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-toggler { + padding: 0.25rem 0.75rem; + font-size: 1.25rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: 0.25rem; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-toggler:hover, .navbar-toggler:focus { + text-decoration: none; +} + +/* line 123, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + content: ""; + background: no-repeat center center; + background-size: 100% 100%; +} + +@media (max-width: 575.98px) { + /* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 576px) { + /* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row nowrap; + -webkit-box-pack: start; + justify-content: flex-start; + } + /* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute; + } + /* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + /* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + flex-wrap: nowrap; + } + /* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm .navbar-collapse { + display: -webkit-box !important; + display: flex !important; + flex-basis: auto; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm .navbar-toggler { + display: none; + } +} + +@media (max-width: 767.98px) { + /* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 768px) { + /* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row nowrap; + -webkit-box-pack: start; + justify-content: flex-start; + } + /* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute; + } + /* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + /* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + flex-wrap: nowrap; + } + /* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md .navbar-collapse { + display: -webkit-box !important; + display: flex !important; + flex-basis: auto; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md .navbar-toggler { + display: none; + } +} + +@media (max-width: 991.98px) { + /* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 992px) { + /* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row nowrap; + -webkit-box-pack: start; + justify-content: flex-start; + } + /* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute; + } + /* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + /* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + flex-wrap: nowrap; + } + /* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg .navbar-collapse { + display: -webkit-box !important; + display: flex !important; + flex-basis: auto; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg .navbar-toggler { + display: none; + } +} + +@media (max-width: 1199.98px) { + /* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 1200px) { + /* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row nowrap; + -webkit-box-pack: start; + justify-content: flex-start; + } + /* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute; + } + /* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + /* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + flex-wrap: nowrap; + } + /* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl .navbar-collapse { + display: -webkit-box !important; + display: flex !important; + flex-basis: auto; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl .navbar-toggler { + display: none; + } +} + +/* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row nowrap; + -webkit-box-pack: start; + justify-content: flex-start; +} + +/* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand > .container, +.navbar-expand > .container-fluid { + padding-right: 0; + padding-left: 0; +} + +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; +} + +/* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand .navbar-nav .dropdown-menu { + position: absolute; +} + +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; +} + +/* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand > .container, +.navbar-expand > .container-fluid { + flex-wrap: nowrap; +} + +/* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand .navbar-collapse { + display: -webkit-box !important; + display: flex !important; + flex-basis: auto; +} + +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand .navbar-toggler { + display: none; +} + +/* line 194, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-brand { + color: rgba(0, 0, 0, 0.9); +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { + color: rgba(0, 0, 0, 0.9); +} + +/* line 203, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-nav .nav-link { + color: rgba(0, 0, 0, 0.5); +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { + color: rgba(0, 0, 0, 0.7); +} + +/* line 210, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, 0.3); +} + +/* line 215, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-nav .show > .nav-link, +.navbar-light .navbar-nav .active > .nav-link, +.navbar-light .navbar-nav .nav-link.show, +.navbar-light .navbar-nav .nav-link.active { + color: rgba(0, 0, 0, 0.9); +} + +/* line 223, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, 0.5); + border-color: rgba(0, 0, 0, 0.1); +} + +/* line 228, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); +} + +/* line 232, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-text { + color: rgba(0, 0, 0, 0.5); +} + +/* line 234, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-text a { + color: rgba(0, 0, 0, 0.9); +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { + color: rgba(0, 0, 0, 0.9); +} + +/* line 246, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-brand { + color: #fff; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { + color: #fff; +} + +/* line 255, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-nav .nav-link { + color: rgba(255, 255, 255, 0.5); +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { + color: rgba(255, 255, 255, 0.75); +} + +/* line 262, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, 0.25); +} + +/* line 267, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-nav .show > .nav-link, +.navbar-dark .navbar-nav .active > .nav-link, +.navbar-dark .navbar-nav .nav-link.show, +.navbar-dark .navbar-nav .nav-link.active { + color: #fff; +} + +/* line 275, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, 0.5); + border-color: rgba(255, 255, 255, 0.1); +} + +/* line 280, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); +} + +/* line 284, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-text { + color: rgba(255, 255, 255, 0.5); +} + +/* line 286, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-text a { + color: #fff; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { + color: #fff; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card { + position: relative; + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid rgba(0, 0, 0, 0.125); + border-radius: 0.25rem; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card > hr { + margin-right: 0; + margin-left: 0; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card > .list-group:first-child .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card > .list-group:last-child .list-group-item:last-child { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-body { + -webkit-box-flex: 1; + flex: 1 1 auto; + padding: 1.25rem; +} + +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-title { + margin-bottom: 0.75rem; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-subtitle { + margin-top: -0.375rem; + margin-bottom: 0; +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-text:last-child { + margin-bottom: 0; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.card-link:hover { + text-decoration: none; +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-link + .card-link { + margin-left: 1.25rem; +} + +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-header { + padding: 0.75rem 1.25rem; + margin-bottom: 0; + background-color: rgba(0, 0, 0, 0.03); + border-bottom: 1px solid rgba(0, 0, 0, 0.125); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-header:first-child { + border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; +} + +/* line 81, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-header + .list-group .list-group-item:first-child { + border-top: 0; +} + +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-footer { + padding: 0.75rem 1.25rem; + background-color: rgba(0, 0, 0, 0.03); + border-top: 1px solid rgba(0, 0, 0, 0.125); +} + +/* line 92, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-footer:last-child { + border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); +} + +/* line 102, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-header-tabs { + margin-right: -0.625rem; + margin-bottom: -0.75rem; + margin-left: -0.625rem; + border-bottom: 0; +} + +/* line 109, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-header-pills { + margin-right: -0.625rem; + margin-left: -0.625rem; +} + +/* line 115, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1.25rem; +} + +/* line 124, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-img { + width: 100%; + border-radius: calc(0.25rem - 1px); +} + +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-img-top { + width: 100%; + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); +} + +/* line 135, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-img-bottom { + width: 100%; + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); +} + +/* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-deck { + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; +} + +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-deck .card { + margin-bottom: 15px; +} + +@media (min-width: 576px) { + /* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-deck { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row wrap; + margin-right: -15px; + margin-left: -15px; + } + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-deck .card { + display: -webkit-box; + display: flex; + -webkit-box-flex: 1; + flex: 1 0 0%; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + margin-right: 15px; + margin-bottom: 0; + margin-left: 15px; + } +} + +/* line 173, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-group { + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; +} + +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-group > .card { + margin-bottom: 15px; +} + +@media (min-width: 576px) { + /* line 173, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row wrap; + } + /* line 187, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card { + -webkit-box-flex: 1; + flex: 1 0 0%; + margin-bottom: 0; + } + /* line 192, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card + .card { + margin-left: 0; + border-left: 0; + } + /* line 199, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + /* line 202, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card:not(:last-child) .card-img-top, + .card-group > .card:not(:last-child) .card-header { + border-top-right-radius: 0; + } + /* line 207, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card:not(:last-child) .card-img-bottom, + .card-group > .card:not(:last-child) .card-footer { + border-bottom-right-radius: 0; + } + /* line 214, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + /* line 217, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card:not(:first-child) .card-img-top, + .card-group > .card:not(:first-child) .card-header { + border-top-left-radius: 0; + } + /* line 222, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card:not(:first-child) .card-img-bottom, + .card-group > .card:not(:first-child) .card-footer { + border-bottom-left-radius: 0; + } +} + +/* line 239, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-columns .card { + margin-bottom: 0.75rem; +} + +@media (min-width: 576px) { + /* line 238, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-columns { + -webkit-column-count: 3; + -moz-column-count: 3; + column-count: 3; + -webkit-column-gap: 1.25rem; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + orphans: 1; + widows: 1; + } + /* line 249, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-columns .card { + display: inline-block; + width: 100%; + } +} + +/* line 262, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.accordion > .card { + overflow: hidden; +} + +/* line 266, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.accordion > .card:not(:first-of-type) .card-header:first-child { + border-radius: 0; +} + +/* line 270, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.accordion > .card:not(:first-of-type):not(:last-of-type) { + border-bottom: 0; + border-radius: 0; +} + +/* line 276, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.accordion > .card:first-of-type { + border-bottom: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +/* line 281, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.accordion > .card:last-of-type { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +/* line 285, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.accordion > .card .card-header { + margin-bottom: -1px; +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +.breadcrumb { + display: -webkit-box; + display: flex; + flex-wrap: wrap; + padding: 0.75rem 1rem; + margin-bottom: 1rem; + list-style: none; + background-color: #e9ecef; + border-radius: 0.25rem; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +.breadcrumb-item + .breadcrumb-item { + padding-left: 0.5rem; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +.breadcrumb-item + .breadcrumb-item::before { + display: inline-block; + padding-right: 0.5rem; + color: #6c757d; + content: "/"; +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: underline; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: none; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +.breadcrumb-item.active { + color: #6c757d; +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.pagination { + display: -webkit-box; + display: flex; + padding-left: 0; + list-style: none; + border-radius: 0.25rem; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.page-link { + position: relative; + display: block; + padding: 0.5rem 0.75rem; + margin-left: -1px; + line-height: 1.25; + color: #007bff; + background-color: #fff; + border: 1px solid #dee2e6; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.page-link:hover { + z-index: 2; + color: #0056b3; + text-decoration: none; + background-color: #e9ecef; + border-color: #dee2e6; +} + +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.page-link:focus { + z-index: 2; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.page-item:first-child .page-link { + margin-left: 0; + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.page-item:last-child .page-link { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.page-item.active .page-link { + z-index: 1; + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.page-item.disabled .page-link { + color: #6c757d; + pointer-events: none; + cursor: auto; + background-color: #fff; + border-color: #dee2e6; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +.pagination-lg .page-link { + padding: 0.75rem 1.5rem; + font-size: 1.25rem; + line-height: 1.5; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +.pagination-lg .page-item:first-child .page-link { + border-top-left-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +.pagination-lg .page-item:last-child .page-link { + border-top-right-radius: 0.3rem; + border-bottom-right-radius: 0.3rem; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +.pagination-sm .page-link { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +.pagination-sm .page-item:first-child .page-link { + border-top-left-radius: 0.2rem; + border-bottom-left-radius: 0.2rem; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +.pagination-sm .page-item:last-child .page-link { + border-top-right-radius: 0.2rem; + border-bottom-right-radius: 0.2rem; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge { + display: inline-block; + padding: 0.25em 0.4em; + font-size: 75%; + font-weight: 700; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 0.25rem; + -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ + .badge { + -webkit-transition: none; + transition: none; + } +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge:hover, a.badge:focus { + text-decoration: none; +} + +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge:empty { + display: none; +} + +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.btn .badge { + position: relative; + top: -1px; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-pill { + padding-right: 0.6em; + padding-left: 0.6em; + border-radius: 10rem; +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-primary { + color: #fff; + background-color: #007bff; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-primary:hover, a.badge-primary:focus { + color: #fff; + background-color: #0062cc; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-primary:focus, a.badge-primary.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-secondary { + color: #fff; + background-color: #6c757d; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-secondary:hover, a.badge-secondary:focus { + color: #fff; + background-color: #545b62; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-secondary:focus, a.badge-secondary.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-success { + color: #fff; + background-color: #28a745; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-success:hover, a.badge-success:focus { + color: #fff; + background-color: #1e7e34; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-success:focus, a.badge-success.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-info { + color: #fff; + background-color: #17a2b8; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-info:hover, a.badge-info:focus { + color: #fff; + background-color: #117a8b; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-info:focus, a.badge-info.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-warning { + color: #212529; + background-color: #ffc107; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-warning:hover, a.badge-warning:focus { + color: #212529; + background-color: #d39e00; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-warning:focus, a.badge-warning.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-danger { + color: #fff; + background-color: #dc3545; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-danger:hover, a.badge-danger:focus { + color: #fff; + background-color: #bd2130; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-danger:focus, a.badge-danger.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-light { + color: #212529; + background-color: #f8f9fa; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-light:hover, a.badge-light:focus { + color: #212529; + background-color: #dae0e5; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-light:focus, a.badge-light.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-dark { + color: #fff; + background-color: #343a40; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-dark:hover, a.badge-dark:focus { + color: #fff; + background-color: #1d2124; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-dark:focus, a.badge-dark.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_jumbotron.scss */ +.jumbotron { + padding: 2rem 1rem; + margin-bottom: 2rem; + background-color: #e9ecef; + border-radius: 0.3rem; +} + +@media (min-width: 576px) { + /* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_jumbotron.scss */ + .jumbotron { + padding: 4rem 2rem; + } +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_jumbotron.scss */ +.jumbotron-fluid { + padding-right: 0; + padding-left: 0; + border-radius: 0; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert { + position: relative; + padding: 0.75rem 1.25rem; + margin-bottom: 1rem; + border: 1px solid transparent; + border-radius: 0.25rem; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-heading { + color: inherit; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-link { + font-weight: 700; +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-dismissible { + padding-right: 4rem; +} + +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-dismissible .close { + position: absolute; + top: 0; + right: 0; + padding: 0.75rem 1.25rem; + color: inherit; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-primary { + color: #004085; + background-color: #cce5ff; + border-color: #b8daff; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-primary hr { + border-top-color: #9fcdff; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-primary .alert-link { + color: #002752; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-secondary { + color: #383d41; + background-color: #e2e3e5; + border-color: #d6d8db; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-secondary hr { + border-top-color: #c8cbcf; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-secondary .alert-link { + color: #202326; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-success { + color: #155724; + background-color: #d4edda; + border-color: #c3e6cb; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-success hr { + border-top-color: #b1dfbb; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-success .alert-link { + color: #0b2e13; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-info { + color: #0c5460; + background-color: #d1ecf1; + border-color: #bee5eb; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-info hr { + border-top-color: #abdde5; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-info .alert-link { + color: #062c33; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-warning { + color: #856404; + background-color: #fff3cd; + border-color: #ffeeba; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-warning hr { + border-top-color: #ffe8a1; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-warning .alert-link { + color: #533f03; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-danger { + color: #721c24; + background-color: #f8d7da; + border-color: #f5c6cb; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-danger hr { + border-top-color: #f1b0b7; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-danger .alert-link { + color: #491217; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-light { + color: #818182; + background-color: #fefefe; + border-color: #fdfdfe; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-light hr { + border-top-color: #ececf6; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-light .alert-link { + color: #686868; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-dark { + color: #1b1e21; + background-color: #d6d8d9; + border-color: #c6c8ca; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-dark hr { + border-top-color: #b9bbbe; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-dark .alert-link { + color: #040505; +} + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 1rem 0; + } + to { + background-position: 0 0; + } +} + +@keyframes progress-bar-stripes { + from { + background-position: 1rem 0; + } + to { + background-position: 0 0; + } +} + +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ +.progress { + display: -webkit-box; + display: flex; + height: 1rem; + overflow: hidden; + font-size: 0.75rem; + background-color: #e9ecef; + border-radius: 0.25rem; +} + +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ +.progress-bar { + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + -webkit-box-pack: center; + justify-content: center; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #007bff; + -webkit-transition: width 0.6s ease; + transition: width 0.6s ease; +} + +@media (prefers-reduced-motion: reduce) { + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ + .progress-bar { + -webkit-transition: none; + transition: none; + } +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ +.progress-bar-striped { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 1rem 1rem; +} + +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ +.progress-bar-animated { + -webkit-animation: progress-bar-stripes 1s linear infinite; + animation: progress-bar-stripes 1s linear infinite; +} + +@media (prefers-reduced-motion: reduce) { + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ + .progress-bar-animated { + -webkit-animation: none; + animation: none; + } +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_media.scss */ +.media { + display: -webkit-box; + display: flex; + -webkit-box-align: start; + align-items: flex-start; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_media.scss */ +.media-body { + -webkit-box-flex: 1; + flex: 1; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group { + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-item-action { + width: 100%; + color: #495057; + text-align: inherit; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-action:hover, .list-group-item-action:focus { + z-index: 1; + color: #495057; + text-decoration: none; + background-color: #f8f9fa; +} + +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-item-action:active { + color: #212529; + background-color: #e9ecef; +} + +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-item { + position: relative; + display: block; + padding: 0.75rem 1.25rem; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.125); +} + +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +/* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-item.disabled, .list-group-item:disabled { + color: #6c757d; + pointer-events: none; + background-color: #fff; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-item.active { + z-index: 2; + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +/* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-horizontal { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; +} + +/* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-horizontal .list-group-item { + margin-right: -1px; + margin-bottom: 0; +} + +/* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-horizontal .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; +} + +/* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-horizontal .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; +} + +@media (min-width: 576px) { + /* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-sm { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-sm .list-group-item { + margin-right: -1px; + margin-bottom: 0; + } + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-sm .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-sm .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } +} + +@media (min-width: 768px) { + /* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-md { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-md .list-group-item { + margin-right: -1px; + margin-bottom: 0; + } + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-md .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-md .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } +} + +@media (min-width: 992px) { + /* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-lg { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-lg .list-group-item { + margin-right: -1px; + margin-bottom: 0; + } + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-lg .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-lg .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } +} + +@media (min-width: 1200px) { + /* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-xl { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-xl .list-group-item { + margin-right: -1px; + margin-bottom: 0; + } + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-xl .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-xl .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } +} + +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-flush .list-group-item { + border-right: 0; + border-left: 0; + border-radius: 0; +} + +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-flush .list-group-item:last-child { + margin-bottom: -1px; +} + +/* line 128, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-flush:first-child .list-group-item:first-child { + border-top: 0; +} + +/* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-flush:last-child .list-group-item:last-child { + margin-bottom: 0; + border-bottom: 0; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-primary { + color: #004085; + background-color: #b8daff; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { + color: #004085; + background-color: #9fcdff; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #004085; + border-color: #004085; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-secondary { + color: #383d41; + background-color: #d6d8db; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { + color: #383d41; + background-color: #c8cbcf; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #383d41; + border-color: #383d41; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-success { + color: #155724; + background-color: #c3e6cb; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { + color: #155724; + background-color: #b1dfbb; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #155724; + border-color: #155724; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-info { + color: #0c5460; + background-color: #bee5eb; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { + color: #0c5460; + background-color: #abdde5; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #0c5460; + border-color: #0c5460; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-warning { + color: #856404; + background-color: #ffeeba; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { + color: #856404; + background-color: #ffe8a1; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #856404; + border-color: #856404; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-danger { + color: #721c24; + background-color: #f5c6cb; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { + color: #721c24; + background-color: #f1b0b7; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-danger.list-group-item-action.active { + color: #fff; + background-color: #721c24; + border-color: #721c24; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-light { + color: #818182; + background-color: #fdfdfe; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { + color: #818182; + background-color: #ececf6; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #818182; + border-color: #818182; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-dark { + color: #1b1e21; + background-color: #c6c8ca; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { + color: #1b1e21; + background-color: #b9bbbe; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #1b1e21; + border-color: #1b1e21; +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_close.scss */ +.close { + float: right; + font-size: 1.5rem; + font-weight: 700; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + opacity: .5; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.close:hover { + color: #000; + text-decoration: none; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { + opacity: .75; +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_close.scss */ +button.close { + padding: 0; + background-color: transparent; + border: 0; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_close.scss */ +a.close.disabled { + pointer-events: none; +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +.toast { + max-width: 350px; + overflow: hidden; + font-size: 0.875rem; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.1); + box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); + -webkit-backdrop-filter: blur(10px); + backdrop-filter: blur(10px); + opacity: 0; + border-radius: 0.25rem; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +.toast:not(:last-child) { + margin-bottom: 0.75rem; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +.toast.showing { + opacity: 1; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +.toast.show { + display: block; + opacity: 1; +} + +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +.toast.hide { + display: none; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +.toast-header { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + padding: 0.25rem 0.75rem; + color: #6c757d; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border-bottom: 1px solid rgba(0, 0, 0, 0.05); +} + +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +.toast-body { + padding: 0.75rem; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-open { + overflow: hidden; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal { + position: fixed; + top: 0; + left: 0; + z-index: 1050; + display: none; + width: 100%; + height: 100%; + overflow: hidden; + outline: 0; +} + +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog { + position: relative; + width: auto; + margin: 0.5rem; + pointer-events: none; +} + +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal.fade .modal-dialog { + -webkit-transition: -webkit-transform 0.3s ease-out; + transition: -webkit-transform 0.3s ease-out; + transition: transform 0.3s ease-out; + transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; + -webkit-transform: translate(0, -50px); + transform: translate(0, -50px); +} + +@media (prefers-reduced-motion: reduce) { + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal.fade .modal-dialog { + -webkit-transition: none; + transition: none; + } +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal.show .modal-dialog { + -webkit-transform: none; + transform: none; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-scrollable { + display: -webkit-box; + display: flex; + max-height: calc(100% - 1rem); +} + +/* line 57, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 1rem); + overflow: hidden; +} + +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-scrollable .modal-header, +.modal-dialog-scrollable .modal-footer { + flex-shrink: 0; +} + +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-scrollable .modal-body { + overflow-y: auto; +} + +/* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-centered { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + min-height: calc(100% - 1rem); +} + +/* line 78, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-centered::before { + display: block; + height: calc(100vh - 1rem); + content: ""; +} + +/* line 85, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-centered.modal-dialog-scrollable { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + -webkit-box-pack: center; + justify-content: center; + height: 100%; +} + +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-centered.modal-dialog-scrollable .modal-content { + max-height: none; +} + +/* line 94, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-centered.modal-dialog-scrollable::before { + content: none; +} + +/* line 101, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-content { + position: relative; + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; + outline: 0; +} + +/* line 119, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-backdrop { + position: fixed; + top: 0; + left: 0; + z-index: 1040; + width: 100vw; + height: 100vh; + background-color: #000; +} + +/* line 129, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-backdrop.fade { + opacity: 0; +} + +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-backdrop.show { + opacity: 0.5; +} + +/* line 135, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-header { + display: -webkit-box; + display: flex; + -webkit-box-align: start; + align-items: flex-start; + -webkit-box-pack: justify; + justify-content: space-between; + padding: 1rem 1rem; + border-bottom: 1px solid #dee2e6; + border-top-left-radius: 0.3rem; + border-top-right-radius: 0.3rem; +} + +/* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-header .close { + padding: 1rem 1rem; + margin: -1rem -1rem -1rem auto; +} + +/* line 151, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-title { + margin-bottom: 0; + line-height: 1.5; +} + +/* line 158, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-body { + position: relative; + -webkit-box-flex: 1; + flex: 1 1 auto; + padding: 1rem; +} + +/* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-footer { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: end; + justify-content: flex-end; + padding: 1rem; + border-top: 1px solid #dee2e6; + border-bottom-right-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; +} + +/* line 176, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-footer > :not(:first-child) { + margin-left: .25rem; +} + +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-footer > :not(:last-child) { + margin-right: .25rem; +} + +/* line 181, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; +} + +@media (min-width: 576px) { + /* line 192, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-dialog { + max-width: 500px; + margin: 1.75rem auto; + } + /* line 197, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-dialog-scrollable { + max-height: calc(100% - 3.5rem); + } + /* line 200, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 3.5rem); + } + /* line 205, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-dialog-centered { + min-height: calc(100% - 3.5rem); + } + /* line 208, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-dialog-centered::before { + height: calc(100vh - 3.5rem); + } + /* line 217, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-sm { + max-width: 300px; + } +} + +@media (min-width: 992px) { + /* line 221, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-lg, + .modal-xl { + max-width: 800px; + } +} + +@media (min-width: 1200px) { + /* line 228, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-xl { + max-width: 1140px; + } +} + +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.tooltip { + position: absolute; + z-index: 1070; + display: block; + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + opacity: 0; +} + +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.tooltip.show { + opacity: 0.9; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.tooltip .arrow { + position: absolute; + display: block; + width: 0.8rem; + height: 0.4rem; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.tooltip .arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { + padding: 0.4rem 0; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { + bottom: 0; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { + top: 0; + border-width: 0.4rem 0.4rem 0; + border-top-color: #000; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { + padding: 0 0.4rem; +} + +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { + left: 0; + width: 0.4rem; + height: 0.8rem; +} + +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { + right: 0; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #000; +} + +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { + padding: 0.4rem 0; +} + +/* line 65, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { + top: 0; +} + +/* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + bottom: 0; + border-width: 0 0.4rem 0.4rem; + border-bottom-color: #000; +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { + padding: 0 0.4rem; +} + +/* line 79, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { + right: 0; + width: 0.4rem; + height: 0.8rem; +} + +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { + left: 0; + border-width: 0.4rem 0 0.4rem 0.4rem; + border-left-color: #000; +} + +/* line 108, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.tooltip-inner { + max-width: 200px; + padding: 0.25rem 0.5rem; + color: #fff; + text-align: center; + background-color: #000; + border-radius: 0.25rem; +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: block; + max-width: 276px; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.popover .arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; + margin: 0 0.3rem; +} + +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.popover .arrow::before, .popover .arrow::after { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-top, .bs-popover-auto[x-placement^="top"] { + margin-bottom: 0.5rem; +} + +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow { + bottom: calc((0.5rem + 1px) * -1); +} + +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before { + bottom: 0; + border-width: 0.5rem 0.5rem 0; + border-top-color: rgba(0, 0, 0, 0.25); +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after { + bottom: 1px; + border-width: 0.5rem 0.5rem 0; + border-top-color: #fff; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-right, .bs-popover-auto[x-placement^="right"] { + margin-left: 0.5rem; +} + +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow { + left: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; +} + +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before { + left: 0; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: rgba(0, 0, 0, 0.25); +} + +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after { + left: 1px; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: #fff; +} + +/* line 81, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { + margin-top: 0.5rem; +} + +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow { + top: calc((0.5rem + 1px) * -1); +} + +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before { + top: 0; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: rgba(0, 0, 0, 0.25); +} + +/* line 93, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after { + top: 1px; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: #fff; +} + +/* line 101, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: ""; + border-bottom: 1px solid #f7f7f7; +} + +/* line 113, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-left, .bs-popover-auto[x-placement^="left"] { + margin-right: 0.5rem; +} + +/* line 116, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow { + right: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; +} + +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before { + right: 0; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: rgba(0, 0, 0, 0.25); +} + +/* line 128, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after { + right: 1px; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: #fff; +} + +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.popover-header { + padding: 0.5rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); +} + +/* line 163, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.popover-header:empty { + display: none; +} + +/* line 168, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.popover-body { + padding: 0.5rem 0.75rem; + color: #212529; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel { + position: relative; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel.pointer-event { + touch-action: pan-y; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} + +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ +.carousel-inner::after { + display: block; + clear: both; + content: ""; +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-item { + position: relative; + display: none; + float: left; + width: 100%; + margin-right: -100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-transition: -webkit-transform 0.6s ease-in-out; + transition: -webkit-transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ + .carousel-item { + -webkit-transition: none; + transition: none; + } +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-item-next:not(.carousel-item-left), +.active.carousel-item-right { + -webkit-transform: translateX(100%); + transform: translateX(100%); +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-item-prev:not(.carousel-item-right), +.active.carousel-item-left { + -webkit-transform: translateX(-100%); + transform: translateX(-100%); +} + +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-fade .carousel-item { + opacity: 0; + -webkit-transition-property: opacity; + transition-property: opacity; + -webkit-transform: none; + transform: none; +} + +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-fade .carousel-item.active, +.carousel-fade .carousel-item-next.carousel-item-left, +.carousel-fade .carousel-item-prev.carousel-item-right { + z-index: 1; + opacity: 1; +} + +/* line 74, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-fade .active.carousel-item-left, +.carousel-fade .active.carousel-item-right { + z-index: 0; + opacity: 0; + -webkit-transition: 0s 0.6s opacity; + transition: 0s 0.6s opacity; +} + +@media (prefers-reduced-motion: reduce) { + /* line 74, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ + .carousel-fade .active.carousel-item-left, + .carousel-fade .active.carousel-item-right { + -webkit-transition: none; + transition: none; + } +} + +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-control-prev, +.carousel-control-next { + position: absolute; + top: 0; + bottom: 0; + z-index: 1; + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: center; + justify-content: center; + width: 15%; + color: #fff; + text-align: center; + opacity: 0.5; + -webkit-transition: opacity 0.15s ease; + transition: opacity 0.15s ease; +} + +@media (prefers-reduced-motion: reduce) { + /* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ + .carousel-control-prev, + .carousel-control-next { + -webkit-transition: none; + transition: none; + } +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.carousel-control-prev:hover, .carousel-control-prev:focus, +.carousel-control-next:hover, +.carousel-control-next:focus { + color: #fff; + text-decoration: none; + outline: 0; + opacity: 0.9; +} + +/* line 111, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-control-prev { + left: 0; +} + +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-control-next { + right: 0; +} + +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: 20px; + height: 20px; + background: no-repeat 50% / 100% 100%; +} + +/* line 132, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"); +} + +/* line 135, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-control-next-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"); +} + +/* line 145, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-indicators { + position: absolute; + right: 0; + bottom: 0; + left: 0; + z-index: 15; + display: -webkit-box; + display: flex; + -webkit-box-pack: center; + justify-content: center; + padding-left: 0; + margin-right: 15%; + margin-left: 15%; + list-style: none; +} + +/* line 159, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-indicators li { + box-sizing: content-box; + -webkit-box-flex: 0; + flex: 0 1 auto; + width: 30px; + height: 3px; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: #fff; + background-clip: padding-box; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: .5; + -webkit-transition: opacity 0.6s ease; + transition: opacity 0.6s ease; +} + +@media (prefers-reduced-motion: reduce) { + /* line 159, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ + .carousel-indicators li { + -webkit-transition: none; + transition: none; + } +} + +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-indicators .active { + opacity: 1; +} + +/* line 187, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; +} + +@-webkit-keyframes spinner-border { + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@keyframes spinner-border { + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ +.spinner-border { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + border: 0.25em solid currentColor; + border-right-color: transparent; + border-radius: 50%; + -webkit-animation: spinner-border .75s linear infinite; + animation: spinner-border .75s linear infinite; +} + +/* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ +.spinner-border-sm { + width: 1rem; + height: 1rem; + border-width: 0.2em; +} + +@-webkit-keyframes spinner-grow { + 0% { + -webkit-transform: scale(0); + transform: scale(0); + } + 50% { + opacity: 1; + } +} + +@keyframes spinner-grow { + 0% { + -webkit-transform: scale(0); + transform: scale(0); + } + 50% { + opacity: 1; + } +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ +.spinner-grow { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + background-color: currentColor; + border-radius: 50%; + opacity: 0; + -webkit-animation: spinner-grow .75s linear infinite; + animation: spinner-grow .75s linear infinite; +} + +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ +.spinner-grow-sm { + width: 1rem; + height: 1rem; +} + +/* line 3, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +.align-baseline { + vertical-align: baseline !important; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +.align-top { + vertical-align: top !important; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +.align-middle { + vertical-align: middle !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +.align-bottom { + vertical-align: bottom !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +.align-text-bottom { + vertical-align: text-bottom !important; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +.align-text-top { + vertical-align: text-top !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-primary { + background-color: #007bff !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-primary:hover, a.bg-primary:focus, +button.bg-primary:hover, +button.bg-primary:focus { + background-color: #0062cc !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-secondary { + background-color: #6c757d !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-secondary:hover, a.bg-secondary:focus, +button.bg-secondary:hover, +button.bg-secondary:focus { + background-color: #545b62 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-success { + background-color: #28a745 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-success:hover, a.bg-success:focus, +button.bg-success:hover, +button.bg-success:focus { + background-color: #1e7e34 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-info { + background-color: #17a2b8 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-info:hover, a.bg-info:focus, +button.bg-info:hover, +button.bg-info:focus { + background-color: #117a8b !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-warning { + background-color: #ffc107 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-warning:hover, a.bg-warning:focus, +button.bg-warning:hover, +button.bg-warning:focus { + background-color: #d39e00 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-danger { + background-color: #dc3545 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-danger:hover, a.bg-danger:focus, +button.bg-danger:hover, +button.bg-danger:focus { + background-color: #bd2130 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-light { + background-color: #f8f9fa !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-light:hover, a.bg-light:focus, +button.bg-light:hover, +button.bg-light:focus { + background-color: #dae0e5 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-dark { + background-color: #343a40 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-dark:hover, a.bg-dark:focus, +button.bg-dark:hover, +button.bg-dark:focus { + background-color: #1d2124 !important; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_background.scss */ +.bg-white { + background-color: #fff !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_background.scss */ +.bg-transparent { + background-color: transparent !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border { + border: 1px solid #dee2e6 !important; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-top { + border-top: 1px solid #dee2e6 !important; +} + +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-right { + border-right: 1px solid #dee2e6 !important; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-bottom { + border-bottom: 1px solid #dee2e6 !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-left { + border-left: 1px solid #dee2e6 !important; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-0 { + border: 0 !important; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-top-0 { + border-top: 0 !important; +} + +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-right-0 { + border-right: 0 !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-bottom-0 { + border-bottom: 0 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-left-0 { + border-left: 0 !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-primary { + border-color: #007bff !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-secondary { + border-color: #6c757d !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-success { + border-color: #28a745 !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-info { + border-color: #17a2b8 !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-warning { + border-color: #ffc107 !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-danger { + border-color: #dc3545 !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-light { + border-color: #f8f9fa !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-dark { + border-color: #343a40 !important; +} + +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-white { + border-color: #fff !important; +} + +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-sm { + border-radius: 0.2rem !important; +} + +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded { + border-radius: 0.25rem !important; +} + +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-top { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-right { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-bottom { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} + +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-left { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} + +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-lg { + border-radius: 0.3rem !important; +} + +/* line 65, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-circle { + border-radius: 50% !important; +} + +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-pill { + border-radius: 50rem !important; +} + +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-0 { + border-radius: 0 !important; +} + +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ +.clearfix::after { + display: block; + clear: both; + content: ""; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-none { + display: none !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-inline { + display: inline !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-inline-block { + display: inline-block !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-block { + display: block !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-table { + display: table !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-table-row { + display: table-row !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-table-cell { + display: table-cell !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-flex { + display: -webkit-box !important; + display: flex !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-inline-flex { + display: -webkit-inline-box !important; + display: inline-flex !important; +} + +@media (min-width: 576px) { + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-none { + display: none !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-inline { + display: inline !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-inline-block { + display: inline-block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-block { + display: block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-table { + display: table !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-table-row { + display: table-row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-table-cell { + display: table-cell !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-flex { + display: -webkit-box !important; + display: flex !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-inline-flex { + display: -webkit-inline-box !important; + display: inline-flex !important; + } +} + +@media (min-width: 768px) { + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-none { + display: none !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-inline { + display: inline !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-inline-block { + display: inline-block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-block { + display: block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-table { + display: table !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-table-row { + display: table-row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-table-cell { + display: table-cell !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-flex { + display: -webkit-box !important; + display: flex !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-inline-flex { + display: -webkit-inline-box !important; + display: inline-flex !important; + } +} + +@media (min-width: 992px) { + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-none { + display: none !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-inline { + display: inline !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-inline-block { + display: inline-block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-block { + display: block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-table { + display: table !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-table-row { + display: table-row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-table-cell { + display: table-cell !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-flex { + display: -webkit-box !important; + display: flex !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-inline-flex { + display: -webkit-inline-box !important; + display: inline-flex !important; + } +} + +@media (min-width: 1200px) { + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-none { + display: none !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-inline { + display: inline !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-inline-block { + display: inline-block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-block { + display: block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-table { + display: table !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-table-row { + display: table-row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-table-cell { + display: table-cell !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-flex { + display: -webkit-box !important; + display: flex !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-inline-flex { + display: -webkit-inline-box !important; + display: inline-flex !important; + } +} + +@media print { + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-none { + display: none !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-inline { + display: inline !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-inline-block { + display: inline-block !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-block { + display: block !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-table { + display: table !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-table-row { + display: table-row !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-table-cell { + display: table-cell !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-flex { + display: -webkit-box !important; + display: flex !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-inline-flex { + display: -webkit-inline-box !important; + display: inline-flex !important; + } +} + +/* line 3, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +.embed-responsive { + position: relative; + display: block; + width: 100%; + padding: 0; + overflow: hidden; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +.embed-responsive::before { + display: block; + content: ""; +} + +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +.embed-responsive .embed-responsive-item, +.embed-responsive iframe, +.embed-responsive embed, +.embed-responsive object, +.embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +.embed-responsive-21by9::before { + padding-top: 42.85714%; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +.embed-responsive-16by9::before { + padding-top: 56.25%; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +.embed-responsive-4by3::before { + padding-top: 75%; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +.embed-responsive-1by1::before { + padding-top: 100%; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + flex-direction: row !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + flex-direction: column !important; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + flex-direction: row-reverse !important; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + flex-direction: column-reverse !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-wrap { + flex-wrap: wrap !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-nowrap { + flex-wrap: nowrap !important; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; +} + +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-fill { + -webkit-box-flex: 1 !important; + flex: 1 1 auto !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-grow-0 { + -webkit-box-flex: 0 !important; + flex-grow: 0 !important; +} + +/* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-grow-1 { + -webkit-box-flex: 1 !important; + flex-grow: 1 !important; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-shrink-0 { + flex-shrink: 0 !important; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-shrink-1 { + flex-shrink: 1 !important; +} + +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.justify-content-start { + -webkit-box-pack: start !important; + justify-content: flex-start !important; +} + +/* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.justify-content-end { + -webkit-box-pack: end !important; + justify-content: flex-end !important; +} + +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.justify-content-center { + -webkit-box-pack: center !important; + justify-content: center !important; +} + +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.justify-content-between { + -webkit-box-pack: justify !important; + justify-content: space-between !important; +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.justify-content-around { + justify-content: space-around !important; +} + +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-items-start { + -webkit-box-align: start !important; + align-items: flex-start !important; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-items-end { + -webkit-box-align: end !important; + align-items: flex-end !important; +} + +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-items-center { + -webkit-box-align: center !important; + align-items: center !important; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-items-baseline { + -webkit-box-align: baseline !important; + align-items: baseline !important; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-items-stretch { + -webkit-box-align: stretch !important; + align-items: stretch !important; +} + +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-content-start { + align-content: flex-start !important; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-content-end { + align-content: flex-end !important; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-content-center { + align-content: center !important; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-content-between { + align-content: space-between !important; +} + +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-content-around { + align-content: space-around !important; +} + +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-content-stretch { + align-content: stretch !important; +} + +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-self-auto { + align-self: auto !important; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-self-start { + align-self: flex-start !important; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-self-end { + align-self: flex-end !important; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-self-center { + align-self: center !important; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-self-baseline { + align-self: baseline !important; +} + +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-self-stretch { + align-self: stretch !important; +} + +@media (min-width: 576px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + flex-direction: row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + flex-direction: column !important; + } + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + flex-direction: row-reverse !important; + } + /* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + flex-direction: column-reverse !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-wrap { + flex-wrap: wrap !important; + } + /* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-nowrap { + flex-wrap: nowrap !important; + } + /* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-fill { + -webkit-box-flex: 1 !important; + flex: 1 1 auto !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-grow-0 { + -webkit-box-flex: 0 !important; + flex-grow: 0 !important; + } + /* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-grow-1 { + -webkit-box-flex: 1 !important; + flex-grow: 1 !important; + } + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-shrink-0 { + flex-shrink: 0 !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-shrink-1 { + flex-shrink: 1 !important; + } + /* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-sm-start { + -webkit-box-pack: start !important; + justify-content: flex-start !important; + } + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-sm-end { + -webkit-box-pack: end !important; + justify-content: flex-end !important; + } + /* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-sm-center { + -webkit-box-pack: center !important; + justify-content: center !important; + } + /* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-sm-between { + -webkit-box-pack: justify !important; + justify-content: space-between !important; + } + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-sm-around { + justify-content: space-around !important; + } + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-sm-start { + -webkit-box-align: start !important; + align-items: flex-start !important; + } + /* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-sm-end { + -webkit-box-align: end !important; + align-items: flex-end !important; + } + /* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-sm-center { + -webkit-box-align: center !important; + align-items: center !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-sm-baseline { + -webkit-box-align: baseline !important; + align-items: baseline !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-sm-stretch { + -webkit-box-align: stretch !important; + align-items: stretch !important; + } + /* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-sm-start { + align-content: flex-start !important; + } + /* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-sm-end { + align-content: flex-end !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-sm-center { + align-content: center !important; + } + /* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-sm-between { + align-content: space-between !important; + } + /* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-sm-around { + align-content: space-around !important; + } + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-sm-stretch { + align-content: stretch !important; + } + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-sm-auto { + align-self: auto !important; + } + /* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-sm-start { + align-self: flex-start !important; + } + /* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-sm-end { + align-self: flex-end !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-sm-center { + align-self: center !important; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-sm-baseline { + align-self: baseline !important; + } + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-sm-stretch { + align-self: stretch !important; + } +} + +@media (min-width: 768px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + flex-direction: row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + flex-direction: column !important; + } + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + flex-direction: row-reverse !important; + } + /* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + flex-direction: column-reverse !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-wrap { + flex-wrap: wrap !important; + } + /* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-nowrap { + flex-wrap: nowrap !important; + } + /* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-fill { + -webkit-box-flex: 1 !important; + flex: 1 1 auto !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-grow-0 { + -webkit-box-flex: 0 !important; + flex-grow: 0 !important; + } + /* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-grow-1 { + -webkit-box-flex: 1 !important; + flex-grow: 1 !important; + } + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-shrink-0 { + flex-shrink: 0 !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-shrink-1 { + flex-shrink: 1 !important; + } + /* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-md-start { + -webkit-box-pack: start !important; + justify-content: flex-start !important; + } + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-md-end { + -webkit-box-pack: end !important; + justify-content: flex-end !important; + } + /* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-md-center { + -webkit-box-pack: center !important; + justify-content: center !important; + } + /* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-md-between { + -webkit-box-pack: justify !important; + justify-content: space-between !important; + } + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-md-around { + justify-content: space-around !important; + } + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-md-start { + -webkit-box-align: start !important; + align-items: flex-start !important; + } + /* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-md-end { + -webkit-box-align: end !important; + align-items: flex-end !important; + } + /* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-md-center { + -webkit-box-align: center !important; + align-items: center !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-md-baseline { + -webkit-box-align: baseline !important; + align-items: baseline !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-md-stretch { + -webkit-box-align: stretch !important; + align-items: stretch !important; + } + /* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-md-start { + align-content: flex-start !important; + } + /* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-md-end { + align-content: flex-end !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-md-center { + align-content: center !important; + } + /* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-md-between { + align-content: space-between !important; + } + /* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-md-around { + align-content: space-around !important; + } + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-md-stretch { + align-content: stretch !important; + } + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-md-auto { + align-self: auto !important; + } + /* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-md-start { + align-self: flex-start !important; + } + /* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-md-end { + align-self: flex-end !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-md-center { + align-self: center !important; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-md-baseline { + align-self: baseline !important; + } + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-md-stretch { + align-self: stretch !important; + } +} + +@media (min-width: 992px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + flex-direction: row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + flex-direction: column !important; + } + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + flex-direction: row-reverse !important; + } + /* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + flex-direction: column-reverse !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-wrap { + flex-wrap: wrap !important; + } + /* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-nowrap { + flex-wrap: nowrap !important; + } + /* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-fill { + -webkit-box-flex: 1 !important; + flex: 1 1 auto !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-grow-0 { + -webkit-box-flex: 0 !important; + flex-grow: 0 !important; + } + /* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-grow-1 { + -webkit-box-flex: 1 !important; + flex-grow: 1 !important; + } + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-shrink-0 { + flex-shrink: 0 !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-shrink-1 { + flex-shrink: 1 !important; + } + /* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-lg-start { + -webkit-box-pack: start !important; + justify-content: flex-start !important; + } + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-lg-end { + -webkit-box-pack: end !important; + justify-content: flex-end !important; + } + /* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-lg-center { + -webkit-box-pack: center !important; + justify-content: center !important; + } + /* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-lg-between { + -webkit-box-pack: justify !important; + justify-content: space-between !important; + } + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-lg-around { + justify-content: space-around !important; + } + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-lg-start { + -webkit-box-align: start !important; + align-items: flex-start !important; + } + /* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-lg-end { + -webkit-box-align: end !important; + align-items: flex-end !important; + } + /* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-lg-center { + -webkit-box-align: center !important; + align-items: center !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-lg-baseline { + -webkit-box-align: baseline !important; + align-items: baseline !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-lg-stretch { + -webkit-box-align: stretch !important; + align-items: stretch !important; + } + /* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-lg-start { + align-content: flex-start !important; + } + /* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-lg-end { + align-content: flex-end !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-lg-center { + align-content: center !important; + } + /* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-lg-between { + align-content: space-between !important; + } + /* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-lg-around { + align-content: space-around !important; + } + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-lg-stretch { + align-content: stretch !important; + } + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-lg-auto { + align-self: auto !important; + } + /* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-lg-start { + align-self: flex-start !important; + } + /* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-lg-end { + align-self: flex-end !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-lg-center { + align-self: center !important; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-lg-baseline { + align-self: baseline !important; + } + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-lg-stretch { + align-self: stretch !important; + } +} + +@media (min-width: 1200px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + flex-direction: row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + flex-direction: column !important; + } + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + flex-direction: row-reverse !important; + } + /* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + flex-direction: column-reverse !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-wrap { + flex-wrap: wrap !important; + } + /* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-nowrap { + flex-wrap: nowrap !important; + } + /* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-fill { + -webkit-box-flex: 1 !important; + flex: 1 1 auto !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-grow-0 { + -webkit-box-flex: 0 !important; + flex-grow: 0 !important; + } + /* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-grow-1 { + -webkit-box-flex: 1 !important; + flex-grow: 1 !important; + } + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-shrink-0 { + flex-shrink: 0 !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-shrink-1 { + flex-shrink: 1 !important; + } + /* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-xl-start { + -webkit-box-pack: start !important; + justify-content: flex-start !important; + } + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-xl-end { + -webkit-box-pack: end !important; + justify-content: flex-end !important; + } + /* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-xl-center { + -webkit-box-pack: center !important; + justify-content: center !important; + } + /* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-xl-between { + -webkit-box-pack: justify !important; + justify-content: space-between !important; + } + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-xl-around { + justify-content: space-around !important; + } + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-xl-start { + -webkit-box-align: start !important; + align-items: flex-start !important; + } + /* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-xl-end { + -webkit-box-align: end !important; + align-items: flex-end !important; + } + /* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-xl-center { + -webkit-box-align: center !important; + align-items: center !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-xl-baseline { + -webkit-box-align: baseline !important; + align-items: baseline !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-xl-stretch { + -webkit-box-align: stretch !important; + align-items: stretch !important; + } + /* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-xl-start { + align-content: flex-start !important; + } + /* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-xl-end { + align-content: flex-end !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-xl-center { + align-content: center !important; + } + /* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-xl-between { + align-content: space-between !important; + } + /* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-xl-around { + align-content: space-around !important; + } + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-xl-stretch { + align-content: stretch !important; + } + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-xl-auto { + align-self: auto !important; + } + /* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-xl-start { + align-self: flex-start !important; + } + /* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-xl-end { + align-self: flex-end !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-xl-center { + align-self: center !important; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-xl-baseline { + align-self: baseline !important; + } + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-xl-stretch { + align-self: stretch !important; + } +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ +.float-left { + float: left !important; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ +.float-right { + float: right !important; +} + +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ +.float-none { + float: none !important; +} + +@media (min-width: 576px) { + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-sm-left { + float: left !important; + } + /* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-sm-right { + float: right !important; + } + /* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-sm-none { + float: none !important; + } +} + +@media (min-width: 768px) { + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-md-left { + float: left !important; + } + /* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-md-right { + float: right !important; + } + /* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-md-none { + float: none !important; + } +} + +@media (min-width: 992px) { + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-lg-left { + float: left !important; + } + /* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-lg-right { + float: right !important; + } + /* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-lg-none { + float: none !important; + } +} + +@media (min-width: 1200px) { + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-xl-left { + float: left !important; + } + /* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-xl-right { + float: right !important; + } + /* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-xl-none { + float: none !important; + } +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_overflow.scss */ +.overflow-auto { + overflow: auto !important; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_overflow.scss */ +.overflow-hidden { + overflow: hidden !important; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +.position-static { + position: static !important; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +.position-relative { + position: relative !important; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +.position-absolute { + position: absolute !important; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +.position-fixed { + position: fixed !important; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +.position-sticky { + position: -webkit-sticky !important; + position: sticky !important; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +.fixed-bottom { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; +} + +@supports ((position: -webkit-sticky) or (position: sticky)) { + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ + .sticky-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; + } +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_screenreaders.scss */ +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border: 0; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_screen-reader.scss */ +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + overflow: visible; + clip: auto; + white-space: normal; +} + +/* line 3, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ +.shadow-sm { + box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ +.shadow { + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ +.shadow-lg { + box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ +.shadow-none { + box-shadow: none !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.w-25 { + width: 25% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.w-50 { + width: 50% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.w-75 { + width: 75% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.w-100 { + width: 100% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.w-auto { + width: auto !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.h-25 { + height: 25% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.h-50 { + height: 50% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.h-75 { + height: 75% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.h-100 { + height: 100% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.h-auto { + height: auto !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.mw-100 { + max-width: 100% !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.mh-100 { + max-height: 100% !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.min-vw-100 { + min-width: 100vw !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.min-vh-100 { + min-height: 100vh !important; +} + +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.vw-100 { + width: 100vw !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.vh-100 { + height: 100vh !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_stretched-link.scss */ +.stretched-link::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + pointer-events: auto; + content: ""; + background-color: transparent; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-0 { + margin: 0 !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-0, +.my-0 { + margin-top: 0 !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-0, +.mx-0 { + margin-right: 0 !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-0, +.my-0 { + margin-bottom: 0 !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-0, +.mx-0 { + margin-left: 0 !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-1 { + margin: 0.25rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-1, +.my-1 { + margin-top: 0.25rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-1, +.mx-1 { + margin-right: 0.25rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-1, +.my-1 { + margin-bottom: 0.25rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-1, +.mx-1 { + margin-left: 0.25rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-2 { + margin: 0.5rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-2, +.my-2 { + margin-top: 0.5rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-2, +.mx-2 { + margin-right: 0.5rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-2, +.my-2 { + margin-bottom: 0.5rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-2, +.mx-2 { + margin-left: 0.5rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-3 { + margin: 1rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-3, +.my-3 { + margin-top: 1rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-3, +.mx-3 { + margin-right: 1rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-3, +.my-3 { + margin-bottom: 1rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-3, +.mx-3 { + margin-left: 1rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-4 { + margin: 1.5rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-4, +.my-4 { + margin-top: 1.5rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-4, +.mx-4 { + margin-right: 1.5rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-4, +.my-4 { + margin-bottom: 1.5rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-4, +.mx-4 { + margin-left: 1.5rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-5 { + margin: 3rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-5, +.my-5 { + margin-top: 3rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-5, +.mx-5 { + margin-right: 3rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-5, +.my-5 { + margin-bottom: 3rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-5, +.mx-5 { + margin-left: 3rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.p-0 { + padding: 0 !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pt-0, +.py-0 { + padding-top: 0 !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pr-0, +.px-0 { + padding-right: 0 !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pb-0, +.py-0 { + padding-bottom: 0 !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pl-0, +.px-0 { + padding-left: 0 !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.p-1 { + padding: 0.25rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pt-1, +.py-1 { + padding-top: 0.25rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pr-1, +.px-1 { + padding-right: 0.25rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pb-1, +.py-1 { + padding-bottom: 0.25rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pl-1, +.px-1 { + padding-left: 0.25rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.p-2 { + padding: 0.5rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pt-2, +.py-2 { + padding-top: 0.5rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pr-2, +.px-2 { + padding-right: 0.5rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pb-2, +.py-2 { + padding-bottom: 0.5rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pl-2, +.px-2 { + padding-left: 0.5rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.p-3 { + padding: 1rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pt-3, +.py-3 { + padding-top: 1rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pr-3, +.px-3 { + padding-right: 1rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pb-3, +.py-3 { + padding-bottom: 1rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pl-3, +.px-3 { + padding-left: 1rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.p-4 { + padding: 1.5rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pt-4, +.py-4 { + padding-top: 1.5rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pr-4, +.px-4 { + padding-right: 1.5rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pb-4, +.py-4 { + padding-bottom: 1.5rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pl-4, +.px-4 { + padding-left: 1.5rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.p-5 { + padding: 3rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pt-5, +.py-5 { + padding-top: 3rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pr-5, +.px-5 { + padding-right: 3rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pb-5, +.py-5 { + padding-bottom: 3rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pl-5, +.px-5 { + padding-left: 3rem !important; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-n1 { + margin: -0.25rem !important; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-n1, +.my-n1 { + margin-top: -0.25rem !important; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-n1, +.mx-n1 { + margin-right: -0.25rem !important; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-n1, +.my-n1 { + margin-bottom: -0.25rem !important; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-n1, +.mx-n1 { + margin-left: -0.25rem !important; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-n2 { + margin: -0.5rem !important; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-n2, +.my-n2 { + margin-top: -0.5rem !important; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-n2, +.mx-n2 { + margin-right: -0.5rem !important; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-n2, +.my-n2 { + margin-bottom: -0.5rem !important; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-n2, +.mx-n2 { + margin-left: -0.5rem !important; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-n3 { + margin: -1rem !important; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-n3, +.my-n3 { + margin-top: -1rem !important; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-n3, +.mx-n3 { + margin-right: -1rem !important; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-n3, +.my-n3 { + margin-bottom: -1rem !important; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-n3, +.mx-n3 { + margin-left: -1rem !important; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-n4 { + margin: -1.5rem !important; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-n4, +.my-n4 { + margin-top: -1.5rem !important; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-n4, +.mx-n4 { + margin-right: -1.5rem !important; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-n4, +.my-n4 { + margin-bottom: -1.5rem !important; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-n4, +.mx-n4 { + margin-left: -1.5rem !important; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-n5 { + margin: -3rem !important; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-n5, +.my-n5 { + margin-top: -3rem !important; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-n5, +.mx-n5 { + margin-right: -3rem !important; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-n5, +.my-n5 { + margin-bottom: -3rem !important; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-n5, +.mx-n5 { + margin-left: -3rem !important; +} + +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-auto { + margin: auto !important; +} + +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-auto, +.my-auto { + margin-top: auto !important; +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-auto, +.mx-auto { + margin-right: auto !important; +} + +/* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-auto, +.my-auto { + margin-bottom: auto !important; +} + +/* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-auto, +.mx-auto { + margin-left: auto !important; +} + +@media (min-width: 576px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-0 { + margin: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-0, + .my-sm-0 { + margin-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-0, + .mx-sm-0 { + margin-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-0, + .my-sm-0 { + margin-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-0, + .mx-sm-0 { + margin-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-1 { + margin: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-1, + .my-sm-1 { + margin-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-1, + .mx-sm-1 { + margin-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-1, + .my-sm-1 { + margin-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-1, + .mx-sm-1 { + margin-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-2 { + margin: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-2, + .my-sm-2 { + margin-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-2, + .mx-sm-2 { + margin-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-2, + .my-sm-2 { + margin-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-2, + .mx-sm-2 { + margin-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-3 { + margin: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-3, + .my-sm-3 { + margin-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-3, + .mx-sm-3 { + margin-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-3, + .my-sm-3 { + margin-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-3, + .mx-sm-3 { + margin-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-4 { + margin: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-4, + .my-sm-4 { + margin-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-4, + .mx-sm-4 { + margin-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-4, + .my-sm-4 { + margin-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-4, + .mx-sm-4 { + margin-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-5 { + margin: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-5, + .my-sm-5 { + margin-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-5, + .mx-sm-5 { + margin-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-5, + .my-sm-5 { + margin-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-5, + .mx-sm-5 { + margin-left: 3rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-sm-0 { + padding: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-sm-0, + .py-sm-0 { + padding-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-sm-0, + .px-sm-0 { + padding-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-sm-0, + .py-sm-0 { + padding-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-sm-0, + .px-sm-0 { + padding-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-sm-1 { + padding: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-sm-1, + .py-sm-1 { + padding-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-sm-1, + .px-sm-1 { + padding-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-sm-1, + .py-sm-1 { + padding-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-sm-1, + .px-sm-1 { + padding-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-sm-2 { + padding: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-sm-2, + .py-sm-2 { + padding-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-sm-2, + .px-sm-2 { + padding-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-sm-2, + .py-sm-2 { + padding-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-sm-2, + .px-sm-2 { + padding-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-sm-3 { + padding: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-sm-3, + .py-sm-3 { + padding-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-sm-3, + .px-sm-3 { + padding-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-sm-3, + .py-sm-3 { + padding-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-sm-3, + .px-sm-3 { + padding-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-sm-4 { + padding: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-sm-4, + .py-sm-4 { + padding-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-sm-4, + .px-sm-4 { + padding-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-sm-4, + .py-sm-4 { + padding-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-sm-4, + .px-sm-4 { + padding-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-sm-5 { + padding: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-sm-5, + .py-sm-5 { + padding-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-sm-5, + .px-sm-5 { + padding-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-sm-5, + .py-sm-5 { + padding-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-sm-5, + .px-sm-5 { + padding-left: 3rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-n1 { + margin: -0.25rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-n1, + .my-sm-n1 { + margin-top: -0.25rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-n1, + .mx-sm-n1 { + margin-right: -0.25rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-n1, + .my-sm-n1 { + margin-bottom: -0.25rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-n1, + .mx-sm-n1 { + margin-left: -0.25rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-n2 { + margin: -0.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-n2, + .my-sm-n2 { + margin-top: -0.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-n2, + .mx-sm-n2 { + margin-right: -0.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-n2, + .my-sm-n2 { + margin-bottom: -0.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-n2, + .mx-sm-n2 { + margin-left: -0.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-n3 { + margin: -1rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-n3, + .my-sm-n3 { + margin-top: -1rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-n3, + .mx-sm-n3 { + margin-right: -1rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-n3, + .my-sm-n3 { + margin-bottom: -1rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-n3, + .mx-sm-n3 { + margin-left: -1rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-n4 { + margin: -1.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-n4, + .my-sm-n4 { + margin-top: -1.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-n4, + .mx-sm-n4 { + margin-right: -1.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-n4, + .my-sm-n4 { + margin-bottom: -1.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-n4, + .mx-sm-n4 { + margin-left: -1.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-n5 { + margin: -3rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-n5, + .my-sm-n5 { + margin-top: -3rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-n5, + .mx-sm-n5 { + margin-right: -3rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-n5, + .my-sm-n5 { + margin-bottom: -3rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-n5, + .mx-sm-n5 { + margin-left: -3rem !important; + } + /* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-auto { + margin: auto !important; + } + /* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-auto, + .my-sm-auto { + margin-top: auto !important; + } + /* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-auto, + .mx-sm-auto { + margin-right: auto !important; + } + /* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-auto, + .my-sm-auto { + margin-bottom: auto !important; + } + /* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-auto, + .mx-sm-auto { + margin-left: auto !important; + } +} + +@media (min-width: 768px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-0 { + margin: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-0, + .my-md-0 { + margin-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-0, + .mx-md-0 { + margin-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-0, + .my-md-0 { + margin-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-0, + .mx-md-0 { + margin-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-1 { + margin: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-1, + .my-md-1 { + margin-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-1, + .mx-md-1 { + margin-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-1, + .my-md-1 { + margin-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-1, + .mx-md-1 { + margin-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-2 { + margin: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-2, + .my-md-2 { + margin-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-2, + .mx-md-2 { + margin-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-2, + .my-md-2 { + margin-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-2, + .mx-md-2 { + margin-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-3 { + margin: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-3, + .my-md-3 { + margin-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-3, + .mx-md-3 { + margin-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-3, + .my-md-3 { + margin-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-3, + .mx-md-3 { + margin-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-4 { + margin: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-4, + .my-md-4 { + margin-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-4, + .mx-md-4 { + margin-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-4, + .my-md-4 { + margin-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-4, + .mx-md-4 { + margin-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-5 { + margin: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-5, + .my-md-5 { + margin-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-5, + .mx-md-5 { + margin-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-5, + .my-md-5 { + margin-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-5, + .mx-md-5 { + margin-left: 3rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-md-0 { + padding: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-md-0, + .py-md-0 { + padding-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-md-0, + .px-md-0 { + padding-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-md-0, + .py-md-0 { + padding-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-md-0, + .px-md-0 { + padding-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-md-1 { + padding: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-md-1, + .py-md-1 { + padding-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-md-1, + .px-md-1 { + padding-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-md-1, + .py-md-1 { + padding-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-md-1, + .px-md-1 { + padding-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-md-2 { + padding: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-md-2, + .py-md-2 { + padding-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-md-2, + .px-md-2 { + padding-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-md-2, + .py-md-2 { + padding-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-md-2, + .px-md-2 { + padding-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-md-3 { + padding: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-md-3, + .py-md-3 { + padding-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-md-3, + .px-md-3 { + padding-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-md-3, + .py-md-3 { + padding-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-md-3, + .px-md-3 { + padding-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-md-4 { + padding: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-md-4, + .py-md-4 { + padding-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-md-4, + .px-md-4 { + padding-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-md-4, + .py-md-4 { + padding-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-md-4, + .px-md-4 { + padding-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-md-5 { + padding: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-md-5, + .py-md-5 { + padding-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-md-5, + .px-md-5 { + padding-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-md-5, + .py-md-5 { + padding-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-md-5, + .px-md-5 { + padding-left: 3rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-n1 { + margin: -0.25rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-n1, + .my-md-n1 { + margin-top: -0.25rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-n1, + .mx-md-n1 { + margin-right: -0.25rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-n1, + .my-md-n1 { + margin-bottom: -0.25rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-n1, + .mx-md-n1 { + margin-left: -0.25rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-n2 { + margin: -0.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-n2, + .my-md-n2 { + margin-top: -0.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-n2, + .mx-md-n2 { + margin-right: -0.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-n2, + .my-md-n2 { + margin-bottom: -0.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-n2, + .mx-md-n2 { + margin-left: -0.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-n3 { + margin: -1rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-n3, + .my-md-n3 { + margin-top: -1rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-n3, + .mx-md-n3 { + margin-right: -1rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-n3, + .my-md-n3 { + margin-bottom: -1rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-n3, + .mx-md-n3 { + margin-left: -1rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-n4 { + margin: -1.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-n4, + .my-md-n4 { + margin-top: -1.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-n4, + .mx-md-n4 { + margin-right: -1.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-n4, + .my-md-n4 { + margin-bottom: -1.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-n4, + .mx-md-n4 { + margin-left: -1.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-n5 { + margin: -3rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-n5, + .my-md-n5 { + margin-top: -3rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-n5, + .mx-md-n5 { + margin-right: -3rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-n5, + .my-md-n5 { + margin-bottom: -3rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-n5, + .mx-md-n5 { + margin-left: -3rem !important; + } + /* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-auto { + margin: auto !important; + } + /* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-auto, + .my-md-auto { + margin-top: auto !important; + } + /* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-auto, + .mx-md-auto { + margin-right: auto !important; + } + /* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-auto, + .my-md-auto { + margin-bottom: auto !important; + } + /* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-auto, + .mx-md-auto { + margin-left: auto !important; + } +} + +@media (min-width: 992px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-0 { + margin: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-0, + .my-lg-0 { + margin-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-0, + .mx-lg-0 { + margin-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-0, + .my-lg-0 { + margin-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-0, + .mx-lg-0 { + margin-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-1 { + margin: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-1, + .my-lg-1 { + margin-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-1, + .mx-lg-1 { + margin-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-1, + .my-lg-1 { + margin-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-1, + .mx-lg-1 { + margin-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-2 { + margin: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-2, + .my-lg-2 { + margin-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-2, + .mx-lg-2 { + margin-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-2, + .my-lg-2 { + margin-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-2, + .mx-lg-2 { + margin-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-3 { + margin: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-3, + .my-lg-3 { + margin-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-3, + .mx-lg-3 { + margin-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-3, + .my-lg-3 { + margin-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-3, + .mx-lg-3 { + margin-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-4 { + margin: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-4, + .my-lg-4 { + margin-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-4, + .mx-lg-4 { + margin-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-4, + .my-lg-4 { + margin-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-4, + .mx-lg-4 { + margin-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-5 { + margin: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-5, + .my-lg-5 { + margin-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-5, + .mx-lg-5 { + margin-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-5, + .my-lg-5 { + margin-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-5, + .mx-lg-5 { + margin-left: 3rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-lg-0 { + padding: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-lg-0, + .py-lg-0 { + padding-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-lg-0, + .px-lg-0 { + padding-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-lg-0, + .py-lg-0 { + padding-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-lg-0, + .px-lg-0 { + padding-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-lg-1 { + padding: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-lg-1, + .py-lg-1 { + padding-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-lg-1, + .px-lg-1 { + padding-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-lg-1, + .py-lg-1 { + padding-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-lg-1, + .px-lg-1 { + padding-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-lg-2 { + padding: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-lg-2, + .py-lg-2 { + padding-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-lg-2, + .px-lg-2 { + padding-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-lg-2, + .py-lg-2 { + padding-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-lg-2, + .px-lg-2 { + padding-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-lg-3 { + padding: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-lg-3, + .py-lg-3 { + padding-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-lg-3, + .px-lg-3 { + padding-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-lg-3, + .py-lg-3 { + padding-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-lg-3, + .px-lg-3 { + padding-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-lg-4 { + padding: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-lg-4, + .py-lg-4 { + padding-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-lg-4, + .px-lg-4 { + padding-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-lg-4, + .py-lg-4 { + padding-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-lg-4, + .px-lg-4 { + padding-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-lg-5 { + padding: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-lg-5, + .py-lg-5 { + padding-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-lg-5, + .px-lg-5 { + padding-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-lg-5, + .py-lg-5 { + padding-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-lg-5, + .px-lg-5 { + padding-left: 3rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-n1 { + margin: -0.25rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-n1, + .my-lg-n1 { + margin-top: -0.25rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-n1, + .mx-lg-n1 { + margin-right: -0.25rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-n1, + .my-lg-n1 { + margin-bottom: -0.25rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-n1, + .mx-lg-n1 { + margin-left: -0.25rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-n2 { + margin: -0.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-n2, + .my-lg-n2 { + margin-top: -0.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-n2, + .mx-lg-n2 { + margin-right: -0.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-n2, + .my-lg-n2 { + margin-bottom: -0.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-n2, + .mx-lg-n2 { + margin-left: -0.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-n3 { + margin: -1rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-n3, + .my-lg-n3 { + margin-top: -1rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-n3, + .mx-lg-n3 { + margin-right: -1rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-n3, + .my-lg-n3 { + margin-bottom: -1rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-n3, + .mx-lg-n3 { + margin-left: -1rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-n4 { + margin: -1.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-n4, + .my-lg-n4 { + margin-top: -1.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-n4, + .mx-lg-n4 { + margin-right: -1.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-n4, + .my-lg-n4 { + margin-bottom: -1.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-n4, + .mx-lg-n4 { + margin-left: -1.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-n5 { + margin: -3rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-n5, + .my-lg-n5 { + margin-top: -3rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-n5, + .mx-lg-n5 { + margin-right: -3rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-n5, + .my-lg-n5 { + margin-bottom: -3rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-n5, + .mx-lg-n5 { + margin-left: -3rem !important; + } + /* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-auto { + margin: auto !important; + } + /* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-auto, + .my-lg-auto { + margin-top: auto !important; + } + /* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-auto, + .mx-lg-auto { + margin-right: auto !important; + } + /* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-auto, + .my-lg-auto { + margin-bottom: auto !important; + } + /* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-auto, + .mx-lg-auto { + margin-left: auto !important; + } +} + +@media (min-width: 1200px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-0 { + margin: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-0, + .my-xl-0 { + margin-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-0, + .mx-xl-0 { + margin-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-0, + .my-xl-0 { + margin-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-0, + .mx-xl-0 { + margin-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-1 { + margin: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-1, + .my-xl-1 { + margin-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-1, + .mx-xl-1 { + margin-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-1, + .my-xl-1 { + margin-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-1, + .mx-xl-1 { + margin-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-2 { + margin: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-2, + .my-xl-2 { + margin-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-2, + .mx-xl-2 { + margin-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-2, + .my-xl-2 { + margin-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-2, + .mx-xl-2 { + margin-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-3 { + margin: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-3, + .my-xl-3 { + margin-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-3, + .mx-xl-3 { + margin-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-3, + .my-xl-3 { + margin-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-3, + .mx-xl-3 { + margin-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-4 { + margin: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-4, + .my-xl-4 { + margin-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-4, + .mx-xl-4 { + margin-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-4, + .my-xl-4 { + margin-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-4, + .mx-xl-4 { + margin-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-5 { + margin: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-5, + .my-xl-5 { + margin-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-5, + .mx-xl-5 { + margin-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-5, + .my-xl-5 { + margin-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-5, + .mx-xl-5 { + margin-left: 3rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-xl-0 { + padding: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-xl-0, + .py-xl-0 { + padding-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-xl-0, + .px-xl-0 { + padding-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-xl-0, + .py-xl-0 { + padding-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-xl-0, + .px-xl-0 { + padding-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-xl-1 { + padding: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-xl-1, + .py-xl-1 { + padding-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-xl-1, + .px-xl-1 { + padding-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-xl-1, + .py-xl-1 { + padding-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-xl-1, + .px-xl-1 { + padding-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-xl-2 { + padding: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-xl-2, + .py-xl-2 { + padding-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-xl-2, + .px-xl-2 { + padding-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-xl-2, + .py-xl-2 { + padding-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-xl-2, + .px-xl-2 { + padding-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-xl-3 { + padding: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-xl-3, + .py-xl-3 { + padding-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-xl-3, + .px-xl-3 { + padding-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-xl-3, + .py-xl-3 { + padding-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-xl-3, + .px-xl-3 { + padding-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-xl-4 { + padding: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-xl-4, + .py-xl-4 { + padding-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-xl-4, + .px-xl-4 { + padding-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-xl-4, + .py-xl-4 { + padding-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-xl-4, + .px-xl-4 { + padding-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-xl-5 { + padding: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-xl-5, + .py-xl-5 { + padding-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-xl-5, + .px-xl-5 { + padding-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-xl-5, + .py-xl-5 { + padding-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-xl-5, + .px-xl-5 { + padding-left: 3rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-n1 { + margin: -0.25rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-n1, + .my-xl-n1 { + margin-top: -0.25rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-n1, + .mx-xl-n1 { + margin-right: -0.25rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-n1, + .my-xl-n1 { + margin-bottom: -0.25rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-n1, + .mx-xl-n1 { + margin-left: -0.25rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-n2 { + margin: -0.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-n2, + .my-xl-n2 { + margin-top: -0.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-n2, + .mx-xl-n2 { + margin-right: -0.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-n2, + .my-xl-n2 { + margin-bottom: -0.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-n2, + .mx-xl-n2 { + margin-left: -0.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-n3 { + margin: -1rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-n3, + .my-xl-n3 { + margin-top: -1rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-n3, + .mx-xl-n3 { + margin-right: -1rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-n3, + .my-xl-n3 { + margin-bottom: -1rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-n3, + .mx-xl-n3 { + margin-left: -1rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-n4 { + margin: -1.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-n4, + .my-xl-n4 { + margin-top: -1.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-n4, + .mx-xl-n4 { + margin-right: -1.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-n4, + .my-xl-n4 { + margin-bottom: -1.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-n4, + .mx-xl-n4 { + margin-left: -1.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-n5 { + margin: -3rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-n5, + .my-xl-n5 { + margin-top: -3rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-n5, + .mx-xl-n5 { + margin-right: -3rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-n5, + .my-xl-n5 { + margin-bottom: -3rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-n5, + .mx-xl-n5 { + margin-left: -3rem !important; + } + /* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-auto { + margin: auto !important; + } + /* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-auto, + .my-xl-auto { + margin-top: auto !important; + } + /* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-auto, + .mx-xl-auto { + margin-right: auto !important; + } + /* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-auto, + .my-xl-auto { + margin-bottom: auto !important; + } + /* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-auto, + .mx-xl-auto { + margin-left: auto !important; + } +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-monospace { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-justify { + text-align: justify !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-wrap { + white-space: normal !important; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-nowrap { + white-space: nowrap !important; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-left { + text-align: left !important; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-right { + text-align: right !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-center { + text-align: center !important; +} + +@media (min-width: 576px) { + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-sm-left { + text-align: left !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-sm-right { + text-align: right !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-sm-center { + text-align: center !important; + } +} + +@media (min-width: 768px) { + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-md-left { + text-align: left !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-md-right { + text-align: right !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-md-center { + text-align: center !important; + } +} + +@media (min-width: 992px) { + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-lg-left { + text-align: left !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-lg-right { + text-align: right !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-lg-center { + text-align: center !important; + } +} + +@media (min-width: 1200px) { + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-xl-left { + text-align: left !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-xl-right { + text-align: right !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-xl-center { + text-align: center !important; + } +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-lowercase { + text-transform: lowercase !important; +} + +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-uppercase { + text-transform: uppercase !important; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-capitalize { + text-transform: capitalize !important; +} + +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.font-weight-light { + font-weight: 300 !important; +} + +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.font-weight-lighter { + font-weight: lighter !important; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.font-weight-normal { + font-weight: 400 !important; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.font-weight-bold { + font-weight: 700 !important; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.font-weight-bolder { + font-weight: bolder !important; +} + +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.font-italic { + font-style: italic !important; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-white { + color: #fff !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-primary { + color: #007bff !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-primary:hover, a.text-primary:focus { + color: #0056b3 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-secondary { + color: #6c757d !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-secondary:hover, a.text-secondary:focus { + color: #494f54 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-success { + color: #28a745 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-success:hover, a.text-success:focus { + color: #19692c !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-info { + color: #17a2b8 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-info:hover, a.text-info:focus { + color: #0f6674 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-warning { + color: #ffc107 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-warning:hover, a.text-warning:focus { + color: #ba8b00 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-danger { + color: #dc3545 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-danger:hover, a.text-danger:focus { + color: #a71d2a !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-light { + color: #f8f9fa !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-light:hover, a.text-light:focus { + color: #cbd3da !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-dark { + color: #343a40 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-dark:hover, a.text-dark:focus { + color: #121416 !important; +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-body { + color: #212529 !important; +} + +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-muted { + color: #6c757d !important; +} + +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-black-50 { + color: rgba(0, 0, 0, 0.5) !important; +} + +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-white-50 { + color: rgba(255, 255, 255, 0.5) !important; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +/* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-decoration-none { + text-decoration: none !important; +} + +/* line 65, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-break { + word-break: break-word !important; + overflow-wrap: break-word !important; +} + +/* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-reset { + color: inherit !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_visibility.scss */ +.visible { + visibility: visible !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_visibility.scss */ +.invisible { + visibility: hidden !important; +} + +@media print { + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + *, + *::before, + *::after { + text-shadow: none !important; + box-shadow: none !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + a:not(.btn) { + text-decoration: underline; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + abbr[title]::after { + content: " (" attr(title) ")"; + } + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + pre { + white-space: pre-wrap !important; + } + /* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + pre, + blockquote { + border: 1px solid #adb5bd; + page-break-inside: avoid; + } + /* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + thead { + display: table-header-group; + } + /* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + tr, + img { + page-break-inside: avoid; + } + /* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + /* line 79, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + h2, + h3 { + page-break-after: avoid; + } + @page { + size: a3; + } + /* line 92, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + body { + min-width: 992px !important; + } + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .container { + min-width: 992px !important; + } + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .navbar { + display: none; + } + /* line 103, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .badge { + border: 1px solid #000; + } + /* line 107, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .table { + border-collapse: collapse !important; + } + /* line 110, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .table td, + .table th { + background-color: #fff !important; + } + /* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .table-bordered th, + .table-bordered td { + border: 1px solid #dee2e6 !important; + } + /* line 123, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .table-dark { + color: inherit; + } + /* line 126, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .table-dark th, + .table-dark td, + .table-dark thead th, + .table-dark tbody + tbody { + border-color: #dee2e6; + } + /* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .table .thead-dark th { + color: inherit; + border-color: #dee2e6; + } +} +/*! + * Datepicker for Bootstrap v1.9.0 (https://github.com/uxsolutions/bootstrap-datepicker) + * + * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) + */ +/* line 8, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker { + padding: 4px; + border-radius: 4px; + direction: ltr; +} + +/* line 15, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-inline { + width: 220px; +} + +/* line 18, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-rtl { + direction: rtl; +} + +/* line 21, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-rtl.dropdown-menu { + left: auto; +} + +/* line 24, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-rtl table tr td span { + float: right; +} + +/* line 27, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown { + top: 0; + left: 0; +} + +/* line 31, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown:before { + content: ''; + display: inline-block; + border-left: 7px solid transparent; + border-right: 7px solid transparent; + border-bottom: 7px solid #999; + border-top: 0; + border-bottom-color: rgba(0, 0, 0, 0.2); + position: absolute; +} + +/* line 41, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown:after { + content: ''; + display: inline-block; + border-left: 6px solid transparent; + border-right: 6px solid transparent; + border-bottom: 6px solid #fff; + border-top: 0; + position: absolute; +} + +/* line 50, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown.datepicker-orient-left:before { + left: 6px; +} + +/* line 53, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown.datepicker-orient-left:after { + left: 7px; +} + +/* line 56, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown.datepicker-orient-right:before { + right: 6px; +} + +/* line 59, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown.datepicker-orient-right:after { + right: 7px; +} + +/* line 62, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown.datepicker-orient-bottom:before { + top: -7px; +} + +/* line 65, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown.datepicker-orient-bottom:after { + top: -6px; +} + +/* line 68, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown.datepicker-orient-top:before { + bottom: -7px; + border-bottom: 0; + border-top: 7px solid #999; +} + +/* line 73, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker-dropdown.datepicker-orient-top:after { + bottom: -6px; + border-bottom: 0; + border-top: 6px solid #fff; +} + +/* line 78, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table { + margin: 0; + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +/* line 87, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker td, +.datepicker th { + text-align: center; + width: 20px; + height: 20px; + border-radius: 4px; + border: none; +} + +/* line 97, app/assets/stylesheets/bootstrap-datepicker.scss */ +.table-striped .datepicker table tr td, +.table-striped .datepicker table tr th { + background-color: transparent; +} + +/* line 101, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.day:hover, +.datepicker table tr td.day.focused { + background: #eee; + cursor: pointer; +} + +/* line 106, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.old, +.datepicker table tr td.new { + color: #999; +} + +/* line 110, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.disabled, +.datepicker table tr td.disabled:hover { + background: none; + color: #999; + cursor: default; +} + +/* line 116, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.highlighted { + background: #d9edf7; + border-radius: 0; +} + +/* line 120, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.today, +.datepicker table tr td.today:hover, +.datepicker table tr td.today.disabled, +.datepicker table tr td.today.disabled:hover { + background-color: #fde19a; + background-image: -webkit-gradient(linear, left top, left bottom, from(#fdd49a), to(#fdf59a)); + background-image: linear-gradient(to bottom, #fdd49a, #fdf59a); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0); + border-color: #fdf59a #fdf59a #fbed50; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + color: #000; +} + +/* line 138, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.today:hover, +.datepicker table tr td.today:hover:hover, +.datepicker table tr td.today.disabled:hover, +.datepicker table tr td.today.disabled:hover:hover, +.datepicker table tr td.today:active, +.datepicker table tr td.today:hover:active, +.datepicker table tr td.today.disabled:active, +.datepicker table tr td.today.disabled:hover:active, +.datepicker table tr td.today.active, +.datepicker table tr td.today:hover.active, +.datepicker table tr td.today.disabled.active, +.datepicker table tr td.today.disabled:hover.active, +.datepicker table tr td.today.disabled, +.datepicker table tr td.today:hover.disabled, +.datepicker table tr td.today.disabled.disabled, +.datepicker table tr td.today.disabled:hover.disabled, +.datepicker table tr td.today[disabled], +.datepicker table tr td.today:hover[disabled], +.datepicker table tr td.today.disabled[disabled], +.datepicker table tr td.today.disabled:hover[disabled] { + background-color: #fdf59a; +} + +/* line 160, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.today:active, +.datepicker table tr td.today:hover:active, +.datepicker table tr td.today.disabled:active, +.datepicker table tr td.today.disabled:hover:active, +.datepicker table tr td.today.active, +.datepicker table tr td.today:hover.active, +.datepicker table tr td.today.disabled.active, +.datepicker table tr td.today.disabled:hover.active { + background-color: #fbf069 \9; +} + +/* line 170, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.today:hover:hover { + color: #000; +} + +/* line 173, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.today.active:hover { + color: #fff; +} + +/* line 176, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.range, +.datepicker table tr td.range:hover, +.datepicker table tr td.range.disabled, +.datepicker table tr td.range.disabled:hover { + background: #eee; + border-radius: 0; +} + +/* line 185, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.range.today, +.datepicker table tr td.range.today:hover, +.datepicker table tr td.range.today.disabled, +.datepicker table tr td.range.today.disabled:hover { + background-color: #f3d17a; + background-image: -webkit-gradient(linear, left top, left bottom, from(#f3c17a), to(#f3e97a)); + background-image: linear-gradient(to bottom, #f3c17a, #f3e97a); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0); + border-color: #f3e97a #f3e97a #edde34; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + border-radius: 0; +} + +/* line 205, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.range.today:hover, +.datepicker table tr td.range.today:hover:hover, +.datepicker table tr td.range.today.disabled:hover, +.datepicker table tr td.range.today.disabled:hover:hover, +.datepicker table tr td.range.today:active, +.datepicker table tr td.range.today:hover:active, +.datepicker table tr td.range.today.disabled:active, +.datepicker table tr td.range.today.disabled:hover:active, +.datepicker table tr td.range.today.active, +.datepicker table tr td.range.today:hover.active, +.datepicker table tr td.range.today.disabled.active, +.datepicker table tr td.range.today.disabled:hover.active, +.datepicker table tr td.range.today.disabled, +.datepicker table tr td.range.today:hover.disabled, +.datepicker table tr td.range.today.disabled.disabled, +.datepicker table tr td.range.today.disabled:hover.disabled, +.datepicker table tr td.range.today[disabled], +.datepicker table tr td.range.today:hover[disabled], +.datepicker table tr td.range.today.disabled[disabled], +.datepicker table tr td.range.today.disabled:hover[disabled] { + background-color: #f3e97a; +} + +/* line 227, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.range.today:active, +.datepicker table tr td.range.today:hover:active, +.datepicker table tr td.range.today.disabled:active, +.datepicker table tr td.range.today.disabled:hover:active, +.datepicker table tr td.range.today.active, +.datepicker table tr td.range.today:hover.active, +.datepicker table tr td.range.today.disabled.active, +.datepicker table tr td.range.today.disabled:hover.active { + background-color: #efe24b \9; +} + +/* line 237, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.selected, +.datepicker table tr td.selected:hover, +.datepicker table tr td.selected.disabled, +.datepicker table tr td.selected.disabled:hover { + background-color: #9e9e9e; + background-image: -webkit-gradient(linear, left top, left bottom, from(#b3b3b3), to(#808080)); + background-image: linear-gradient(to bottom, #b3b3b3, #808080); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0); + border-color: #808080 #808080 #595959; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + color: #fff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} + +/* line 256, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.selected:hover, +.datepicker table tr td.selected:hover:hover, +.datepicker table tr td.selected.disabled:hover, +.datepicker table tr td.selected.disabled:hover:hover, +.datepicker table tr td.selected:active, +.datepicker table tr td.selected:hover:active, +.datepicker table tr td.selected.disabled:active, +.datepicker table tr td.selected.disabled:hover:active, +.datepicker table tr td.selected.active, +.datepicker table tr td.selected:hover.active, +.datepicker table tr td.selected.disabled.active, +.datepicker table tr td.selected.disabled:hover.active, +.datepicker table tr td.selected.disabled, +.datepicker table tr td.selected:hover.disabled, +.datepicker table tr td.selected.disabled.disabled, +.datepicker table tr td.selected.disabled:hover.disabled, +.datepicker table tr td.selected[disabled], +.datepicker table tr td.selected:hover[disabled], +.datepicker table tr td.selected.disabled[disabled], +.datepicker table tr td.selected.disabled:hover[disabled] { + background-color: #808080; +} + +/* line 278, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.selected:active, +.datepicker table tr td.selected:hover:active, +.datepicker table tr td.selected.disabled:active, +.datepicker table tr td.selected.disabled:hover:active, +.datepicker table tr td.selected.active, +.datepicker table tr td.selected:hover.active, +.datepicker table tr td.selected.disabled.active, +.datepicker table tr td.selected.disabled:hover.active { + background-color: #666666 \9; +} + +/* line 288, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.active, +.datepicker table tr td.active:hover, +.datepicker table tr td.active.disabled, +.datepicker table tr td.active.disabled:hover { + background-color: #006dcc; + background-image: -webkit-gradient(linear, left top, left bottom, from(#08c), to(#0044cc)); + background-image: linear-gradient(to bottom, #08c, #0044cc); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0); + border-color: #0044cc #0044cc #002a80; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + color: #fff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} + +/* line 307, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.active:hover, +.datepicker table tr td.active:hover:hover, +.datepicker table tr td.active.disabled:hover, +.datepicker table tr td.active.disabled:hover:hover, +.datepicker table tr td.active:active, +.datepicker table tr td.active:hover:active, +.datepicker table tr td.active.disabled:active, +.datepicker table tr td.active.disabled:hover:active, +.datepicker table tr td.active.active, +.datepicker table tr td.active:hover.active, +.datepicker table tr td.active.disabled.active, +.datepicker table tr td.active.disabled:hover.active, +.datepicker table tr td.active.disabled, +.datepicker table tr td.active:hover.disabled, +.datepicker table tr td.active.disabled.disabled, +.datepicker table tr td.active.disabled:hover.disabled, +.datepicker table tr td.active[disabled], +.datepicker table tr td.active:hover[disabled], +.datepicker table tr td.active.disabled[disabled], +.datepicker table tr td.active.disabled:hover[disabled] { + background-color: #0044cc; +} + +/* line 329, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td.active:active, +.datepicker table tr td.active:hover:active, +.datepicker table tr td.active.disabled:active, +.datepicker table tr td.active.disabled:hover:active, +.datepicker table tr td.active.active, +.datepicker table tr td.active:hover.active, +.datepicker table tr td.active.disabled.active, +.datepicker table tr td.active.disabled:hover.active { + background-color: #003399 \9; +} + +/* line 339, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td span { + display: block; + width: 23%; + height: 54px; + line-height: 54px; + float: left; + margin: 1%; + cursor: pointer; + border-radius: 4px; +} + +/* line 351, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td span:hover, +.datepicker table tr td span.focused { + background: #eee; +} + +/* line 355, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td span.disabled, +.datepicker table tr td span.disabled:hover { + background: none; + color: #999; + cursor: default; +} + +/* line 361, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td span.active, +.datepicker table tr td span.active:hover, +.datepicker table tr td span.active.disabled, +.datepicker table tr td span.active.disabled:hover { + background-color: #006dcc; + background-image: -webkit-gradient(linear, left top, left bottom, from(#08c), to(#0044cc)); + background-image: linear-gradient(to bottom, #08c, #0044cc); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0); + border-color: #0044cc #0044cc #002a80; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + color: #fff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} + +/* line 380, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td span.active:hover, +.datepicker table tr td span.active:hover:hover, +.datepicker table tr td span.active.disabled:hover, +.datepicker table tr td span.active.disabled:hover:hover, +.datepicker table tr td span.active:active, +.datepicker table tr td span.active:hover:active, +.datepicker table tr td span.active.disabled:active, +.datepicker table tr td span.active.disabled:hover:active, +.datepicker table tr td span.active.active, +.datepicker table tr td span.active:hover.active, +.datepicker table tr td span.active.disabled.active, +.datepicker table tr td span.active.disabled:hover.active, +.datepicker table tr td span.active.disabled, +.datepicker table tr td span.active:hover.disabled, +.datepicker table tr td span.active.disabled.disabled, +.datepicker table tr td span.active.disabled:hover.disabled, +.datepicker table tr td span.active[disabled], +.datepicker table tr td span.active:hover[disabled], +.datepicker table tr td span.active.disabled[disabled], +.datepicker table tr td span.active.disabled:hover[disabled] { + background-color: #0044cc; +} + +/* line 402, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td span.active:active, +.datepicker table tr td span.active:hover:active, +.datepicker table tr td span.active.disabled:active, +.datepicker table tr td span.active.disabled:hover:active, +.datepicker table tr td span.active.active, +.datepicker table tr td span.active:hover.active, +.datepicker table tr td span.active.disabled.active, +.datepicker table tr td span.active.disabled:hover.active { + background-color: #003399 \9; +} + +/* line 412, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker table tr td span.old, +.datepicker table tr td span.new { + color: #999; +} + +/* line 416, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker .datepicker-switch { + width: 145px; +} + +/* line 419, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker .datepicker-switch, +.datepicker .prev, +.datepicker .next, +.datepicker tfoot tr th { + cursor: pointer; +} + +/* line 425, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker .datepicker-switch:hover, +.datepicker .prev:hover, +.datepicker .next:hover, +.datepicker tfoot tr th:hover { + background: #eee; +} + +/* line 431, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker .prev.disabled, +.datepicker .next.disabled { + visibility: hidden; +} + +/* line 435, app/assets/stylesheets/bootstrap-datepicker.scss */ +.datepicker .cw { + font-size: 10px; + width: 12px; + padding: 0 2px 0 5px; + vertical-align: middle; +} + +/* line 441, app/assets/stylesheets/bootstrap-datepicker.scss */ +.input-append.date .add-on, +.input-prepend.date .add-on { + cursor: pointer; +} + +/* line 445, app/assets/stylesheets/bootstrap-datepicker.scss */ +.input-append.date .add-on i, +.input-prepend.date .add-on i { + margin-top: 3px; +} + +/* line 449, app/assets/stylesheets/bootstrap-datepicker.scss */ +.input-daterange input { + text-align: center; +} + +/* line 452, app/assets/stylesheets/bootstrap-datepicker.scss */ +.input-daterange input:first-child { + border-radius: 3px 0 0 3px; +} + +/* line 457, app/assets/stylesheets/bootstrap-datepicker.scss */ +.input-daterange input:last-child { + border-radius: 0 3px 3px 0; +} + +/* line 462, app/assets/stylesheets/bootstrap-datepicker.scss */ +.input-daterange .add-on { + display: inline-block; + width: auto; + min-width: 16px; + height: 18px; + padding: 4px 5px; + font-weight: normal; + line-height: 18px; + text-align: center; + text-shadow: 0 1px 0 #fff; + vertical-align: middle; + background-color: #eee; + border: 1px solid #ccc; + margin-left: -5px; + margin-right: -5px; +} +/*! + * Datepicker for Bootstrap v1.9.0 (https://github.com/uxsolutions/bootstrap-datepicker) + * + * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) + */ +/* line 8, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker { + padding: 4px; + border-radius: 4px; + direction: ltr; +} + +/* line 15, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-inline { + width: 220px; +} + +/* line 18, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-rtl { + direction: rtl; +} + +/* line 21, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-rtl.dropdown-menu { + left: auto; +} + +/* line 24, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-rtl table tr td span { + float: right; +} + +/* line 27, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown { + top: 0; + left: 0; +} + +/* line 31, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown:before { + content: ''; + display: inline-block; + border-left: 7px solid transparent; + border-right: 7px solid transparent; + border-bottom: 7px solid #999; + border-top: 0; + border-bottom-color: rgba(0, 0, 0, 0.2); + position: absolute; +} + +/* line 41, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown:after { + content: ''; + display: inline-block; + border-left: 6px solid transparent; + border-right: 6px solid transparent; + border-bottom: 6px solid #fff; + border-top: 0; + position: absolute; +} + +/* line 50, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown.datepicker-orient-left:before { + left: 6px; +} + +/* line 53, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown.datepicker-orient-left:after { + left: 7px; +} + +/* line 56, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown.datepicker-orient-right:before { + right: 6px; +} + +/* line 59, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown.datepicker-orient-right:after { + right: 7px; +} + +/* line 62, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown.datepicker-orient-bottom:before { + top: -7px; +} + +/* line 65, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown.datepicker-orient-bottom:after { + top: -6px; +} + +/* line 68, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown.datepicker-orient-top:before { + bottom: -7px; + border-bottom: 0; + border-top: 7px solid #999; +} + +/* line 73, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker-dropdown.datepicker-orient-top:after { + bottom: -6px; + border-bottom: 0; + border-top: 6px solid #fff; +} + +/* line 78, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table { + margin: 0; + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +/* line 87, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker td, +.datepicker th { + text-align: center; + width: 20px; + height: 20px; + border-radius: 4px; + border: none; +} + +/* line 97, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.table-striped .datepicker table tr td, +.table-striped .datepicker table tr th { + background-color: transparent; +} + +/* line 101, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.day:hover, +.datepicker table tr td.day.focused { + background: #eee; + cursor: pointer; +} + +/* line 106, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.old, +.datepicker table tr td.new { + color: #999; +} + +/* line 110, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.disabled, +.datepicker table tr td.disabled:hover { + background: none; + color: #999; + cursor: default; +} + +/* line 116, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.highlighted { + background: #d9edf7; + border-radius: 0; +} + +/* line 120, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.today, +.datepicker table tr td.today:hover, +.datepicker table tr td.today.disabled, +.datepicker table tr td.today.disabled:hover { + background-color: #fde19a; + background-image: -webkit-gradient(linear, left top, left bottom, from(#fdd49a), to(#fdf59a)); + background-image: linear-gradient(to bottom, #fdd49a, #fdf59a); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0); + border-color: #fdf59a #fdf59a #fbed50; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + color: #000; +} + +/* line 138, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.today:hover, +.datepicker table tr td.today:hover:hover, +.datepicker table tr td.today.disabled:hover, +.datepicker table tr td.today.disabled:hover:hover, +.datepicker table tr td.today:active, +.datepicker table tr td.today:hover:active, +.datepicker table tr td.today.disabled:active, +.datepicker table tr td.today.disabled:hover:active, +.datepicker table tr td.today.active, +.datepicker table tr td.today:hover.active, +.datepicker table tr td.today.disabled.active, +.datepicker table tr td.today.disabled:hover.active, +.datepicker table tr td.today.disabled, +.datepicker table tr td.today:hover.disabled, +.datepicker table tr td.today.disabled.disabled, +.datepicker table tr td.today.disabled:hover.disabled, +.datepicker table tr td.today[disabled], +.datepicker table tr td.today:hover[disabled], +.datepicker table tr td.today.disabled[disabled], +.datepicker table tr td.today.disabled:hover[disabled] { + background-color: #fdf59a; +} + +/* line 160, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.today:active, +.datepicker table tr td.today:hover:active, +.datepicker table tr td.today.disabled:active, +.datepicker table tr td.today.disabled:hover:active, +.datepicker table tr td.today.active, +.datepicker table tr td.today:hover.active, +.datepicker table tr td.today.disabled.active, +.datepicker table tr td.today.disabled:hover.active { + background-color: #fbf069 \9; +} + +/* line 170, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.today:hover:hover { + color: #000; +} + +/* line 173, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.today.active:hover { + color: #fff; +} + +/* line 176, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.range, +.datepicker table tr td.range:hover, +.datepicker table tr td.range.disabled, +.datepicker table tr td.range.disabled:hover { + background: #eee; + border-radius: 0; +} + +/* line 185, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.range.today, +.datepicker table tr td.range.today:hover, +.datepicker table tr td.range.today.disabled, +.datepicker table tr td.range.today.disabled:hover { + background-color: #f3d17a; + background-image: -webkit-gradient(linear, left top, left bottom, from(#f3c17a), to(#f3e97a)); + background-image: linear-gradient(to bottom, #f3c17a, #f3e97a); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0); + border-color: #f3e97a #f3e97a #edde34; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + border-radius: 0; +} + +/* line 205, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.range.today:hover, +.datepicker table tr td.range.today:hover:hover, +.datepicker table tr td.range.today.disabled:hover, +.datepicker table tr td.range.today.disabled:hover:hover, +.datepicker table tr td.range.today:active, +.datepicker table tr td.range.today:hover:active, +.datepicker table tr td.range.today.disabled:active, +.datepicker table tr td.range.today.disabled:hover:active, +.datepicker table tr td.range.today.active, +.datepicker table tr td.range.today:hover.active, +.datepicker table tr td.range.today.disabled.active, +.datepicker table tr td.range.today.disabled:hover.active, +.datepicker table tr td.range.today.disabled, +.datepicker table tr td.range.today:hover.disabled, +.datepicker table tr td.range.today.disabled.disabled, +.datepicker table tr td.range.today.disabled:hover.disabled, +.datepicker table tr td.range.today[disabled], +.datepicker table tr td.range.today:hover[disabled], +.datepicker table tr td.range.today.disabled[disabled], +.datepicker table tr td.range.today.disabled:hover[disabled] { + background-color: #f3e97a; +} + +/* line 227, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.range.today:active, +.datepicker table tr td.range.today:hover:active, +.datepicker table tr td.range.today.disabled:active, +.datepicker table tr td.range.today.disabled:hover:active, +.datepicker table tr td.range.today.active, +.datepicker table tr td.range.today:hover.active, +.datepicker table tr td.range.today.disabled.active, +.datepicker table tr td.range.today.disabled:hover.active { + background-color: #efe24b \9; +} + +/* line 237, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.selected, +.datepicker table tr td.selected:hover, +.datepicker table tr td.selected.disabled, +.datepicker table tr td.selected.disabled:hover { + background-color: #9e9e9e; + background-image: -webkit-gradient(linear, left top, left bottom, from(#b3b3b3), to(#808080)); + background-image: linear-gradient(to bottom, #b3b3b3, #808080); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0); + border-color: #808080 #808080 #595959; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + color: #fff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} + +/* line 256, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.selected:hover, +.datepicker table tr td.selected:hover:hover, +.datepicker table tr td.selected.disabled:hover, +.datepicker table tr td.selected.disabled:hover:hover, +.datepicker table tr td.selected:active, +.datepicker table tr td.selected:hover:active, +.datepicker table tr td.selected.disabled:active, +.datepicker table tr td.selected.disabled:hover:active, +.datepicker table tr td.selected.active, +.datepicker table tr td.selected:hover.active, +.datepicker table tr td.selected.disabled.active, +.datepicker table tr td.selected.disabled:hover.active, +.datepicker table tr td.selected.disabled, +.datepicker table tr td.selected:hover.disabled, +.datepicker table tr td.selected.disabled.disabled, +.datepicker table tr td.selected.disabled:hover.disabled, +.datepicker table tr td.selected[disabled], +.datepicker table tr td.selected:hover[disabled], +.datepicker table tr td.selected.disabled[disabled], +.datepicker table tr td.selected.disabled:hover[disabled] { + background-color: #808080; +} + +/* line 278, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.selected:active, +.datepicker table tr td.selected:hover:active, +.datepicker table tr td.selected.disabled:active, +.datepicker table tr td.selected.disabled:hover:active, +.datepicker table tr td.selected.active, +.datepicker table tr td.selected:hover.active, +.datepicker table tr td.selected.disabled.active, +.datepicker table tr td.selected.disabled:hover.active { + background-color: #666666 \9; +} + +/* line 288, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.active, +.datepicker table tr td.active:hover, +.datepicker table tr td.active.disabled, +.datepicker table tr td.active.disabled:hover { + background-color: #006dcc; + background-image: -webkit-gradient(linear, left top, left bottom, from(#08c), to(#0044cc)); + background-image: linear-gradient(to bottom, #08c, #0044cc); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0); + border-color: #0044cc #0044cc #002a80; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + color: #fff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} + +/* line 307, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.active:hover, +.datepicker table tr td.active:hover:hover, +.datepicker table tr td.active.disabled:hover, +.datepicker table tr td.active.disabled:hover:hover, +.datepicker table tr td.active:active, +.datepicker table tr td.active:hover:active, +.datepicker table tr td.active.disabled:active, +.datepicker table tr td.active.disabled:hover:active, +.datepicker table tr td.active.active, +.datepicker table tr td.active:hover.active, +.datepicker table tr td.active.disabled.active, +.datepicker table tr td.active.disabled:hover.active, +.datepicker table tr td.active.disabled, +.datepicker table tr td.active:hover.disabled, +.datepicker table tr td.active.disabled.disabled, +.datepicker table tr td.active.disabled:hover.disabled, +.datepicker table tr td.active[disabled], +.datepicker table tr td.active:hover[disabled], +.datepicker table tr td.active.disabled[disabled], +.datepicker table tr td.active.disabled:hover[disabled] { + background-color: #0044cc; +} + +/* line 329, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td.active:active, +.datepicker table tr td.active:hover:active, +.datepicker table tr td.active.disabled:active, +.datepicker table tr td.active.disabled:hover:active, +.datepicker table tr td.active.active, +.datepicker table tr td.active:hover.active, +.datepicker table tr td.active.disabled.active, +.datepicker table tr td.active.disabled:hover.active { + background-color: #003399 \9; +} + +/* line 339, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td span { + display: block; + width: 23%; + height: 54px; + line-height: 54px; + float: left; + margin: 1%; + cursor: pointer; + border-radius: 4px; +} + +/* line 351, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td span:hover, +.datepicker table tr td span.focused { + background: #eee; +} + +/* line 355, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td span.disabled, +.datepicker table tr td span.disabled:hover { + background: none; + color: #999; + cursor: default; +} + +/* line 361, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td span.active, +.datepicker table tr td span.active:hover, +.datepicker table tr td span.active.disabled, +.datepicker table tr td span.active.disabled:hover { + background-color: #006dcc; + background-image: -webkit-gradient(linear, left top, left bottom, from(#08c), to(#0044cc)); + background-image: linear-gradient(to bottom, #08c, #0044cc); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0); + border-color: #0044cc #0044cc #002a80; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + color: #fff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} + +/* line 380, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td span.active:hover, +.datepicker table tr td span.active:hover:hover, +.datepicker table tr td span.active.disabled:hover, +.datepicker table tr td span.active.disabled:hover:hover, +.datepicker table tr td span.active:active, +.datepicker table tr td span.active:hover:active, +.datepicker table tr td span.active.disabled:active, +.datepicker table tr td span.active.disabled:hover:active, +.datepicker table tr td span.active.active, +.datepicker table tr td span.active:hover.active, +.datepicker table tr td span.active.disabled.active, +.datepicker table tr td span.active.disabled:hover.active, +.datepicker table tr td span.active.disabled, +.datepicker table tr td span.active:hover.disabled, +.datepicker table tr td span.active.disabled.disabled, +.datepicker table tr td span.active.disabled:hover.disabled, +.datepicker table tr td span.active[disabled], +.datepicker table tr td span.active:hover[disabled], +.datepicker table tr td span.active.disabled[disabled], +.datepicker table tr td span.active.disabled:hover[disabled] { + background-color: #0044cc; +} + +/* line 402, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td span.active:active, +.datepicker table tr td span.active:hover:active, +.datepicker table tr td span.active.disabled:active, +.datepicker table tr td span.active.disabled:hover:active, +.datepicker table tr td span.active.active, +.datepicker table tr td span.active:hover.active, +.datepicker table tr td span.active.disabled.active, +.datepicker table tr td span.active.disabled:hover.active { + background-color: #003399 \9; +} + +/* line 412, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker table tr td span.old, +.datepicker table tr td span.new { + color: #999; +} + +/* line 416, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker .datepicker-switch { + width: 145px; +} + +/* line 419, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker .datepicker-switch, +.datepicker .prev, +.datepicker .next, +.datepicker tfoot tr th { + cursor: pointer; +} + +/* line 425, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker .datepicker-switch:hover, +.datepicker .prev:hover, +.datepicker .next:hover, +.datepicker tfoot tr th:hover { + background: #eee; +} + +/* line 431, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker .prev.disabled, +.datepicker .next.disabled { + visibility: hidden; +} + +/* line 435, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker .cw { + font-size: 10px; + width: 12px; + padding: 0 2px 0 5px; + vertical-align: middle; +} + +/* line 441, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.input-append.date .add-on, +.input-prepend.date .add-on { + cursor: pointer; +} + +/* line 445, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.input-append.date .add-on i, +.input-prepend.date .add-on i { + margin-top: 3px; +} + +/* line 449, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.input-daterange input { + text-align: center; +} + +/* line 452, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.input-daterange input:first-child { + border-radius: 3px 0 0 3px; +} + +/* line 457, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.input-daterange input:last-child { + border-radius: 0 3px 3px 0; +} + +/* line 462, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.input-daterange .add-on { + display: inline-block; + width: auto; + min-width: 16px; + height: 20px; + padding: 4px 5px; + font-weight: normal; + line-height: 20px; + text-align: center; + text-shadow: 0 1px 0 #fff; + vertical-align: middle; + background-color: #eee; + border: 1px solid #ccc; + margin-left: -5px; + margin-right: -5px; +} + +/* line 478, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + float: left; + display: none; + min-width: 160px; + list-style: none; + background-color: #fff; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 5px; + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + -webkit-background-clip: padding-box; + -moz-background-clip: padding; + background-clip: padding-box; + *border-right-width: 2px; + *border-bottom-width: 2px; + color: #333333; + font-size: 13px; + line-height: 20px; +} + +/* line 505, app/assets/stylesheets/bootstrap-datepicker.standalone.scss */ +.datepicker.dropdown-menu th, +.datepicker.datepicker-inline th, +.datepicker.dropdown-menu td, +.datepicker.datepicker-inline td { + padding: 4px 5px; +} +@charset "UTF-8"; +/*! + * Bootstrap v4.3.1 (https://getbootstrap.com/) + * Copyright 2011-2019 The Bootstrap Authors + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_root.scss */ +:root { + --blue: #007bff; + --indigo: #6610f2; + --purple: #6f42c1; + --pink: #e83e8c; + --red: #dc3545; + --orange: #fd7e14; + --yellow: #ffc107; + --green: #28a745; + --teal: #20c997; + --cyan: #17a2b8; + --white: #fff; + --gray: #6c757d; + --gray-dark: #343a40; + --primary: #007bff; + --secondary: #6c757d; + --success: #28a745; + --info: #17a2b8; + --warning: #ffc107; + --danger: #dc3545; + --light: #f8f9fa; + --dark: #343a40; + --breakpoint-xs: 0; + --breakpoint-sm: 576px; + --breakpoint-md: 768px; + --breakpoint-lg: 992px; + --breakpoint-xl: 1200px; + --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +*, +*::before, +*::after { + box-sizing: border-box; +} + +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +html { + font-family: sans-serif; + line-height: 1.15; + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: transparent; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { + display: block; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + text-align: left; + background-color: #fff; +} + +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +[tabindex="-1"]:focus { + outline: 0 !important; +} + +/* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +hr { + box-sizing: content-box; + height: 0; + overflow: visible; +} + +/* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +h1, h2, h3, h4, h5, h6 { + margin-top: 0; + margin-bottom: 0.5rem; +} + +/* line 97, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +p { + margin-top: 0; + margin-bottom: 1rem; +} + +/* line 110, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +abbr[title], +abbr[data-original-title] { + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + cursor: help; + border-bottom: 0; + -webkit-text-decoration-skip-ink: none; + text-decoration-skip-ink: none; +} + +/* line 119, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; +} + +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; +} + +/* line 132, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; +} + +/* line 139, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +dt { + font-weight: 700; +} + +/* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +dd { + margin-bottom: .5rem; + margin-left: 0; +} + +/* line 148, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +blockquote { + margin: 0 0 1rem; +} + +/* line 152, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +b, +strong { + font-weight: bolder; +} + +/* line 157, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +small { + font-size: 80%; +} + +/* line 166, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +/* line 174, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +sub { + bottom: -.25em; +} + +/* line 175, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +sup { + top: -.5em; +} + +/* line 182, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +a { + color: #007bff; + text-decoration: none; + background-color: transparent; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a:hover { + color: #0056b3; + text-decoration: underline; +} + +/* line 199, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +a:not([href]):not([tabindex]) { + color: inherit; + text-decoration: none; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus { + color: inherit; + text-decoration: none; +} + +/* line 208, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +a:not([href]):not([tabindex]):focus { + outline: 0; +} + +/* line 218, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +pre, +code, +kbd, +samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + font-size: 1em; +} + +/* line 226, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +pre { + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; +} + +/* line 240, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +figure { + margin: 0 0 1rem; +} + +/* line 250, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +img { + vertical-align: middle; + border-style: none; +} + +/* line 255, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +svg { + overflow: hidden; + vertical-align: middle; +} + +/* line 267, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +table { + border-collapse: collapse; +} + +/* line 271, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +caption { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + color: #6c757d; + text-align: left; + caption-side: bottom; +} + +/* line 279, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +th { + text-align: inherit; +} + +/* line 290, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +label { + display: inline-block; + margin-bottom: 0.5rem; +} + +/* line 299, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +button { + border-radius: 0; +} + +/* line 308, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +button:focus { + outline: 1px dotted; + outline: 5px auto -webkit-focus-ring-color; +} + +/* line 313, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; +} + +/* line 324, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +button, +input { + overflow: visible; +} + +/* line 329, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +button, +select { + text-transform: none; +} + +/* line 337, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +select { + word-wrap: normal; +} + +/* line 345, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +/* line 358, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +button:not(:disabled), +[type="button"]:not(:disabled), +[type="reset"]:not(:disabled), +[type="submit"]:not(:disabled) { + cursor: pointer; +} + +/* line 365, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + padding: 0; + border-style: none; +} + +/* line 373, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +input[type="radio"], +input[type="checkbox"] { + box-sizing: border-box; + padding: 0; +} + +/* line 380, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +input[type="date"], +input[type="time"], +input[type="datetime-local"], +input[type="month"] { + -webkit-appearance: listbox; +} + +/* line 392, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +textarea { + overflow: auto; + resize: vertical; +} + +/* line 398, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} + +/* line 413, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +legend { + display: block; + width: 100%; + max-width: 100%; + padding: 0; + margin-bottom: .5rem; + font-size: 1.5rem; + line-height: inherit; + color: inherit; + white-space: normal; +} + +/* line 425, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +progress { + vertical-align: baseline; +} + +/* line 430, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/* line 435, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +[type="search"] { + outline-offset: -2px; + -webkit-appearance: none; +} + +/* line 448, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/* line 457, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; +} + +/* line 466, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +output { + display: inline-block; +} + +/* line 470, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +summary { + display: list-item; + cursor: pointer; +} + +/* line 475, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +template { + display: none; +} + +/* line 481, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_reboot.scss */ +[hidden] { + display: none !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +h1, h2, h3, h4, h5, h6, +.h1, .h2, .h3, .h4, .h5, .h6 { + margin-bottom: 0.5rem; + font-weight: 500; + line-height: 1.2; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +h1, .h1 { + font-size: 2.5rem; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +h2, .h2 { + font-size: 2rem; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +h3, .h3 { + font-size: 1.75rem; +} + +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +h4, .h4 { + font-size: 1.5rem; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +h5, .h5 { + font-size: 1.25rem; +} + +/* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +h6, .h6 { + font-size: 1rem; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.lead { + font-size: 1.25rem; + font-weight: 300; +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.display-1 { + font-size: 6rem; + font-weight: 300; + line-height: 1.2; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.display-2 { + font-size: 5.5rem; + font-weight: 300; + line-height: 1.2; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.display-3 { + font-size: 4.5rem; + font-weight: 300; + line-height: 1.2; +} + +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.display-4 { + font-size: 3.5rem; + font-weight: 300; + line-height: 1.2; +} + +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +hr { + margin-top: 1rem; + margin-bottom: 1rem; + border: 0; + border-top: 1px solid rgba(0, 0, 0, 0.1); +} + +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +small, +.small { + font-size: 80%; + font-weight: 400; +} + +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +mark, +.mark { + padding: 0.2em; + background-color: #fcf8e3; +} + +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.list-unstyled { + padding-left: 0; + list-style: none; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.list-inline { + padding-left: 0; + list-style: none; +} + +/* line 92, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.list-inline-item { + display: inline-block; +} + +/* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.list-inline-item:not(:last-child) { + margin-right: 0.5rem; +} + +/* line 106, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.initialism { + font-size: 90%; + text-transform: uppercase; +} + +/* line 112, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.blockquote { + margin-bottom: 1rem; + font-size: 1.25rem; +} + +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.blockquote-footer { + display: block; + font-size: 80%; + color: #6c757d; +} + +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_type.scss */ +.blockquote-footer::before { + content: "\2014\00A0"; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ +.img-fluid { + max-width: 100%; + height: auto; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ +.img-thumbnail { + padding: 0.25rem; + background-color: #fff; + border: 1px solid #dee2e6; + border-radius: 0.25rem; + max-width: 100%; + height: auto; +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ +.figure { + display: inline-block; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_images.scss */ +.figure-caption { + font-size: 90%; + color: #6c757d; +} + +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +code { + font-size: 87.5%; + color: #e83e8c; + word-break: break-word; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +a > code { + color: inherit; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +kbd { + padding: 0.2rem 0.4rem; + font-size: 87.5%; + color: #fff; + background-color: #212529; + border-radius: 0.2rem; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700; +} + +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +pre { + display: block; + font-size: 87.5%; + color: #212529; +} + +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +pre code { + font-size: inherit; + color: inherit; + word-break: normal; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +.container { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} + +@media (min-width: 576px) { + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ + .container { + max-width: 540px; + } +} + +@media (min-width: 768px) { + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ + .container { + max-width: 720px; + } +} + +@media (min-width: 992px) { + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ + .container { + max-width: 960px; + } +} + +@media (min-width: 1200px) { + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ + .container { + max-width: 1140px; + } +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +.container-fluid { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} + +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +.row { + display: -webkit-box; + display: flex; + flex-wrap: wrap; + margin-right: -15px; + margin-left: -15px; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +.no-gutters { + margin-right: 0; + margin-left: 0; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +.no-gutters > .col, +.no-gutters > [class*="col-"] { + padding-right: 0; + padding-left: 0; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, +.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, +.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, +.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, +.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, +.col-xl-auto { + position: relative; + width: 100%; + padding-right: 15px; + padding-left: 15px; +} + +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col { + flex-basis: 0; + -webkit-box-flex: 1; + flex-grow: 1; + max-width: 100%; +} + +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-auto { + -webkit-box-flex: 0; + flex: 0 0 auto; + width: auto; + max-width: 100%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-1 { + -webkit-box-flex: 0; + flex: 0 0 8.33333%; + max-width: 8.33333%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-2 { + -webkit-box-flex: 0; + flex: 0 0 16.66667%; + max-width: 16.66667%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-3 { + -webkit-box-flex: 0; + flex: 0 0 25%; + max-width: 25%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-4 { + -webkit-box-flex: 0; + flex: 0 0 33.33333%; + max-width: 33.33333%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-5 { + -webkit-box-flex: 0; + flex: 0 0 41.66667%; + max-width: 41.66667%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-6 { + -webkit-box-flex: 0; + flex: 0 0 50%; + max-width: 50%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-7 { + -webkit-box-flex: 0; + flex: 0 0 58.33333%; + max-width: 58.33333%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-8 { + -webkit-box-flex: 0; + flex: 0 0 66.66667%; + max-width: 66.66667%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-9 { + -webkit-box-flex: 0; + flex: 0 0 75%; + max-width: 75%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-10 { + -webkit-box-flex: 0; + flex: 0 0 83.33333%; + max-width: 83.33333%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-11 { + -webkit-box-flex: 0; + flex: 0 0 91.66667%; + max-width: 91.66667%; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.col-12 { + -webkit-box-flex: 0; + flex: 0 0 100%; + max-width: 100%; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-first { + -webkit-box-ordinal-group: 0; + order: -1; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-last { + -webkit-box-ordinal-group: 14; + order: 13; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-0 { + -webkit-box-ordinal-group: 1; + order: 0; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-1 { + -webkit-box-ordinal-group: 2; + order: 1; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-2 { + -webkit-box-ordinal-group: 3; + order: 2; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-3 { + -webkit-box-ordinal-group: 4; + order: 3; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-4 { + -webkit-box-ordinal-group: 5; + order: 4; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-5 { + -webkit-box-ordinal-group: 6; + order: 5; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-6 { + -webkit-box-ordinal-group: 7; + order: 6; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-7 { + -webkit-box-ordinal-group: 8; + order: 7; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-8 { + -webkit-box-ordinal-group: 9; + order: 8; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-9 { + -webkit-box-ordinal-group: 10; + order: 9; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-10 { + -webkit-box-ordinal-group: 11; + order: 10; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-11 { + -webkit-box-ordinal-group: 12; + order: 11; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.order-12 { + -webkit-box-ordinal-group: 13; + order: 12; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-1 { + margin-left: 8.33333%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-2 { + margin-left: 16.66667%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-3 { + margin-left: 25%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-4 { + margin-left: 33.33333%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-5 { + margin-left: 41.66667%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-6 { + margin-left: 50%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-7 { + margin-left: 58.33333%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-8 { + margin-left: 66.66667%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-9 { + margin-left: 75%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-10 { + margin-left: 83.33333%; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +.offset-11 { + margin-left: 91.66667%; +} + +@media (min-width: 576px) { + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm { + flex-basis: 0; + -webkit-box-flex: 1; + flex-grow: 1; + max-width: 100%; + } + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-auto { + -webkit-box-flex: 0; + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-1 { + -webkit-box-flex: 0; + flex: 0 0 8.33333%; + max-width: 8.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-2 { + -webkit-box-flex: 0; + flex: 0 0 16.66667%; + max-width: 16.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-3 { + -webkit-box-flex: 0; + flex: 0 0 25%; + max-width: 25%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-4 { + -webkit-box-flex: 0; + flex: 0 0 33.33333%; + max-width: 33.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-5 { + -webkit-box-flex: 0; + flex: 0 0 41.66667%; + max-width: 41.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-6 { + -webkit-box-flex: 0; + flex: 0 0 50%; + max-width: 50%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-7 { + -webkit-box-flex: 0; + flex: 0 0 58.33333%; + max-width: 58.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-8 { + -webkit-box-flex: 0; + flex: 0 0 66.66667%; + max-width: 66.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-9 { + -webkit-box-flex: 0; + flex: 0 0 75%; + max-width: 75%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-10 { + -webkit-box-flex: 0; + flex: 0 0 83.33333%; + max-width: 83.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-11 { + -webkit-box-flex: 0; + flex: 0 0 91.66667%; + max-width: 91.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-sm-12 { + -webkit-box-flex: 0; + flex: 0 0 100%; + max-width: 100%; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-first { + -webkit-box-ordinal-group: 0; + order: -1; + } + /* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-last { + -webkit-box-ordinal-group: 14; + order: 13; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-0 { + -webkit-box-ordinal-group: 1; + order: 0; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-1 { + -webkit-box-ordinal-group: 2; + order: 1; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-2 { + -webkit-box-ordinal-group: 3; + order: 2; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-3 { + -webkit-box-ordinal-group: 4; + order: 3; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-4 { + -webkit-box-ordinal-group: 5; + order: 4; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-5 { + -webkit-box-ordinal-group: 6; + order: 5; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-6 { + -webkit-box-ordinal-group: 7; + order: 6; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-7 { + -webkit-box-ordinal-group: 8; + order: 7; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-8 { + -webkit-box-ordinal-group: 9; + order: 8; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-9 { + -webkit-box-ordinal-group: 10; + order: 9; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-10 { + -webkit-box-ordinal-group: 11; + order: 10; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-11 { + -webkit-box-ordinal-group: 12; + order: 11; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-sm-12 { + -webkit-box-ordinal-group: 13; + order: 12; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-0 { + margin-left: 0; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-1 { + margin-left: 8.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-2 { + margin-left: 16.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-3 { + margin-left: 25%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-4 { + margin-left: 33.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-5 { + margin-left: 41.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-6 { + margin-left: 50%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-7 { + margin-left: 58.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-8 { + margin-left: 66.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-9 { + margin-left: 75%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-10 { + margin-left: 83.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-sm-11 { + margin-left: 91.66667%; + } +} + +@media (min-width: 768px) { + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md { + flex-basis: 0; + -webkit-box-flex: 1; + flex-grow: 1; + max-width: 100%; + } + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-auto { + -webkit-box-flex: 0; + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-1 { + -webkit-box-flex: 0; + flex: 0 0 8.33333%; + max-width: 8.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-2 { + -webkit-box-flex: 0; + flex: 0 0 16.66667%; + max-width: 16.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-3 { + -webkit-box-flex: 0; + flex: 0 0 25%; + max-width: 25%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-4 { + -webkit-box-flex: 0; + flex: 0 0 33.33333%; + max-width: 33.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-5 { + -webkit-box-flex: 0; + flex: 0 0 41.66667%; + max-width: 41.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-6 { + -webkit-box-flex: 0; + flex: 0 0 50%; + max-width: 50%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-7 { + -webkit-box-flex: 0; + flex: 0 0 58.33333%; + max-width: 58.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-8 { + -webkit-box-flex: 0; + flex: 0 0 66.66667%; + max-width: 66.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-9 { + -webkit-box-flex: 0; + flex: 0 0 75%; + max-width: 75%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-10 { + -webkit-box-flex: 0; + flex: 0 0 83.33333%; + max-width: 83.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-11 { + -webkit-box-flex: 0; + flex: 0 0 91.66667%; + max-width: 91.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-md-12 { + -webkit-box-flex: 0; + flex: 0 0 100%; + max-width: 100%; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-first { + -webkit-box-ordinal-group: 0; + order: -1; + } + /* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-last { + -webkit-box-ordinal-group: 14; + order: 13; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-0 { + -webkit-box-ordinal-group: 1; + order: 0; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-1 { + -webkit-box-ordinal-group: 2; + order: 1; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-2 { + -webkit-box-ordinal-group: 3; + order: 2; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-3 { + -webkit-box-ordinal-group: 4; + order: 3; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-4 { + -webkit-box-ordinal-group: 5; + order: 4; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-5 { + -webkit-box-ordinal-group: 6; + order: 5; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-6 { + -webkit-box-ordinal-group: 7; + order: 6; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-7 { + -webkit-box-ordinal-group: 8; + order: 7; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-8 { + -webkit-box-ordinal-group: 9; + order: 8; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-9 { + -webkit-box-ordinal-group: 10; + order: 9; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-10 { + -webkit-box-ordinal-group: 11; + order: 10; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-11 { + -webkit-box-ordinal-group: 12; + order: 11; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-md-12 { + -webkit-box-ordinal-group: 13; + order: 12; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-0 { + margin-left: 0; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-1 { + margin-left: 8.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-2 { + margin-left: 16.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-3 { + margin-left: 25%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-4 { + margin-left: 33.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-5 { + margin-left: 41.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-6 { + margin-left: 50%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-7 { + margin-left: 58.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-8 { + margin-left: 66.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-9 { + margin-left: 75%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-10 { + margin-left: 83.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-md-11 { + margin-left: 91.66667%; + } +} + +@media (min-width: 992px) { + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg { + flex-basis: 0; + -webkit-box-flex: 1; + flex-grow: 1; + max-width: 100%; + } + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-auto { + -webkit-box-flex: 0; + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-1 { + -webkit-box-flex: 0; + flex: 0 0 8.33333%; + max-width: 8.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-2 { + -webkit-box-flex: 0; + flex: 0 0 16.66667%; + max-width: 16.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-3 { + -webkit-box-flex: 0; + flex: 0 0 25%; + max-width: 25%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-4 { + -webkit-box-flex: 0; + flex: 0 0 33.33333%; + max-width: 33.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-5 { + -webkit-box-flex: 0; + flex: 0 0 41.66667%; + max-width: 41.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-6 { + -webkit-box-flex: 0; + flex: 0 0 50%; + max-width: 50%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-7 { + -webkit-box-flex: 0; + flex: 0 0 58.33333%; + max-width: 58.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-8 { + -webkit-box-flex: 0; + flex: 0 0 66.66667%; + max-width: 66.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-9 { + -webkit-box-flex: 0; + flex: 0 0 75%; + max-width: 75%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-10 { + -webkit-box-flex: 0; + flex: 0 0 83.33333%; + max-width: 83.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-11 { + -webkit-box-flex: 0; + flex: 0 0 91.66667%; + max-width: 91.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-lg-12 { + -webkit-box-flex: 0; + flex: 0 0 100%; + max-width: 100%; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-first { + -webkit-box-ordinal-group: 0; + order: -1; + } + /* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-last { + -webkit-box-ordinal-group: 14; + order: 13; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-0 { + -webkit-box-ordinal-group: 1; + order: 0; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-1 { + -webkit-box-ordinal-group: 2; + order: 1; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-2 { + -webkit-box-ordinal-group: 3; + order: 2; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-3 { + -webkit-box-ordinal-group: 4; + order: 3; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-4 { + -webkit-box-ordinal-group: 5; + order: 4; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-5 { + -webkit-box-ordinal-group: 6; + order: 5; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-6 { + -webkit-box-ordinal-group: 7; + order: 6; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-7 { + -webkit-box-ordinal-group: 8; + order: 7; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-8 { + -webkit-box-ordinal-group: 9; + order: 8; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-9 { + -webkit-box-ordinal-group: 10; + order: 9; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-10 { + -webkit-box-ordinal-group: 11; + order: 10; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-11 { + -webkit-box-ordinal-group: 12; + order: 11; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-lg-12 { + -webkit-box-ordinal-group: 13; + order: 12; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-0 { + margin-left: 0; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-1 { + margin-left: 8.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-2 { + margin-left: 16.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-3 { + margin-left: 25%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-4 { + margin-left: 33.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-5 { + margin-left: 41.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-6 { + margin-left: 50%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-7 { + margin-left: 58.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-8 { + margin-left: 66.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-9 { + margin-left: 75%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-10 { + margin-left: 83.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-lg-11 { + margin-left: 91.66667%; + } +} + +@media (min-width: 1200px) { + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl { + flex-basis: 0; + -webkit-box-flex: 1; + flex-grow: 1; + max-width: 100%; + } + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-auto { + -webkit-box-flex: 0; + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-1 { + -webkit-box-flex: 0; + flex: 0 0 8.33333%; + max-width: 8.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-2 { + -webkit-box-flex: 0; + flex: 0 0 16.66667%; + max-width: 16.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-3 { + -webkit-box-flex: 0; + flex: 0 0 25%; + max-width: 25%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-4 { + -webkit-box-flex: 0; + flex: 0 0 33.33333%; + max-width: 33.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-5 { + -webkit-box-flex: 0; + flex: 0 0 41.66667%; + max-width: 41.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-6 { + -webkit-box-flex: 0; + flex: 0 0 50%; + max-width: 50%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-7 { + -webkit-box-flex: 0; + flex: 0 0 58.33333%; + max-width: 58.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-8 { + -webkit-box-flex: 0; + flex: 0 0 66.66667%; + max-width: 66.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-9 { + -webkit-box-flex: 0; + flex: 0 0 75%; + max-width: 75%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-10 { + -webkit-box-flex: 0; + flex: 0 0 83.33333%; + max-width: 83.33333%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-11 { + -webkit-box-flex: 0; + flex: 0 0 91.66667%; + max-width: 91.66667%; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .col-xl-12 { + -webkit-box-flex: 0; + flex: 0 0 100%; + max-width: 100%; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-first { + -webkit-box-ordinal-group: 0; + order: -1; + } + /* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-last { + -webkit-box-ordinal-group: 14; + order: 13; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-0 { + -webkit-box-ordinal-group: 1; + order: 0; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-1 { + -webkit-box-ordinal-group: 2; + order: 1; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-2 { + -webkit-box-ordinal-group: 3; + order: 2; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-3 { + -webkit-box-ordinal-group: 4; + order: 3; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-4 { + -webkit-box-ordinal-group: 5; + order: 4; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-5 { + -webkit-box-ordinal-group: 6; + order: 5; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-6 { + -webkit-box-ordinal-group: 7; + order: 6; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-7 { + -webkit-box-ordinal-group: 8; + order: 7; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-8 { + -webkit-box-ordinal-group: 9; + order: 8; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-9 { + -webkit-box-ordinal-group: 10; + order: 9; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-10 { + -webkit-box-ordinal-group: 11; + order: 10; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-11 { + -webkit-box-ordinal-group: 12; + order: 11; + } + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .order-xl-12 { + -webkit-box-ordinal-group: 13; + order: 12; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-0 { + margin-left: 0; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-1 { + margin-left: 8.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-2 { + margin-left: 16.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-3 { + margin-left: 25%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-4 { + margin-left: 33.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-5 { + margin-left: 41.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-6 { + margin-left: 50%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-7 { + margin-left: 58.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-8 { + margin-left: 66.66667%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-9 { + margin-left: 75%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-10 { + margin-left: 83.33333%; + } + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + .offset-xl-11 { + margin-left: 91.66667%; + } +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table { + width: 100%; + margin-bottom: 1rem; + color: #212529; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table th, +.table td { + padding: 0.75rem; + vertical-align: top; + border-top: 1px solid #dee2e6; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table thead th { + vertical-align: bottom; + border-bottom: 2px solid #dee2e6; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table tbody + tbody { + border-top: 2px solid #dee2e6; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-sm th, +.table-sm td { + padding: 0.3rem; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-bordered { + border: 1px solid #dee2e6; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-bordered th, +.table-bordered td { + border: 1px solid #dee2e6; +} + +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-bordered thead th, +.table-bordered thead td { + border-bottom-width: 2px; +} + +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-borderless th, +.table-borderless td, +.table-borderless thead th, +.table-borderless tbody + tbody { + border: 0; +} + +/* line 75, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(0, 0, 0, 0.05); +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover tbody tr:hover { + color: #212529; + background-color: rgba(0, 0, 0, 0.075); +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-primary, +.table-primary > th, +.table-primary > td { + background-color: #b8daff; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-primary th, +.table-primary td, +.table-primary thead th, +.table-primary tbody + tbody { + border-color: #7abaff; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-primary:hover { + background-color: #9fcdff; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-primary:hover > td, +.table-hover .table-primary:hover > th { + background-color: #9fcdff; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-secondary, +.table-secondary > th, +.table-secondary > td { + background-color: #d6d8db; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-secondary th, +.table-secondary td, +.table-secondary thead th, +.table-secondary tbody + tbody { + border-color: #b3b7bb; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-secondary:hover { + background-color: #c8cbcf; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-secondary:hover > td, +.table-hover .table-secondary:hover > th { + background-color: #c8cbcf; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-success, +.table-success > th, +.table-success > td { + background-color: #c3e6cb; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-success th, +.table-success td, +.table-success thead th, +.table-success tbody + tbody { + border-color: #8fd19e; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-success:hover { + background-color: #b1dfbb; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-success:hover > td, +.table-hover .table-success:hover > th { + background-color: #b1dfbb; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-info, +.table-info > th, +.table-info > td { + background-color: #bee5eb; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-info th, +.table-info td, +.table-info thead th, +.table-info tbody + tbody { + border-color: #86cfda; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-info:hover { + background-color: #abdde5; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-info:hover > td, +.table-hover .table-info:hover > th { + background-color: #abdde5; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-warning, +.table-warning > th, +.table-warning > td { + background-color: #ffeeba; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-warning th, +.table-warning td, +.table-warning thead th, +.table-warning tbody + tbody { + border-color: #ffdf7e; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-warning:hover { + background-color: #ffe8a1; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-warning:hover > td, +.table-hover .table-warning:hover > th { + background-color: #ffe8a1; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-danger, +.table-danger > th, +.table-danger > td { + background-color: #f5c6cb; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-danger th, +.table-danger td, +.table-danger thead th, +.table-danger tbody + tbody { + border-color: #ed969e; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-danger:hover { + background-color: #f1b0b7; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-danger:hover > td, +.table-hover .table-danger:hover > th { + background-color: #f1b0b7; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-light, +.table-light > th, +.table-light > td { + background-color: #fdfdfe; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-light th, +.table-light td, +.table-light thead th, +.table-light tbody + tbody { + border-color: #fbfcfc; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-light:hover { + background-color: #ececf6; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-light:hover > td, +.table-hover .table-light:hover > th { + background-color: #ececf6; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-dark, +.table-dark > th, +.table-dark > td { + background-color: #c6c8ca; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-dark th, +.table-dark td, +.table-dark thead th, +.table-dark tbody + tbody { + border-color: #95999c; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-dark:hover { + background-color: #b9bbbe; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-dark:hover > td, +.table-hover .table-dark:hover > th { + background-color: #b9bbbe; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-active, +.table-active > th, +.table-active > td { + background-color: rgba(0, 0, 0, 0.075); +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-hover .table-active:hover { + background-color: rgba(0, 0, 0, 0.075); +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +.table-hover .table-active:hover > td, +.table-hover .table-active:hover > th { + background-color: rgba(0, 0, 0, 0.075); +} + +/* line 114, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table .thead-dark th { + color: #fff; + background-color: #343a40; + border-color: #454d55; +} + +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table .thead-light th { + color: #495057; + background-color: #e9ecef; + border-color: #dee2e6; +} + +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-dark { + color: #fff; + background-color: #343a40; +} + +/* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-dark th, +.table-dark td, +.table-dark thead th { + border-color: #454d55; +} + +/* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-dark.table-bordered { + border: 0; +} + +/* line 145, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-dark.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(255, 255, 255, 0.05); +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.table-dark.table-hover tbody tr:hover { + color: #fff; + background-color: rgba(255, 255, 255, 0.075); +} + +@media (max-width: 575.98px) { + /* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-sm { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-sm > .table-bordered { + border: 0; + } +} + +@media (max-width: 767.98px) { + /* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-md { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-md > .table-bordered { + border: 0; + } +} + +@media (max-width: 991.98px) { + /* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-lg { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-lg > .table-bordered { + border: 0; + } +} + +@media (max-width: 1199.98px) { + /* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-xl { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + .table-responsive-xl > .table-bordered { + border: 0; + } +} + +/* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-responsive { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; +} + +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +.table-responsive > .table-bordered { + border: 0; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control { + display: block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-radius: 0.25rem; + -webkit-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-control { + -webkit-transition: none; + transition: none; + } +} + +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control::-ms-expand { + background-color: transparent; + border: 0; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.form-control:focus { + color: #495057; + background-color: #fff; + border-color: #80bdff; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control::-webkit-input-placeholder { + color: #6c757d; + opacity: 1; +} +.form-control::-moz-placeholder { + color: #6c757d; + opacity: 1; +} +.form-control:-ms-input-placeholder { + color: #6c757d; + opacity: 1; +} +.form-control::-ms-input-placeholder { + color: #6c757d; + opacity: 1; +} +.form-control::placeholder { + color: #6c757d; + opacity: 1; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control:disabled, .form-control[readonly] { + background-color: #e9ecef; + opacity: 1; +} + +/* line 57, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +select.form-control:focus::-ms-value { + color: #495057; + background-color: #fff; +} + +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control-file, +.form-control-range { + display: block; + width: 100%; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.col-form-label { + padding-top: calc(0.375rem + 1px); + padding-bottom: calc(0.375rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1.5; +} + +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.col-form-label-lg { + padding-top: calc(0.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); + font-size: 1.25rem; + line-height: 1.5; +} + +/* line 97, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.col-form-label-sm { + padding-top: calc(0.25rem + 1px); + padding-bottom: calc(0.25rem + 1px); + font-size: 0.875rem; + line-height: 1.5; +} + +/* line 110, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control-plaintext { + display: block; + width: 100%; + padding-top: 0.375rem; + padding-bottom: 0.375rem; + margin-bottom: 0; + line-height: 1.5; + color: #212529; + background-color: transparent; + border: solid transparent; + border-width: 1px 0; +} + +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { + padding-right: 0; + padding-left: 0; +} + +/* line 137, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control-sm { + height: calc(1.5em + 0.5rem + 2px); + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +/* line 145, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-control-lg { + height: calc(1.5em + 1rem + 2px); + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +/* line 155, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +select.form-control[size], select.form-control[multiple] { + height: auto; +} + +/* line 161, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +textarea.form-control { + height: auto; +} + +/* line 170, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-group { + margin-bottom: 1rem; +} + +/* line 174, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-text { + display: block; + margin-top: 0.25rem; +} + +/* line 184, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-row { + display: -webkit-box; + display: flex; + flex-wrap: wrap; + margin-right: -5px; + margin-left: -5px; +} + +/* line 190, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-row > .col, +.form-row > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; +} + +/* line 202, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-check { + position: relative; + display: block; + padding-left: 1.25rem; +} + +/* line 208, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-check-input { + position: absolute; + margin-top: 0.3rem; + margin-left: -1.25rem; +} + +/* line 213, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-check-input:disabled ~ .form-check-label { + color: #6c757d; +} + +/* line 218, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-check-label { + margin-bottom: 0; +} + +/* line 222, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-check-inline { + display: -webkit-inline-box; + display: inline-flex; + -webkit-box-align: center; + align-items: center; + padding-left: 0; + margin-right: 0.75rem; +} + +/* line 229, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-check-inline .form-check-input { + position: static; + margin-top: 0; + margin-right: 0.3125rem; + margin-left: 0; +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #28a745; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(40, 167, 69, 0.9); + border-radius: 0.25rem; +} + +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control:valid, .form-control.is-valid { + border-color: #28a745; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center right calc(0.375em + 0.1875rem); + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control:valid:focus, .form-control.is-valid:focus { + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control:valid ~ .valid-feedback, +.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, +.form-control.is-valid ~ .valid-tooltip { + display: block; +} + +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated textarea.form-control:valid, textarea.form-control.is-valid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); +} + +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-select:valid, .custom-select.is-valid { + border-color: #28a745; + padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +/* line 99, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +/* line 104, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-select:valid ~ .valid-feedback, +.was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback, +.custom-select.is-valid ~ .valid-tooltip { + display: block; +} + +/* line 115, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control-file:valid ~ .valid-feedback, +.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback, +.form-control-file.is-valid ~ .valid-tooltip { + display: block; +} + +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { + color: #28a745; +} + +/* line 129, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-check-input:valid ~ .valid-feedback, +.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, +.form-check-input.is-valid ~ .valid-tooltip { + display: block; +} + +/* line 139, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { + color: #28a745; +} + +/* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { + border-color: #28a745; +} + +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:valid ~ .valid-feedback, +.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, +.custom-control-input.is-valid ~ .valid-tooltip { + display: block; +} + +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { + border-color: #34ce57; + background-color: #34ce57; +} + +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +/* line 164, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before { + border-color: #28a745; +} + +/* line 175, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { + border-color: #28a745; +} + +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-file-input:valid ~ .valid-feedback, +.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, +.custom-file-input.is-valid ~ .valid-tooltip { + display: block; +} + +/* line 185, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #dc3545; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(220, 53, 69, 0.9); + border-radius: 0.25rem; +} + +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control:invalid, .form-control.is-invalid { + border-color: #dc3545; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E"); + background-repeat: no-repeat; + background-position: center right calc(0.375em + 0.1875rem); + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control:invalid ~ .invalid-feedback, +.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, +.form-control.is-invalid ~ .invalid-tooltip { + display: block; +} + +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); +} + +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-select:invalid, .custom-select.is-invalid { + border-color: #dc3545; + padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +/* line 99, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +/* line 104, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-select:invalid ~ .invalid-feedback, +.was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback, +.custom-select.is-invalid ~ .invalid-tooltip { + display: block; +} + +/* line 115, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-control-file:invalid ~ .invalid-feedback, +.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback, +.form-control-file.is-invalid ~ .invalid-tooltip { + display: block; +} + +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { + color: #dc3545; +} + +/* line 129, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .form-check-input:invalid ~ .invalid-feedback, +.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, +.form-check-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +/* line 139, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { + color: #dc3545; +} + +/* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { + border-color: #dc3545; +} + +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:invalid ~ .invalid-feedback, +.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, +.custom-control-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { + border-color: #e4606d; + background-color: #e4606d; +} + +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +/* line 164, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before { + border-color: #dc3545; +} + +/* line 175, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { + border-color: #dc3545; +} + +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-file-input:invalid ~ .invalid-feedback, +.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, +.custom-file-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +/* line 185, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +/* line 258, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-inline { + display: -webkit-box; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row wrap; + -webkit-box-align: center; + align-items: center; +} + +/* line 266, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +.form-inline .form-check { + width: 100%; +} + +@media (min-width: 576px) { + /* line 272, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline label { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: center; + justify-content: center; + margin-bottom: 0; + } + /* line 280, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .form-group { + display: -webkit-box; + display: flex; + -webkit-box-flex: 0; + flex: 0 0 auto; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row wrap; + -webkit-box-align: center; + align-items: center; + margin-bottom: 0; + } + /* line 289, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + /* line 296, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .form-control-plaintext { + display: inline-block; + } + /* line 300, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .input-group, + .form-inline .custom-select { + width: auto; + } + /* line 307, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .form-check { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: center; + justify-content: center; + width: auto; + padding-left: 0; + } + /* line 314, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .form-check-input { + position: relative; + flex-shrink: 0; + margin-top: 0; + margin-right: 0.25rem; + margin-left: 0; + } + /* line 322, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .custom-control { + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: center; + justify-content: center; + } + /* line 326, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + .form-inline .custom-control-label { + margin-bottom: 0; + } +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn { + display: inline-block; + font-weight: 400; + color: #212529; + text-align: center; + vertical-align: middle; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-color: transparent; + border: 1px solid transparent; + padding: 0.375rem 0.75rem; + font-size: 1rem; + line-height: 1.5; + border-radius: 0.25rem; + -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ + .btn { + -webkit-transition: none; + transition: none; + } +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn:hover { + color: #212529; + text-decoration: none; +} + +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn:focus, .btn.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn.disabled, .btn:disabled { + opacity: 0.65; +} + +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +a.btn.disabled, +fieldset:disabled a.btn { + pointer-events: none; +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-primary { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-primary:hover { + color: #fff; + background-color: #0069d9; + border-color: #0062cc; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-primary:focus, .btn-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-primary.disabled, .btn-primary:disabled { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, +.show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #0062cc; + border-color: #005cbf; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, +.show > .btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-secondary { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-secondary:hover { + color: #fff; + background-color: #5a6268; + border-color: #545b62; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-secondary:focus, .btn-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-secondary.disabled, .btn-secondary:disabled { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, +.show > .btn-secondary.dropdown-toggle { + color: #fff; + background-color: #545b62; + border-color: #4e555b; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, +.show > .btn-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-success { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-success:hover { + color: #fff; + background-color: #218838; + border-color: #1e7e34; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-success:focus, .btn-success.focus { + box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-success.disabled, .btn-success:disabled { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, +.show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #1e7e34; + border-color: #1c7430; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, +.show > .btn-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-info { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-info:hover { + color: #fff; + background-color: #138496; + border-color: #117a8b; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-info:focus, .btn-info.focus { + box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-info.disabled, .btn-info:disabled { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, +.show > .btn-info.dropdown-toggle { + color: #fff; + background-color: #117a8b; + border-color: #10707f; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, +.show > .btn-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-warning { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-warning:hover { + color: #212529; + background-color: #e0a800; + border-color: #d39e00; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-warning:focus, .btn-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-warning.disabled, .btn-warning:disabled { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, +.show > .btn-warning.dropdown-toggle { + color: #212529; + background-color: #d39e00; + border-color: #c69500; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, +.show > .btn-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-danger { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-danger:hover { + color: #fff; + background-color: #c82333; + border-color: #bd2130; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-danger:focus, .btn-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-danger.disabled, .btn-danger:disabled { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, +.show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #bd2130; + border-color: #b21f2d; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, +.show > .btn-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-light { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-light:hover { + color: #212529; + background-color: #e2e6ea; + border-color: #dae0e5; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-light:focus, .btn-light.focus { + box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-light.disabled, .btn-light:disabled { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, +.show > .btn-light.dropdown-toggle { + color: #212529; + background-color: #dae0e5; + border-color: #d3d9df; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, +.show > .btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-dark { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-dark:hover { + color: #fff; + background-color: #23272b; + border-color: #1d2124; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-dark:focus, .btn-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-dark.disabled, .btn-dark:disabled { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, +.show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #1d2124; + border-color: #171a1d; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, +.show > .btn-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-primary { + color: #007bff; + border-color: #007bff; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-primary:hover { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-primary:focus, .btn-outline-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-primary.disabled, .btn-outline-primary:disabled { + color: #007bff; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, +.show > .btn-outline-primary.dropdown-toggle { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-secondary { + color: #6c757d; + border-color: #6c757d; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-secondary:hover { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-secondary:focus, .btn-outline-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-secondary.disabled, .btn-outline-secondary:disabled { + color: #6c757d; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, +.show > .btn-outline-secondary.dropdown-toggle { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-success { + color: #28a745; + border-color: #28a745; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-success:hover { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-success:focus, .btn-outline-success.focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-success.disabled, .btn-outline-success:disabled { + color: #28a745; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, +.show > .btn-outline-success.dropdown-toggle { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-info { + color: #17a2b8; + border-color: #17a2b8; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-info:hover { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-info:focus, .btn-outline-info.focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-info.disabled, .btn-outline-info:disabled { + color: #17a2b8; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, +.show > .btn-outline-info.dropdown-toggle { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-warning { + color: #ffc107; + border-color: #ffc107; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-warning:hover { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-warning:focus, .btn-outline-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-warning.disabled, .btn-outline-warning:disabled { + color: #ffc107; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, +.show > .btn-outline-warning.dropdown-toggle { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-danger { + color: #dc3545; + border-color: #dc3545; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-danger:hover { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-danger:focus, .btn-outline-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-danger.disabled, .btn-outline-danger:disabled { + color: #dc3545; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, +.show > .btn-outline-danger.dropdown-toggle { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-light { + color: #f8f9fa; + border-color: #f8f9fa; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-light:hover { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-light:focus, .btn-outline-light.focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-light.disabled, .btn-outline-light:disabled { + color: #f8f9fa; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, +.show > .btn-outline-light.dropdown-toggle { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-outline-dark { + color: #343a40; + border-color: #343a40; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-outline-dark:hover { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-dark:focus, .btn-outline-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-dark.disabled, .btn-outline-dark:disabled { + color: #343a40; + background-color: transparent; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, +.show > .btn-outline-dark.dropdown-toggle { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +/* line 77, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-link { + font-weight: 400; + color: #007bff; + text-decoration: none; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-link:hover { + color: #0056b3; + text-decoration: underline; +} + +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-link:focus, .btn-link.focus { + text-decoration: underline; + box-shadow: none; +} + +/* line 93, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-link:disabled, .btn-link.disabled { + color: #6c757d; + pointer-events: none; +} + +/* line 107, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-lg, .btn-group-lg > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +/* line 111, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-sm, .btn-group-sm > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +/* line 120, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-block { + display: block; + width: 100%; +} + +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +.btn-block + .btn-block { + margin-top: 0.5rem; +} + +/* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ +.fade { + -webkit-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; +} + +@media (prefers-reduced-motion: reduce) { + /* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ + .fade { + -webkit-transition: none; + transition: none; + } +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ +.fade:not(.show) { + opacity: 0; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ +.collapse:not(.show) { + display: none; +} + +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ +.collapsing { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition: height 0.35s ease; + transition: height 0.35s ease; +} + +@media (prefers-reduced-motion: reduce) { + /* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ + .collapsing { + -webkit-transition: none; + transition: none; + } +} + +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropup, +.dropright, +.dropdown, +.dropleft { + position: relative; +} + +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-toggle { + white-space: nowrap; +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropdown-toggle:empty::after { + margin-left: 0; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0.125rem 0 0; + font-size: 1rem; + color: #212529; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 0.25rem; +} + +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-menu-left { + right: auto; + left: 0; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-menu-right { + right: 0; + left: auto; +} + +@media (min-width: 576px) { + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-sm-left { + right: auto; + left: 0; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-sm-right { + right: 0; + left: auto; + } +} + +@media (min-width: 768px) { + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-md-left { + right: auto; + left: 0; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-md-right { + right: 0; + left: auto; + } +} + +@media (min-width: 992px) { + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-lg-left { + right: auto; + left: 0; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-lg-right { + right: 0; + left: auto; + } +} + +@media (min-width: 1200px) { + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-xl-left { + right: auto; + left: 0; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + .dropdown-menu-xl-right { + right: 0; + left: auto; + } +} + +/* line 57, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropup .dropdown-menu { + top: auto; + bottom: 100%; + margin-top: 0; + margin-bottom: 0.125rem; +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropup .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropup .dropdown-toggle:empty::after { + margin-left: 0; +} + +/* line 70, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropright .dropdown-menu { + top: 0; + right: auto; + left: 100%; + margin-top: 0; + margin-left: 0.125rem; +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropright .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0; + border-bottom: 0.3em solid transparent; + border-left: 0.3em solid; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropright .dropdown-toggle:empty::after { + margin-left: 0; +} + +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropright .dropdown-toggle::after { + vertical-align: 0; +} + +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropleft .dropdown-menu { + top: 0; + right: 100%; + left: auto; + margin-top: 0; + margin-right: 0.125rem; +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropleft .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropleft .dropdown-toggle::after { + display: none; +} + +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropleft .dropdown-toggle::before { + display: inline-block; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +.dropleft .dropdown-toggle:empty::after { + margin-left: 0; +} + +/* line 97, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropleft .dropdown-toggle::before { + vertical-align: 0; +} + +/* line 106, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] { + right: auto; + bottom: auto; +} + +/* line 116, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-divider { + height: 0; + margin: 0.5rem 0; + overflow: hidden; + border-top: 1px solid #e9ecef; +} + +/* line 123, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-item { + display: block; + width: 100%; + padding: 0.25rem 1.5rem; + clear: both; + font-weight: 400; + color: #212529; + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.dropdown-item:hover, .dropdown-item:focus { + color: #16181b; + text-decoration: none; + background-color: #f8f9fa; +} + +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-item.active, .dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #007bff; +} + +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-item.disabled, .dropdown-item:disabled { + color: #6c757d; + pointer-events: none; + background-color: transparent; +} + +/* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-menu.show { + display: block; +} + +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-header { + display: block; + padding: 0.5rem 1.5rem; + margin-bottom: 0; + font-size: 0.875rem; + color: #6c757d; + white-space: nowrap; +} + +/* line 187, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +.dropdown-item-text { + display: block; + padding: 0.25rem 1.5rem; + color: #212529; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group, +.btn-group-vertical { + position: relative; + display: -webkit-inline-box; + display: inline-flex; + vertical-align: middle; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + -webkit-box-flex: 1; + flex: 1 1 auto; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.btn-group > .btn:hover, +.btn-group-vertical > .btn:hover { + z-index: 1; +} + +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, +.btn-group-vertical > .btn:focus, +.btn-group-vertical > .btn:active, +.btn-group-vertical > .btn.active { + z-index: 1; +} + +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-toolbar { + display: -webkit-box; + display: flex; + flex-wrap: wrap; + -webkit-box-pack: start; + justify-content: flex-start; +} + +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-toolbar .input-group { + width: auto; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) { + margin-left: -1px; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.dropdown-toggle-split { + padding-right: 0.5625rem; + padding-left: 0.5625rem; +} + +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.dropdown-toggle-split::after, +.dropup .dropdown-toggle-split::after, +.dropright .dropdown-toggle-split::after { + margin-left: 0; +} + +/* line 79, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.dropleft .dropdown-toggle-split::before { + margin-right: 0; +} + +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { + padding-right: 0.375rem; + padding-left: 0.375rem; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { + padding-right: 0.75rem; + padding-left: 0.75rem; +} + +/* line 111, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group-vertical { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + -webkit-box-align: start; + align-items: flex-start; + -webkit-box-pack: center; + justify-content: center; +} + +/* line 116, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group-vertical > .btn, +.btn-group-vertical > .btn-group { + width: 100%; +} + +/* line 121, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group-vertical > .btn:not(:first-child), +.btn-group-vertical > .btn-group:not(:first-child) { + margin-top: -1px; +} + +/* line 127, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group-vertical > .btn-group:not(:last-child) > .btn { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +/* line 132, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group-vertical > .btn:not(:first-child), +.btn-group-vertical > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +/* line 152, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group-toggle > .btn, +.btn-group-toggle > .btn-group > .btn { + margin-bottom: 0; +} + +/* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +.btn-group-toggle > .btn input[type="radio"], +.btn-group-toggle > .btn input[type="checkbox"], +.btn-group-toggle > .btn-group > .btn input[type="radio"], +.btn-group-toggle > .btn-group > .btn input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group { + position: relative; + display: -webkit-box; + display: flex; + flex-wrap: wrap; + -webkit-box-align: stretch; + align-items: stretch; + width: 100%; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .form-control, +.input-group > .form-control-plaintext, +.input-group > .custom-select, +.input-group > .custom-file { + position: relative; + -webkit-box-flex: 1; + flex: 1 1 auto; + width: 1%; + margin-bottom: 0; +} + +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .form-control + .form-control, +.input-group > .form-control + .custom-select, +.input-group > .form-control + .custom-file, +.input-group > .form-control-plaintext + .form-control, +.input-group > .form-control-plaintext + .custom-select, +.input-group > .form-control-plaintext + .custom-file, +.input-group > .custom-select + .form-control, +.input-group > .custom-select + .custom-select, +.input-group > .custom-select + .custom-file, +.input-group > .custom-file + .form-control, +.input-group > .custom-file + .custom-select, +.input-group > .custom-file + .custom-file { + margin-left: -1px; +} + +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .form-control:focus, +.input-group > .custom-select:focus, +.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { + z-index: 3; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .custom-file .custom-file-input:focus { + z-index: 4; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .form-control:not(:last-child), +.input-group > .custom-select:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .form-control:not(:first-child), +.input-group > .custom-select:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .custom-file { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; +} + +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .custom-file:not(:last-child) .custom-file-label, +.input-group > .custom-file:not(:last-child) .custom-file-label::after { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .custom-file:not(:first-child) .custom-file-label { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-prepend, +.input-group-append { + display: -webkit-box; + display: flex; +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-prepend .btn, +.input-group-append .btn { + position: relative; + z-index: 2; +} + +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-prepend .btn:focus, +.input-group-append .btn:focus { + z-index: 3; +} + +/* line 85, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-prepend .btn + .btn, +.input-group-prepend .btn + .input-group-text, +.input-group-prepend .input-group-text + .input-group-text, +.input-group-prepend .input-group-text + .btn, +.input-group-append .btn + .btn, +.input-group-append .btn + .input-group-text, +.input-group-append .input-group-text + .input-group-text, +.input-group-append .input-group-text + .btn { + margin-left: -1px; +} + +/* line 93, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-prepend { + margin-right: -1px; +} + +/* line 94, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-append { + margin-left: -1px; +} + +/* line 102, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-text { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + padding: 0.375rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + text-align: center; + white-space: nowrap; + background-color: #e9ecef; + border: 1px solid #ced4da; + border-radius: 0.25rem; +} + +/* line 118, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-text input[type="radio"], +.input-group-text input[type="checkbox"] { + margin-top: 0; +} + +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-lg > .form-control:not(textarea), +.input-group-lg > .custom-select { + height: calc(1.5em + 1rem + 2px); +} + +/* line 135, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-lg > .form-control, +.input-group-lg > .custom-select, +.input-group-lg > .input-group-prepend > .input-group-text, +.input-group-lg > .input-group-append > .input-group-text, +.input-group-lg > .input-group-prepend > .btn, +.input-group-lg > .input-group-append > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-sm > .form-control:not(textarea), +.input-group-sm > .custom-select { + height: calc(1.5em + 0.5rem + 2px); +} + +/* line 152, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-sm > .form-control, +.input-group-sm > .custom-select, +.input-group-sm > .input-group-prepend > .input-group-text, +.input-group-sm > .input-group-append > .input-group-text, +.input-group-sm > .input-group-prepend > .btn, +.input-group-sm > .input-group-append > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +/* line 164, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group-lg > .custom-select, +.input-group-sm > .custom-select { + padding-right: 1.75rem; +} + +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .input-group-prepend > .btn, +.input-group > .input-group-prepend > .input-group-text, +.input-group > .input-group-append:not(:last-child) > .btn, +.input-group > .input-group-append:not(:last-child) > .input-group-text, +.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), +.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +/* line 186, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +.input-group > .input-group-append > .btn, +.input-group > .input-group-append > .input-group-text, +.input-group > .input-group-prepend:not(:first-child) > .btn, +.input-group > .input-group-prepend:not(:first-child) > .input-group-text, +.input-group > .input-group-prepend:first-child > .btn:not(:first-child), +.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control { + position: relative; + display: block; + min-height: 1.5rem; + padding-left: 1.5rem; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-inline { + display: -webkit-inline-box; + display: inline-flex; + margin-right: 1rem; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-input { + position: absolute; + z-index: -1; + opacity: 0; +} + +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-input:checked ~ .custom-control-label::before { + color: #fff; + border-color: #007bff; + background-color: #007bff; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-input:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-input:focus:not(:checked) ~ .custom-control-label::before { + border-color: #80bdff; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-input:not(:disabled):active ~ .custom-control-label::before { + color: #fff; + background-color: #b3d7ff; + border-color: #b3d7ff; +} + +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-input:disabled ~ .custom-control-label { + color: #6c757d; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-input:disabled ~ .custom-control-label::before { + background-color: #e9ecef; +} + +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-label { + position: relative; + margin-bottom: 0; + vertical-align: top; +} + +/* line 75, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-label::before { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + pointer-events: none; + content: ""; + background-color: #fff; + border: #adb5bd solid 1px; +} + +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-label::after { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + content: ""; + background: no-repeat 50% / 50% 50%; +} + +/* line 108, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-checkbox .custom-control-label::before { + border-radius: 0.25rem; +} + +/* line 113, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e"); +} + +/* line 119, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { + border-color: #007bff; + background-color: #007bff; +} + +/* line 124, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); +} + +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +/* line 133, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +/* line 144, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-radio .custom-control-label::before { + border-radius: 50%; +} + +/* line 150, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-radio .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); +} + +/* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +/* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-switch { + padding-left: 2.25rem; +} + +/* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-switch .custom-control-label::before { + left: -2.25rem; + width: 1.75rem; + pointer-events: all; + border-radius: 0.5rem; +} + +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-switch .custom-control-label::after { + top: calc(0.25rem + 2px); + left: calc(-2.25rem + 2px); + width: calc(1rem - 4px); + height: calc(1rem - 4px); + background-color: #adb5bd; + border-radius: 0.5rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; + transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + .custom-switch .custom-control-label::after { + -webkit-transition: none; + transition: none; + } +} + +/* line 192, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-switch .custom-control-input:checked ~ .custom-control-label::after { + background-color: #fff; + -webkit-transform: translateX(0.75rem); + transform: translateX(0.75rem); +} + +/* line 199, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +/* line 212, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select { + display: inline-block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 1.75rem 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + vertical-align: middle; + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: 0.25rem; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +/* line 230, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select:focus { + border-color: #80bdff; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 239, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select:focus::-ms-value { + color: #495057; + background-color: #fff; +} + +/* line 250, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select[multiple], .custom-select[size]:not([size="1"]) { + height: auto; + padding-right: 0.75rem; + background-image: none; +} + +/* line 257, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select:disabled { + color: #6c757d; + background-color: #e9ecef; +} + +/* line 263, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select::-ms-expand { + display: none; +} + +/* line 268, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select-sm { + height: calc(1.5em + 0.5rem + 2px); + padding-top: 0.25rem; + padding-bottom: 0.25rem; + padding-left: 0.5rem; + font-size: 0.875rem; +} + +/* line 276, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-select-lg { + height: calc(1.5em + 1rem + 2px); + padding-top: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 1rem; + font-size: 1.25rem; +} + +/* line 289, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file { + position: relative; + display: inline-block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + margin-bottom: 0; +} + +/* line 297, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file-input { + position: relative; + z-index: 2; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + margin: 0; + opacity: 0; +} + +/* line 305, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file-input:focus ~ .custom-file-label { + border-color: #80bdff; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 310, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file-input:disabled ~ .custom-file-label { + background-color: #e9ecef; +} + +/* line 315, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file-input:lang(en) ~ .custom-file-label::after { + content: "Browse"; +} + +/* line 320, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file-input ~ .custom-file-label[data-browse]::after { + content: attr(data-browse); +} + +/* line 325, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file-label { + position: absolute; + top: 0; + right: 0; + left: 0; + z-index: 1; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: 0.25rem; +} + +/* line 342, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-file-label::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + z-index: 3; + display: block; + height: calc(1.5em + 0.75rem); + padding: 0.375rem 0.75rem; + line-height: 1.5; + color: #495057; + content: "Browse"; + background-color: #e9ecef; + border-left: inherit; + border-radius: 0 0.25rem 0.25rem 0; +} + +/* line 366, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range { + width: 100%; + height: calc(1rem + 0.4rem); + padding: 0; + background-color: transparent; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +/* line 373, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:focus { + outline: none; +} + +/* line 378, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:focus::-webkit-slider-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 379, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 380, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:focus::-ms-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 383, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-moz-focus-outer { + border: 0; +} + +/* line 387, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -0.25rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + -webkit-appearance: none; + appearance: none; +} + +@media (prefers-reduced-motion: reduce) { + /* line 387, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + .custom-range::-webkit-slider-thumb { + -webkit-transition: none; + transition: none; + } +} + +/* line 398, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-webkit-slider-thumb:active { + background-color: #b3d7ff; +} + +/* line 403, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-webkit-slider-runnable-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; +} + +/* line 414, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + -moz-appearance: none; + appearance: none; +} + +@media (prefers-reduced-motion: reduce) { + /* line 414, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + .custom-range::-moz-range-thumb { + -webkit-transition: none; + transition: none; + } +} + +/* line 424, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-moz-range-thumb:active { + background-color: #b3d7ff; +} + +/* line 429, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-moz-range-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; +} + +/* line 440, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-ms-thumb { + width: 1rem; + height: 1rem; + margin-top: 0; + margin-right: 0.2rem; + margin-left: 0.2rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + appearance: none; +} + +@media (prefers-reduced-motion: reduce) { + /* line 440, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + .custom-range::-ms-thumb { + -webkit-transition: none; + transition: none; + } +} + +/* line 453, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-ms-thumb:active { + background-color: #b3d7ff; +} + +/* line 458, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-ms-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: transparent; + border-color: transparent; + border-width: 0.5rem; +} + +/* line 469, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-ms-fill-lower { + background-color: #dee2e6; + border-radius: 1rem; +} + +/* line 474, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range::-ms-fill-upper { + margin-right: 15px; + background-color: #dee2e6; + border-radius: 1rem; +} + +/* line 481, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:disabled::-webkit-slider-thumb { + background-color: #adb5bd; +} + +/* line 485, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:disabled::-webkit-slider-runnable-track { + cursor: default; +} + +/* line 489, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:disabled::-moz-range-thumb { + background-color: #adb5bd; +} + +/* line 493, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:disabled::-moz-range-track { + cursor: default; +} + +/* line 497, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-range:disabled::-ms-thumb { + background-color: #adb5bd; +} + +/* line 503, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +.custom-control-label::before, +.custom-file-label, +.custom-select { + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + /* line 503, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + .custom-control-label::before, + .custom-file-label, + .custom-select { + -webkit-transition: none; + transition: none; + } +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav { + display: -webkit-box; + display: flex; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-link { + display: block; + padding: 0.5rem 1rem; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.nav-link:hover, .nav-link:focus { + text-decoration: none; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-link.disabled { + color: #6c757d; + pointer-events: none; + cursor: default; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-tabs { + border-bottom: 1px solid #dee2e6; +} + +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-tabs .nav-item { + margin-bottom: -1px; +} + +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-tabs .nav-link { + border: 1px solid transparent; + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { + border-color: #e9ecef #e9ecef #dee2e6; +} + +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-tabs .nav-link.disabled { + color: #6c757d; + background-color: transparent; + border-color: transparent; +} + +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-tabs .nav-link.active, +.nav-tabs .nav-item.show .nav-link { + color: #495057; + background-color: #fff; + border-color: #dee2e6 #dee2e6 #fff; +} + +/* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +/* line 77, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-pills .nav-link { + border-radius: 0.25rem; +} + +/* line 81, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #007bff; +} + +/* line 94, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-fill .nav-item { + -webkit-box-flex: 1; + flex: 1 1 auto; + text-align: center; +} + +/* line 101, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.nav-justified .nav-item { + flex-basis: 0; + -webkit-box-flex: 1; + flex-grow: 1; + text-align: center; +} + +/* line 114, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.tab-content > .tab-pane { + display: none; +} + +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +.tab-content > .active { + display: block; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar { + position: relative; + display: -webkit-box; + display: flex; + flex-wrap: wrap; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: justify; + justify-content: space-between; + padding: 0.5rem 1rem; +} + +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar > .container, +.navbar > .container-fluid { + display: -webkit-box; + display: flex; + flex-wrap: wrap; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: justify; + justify-content: space-between; +} + +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-brand { + display: inline-block; + padding-top: 0.3125rem; + padding-bottom: 0.3125rem; + margin-right: 1rem; + font-size: 1.25rem; + line-height: inherit; + white-space: nowrap; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-brand:hover, .navbar-brand:focus { + text-decoration: none; +} + +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-nav { + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +/* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-nav .nav-link { + padding-right: 0; + padding-left: 0; +} + +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-nav .dropdown-menu { + position: static; + float: none; +} + +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-text { + display: inline-block; + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} + +/* line 99, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-collapse { + flex-basis: 100%; + -webkit-box-flex: 1; + flex-grow: 1; + -webkit-box-align: center; + align-items: center; +} + +/* line 108, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-toggler { + padding: 0.25rem 0.75rem; + font-size: 1.25rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: 0.25rem; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-toggler:hover, .navbar-toggler:focus { + text-decoration: none; +} + +/* line 123, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + content: ""; + background: no-repeat center center; + background-size: 100% 100%; +} + +@media (max-width: 575.98px) { + /* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 576px) { + /* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row nowrap; + -webkit-box-pack: start; + justify-content: flex-start; + } + /* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute; + } + /* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + /* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + flex-wrap: nowrap; + } + /* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm .navbar-collapse { + display: -webkit-box !important; + display: flex !important; + flex-basis: auto; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-sm .navbar-toggler { + display: none; + } +} + +@media (max-width: 767.98px) { + /* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 768px) { + /* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row nowrap; + -webkit-box-pack: start; + justify-content: flex-start; + } + /* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute; + } + /* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + /* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + flex-wrap: nowrap; + } + /* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md .navbar-collapse { + display: -webkit-box !important; + display: flex !important; + flex-basis: auto; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-md .navbar-toggler { + display: none; + } +} + +@media (max-width: 991.98px) { + /* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 992px) { + /* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row nowrap; + -webkit-box-pack: start; + justify-content: flex-start; + } + /* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute; + } + /* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + /* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + flex-wrap: nowrap; + } + /* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg .navbar-collapse { + display: -webkit-box !important; + display: flex !important; + flex-basis: auto; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-lg .navbar-toggler { + display: none; + } +} + +@media (max-width: 1199.98px) { + /* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 1200px) { + /* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row nowrap; + -webkit-box-pack: start; + justify-content: flex-start; + } + /* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute; + } + /* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + /* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + flex-wrap: nowrap; + } + /* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl .navbar-collapse { + display: -webkit-box !important; + display: flex !important; + flex-basis: auto; + } + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + .navbar-expand-xl .navbar-toggler { + display: none; + } +} + +/* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row nowrap; + -webkit-box-pack: start; + justify-content: flex-start; +} + +/* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand > .container, +.navbar-expand > .container-fluid { + padding-right: 0; + padding-left: 0; +} + +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; +} + +/* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand .navbar-nav .dropdown-menu { + position: absolute; +} + +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; +} + +/* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand > .container, +.navbar-expand > .container-fluid { + flex-wrap: nowrap; +} + +/* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand .navbar-collapse { + display: -webkit-box !important; + display: flex !important; + flex-basis: auto; +} + +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-expand .navbar-toggler { + display: none; +} + +/* line 194, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-brand { + color: rgba(0, 0, 0, 0.9); +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { + color: rgba(0, 0, 0, 0.9); +} + +/* line 203, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-nav .nav-link { + color: rgba(0, 0, 0, 0.5); +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { + color: rgba(0, 0, 0, 0.7); +} + +/* line 210, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, 0.3); +} + +/* line 215, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-nav .show > .nav-link, +.navbar-light .navbar-nav .active > .nav-link, +.navbar-light .navbar-nav .nav-link.show, +.navbar-light .navbar-nav .nav-link.active { + color: rgba(0, 0, 0, 0.9); +} + +/* line 223, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, 0.5); + border-color: rgba(0, 0, 0, 0.1); +} + +/* line 228, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); +} + +/* line 232, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-text { + color: rgba(0, 0, 0, 0.5); +} + +/* line 234, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-light .navbar-text a { + color: rgba(0, 0, 0, 0.9); +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { + color: rgba(0, 0, 0, 0.9); +} + +/* line 246, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-brand { + color: #fff; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { + color: #fff; +} + +/* line 255, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-nav .nav-link { + color: rgba(255, 255, 255, 0.5); +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { + color: rgba(255, 255, 255, 0.75); +} + +/* line 262, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, 0.25); +} + +/* line 267, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-nav .show > .nav-link, +.navbar-dark .navbar-nav .active > .nav-link, +.navbar-dark .navbar-nav .nav-link.show, +.navbar-dark .navbar-nav .nav-link.active { + color: #fff; +} + +/* line 275, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, 0.5); + border-color: rgba(255, 255, 255, 0.1); +} + +/* line 280, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); +} + +/* line 284, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-text { + color: rgba(255, 255, 255, 0.5); +} + +/* line 286, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +.navbar-dark .navbar-text a { + color: #fff; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { + color: #fff; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card { + position: relative; + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid rgba(0, 0, 0, 0.125); + border-radius: 0.25rem; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card > hr { + margin-right: 0; + margin-left: 0; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card > .list-group:first-child .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card > .list-group:last-child .list-group-item:last-child { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-body { + -webkit-box-flex: 1; + flex: 1 1 auto; + padding: 1.25rem; +} + +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-title { + margin-bottom: 0.75rem; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-subtitle { + margin-top: -0.375rem; + margin-bottom: 0; +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-text:last-child { + margin-bottom: 0; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.card-link:hover { + text-decoration: none; +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-link + .card-link { + margin-left: 1.25rem; +} + +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-header { + padding: 0.75rem 1.25rem; + margin-bottom: 0; + background-color: rgba(0, 0, 0, 0.03); + border-bottom: 1px solid rgba(0, 0, 0, 0.125); +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-header:first-child { + border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; +} + +/* line 81, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-header + .list-group .list-group-item:first-child { + border-top: 0; +} + +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-footer { + padding: 0.75rem 1.25rem; + background-color: rgba(0, 0, 0, 0.03); + border-top: 1px solid rgba(0, 0, 0, 0.125); +} + +/* line 92, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-footer:last-child { + border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); +} + +/* line 102, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-header-tabs { + margin-right: -0.625rem; + margin-bottom: -0.75rem; + margin-left: -0.625rem; + border-bottom: 0; +} + +/* line 109, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-header-pills { + margin-right: -0.625rem; + margin-left: -0.625rem; +} + +/* line 115, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1.25rem; +} + +/* line 124, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-img { + width: 100%; + border-radius: calc(0.25rem - 1px); +} + +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-img-top { + width: 100%; + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); +} + +/* line 135, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-img-bottom { + width: 100%; + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); +} + +/* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-deck { + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; +} + +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-deck .card { + margin-bottom: 15px; +} + +@media (min-width: 576px) { + /* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-deck { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row wrap; + margin-right: -15px; + margin-left: -15px; + } + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-deck .card { + display: -webkit-box; + display: flex; + -webkit-box-flex: 1; + flex: 1 0 0%; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + margin-right: 15px; + margin-bottom: 0; + margin-left: 15px; + } +} + +/* line 173, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-group { + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; +} + +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-group > .card { + margin-bottom: 15px; +} + +@media (min-width: 576px) { + /* line 173, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-flow: row wrap; + } + /* line 187, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card { + -webkit-box-flex: 1; + flex: 1 0 0%; + margin-bottom: 0; + } + /* line 192, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card + .card { + margin-left: 0; + border-left: 0; + } + /* line 199, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + /* line 202, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card:not(:last-child) .card-img-top, + .card-group > .card:not(:last-child) .card-header { + border-top-right-radius: 0; + } + /* line 207, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card:not(:last-child) .card-img-bottom, + .card-group > .card:not(:last-child) .card-footer { + border-bottom-right-radius: 0; + } + /* line 214, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + /* line 217, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card:not(:first-child) .card-img-top, + .card-group > .card:not(:first-child) .card-header { + border-top-left-radius: 0; + } + /* line 222, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-group > .card:not(:first-child) .card-img-bottom, + .card-group > .card:not(:first-child) .card-footer { + border-bottom-left-radius: 0; + } +} + +/* line 239, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.card-columns .card { + margin-bottom: 0.75rem; +} + +@media (min-width: 576px) { + /* line 238, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-columns { + -webkit-column-count: 3; + -moz-column-count: 3; + column-count: 3; + -webkit-column-gap: 1.25rem; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + orphans: 1; + widows: 1; + } + /* line 249, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + .card-columns .card { + display: inline-block; + width: 100%; + } +} + +/* line 262, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.accordion > .card { + overflow: hidden; +} + +/* line 266, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.accordion > .card:not(:first-of-type) .card-header:first-child { + border-radius: 0; +} + +/* line 270, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.accordion > .card:not(:first-of-type):not(:last-of-type) { + border-bottom: 0; + border-radius: 0; +} + +/* line 276, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.accordion > .card:first-of-type { + border-bottom: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +/* line 281, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.accordion > .card:last-of-type { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +/* line 285, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +.accordion > .card .card-header { + margin-bottom: -1px; +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +.breadcrumb { + display: -webkit-box; + display: flex; + flex-wrap: wrap; + padding: 0.75rem 1rem; + margin-bottom: 1rem; + list-style: none; + background-color: #e9ecef; + border-radius: 0.25rem; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +.breadcrumb-item + .breadcrumb-item { + padding-left: 0.5rem; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +.breadcrumb-item + .breadcrumb-item::before { + display: inline-block; + padding-right: 0.5rem; + color: #6c757d; + content: "/"; +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: underline; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: none; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +.breadcrumb-item.active { + color: #6c757d; +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.pagination { + display: -webkit-box; + display: flex; + padding-left: 0; + list-style: none; + border-radius: 0.25rem; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.page-link { + position: relative; + display: block; + padding: 0.5rem 0.75rem; + margin-left: -1px; + line-height: 1.25; + color: #007bff; + background-color: #fff; + border: 1px solid #dee2e6; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.page-link:hover { + z-index: 2; + color: #0056b3; + text-decoration: none; + background-color: #e9ecef; + border-color: #dee2e6; +} + +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.page-link:focus { + z-index: 2; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.page-item:first-child .page-link { + margin-left: 0; + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.page-item:last-child .page-link { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.page-item.active .page-link { + z-index: 1; + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +.page-item.disabled .page-link { + color: #6c757d; + pointer-events: none; + cursor: auto; + background-color: #fff; + border-color: #dee2e6; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +.pagination-lg .page-link { + padding: 0.75rem 1.5rem; + font-size: 1.25rem; + line-height: 1.5; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +.pagination-lg .page-item:first-child .page-link { + border-top-left-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +.pagination-lg .page-item:last-child .page-link { + border-top-right-radius: 0.3rem; + border-bottom-right-radius: 0.3rem; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +.pagination-sm .page-link { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +.pagination-sm .page-item:first-child .page-link { + border-top-left-radius: 0.2rem; + border-bottom-left-radius: 0.2rem; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +.pagination-sm .page-item:last-child .page-link { + border-top-right-radius: 0.2rem; + border-bottom-right-radius: 0.2rem; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge { + display: inline-block; + padding: 0.25em 0.4em; + font-size: 75%; + font-weight: 700; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 0.25rem; + -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ + .badge { + -webkit-transition: none; + transition: none; + } +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge:hover, a.badge:focus { + text-decoration: none; +} + +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge:empty { + display: none; +} + +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.btn .badge { + position: relative; + top: -1px; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-pill { + padding-right: 0.6em; + padding-left: 0.6em; + border-radius: 10rem; +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-primary { + color: #fff; + background-color: #007bff; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-primary:hover, a.badge-primary:focus { + color: #fff; + background-color: #0062cc; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-primary:focus, a.badge-primary.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-secondary { + color: #fff; + background-color: #6c757d; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-secondary:hover, a.badge-secondary:focus { + color: #fff; + background-color: #545b62; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-secondary:focus, a.badge-secondary.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-success { + color: #fff; + background-color: #28a745; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-success:hover, a.badge-success:focus { + color: #fff; + background-color: #1e7e34; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-success:focus, a.badge-success.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-info { + color: #fff; + background-color: #17a2b8; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-info:hover, a.badge-info:focus { + color: #fff; + background-color: #117a8b; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-info:focus, a.badge-info.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-warning { + color: #212529; + background-color: #ffc107; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-warning:hover, a.badge-warning:focus { + color: #212529; + background-color: #d39e00; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-warning:focus, a.badge-warning.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-danger { + color: #fff; + background-color: #dc3545; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-danger:hover, a.badge-danger:focus { + color: #fff; + background-color: #bd2130; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-danger:focus, a.badge-danger.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-light { + color: #212529; + background-color: #f8f9fa; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-light:hover, a.badge-light:focus { + color: #212529; + background-color: #dae0e5; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-light:focus, a.badge-light.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +.badge-dark { + color: #fff; + background-color: #343a40; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.badge-dark:hover, a.badge-dark:focus { + color: #fff; + background-color: #1d2124; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +a.badge-dark:focus, a.badge-dark.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_jumbotron.scss */ +.jumbotron { + padding: 2rem 1rem; + margin-bottom: 2rem; + background-color: #e9ecef; + border-radius: 0.3rem; +} + +@media (min-width: 576px) { + /* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_jumbotron.scss */ + .jumbotron { + padding: 4rem 2rem; + } +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_jumbotron.scss */ +.jumbotron-fluid { + padding-right: 0; + padding-left: 0; + border-radius: 0; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert { + position: relative; + padding: 0.75rem 1.25rem; + margin-bottom: 1rem; + border: 1px solid transparent; + border-radius: 0.25rem; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-heading { + color: inherit; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-link { + font-weight: 700; +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-dismissible { + padding-right: 4rem; +} + +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-dismissible .close { + position: absolute; + top: 0; + right: 0; + padding: 0.75rem 1.25rem; + color: inherit; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-primary { + color: #004085; + background-color: #cce5ff; + border-color: #b8daff; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-primary hr { + border-top-color: #9fcdff; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-primary .alert-link { + color: #002752; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-secondary { + color: #383d41; + background-color: #e2e3e5; + border-color: #d6d8db; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-secondary hr { + border-top-color: #c8cbcf; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-secondary .alert-link { + color: #202326; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-success { + color: #155724; + background-color: #d4edda; + border-color: #c3e6cb; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-success hr { + border-top-color: #b1dfbb; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-success .alert-link { + color: #0b2e13; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-info { + color: #0c5460; + background-color: #d1ecf1; + border-color: #bee5eb; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-info hr { + border-top-color: #abdde5; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-info .alert-link { + color: #062c33; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-warning { + color: #856404; + background-color: #fff3cd; + border-color: #ffeeba; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-warning hr { + border-top-color: #ffe8a1; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-warning .alert-link { + color: #533f03; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-danger { + color: #721c24; + background-color: #f8d7da; + border-color: #f5c6cb; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-danger hr { + border-top-color: #f1b0b7; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-danger .alert-link { + color: #491217; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-light { + color: #818182; + background-color: #fefefe; + border-color: #fdfdfe; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-light hr { + border-top-color: #ececf6; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-light .alert-link { + color: #686868; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +.alert-dark { + color: #1b1e21; + background-color: #d6d8d9; + border-color: #c6c8ca; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-dark hr { + border-top-color: #b9bbbe; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +.alert-dark .alert-link { + color: #040505; +} + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 1rem 0; + } + to { + background-position: 0 0; + } +} + +@keyframes progress-bar-stripes { + from { + background-position: 1rem 0; + } + to { + background-position: 0 0; + } +} + +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ +.progress { + display: -webkit-box; + display: flex; + height: 1rem; + overflow: hidden; + font-size: 0.75rem; + background-color: #e9ecef; + border-radius: 0.25rem; +} + +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ +.progress-bar { + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + -webkit-box-pack: center; + justify-content: center; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #007bff; + -webkit-transition: width 0.6s ease; + transition: width 0.6s ease; +} + +@media (prefers-reduced-motion: reduce) { + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ + .progress-bar { + -webkit-transition: none; + transition: none; + } +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ +.progress-bar-striped { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 1rem 1rem; +} + +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ +.progress-bar-animated { + -webkit-animation: progress-bar-stripes 1s linear infinite; + animation: progress-bar-stripes 1s linear infinite; +} + +@media (prefers-reduced-motion: reduce) { + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ + .progress-bar-animated { + -webkit-animation: none; + animation: none; + } +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_media.scss */ +.media { + display: -webkit-box; + display: flex; + -webkit-box-align: start; + align-items: flex-start; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_media.scss */ +.media-body { + -webkit-box-flex: 1; + flex: 1; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group { + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-item-action { + width: 100%; + color: #495057; + text-align: inherit; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-action:hover, .list-group-item-action:focus { + z-index: 1; + color: #495057; + text-decoration: none; + background-color: #f8f9fa; +} + +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-item-action:active { + color: #212529; + background-color: #e9ecef; +} + +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-item { + position: relative; + display: block; + padding: 0.75rem 1.25rem; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.125); +} + +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +/* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-item.disabled, .list-group-item:disabled { + color: #6c757d; + pointer-events: none; + background-color: #fff; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-item.active { + z-index: 2; + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +/* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-horizontal { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; +} + +/* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-horizontal .list-group-item { + margin-right: -1px; + margin-bottom: 0; +} + +/* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-horizontal .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; +} + +/* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-horizontal .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; +} + +@media (min-width: 576px) { + /* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-sm { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-sm .list-group-item { + margin-right: -1px; + margin-bottom: 0; + } + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-sm .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-sm .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } +} + +@media (min-width: 768px) { + /* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-md { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-md .list-group-item { + margin-right: -1px; + margin-bottom: 0; + } + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-md .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-md .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } +} + +@media (min-width: 992px) { + /* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-lg { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-lg .list-group-item { + margin-right: -1px; + margin-bottom: 0; + } + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-lg .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-lg .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } +} + +@media (min-width: 1200px) { + /* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-xl { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + flex-direction: row; + } + /* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-xl .list-group-item { + margin-right: -1px; + margin-bottom: 0; + } + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-xl .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + .list-group-horizontal-xl .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } +} + +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-flush .list-group-item { + border-right: 0; + border-left: 0; + border-radius: 0; +} + +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-flush .list-group-item:last-child { + margin-bottom: -1px; +} + +/* line 128, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-flush:first-child .list-group-item:first-child { + border-top: 0; +} + +/* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +.list-group-flush:last-child .list-group-item:last-child { + margin-bottom: 0; + border-bottom: 0; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-primary { + color: #004085; + background-color: #b8daff; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { + color: #004085; + background-color: #9fcdff; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #004085; + border-color: #004085; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-secondary { + color: #383d41; + background-color: #d6d8db; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { + color: #383d41; + background-color: #c8cbcf; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #383d41; + border-color: #383d41; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-success { + color: #155724; + background-color: #c3e6cb; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { + color: #155724; + background-color: #b1dfbb; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #155724; + border-color: #155724; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-info { + color: #0c5460; + background-color: #bee5eb; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { + color: #0c5460; + background-color: #abdde5; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #0c5460; + border-color: #0c5460; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-warning { + color: #856404; + background-color: #ffeeba; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { + color: #856404; + background-color: #ffe8a1; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #856404; + border-color: #856404; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-danger { + color: #721c24; + background-color: #f5c6cb; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { + color: #721c24; + background-color: #f1b0b7; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-danger.list-group-item-action.active { + color: #fff; + background-color: #721c24; + border-color: #721c24; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-light { + color: #818182; + background-color: #fdfdfe; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { + color: #818182; + background-color: #ececf6; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #818182; + border-color: #818182; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-dark { + color: #1b1e21; + background-color: #c6c8ca; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { + color: #1b1e21; + background-color: #b9bbbe; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +.list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #1b1e21; + border-color: #1b1e21; +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_close.scss */ +.close { + float: right; + font-size: 1.5rem; + font-weight: 700; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + opacity: .5; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.close:hover { + color: #000; + text-decoration: none; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { + opacity: .75; +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_close.scss */ +button.close { + padding: 0; + background-color: transparent; + border: 0; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_close.scss */ +a.close.disabled { + pointer-events: none; +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +.toast { + max-width: 350px; + overflow: hidden; + font-size: 0.875rem; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.1); + box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); + -webkit-backdrop-filter: blur(10px); + backdrop-filter: blur(10px); + opacity: 0; + border-radius: 0.25rem; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +.toast:not(:last-child) { + margin-bottom: 0.75rem; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +.toast.showing { + opacity: 1; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +.toast.show { + display: block; + opacity: 1; +} + +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +.toast.hide { + display: none; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +.toast-header { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + padding: 0.25rem 0.75rem; + color: #6c757d; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border-bottom: 1px solid rgba(0, 0, 0, 0.05); +} + +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +.toast-body { + padding: 0.75rem; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-open { + overflow: hidden; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal { + position: fixed; + top: 0; + left: 0; + z-index: 1050; + display: none; + width: 100%; + height: 100%; + overflow: hidden; + outline: 0; +} + +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog { + position: relative; + width: auto; + margin: 0.5rem; + pointer-events: none; +} + +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal.fade .modal-dialog { + -webkit-transition: -webkit-transform 0.3s ease-out; + transition: -webkit-transform 0.3s ease-out; + transition: transform 0.3s ease-out; + transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; + -webkit-transform: translate(0, -50px); + transform: translate(0, -50px); +} + +@media (prefers-reduced-motion: reduce) { + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal.fade .modal-dialog { + -webkit-transition: none; + transition: none; + } +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal.show .modal-dialog { + -webkit-transform: none; + transform: none; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-scrollable { + display: -webkit-box; + display: flex; + max-height: calc(100% - 1rem); +} + +/* line 57, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 1rem); + overflow: hidden; +} + +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-scrollable .modal-header, +.modal-dialog-scrollable .modal-footer { + flex-shrink: 0; +} + +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-scrollable .modal-body { + overflow-y: auto; +} + +/* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-centered { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + min-height: calc(100% - 1rem); +} + +/* line 78, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-centered::before { + display: block; + height: calc(100vh - 1rem); + content: ""; +} + +/* line 85, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-centered.modal-dialog-scrollable { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + -webkit-box-pack: center; + justify-content: center; + height: 100%; +} + +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-centered.modal-dialog-scrollable .modal-content { + max-height: none; +} + +/* line 94, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-dialog-centered.modal-dialog-scrollable::before { + content: none; +} + +/* line 101, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-content { + position: relative; + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; + outline: 0; +} + +/* line 119, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-backdrop { + position: fixed; + top: 0; + left: 0; + z-index: 1040; + width: 100vw; + height: 100vh; + background-color: #000; +} + +/* line 129, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-backdrop.fade { + opacity: 0; +} + +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-backdrop.show { + opacity: 0.5; +} + +/* line 135, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-header { + display: -webkit-box; + display: flex; + -webkit-box-align: start; + align-items: flex-start; + -webkit-box-pack: justify; + justify-content: space-between; + padding: 1rem 1rem; + border-bottom: 1px solid #dee2e6; + border-top-left-radius: 0.3rem; + border-top-right-radius: 0.3rem; +} + +/* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-header .close { + padding: 1rem 1rem; + margin: -1rem -1rem -1rem auto; +} + +/* line 151, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-title { + margin-bottom: 0; + line-height: 1.5; +} + +/* line 158, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-body { + position: relative; + -webkit-box-flex: 1; + flex: 1 1 auto; + padding: 1rem; +} + +/* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-footer { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: end; + justify-content: flex-end; + padding: 1rem; + border-top: 1px solid #dee2e6; + border-bottom-right-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; +} + +/* line 176, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-footer > :not(:first-child) { + margin-left: .25rem; +} + +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-footer > :not(:last-child) { + margin-right: .25rem; +} + +/* line 181, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; +} + +@media (min-width: 576px) { + /* line 192, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-dialog { + max-width: 500px; + margin: 1.75rem auto; + } + /* line 197, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-dialog-scrollable { + max-height: calc(100% - 3.5rem); + } + /* line 200, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 3.5rem); + } + /* line 205, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-dialog-centered { + min-height: calc(100% - 3.5rem); + } + /* line 208, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-dialog-centered::before { + height: calc(100vh - 3.5rem); + } + /* line 217, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-sm { + max-width: 300px; + } +} + +@media (min-width: 992px) { + /* line 221, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-lg, + .modal-xl { + max-width: 800px; + } +} + +@media (min-width: 1200px) { + /* line 228, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + .modal-xl { + max-width: 1140px; + } +} + +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.tooltip { + position: absolute; + z-index: 1070; + display: block; + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + opacity: 0; +} + +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.tooltip.show { + opacity: 0.9; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.tooltip .arrow { + position: absolute; + display: block; + width: 0.8rem; + height: 0.4rem; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.tooltip .arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { + padding: 0.4rem 0; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { + bottom: 0; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { + top: 0; + border-width: 0.4rem 0.4rem 0; + border-top-color: #000; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { + padding: 0 0.4rem; +} + +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { + left: 0; + width: 0.4rem; + height: 0.8rem; +} + +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { + right: 0; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #000; +} + +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { + padding: 0.4rem 0; +} + +/* line 65, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { + top: 0; +} + +/* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + bottom: 0; + border-width: 0 0.4rem 0.4rem; + border-bottom-color: #000; +} + +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { + padding: 0 0.4rem; +} + +/* line 79, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { + right: 0; + width: 0.4rem; + height: 0.8rem; +} + +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { + left: 0; + border-width: 0.4rem 0 0.4rem 0.4rem; + border-left-color: #000; +} + +/* line 108, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +.tooltip-inner { + max-width: 200px; + padding: 0.25rem 0.5rem; + color: #fff; + text-align: center; + background-color: #000; + border-radius: 0.25rem; +} + +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: block; + max-width: 276px; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.popover .arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; + margin: 0 0.3rem; +} + +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.popover .arrow::before, .popover .arrow::after { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-top, .bs-popover-auto[x-placement^="top"] { + margin-bottom: 0.5rem; +} + +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow { + bottom: calc((0.5rem + 1px) * -1); +} + +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before { + bottom: 0; + border-width: 0.5rem 0.5rem 0; + border-top-color: rgba(0, 0, 0, 0.25); +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after { + bottom: 1px; + border-width: 0.5rem 0.5rem 0; + border-top-color: #fff; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-right, .bs-popover-auto[x-placement^="right"] { + margin-left: 0.5rem; +} + +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow { + left: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; +} + +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before { + left: 0; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: rgba(0, 0, 0, 0.25); +} + +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after { + left: 1px; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: #fff; +} + +/* line 81, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { + margin-top: 0.5rem; +} + +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow { + top: calc((0.5rem + 1px) * -1); +} + +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before { + top: 0; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: rgba(0, 0, 0, 0.25); +} + +/* line 93, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after { + top: 1px; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: #fff; +} + +/* line 101, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: ""; + border-bottom: 1px solid #f7f7f7; +} + +/* line 113, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-left, .bs-popover-auto[x-placement^="left"] { + margin-right: 0.5rem; +} + +/* line 116, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow { + right: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; +} + +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before { + right: 0; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: rgba(0, 0, 0, 0.25); +} + +/* line 128, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after { + right: 1px; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: #fff; +} + +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.popover-header { + padding: 0.5rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); +} + +/* line 163, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.popover-header:empty { + display: none; +} + +/* line 168, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +.popover-body { + padding: 0.5rem 0.75rem; + color: #212529; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel { + position: relative; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel.pointer-event { + touch-action: pan-y; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} + +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ +.carousel-inner::after { + display: block; + clear: both; + content: ""; +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-item { + position: relative; + display: none; + float: left; + width: 100%; + margin-right: -100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-transition: -webkit-transform 0.6s ease-in-out; + transition: -webkit-transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ + .carousel-item { + -webkit-transition: none; + transition: none; + } +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-item-next:not(.carousel-item-left), +.active.carousel-item-right { + -webkit-transform: translateX(100%); + transform: translateX(100%); +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-item-prev:not(.carousel-item-right), +.active.carousel-item-left { + -webkit-transform: translateX(-100%); + transform: translateX(-100%); +} + +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-fade .carousel-item { + opacity: 0; + -webkit-transition-property: opacity; + transition-property: opacity; + -webkit-transform: none; + transform: none; +} + +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-fade .carousel-item.active, +.carousel-fade .carousel-item-next.carousel-item-left, +.carousel-fade .carousel-item-prev.carousel-item-right { + z-index: 1; + opacity: 1; +} + +/* line 74, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-fade .active.carousel-item-left, +.carousel-fade .active.carousel-item-right { + z-index: 0; + opacity: 0; + -webkit-transition: 0s 0.6s opacity; + transition: 0s 0.6s opacity; +} + +@media (prefers-reduced-motion: reduce) { + /* line 74, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ + .carousel-fade .active.carousel-item-left, + .carousel-fade .active.carousel-item-right { + -webkit-transition: none; + transition: none; + } +} + +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-control-prev, +.carousel-control-next { + position: absolute; + top: 0; + bottom: 0; + z-index: 1; + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: center; + justify-content: center; + width: 15%; + color: #fff; + text-align: center; + opacity: 0.5; + -webkit-transition: opacity 0.15s ease; + transition: opacity 0.15s ease; +} + +@media (prefers-reduced-motion: reduce) { + /* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ + .carousel-control-prev, + .carousel-control-next { + -webkit-transition: none; + transition: none; + } +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +.carousel-control-prev:hover, .carousel-control-prev:focus, +.carousel-control-next:hover, +.carousel-control-next:focus { + color: #fff; + text-decoration: none; + outline: 0; + opacity: 0.9; +} + +/* line 111, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-control-prev { + left: 0; +} + +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-control-next { + right: 0; +} + +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: 20px; + height: 20px; + background: no-repeat 50% / 100% 100%; +} + +/* line 132, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"); +} + +/* line 135, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-control-next-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"); +} + +/* line 145, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-indicators { + position: absolute; + right: 0; + bottom: 0; + left: 0; + z-index: 15; + display: -webkit-box; + display: flex; + -webkit-box-pack: center; + justify-content: center; + padding-left: 0; + margin-right: 15%; + margin-left: 15%; + list-style: none; +} + +/* line 159, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-indicators li { + box-sizing: content-box; + -webkit-box-flex: 0; + flex: 0 1 auto; + width: 30px; + height: 3px; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: #fff; + background-clip: padding-box; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: .5; + -webkit-transition: opacity 0.6s ease; + transition: opacity 0.6s ease; +} + +@media (prefers-reduced-motion: reduce) { + /* line 159, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ + .carousel-indicators li { + -webkit-transition: none; + transition: none; + } +} + +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-indicators .active { + opacity: 1; +} + +/* line 187, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; +} + +@-webkit-keyframes spinner-border { + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@keyframes spinner-border { + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ +.spinner-border { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + border: 0.25em solid currentColor; + border-right-color: transparent; + border-radius: 50%; + -webkit-animation: spinner-border .75s linear infinite; + animation: spinner-border .75s linear infinite; +} + +/* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ +.spinner-border-sm { + width: 1rem; + height: 1rem; + border-width: 0.2em; +} + +@-webkit-keyframes spinner-grow { + 0% { + -webkit-transform: scale(0); + transform: scale(0); + } + 50% { + opacity: 1; + } +} + +@keyframes spinner-grow { + 0% { + -webkit-transform: scale(0); + transform: scale(0); + } + 50% { + opacity: 1; + } +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ +.spinner-grow { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + background-color: currentColor; + border-radius: 50%; + opacity: 0; + -webkit-animation: spinner-grow .75s linear infinite; + animation: spinner-grow .75s linear infinite; +} + +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ +.spinner-grow-sm { + width: 1rem; + height: 1rem; +} + +/* line 3, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +.align-baseline { + vertical-align: baseline !important; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +.align-top { + vertical-align: top !important; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +.align-middle { + vertical-align: middle !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +.align-bottom { + vertical-align: bottom !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +.align-text-bottom { + vertical-align: text-bottom !important; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +.align-text-top { + vertical-align: text-top !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-primary { + background-color: #007bff !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-primary:hover, a.bg-primary:focus, +button.bg-primary:hover, +button.bg-primary:focus { + background-color: #0062cc !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-secondary { + background-color: #6c757d !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-secondary:hover, a.bg-secondary:focus, +button.bg-secondary:hover, +button.bg-secondary:focus { + background-color: #545b62 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-success { + background-color: #28a745 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-success:hover, a.bg-success:focus, +button.bg-success:hover, +button.bg-success:focus { + background-color: #1e7e34 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-info { + background-color: #17a2b8 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-info:hover, a.bg-info:focus, +button.bg-info:hover, +button.bg-info:focus { + background-color: #117a8b !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-warning { + background-color: #ffc107 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-warning:hover, a.bg-warning:focus, +button.bg-warning:hover, +button.bg-warning:focus { + background-color: #d39e00 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-danger { + background-color: #dc3545 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-danger:hover, a.bg-danger:focus, +button.bg-danger:hover, +button.bg-danger:focus { + background-color: #bd2130 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-light { + background-color: #f8f9fa !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-light:hover, a.bg-light:focus, +button.bg-light:hover, +button.bg-light:focus { + background-color: #dae0e5 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +.bg-dark { + background-color: #343a40 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.bg-dark:hover, a.bg-dark:focus, +button.bg-dark:hover, +button.bg-dark:focus { + background-color: #1d2124 !important; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_background.scss */ +.bg-white { + background-color: #fff !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_background.scss */ +.bg-transparent { + background-color: transparent !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border { + border: 1px solid #dee2e6 !important; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-top { + border-top: 1px solid #dee2e6 !important; +} + +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-right { + border-right: 1px solid #dee2e6 !important; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-bottom { + border-bottom: 1px solid #dee2e6 !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-left { + border-left: 1px solid #dee2e6 !important; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-0 { + border: 0 !important; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-top-0 { + border-top: 0 !important; +} + +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-right-0 { + border-right: 0 !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-bottom-0 { + border-bottom: 0 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-left-0 { + border-left: 0 !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-primary { + border-color: #007bff !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-secondary { + border-color: #6c757d !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-success { + border-color: #28a745 !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-info { + border-color: #17a2b8 !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-warning { + border-color: #ffc107 !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-danger { + border-color: #dc3545 !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-light { + border-color: #f8f9fa !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-dark { + border-color: #343a40 !important; +} + +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.border-white { + border-color: #fff !important; +} + +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-sm { + border-radius: 0.2rem !important; +} + +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded { + border-radius: 0.25rem !important; +} + +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-top { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-right { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-bottom { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} + +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-left { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} + +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-lg { + border-radius: 0.3rem !important; +} + +/* line 65, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-circle { + border-radius: 50% !important; +} + +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-pill { + border-radius: 50rem !important; +} + +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +.rounded-0 { + border-radius: 0 !important; +} + +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ +.clearfix::after { + display: block; + clear: both; + content: ""; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-none { + display: none !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-inline { + display: inline !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-inline-block { + display: inline-block !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-block { + display: block !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-table { + display: table !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-table-row { + display: table-row !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-table-cell { + display: table-cell !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-flex { + display: -webkit-box !important; + display: flex !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +.d-inline-flex { + display: -webkit-inline-box !important; + display: inline-flex !important; +} + +@media (min-width: 576px) { + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-none { + display: none !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-inline { + display: inline !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-inline-block { + display: inline-block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-block { + display: block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-table { + display: table !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-table-row { + display: table-row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-table-cell { + display: table-cell !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-flex { + display: -webkit-box !important; + display: flex !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-sm-inline-flex { + display: -webkit-inline-box !important; + display: inline-flex !important; + } +} + +@media (min-width: 768px) { + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-none { + display: none !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-inline { + display: inline !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-inline-block { + display: inline-block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-block { + display: block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-table { + display: table !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-table-row { + display: table-row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-table-cell { + display: table-cell !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-flex { + display: -webkit-box !important; + display: flex !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-md-inline-flex { + display: -webkit-inline-box !important; + display: inline-flex !important; + } +} + +@media (min-width: 992px) { + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-none { + display: none !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-inline { + display: inline !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-inline-block { + display: inline-block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-block { + display: block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-table { + display: table !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-table-row { + display: table-row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-table-cell { + display: table-cell !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-flex { + display: -webkit-box !important; + display: flex !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-lg-inline-flex { + display: -webkit-inline-box !important; + display: inline-flex !important; + } +} + +@media (min-width: 1200px) { + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-none { + display: none !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-inline { + display: inline !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-inline-block { + display: inline-block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-block { + display: block !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-table { + display: table !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-table-row { + display: table-row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-table-cell { + display: table-cell !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-flex { + display: -webkit-box !important; + display: flex !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-xl-inline-flex { + display: -webkit-inline-box !important; + display: inline-flex !important; + } +} + +@media print { + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-none { + display: none !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-inline { + display: inline !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-inline-block { + display: inline-block !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-block { + display: block !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-table { + display: table !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-table-row { + display: table-row !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-table-cell { + display: table-cell !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-flex { + display: -webkit-box !important; + display: flex !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + .d-print-inline-flex { + display: -webkit-inline-box !important; + display: inline-flex !important; + } +} + +/* line 3, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +.embed-responsive { + position: relative; + display: block; + width: 100%; + padding: 0; + overflow: hidden; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +.embed-responsive::before { + display: block; + content: ""; +} + +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +.embed-responsive .embed-responsive-item, +.embed-responsive iframe, +.embed-responsive embed, +.embed-responsive object, +.embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +.embed-responsive-21by9::before { + padding-top: 42.85714%; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +.embed-responsive-16by9::before { + padding-top: 56.25%; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +.embed-responsive-4by3::before { + padding-top: 75%; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +.embed-responsive-1by1::before { + padding-top: 100%; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + flex-direction: row !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + flex-direction: column !important; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + flex-direction: row-reverse !important; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + flex-direction: column-reverse !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-wrap { + flex-wrap: wrap !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-nowrap { + flex-wrap: nowrap !important; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; +} + +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-fill { + -webkit-box-flex: 1 !important; + flex: 1 1 auto !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-grow-0 { + -webkit-box-flex: 0 !important; + flex-grow: 0 !important; +} + +/* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-grow-1 { + -webkit-box-flex: 1 !important; + flex-grow: 1 !important; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-shrink-0 { + flex-shrink: 0 !important; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.flex-shrink-1 { + flex-shrink: 1 !important; +} + +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.justify-content-start { + -webkit-box-pack: start !important; + justify-content: flex-start !important; +} + +/* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.justify-content-end { + -webkit-box-pack: end !important; + justify-content: flex-end !important; +} + +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.justify-content-center { + -webkit-box-pack: center !important; + justify-content: center !important; +} + +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.justify-content-between { + -webkit-box-pack: justify !important; + justify-content: space-between !important; +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.justify-content-around { + justify-content: space-around !important; +} + +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-items-start { + -webkit-box-align: start !important; + align-items: flex-start !important; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-items-end { + -webkit-box-align: end !important; + align-items: flex-end !important; +} + +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-items-center { + -webkit-box-align: center !important; + align-items: center !important; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-items-baseline { + -webkit-box-align: baseline !important; + align-items: baseline !important; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-items-stretch { + -webkit-box-align: stretch !important; + align-items: stretch !important; +} + +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-content-start { + align-content: flex-start !important; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-content-end { + align-content: flex-end !important; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-content-center { + align-content: center !important; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-content-between { + align-content: space-between !important; +} + +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-content-around { + align-content: space-around !important; +} + +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-content-stretch { + align-content: stretch !important; +} + +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-self-auto { + align-self: auto !important; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-self-start { + align-self: flex-start !important; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-self-end { + align-self: flex-end !important; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-self-center { + align-self: center !important; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-self-baseline { + align-self: baseline !important; +} + +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +.align-self-stretch { + align-self: stretch !important; +} + +@media (min-width: 576px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + flex-direction: row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + flex-direction: column !important; + } + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + flex-direction: row-reverse !important; + } + /* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + flex-direction: column-reverse !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-wrap { + flex-wrap: wrap !important; + } + /* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-nowrap { + flex-wrap: nowrap !important; + } + /* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-fill { + -webkit-box-flex: 1 !important; + flex: 1 1 auto !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-grow-0 { + -webkit-box-flex: 0 !important; + flex-grow: 0 !important; + } + /* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-grow-1 { + -webkit-box-flex: 1 !important; + flex-grow: 1 !important; + } + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-shrink-0 { + flex-shrink: 0 !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-sm-shrink-1 { + flex-shrink: 1 !important; + } + /* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-sm-start { + -webkit-box-pack: start !important; + justify-content: flex-start !important; + } + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-sm-end { + -webkit-box-pack: end !important; + justify-content: flex-end !important; + } + /* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-sm-center { + -webkit-box-pack: center !important; + justify-content: center !important; + } + /* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-sm-between { + -webkit-box-pack: justify !important; + justify-content: space-between !important; + } + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-sm-around { + justify-content: space-around !important; + } + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-sm-start { + -webkit-box-align: start !important; + align-items: flex-start !important; + } + /* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-sm-end { + -webkit-box-align: end !important; + align-items: flex-end !important; + } + /* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-sm-center { + -webkit-box-align: center !important; + align-items: center !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-sm-baseline { + -webkit-box-align: baseline !important; + align-items: baseline !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-sm-stretch { + -webkit-box-align: stretch !important; + align-items: stretch !important; + } + /* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-sm-start { + align-content: flex-start !important; + } + /* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-sm-end { + align-content: flex-end !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-sm-center { + align-content: center !important; + } + /* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-sm-between { + align-content: space-between !important; + } + /* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-sm-around { + align-content: space-around !important; + } + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-sm-stretch { + align-content: stretch !important; + } + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-sm-auto { + align-self: auto !important; + } + /* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-sm-start { + align-self: flex-start !important; + } + /* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-sm-end { + align-self: flex-end !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-sm-center { + align-self: center !important; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-sm-baseline { + align-self: baseline !important; + } + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-sm-stretch { + align-self: stretch !important; + } +} + +@media (min-width: 768px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + flex-direction: row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + flex-direction: column !important; + } + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + flex-direction: row-reverse !important; + } + /* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + flex-direction: column-reverse !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-wrap { + flex-wrap: wrap !important; + } + /* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-nowrap { + flex-wrap: nowrap !important; + } + /* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-fill { + -webkit-box-flex: 1 !important; + flex: 1 1 auto !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-grow-0 { + -webkit-box-flex: 0 !important; + flex-grow: 0 !important; + } + /* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-grow-1 { + -webkit-box-flex: 1 !important; + flex-grow: 1 !important; + } + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-shrink-0 { + flex-shrink: 0 !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-md-shrink-1 { + flex-shrink: 1 !important; + } + /* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-md-start { + -webkit-box-pack: start !important; + justify-content: flex-start !important; + } + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-md-end { + -webkit-box-pack: end !important; + justify-content: flex-end !important; + } + /* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-md-center { + -webkit-box-pack: center !important; + justify-content: center !important; + } + /* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-md-between { + -webkit-box-pack: justify !important; + justify-content: space-between !important; + } + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-md-around { + justify-content: space-around !important; + } + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-md-start { + -webkit-box-align: start !important; + align-items: flex-start !important; + } + /* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-md-end { + -webkit-box-align: end !important; + align-items: flex-end !important; + } + /* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-md-center { + -webkit-box-align: center !important; + align-items: center !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-md-baseline { + -webkit-box-align: baseline !important; + align-items: baseline !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-md-stretch { + -webkit-box-align: stretch !important; + align-items: stretch !important; + } + /* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-md-start { + align-content: flex-start !important; + } + /* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-md-end { + align-content: flex-end !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-md-center { + align-content: center !important; + } + /* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-md-between { + align-content: space-between !important; + } + /* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-md-around { + align-content: space-around !important; + } + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-md-stretch { + align-content: stretch !important; + } + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-md-auto { + align-self: auto !important; + } + /* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-md-start { + align-self: flex-start !important; + } + /* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-md-end { + align-self: flex-end !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-md-center { + align-self: center !important; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-md-baseline { + align-self: baseline !important; + } + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-md-stretch { + align-self: stretch !important; + } +} + +@media (min-width: 992px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + flex-direction: row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + flex-direction: column !important; + } + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + flex-direction: row-reverse !important; + } + /* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + flex-direction: column-reverse !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-wrap { + flex-wrap: wrap !important; + } + /* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-nowrap { + flex-wrap: nowrap !important; + } + /* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-fill { + -webkit-box-flex: 1 !important; + flex: 1 1 auto !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-grow-0 { + -webkit-box-flex: 0 !important; + flex-grow: 0 !important; + } + /* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-grow-1 { + -webkit-box-flex: 1 !important; + flex-grow: 1 !important; + } + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-shrink-0 { + flex-shrink: 0 !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-lg-shrink-1 { + flex-shrink: 1 !important; + } + /* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-lg-start { + -webkit-box-pack: start !important; + justify-content: flex-start !important; + } + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-lg-end { + -webkit-box-pack: end !important; + justify-content: flex-end !important; + } + /* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-lg-center { + -webkit-box-pack: center !important; + justify-content: center !important; + } + /* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-lg-between { + -webkit-box-pack: justify !important; + justify-content: space-between !important; + } + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-lg-around { + justify-content: space-around !important; + } + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-lg-start { + -webkit-box-align: start !important; + align-items: flex-start !important; + } + /* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-lg-end { + -webkit-box-align: end !important; + align-items: flex-end !important; + } + /* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-lg-center { + -webkit-box-align: center !important; + align-items: center !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-lg-baseline { + -webkit-box-align: baseline !important; + align-items: baseline !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-lg-stretch { + -webkit-box-align: stretch !important; + align-items: stretch !important; + } + /* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-lg-start { + align-content: flex-start !important; + } + /* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-lg-end { + align-content: flex-end !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-lg-center { + align-content: center !important; + } + /* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-lg-between { + align-content: space-between !important; + } + /* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-lg-around { + align-content: space-around !important; + } + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-lg-stretch { + align-content: stretch !important; + } + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-lg-auto { + align-self: auto !important; + } + /* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-lg-start { + align-self: flex-start !important; + } + /* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-lg-end { + align-self: flex-end !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-lg-center { + align-self: center !important; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-lg-baseline { + align-self: baseline !important; + } + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-lg-stretch { + align-self: stretch !important; + } +} + +@media (min-width: 1200px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + flex-direction: row !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + flex-direction: column !important; + } + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + flex-direction: row-reverse !important; + } + /* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + flex-direction: column-reverse !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-wrap { + flex-wrap: wrap !important; + } + /* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-nowrap { + flex-wrap: nowrap !important; + } + /* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-fill { + -webkit-box-flex: 1 !important; + flex: 1 1 auto !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-grow-0 { + -webkit-box-flex: 0 !important; + flex-grow: 0 !important; + } + /* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-grow-1 { + -webkit-box-flex: 1 !important; + flex-grow: 1 !important; + } + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-shrink-0 { + flex-shrink: 0 !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .flex-xl-shrink-1 { + flex-shrink: 1 !important; + } + /* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-xl-start { + -webkit-box-pack: start !important; + justify-content: flex-start !important; + } + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-xl-end { + -webkit-box-pack: end !important; + justify-content: flex-end !important; + } + /* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-xl-center { + -webkit-box-pack: center !important; + justify-content: center !important; + } + /* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-xl-between { + -webkit-box-pack: justify !important; + justify-content: space-between !important; + } + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .justify-content-xl-around { + justify-content: space-around !important; + } + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-xl-start { + -webkit-box-align: start !important; + align-items: flex-start !important; + } + /* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-xl-end { + -webkit-box-align: end !important; + align-items: flex-end !important; + } + /* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-xl-center { + -webkit-box-align: center !important; + align-items: center !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-xl-baseline { + -webkit-box-align: baseline !important; + align-items: baseline !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-items-xl-stretch { + -webkit-box-align: stretch !important; + align-items: stretch !important; + } + /* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-xl-start { + align-content: flex-start !important; + } + /* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-xl-end { + align-content: flex-end !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-xl-center { + align-content: center !important; + } + /* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-xl-between { + align-content: space-between !important; + } + /* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-xl-around { + align-content: space-around !important; + } + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-content-xl-stretch { + align-content: stretch !important; + } + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-xl-auto { + align-self: auto !important; + } + /* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-xl-start { + align-self: flex-start !important; + } + /* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-xl-end { + align-self: flex-end !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-xl-center { + align-self: center !important; + } + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-xl-baseline { + align-self: baseline !important; + } + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + .align-self-xl-stretch { + align-self: stretch !important; + } +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ +.float-left { + float: left !important; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ +.float-right { + float: right !important; +} + +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ +.float-none { + float: none !important; +} + +@media (min-width: 576px) { + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-sm-left { + float: left !important; + } + /* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-sm-right { + float: right !important; + } + /* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-sm-none { + float: none !important; + } +} + +@media (min-width: 768px) { + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-md-left { + float: left !important; + } + /* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-md-right { + float: right !important; + } + /* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-md-none { + float: none !important; + } +} + +@media (min-width: 992px) { + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-lg-left { + float: left !important; + } + /* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-lg-right { + float: right !important; + } + /* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-lg-none { + float: none !important; + } +} + +@media (min-width: 1200px) { + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-xl-left { + float: left !important; + } + /* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-xl-right { + float: right !important; + } + /* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + .float-xl-none { + float: none !important; + } +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_overflow.scss */ +.overflow-auto { + overflow: auto !important; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_overflow.scss */ +.overflow-hidden { + overflow: hidden !important; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +.position-static { + position: static !important; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +.position-relative { + position: relative !important; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +.position-absolute { + position: absolute !important; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +.position-fixed { + position: fixed !important; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +.position-sticky { + position: -webkit-sticky !important; + position: sticky !important; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +.fixed-bottom { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; +} + +@supports ((position: -webkit-sticky) or (position: sticky)) { + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ + .sticky-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; + } +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_screenreaders.scss */ +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border: 0; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_screen-reader.scss */ +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + overflow: visible; + clip: auto; + white-space: normal; +} + +/* line 3, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ +.shadow-sm { + box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ +.shadow { + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ +.shadow-lg { + box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ +.shadow-none { + box-shadow: none !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.w-25 { + width: 25% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.w-50 { + width: 50% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.w-75 { + width: 75% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.w-100 { + width: 100% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.w-auto { + width: auto !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.h-25 { + height: 25% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.h-50 { + height: 50% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.h-75 { + height: 75% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.h-100 { + height: 100% !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.h-auto { + height: auto !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.mw-100 { + max-width: 100% !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.mh-100 { + max-height: 100% !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.min-vw-100 { + min-width: 100vw !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.min-vh-100 { + min-height: 100vh !important; +} + +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.vw-100 { + width: 100vw !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +.vh-100 { + height: 100vh !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_stretched-link.scss */ +.stretched-link::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + pointer-events: auto; + content: ""; + background-color: transparent; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-0 { + margin: 0 !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-0, +.my-0 { + margin-top: 0 !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-0, +.mx-0 { + margin-right: 0 !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-0, +.my-0 { + margin-bottom: 0 !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-0, +.mx-0 { + margin-left: 0 !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-1 { + margin: 0.25rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-1, +.my-1 { + margin-top: 0.25rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-1, +.mx-1 { + margin-right: 0.25rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-1, +.my-1 { + margin-bottom: 0.25rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-1, +.mx-1 { + margin-left: 0.25rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-2 { + margin: 0.5rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-2, +.my-2 { + margin-top: 0.5rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-2, +.mx-2 { + margin-right: 0.5rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-2, +.my-2 { + margin-bottom: 0.5rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-2, +.mx-2 { + margin-left: 0.5rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-3 { + margin: 1rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-3, +.my-3 { + margin-top: 1rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-3, +.mx-3 { + margin-right: 1rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-3, +.my-3 { + margin-bottom: 1rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-3, +.mx-3 { + margin-left: 1rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-4 { + margin: 1.5rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-4, +.my-4 { + margin-top: 1.5rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-4, +.mx-4 { + margin-right: 1.5rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-4, +.my-4 { + margin-bottom: 1.5rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-4, +.mx-4 { + margin-left: 1.5rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-5 { + margin: 3rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-5, +.my-5 { + margin-top: 3rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-5, +.mx-5 { + margin-right: 3rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-5, +.my-5 { + margin-bottom: 3rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-5, +.mx-5 { + margin-left: 3rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.p-0 { + padding: 0 !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pt-0, +.py-0 { + padding-top: 0 !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pr-0, +.px-0 { + padding-right: 0 !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pb-0, +.py-0 { + padding-bottom: 0 !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pl-0, +.px-0 { + padding-left: 0 !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.p-1 { + padding: 0.25rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pt-1, +.py-1 { + padding-top: 0.25rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pr-1, +.px-1 { + padding-right: 0.25rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pb-1, +.py-1 { + padding-bottom: 0.25rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pl-1, +.px-1 { + padding-left: 0.25rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.p-2 { + padding: 0.5rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pt-2, +.py-2 { + padding-top: 0.5rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pr-2, +.px-2 { + padding-right: 0.5rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pb-2, +.py-2 { + padding-bottom: 0.5rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pl-2, +.px-2 { + padding-left: 0.5rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.p-3 { + padding: 1rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pt-3, +.py-3 { + padding-top: 1rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pr-3, +.px-3 { + padding-right: 1rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pb-3, +.py-3 { + padding-bottom: 1rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pl-3, +.px-3 { + padding-left: 1rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.p-4 { + padding: 1.5rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pt-4, +.py-4 { + padding-top: 1.5rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pr-4, +.px-4 { + padding-right: 1.5rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pb-4, +.py-4 { + padding-bottom: 1.5rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pl-4, +.px-4 { + padding-left: 1.5rem !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.p-5 { + padding: 3rem !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pt-5, +.py-5 { + padding-top: 3rem !important; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pr-5, +.px-5 { + padding-right: 3rem !important; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pb-5, +.py-5 { + padding-bottom: 3rem !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.pl-5, +.px-5 { + padding-left: 3rem !important; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-n1 { + margin: -0.25rem !important; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-n1, +.my-n1 { + margin-top: -0.25rem !important; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-n1, +.mx-n1 { + margin-right: -0.25rem !important; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-n1, +.my-n1 { + margin-bottom: -0.25rem !important; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-n1, +.mx-n1 { + margin-left: -0.25rem !important; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-n2 { + margin: -0.5rem !important; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-n2, +.my-n2 { + margin-top: -0.5rem !important; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-n2, +.mx-n2 { + margin-right: -0.5rem !important; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-n2, +.my-n2 { + margin-bottom: -0.5rem !important; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-n2, +.mx-n2 { + margin-left: -0.5rem !important; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-n3 { + margin: -1rem !important; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-n3, +.my-n3 { + margin-top: -1rem !important; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-n3, +.mx-n3 { + margin-right: -1rem !important; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-n3, +.my-n3 { + margin-bottom: -1rem !important; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-n3, +.mx-n3 { + margin-left: -1rem !important; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-n4 { + margin: -1.5rem !important; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-n4, +.my-n4 { + margin-top: -1.5rem !important; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-n4, +.mx-n4 { + margin-right: -1.5rem !important; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-n4, +.my-n4 { + margin-bottom: -1.5rem !important; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-n4, +.mx-n4 { + margin-left: -1.5rem !important; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-n5 { + margin: -3rem !important; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-n5, +.my-n5 { + margin-top: -3rem !important; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-n5, +.mx-n5 { + margin-right: -3rem !important; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-n5, +.my-n5 { + margin-bottom: -3rem !important; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-n5, +.mx-n5 { + margin-left: -3rem !important; +} + +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.m-auto { + margin: auto !important; +} + +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mt-auto, +.my-auto { + margin-top: auto !important; +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mr-auto, +.mx-auto { + margin-right: auto !important; +} + +/* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.mb-auto, +.my-auto { + margin-bottom: auto !important; +} + +/* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +.ml-auto, +.mx-auto { + margin-left: auto !important; +} + +@media (min-width: 576px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-0 { + margin: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-0, + .my-sm-0 { + margin-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-0, + .mx-sm-0 { + margin-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-0, + .my-sm-0 { + margin-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-0, + .mx-sm-0 { + margin-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-1 { + margin: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-1, + .my-sm-1 { + margin-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-1, + .mx-sm-1 { + margin-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-1, + .my-sm-1 { + margin-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-1, + .mx-sm-1 { + margin-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-2 { + margin: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-2, + .my-sm-2 { + margin-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-2, + .mx-sm-2 { + margin-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-2, + .my-sm-2 { + margin-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-2, + .mx-sm-2 { + margin-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-3 { + margin: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-3, + .my-sm-3 { + margin-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-3, + .mx-sm-3 { + margin-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-3, + .my-sm-3 { + margin-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-3, + .mx-sm-3 { + margin-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-4 { + margin: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-4, + .my-sm-4 { + margin-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-4, + .mx-sm-4 { + margin-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-4, + .my-sm-4 { + margin-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-4, + .mx-sm-4 { + margin-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-5 { + margin: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-5, + .my-sm-5 { + margin-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-5, + .mx-sm-5 { + margin-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-5, + .my-sm-5 { + margin-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-5, + .mx-sm-5 { + margin-left: 3rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-sm-0 { + padding: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-sm-0, + .py-sm-0 { + padding-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-sm-0, + .px-sm-0 { + padding-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-sm-0, + .py-sm-0 { + padding-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-sm-0, + .px-sm-0 { + padding-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-sm-1 { + padding: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-sm-1, + .py-sm-1 { + padding-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-sm-1, + .px-sm-1 { + padding-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-sm-1, + .py-sm-1 { + padding-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-sm-1, + .px-sm-1 { + padding-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-sm-2 { + padding: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-sm-2, + .py-sm-2 { + padding-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-sm-2, + .px-sm-2 { + padding-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-sm-2, + .py-sm-2 { + padding-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-sm-2, + .px-sm-2 { + padding-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-sm-3 { + padding: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-sm-3, + .py-sm-3 { + padding-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-sm-3, + .px-sm-3 { + padding-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-sm-3, + .py-sm-3 { + padding-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-sm-3, + .px-sm-3 { + padding-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-sm-4 { + padding: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-sm-4, + .py-sm-4 { + padding-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-sm-4, + .px-sm-4 { + padding-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-sm-4, + .py-sm-4 { + padding-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-sm-4, + .px-sm-4 { + padding-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-sm-5 { + padding: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-sm-5, + .py-sm-5 { + padding-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-sm-5, + .px-sm-5 { + padding-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-sm-5, + .py-sm-5 { + padding-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-sm-5, + .px-sm-5 { + padding-left: 3rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-n1 { + margin: -0.25rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-n1, + .my-sm-n1 { + margin-top: -0.25rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-n1, + .mx-sm-n1 { + margin-right: -0.25rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-n1, + .my-sm-n1 { + margin-bottom: -0.25rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-n1, + .mx-sm-n1 { + margin-left: -0.25rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-n2 { + margin: -0.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-n2, + .my-sm-n2 { + margin-top: -0.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-n2, + .mx-sm-n2 { + margin-right: -0.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-n2, + .my-sm-n2 { + margin-bottom: -0.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-n2, + .mx-sm-n2 { + margin-left: -0.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-n3 { + margin: -1rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-n3, + .my-sm-n3 { + margin-top: -1rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-n3, + .mx-sm-n3 { + margin-right: -1rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-n3, + .my-sm-n3 { + margin-bottom: -1rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-n3, + .mx-sm-n3 { + margin-left: -1rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-n4 { + margin: -1.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-n4, + .my-sm-n4 { + margin-top: -1.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-n4, + .mx-sm-n4 { + margin-right: -1.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-n4, + .my-sm-n4 { + margin-bottom: -1.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-n4, + .mx-sm-n4 { + margin-left: -1.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-n5 { + margin: -3rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-n5, + .my-sm-n5 { + margin-top: -3rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-n5, + .mx-sm-n5 { + margin-right: -3rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-n5, + .my-sm-n5 { + margin-bottom: -3rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-n5, + .mx-sm-n5 { + margin-left: -3rem !important; + } + /* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-sm-auto { + margin: auto !important; + } + /* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-sm-auto, + .my-sm-auto { + margin-top: auto !important; + } + /* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-sm-auto, + .mx-sm-auto { + margin-right: auto !important; + } + /* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-sm-auto, + .my-sm-auto { + margin-bottom: auto !important; + } + /* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-sm-auto, + .mx-sm-auto { + margin-left: auto !important; + } +} + +@media (min-width: 768px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-0 { + margin: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-0, + .my-md-0 { + margin-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-0, + .mx-md-0 { + margin-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-0, + .my-md-0 { + margin-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-0, + .mx-md-0 { + margin-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-1 { + margin: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-1, + .my-md-1 { + margin-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-1, + .mx-md-1 { + margin-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-1, + .my-md-1 { + margin-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-1, + .mx-md-1 { + margin-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-2 { + margin: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-2, + .my-md-2 { + margin-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-2, + .mx-md-2 { + margin-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-2, + .my-md-2 { + margin-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-2, + .mx-md-2 { + margin-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-3 { + margin: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-3, + .my-md-3 { + margin-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-3, + .mx-md-3 { + margin-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-3, + .my-md-3 { + margin-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-3, + .mx-md-3 { + margin-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-4 { + margin: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-4, + .my-md-4 { + margin-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-4, + .mx-md-4 { + margin-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-4, + .my-md-4 { + margin-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-4, + .mx-md-4 { + margin-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-5 { + margin: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-5, + .my-md-5 { + margin-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-5, + .mx-md-5 { + margin-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-5, + .my-md-5 { + margin-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-5, + .mx-md-5 { + margin-left: 3rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-md-0 { + padding: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-md-0, + .py-md-0 { + padding-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-md-0, + .px-md-0 { + padding-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-md-0, + .py-md-0 { + padding-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-md-0, + .px-md-0 { + padding-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-md-1 { + padding: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-md-1, + .py-md-1 { + padding-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-md-1, + .px-md-1 { + padding-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-md-1, + .py-md-1 { + padding-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-md-1, + .px-md-1 { + padding-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-md-2 { + padding: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-md-2, + .py-md-2 { + padding-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-md-2, + .px-md-2 { + padding-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-md-2, + .py-md-2 { + padding-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-md-2, + .px-md-2 { + padding-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-md-3 { + padding: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-md-3, + .py-md-3 { + padding-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-md-3, + .px-md-3 { + padding-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-md-3, + .py-md-3 { + padding-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-md-3, + .px-md-3 { + padding-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-md-4 { + padding: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-md-4, + .py-md-4 { + padding-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-md-4, + .px-md-4 { + padding-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-md-4, + .py-md-4 { + padding-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-md-4, + .px-md-4 { + padding-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-md-5 { + padding: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-md-5, + .py-md-5 { + padding-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-md-5, + .px-md-5 { + padding-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-md-5, + .py-md-5 { + padding-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-md-5, + .px-md-5 { + padding-left: 3rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-n1 { + margin: -0.25rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-n1, + .my-md-n1 { + margin-top: -0.25rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-n1, + .mx-md-n1 { + margin-right: -0.25rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-n1, + .my-md-n1 { + margin-bottom: -0.25rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-n1, + .mx-md-n1 { + margin-left: -0.25rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-n2 { + margin: -0.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-n2, + .my-md-n2 { + margin-top: -0.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-n2, + .mx-md-n2 { + margin-right: -0.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-n2, + .my-md-n2 { + margin-bottom: -0.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-n2, + .mx-md-n2 { + margin-left: -0.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-n3 { + margin: -1rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-n3, + .my-md-n3 { + margin-top: -1rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-n3, + .mx-md-n3 { + margin-right: -1rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-n3, + .my-md-n3 { + margin-bottom: -1rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-n3, + .mx-md-n3 { + margin-left: -1rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-n4 { + margin: -1.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-n4, + .my-md-n4 { + margin-top: -1.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-n4, + .mx-md-n4 { + margin-right: -1.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-n4, + .my-md-n4 { + margin-bottom: -1.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-n4, + .mx-md-n4 { + margin-left: -1.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-n5 { + margin: -3rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-n5, + .my-md-n5 { + margin-top: -3rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-n5, + .mx-md-n5 { + margin-right: -3rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-n5, + .my-md-n5 { + margin-bottom: -3rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-n5, + .mx-md-n5 { + margin-left: -3rem !important; + } + /* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-md-auto { + margin: auto !important; + } + /* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-md-auto, + .my-md-auto { + margin-top: auto !important; + } + /* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-md-auto, + .mx-md-auto { + margin-right: auto !important; + } + /* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-md-auto, + .my-md-auto { + margin-bottom: auto !important; + } + /* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-md-auto, + .mx-md-auto { + margin-left: auto !important; + } +} + +@media (min-width: 992px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-0 { + margin: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-0, + .my-lg-0 { + margin-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-0, + .mx-lg-0 { + margin-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-0, + .my-lg-0 { + margin-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-0, + .mx-lg-0 { + margin-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-1 { + margin: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-1, + .my-lg-1 { + margin-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-1, + .mx-lg-1 { + margin-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-1, + .my-lg-1 { + margin-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-1, + .mx-lg-1 { + margin-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-2 { + margin: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-2, + .my-lg-2 { + margin-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-2, + .mx-lg-2 { + margin-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-2, + .my-lg-2 { + margin-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-2, + .mx-lg-2 { + margin-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-3 { + margin: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-3, + .my-lg-3 { + margin-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-3, + .mx-lg-3 { + margin-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-3, + .my-lg-3 { + margin-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-3, + .mx-lg-3 { + margin-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-4 { + margin: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-4, + .my-lg-4 { + margin-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-4, + .mx-lg-4 { + margin-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-4, + .my-lg-4 { + margin-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-4, + .mx-lg-4 { + margin-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-5 { + margin: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-5, + .my-lg-5 { + margin-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-5, + .mx-lg-5 { + margin-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-5, + .my-lg-5 { + margin-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-5, + .mx-lg-5 { + margin-left: 3rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-lg-0 { + padding: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-lg-0, + .py-lg-0 { + padding-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-lg-0, + .px-lg-0 { + padding-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-lg-0, + .py-lg-0 { + padding-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-lg-0, + .px-lg-0 { + padding-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-lg-1 { + padding: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-lg-1, + .py-lg-1 { + padding-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-lg-1, + .px-lg-1 { + padding-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-lg-1, + .py-lg-1 { + padding-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-lg-1, + .px-lg-1 { + padding-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-lg-2 { + padding: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-lg-2, + .py-lg-2 { + padding-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-lg-2, + .px-lg-2 { + padding-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-lg-2, + .py-lg-2 { + padding-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-lg-2, + .px-lg-2 { + padding-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-lg-3 { + padding: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-lg-3, + .py-lg-3 { + padding-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-lg-3, + .px-lg-3 { + padding-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-lg-3, + .py-lg-3 { + padding-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-lg-3, + .px-lg-3 { + padding-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-lg-4 { + padding: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-lg-4, + .py-lg-4 { + padding-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-lg-4, + .px-lg-4 { + padding-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-lg-4, + .py-lg-4 { + padding-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-lg-4, + .px-lg-4 { + padding-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-lg-5 { + padding: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-lg-5, + .py-lg-5 { + padding-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-lg-5, + .px-lg-5 { + padding-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-lg-5, + .py-lg-5 { + padding-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-lg-5, + .px-lg-5 { + padding-left: 3rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-n1 { + margin: -0.25rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-n1, + .my-lg-n1 { + margin-top: -0.25rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-n1, + .mx-lg-n1 { + margin-right: -0.25rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-n1, + .my-lg-n1 { + margin-bottom: -0.25rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-n1, + .mx-lg-n1 { + margin-left: -0.25rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-n2 { + margin: -0.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-n2, + .my-lg-n2 { + margin-top: -0.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-n2, + .mx-lg-n2 { + margin-right: -0.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-n2, + .my-lg-n2 { + margin-bottom: -0.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-n2, + .mx-lg-n2 { + margin-left: -0.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-n3 { + margin: -1rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-n3, + .my-lg-n3 { + margin-top: -1rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-n3, + .mx-lg-n3 { + margin-right: -1rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-n3, + .my-lg-n3 { + margin-bottom: -1rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-n3, + .mx-lg-n3 { + margin-left: -1rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-n4 { + margin: -1.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-n4, + .my-lg-n4 { + margin-top: -1.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-n4, + .mx-lg-n4 { + margin-right: -1.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-n4, + .my-lg-n4 { + margin-bottom: -1.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-n4, + .mx-lg-n4 { + margin-left: -1.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-n5 { + margin: -3rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-n5, + .my-lg-n5 { + margin-top: -3rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-n5, + .mx-lg-n5 { + margin-right: -3rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-n5, + .my-lg-n5 { + margin-bottom: -3rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-n5, + .mx-lg-n5 { + margin-left: -3rem !important; + } + /* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-lg-auto { + margin: auto !important; + } + /* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-lg-auto, + .my-lg-auto { + margin-top: auto !important; + } + /* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-lg-auto, + .mx-lg-auto { + margin-right: auto !important; + } + /* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-lg-auto, + .my-lg-auto { + margin-bottom: auto !important; + } + /* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-lg-auto, + .mx-lg-auto { + margin-left: auto !important; + } +} + +@media (min-width: 1200px) { + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-0 { + margin: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-0, + .my-xl-0 { + margin-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-0, + .mx-xl-0 { + margin-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-0, + .my-xl-0 { + margin-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-0, + .mx-xl-0 { + margin-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-1 { + margin: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-1, + .my-xl-1 { + margin-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-1, + .mx-xl-1 { + margin-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-1, + .my-xl-1 { + margin-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-1, + .mx-xl-1 { + margin-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-2 { + margin: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-2, + .my-xl-2 { + margin-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-2, + .mx-xl-2 { + margin-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-2, + .my-xl-2 { + margin-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-2, + .mx-xl-2 { + margin-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-3 { + margin: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-3, + .my-xl-3 { + margin-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-3, + .mx-xl-3 { + margin-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-3, + .my-xl-3 { + margin-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-3, + .mx-xl-3 { + margin-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-4 { + margin: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-4, + .my-xl-4 { + margin-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-4, + .mx-xl-4 { + margin-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-4, + .my-xl-4 { + margin-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-4, + .mx-xl-4 { + margin-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-5 { + margin: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-5, + .my-xl-5 { + margin-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-5, + .mx-xl-5 { + margin-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-5, + .my-xl-5 { + margin-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-5, + .mx-xl-5 { + margin-left: 3rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-xl-0 { + padding: 0 !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-xl-0, + .py-xl-0 { + padding-top: 0 !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-xl-0, + .px-xl-0 { + padding-right: 0 !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-xl-0, + .py-xl-0 { + padding-bottom: 0 !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-xl-0, + .px-xl-0 { + padding-left: 0 !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-xl-1 { + padding: 0.25rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-xl-1, + .py-xl-1 { + padding-top: 0.25rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-xl-1, + .px-xl-1 { + padding-right: 0.25rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-xl-1, + .py-xl-1 { + padding-bottom: 0.25rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-xl-1, + .px-xl-1 { + padding-left: 0.25rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-xl-2 { + padding: 0.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-xl-2, + .py-xl-2 { + padding-top: 0.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-xl-2, + .px-xl-2 { + padding-right: 0.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-xl-2, + .py-xl-2 { + padding-bottom: 0.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-xl-2, + .px-xl-2 { + padding-left: 0.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-xl-3 { + padding: 1rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-xl-3, + .py-xl-3 { + padding-top: 1rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-xl-3, + .px-xl-3 { + padding-right: 1rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-xl-3, + .py-xl-3 { + padding-bottom: 1rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-xl-3, + .px-xl-3 { + padding-left: 1rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-xl-4 { + padding: 1.5rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-xl-4, + .py-xl-4 { + padding-top: 1.5rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-xl-4, + .px-xl-4 { + padding-right: 1.5rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-xl-4, + .py-xl-4 { + padding-bottom: 1.5rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-xl-4, + .px-xl-4 { + padding-left: 1.5rem !important; + } + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .p-xl-5 { + padding: 3rem !important; + } + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pt-xl-5, + .py-xl-5 { + padding-top: 3rem !important; + } + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pr-xl-5, + .px-xl-5 { + padding-right: 3rem !important; + } + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pb-xl-5, + .py-xl-5 { + padding-bottom: 3rem !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .pl-xl-5, + .px-xl-5 { + padding-left: 3rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-n1 { + margin: -0.25rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-n1, + .my-xl-n1 { + margin-top: -0.25rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-n1, + .mx-xl-n1 { + margin-right: -0.25rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-n1, + .my-xl-n1 { + margin-bottom: -0.25rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-n1, + .mx-xl-n1 { + margin-left: -0.25rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-n2 { + margin: -0.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-n2, + .my-xl-n2 { + margin-top: -0.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-n2, + .mx-xl-n2 { + margin-right: -0.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-n2, + .my-xl-n2 { + margin-bottom: -0.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-n2, + .mx-xl-n2 { + margin-left: -0.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-n3 { + margin: -1rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-n3, + .my-xl-n3 { + margin-top: -1rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-n3, + .mx-xl-n3 { + margin-right: -1rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-n3, + .my-xl-n3 { + margin-bottom: -1rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-n3, + .mx-xl-n3 { + margin-left: -1rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-n4 { + margin: -1.5rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-n4, + .my-xl-n4 { + margin-top: -1.5rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-n4, + .mx-xl-n4 { + margin-right: -1.5rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-n4, + .my-xl-n4 { + margin-bottom: -1.5rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-n4, + .mx-xl-n4 { + margin-left: -1.5rem !important; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-n5 { + margin: -3rem !important; + } + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-n5, + .my-xl-n5 { + margin-top: -3rem !important; + } + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-n5, + .mx-xl-n5 { + margin-right: -3rem !important; + } + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-n5, + .my-xl-n5 { + margin-bottom: -3rem !important; + } + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-n5, + .mx-xl-n5 { + margin-left: -3rem !important; + } + /* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .m-xl-auto { + margin: auto !important; + } + /* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mt-xl-auto, + .my-xl-auto { + margin-top: auto !important; + } + /* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mr-xl-auto, + .mx-xl-auto { + margin-right: auto !important; + } + /* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .mb-xl-auto, + .my-xl-auto { + margin-bottom: auto !important; + } + /* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + .ml-xl-auto, + .mx-xl-auto { + margin-left: auto !important; + } +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-monospace { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-justify { + text-align: justify !important; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-wrap { + white-space: normal !important; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-nowrap { + white-space: nowrap !important; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-left { + text-align: left !important; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-right { + text-align: right !important; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-center { + text-align: center !important; +} + +@media (min-width: 576px) { + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-sm-left { + text-align: left !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-sm-right { + text-align: right !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-sm-center { + text-align: center !important; + } +} + +@media (min-width: 768px) { + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-md-left { + text-align: left !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-md-right { + text-align: right !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-md-center { + text-align: center !important; + } +} + +@media (min-width: 992px) { + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-lg-left { + text-align: left !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-lg-right { + text-align: right !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-lg-center { + text-align: center !important; + } +} + +@media (min-width: 1200px) { + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-xl-left { + text-align: left !important; + } + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-xl-right { + text-align: right !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + .text-xl-center { + text-align: center !important; + } +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-lowercase { + text-transform: lowercase !important; +} + +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-uppercase { + text-transform: uppercase !important; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-capitalize { + text-transform: capitalize !important; +} + +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.font-weight-light { + font-weight: 300 !important; +} + +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.font-weight-lighter { + font-weight: lighter !important; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.font-weight-normal { + font-weight: 400 !important; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.font-weight-bold { + font-weight: 700 !important; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.font-weight-bolder { + font-weight: bolder !important; +} + +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.font-italic { + font-style: italic !important; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-white { + color: #fff !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-primary { + color: #007bff !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-primary:hover, a.text-primary:focus { + color: #0056b3 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-secondary { + color: #6c757d !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-secondary:hover, a.text-secondary:focus { + color: #494f54 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-success { + color: #28a745 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-success:hover, a.text-success:focus { + color: #19692c !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-info { + color: #17a2b8 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-info:hover, a.text-info:focus { + color: #0f6674 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-warning { + color: #ffc107 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-warning:hover, a.text-warning:focus { + color: #ba8b00 !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-danger { + color: #dc3545 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-danger:hover, a.text-danger:focus { + color: #a71d2a !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-light { + color: #f8f9fa !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-light:hover, a.text-light:focus { + color: #cbd3da !important; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +.text-dark { + color: #343a40 !important; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +a.text-dark:hover, a.text-dark:focus { + color: #121416 !important; +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-body { + color: #212529 !important; +} + +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-muted { + color: #6c757d !important; +} + +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-black-50 { + color: rgba(0, 0, 0, 0.5) !important; +} + +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-white-50 { + color: rgba(255, 255, 255, 0.5) !important; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +/* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-decoration-none { + text-decoration: none !important; +} + +/* line 65, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-break { + word-break: break-word !important; + overflow-wrap: break-word !important; +} + +/* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +.text-reset { + color: inherit !important; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_visibility.scss */ +.visible { + visibility: visible !important; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_visibility.scss */ +.invisible { + visibility: hidden !important; +} + +@media print { + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + *, + *::before, + *::after { + text-shadow: none !important; + box-shadow: none !important; + } + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + a:not(.btn) { + text-decoration: underline; + } + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + abbr[title]::after { + content: " (" attr(title) ")"; + } + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + pre { + white-space: pre-wrap !important; + } + /* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + pre, + blockquote { + border: 1px solid #adb5bd; + page-break-inside: avoid; + } + /* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + thead { + display: table-header-group; + } + /* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + tr, + img { + page-break-inside: avoid; + } + /* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + /* line 79, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + h2, + h3 { + page-break-after: avoid; + } + @page { + size: a3; + } + /* line 92, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + body { + min-width: 992px !important; + } + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .container { + min-width: 992px !important; + } + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .navbar { + display: none; + } + /* line 103, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .badge { + border: 1px solid #000; + } + /* line 107, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .table { + border-collapse: collapse !important; + } + /* line 110, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .table td, + .table th { + background-color: #fff !important; + } + /* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .table-bordered th, + .table-bordered td { + border: 1px solid #dee2e6 !important; + } + /* line 123, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .table-dark { + color: inherit; + } + /* line 126, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .table-dark th, + .table-dark td, + .table-dark thead th, + .table-dark tbody + tbody { + border-color: #dee2e6; + } + /* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + .table .thead-dark th { + color: inherit; + border-color: #dee2e6; + } +} + +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ +/* FONT PATH + * -------------------------- */ +@font-face { + font-family: 'FontAwesome'; + src: url("/assets/font-awesome/fontawesome-webfont-7bfcab6db99d5cfbf1705ca0536ddc78585432cc5fa41bbd7ad0f009033b2979.eot?v=4.7.0"); + src: url("/assets/font-awesome/fontawesome-webfont-7bfcab6db99d5cfbf1705ca0536ddc78585432cc5fa41bbd7ad0f009033b2979.eot?v=4.7.0#iefix") format("embedded-opentype"), url("/assets/font-awesome/fontawesome-webfont-2adefcbc041e7d18fcf2d417879dc5a09997aa64d675b7a3c4b6ce33da13f3fe.woff2?v=4.7.0") format("woff2"), url("/assets/font-awesome/fontawesome-webfont-ba0c59deb5450f5cb41b3f93609ee2d0d995415877ddfa223e8a8a7533474f07.woff?v=4.7.0") format("woff"), url("/assets/font-awesome/fontawesome-webfont-aa58f33f239a0fb02f5c7a6c45c043d7a9ac9a093335806694ecd6d4edc0d6a8.ttf?v=4.7.0") format("truetype"), url("/assets/font-awesome/fontawesome-webfont-ad6157926c1622ba4e1d03d478f1541368524bfc46f51e42fe0d945f7ef323e4.svg?v=4.7.0#fontawesomeregular") format("svg"); + font-weight: normal; + font-style: normal; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_core.scss */ +.fa { + display: inline-block; + font: normal normal normal 14px/1 FontAwesome; + font-size: inherit; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +/* makes the font 33% larger relative to the icon container */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ +.fa-lg { + font-size: 1.33333em; + line-height: 0.75em; + vertical-align: -15%; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ +.fa-2x { + font-size: 2em; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ +.fa-3x { + font-size: 3em; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ +.fa-4x { + font-size: 4em; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ +.fa-5x { + font-size: 5em; +} + +/* line 3, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_fixed-width.scss */ +.fa-fw { + width: 1.28571em; + text-align: center; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ +.fa-ul { + padding-left: 0; + margin-left: 2.14286em; + list-style-type: none; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ +.fa-ul > li { + position: relative; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ +.fa-li { + position: absolute; + left: -2.14286em; + width: 2.14286em; + top: 0.14286em; + text-align: center; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ +.fa-li.fa-lg { + left: -1.85714em; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +.fa-border { + padding: .2em .25em .15em; + border: solid 0.08em #eee; + border-radius: .1em; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +.fa-pull-left { + float: left; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +.fa-pull-right { + float: right; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +.fa.fa-pull-left { + margin-right: .3em; +} + +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +.fa.fa-pull-right { + margin-left: .3em; +} + +/* Deprecated as of 4.4.0 */ +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +.pull-right { + float: right; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +.pull-left { + float: left; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +.fa.pull-left { + margin-right: .3em; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +.fa.pull-right { + margin-left: .3em; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_animated.scss */ +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; +} + +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_animated.scss */ +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); +} + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + transform: rotate(180deg); +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + transform: rotate(270deg); +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); +} + +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + transform: scale(1, -1); +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + -webkit-filter: none; + filter: none; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ +.fa-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ +.fa-stack-1x, .fa-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} + +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ +.fa-stack-1x { + line-height: inherit; +} + +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ +.fa-stack-2x { + font-size: 2em; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ +.fa-inverse { + color: #fff; +} + +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-glass:before { + content: ""; +} + +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-music:before { + content: ""; +} + +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-search:before { + content: ""; +} + +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-envelope-o:before { + content: ""; +} + +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-heart:before { + content: ""; +} + +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-star:before { + content: ""; +} + +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-star-o:before { + content: ""; +} + +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-user:before { + content: ""; +} + +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-film:before { + content: ""; +} + +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-th-large:before { + content: ""; +} + +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-th:before { + content: ""; +} + +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-th-list:before { + content: ""; +} + +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-check:before { + content: ""; +} + +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-remove:before, +.fa-close:before, +.fa-times:before { + content: ""; +} + +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-search-plus:before { + content: ""; +} + +/* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-search-minus:before { + content: ""; +} + +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-power-off:before { + content: ""; +} + +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-signal:before { + content: ""; +} + +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-gear:before, +.fa-cog:before { + content: ""; +} + +/* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-trash-o:before { + content: ""; +} + +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-home:before { + content: ""; +} + +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-o:before { + content: ""; +} + +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-clock-o:before { + content: ""; +} + +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-road:before { + content: ""; +} + +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-download:before { + content: ""; +} + +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-circle-o-down:before { + content: ""; +} + +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-circle-o-up:before { + content: ""; +} + +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-inbox:before { + content: ""; +} + +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-play-circle-o:before { + content: ""; +} + +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-rotate-right:before, +.fa-repeat:before { + content: ""; +} + +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-refresh:before { + content: ""; +} + +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-list-alt:before { + content: ""; +} + +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-lock:before { + content: ""; +} + +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-flag:before { + content: ""; +} + +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-headphones:before { + content: ""; +} + +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-volume-off:before { + content: ""; +} + +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-volume-down:before { + content: ""; +} + +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-volume-up:before { + content: ""; +} + +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-qrcode:before { + content: ""; +} + +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-barcode:before { + content: ""; +} + +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tag:before { + content: ""; +} + +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tags:before { + content: ""; +} + +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-book:before { + content: ""; +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bookmark:before { + content: ""; +} + +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-print:before { + content: ""; +} + +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-camera:before { + content: ""; +} + +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-font:before { + content: ""; +} + +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bold:before { + content: ""; +} + +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-italic:before { + content: ""; +} + +/* line 57, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-text-height:before { + content: ""; +} + +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-text-width:before { + content: ""; +} + +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-align-left:before { + content: ""; +} + +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-align-center:before { + content: ""; +} + +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-align-right:before { + content: ""; +} + +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-align-justify:before { + content: ""; +} + +/* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-list:before { + content: ""; +} + +/* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-dedent:before, +.fa-outdent:before { + content: ""; +} + +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-indent:before { + content: ""; +} + +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-video-camera:before { + content: ""; +} + +/* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-photo:before, +.fa-image:before, +.fa-picture-o:before { + content: ""; +} + +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pencil:before { + content: ""; +} + +/* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-map-marker:before { + content: ""; +} + +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-adjust:before { + content: ""; +} + +/* line 74, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tint:before { + content: ""; +} + +/* line 75, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-edit:before, +.fa-pencil-square-o:before { + content: ""; +} + +/* line 77, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-share-square-o:before { + content: ""; +} + +/* line 78, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-check-square-o:before { + content: ""; +} + +/* line 79, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrows:before { + content: ""; +} + +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-step-backward:before { + content: ""; +} + +/* line 81, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-fast-backward:before { + content: ""; +} + +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-backward:before { + content: ""; +} + +/* line 83, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-play:before { + content: ""; +} + +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pause:before { + content: ""; +} + +/* line 85, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-stop:before { + content: ""; +} + +/* line 86, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-forward:before { + content: ""; +} + +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-fast-forward:before { + content: ""; +} + +/* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-step-forward:before { + content: ""; +} + +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-eject:before { + content: ""; +} + +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-chevron-left:before { + content: ""; +} + +/* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-chevron-right:before { + content: ""; +} + +/* line 92, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-plus-circle:before { + content: ""; +} + +/* line 93, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-minus-circle:before { + content: ""; +} + +/* line 94, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-times-circle:before { + content: ""; +} + +/* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-check-circle:before { + content: ""; +} + +/* line 96, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-question-circle:before { + content: ""; +} + +/* line 97, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-info-circle:before { + content: ""; +} + +/* line 98, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-crosshairs:before { + content: ""; +} + +/* line 99, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-times-circle-o:before { + content: ""; +} + +/* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-check-circle-o:before { + content: ""; +} + +/* line 101, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ban:before { + content: ""; +} + +/* line 102, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-left:before { + content: ""; +} + +/* line 103, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-right:before { + content: ""; +} + +/* line 104, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-up:before { + content: ""; +} + +/* line 105, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-down:before { + content: ""; +} + +/* line 106, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mail-forward:before, +.fa-share:before { + content: ""; +} + +/* line 108, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-expand:before { + content: ""; +} + +/* line 109, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-compress:before { + content: ""; +} + +/* line 110, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-plus:before { + content: ""; +} + +/* line 111, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-minus:before { + content: ""; +} + +/* line 112, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-asterisk:before { + content: ""; +} + +/* line 113, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-exclamation-circle:before { + content: ""; +} + +/* line 114, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-gift:before { + content: ""; +} + +/* line 115, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-leaf:before { + content: ""; +} + +/* line 116, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-fire:before { + content: ""; +} + +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-eye:before { + content: ""; +} + +/* line 118, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-eye-slash:before { + content: ""; +} + +/* line 119, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-warning:before, +.fa-exclamation-triangle:before { + content: ""; +} + +/* line 121, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-plane:before { + content: ""; +} + +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-calendar:before { + content: ""; +} + +/* line 123, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-random:before { + content: ""; +} + +/* line 124, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-comment:before { + content: ""; +} + +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-magnet:before { + content: ""; +} + +/* line 126, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-chevron-up:before { + content: ""; +} + +/* line 127, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-chevron-down:before { + content: ""; +} + +/* line 128, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-retweet:before { + content: ""; +} + +/* line 129, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-shopping-cart:before { + content: ""; +} + +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-folder:before { + content: ""; +} + +/* line 131, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-folder-open:before { + content: ""; +} + +/* line 132, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrows-v:before { + content: ""; +} + +/* line 133, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrows-h:before { + content: ""; +} + +/* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bar-chart-o:before, +.fa-bar-chart:before { + content: ""; +} + +/* line 136, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-twitter-square:before { + content: ""; +} + +/* line 137, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-facebook-square:before { + content: ""; +} + +/* line 138, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-camera-retro:before { + content: ""; +} + +/* line 139, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-key:before { + content: ""; +} + +/* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-gears:before, +.fa-cogs:before { + content: ""; +} + +/* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-comments:before { + content: ""; +} + +/* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-thumbs-o-up:before { + content: ""; +} + +/* line 144, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-thumbs-o-down:before { + content: ""; +} + +/* line 145, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-star-half:before { + content: ""; +} + +/* line 146, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-heart-o:before { + content: ""; +} + +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sign-out:before { + content: ""; +} + +/* line 148, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-linkedin-square:before { + content: ""; +} + +/* line 149, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-thumb-tack:before { + content: ""; +} + +/* line 150, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-external-link:before { + content: ""; +} + +/* line 151, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sign-in:before { + content: ""; +} + +/* line 152, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-trophy:before { + content: ""; +} + +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-github-square:before { + content: ""; +} + +/* line 154, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-upload:before { + content: ""; +} + +/* line 155, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-lemon-o:before { + content: ""; +} + +/* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-phone:before { + content: ""; +} + +/* line 157, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-square-o:before { + content: ""; +} + +/* line 158, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bookmark-o:before { + content: ""; +} + +/* line 159, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-phone-square:before { + content: ""; +} + +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-twitter:before { + content: ""; +} + +/* line 161, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-facebook-f:before, +.fa-facebook:before { + content: ""; +} + +/* line 163, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-github:before { + content: ""; +} + +/* line 164, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-unlock:before { + content: ""; +} + +/* line 165, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-credit-card:before { + content: ""; +} + +/* line 166, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-feed:before, +.fa-rss:before { + content: ""; +} + +/* line 168, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hdd-o:before { + content: ""; +} + +/* line 169, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bullhorn:before { + content: ""; +} + +/* line 170, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bell:before { + content: ""; +} + +/* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-certificate:before { + content: ""; +} + +/* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-o-right:before { + content: ""; +} + +/* line 173, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-o-left:before { + content: ""; +} + +/* line 174, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-o-up:before { + content: ""; +} + +/* line 175, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-o-down:before { + content: ""; +} + +/* line 176, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-circle-left:before { + content: ""; +} + +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-circle-right:before { + content: ""; +} + +/* line 178, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-circle-up:before { + content: ""; +} + +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-circle-down:before { + content: ""; +} + +/* line 180, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-globe:before { + content: ""; +} + +/* line 181, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-wrench:before { + content: ""; +} + +/* line 182, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tasks:before { + content: ""; +} + +/* line 183, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-filter:before { + content: ""; +} + +/* line 184, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-briefcase:before { + content: ""; +} + +/* line 185, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrows-alt:before { + content: ""; +} + +/* line 186, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-group:before, +.fa-users:before { + content: ""; +} + +/* line 188, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-chain:before, +.fa-link:before { + content: ""; +} + +/* line 190, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cloud:before { + content: ""; +} + +/* line 191, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-flask:before { + content: ""; +} + +/* line 192, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cut:before, +.fa-scissors:before { + content: ""; +} + +/* line 194, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-copy:before, +.fa-files-o:before { + content: ""; +} + +/* line 196, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-paperclip:before { + content: ""; +} + +/* line 197, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-save:before, +.fa-floppy-o:before { + content: ""; +} + +/* line 199, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-square:before { + content: ""; +} + +/* line 200, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-navicon:before, +.fa-reorder:before, +.fa-bars:before { + content: ""; +} + +/* line 203, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-list-ul:before { + content: ""; +} + +/* line 204, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-list-ol:before { + content: ""; +} + +/* line 205, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-strikethrough:before { + content: ""; +} + +/* line 206, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-underline:before { + content: ""; +} + +/* line 207, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-table:before { + content: ""; +} + +/* line 208, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-magic:before { + content: ""; +} + +/* line 209, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-truck:before { + content: ""; +} + +/* line 210, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pinterest:before { + content: ""; +} + +/* line 211, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pinterest-square:before { + content: ""; +} + +/* line 212, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-google-plus-square:before { + content: ""; +} + +/* line 213, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-google-plus:before { + content: ""; +} + +/* line 214, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-money:before { + content: ""; +} + +/* line 215, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-caret-down:before { + content: ""; +} + +/* line 216, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-caret-up:before { + content: ""; +} + +/* line 217, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-caret-left:before { + content: ""; +} + +/* line 218, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-caret-right:before { + content: ""; +} + +/* line 219, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-columns:before { + content: ""; +} + +/* line 220, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-unsorted:before, +.fa-sort:before { + content: ""; +} + +/* line 222, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sort-down:before, +.fa-sort-desc:before { + content: ""; +} + +/* line 224, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sort-up:before, +.fa-sort-asc:before { + content: ""; +} + +/* line 226, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-envelope:before { + content: ""; +} + +/* line 227, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-linkedin:before { + content: ""; +} + +/* line 228, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-rotate-left:before, +.fa-undo:before { + content: ""; +} + +/* line 230, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-legal:before, +.fa-gavel:before { + content: ""; +} + +/* line 232, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-dashboard:before, +.fa-tachometer:before { + content: ""; +} + +/* line 234, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-comment-o:before { + content: ""; +} + +/* line 235, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-comments-o:before { + content: ""; +} + +/* line 236, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-flash:before, +.fa-bolt:before { + content: ""; +} + +/* line 238, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sitemap:before { + content: ""; +} + +/* line 239, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-umbrella:before { + content: ""; +} + +/* line 240, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-paste:before, +.fa-clipboard:before { + content: ""; +} + +/* line 242, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-lightbulb-o:before { + content: ""; +} + +/* line 243, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-exchange:before { + content: ""; +} + +/* line 244, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cloud-download:before { + content: ""; +} + +/* line 245, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cloud-upload:before { + content: ""; +} + +/* line 246, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-user-md:before { + content: ""; +} + +/* line 247, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-stethoscope:before { + content: ""; +} + +/* line 248, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-suitcase:before { + content: ""; +} + +/* line 249, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bell-o:before { + content: ""; +} + +/* line 250, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-coffee:before { + content: ""; +} + +/* line 251, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cutlery:before { + content: ""; +} + +/* line 252, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-text-o:before { + content: ""; +} + +/* line 253, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-building-o:before { + content: ""; +} + +/* line 254, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hospital-o:before { + content: ""; +} + +/* line 255, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ambulance:before { + content: ""; +} + +/* line 256, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-medkit:before { + content: ""; +} + +/* line 257, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-fighter-jet:before { + content: ""; +} + +/* line 258, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-beer:before { + content: ""; +} + +/* line 259, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-h-square:before { + content: ""; +} + +/* line 260, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-plus-square:before { + content: ""; +} + +/* line 261, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-angle-double-left:before { + content: ""; +} + +/* line 262, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-angle-double-right:before { + content: ""; +} + +/* line 263, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-angle-double-up:before { + content: ""; +} + +/* line 264, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-angle-double-down:before { + content: ""; +} + +/* line 265, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-angle-left:before { + content: ""; +} + +/* line 266, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-angle-right:before { + content: ""; +} + +/* line 267, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-angle-up:before { + content: ""; +} + +/* line 268, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-angle-down:before { + content: ""; +} + +/* line 269, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-desktop:before { + content: ""; +} + +/* line 270, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-laptop:before { + content: ""; +} + +/* line 271, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tablet:before { + content: ""; +} + +/* line 272, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mobile-phone:before, +.fa-mobile:before { + content: ""; +} + +/* line 274, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-circle-o:before { + content: ""; +} + +/* line 275, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-quote-left:before { + content: ""; +} + +/* line 276, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-quote-right:before { + content: ""; +} + +/* line 277, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-spinner:before { + content: ""; +} + +/* line 278, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-circle:before { + content: ""; +} + +/* line 279, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mail-reply:before, +.fa-reply:before { + content: ""; +} + +/* line 281, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-github-alt:before { + content: ""; +} + +/* line 282, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-folder-o:before { + content: ""; +} + +/* line 283, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-folder-open-o:before { + content: ""; +} + +/* line 284, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-smile-o:before { + content: ""; +} + +/* line 285, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-frown-o:before { + content: ""; +} + +/* line 286, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-meh-o:before { + content: ""; +} + +/* line 287, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-gamepad:before { + content: ""; +} + +/* line 288, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-keyboard-o:before { + content: ""; +} + +/* line 289, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-flag-o:before { + content: ""; +} + +/* line 290, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-flag-checkered:before { + content: ""; +} + +/* line 291, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-terminal:before { + content: ""; +} + +/* line 292, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-code:before { + content: ""; +} + +/* line 293, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mail-reply-all:before, +.fa-reply-all:before { + content: ""; +} + +/* line 295, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-star-half-empty:before, +.fa-star-half-full:before, +.fa-star-half-o:before { + content: ""; +} + +/* line 298, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-location-arrow:before { + content: ""; +} + +/* line 299, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-crop:before { + content: ""; +} + +/* line 300, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-code-fork:before { + content: ""; +} + +/* line 301, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-unlink:before, +.fa-chain-broken:before { + content: ""; +} + +/* line 303, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-question:before { + content: ""; +} + +/* line 304, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-info:before { + content: ""; +} + +/* line 305, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-exclamation:before { + content: ""; +} + +/* line 306, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-superscript:before { + content: ""; +} + +/* line 307, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-subscript:before { + content: ""; +} + +/* line 308, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-eraser:before { + content: ""; +} + +/* line 309, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-puzzle-piece:before { + content: ""; +} + +/* line 310, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-microphone:before { + content: ""; +} + +/* line 311, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-microphone-slash:before { + content: ""; +} + +/* line 312, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-shield:before { + content: ""; +} + +/* line 313, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-calendar-o:before { + content: ""; +} + +/* line 314, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-fire-extinguisher:before { + content: ""; +} + +/* line 315, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-rocket:before { + content: ""; +} + +/* line 316, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-maxcdn:before { + content: ""; +} + +/* line 317, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-chevron-circle-left:before { + content: ""; +} + +/* line 318, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-chevron-circle-right:before { + content: ""; +} + +/* line 319, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-chevron-circle-up:before { + content: ""; +} + +/* line 320, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-chevron-circle-down:before { + content: ""; +} + +/* line 321, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-html5:before { + content: ""; +} + +/* line 322, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-css3:before { + content: ""; +} + +/* line 323, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-anchor:before { + content: ""; +} + +/* line 324, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-unlock-alt:before { + content: ""; +} + +/* line 325, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bullseye:before { + content: ""; +} + +/* line 326, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ellipsis-h:before { + content: ""; +} + +/* line 327, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ellipsis-v:before { + content: ""; +} + +/* line 328, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-rss-square:before { + content: ""; +} + +/* line 329, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-play-circle:before { + content: ""; +} + +/* line 330, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ticket:before { + content: ""; +} + +/* line 331, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-minus-square:before { + content: ""; +} + +/* line 332, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-minus-square-o:before { + content: ""; +} + +/* line 333, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-level-up:before { + content: ""; +} + +/* line 334, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-level-down:before { + content: ""; +} + +/* line 335, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-check-square:before { + content: ""; +} + +/* line 336, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pencil-square:before { + content: ""; +} + +/* line 337, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-external-link-square:before { + content: ""; +} + +/* line 338, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-share-square:before { + content: ""; +} + +/* line 339, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-compass:before { + content: ""; +} + +/* line 340, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-toggle-down:before, +.fa-caret-square-o-down:before { + content: ""; +} + +/* line 342, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-toggle-up:before, +.fa-caret-square-o-up:before { + content: ""; +} + +/* line 344, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-toggle-right:before, +.fa-caret-square-o-right:before { + content: ""; +} + +/* line 346, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-euro:before, +.fa-eur:before { + content: ""; +} + +/* line 348, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-gbp:before { + content: ""; +} + +/* line 349, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-dollar:before, +.fa-usd:before { + content: ""; +} + +/* line 351, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-rupee:before, +.fa-inr:before { + content: ""; +} + +/* line 353, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cny:before, +.fa-rmb:before, +.fa-yen:before, +.fa-jpy:before { + content: ""; +} + +/* line 357, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ruble:before, +.fa-rouble:before, +.fa-rub:before { + content: ""; +} + +/* line 360, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-won:before, +.fa-krw:before { + content: ""; +} + +/* line 362, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bitcoin:before, +.fa-btc:before { + content: ""; +} + +/* line 364, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file:before { + content: ""; +} + +/* line 365, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-text:before { + content: ""; +} + +/* line 366, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sort-alpha-asc:before { + content: ""; +} + +/* line 367, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sort-alpha-desc:before { + content: ""; +} + +/* line 368, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sort-amount-asc:before { + content: ""; +} + +/* line 369, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sort-amount-desc:before { + content: ""; +} + +/* line 370, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sort-numeric-asc:before { + content: ""; +} + +/* line 371, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sort-numeric-desc:before { + content: ""; +} + +/* line 372, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-thumbs-up:before { + content: ""; +} + +/* line 373, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-thumbs-down:before { + content: ""; +} + +/* line 374, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-youtube-square:before { + content: ""; +} + +/* line 375, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-youtube:before { + content: ""; +} + +/* line 376, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-xing:before { + content: ""; +} + +/* line 377, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-xing-square:before { + content: ""; +} + +/* line 378, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-youtube-play:before { + content: ""; +} + +/* line 379, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-dropbox:before { + content: ""; +} + +/* line 380, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-stack-overflow:before { + content: ""; +} + +/* line 381, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-instagram:before { + content: ""; +} + +/* line 382, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-flickr:before { + content: ""; +} + +/* line 383, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-adn:before { + content: ""; +} + +/* line 384, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bitbucket:before { + content: ""; +} + +/* line 385, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bitbucket-square:before { + content: ""; +} + +/* line 386, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tumblr:before { + content: ""; +} + +/* line 387, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tumblr-square:before { + content: ""; +} + +/* line 388, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-long-arrow-down:before { + content: ""; +} + +/* line 389, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-long-arrow-up:before { + content: ""; +} + +/* line 390, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-long-arrow-left:before { + content: ""; +} + +/* line 391, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-long-arrow-right:before { + content: ""; +} + +/* line 392, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-apple:before { + content: ""; +} + +/* line 393, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-windows:before { + content: ""; +} + +/* line 394, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-android:before { + content: ""; +} + +/* line 395, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-linux:before { + content: ""; +} + +/* line 396, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-dribbble:before { + content: ""; +} + +/* line 397, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-skype:before { + content: ""; +} + +/* line 398, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-foursquare:before { + content: ""; +} + +/* line 399, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-trello:before { + content: ""; +} + +/* line 400, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-female:before { + content: ""; +} + +/* line 401, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-male:before { + content: ""; +} + +/* line 402, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-gittip:before, +.fa-gratipay:before { + content: ""; +} + +/* line 404, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sun-o:before { + content: ""; +} + +/* line 405, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-moon-o:before { + content: ""; +} + +/* line 406, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-archive:before { + content: ""; +} + +/* line 407, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bug:before { + content: ""; +} + +/* line 408, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-vk:before { + content: ""; +} + +/* line 409, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-weibo:before { + content: ""; +} + +/* line 410, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-renren:before { + content: ""; +} + +/* line 411, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pagelines:before { + content: ""; +} + +/* line 412, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-stack-exchange:before { + content: ""; +} + +/* line 413, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-circle-o-right:before { + content: ""; +} + +/* line 414, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-arrow-circle-o-left:before { + content: ""; +} + +/* line 415, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-toggle-left:before, +.fa-caret-square-o-left:before { + content: ""; +} + +/* line 417, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-dot-circle-o:before { + content: ""; +} + +/* line 418, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-wheelchair:before { + content: ""; +} + +/* line 419, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-vimeo-square:before { + content: ""; +} + +/* line 420, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-turkish-lira:before, +.fa-try:before { + content: ""; +} + +/* line 422, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-plus-square-o:before { + content: ""; +} + +/* line 423, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-space-shuttle:before { + content: ""; +} + +/* line 424, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-slack:before { + content: ""; +} + +/* line 425, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-envelope-square:before { + content: ""; +} + +/* line 426, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-wordpress:before { + content: ""; +} + +/* line 427, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-openid:before { + content: ""; +} + +/* line 428, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-institution:before, +.fa-bank:before, +.fa-university:before { + content: ""; +} + +/* line 431, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mortar-board:before, +.fa-graduation-cap:before { + content: ""; +} + +/* line 433, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-yahoo:before { + content: ""; +} + +/* line 434, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-google:before { + content: ""; +} + +/* line 435, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-reddit:before { + content: ""; +} + +/* line 436, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-reddit-square:before { + content: ""; +} + +/* line 437, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-stumbleupon-circle:before { + content: ""; +} + +/* line 438, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-stumbleupon:before { + content: ""; +} + +/* line 439, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-delicious:before { + content: ""; +} + +/* line 440, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-digg:before { + content: ""; +} + +/* line 441, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pied-piper-pp:before { + content: ""; +} + +/* line 442, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pied-piper-alt:before { + content: ""; +} + +/* line 443, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-drupal:before { + content: ""; +} + +/* line 444, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-joomla:before { + content: ""; +} + +/* line 445, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-language:before { + content: ""; +} + +/* line 446, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-fax:before { + content: ""; +} + +/* line 447, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-building:before { + content: ""; +} + +/* line 448, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-child:before { + content: ""; +} + +/* line 449, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-paw:before { + content: ""; +} + +/* line 450, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-spoon:before { + content: ""; +} + +/* line 451, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cube:before { + content: ""; +} + +/* line 452, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cubes:before { + content: ""; +} + +/* line 453, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-behance:before { + content: ""; +} + +/* line 454, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-behance-square:before { + content: ""; +} + +/* line 455, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-steam:before { + content: ""; +} + +/* line 456, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-steam-square:before { + content: ""; +} + +/* line 457, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-recycle:before { + content: ""; +} + +/* line 458, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-automobile:before, +.fa-car:before { + content: ""; +} + +/* line 460, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cab:before, +.fa-taxi:before { + content: ""; +} + +/* line 462, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tree:before { + content: ""; +} + +/* line 463, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-spotify:before { + content: ""; +} + +/* line 464, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-deviantart:before { + content: ""; +} + +/* line 465, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-soundcloud:before { + content: ""; +} + +/* line 466, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-database:before { + content: ""; +} + +/* line 467, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-pdf-o:before { + content: ""; +} + +/* line 468, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-word-o:before { + content: ""; +} + +/* line 469, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-excel-o:before { + content: ""; +} + +/* line 470, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-powerpoint-o:before { + content: ""; +} + +/* line 471, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-photo-o:before, +.fa-file-picture-o:before, +.fa-file-image-o:before { + content: ""; +} + +/* line 474, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-zip-o:before, +.fa-file-archive-o:before { + content: ""; +} + +/* line 476, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-sound-o:before, +.fa-file-audio-o:before { + content: ""; +} + +/* line 478, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-movie-o:before, +.fa-file-video-o:before { + content: ""; +} + +/* line 480, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-file-code-o:before { + content: ""; +} + +/* line 481, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-vine:before { + content: ""; +} + +/* line 482, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-codepen:before { + content: ""; +} + +/* line 483, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-jsfiddle:before { + content: ""; +} + +/* line 484, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-life-bouy:before, +.fa-life-buoy:before, +.fa-life-saver:before, +.fa-support:before, +.fa-life-ring:before { + content: ""; +} + +/* line 489, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-circle-o-notch:before { + content: ""; +} + +/* line 490, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ra:before, +.fa-resistance:before, +.fa-rebel:before { + content: ""; +} + +/* line 493, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ge:before, +.fa-empire:before { + content: ""; +} + +/* line 495, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-git-square:before { + content: ""; +} + +/* line 496, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-git:before { + content: ""; +} + +/* line 497, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-y-combinator-square:before, +.fa-yc-square:before, +.fa-hacker-news:before { + content: ""; +} + +/* line 500, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tencent-weibo:before { + content: ""; +} + +/* line 501, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-qq:before { + content: ""; +} + +/* line 502, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-wechat:before, +.fa-weixin:before { + content: ""; +} + +/* line 504, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-send:before, +.fa-paper-plane:before { + content: ""; +} + +/* line 506, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-send-o:before, +.fa-paper-plane-o:before { + content: ""; +} + +/* line 508, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-history:before { + content: ""; +} + +/* line 509, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-circle-thin:before { + content: ""; +} + +/* line 510, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-header:before { + content: ""; +} + +/* line 511, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-paragraph:before { + content: ""; +} + +/* line 512, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sliders:before { + content: ""; +} + +/* line 513, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-share-alt:before { + content: ""; +} + +/* line 514, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-share-alt-square:before { + content: ""; +} + +/* line 515, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bomb:before { + content: ""; +} + +/* line 516, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-soccer-ball-o:before, +.fa-futbol-o:before { + content: ""; +} + +/* line 518, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tty:before { + content: ""; +} + +/* line 519, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-binoculars:before { + content: ""; +} + +/* line 520, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-plug:before { + content: ""; +} + +/* line 521, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-slideshare:before { + content: ""; +} + +/* line 522, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-twitch:before { + content: ""; +} + +/* line 523, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-yelp:before { + content: ""; +} + +/* line 524, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-newspaper-o:before { + content: ""; +} + +/* line 525, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-wifi:before { + content: ""; +} + +/* line 526, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-calculator:before { + content: ""; +} + +/* line 527, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-paypal:before { + content: ""; +} + +/* line 528, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-google-wallet:before { + content: ""; +} + +/* line 529, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cc-visa:before { + content: ""; +} + +/* line 530, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cc-mastercard:before { + content: ""; +} + +/* line 531, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cc-discover:before { + content: ""; +} + +/* line 532, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cc-amex:before { + content: ""; +} + +/* line 533, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cc-paypal:before { + content: ""; +} + +/* line 534, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cc-stripe:before { + content: ""; +} + +/* line 535, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bell-slash:before { + content: ""; +} + +/* line 536, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bell-slash-o:before { + content: ""; +} + +/* line 537, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-trash:before { + content: ""; +} + +/* line 538, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-copyright:before { + content: ""; +} + +/* line 539, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-at:before { + content: ""; +} + +/* line 540, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-eyedropper:before { + content: ""; +} + +/* line 541, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-paint-brush:before { + content: ""; +} + +/* line 542, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-birthday-cake:before { + content: ""; +} + +/* line 543, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-area-chart:before { + content: ""; +} + +/* line 544, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pie-chart:before { + content: ""; +} + +/* line 545, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-line-chart:before { + content: ""; +} + +/* line 546, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-lastfm:before { + content: ""; +} + +/* line 547, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-lastfm-square:before { + content: ""; +} + +/* line 548, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-toggle-off:before { + content: ""; +} + +/* line 549, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-toggle-on:before { + content: ""; +} + +/* line 550, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bicycle:before { + content: ""; +} + +/* line 551, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bus:before { + content: ""; +} + +/* line 552, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ioxhost:before { + content: ""; +} + +/* line 553, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-angellist:before { + content: ""; +} + +/* line 554, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cc:before { + content: ""; +} + +/* line 555, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-shekel:before, +.fa-sheqel:before, +.fa-ils:before { + content: ""; +} + +/* line 558, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-meanpath:before { + content: ""; +} + +/* line 559, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-buysellads:before { + content: ""; +} + +/* line 560, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-connectdevelop:before { + content: ""; +} + +/* line 561, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-dashcube:before { + content: ""; +} + +/* line 562, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-forumbee:before { + content: ""; +} + +/* line 563, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-leanpub:before { + content: ""; +} + +/* line 564, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sellsy:before { + content: ""; +} + +/* line 565, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-shirtsinbulk:before { + content: ""; +} + +/* line 566, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-simplybuilt:before { + content: ""; +} + +/* line 567, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-skyatlas:before { + content: ""; +} + +/* line 568, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cart-plus:before { + content: ""; +} + +/* line 569, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cart-arrow-down:before { + content: ""; +} + +/* line 570, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-diamond:before { + content: ""; +} + +/* line 571, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ship:before { + content: ""; +} + +/* line 572, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-user-secret:before { + content: ""; +} + +/* line 573, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-motorcycle:before { + content: ""; +} + +/* line 574, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-street-view:before { + content: ""; +} + +/* line 575, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-heartbeat:before { + content: ""; +} + +/* line 576, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-venus:before { + content: ""; +} + +/* line 577, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mars:before { + content: ""; +} + +/* line 578, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mercury:before { + content: ""; +} + +/* line 579, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-intersex:before, +.fa-transgender:before { + content: ""; +} + +/* line 581, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-transgender-alt:before { + content: ""; +} + +/* line 582, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-venus-double:before { + content: ""; +} + +/* line 583, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mars-double:before { + content: ""; +} + +/* line 584, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-venus-mars:before { + content: ""; +} + +/* line 585, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mars-stroke:before { + content: ""; +} + +/* line 586, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mars-stroke-v:before { + content: ""; +} + +/* line 587, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mars-stroke-h:before { + content: ""; +} + +/* line 588, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-neuter:before { + content: ""; +} + +/* line 589, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-genderless:before { + content: ""; +} + +/* line 590, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-facebook-official:before { + content: ""; +} + +/* line 591, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pinterest-p:before { + content: ""; +} + +/* line 592, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-whatsapp:before { + content: ""; +} + +/* line 593, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-server:before { + content: ""; +} + +/* line 594, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-user-plus:before { + content: ""; +} + +/* line 595, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-user-times:before { + content: ""; +} + +/* line 596, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hotel:before, +.fa-bed:before { + content: ""; +} + +/* line 598, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-viacoin:before { + content: ""; +} + +/* line 599, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-train:before { + content: ""; +} + +/* line 600, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-subway:before { + content: ""; +} + +/* line 601, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-medium:before { + content: ""; +} + +/* line 602, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-yc:before, +.fa-y-combinator:before { + content: ""; +} + +/* line 604, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-optin-monster:before { + content: ""; +} + +/* line 605, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-opencart:before { + content: ""; +} + +/* line 606, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-expeditedssl:before { + content: ""; +} + +/* line 607, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-battery-4:before, +.fa-battery:before, +.fa-battery-full:before { + content: ""; +} + +/* line 610, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-battery-3:before, +.fa-battery-three-quarters:before { + content: ""; +} + +/* line 612, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-battery-2:before, +.fa-battery-half:before { + content: ""; +} + +/* line 614, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-battery-1:before, +.fa-battery-quarter:before { + content: ""; +} + +/* line 616, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-battery-0:before, +.fa-battery-empty:before { + content: ""; +} + +/* line 618, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mouse-pointer:before { + content: ""; +} + +/* line 619, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-i-cursor:before { + content: ""; +} + +/* line 620, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-object-group:before { + content: ""; +} + +/* line 621, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-object-ungroup:before { + content: ""; +} + +/* line 622, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sticky-note:before { + content: ""; +} + +/* line 623, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-sticky-note-o:before { + content: ""; +} + +/* line 624, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cc-jcb:before { + content: ""; +} + +/* line 625, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-cc-diners-club:before { + content: ""; +} + +/* line 626, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-clone:before { + content: ""; +} + +/* line 627, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-balance-scale:before { + content: ""; +} + +/* line 628, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hourglass-o:before { + content: ""; +} + +/* line 629, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hourglass-1:before, +.fa-hourglass-start:before { + content: ""; +} + +/* line 631, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hourglass-2:before, +.fa-hourglass-half:before { + content: ""; +} + +/* line 633, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hourglass-3:before, +.fa-hourglass-end:before { + content: ""; +} + +/* line 635, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hourglass:before { + content: ""; +} + +/* line 636, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-grab-o:before, +.fa-hand-rock-o:before { + content: ""; +} + +/* line 638, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-stop-o:before, +.fa-hand-paper-o:before { + content: ""; +} + +/* line 640, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-scissors-o:before { + content: ""; +} + +/* line 641, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-lizard-o:before { + content: ""; +} + +/* line 642, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-spock-o:before { + content: ""; +} + +/* line 643, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-pointer-o:before { + content: ""; +} + +/* line 644, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hand-peace-o:before { + content: ""; +} + +/* line 645, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-trademark:before { + content: ""; +} + +/* line 646, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-registered:before { + content: ""; +} + +/* line 647, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-creative-commons:before { + content: ""; +} + +/* line 648, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-gg:before { + content: ""; +} + +/* line 649, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-gg-circle:before { + content: ""; +} + +/* line 650, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tripadvisor:before { + content: ""; +} + +/* line 651, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-odnoklassniki:before { + content: ""; +} + +/* line 652, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-odnoklassniki-square:before { + content: ""; +} + +/* line 653, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-get-pocket:before { + content: ""; +} + +/* line 654, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-wikipedia-w:before { + content: ""; +} + +/* line 655, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-safari:before { + content: ""; +} + +/* line 656, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-chrome:before { + content: ""; +} + +/* line 657, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-firefox:before { + content: ""; +} + +/* line 658, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-opera:before { + content: ""; +} + +/* line 659, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-internet-explorer:before { + content: ""; +} + +/* line 660, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-tv:before, +.fa-television:before { + content: ""; +} + +/* line 662, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-contao:before { + content: ""; +} + +/* line 663, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-500px:before { + content: ""; +} + +/* line 664, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-amazon:before { + content: ""; +} + +/* line 665, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-calendar-plus-o:before { + content: ""; +} + +/* line 666, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-calendar-minus-o:before { + content: ""; +} + +/* line 667, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-calendar-times-o:before { + content: ""; +} + +/* line 668, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-calendar-check-o:before { + content: ""; +} + +/* line 669, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-industry:before { + content: ""; +} + +/* line 670, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-map-pin:before { + content: ""; +} + +/* line 671, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-map-signs:before { + content: ""; +} + +/* line 672, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-map-o:before { + content: ""; +} + +/* line 673, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-map:before { + content: ""; +} + +/* line 674, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-commenting:before { + content: ""; +} + +/* line 675, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-commenting-o:before { + content: ""; +} + +/* line 676, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-houzz:before { + content: ""; +} + +/* line 677, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-vimeo:before { + content: ""; +} + +/* line 678, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-black-tie:before { + content: ""; +} + +/* line 679, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-fonticons:before { + content: ""; +} + +/* line 680, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-reddit-alien:before { + content: ""; +} + +/* line 681, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-edge:before { + content: ""; +} + +/* line 682, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-credit-card-alt:before { + content: ""; +} + +/* line 683, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-codiepie:before { + content: ""; +} + +/* line 684, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-modx:before { + content: ""; +} + +/* line 685, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-fort-awesome:before { + content: ""; +} + +/* line 686, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-usb:before { + content: ""; +} + +/* line 687, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-product-hunt:before { + content: ""; +} + +/* line 688, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-mixcloud:before { + content: ""; +} + +/* line 689, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-scribd:before { + content: ""; +} + +/* line 690, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pause-circle:before { + content: ""; +} + +/* line 691, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pause-circle-o:before { + content: ""; +} + +/* line 692, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-stop-circle:before { + content: ""; +} + +/* line 693, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-stop-circle-o:before { + content: ""; +} + +/* line 694, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-shopping-bag:before { + content: ""; +} + +/* line 695, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-shopping-basket:before { + content: ""; +} + +/* line 696, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-hashtag:before { + content: ""; +} + +/* line 697, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bluetooth:before { + content: ""; +} + +/* line 698, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bluetooth-b:before { + content: ""; +} + +/* line 699, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-percent:before { + content: ""; +} + +/* line 700, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-gitlab:before { + content: ""; +} + +/* line 701, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-wpbeginner:before { + content: ""; +} + +/* line 702, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-wpforms:before { + content: ""; +} + +/* line 703, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-envira:before { + content: ""; +} + +/* line 704, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-universal-access:before { + content: ""; +} + +/* line 705, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-wheelchair-alt:before { + content: ""; +} + +/* line 706, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-question-circle-o:before { + content: ""; +} + +/* line 707, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-blind:before { + content: ""; +} + +/* line 708, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-audio-description:before { + content: ""; +} + +/* line 709, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-volume-control-phone:before { + content: ""; +} + +/* line 710, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-braille:before { + content: ""; +} + +/* line 711, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-assistive-listening-systems:before { + content: ""; +} + +/* line 712, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-asl-interpreting:before, +.fa-american-sign-language-interpreting:before { + content: ""; +} + +/* line 714, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-deafness:before, +.fa-hard-of-hearing:before, +.fa-deaf:before { + content: ""; +} + +/* line 717, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-glide:before { + content: ""; +} + +/* line 718, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-glide-g:before { + content: ""; +} + +/* line 719, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-signing:before, +.fa-sign-language:before { + content: ""; +} + +/* line 721, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-low-vision:before { + content: ""; +} + +/* line 722, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-viadeo:before { + content: ""; +} + +/* line 723, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-viadeo-square:before { + content: ""; +} + +/* line 724, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-snapchat:before { + content: ""; +} + +/* line 725, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-snapchat-ghost:before { + content: ""; +} + +/* line 726, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-snapchat-square:before { + content: ""; +} + +/* line 727, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-pied-piper:before { + content: ""; +} + +/* line 728, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-first-order:before { + content: ""; +} + +/* line 729, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-yoast:before { + content: ""; +} + +/* line 730, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-themeisle:before { + content: ""; +} + +/* line 731, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-google-plus-circle:before, +.fa-google-plus-official:before { + content: ""; +} + +/* line 733, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-fa:before, +.fa-font-awesome:before { + content: ""; +} + +/* line 735, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-handshake-o:before { + content: ""; +} + +/* line 736, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-envelope-open:before { + content: ""; +} + +/* line 737, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-envelope-open-o:before { + content: ""; +} + +/* line 738, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-linode:before { + content: ""; +} + +/* line 739, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-address-book:before { + content: ""; +} + +/* line 740, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-address-book-o:before { + content: ""; +} + +/* line 741, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-vcard:before, +.fa-address-card:before { + content: ""; +} + +/* line 743, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-vcard-o:before, +.fa-address-card-o:before { + content: ""; +} + +/* line 745, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-user-circle:before { + content: ""; +} + +/* line 746, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-user-circle-o:before { + content: ""; +} + +/* line 747, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-user-o:before { + content: ""; +} + +/* line 748, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-id-badge:before { + content: ""; +} + +/* line 749, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-drivers-license:before, +.fa-id-card:before { + content: ""; +} + +/* line 751, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-drivers-license-o:before, +.fa-id-card-o:before { + content: ""; +} + +/* line 753, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-quora:before { + content: ""; +} + +/* line 754, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-free-code-camp:before { + content: ""; +} + +/* line 755, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-telegram:before { + content: ""; +} + +/* line 756, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-thermometer-4:before, +.fa-thermometer:before, +.fa-thermometer-full:before { + content: ""; +} + +/* line 759, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-thermometer-3:before, +.fa-thermometer-three-quarters:before { + content: ""; +} + +/* line 761, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-thermometer-2:before, +.fa-thermometer-half:before { + content: ""; +} + +/* line 763, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-thermometer-1:before, +.fa-thermometer-quarter:before { + content: ""; +} + +/* line 765, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-thermometer-0:before, +.fa-thermometer-empty:before { + content: ""; +} + +/* line 767, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-shower:before { + content: ""; +} + +/* line 768, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bathtub:before, +.fa-s15:before, +.fa-bath:before { + content: ""; +} + +/* line 771, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-podcast:before { + content: ""; +} + +/* line 772, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-window-maximize:before { + content: ""; +} + +/* line 773, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-window-minimize:before { + content: ""; +} + +/* line 774, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-window-restore:before { + content: ""; +} + +/* line 775, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-times-rectangle:before, +.fa-window-close:before { + content: ""; +} + +/* line 777, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-times-rectangle-o:before, +.fa-window-close-o:before { + content: ""; +} + +/* line 779, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-bandcamp:before { + content: ""; +} + +/* line 780, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-grav:before { + content: ""; +} + +/* line 781, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-etsy:before { + content: ""; +} + +/* line 782, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-imdb:before { + content: ""; +} + +/* line 783, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-ravelry:before { + content: ""; +} + +/* line 784, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-eercast:before { + content: ""; +} + +/* line 785, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-microchip:before { + content: ""; +} + +/* line 786, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-snowflake-o:before { + content: ""; +} + +/* line 787, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-superpowers:before { + content: ""; +} + +/* line 788, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-wpexplorer:before { + content: ""; +} + +/* line 789, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +.fa-meetup:before { + content: ""; +} + +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_screen-reader.scss */ +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0; +} + +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_mixins.scss */ +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; +} + +/* line 1, app/assets/stylesheets/common.scss */ +body { + font-size: 14px; + background: #efefef; +} + +/* line 7, app/assets/stylesheets/common.scss */ +a:hover { + text-decoration: unset; +} + +/* line 12, app/assets/stylesheets/common.scss */ +textarea.danger, input.danger { + border-color: #dc3545 !important; +} + +/* line 16, app/assets/stylesheets/common.scss */ +label.error { + color: #dc3545 !important; +} + +/* line 20, app/assets/stylesheets/common.scss */ +input.form-control { + font-size: 14px; +} + +/* line 24, app/assets/stylesheets/common.scss */ +.input-group-prepend .input-group-text { + font-size: 14px; +} + +/* line 29, app/assets/stylesheets/common.scss */ +.flex-1 { + -webkit-box-flex: 1; + flex: 1; +} + +/* line 33, app/assets/stylesheets/common.scss */ +.font-12 { + font-size: 12px !important; +} + +/* line 34, app/assets/stylesheets/common.scss */ +.font-14 { + font-size: 14px !important; +} + +/* line 35, app/assets/stylesheets/common.scss */ +.font-16 { + font-size: 16px !important; +} + +/* line 36, app/assets/stylesheets/common.scss */ +.font-18 { + font-size: 18px !important; +} + +/* line 37, app/assets/stylesheets/common.scss */ +.padding10-5 { + padding: 10px 5px; +} + +/* line 38, app/assets/stylesheets/common.scss */ +.width100 { + width: 100%; +} + +/* line 39, app/assets/stylesheets/common.scss */ +.mb10 { + margin-bottom: 10px; +} + +/* line 40, app/assets/stylesheets/common.scss */ +.mt10 { + margin-top: 10px; +} + +/* line 41, app/assets/stylesheets/common.scss */ +.mr10 { + margin-right: 10px; +} + +/* line 42, app/assets/stylesheets/common.scss */ +.textarea-width-100 { + width: 100%; + resize: none; + border: 1px solid #ccc; +} + +/* line 43, app/assets/stylesheets/common.scss */ +.padding10 { + padding: 10px; +} + +/* line 44, app/assets/stylesheets/common.scss */ +.padding5-10 { + padding: 5px 10px; +} + +/* line 45, app/assets/stylesheets/common.scss */ +.position-r { + position: relative; +} + +/* line 46, app/assets/stylesheets/common.scss */ +.color-grey-c { + color: #ccc; +} + +/* line 47, app/assets/stylesheets/common.scss */ +.inline-block { + display: inline-block; +} + +/* line 48, app/assets/stylesheets/common.scss */ +.hide { + display: none; +} + +/* line 49, app/assets/stylesheets/common.scss */ +.show { + display: block; +} + +/* line 3, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-header { + width: 100%; + height: 240px; + background-image: url("/images/educoder/statistics.jpg"); + background-size: 100% 100%; +} + +/* line 9, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-header-container { + height: 100%; + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + -webkit-box-align: center; + align-items: center; +} + +/* line 16, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-header-title { + -webkit-box-flex: 1; + flex: 1; + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + color: #4CACFF; + font-size: 32px; +} + +/* line 24, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-header-content { + width: 100%; + display: -webkit-box; + display: flex; + justify-content: space-around; +} + +/* line 30, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-header-item { + margin-bottom: 22px; + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + -webkit-box-align: center; + align-items: center; + color: #fff; +} + +/* line 37, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-header-item-label { + color: #989898; +} + +/* line 41, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-header-item-content { + font-size: 24px; +} + +/* line 47, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-box { + border: unset; + box-shadow: 0px 0px 9px rgba(174, 175, 177, 0.2); +} + +/* line 53, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-base-title { + padding: 2rem 1.25rem; + background: #fff; + border-bottom: unset; +} + +/* line 59, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-base-table { + margin: 0; + padding: 0; +} + +/* line 64, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-base-item { + padding: 0; +} + +/* line 67, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-base-item-label { + text-align: center; + font-size: 16px; + height: 48px; + line-height: 48px; + color: #686868; + background: #F5F5F5; + border-top: 1px solid #EBEBEB; + border-bottom: 1px solid #EBEBEB; +} + +/* line 78, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-base-item-content { + height: 100px; + font-size: 16px; + text-align: center; + line-height: 100px; +} + +/* line 84, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-base-item-content span { + margin-right: 5px; + font-size: 24px; +} + +/* line 92, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-container { + padding: 0; + background: #fff; + border-radius: 3px; + box-shadow: 0px 0px 9px rgba(174, 175, 177, 0.2); +} + +/* line 98, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-container .statistic-label { + padding: 2rem 1.25rem; + font-size: 1.5rem; +} + +/* line 103, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-container .statistic-table { + overflow-x: scroll; +} + +/* line 105, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-container .statistic-table table.course-table { + min-width: 1100px; +} + +/* line 106, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-container .statistic-table table.teacher-rank-table { + min-width: 640px; +} + +/* line 109, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-container table th { + background: #F5F5F5; + border-color: #EBEBEB; +} + +/* line 114, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-container.statistic-course { + min-height: 400px; +} + +/* line 118, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-container.statistic-teacher-rank, .colleges-statistics-page .college-body-container .statistic-container.statistic-student-rank { + min-height: 500px; +} + +/* line 123, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-chart { + padding: 0 20px; + height: 400px; +} + +/* line 127, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-chart .shixun-chart-loading, .colleges-statistics-page .college-body-container .statistic-chart .shixun-chart-empty, .colleges-statistics-page .college-body-container .statistic-chart .hot-chart-loading, .colleges-statistics-page .college-body-container .statistic-chart .hot-chart-empty { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: center; + justify-content: center; + height: 100%; +} + +/* line 10, app/assets/stylesheets/college.scss */ +.navbar-dark .navbar-nav .nav-link { + color: white; + font-size: 16px; +} +/* line 3, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-header { + width: 100%; + height: 240px; + background-image: url("/images/educoder/statistics.jpg"); + background-size: 100% 100%; +} + +/* line 9, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-header-container { + height: 100%; + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + -webkit-box-align: center; + align-items: center; +} + +/* line 16, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-header-title { + -webkit-box-flex: 1; + flex: 1; + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + color: #4CACFF; + font-size: 32px; +} + +/* line 24, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-header-content { + width: 100%; + display: -webkit-box; + display: flex; + justify-content: space-around; +} + +/* line 30, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-header-item { + margin-bottom: 22px; + display: -webkit-box; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + flex-direction: column; + -webkit-box-align: center; + align-items: center; + color: #fff; +} + +/* line 37, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-header-item-label { + color: #989898; +} + +/* line 41, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-header-item-content { + font-size: 24px; +} + +/* line 47, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-box { + border: unset; + box-shadow: 0px 0px 9px rgba(174, 175, 177, 0.2); +} + +/* line 53, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-base-title { + padding: 2rem 1.25rem; + background: #fff; + border-bottom: unset; +} + +/* line 59, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-base-table { + margin: 0; + padding: 0; +} + +/* line 64, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-base-item { + padding: 0; +} + +/* line 67, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-base-item-label { + text-align: center; + font-size: 16px; + height: 48px; + line-height: 48px; + color: #686868; + background: #F5F5F5; + border-top: 1px solid #EBEBEB; + border-bottom: 1px solid #EBEBEB; +} + +/* line 78, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-base-item-content { + height: 100px; + font-size: 16px; + text-align: center; + line-height: 100px; +} + +/* line 84, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-base-item-content span { + margin-right: 5px; + font-size: 24px; +} + +/* line 92, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-container { + padding: 0; + background: #fff; + border-radius: 3px; + box-shadow: 0px 0px 9px rgba(174, 175, 177, 0.2); +} + +/* line 98, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-container .statistic-label { + padding: 2rem 1.25rem; + font-size: 1.5rem; +} + +/* line 103, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-container .statistic-table { + overflow-x: scroll; +} + +/* line 105, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-container .statistic-table table.course-table { + min-width: 1100px; +} + +/* line 106, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-container .statistic-table table.teacher-rank-table { + min-width: 640px; +} + +/* line 109, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-container table th { + background: #F5F5F5; + border-color: #EBEBEB; +} + +/* line 114, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-container.statistic-course { + min-height: 400px; +} + +/* line 118, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-container.statistic-teacher-rank, .colleges-statistics-page .college-body-container .statistic-container.statistic-student-rank { + min-height: 500px; +} + +/* line 123, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-chart { + padding: 0 20px; + height: 400px; +} + +/* line 127, app/assets/stylesheets/colleges/statistic.scss */ +.colleges-statistics-page .college-body-container .statistic-chart .shixun-chart-loading, .colleges-statistics-page .college-body-container .statistic-chart .shixun-chart-empty, .colleges-statistics-page .college-body-container .statistic-chart .hot-chart-loading, .colleges-statistics-page .college-body-container .statistic-chart .hot-chart-empty { + display: -webkit-box; + display: flex; + -webkit-box-align: center; + align-items: center; + -webkit-box-pack: center; + justify-content: center; + height: 100%; +} +/* line 1, app/assets/stylesheets/common.scss */ +body { + font-size: 14px; + background: #efefef; +} + +/* line 7, app/assets/stylesheets/common.scss */ +a:hover { + text-decoration: unset; +} + +/* line 12, app/assets/stylesheets/common.scss */ +textarea.danger, input.danger { + border-color: #dc3545 !important; +} + +/* line 16, app/assets/stylesheets/common.scss */ +label.error { + color: #dc3545 !important; +} + +/* line 20, app/assets/stylesheets/common.scss */ +input.form-control { + font-size: 14px; +} + +/* line 24, app/assets/stylesheets/common.scss */ +.input-group-prepend .input-group-text { + font-size: 14px; +} + +/* line 29, app/assets/stylesheets/common.scss */ +.flex-1 { + -webkit-box-flex: 1; + flex: 1; +} + +/* line 33, app/assets/stylesheets/common.scss */ +.font-12 { + font-size: 12px !important; +} + +/* line 34, app/assets/stylesheets/common.scss */ +.font-14 { + font-size: 14px !important; +} + +/* line 35, app/assets/stylesheets/common.scss */ +.font-16 { + font-size: 16px !important; +} + +/* line 36, app/assets/stylesheets/common.scss */ +.font-18 { + font-size: 18px !important; +} + +/* line 37, app/assets/stylesheets/common.scss */ +.padding10-5 { + padding: 10px 5px; +} + +/* line 38, app/assets/stylesheets/common.scss */ +.width100 { + width: 100%; +} + +/* line 39, app/assets/stylesheets/common.scss */ +.mb10 { + margin-bottom: 10px; +} + +/* line 40, app/assets/stylesheets/common.scss */ +.mt10 { + margin-top: 10px; +} + +/* line 41, app/assets/stylesheets/common.scss */ +.mr10 { + margin-right: 10px; +} + +/* line 42, app/assets/stylesheets/common.scss */ +.textarea-width-100 { + width: 100%; + resize: none; + border: 1px solid #ccc; +} + +/* line 43, app/assets/stylesheets/common.scss */ +.padding10 { + padding: 10px; +} + +/* line 44, app/assets/stylesheets/common.scss */ +.padding5-10 { + padding: 5px 10px; +} + +/* line 45, app/assets/stylesheets/common.scss */ +.position-r { + position: relative; +} + +/* line 46, app/assets/stylesheets/common.scss */ +.color-grey-c { + color: #ccc; +} + +/* line 47, app/assets/stylesheets/common.scss */ +.inline-block { + display: inline-block; +} + +/* line 48, app/assets/stylesheets/common.scss */ +.hide { + display: none; +} + +/* line 49, app/assets/stylesheets/common.scss */ +.show { + display: block; +} +/*! + * jquery-confirm v3.3.4 (http://craftpip.github.io/jquery-confirm/) + * Author: boniface pereira + * Website: www.craftpip.com + * Contact: hey@craftpip.com + * + * Copyright 2013-2019 jquery-confirm + * Licensed under MIT (https://github.com/craftpip/jquery-confirm/blob/master/LICENSE) + */ +@-webkit-keyframes jconfirm-spin{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes jconfirm-spin{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}body[class*=jconfirm-no-scroll-]{overflow:hidden!important}.jconfirm{position:fixed;top:0;left:0;right:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden}.jconfirm .jconfirm-bg{position:fixed;top:0;left:0;right:0;bottom:0;-webkit-transition:opacity .4s;transition:opacity .4s}.jconfirm .jconfirm-bg.jconfirm-bg-h{opacity:0!important}.jconfirm .jconfirm-scrollpane{-webkit-perspective:500px;perspective:500px;-webkit-perspective-origin:center;perspective-origin:center;display:table;width:100%;height:100%}.jconfirm .jconfirm-row{display:table-row;width:100%}.jconfirm .jconfirm-cell{display:table-cell;vertical-align:middle}.jconfirm .jconfirm-holder{max-height:100%;padding:50px 0}.jconfirm .jconfirm-box-container{-webkit-transition:-webkit-transform;transition:-webkit-transform;transition:transform;transition:transform, -webkit-transform;transition:transform,-webkit-transform}.jconfirm .jconfirm-box-container.jconfirm-no-transition{-webkit-transition:none!important;transition:none!important}.jconfirm .jconfirm-box{background:white;border-radius:4px;position:relative;outline:0;padding:15px 15px 0;overflow:hidden;margin-left:auto;margin-right:auto}@-webkit-keyframes type-blue{1%,100%{border-color:#3498db}50%{border-color:#5faee3}}@keyframes type-blue{1%,100%{border-color:#3498db}50%{border-color:#5faee3}}@-webkit-keyframes type-green{1%,100%{border-color:#2ecc71}50%{border-color:#54d98c}}@keyframes type-green{1%,100%{border-color:#2ecc71}50%{border-color:#54d98c}}@-webkit-keyframes type-red{1%,100%{border-color:#e74c3c}50%{border-color:#ed7669}}@keyframes type-red{1%,100%{border-color:#e74c3c}50%{border-color:#ed7669}}@-webkit-keyframes type-orange{1%,100%{border-color:#f1c40f}50%{border-color:#f4d03f}}@keyframes type-orange{1%,100%{border-color:#f1c40f}50%{border-color:#f4d03f}}@-webkit-keyframes type-purple{1%,100%{border-color:#9b59b6}50%{border-color:#b07cc6}}@keyframes type-purple{1%,100%{border-color:#9b59b6}50%{border-color:#b07cc6}}@-webkit-keyframes type-dark{1%,100%{border-color:#34495e}50%{border-color:#46627f}}@keyframes type-dark{1%,100%{border-color:#34495e}50%{border-color:#46627f}}.jconfirm .jconfirm-box.jconfirm-type-animated{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.jconfirm .jconfirm-box.jconfirm-type-blue{border-top:solid 7px #3498db;-webkit-animation-name:type-blue;animation-name:type-blue}.jconfirm .jconfirm-box.jconfirm-type-green{border-top:solid 7px #2ecc71;-webkit-animation-name:type-green;animation-name:type-green}.jconfirm .jconfirm-box.jconfirm-type-red{border-top:solid 7px #e74c3c;-webkit-animation-name:type-red;animation-name:type-red}.jconfirm .jconfirm-box.jconfirm-type-orange{border-top:solid 7px #f1c40f;-webkit-animation-name:type-orange;animation-name:type-orange}.jconfirm .jconfirm-box.jconfirm-type-purple{border-top:solid 7px #9b59b6;-webkit-animation-name:type-purple;animation-name:type-purple}.jconfirm .jconfirm-box.jconfirm-type-dark{border-top:solid 7px #34495e;-webkit-animation-name:type-dark;animation-name:type-dark}.jconfirm .jconfirm-box.loading{height:120px}.jconfirm .jconfirm-box.loading:before{content:'';position:absolute;left:0;background:white;right:0;top:0;bottom:0;border-radius:10px;z-index:1}.jconfirm .jconfirm-box.loading:after{opacity:.6;content:'';height:30px;width:30px;border:solid 3px transparent;position:absolute;left:50%;margin-left:-15px;border-radius:50%;-webkit-animation:jconfirm-spin 1s infinite linear;animation:jconfirm-spin 1s infinite linear;border-bottom-color:dodgerblue;top:50%;margin-top:-15px;z-index:2}.jconfirm .jconfirm-box div.jconfirm-closeIcon{height:20px;width:20px;position:absolute;top:10px;right:10px;cursor:pointer;opacity:.6;text-align:center;font-size:27px!important;line-height:14px!important;display:none;z-index:1}.jconfirm .jconfirm-box div.jconfirm-closeIcon:empty{display:none}.jconfirm .jconfirm-box div.jconfirm-closeIcon .fa{font-size:16px}.jconfirm .jconfirm-box div.jconfirm-closeIcon .glyphicon{font-size:16px}.jconfirm .jconfirm-box div.jconfirm-closeIcon .zmdi{font-size:16px}.jconfirm .jconfirm-box div.jconfirm-closeIcon:hover{opacity:1}.jconfirm .jconfirm-box div.jconfirm-title-c{display:block;font-size:22px;line-height:20px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;padding-bottom:15px}.jconfirm .jconfirm-box div.jconfirm-title-c.jconfirm-hand{cursor:move}.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c{font-size:inherit;display:inline-block;vertical-align:middle}.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c i{vertical-align:middle}.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c:empty{display:none}.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:inherit;font-family:inherit;display:inline-block;vertical-align:middle}.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title:empty{display:none}.jconfirm .jconfirm-box div.jconfirm-content-pane{margin-bottom:15px;height:auto;-webkit-transition:height .4s ease-in;transition:height .4s ease-in;display:inline-block;width:100%;position:relative;overflow-x:hidden;overflow-y:auto}.jconfirm .jconfirm-box div.jconfirm-content-pane.no-scroll{overflow-y:hidden}.jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar{width:3px}.jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar-track{background:rgba(0,0,0,0.1)}.jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar-thumb{background:#666;border-radius:3px}.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content{overflow:auto}.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content img{max-width:100%;height:auto}.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content:empty{display:none}.jconfirm .jconfirm-box .jconfirm-buttons{padding-bottom:11px}.jconfirm .jconfirm-box .jconfirm-buttons>button{margin-bottom:4px;margin-left:2px;margin-right:2px}.jconfirm .jconfirm-box .jconfirm-buttons button{display:inline-block;padding:6px 12px;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-radius:4px;min-height:1em;-webkit-transition:opacity .1s ease,background-color .1s ease,color .1s ease,background .1s ease,-webkit-box-shadow .1s ease;-webkit-transition:opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease;transition:opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease;-webkit-tap-highlight-color:transparent;border:0;background-image:none}.jconfirm .jconfirm-box .jconfirm-buttons button.btn-blue{background-color:#3498db;color:#FFF;text-shadow:none;-webkit-transition:background .2s;transition:background .2s}.jconfirm .jconfirm-box .jconfirm-buttons button.btn-blue:hover{background-color:#2980b9;color:#FFF}.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green{background-color:#2ecc71;color:#FFF;text-shadow:none;-webkit-transition:background .2s;transition:background .2s}.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green:hover{background-color:#27ae60;color:#FFF}.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red{background-color:#e74c3c;color:#FFF;text-shadow:none;-webkit-transition:background .2s;transition:background .2s}.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red:hover{background-color:#c0392b;color:#FFF}.jconfirm .jconfirm-box .jconfirm-buttons button.btn-orange{background-color:#f1c40f;color:#FFF;text-shadow:none;-webkit-transition:background .2s;transition:background .2s}.jconfirm .jconfirm-box .jconfirm-buttons button.btn-orange:hover{background-color:#f39c12;color:#FFF}.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default{background-color:#ecf0f1;color:#000;text-shadow:none;-webkit-transition:background .2s;transition:background .2s}.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default:hover{background-color:#bdc3c7;color:#000}.jconfirm .jconfirm-box .jconfirm-buttons button.btn-purple{background-color:#9b59b6;color:#FFF;text-shadow:none;-webkit-transition:background .2s;transition:background .2s}.jconfirm .jconfirm-box .jconfirm-buttons button.btn-purple:hover{background-color:#8e44ad;color:#FFF}.jconfirm .jconfirm-box .jconfirm-buttons button.btn-dark{background-color:#34495e;color:#FFF;text-shadow:none;-webkit-transition:background .2s;transition:background .2s}.jconfirm .jconfirm-box .jconfirm-buttons button.btn-dark:hover{background-color:#2c3e50;color:#FFF}.jconfirm .jconfirm-box.jconfirm-type-red .jconfirm-title-c .jconfirm-icon-c{color:#e74c3c!important}.jconfirm .jconfirm-box.jconfirm-type-blue .jconfirm-title-c .jconfirm-icon-c{color:#3498db!important}.jconfirm .jconfirm-box.jconfirm-type-green .jconfirm-title-c .jconfirm-icon-c{color:#2ecc71!important}.jconfirm .jconfirm-box.jconfirm-type-purple .jconfirm-title-c .jconfirm-icon-c{color:#9b59b6!important}.jconfirm .jconfirm-box.jconfirm-type-orange .jconfirm-title-c .jconfirm-icon-c{color:#f1c40f!important}.jconfirm .jconfirm-box.jconfirm-type-dark .jconfirm-title-c .jconfirm-icon-c{color:#34495e!important}.jconfirm .jconfirm-clear{clear:both}.jconfirm.jconfirm-rtl{direction:rtl}.jconfirm.jconfirm-rtl div.jconfirm-closeIcon{left:5px;right:auto}.jconfirm.jconfirm-white .jconfirm-bg,.jconfirm.jconfirm-light .jconfirm-bg{background-color:#444;opacity:.2}.jconfirm.jconfirm-white .jconfirm-box,.jconfirm.jconfirm-light .jconfirm-box{box-shadow:0 2px 6px rgba(0,0,0,0.2);border-radius:5px}.jconfirm.jconfirm-white .jconfirm-box .jconfirm-title-c .jconfirm-icon-c,.jconfirm.jconfirm-light .jconfirm-box .jconfirm-title-c .jconfirm-icon-c{margin-right:8px;margin-left:0}.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons,.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons{float:right}.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button,.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button{text-transform:uppercase;font-size:14px;font-weight:bold;text-shadow:none}.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button.btn-default,.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button.btn-default{box-shadow:none;color:#333}.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button.btn-default:hover,.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button.btn-default:hover{background:#ddd}.jconfirm.jconfirm-white.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c,.jconfirm.jconfirm-light.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c{margin-left:8px;margin-right:0}.jconfirm.jconfirm-black .jconfirm-bg,.jconfirm.jconfirm-dark .jconfirm-bg{background-color:darkslategray;opacity:.4}.jconfirm.jconfirm-black .jconfirm-box,.jconfirm.jconfirm-dark .jconfirm-box{box-shadow:0 2px 6px rgba(0,0,0,0.2);background:#444;border-radius:5px;color:white}.jconfirm.jconfirm-black .jconfirm-box .jconfirm-title-c .jconfirm-icon-c,.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-title-c .jconfirm-icon-c{margin-right:8px;margin-left:0}.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons,.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons{float:right}.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button,.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button{border:0;background-image:none;text-transform:uppercase;font-size:14px;font-weight:bold;text-shadow:none;-webkit-transition:background .1s;transition:background .1s;color:white}.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button.btn-default,.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button.btn-default{box-shadow:none;color:#fff;background:0}.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button.btn-default:hover,.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button.btn-default:hover{background:#666}.jconfirm.jconfirm-black.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c,.jconfirm.jconfirm-dark.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c{margin-left:8px;margin-right:0}.jconfirm .jconfirm-box.hilight.jconfirm-hilight-shake{-webkit-animation:shake .82s cubic-bezier(0.36,0.07,0.19,0.97) both;animation:shake .82s cubic-bezier(0.36,0.07,0.19,0.97) both;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.jconfirm .jconfirm-box.hilight.jconfirm-hilight-glow{-webkit-animation:glow .82s cubic-bezier(0.36,0.07,0.19,0.97) both;animation:glow .82s cubic-bezier(0.36,0.07,0.19,0.97) both;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}@-webkit-keyframes shake{10%,90%{-webkit-transform:translate3d(-2px,0,0);transform:translate3d(-2px,0,0)}20%,80%{-webkit-transform:translate3d(4px,0,0);transform:translate3d(4px,0,0)}30%,50%,70%{-webkit-transform:translate3d(-8px,0,0);transform:translate3d(-8px,0,0)}40%,60%{-webkit-transform:translate3d(8px,0,0);transform:translate3d(8px,0,0)}}@keyframes shake{10%,90%{-webkit-transform:translate3d(-2px,0,0);transform:translate3d(-2px,0,0)}20%,80%{-webkit-transform:translate3d(4px,0,0);transform:translate3d(4px,0,0)}30%,50%,70%{-webkit-transform:translate3d(-8px,0,0);transform:translate3d(-8px,0,0)}40%,60%{-webkit-transform:translate3d(8px,0,0);transform:translate3d(8px,0,0)}}@-webkit-keyframes glow{0%,100%{box-shadow:0 0 0 red}50%{box-shadow:0 0 30px red}}@keyframes glow{0%,100%{box-shadow:0 0 0 red}50%{box-shadow:0 0 30px red}}.jconfirm{-webkit-perspective:400px;perspective:400px}.jconfirm .jconfirm-box{opacity:1;-webkit-transition-property:all;transition-property:all}.jconfirm .jconfirm-box.jconfirm-animation-top,.jconfirm .jconfirm-box.jconfirm-animation-left,.jconfirm .jconfirm-box.jconfirm-animation-right,.jconfirm .jconfirm-box.jconfirm-animation-bottom,.jconfirm .jconfirm-box.jconfirm-animation-opacity,.jconfirm .jconfirm-box.jconfirm-animation-zoom,.jconfirm .jconfirm-box.jconfirm-animation-scale,.jconfirm .jconfirm-box.jconfirm-animation-none,.jconfirm .jconfirm-box.jconfirm-animation-rotate,.jconfirm .jconfirm-box.jconfirm-animation-rotatex,.jconfirm .jconfirm-box.jconfirm-animation-rotatey,.jconfirm .jconfirm-box.jconfirm-animation-scaley,.jconfirm .jconfirm-box.jconfirm-animation-scalex{opacity:0}.jconfirm .jconfirm-box.jconfirm-animation-rotate{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.jconfirm .jconfirm-box.jconfirm-animation-rotatex{-webkit-transform:rotateX(90deg);transform:rotateX(90deg);-webkit-transform-origin:center;transform-origin:center}.jconfirm .jconfirm-box.jconfirm-animation-rotatexr{-webkit-transform:rotateX(-90deg);transform:rotateX(-90deg);-webkit-transform-origin:center;transform-origin:center}.jconfirm .jconfirm-box.jconfirm-animation-rotatey{-webkit-transform:rotatey(90deg);transform:rotatey(90deg);-webkit-transform-origin:center;transform-origin:center}.jconfirm .jconfirm-box.jconfirm-animation-rotateyr{-webkit-transform:rotatey(-90deg);transform:rotatey(-90deg);-webkit-transform-origin:center;transform-origin:center}.jconfirm .jconfirm-box.jconfirm-animation-scaley{-webkit-transform:scaley(1.5);transform:scaley(1.5);-webkit-transform-origin:center;transform-origin:center}.jconfirm .jconfirm-box.jconfirm-animation-scalex{-webkit-transform:scalex(1.5);transform:scalex(1.5);-webkit-transform-origin:center;transform-origin:center}.jconfirm .jconfirm-box.jconfirm-animation-top{-webkit-transform:translate(0px,-100px);transform:translate(0px,-100px)}.jconfirm .jconfirm-box.jconfirm-animation-left{-webkit-transform:translate(-100px,0px);transform:translate(-100px,0px)}.jconfirm .jconfirm-box.jconfirm-animation-right{-webkit-transform:translate(100px,0px);transform:translate(100px,0px)}.jconfirm .jconfirm-box.jconfirm-animation-bottom{-webkit-transform:translate(0px,100px);transform:translate(0px,100px)}.jconfirm .jconfirm-box.jconfirm-animation-zoom{-webkit-transform:scale(1.2);transform:scale(1.2)}.jconfirm .jconfirm-box.jconfirm-animation-scale{-webkit-transform:scale(0.5);transform:scale(0.5)}.jconfirm .jconfirm-box.jconfirm-animation-none{visibility:hidden}.jconfirm.jconfirm-supervan .jconfirm-bg{background-color:rgba(54,70,93,0.95)}.jconfirm.jconfirm-supervan .jconfirm-box{background-color:transparent}.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-blue{border:0}.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-green{border:0}.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-red{border:0}.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-orange{border:0}.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-purple{border:0}.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-dark{border:0}.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-closeIcon{color:white}.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c{text-align:center;color:white;font-size:28px;font-weight:normal}.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c>*{padding-bottom:25px}.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c{margin-right:8px;margin-left:0}.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-content-pane{margin-bottom:25px}.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-content{text-align:center;color:white}.jconfirm.jconfirm-supervan .jconfirm-box .jconfirm-buttons{text-align:center}.jconfirm.jconfirm-supervan .jconfirm-box .jconfirm-buttons button{font-size:16px;border-radius:2px;background:#303f53;text-shadow:none;border:0;color:white;padding:10px;min-width:100px}.jconfirm.jconfirm-supervan.jconfirm-rtl .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c{margin-left:8px;margin-right:0}.jconfirm.jconfirm-material .jconfirm-bg{background-color:rgba(0,0,0,0.67)}.jconfirm.jconfirm-material .jconfirm-box{background-color:white;box-shadow:0 7px 8px -4px rgba(0,0,0,0.2),0 13px 19px 2px rgba(0,0,0,0.14),0 5px 24px 4px rgba(0,0,0,0.12);padding:30px 25px 10px 25px}.jconfirm.jconfirm-material .jconfirm-box .jconfirm-title-c .jconfirm-icon-c{margin-right:8px;margin-left:0}.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-closeIcon{color:rgba(0,0,0,0.87)}.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-title-c{color:rgba(0,0,0,0.87);font-size:22px;font-weight:bold}.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-content{color:rgba(0,0,0,0.87)}.jconfirm.jconfirm-material .jconfirm-box .jconfirm-buttons{text-align:right}.jconfirm.jconfirm-material .jconfirm-box .jconfirm-buttons button{text-transform:uppercase;font-weight:500}.jconfirm.jconfirm-material.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c{margin-left:8px;margin-right:0}.jconfirm.jconfirm-bootstrap .jconfirm-bg{background-color:rgba(0,0,0,0.21)}.jconfirm.jconfirm-bootstrap .jconfirm-box{background-color:white;box-shadow:0 3px 8px 0 rgba(0,0,0,0.2);border:solid 1px rgba(0,0,0,0.4);padding:15px 0 0}.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-title-c .jconfirm-icon-c{margin-right:8px;margin-left:0}.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-closeIcon{color:rgba(0,0,0,0.87)}.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-title-c{color:rgba(0,0,0,0.87);font-size:22px;font-weight:bold;padding-left:15px;padding-right:15px}.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-content{color:rgba(0,0,0,0.87);padding:0 15px}.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-buttons{text-align:right;padding:10px;margin:-5px 0 0;border-top:solid 1px #ddd;overflow:hidden;border-radius:0 0 4px 4px}.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-buttons button{font-weight:500}.jconfirm.jconfirm-bootstrap.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c{margin-left:8px;margin-right:0}.jconfirm.jconfirm-modern .jconfirm-bg{background-color:slategray;opacity:.6}.jconfirm.jconfirm-modern .jconfirm-box{background-color:white;box-shadow:0 7px 8px -4px rgba(0,0,0,0.2),0 13px 19px 2px rgba(0,0,0,0.14),0 5px 24px 4px rgba(0,0,0,0.12);padding:30px 30px 15px}.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-closeIcon{color:rgba(0,0,0,0.87);top:15px;right:15px}.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c{color:rgba(0,0,0,0.87);font-size:24px;font-weight:bold;text-align:center;margin-bottom:10px}.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c{-webkit-transition:-webkit-transform .5s;transition:-webkit-transform .5s;transition:transform .5s;transition:transform .5s, -webkit-transform .5s;transition:transform .5s,-webkit-transform .5s;-webkit-transform:scale(0);transform:scale(0);display:block;margin-right:0;margin-left:0;margin-bottom:10px;font-size:69px;color:#aaa}.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-content{text-align:center;font-size:15px;color:#777;margin-bottom:25px}.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons{text-align:center}.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons button{font-weight:bold;text-transform:uppercase;-webkit-transition:background .1s;transition:background .1s;padding:10px 20px}.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons button+button{margin-left:4px}.jconfirm.jconfirm-modern.jconfirm-open .jconfirm-box .jconfirm-title-c .jconfirm-icon-c{-webkit-transform:scale(1);transform:scale(1)} +@charset "UTF-8"; +/* Author:mingyuhisoft@163.com + * Github:https://github.com/imingyu/jquery.mloading + * Npm:npm install jquery.mloading.js + * Date:2016-7-4 + */ +/* line 7, app/assets/stylesheets/jquery.mloading.scss */ +.mloading-container { + position: relative; + min-height: 70px; + -webkit-transition: height 0.6s ease-in-out; + transition: height 0.6s ease-in-out; +} + +/* line 14, app/assets/stylesheets/jquery.mloading.scss */ +.mloading { + position: absolute; + background: #E9E9E8; + font: normal 12px/22px "Microsoft Yahei", "微软雅黑", "宋体"; + display: none; + z-index: 1600; + background: rgba(233, 233, 232, 0); +} + +/* line 22, app/assets/stylesheets/jquery.mloading.scss */ +.mloading.active { + display: block; +} + +/* line 25, app/assets/stylesheets/jquery.mloading.scss */ +.mloading.mloading-mask { + background: rgba(233, 233, 232, 0.75); + filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75); +} + +/* line 29, app/assets/stylesheets/jquery.mloading.scss */ +.mloading-full { + position: fixed; + width: 100%; + height: 100%; + top: 0; + left: 0; +} + +/* line 36, app/assets/stylesheets/jquery.mloading.scss */ +.mloading-container > .mloading { + top: 0px; + left: 0px; + width: 100%; + height: 100%; +} + +/* line 42, app/assets/stylesheets/jquery.mloading.scss */ +.mloading-body { + width: 100%; + height: 100%; + position: relative; +} + +/* line 47, app/assets/stylesheets/jquery.mloading.scss */ +.mloading-bar { + width: 250px; + min-height: 22px; + text-align: center; + background: #fff; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.27); + border-radius: 7px; + padding: 20px 15px; + font-size: 14px; + color: #999; + position: absolute; + top: 50%; + left: 50%; + margin-left: -140px; + margin-top: -30px; + word-break: break-all; +} + +@media (max-width: 300px) { + /* line 65, app/assets/stylesheets/jquery.mloading.scss */ + .mloading-bar { + width: 62px; + height: 56px; + margin-left: -30px !important; + margin-top: -30px !important; + padding: 0; + line-height: 56px; + } + /* line 73, app/assets/stylesheets/jquery.mloading.scss */ + .mloading-bar > .mloading-text { + display: none; + } +} + +/* line 77, app/assets/stylesheets/jquery.mloading.scss */ +.mloading-bar-sm { + width: 62px; + height: 56px; + margin-left: -30px !important; + margin-top: -30px !important; + padding: 0; + line-height: 56px; +} + +/* line 85, app/assets/stylesheets/jquery.mloading.scss */ +.mloading-bar-sm > .mloading-text { + display: none; +} + +/* line 88, app/assets/stylesheets/jquery.mloading.scss */ +.mloading-icon { + width: 16px; + height: 16px; + vertical-align: middle; +} + +/* line 93, app/assets/stylesheets/jquery.mloading.scss */ +.mloading-text { + margin-left: 10px; +} +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection--single { + height: calc(1.5em + .75rem + 2px) !important; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection--single .select2-selection__placeholder { + color: #757575; + line-height: calc(1.5em + .75rem); +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow { + position: absolute; + top: 50%; + right: 3px; + width: 20px; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow b { + top: 60%; + border-color: #343a40 transparent transparent; + border-style: solid; + border-width: 5px 4px 0; + width: 0; + height: 0; + left: 50%; + margin-left: -4px; + margin-top: -2px; + position: absolute; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered { + line-height: calc(1.5em + .75rem); +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-search--dropdown .select2-search__field { + border: 1px solid #ced4da; + border-radius: .25rem; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-results__message { + color: #6c757d; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection--multiple { + min-height: calc(1.5em + .75rem + 2px) !important; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__rendered { + box-sizing: border-box; + list-style: none; + margin: 0; + padding: 0 5px; + width: 100%; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice { + color: #343a40; + border: 1px solid #bdc6d0; + border-radius: .2rem; + padding: 0 5px 0 0; + cursor: pointer; + float: left; + margin-top: .3em; + margin-right: 5px; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove { + color: #bdc6d0; + font-weight: 700; + margin-left: 3px; + margin-right: 1px; + padding-right: 3px; + padding-left: 3px; + float: left; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove:hover { + color: #343a40; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container { + display: block; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container :focus { + outline: 0; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.input-group .select2-container--bootstrap4 { + -webkit-box-flex: 1; + flex-grow: 1; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.input-group-prepend ~ .select2-container--bootstrap4 .select2-selection { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection { + border: 1px solid #ced4da; + border-radius: .25rem; + width: 100%; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4.select2-container--focus .select2-selection { + border-color: #17a2b8; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4.select2-container--focus.select2-container--open .select2-selection { + border-bottom: none; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4.select2-container--disabled.select2-container--focus .select2-selection, .select2-container--bootstrap4.select2-container--disabled .select2-selection { + background-color: #e9ecef; + cursor: not-allowed; + border-color: #ced4da; + box-shadow: none; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4.select2-container--disabled.select2-container--focus .select2-search__field, .select2-container--bootstrap4.select2-container--disabled .select2-search__field { + background-color: transparent; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +form.was-validated select:invalid ~ .select2-container--bootstrap4 .select2-selection, select.is-invalid ~ .select2-container--bootstrap4 .select2-selection { + border-color: #dc3545; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +form.was-validated select:valid ~ .select2-container--bootstrap4 .select2-selection, select.is-valid ~ .select2-container--bootstrap4 .select2-selection { + border-color: #28a745; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-dropdown { + border-color: #ced4da; + border-top: none; + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-dropdown.select2-dropdown--above { + border-top: 1px solid #ced4da; + border-top-left-radius: .25rem; + border-top-right-radius: .25rem; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-dropdown .select2-results__option[aria-selected=true] { + background-color: #e9ecef; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-results__option--highlighted, .select2-container--bootstrap4 .select2-results__option--highlighted.select2-results__option[aria-selected=true] { + background-color: #007bff; + color: #f8f9fa; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-results__option[role=group] { + padding: 0; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-results > .select2-results__options { + max-height: 15em; + overflow-y: auto; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-results__group { + padding: 6px; + display: list-item; + color: #6c757d; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection__clear { + width: 1.2em; + height: 1.2em; + line-height: 1.15em; + padding-left: .3em; + margin-top: .5em; + border-radius: 100%; + background-color: #ccc; + color: #f8f9fa; + float: right; + margin-right: .3em; +} + +/* line 1, app/assets/stylesheets/select2-bootstrap4.min.scss */ +.select2-container--bootstrap4 .select2-selection__clear:hover { + background-color: #343a40; +} +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container { + box-sizing: border-box; + display: inline-block; + margin: 0; + position: relative; + vertical-align: middle; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container .select2-selection--single { + box-sizing: border-box; + cursor: pointer; + display: block; + height: 28px; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -webkit-user-select: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container .select2-selection--single .select2-selection__rendered { + display: block; + padding-left: 8px; + padding-right: 20px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container .select2-selection--single .select2-selection__clear { + position: relative; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered { + padding-right: 8px; + padding-left: 20px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container .select2-selection--multiple { + box-sizing: border-box; + cursor: pointer; + display: block; + min-height: 32px; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -webkit-user-select: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container .select2-selection--multiple .select2-selection__rendered { + display: inline-block; + overflow: hidden; + padding-left: 8px; + text-overflow: ellipsis; + white-space: nowrap; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container .select2-search--inline { + float: left; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container .select2-search--inline .select2-search__field { + box-sizing: border-box; + border: none; + font-size: 100%; + margin-top: 5px; + padding: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button { + -webkit-appearance: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-dropdown { + background-color: white; + border: 1px solid #aaa; + border-radius: 4px; + box-sizing: border-box; + display: block; + position: absolute; + left: -100000px; + width: 100%; + z-index: 1051; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-results { + display: block; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-results__options { + list-style: none; + margin: 0; + padding: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-results__option { + padding: 6px; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -webkit-user-select: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-results__option[aria-selected] { + cursor: pointer; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--open .select2-dropdown { + left: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--open .select2-dropdown--above { + border-bottom: none; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--open .select2-dropdown--below { + border-top: none; + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-search--dropdown { + display: block; + padding: 4px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-search--dropdown .select2-search__field { + padding: 4px; + width: 100%; + box-sizing: border-box; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button { + -webkit-appearance: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-search--dropdown.select2-search--hide { + display: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-close-mask { + border: 0; + margin: 0; + padding: 0; + display: block; + position: fixed; + left: 0; + top: 0; + min-height: 100%; + min-width: 100%; + height: auto; + width: auto; + opacity: 0; + z-index: 99; + background-color: #fff; + filter: alpha(opacity=0); +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-hidden-accessible { + border: 0 !important; + clip: rect(0 0 0 0) !important; + -webkit-clip-path: inset(50%) !important; + clip-path: inset(50%) !important; + height: 1px !important; + overflow: hidden !important; + padding: 0 !important; + position: absolute !important; + width: 1px !important; + white-space: nowrap !important; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--single { + background-color: #fff; + border: 1px solid #aaa; + border-radius: 4px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--single .select2-selection__rendered { + color: #444; + line-height: 28px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--single .select2-selection__clear { + cursor: pointer; + float: right; + font-weight: bold; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--single .select2-selection__placeholder { + color: #999; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--single .select2-selection__arrow { + height: 26px; + position: absolute; + top: 1px; + right: 1px; + width: 20px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--single .select2-selection__arrow b { + border-color: #888 transparent transparent transparent; + border-style: solid; + border-width: 5px 4px 0 4px; + height: 0; + left: 50%; + margin-left: -4px; + margin-top: -2px; + position: absolute; + top: 50%; + width: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear { + float: left; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow { + left: 1px; + right: auto; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default.select2-container--disabled .select2-selection--single { + background-color: #eee; + cursor: default; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear { + display: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b { + border-color: transparent transparent #888 transparent; + border-width: 0 4px 5px 4px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--multiple { + background-color: white; + border: 1px solid #aaa; + border-radius: 4px; + cursor: text; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--multiple .select2-selection__rendered { + box-sizing: border-box; + list-style: none; + margin: 0; + padding: 0 5px; + width: 100%; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--multiple .select2-selection__rendered li { + list-style: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--multiple .select2-selection__clear { + cursor: pointer; + float: right; + font-weight: bold; + margin-top: 5px; + margin-right: 10px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--multiple .select2-selection__choice { + background-color: #e4e4e4; + border: 1px solid #aaa; + border-radius: 4px; + cursor: default; + float: left; + margin-right: 5px; + margin-top: 5px; + padding: 0 5px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--multiple .select2-selection__choice__remove { + color: #999; + cursor: pointer; + display: inline-block; + font-weight: bold; + margin-right: 2px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover { + color: #333; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline { + float: right; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice { + margin-left: 5px; + margin-right: auto; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove { + margin-left: 2px; + margin-right: auto; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default.select2-container--focus .select2-selection--multiple { + border: solid black 1px; + outline: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default.select2-container--disabled .select2-selection--multiple { + background-color: #eee; + cursor: default; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default.select2-container--disabled .select2-selection__choice__remove { + display: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-search--dropdown .select2-search__field { + border: 1px solid #aaa; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-search--inline .select2-search__field { + background: transparent; + border: none; + outline: 0; + box-shadow: none; + -webkit-appearance: textfield; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results > .select2-results__options { + max-height: 200px; + overflow-y: auto; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option[role=group] { + padding: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option[aria-disabled=true] { + color: #999; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option[aria-selected=true] { + background-color: #ddd; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option .select2-results__option { + padding-left: 1em; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option .select2-results__option .select2-results__group { + padding-left: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option .select2-results__option .select2-results__option { + margin-left: -1em; + padding-left: 2em; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -2em; + padding-left: 3em; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -3em; + padding-left: 4em; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -4em; + padding-left: 5em; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -5em; + padding-left: 6em; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__option--highlighted[aria-selected] { + background-color: #5897fb; + color: white; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--default .select2-results__group { + cursor: default; + display: block; + padding: 6px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--single { + background-color: #f7f7f7; + border: 1px solid #aaa; + border-radius: 4px; + outline: 0; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), to(#eee)); + background-image: linear-gradient(to bottom, #fff 50%, #eee 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--single:focus { + border: 1px solid #5897fb; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--single .select2-selection__rendered { + color: #444; + line-height: 28px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--single .select2-selection__clear { + cursor: pointer; + float: right; + font-weight: bold; + margin-right: 10px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--single .select2-selection__placeholder { + color: #999; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--single .select2-selection__arrow { + background-color: #ddd; + border: none; + border-left: 1px solid #aaa; + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; + height: 26px; + position: absolute; + top: 1px; + right: 1px; + width: 20px; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#ccc)); + background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--single .select2-selection__arrow b { + border-color: #888 transparent transparent transparent; + border-style: solid; + border-width: 5px 4px 0 4px; + height: 0; + left: 50%; + margin-left: -4px; + margin-top: -2px; + position: absolute; + top: 50%; + width: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear { + float: left; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow { + border: none; + border-right: 1px solid #aaa; + border-radius: 0; + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; + left: 1px; + right: auto; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic.select2-container--open .select2-selection--single { + border: 1px solid #5897fb; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow { + background: transparent; + border: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b { + border-color: transparent transparent #888 transparent; + border-width: 0 4px 5px 4px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single { + border-top: none; + border-top-left-radius: 0; + border-top-right-radius: 0; + background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #eee)); + background-image: linear-gradient(to bottom, #fff 0%, #eee 50%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single { + border-bottom: none; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#fff)); + background-image: linear-gradient(to bottom, #eee 50%, #fff 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--multiple { + background-color: white; + border: 1px solid #aaa; + border-radius: 4px; + cursor: text; + outline: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--multiple:focus { + border: 1px solid #5897fb; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--multiple .select2-selection__rendered { + list-style: none; + margin: 0; + padding: 0 5px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--multiple .select2-selection__clear { + display: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--multiple .select2-selection__choice { + background-color: #e4e4e4; + border: 1px solid #aaa; + border-radius: 4px; + cursor: default; + float: left; + margin-right: 5px; + margin-top: 5px; + padding: 0 5px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove { + color: #888; + cursor: pointer; + display: inline-block; + font-weight: bold; + margin-right: 2px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover { + color: #555; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice { + float: right; + margin-left: 5px; + margin-right: auto; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove { + margin-left: 2px; + margin-right: auto; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic.select2-container--open .select2-selection--multiple { + border: 1px solid #5897fb; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple { + border-top: none; + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple { + border-bottom: none; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-search--dropdown .select2-search__field { + border: 1px solid #aaa; + outline: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-search--inline .select2-search__field { + outline: 0; + box-shadow: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-dropdown { + background-color: #fff; + border: 1px solid transparent; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-dropdown--above { + border-bottom: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-dropdown--below { + border-top: none; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-results > .select2-results__options { + max-height: 200px; + overflow-y: auto; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-results__option[role=group] { + padding: 0; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-results__option[aria-disabled=true] { + color: grey; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-results__option--highlighted[aria-selected] { + background-color: #3875d7; + color: #fff; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic .select2-results__group { + cursor: default; + display: block; + padding: 6px; +} + +/* line 1, app/assets/stylesheets/select2.min.scss */ +.select2-container--classic.select2-container--open .select2-dropdown { + border-color: #5897fb; +} +/* + * This is a manifest file that'll be compiled into application.css, which will include all the files + * listed below. + * + * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's + * vendor/assets/stylesheets directory can be referenced here using a relative path. + * + * You're free to add application-wide styles to this file and they'll appear at the bottom of the + * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS + * files in this directory. Styles in this file should be added after the last require_* statement. + * It is generally better to create a new file per style scope. + * + + + + */ + diff --git a/public/assets/application-3aaf730b0754ed5e84bd381bc42b3bc84fcdba125481dbe380a6533c05f22f3c.css.gz b/public/assets/application-3aaf730b0754ed5e84bd381bc42b3bc84fcdba125481dbe380a6533c05f22f3c.css.gz new file mode 100644 index 0000000000000000000000000000000000000000..17351ecf1ce31faa95bf5d74c0d55909358bc357 GIT binary patch literal 158021 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�?qD@V>e^eBk&WfL+4`@Z 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 code { color: inherit; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ kbd { padding: 0.2rem 0.4rem; font-size: 87.5%; @@ -612,34 +612,34 @@ kbd { border-radius: 0.2rem; } -/* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ kbd kbd { padding: 0; font-size: 100%; font-weight: 700; } -/* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ pre { display: block; font-size: 87.5%; color: #212529; } -/* line 37, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ pre code { font-size: inherit; color: inherit; word-break: normal; } -/* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_code.scss */ .pre-scrollable { max-height: 340px; overflow-y: scroll; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ .container { width: 100%; padding-right: 15px; @@ -649,34 +649,34 @@ pre code { } @media (min-width: 576px) { - /* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ .container { max-width: 540px; } } @media (min-width: 768px) { - /* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ .container { max-width: 720px; } } @media (min-width: 992px) { - /* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ .container { max-width: 960px; } } @media (min-width: 1200px) { - /* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ .container { max-width: 1140px; } } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ .container-fluid { width: 100%; padding-right: 15px; @@ -685,7 +685,7 @@ pre code { margin-left: auto; } -/* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ .row { display: -webkit-box; display: flex; @@ -694,20 +694,20 @@ pre code { margin-left: -15px; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ .no-gutters { margin-right: 0; margin-left: 0; } -/* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_grid.scss */ .no-gutters > .col, .no-gutters > [class*="col-"] { padding-right: 0; padding-left: 0; } -/* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, @@ -720,7 +720,7 @@ pre code { padding-left: 15px; } -/* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col { flex-basis: 0; -webkit-box-flex: 1; @@ -728,7 +728,7 @@ pre code { max-width: 100%; } -/* line 36, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-auto { -webkit-box-flex: 0; flex: 0 0 auto; @@ -736,1091 +736,1091 @@ pre code { max-width: 100%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-1 { -webkit-box-flex: 0; flex: 0 0 8.33333%; max-width: 8.33333%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-2 { -webkit-box-flex: 0; flex: 0 0 16.66667%; max-width: 16.66667%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-3 { -webkit-box-flex: 0; flex: 0 0 25%; max-width: 25%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-4 { -webkit-box-flex: 0; flex: 0 0 33.33333%; max-width: 33.33333%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-5 { -webkit-box-flex: 0; flex: 0 0 41.66667%; max-width: 41.66667%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-6 { -webkit-box-flex: 0; flex: 0 0 50%; max-width: 50%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-7 { -webkit-box-flex: 0; flex: 0 0 58.33333%; max-width: 58.33333%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-8 { -webkit-box-flex: 0; flex: 0 0 66.66667%; max-width: 66.66667%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-9 { -webkit-box-flex: 0; flex: 0 0 75%; max-width: 75%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-10 { -webkit-box-flex: 0; flex: 0 0 83.33333%; max-width: 83.33333%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-11 { -webkit-box-flex: 0; flex: 0 0 91.66667%; max-width: 91.66667%; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-12 { -webkit-box-flex: 0; flex: 0 0 100%; max-width: 100%; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-first { -webkit-box-ordinal-group: 0; order: -1; } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-last { -webkit-box-ordinal-group: 14; order: 13; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-0 { -webkit-box-ordinal-group: 1; order: 0; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-1 { -webkit-box-ordinal-group: 2; order: 1; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-2 { -webkit-box-ordinal-group: 3; order: 2; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-3 { -webkit-box-ordinal-group: 4; order: 3; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-4 { -webkit-box-ordinal-group: 5; order: 4; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-5 { -webkit-box-ordinal-group: 6; order: 5; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-6 { -webkit-box-ordinal-group: 7; order: 6; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-7 { -webkit-box-ordinal-group: 8; order: 7; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-8 { -webkit-box-ordinal-group: 9; order: 8; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-9 { -webkit-box-ordinal-group: 10; order: 9; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-10 { -webkit-box-ordinal-group: 11; order: 10; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-11 { -webkit-box-ordinal-group: 12; order: 11; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-12 { -webkit-box-ordinal-group: 13; order: 12; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-1 { margin-left: 8.33333%; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-2 { margin-left: 16.66667%; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-3 { margin-left: 25%; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-4 { margin-left: 33.33333%; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-5 { margin-left: 41.66667%; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-6 { margin-left: 50%; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-7 { margin-left: 58.33333%; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-8 { margin-left: 66.66667%; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-9 { margin-left: 75%; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-10 { margin-left: 83.33333%; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-11 { margin-left: 91.66667%; } @media (min-width: 576px) { - /* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm { flex-basis: 0; -webkit-box-flex: 1; flex-grow: 1; max-width: 100%; } - /* line 36, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-auto { -webkit-box-flex: 0; flex: 0 0 auto; width: auto; max-width: 100%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-1 { -webkit-box-flex: 0; flex: 0 0 8.33333%; max-width: 8.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-2 { -webkit-box-flex: 0; flex: 0 0 16.66667%; max-width: 16.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-3 { -webkit-box-flex: 0; flex: 0 0 25%; max-width: 25%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-4 { -webkit-box-flex: 0; flex: 0 0 33.33333%; max-width: 33.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-5 { -webkit-box-flex: 0; flex: 0 0 41.66667%; max-width: 41.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-6 { -webkit-box-flex: 0; flex: 0 0 50%; max-width: 50%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-7 { -webkit-box-flex: 0; flex: 0 0 58.33333%; max-width: 58.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-8 { -webkit-box-flex: 0; flex: 0 0 66.66667%; max-width: 66.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-9 { -webkit-box-flex: 0; flex: 0 0 75%; max-width: 75%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-10 { -webkit-box-flex: 0; flex: 0 0 83.33333%; max-width: 83.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-11 { -webkit-box-flex: 0; flex: 0 0 91.66667%; max-width: 91.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-sm-12 { -webkit-box-flex: 0; flex: 0 0 100%; max-width: 100%; } - /* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-first { -webkit-box-ordinal-group: 0; order: -1; } - /* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-last { -webkit-box-ordinal-group: 14; order: 13; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-0 { -webkit-box-ordinal-group: 1; order: 0; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-1 { -webkit-box-ordinal-group: 2; order: 1; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-2 { -webkit-box-ordinal-group: 3; order: 2; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-3 { -webkit-box-ordinal-group: 4; order: 3; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-4 { -webkit-box-ordinal-group: 5; order: 4; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-5 { -webkit-box-ordinal-group: 6; order: 5; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-6 { -webkit-box-ordinal-group: 7; order: 6; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-7 { -webkit-box-ordinal-group: 8; order: 7; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-8 { -webkit-box-ordinal-group: 9; order: 8; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-9 { -webkit-box-ordinal-group: 10; order: 9; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-10 { -webkit-box-ordinal-group: 11; order: 10; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-11 { -webkit-box-ordinal-group: 12; order: 11; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-sm-12 { -webkit-box-ordinal-group: 13; order: 12; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-0 { margin-left: 0; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-1 { margin-left: 8.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-2 { margin-left: 16.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-3 { margin-left: 25%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-4 { margin-left: 33.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-5 { margin-left: 41.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-6 { margin-left: 50%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-7 { margin-left: 58.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-8 { margin-left: 66.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-9 { margin-left: 75%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-10 { margin-left: 83.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-sm-11 { margin-left: 91.66667%; } } @media (min-width: 768px) { - /* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md { flex-basis: 0; -webkit-box-flex: 1; flex-grow: 1; max-width: 100%; } - /* line 36, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-auto { -webkit-box-flex: 0; flex: 0 0 auto; width: auto; max-width: 100%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-1 { -webkit-box-flex: 0; flex: 0 0 8.33333%; max-width: 8.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-2 { -webkit-box-flex: 0; flex: 0 0 16.66667%; max-width: 16.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-3 { -webkit-box-flex: 0; flex: 0 0 25%; max-width: 25%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-4 { -webkit-box-flex: 0; flex: 0 0 33.33333%; max-width: 33.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-5 { -webkit-box-flex: 0; flex: 0 0 41.66667%; max-width: 41.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-6 { -webkit-box-flex: 0; flex: 0 0 50%; max-width: 50%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-7 { -webkit-box-flex: 0; flex: 0 0 58.33333%; max-width: 58.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-8 { -webkit-box-flex: 0; flex: 0 0 66.66667%; max-width: 66.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-9 { -webkit-box-flex: 0; flex: 0 0 75%; max-width: 75%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-10 { -webkit-box-flex: 0; flex: 0 0 83.33333%; max-width: 83.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-11 { -webkit-box-flex: 0; flex: 0 0 91.66667%; max-width: 91.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-md-12 { -webkit-box-flex: 0; flex: 0 0 100%; max-width: 100%; } - /* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-first { -webkit-box-ordinal-group: 0; order: -1; } - /* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-last { -webkit-box-ordinal-group: 14; order: 13; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-0 { -webkit-box-ordinal-group: 1; order: 0; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-1 { -webkit-box-ordinal-group: 2; order: 1; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-2 { -webkit-box-ordinal-group: 3; order: 2; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-3 { -webkit-box-ordinal-group: 4; order: 3; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-4 { -webkit-box-ordinal-group: 5; order: 4; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-5 { -webkit-box-ordinal-group: 6; order: 5; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-6 { -webkit-box-ordinal-group: 7; order: 6; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-7 { -webkit-box-ordinal-group: 8; order: 7; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-8 { -webkit-box-ordinal-group: 9; order: 8; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-9 { -webkit-box-ordinal-group: 10; order: 9; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-10 { -webkit-box-ordinal-group: 11; order: 10; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-11 { -webkit-box-ordinal-group: 12; order: 11; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-md-12 { -webkit-box-ordinal-group: 13; order: 12; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-0 { margin-left: 0; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-1 { margin-left: 8.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-2 { margin-left: 16.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-3 { margin-left: 25%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-4 { margin-left: 33.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-5 { margin-left: 41.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-6 { margin-left: 50%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-7 { margin-left: 58.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-8 { margin-left: 66.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-9 { margin-left: 75%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-10 { margin-left: 83.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-md-11 { margin-left: 91.66667%; } } @media (min-width: 992px) { - /* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg { flex-basis: 0; -webkit-box-flex: 1; flex-grow: 1; max-width: 100%; } - /* line 36, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-auto { -webkit-box-flex: 0; flex: 0 0 auto; width: auto; max-width: 100%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-1 { -webkit-box-flex: 0; flex: 0 0 8.33333%; max-width: 8.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-2 { -webkit-box-flex: 0; flex: 0 0 16.66667%; max-width: 16.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-3 { -webkit-box-flex: 0; flex: 0 0 25%; max-width: 25%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-4 { -webkit-box-flex: 0; flex: 0 0 33.33333%; max-width: 33.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-5 { -webkit-box-flex: 0; flex: 0 0 41.66667%; max-width: 41.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-6 { -webkit-box-flex: 0; flex: 0 0 50%; max-width: 50%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-7 { -webkit-box-flex: 0; flex: 0 0 58.33333%; max-width: 58.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-8 { -webkit-box-flex: 0; flex: 0 0 66.66667%; max-width: 66.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-9 { -webkit-box-flex: 0; flex: 0 0 75%; max-width: 75%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-10 { -webkit-box-flex: 0; flex: 0 0 83.33333%; max-width: 83.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-11 { -webkit-box-flex: 0; flex: 0 0 91.66667%; max-width: 91.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-lg-12 { -webkit-box-flex: 0; flex: 0 0 100%; max-width: 100%; } - /* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-first { -webkit-box-ordinal-group: 0; order: -1; } - /* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-last { -webkit-box-ordinal-group: 14; order: 13; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-0 { -webkit-box-ordinal-group: 1; order: 0; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-1 { -webkit-box-ordinal-group: 2; order: 1; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-2 { -webkit-box-ordinal-group: 3; order: 2; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-3 { -webkit-box-ordinal-group: 4; order: 3; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-4 { -webkit-box-ordinal-group: 5; order: 4; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-5 { -webkit-box-ordinal-group: 6; order: 5; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-6 { -webkit-box-ordinal-group: 7; order: 6; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-7 { -webkit-box-ordinal-group: 8; order: 7; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-8 { -webkit-box-ordinal-group: 9; order: 8; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-9 { -webkit-box-ordinal-group: 10; order: 9; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-10 { -webkit-box-ordinal-group: 11; order: 10; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-11 { -webkit-box-ordinal-group: 12; order: 11; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-lg-12 { -webkit-box-ordinal-group: 13; order: 12; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-0 { margin-left: 0; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-1 { margin-left: 8.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-2 { margin-left: 16.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-3 { margin-left: 25%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-4 { margin-left: 33.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-5 { margin-left: 41.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-6 { margin-left: 50%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-7 { margin-left: 58.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-8 { margin-left: 66.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-9 { margin-left: 75%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-10 { margin-left: 83.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-lg-11 { margin-left: 91.66667%; } } @media (min-width: 1200px) { - /* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl { flex-basis: 0; -webkit-box-flex: 1; flex-grow: 1; max-width: 100%; } - /* line 36, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-auto { -webkit-box-flex: 0; flex: 0 0 auto; width: auto; max-width: 100%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-1 { -webkit-box-flex: 0; flex: 0 0 8.33333%; max-width: 8.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-2 { -webkit-box-flex: 0; flex: 0 0 16.66667%; max-width: 16.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-3 { -webkit-box-flex: 0; flex: 0 0 25%; max-width: 25%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-4 { -webkit-box-flex: 0; flex: 0 0 33.33333%; max-width: 33.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-5 { -webkit-box-flex: 0; flex: 0 0 41.66667%; max-width: 41.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-6 { -webkit-box-flex: 0; flex: 0 0 50%; max-width: 50%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-7 { -webkit-box-flex: 0; flex: 0 0 58.33333%; max-width: 58.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-8 { -webkit-box-flex: 0; flex: 0 0 66.66667%; max-width: 66.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-9 { -webkit-box-flex: 0; flex: 0 0 75%; max-width: 75%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-10 { -webkit-box-flex: 0; flex: 0 0 83.33333%; max-width: 83.33333%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-11 { -webkit-box-flex: 0; flex: 0 0 91.66667%; max-width: 91.66667%; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .col-xl-12 { -webkit-box-flex: 0; flex: 0 0 100%; max-width: 100%; } - /* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-first { -webkit-box-ordinal-group: 0; order: -1; } - /* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-last { -webkit-box-ordinal-group: 14; order: 13; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-0 { -webkit-box-ordinal-group: 1; order: 0; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-1 { -webkit-box-ordinal-group: 2; order: 1; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-2 { -webkit-box-ordinal-group: 3; order: 2; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-3 { -webkit-box-ordinal-group: 4; order: 3; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-4 { -webkit-box-ordinal-group: 5; order: 4; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-5 { -webkit-box-ordinal-group: 6; order: 5; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-6 { -webkit-box-ordinal-group: 7; order: 6; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-7 { -webkit-box-ordinal-group: 8; order: 7; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-8 { -webkit-box-ordinal-group: 9; order: 8; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-9 { -webkit-box-ordinal-group: 10; order: 9; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-10 { -webkit-box-ordinal-group: 11; order: 10; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-11 { -webkit-box-ordinal-group: 12; order: 11; } - /* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .order-xl-12 { -webkit-box-ordinal-group: 13; order: 12; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-0 { margin-left: 0; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-1 { margin-left: 8.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-2 { margin-left: 16.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-3 { margin-left: 25%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-4 { margin-left: 33.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-5 { margin-left: 41.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-6 { margin-left: 50%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-7 { margin-left: 58.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-8 { margin-left: 66.66667%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-9 { margin-left: 75%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-10 { margin-left: 83.33333%; } - /* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ + /* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */ .offset-xl-11 { margin-left: 91.66667%; } } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table { width: 100%; margin-bottom: 1rem; color: #212529; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table th, .table td { padding: 0.75rem; @@ -1828,41 +1828,41 @@ pre code { border-top: 1px solid #dee2e6; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table thead th { vertical-align: bottom; border-bottom: 2px solid #dee2e6; } -/* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table tbody + tbody { border-top: 2px solid #dee2e6; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-sm th, .table-sm td { padding: 0.3rem; } -/* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-bordered { border: 1px solid #dee2e6; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-bordered th, .table-bordered td { border: 1px solid #dee2e6; } -/* line 54, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-bordered thead th, .table-bordered thead td { border-bottom-width: 2px; } -/* line 62, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-borderless th, .table-borderless td, .table-borderless thead th, @@ -1870,25 +1870,25 @@ pre code { border: 0; } -/* line 75, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 75, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-striped tbody tr:nth-of-type(odd) { background-color: rgba(0, 0, 0, 0.05); } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-hover tbody tr:hover { color: #212529; background-color: rgba(0, 0, 0, 0.075); } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-primary, .table-primary > th, .table-primary > td { background-color: #b8daff; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-primary th, .table-primary td, .table-primary thead th, @@ -1896,25 +1896,25 @@ pre code { border-color: #7abaff; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-hover .table-primary:hover { background-color: #9fcdff; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover .table-primary:hover > td, .table-hover .table-primary:hover > th { background-color: #9fcdff; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-secondary, .table-secondary > th, .table-secondary > td { background-color: #d6d8db; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-secondary th, .table-secondary td, .table-secondary thead th, @@ -1922,25 +1922,25 @@ pre code { border-color: #b3b7bb; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-hover .table-secondary:hover { background-color: #c8cbcf; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover .table-secondary:hover > td, .table-hover .table-secondary:hover > th { background-color: #c8cbcf; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-success, .table-success > th, .table-success > td { background-color: #c3e6cb; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-success th, .table-success td, .table-success thead th, @@ -1948,25 +1948,25 @@ pre code { border-color: #8fd19e; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-hover .table-success:hover { background-color: #b1dfbb; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover .table-success:hover > td, .table-hover .table-success:hover > th { background-color: #b1dfbb; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-info, .table-info > th, .table-info > td { background-color: #bee5eb; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-info th, .table-info td, .table-info thead th, @@ -1974,25 +1974,25 @@ pre code { border-color: #86cfda; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-hover .table-info:hover { background-color: #abdde5; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover .table-info:hover > td, .table-hover .table-info:hover > th { background-color: #abdde5; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-warning, .table-warning > th, .table-warning > td { background-color: #ffeeba; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-warning th, .table-warning td, .table-warning thead th, @@ -2000,25 +2000,25 @@ pre code { border-color: #ffdf7e; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-hover .table-warning:hover { background-color: #ffe8a1; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover .table-warning:hover > td, .table-hover .table-warning:hover > th { background-color: #ffe8a1; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-danger, .table-danger > th, .table-danger > td { background-color: #f5c6cb; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-danger th, .table-danger td, .table-danger thead th, @@ -2026,25 +2026,25 @@ pre code { border-color: #ed969e; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-hover .table-danger:hover { background-color: #f1b0b7; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover .table-danger:hover > td, .table-hover .table-danger:hover > th { background-color: #f1b0b7; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-light, .table-light > th, .table-light > td { background-color: #fdfdfe; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-light th, .table-light td, .table-light thead th, @@ -2052,25 +2052,25 @@ pre code { border-color: #fbfcfc; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-hover .table-light:hover { background-color: #ececf6; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover .table-light:hover > td, .table-hover .table-light:hover > th { background-color: #ececf6; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-dark, .table-dark > th, .table-dark > td { background-color: #c6c8ca; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-dark th, .table-dark td, .table-dark thead th, @@ -2078,135 +2078,135 @@ pre code { border-color: #95999c; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-hover .table-dark:hover { background-color: #b9bbbe; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover .table-dark:hover > td, .table-hover .table-dark:hover > th { background-color: #b9bbbe; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-active, .table-active > th, .table-active > td { background-color: rgba(0, 0, 0, 0.075); } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-hover .table-active:hover { background-color: rgba(0, 0, 0, 0.075); } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */ .table-hover .table-active:hover > td, .table-hover .table-active:hover > th { background-color: rgba(0, 0, 0, 0.075); } -/* line 114, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 114, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table .thead-dark th { color: #fff; background-color: #343a40; border-color: #454d55; } -/* line 122, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table .thead-light th { color: #495057; background-color: #e9ecef; border-color: #dee2e6; } -/* line 130, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-dark { color: #fff; background-color: #343a40; } -/* line 134, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-dark th, .table-dark td, .table-dark thead th { border-color: #454d55; } -/* line 140, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-dark.table-bordered { border: 0; } -/* line 145, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 145, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-dark.table-striped tbody tr:nth-of-type(odd) { background-color: rgba(255, 255, 255, 0.05); } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .table-dark.table-hover tbody tr:hover { color: #fff; background-color: rgba(255, 255, 255, 0.075); } @media (max-width: 575.98px) { - /* line 171, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + /* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive-sm { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; } - /* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive-sm > .table-bordered { border: 0; } } @media (max-width: 767.98px) { - /* line 171, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + /* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive-md { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; } - /* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive-md > .table-bordered { border: 0; } } @media (max-width: 991.98px) { - /* line 171, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + /* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive-lg { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; } - /* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive-lg > .table-bordered { border: 0; } } @media (max-width: 1199.98px) { - /* line 171, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + /* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive-xl { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; } - /* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive-xl > .table-bordered { border: 0; } } -/* line 171, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive { display: block; width: 100%; @@ -2214,12 +2214,12 @@ pre code { -webkit-overflow-scrolling: touch; } -/* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tables.scss */ .table-responsive > .table-bordered { border: 0; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-control { display: block; width: 100%; @@ -2238,20 +2238,20 @@ pre code { } @media (prefers-reduced-motion: reduce) { - /* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-control { -webkit-transition: none; transition: none; } } -/* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-control::-ms-expand { background-color: transparent; border: 0; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .form-control:focus { color: #495057; background-color: #fff; @@ -2260,7 +2260,7 @@ pre code { box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } -/* line 37, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-control::-webkit-input-placeholder { color: #6c757d; opacity: 1; @@ -2282,26 +2282,26 @@ pre code { opacity: 1; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-control:disabled, .form-control[readonly] { background-color: #e9ecef; opacity: 1; } -/* line 57, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 57, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ select.form-control:focus::-ms-value { color: #495057; background-color: #fff; } -/* line 69, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-control-file, .form-control-range { display: block; width: 100%; } -/* line 82, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .col-form-label { padding-top: calc(0.375rem + 1px); padding-bottom: calc(0.375rem + 1px); @@ -2310,7 +2310,7 @@ select.form-control:focus::-ms-value { line-height: 1.5; } -/* line 90, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .col-form-label-lg { padding-top: calc(0.5rem + 1px); padding-bottom: calc(0.5rem + 1px); @@ -2318,7 +2318,7 @@ select.form-control:focus::-ms-value { line-height: 1.5; } -/* line 97, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 97, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .col-form-label-sm { padding-top: calc(0.25rem + 1px); padding-bottom: calc(0.25rem + 1px); @@ -2326,7 +2326,7 @@ select.form-control:focus::-ms-value { line-height: 1.5; } -/* line 110, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 110, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-control-plaintext { display: block; width: 100%; @@ -2340,13 +2340,13 @@ select.form-control:focus::-ms-value { border-width: 1px 0; } -/* line 122, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { padding-right: 0; padding-left: 0; } -/* line 137, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 137, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-control-sm { height: calc(1.5em + 0.5rem + 2px); padding: 0.25rem 0.5rem; @@ -2355,7 +2355,7 @@ select.form-control:focus::-ms-value { border-radius: 0.2rem; } -/* line 145, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 145, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-control-lg { height: calc(1.5em + 1rem + 2px); padding: 0.5rem 1rem; @@ -2364,28 +2364,28 @@ select.form-control:focus::-ms-value { border-radius: 0.3rem; } -/* line 155, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 155, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ select.form-control[size], select.form-control[multiple] { height: auto; } -/* line 161, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 161, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ textarea.form-control { height: auto; } -/* line 170, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 170, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-group { margin-bottom: 1rem; } -/* line 174, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 174, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-text { display: block; margin-top: 0.25rem; } -/* line 184, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 184, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-row { display: -webkit-box; display: flex; @@ -2394,38 +2394,38 @@ textarea.form-control { margin-left: -5px; } -/* line 190, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 190, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-row > .col, .form-row > [class*="col-"] { padding-right: 5px; padding-left: 5px; } -/* line 202, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 202, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-check { position: relative; display: block; padding-left: 1.25rem; } -/* line 208, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 208, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-check-input { position: absolute; margin-top: 0.3rem; margin-left: -1.25rem; } -/* line 213, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 213, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-check-input:disabled ~ .form-check-label { color: #6c757d; } -/* line 218, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 218, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-check-label { margin-bottom: 0; } -/* line 222, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 222, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-check-inline { display: -webkit-inline-box; display: inline-flex; @@ -2435,7 +2435,7 @@ textarea.form-control { margin-right: 0.75rem; } -/* line 229, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 229, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-check-inline .form-check-input { position: static; margin-top: 0; @@ -2443,7 +2443,7 @@ textarea.form-control { margin-left: 0; } -/* line 30, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .valid-feedback { display: none; width: 100%; @@ -2452,7 +2452,7 @@ textarea.form-control { color: #28a745; } -/* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .valid-tooltip { position: absolute; top: 100%; @@ -2468,7 +2468,7 @@ textarea.form-control { border-radius: 0.25rem; } -/* line 54, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-control:valid, .form-control.is-valid { border-color: #28a745; padding-right: calc(1.5em + 0.75rem); @@ -2478,116 +2478,116 @@ textarea.form-control { background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-control:valid:focus, .form-control.is-valid:focus { border-color: #28a745; box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-control:valid ~ .valid-feedback, .was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, .form-control.is-valid ~ .valid-tooltip { display: block; } -/* line 80, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated textarea.form-control:valid, textarea.form-control.is-valid { padding-right: calc(1.5em + 0.75rem); background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } -/* line 90, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-select:valid, .custom-select.is-valid { border-color: #28a745; padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem); background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } -/* line 99, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 99, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { border-color: #28a745; box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } -/* line 104, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 104, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-select:valid ~ .valid-feedback, .was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback, .custom-select.is-valid ~ .valid-tooltip { display: block; } -/* line 115, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 115, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-control-file:valid ~ .valid-feedback, .was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback, .form-control-file.is-valid ~ .valid-tooltip { display: block; } -/* line 125, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { color: #28a745; } -/* line 129, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 129, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-check-input:valid ~ .valid-feedback, .was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, .form-check-input.is-valid ~ .valid-tooltip { display: block; } -/* line 139, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 139, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { color: #28a745; } -/* line 142, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { border-color: #28a745; } -/* line 147, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:valid ~ .valid-feedback, .was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, .custom-control-input.is-valid ~ .valid-tooltip { display: block; } -/* line 153, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { border-color: #34ce57; background-color: #34ce57; } -/* line 160, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } -/* line 164, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 164, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before { border-color: #28a745; } -/* line 175, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 175, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { border-color: #28a745; } -/* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-file-input:valid ~ .valid-feedback, .was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, .custom-file-input.is-valid ~ .valid-tooltip { display: block; } -/* line 185, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 185, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { border-color: #28a745; box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } -/* line 30, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .invalid-feedback { display: none; width: 100%; @@ -2596,7 +2596,7 @@ textarea.form-control { color: #dc3545; } -/* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .invalid-tooltip { position: absolute; top: 100%; @@ -2612,7 +2612,7 @@ textarea.form-control { border-radius: 0.25rem; } -/* line 54, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-control:invalid, .form-control.is-invalid { border-color: #dc3545; padding-right: calc(1.5em + 0.75rem); @@ -2622,116 +2622,116 @@ textarea.form-control { background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { border-color: #dc3545; box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-control:invalid ~ .invalid-feedback, .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, .form-control.is-invalid ~ .invalid-tooltip { display: block; } -/* line 80, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { padding-right: calc(1.5em + 0.75rem); background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } -/* line 90, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-select:invalid, .custom-select.is-invalid { border-color: #dc3545; padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem); background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } -/* line 99, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 99, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { border-color: #dc3545; box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } -/* line 104, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 104, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-select:invalid ~ .invalid-feedback, .was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback, .custom-select.is-invalid ~ .invalid-tooltip { display: block; } -/* line 115, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 115, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-control-file:invalid ~ .invalid-feedback, .was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback, .form-control-file.is-invalid ~ .invalid-tooltip { display: block; } -/* line 125, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { color: #dc3545; } -/* line 129, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 129, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .form-check-input:invalid ~ .invalid-feedback, .was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, .form-check-input.is-invalid ~ .invalid-tooltip { display: block; } -/* line 139, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 139, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { color: #dc3545; } -/* line 142, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { border-color: #dc3545; } -/* line 147, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:invalid ~ .invalid-feedback, .was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, .custom-control-input.is-invalid ~ .invalid-tooltip { display: block; } -/* line 153, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { border-color: #e4606d; background-color: #e4606d; } -/* line 160, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } -/* line 164, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 164, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before { border-color: #dc3545; } -/* line 175, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 175, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { border-color: #dc3545; } -/* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-file-input:invalid ~ .invalid-feedback, .was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, .custom-file-input.is-invalid ~ .invalid-tooltip { display: block; } -/* line 185, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ +/* line 185, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_forms.scss */ .was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { border-color: #dc3545; box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } -/* line 258, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 258, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline { display: -webkit-box; display: flex; @@ -2742,13 +2742,13 @@ textarea.form-control { align-items: center; } -/* line 266, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ +/* line 266, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .form-check { width: 100%; } @media (min-width: 576px) { - /* line 272, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + /* line 272, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline label { display: -webkit-box; display: flex; @@ -2758,7 +2758,7 @@ textarea.form-control { justify-content: center; margin-bottom: 0; } - /* line 280, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + /* line 280, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .form-group { display: -webkit-box; display: flex; @@ -2771,22 +2771,22 @@ textarea.form-control { align-items: center; margin-bottom: 0; } - /* line 289, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + /* line 289, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .form-control { display: inline-block; width: auto; vertical-align: middle; } - /* line 296, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + /* line 296, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .form-control-plaintext { display: inline-block; } - /* line 300, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + /* line 300, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .input-group, .form-inline .custom-select { width: auto; } - /* line 307, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + /* line 307, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .form-check { display: -webkit-box; display: flex; @@ -2797,7 +2797,7 @@ textarea.form-control { width: auto; padding-left: 0; } - /* line 314, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + /* line 314, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .form-check-input { position: relative; flex-shrink: 0; @@ -2805,20 +2805,20 @@ textarea.form-control { margin-right: 0.25rem; margin-left: 0; } - /* line 322, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + /* line 322, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .custom-control { -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; } - /* line 326, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ + /* line 326, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_forms.scss */ .form-inline .custom-control-label { margin-bottom: 0; } } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn { display: inline-block; font-weight: 400; @@ -2840,63 +2840,63 @@ textarea.form-control { } @media (prefers-reduced-motion: reduce) { - /* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn { -webkit-transition: none; transition: none; } } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn:hover { color: #212529; text-decoration: none; } -/* line 25, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn:focus, .btn.focus { outline: 0; box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn.disabled, .btn:disabled { opacity: 0.65; } -/* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ a.btn.disabled, fieldset:disabled a.btn { pointer-events: none; } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-primary { color: #fff; background-color: #007bff; border-color: #007bff; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-primary:hover { color: #fff; background-color: #0069d9; border-color: #0062cc; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-primary:focus, .btn-primary.focus { box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-primary.disabled, .btn-primary:disabled { color: #fff; background-color: #007bff; border-color: #007bff; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle { color: #fff; @@ -2904,39 +2904,39 @@ fieldset:disabled a.btn { border-color: #005cbf; } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-secondary { color: #fff; background-color: #6c757d; border-color: #6c757d; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-secondary:hover { color: #fff; background-color: #5a6268; border-color: #545b62; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-secondary:focus, .btn-secondary.focus { box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-secondary.disabled, .btn-secondary:disabled { color: #fff; background-color: #6c757d; border-color: #6c757d; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle { color: #fff; @@ -2944,39 +2944,39 @@ fieldset:disabled a.btn { border-color: #4e555b; } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-success { color: #fff; background-color: #28a745; border-color: #28a745; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-success:hover { color: #fff; background-color: #218838; border-color: #1e7e34; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-success:focus, .btn-success.focus { box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-success.disabled, .btn-success:disabled { color: #fff; background-color: #28a745; border-color: #28a745; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle { color: #fff; @@ -2984,39 +2984,39 @@ fieldset:disabled a.btn { border-color: #1c7430; } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-info { color: #fff; background-color: #17a2b8; border-color: #17a2b8; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-info:hover { color: #fff; background-color: #138496; border-color: #117a8b; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-info:focus, .btn-info.focus { box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-info.disabled, .btn-info:disabled { color: #fff; background-color: #17a2b8; border-color: #17a2b8; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle { color: #fff; @@ -3024,39 +3024,39 @@ fieldset:disabled a.btn { border-color: #10707f; } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-warning { color: #212529; background-color: #ffc107; border-color: #ffc107; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-warning:hover { color: #212529; background-color: #e0a800; border-color: #d39e00; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-warning:focus, .btn-warning.focus { box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-warning.disabled, .btn-warning:disabled { color: #212529; background-color: #ffc107; border-color: #ffc107; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle { color: #212529; @@ -3064,39 +3064,39 @@ fieldset:disabled a.btn { border-color: #c69500; } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-danger { color: #fff; background-color: #dc3545; border-color: #dc3545; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-danger:hover { color: #fff; background-color: #c82333; border-color: #bd2130; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-danger:focus, .btn-danger.focus { box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-danger.disabled, .btn-danger:disabled { color: #fff; background-color: #dc3545; border-color: #dc3545; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle { color: #fff; @@ -3104,39 +3104,39 @@ fieldset:disabled a.btn { border-color: #b21f2d; } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-light { color: #212529; background-color: #f8f9fa; border-color: #f8f9fa; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-light:hover { color: #212529; background-color: #e2e6ea; border-color: #dae0e5; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-light:focus, .btn-light.focus { box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-light.disabled, .btn-light:disabled { color: #212529; background-color: #f8f9fa; border-color: #f8f9fa; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle { color: #212529; @@ -3144,39 +3144,39 @@ fieldset:disabled a.btn { border-color: #d3d9df; } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-dark { color: #fff; background-color: #343a40; border-color: #343a40; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-dark:hover { color: #fff; background-color: #23272b; border-color: #1d2124; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-dark:focus, .btn-dark.focus { box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-dark.disabled, .btn-dark:disabled { color: #fff; background-color: #343a40; border-color: #343a40; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle { color: #fff; @@ -3184,37 +3184,37 @@ fieldset:disabled a.btn { border-color: #171a1d; } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-outline-primary { color: #007bff; border-color: #007bff; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-outline-primary:hover { color: #fff; background-color: #007bff; border-color: #007bff; } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-primary:focus, .btn-outline-primary.focus { box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-primary.disabled, .btn-outline-primary:disabled { color: #007bff; background-color: transparent; } -/* line 82, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle { color: #fff; @@ -3222,37 +3222,37 @@ fieldset:disabled a.btn { border-color: #007bff; } -/* line 89, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-outline-secondary { color: #6c757d; border-color: #6c757d; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-outline-secondary:hover { color: #fff; background-color: #6c757d; border-color: #6c757d; } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-secondary:focus, .btn-outline-secondary.focus { box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-secondary.disabled, .btn-outline-secondary:disabled { color: #6c757d; background-color: transparent; } -/* line 82, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle { color: #fff; @@ -3260,37 +3260,37 @@ fieldset:disabled a.btn { border-color: #6c757d; } -/* line 89, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-outline-success { color: #28a745; border-color: #28a745; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-outline-success:hover { color: #fff; background-color: #28a745; border-color: #28a745; } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-success:focus, .btn-outline-success.focus { box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-success.disabled, .btn-outline-success:disabled { color: #28a745; background-color: transparent; } -/* line 82, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle { color: #fff; @@ -3298,37 +3298,37 @@ fieldset:disabled a.btn { border-color: #28a745; } -/* line 89, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-outline-info { color: #17a2b8; border-color: #17a2b8; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-outline-info:hover { color: #fff; background-color: #17a2b8; border-color: #17a2b8; } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-info:focus, .btn-outline-info.focus { box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-info.disabled, .btn-outline-info:disabled { color: #17a2b8; background-color: transparent; } -/* line 82, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle { color: #fff; @@ -3336,37 +3336,37 @@ fieldset:disabled a.btn { border-color: #17a2b8; } -/* line 89, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-outline-warning { color: #ffc107; border-color: #ffc107; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-outline-warning:hover { color: #212529; background-color: #ffc107; border-color: #ffc107; } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-warning:focus, .btn-outline-warning.focus { box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-warning.disabled, .btn-outline-warning:disabled { color: #ffc107; background-color: transparent; } -/* line 82, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle { color: #212529; @@ -3374,37 +3374,37 @@ fieldset:disabled a.btn { border-color: #ffc107; } -/* line 89, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-outline-danger { color: #dc3545; border-color: #dc3545; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-outline-danger:hover { color: #fff; background-color: #dc3545; border-color: #dc3545; } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-danger:focus, .btn-outline-danger.focus { box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-danger.disabled, .btn-outline-danger:disabled { color: #dc3545; background-color: transparent; } -/* line 82, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle { color: #fff; @@ -3412,37 +3412,37 @@ fieldset:disabled a.btn { border-color: #dc3545; } -/* line 89, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-outline-light { color: #f8f9fa; border-color: #f8f9fa; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-outline-light:hover { color: #212529; background-color: #f8f9fa; border-color: #f8f9fa; } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-light:focus, .btn-outline-light.focus { box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-light.disabled, .btn-outline-light:disabled { color: #f8f9fa; background-color: transparent; } -/* line 82, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle { color: #212529; @@ -3450,37 +3450,37 @@ fieldset:disabled a.btn { border-color: #f8f9fa; } -/* line 89, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-outline-dark { color: #343a40; border-color: #343a40; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-outline-dark:hover { color: #fff; background-color: #343a40; border-color: #343a40; } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-dark:focus, .btn-outline-dark.focus { box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-dark.disabled, .btn-outline-dark:disabled { color: #343a40; background-color: transparent; } -/* line 82, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle { color: #fff; @@ -3488,38 +3488,38 @@ fieldset:disabled a.btn { border-color: #343a40; } -/* line 89, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */ .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus { box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } -/* line 77, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 77, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-link { font-weight: 400; color: #007bff; text-decoration: none; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-link:hover { color: #0056b3; text-decoration: underline; } -/* line 87, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-link:focus, .btn-link.focus { text-decoration: underline; box-shadow: none; } -/* line 93, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 93, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-link:disabled, .btn-link.disabled { color: #6c757d; pointer-events: none; } -/* line 107, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 107, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-lg, .btn-group-lg > .btn { padding: 0.5rem 1rem; font-size: 1.25rem; @@ -3527,7 +3527,7 @@ fieldset:disabled a.btn { border-radius: 0.3rem; } -/* line 111, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 111, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-sm, .btn-group-sm > .btn { padding: 0.25rem 0.5rem; font-size: 0.875rem; @@ -3535,49 +3535,49 @@ fieldset:disabled a.btn { border-radius: 0.2rem; } -/* line 120, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 120, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-block { display: block; width: 100%; } -/* line 125, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ .btn-block + .btn-block { margin-top: 0.5rem; } -/* line 134, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ +/* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_buttons.scss */ input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { width: 100%; } -/* line 1, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ .fade { -webkit-transition: opacity 0.15s linear; transition: opacity 0.15s linear; } @media (prefers-reduced-motion: reduce) { - /* line 1, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ + /* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ .fade { -webkit-transition: none; transition: none; } } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ .fade:not(.show) { opacity: 0; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ .collapse:not(.show) { display: none; } -/* line 15, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ .collapsing { position: relative; height: 0; @@ -3587,14 +3587,14 @@ input[type="button"].btn-block { } @media (prefers-reduced-motion: reduce) { - /* line 15, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ + /* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_transitions.scss */ .collapsing { -webkit-transition: none; transition: none; } } -/* line 2, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropup, .dropright, .dropdown, @@ -3602,12 +3602,12 @@ input[type="button"].btn-block { position: relative; } -/* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-toggle { white-space: nowrap; } -/* line 30, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ .dropdown-toggle::after { display: inline-block; margin-left: 0.255em; @@ -3619,12 +3619,12 @@ input[type="button"].btn-block { border-left: 0.3em solid transparent; } -/* line 58, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ .dropdown-toggle:empty::after { margin-left: 0; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu { position: absolute; top: 100%; @@ -3645,25 +3645,25 @@ input[type="button"].btn-block { border-radius: 0.25rem; } -/* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu-left { right: auto; left: 0; } -/* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu-right { right: 0; left: auto; } @media (min-width: 576px) { - /* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu-sm-left { right: auto; left: 0; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu-sm-right { right: 0; left: auto; @@ -3671,12 +3671,12 @@ input[type="button"].btn-block { } @media (min-width: 768px) { - /* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu-md-left { right: auto; left: 0; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu-md-right { right: 0; left: auto; @@ -3684,12 +3684,12 @@ input[type="button"].btn-block { } @media (min-width: 992px) { - /* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu-lg-left { right: auto; left: 0; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu-lg-right { right: 0; left: auto; @@ -3697,19 +3697,19 @@ input[type="button"].btn-block { } @media (min-width: 1200px) { - /* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu-xl-left { right: auto; left: 0; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu-xl-right { right: 0; left: auto; } } -/* line 57, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 57, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropup .dropdown-menu { top: auto; bottom: 100%; @@ -3717,7 +3717,7 @@ input[type="button"].btn-block { margin-bottom: 0.125rem; } -/* line 30, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ .dropup .dropdown-toggle::after { display: inline-block; margin-left: 0.255em; @@ -3729,12 +3729,12 @@ input[type="button"].btn-block { border-left: 0.3em solid transparent; } -/* line 58, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ .dropup .dropdown-toggle:empty::after { margin-left: 0; } -/* line 70, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 70, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropright .dropdown-menu { top: 0; right: auto; @@ -3743,7 +3743,7 @@ input[type="button"].btn-block { margin-left: 0.125rem; } -/* line 30, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ .dropright .dropdown-toggle::after { display: inline-block; margin-left: 0.255em; @@ -3755,17 +3755,17 @@ input[type="button"].btn-block { border-left: 0.3em solid; } -/* line 58, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ .dropright .dropdown-toggle:empty::after { margin-left: 0; } -/* line 80, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropright .dropdown-toggle::after { vertical-align: 0; } -/* line 87, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropleft .dropdown-menu { top: 0; right: 100%; @@ -3774,7 +3774,7 @@ input[type="button"].btn-block { margin-right: 0.125rem; } -/* line 30, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ .dropleft .dropdown-toggle::after { display: inline-block; margin-left: 0.255em; @@ -3782,12 +3782,12 @@ input[type="button"].btn-block { content: ""; } -/* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ .dropleft .dropdown-toggle::after { display: none; } -/* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ .dropleft .dropdown-toggle::before { display: inline-block; margin-right: 0.255em; @@ -3798,23 +3798,23 @@ input[type="button"].btn-block { border-bottom: 0.3em solid transparent; } -/* line 58, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_caret.scss */ .dropleft .dropdown-toggle:empty::after { margin-left: 0; } -/* line 97, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 97, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropleft .dropdown-toggle::before { vertical-align: 0; } -/* line 106, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 106, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] { right: auto; bottom: auto; } -/* line 116, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 116, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-divider { height: 0; margin: 0.5rem 0; @@ -3822,7 +3822,7 @@ input[type="button"].btn-block { border-top: 1px solid #e9ecef; } -/* line 123, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 123, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-item { display: block; width: 100%; @@ -3836,33 +3836,33 @@ input[type="button"].btn-block { border: 0; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .dropdown-item:hover, .dropdown-item:focus { color: #16181b; text-decoration: none; background-color: #f8f9fa; } -/* line 153, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-item.active, .dropdown-item:active { color: #fff; text-decoration: none; background-color: #007bff; } -/* line 160, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-item.disabled, .dropdown-item:disabled { color: #6c757d; pointer-events: none; background-color: transparent; } -/* line 172, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-menu.show { display: block; } -/* line 177, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-header { display: block; padding: 0.5rem 1.5rem; @@ -3872,14 +3872,14 @@ input[type="button"].btn-block { white-space: nowrap; } -/* line 187, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ +/* line 187, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_dropdown.scss */ .dropdown-item-text { display: block; padding: 0.25rem 1.5rem; color: #212529; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group, .btn-group-vertical { position: relative; @@ -3888,7 +3888,7 @@ input[type="button"].btn-block { vertical-align: middle; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group > .btn, .btn-group-vertical > .btn { position: relative; @@ -3896,13 +3896,13 @@ input[type="button"].btn-block { flex: 1 1 auto; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .btn-group > .btn:hover, .btn-group-vertical > .btn:hover { z-index: 1; } -/* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:active, @@ -3910,7 +3910,7 @@ input[type="button"].btn-block { z-index: 1; } -/* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-toolbar { display: -webkit-box; display: flex; @@ -3919,62 +3919,62 @@ input[type="button"].btn-block { justify-content: flex-start; } -/* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-toolbar .input-group { width: auto; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group > .btn:not(:first-child), .btn-group > .btn-group:not(:first-child) { margin-left: -1px; } -/* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group > .btn:not(:last-child):not(.dropdown-toggle), .btn-group > .btn-group:not(:last-child) > .btn { border-top-right-radius: 0; border-bottom-right-radius: 0; } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group > .btn:not(:first-child), .btn-group > .btn-group:not(:first-child) > .btn { border-top-left-radius: 0; border-bottom-left-radius: 0; } -/* line 69, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .dropdown-toggle-split { padding-right: 0.5625rem; padding-left: 0.5625rem; } -/* line 73, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after { margin-left: 0; } -/* line 79, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 79, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .dropleft .dropdown-toggle-split::before { margin-right: 0; } -/* line 84, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { padding-right: 0.375rem; padding-left: 0.375rem; } -/* line 89, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { padding-right: 0.75rem; padding-left: 0.75rem; } -/* line 111, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 111, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group-vertical { -webkit-box-orient: vertical; -webkit-box-direction: normal; @@ -3985,39 +3985,39 @@ input[type="button"].btn-block { justify-content: center; } -/* line 116, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 116, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group-vertical > .btn, .btn-group-vertical > .btn-group { width: 100%; } -/* line 121, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 121, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .btn-group:not(:first-child) { margin-top: -1px; } -/* line 127, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 127, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .btn-group-vertical > .btn-group:not(:last-child) > .btn { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } -/* line 132, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 132, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .btn-group:not(:first-child) > .btn { border-top-left-radius: 0; border-top-right-radius: 0; } -/* line 152, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 152, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group-toggle > .btn, .btn-group-toggle > .btn-group > .btn { margin-bottom: 0; } -/* line 156, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ +/* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_button-group.scss */ .btn-group-toggle > .btn input[type="radio"], .btn-group-toggle > .btn input[type="checkbox"], .btn-group-toggle > .btn-group > .btn input[type="radio"], @@ -4027,7 +4027,7 @@ input[type="button"].btn-block { pointer-events: none; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group { position: relative; display: -webkit-box; @@ -4038,7 +4038,7 @@ input[type="button"].btn-block { width: 100%; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .form-control, .input-group > .form-control-plaintext, .input-group > .custom-select, @@ -4050,7 +4050,7 @@ input[type="button"].btn-block { margin-bottom: 0; } -/* line 25, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .form-control + .form-control, .input-group > .form-control + .custom-select, .input-group > .form-control + .custom-file, @@ -4066,33 +4066,33 @@ input[type="button"].btn-block { margin-left: -1px; } -/* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .form-control:focus, .input-group > .custom-select:focus, .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { z-index: 3; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .custom-file .custom-file-input:focus { z-index: 4; } -/* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .form-control:not(:last-child), .input-group > .custom-select:not(:last-child) { border-top-right-radius: 0; border-bottom-right-radius: 0; } -/* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .form-control:not(:first-child), .input-group > .custom-select:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0; } -/* line 52, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .custom-file { display: -webkit-box; display: flex; @@ -4100,40 +4100,40 @@ input[type="button"].btn-block { align-items: center; } -/* line 56, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after { border-top-right-radius: 0; border-bottom-right-radius: 0; } -/* line 58, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .custom-file:not(:first-child) .custom-file-label { border-top-left-radius: 0; border-bottom-left-radius: 0; } -/* line 69, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-prepend, .input-group-append { display: -webkit-box; display: flex; } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-prepend .btn, .input-group-append .btn { position: relative; z-index: 2; } -/* line 80, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-prepend .btn:focus, .input-group-append .btn:focus { z-index: 3; } -/* line 85, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 85, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-prepend .btn + .btn, .input-group-prepend .btn + .input-group-text, .input-group-prepend .input-group-text + .input-group-text, @@ -4145,17 +4145,17 @@ input[type="button"].btn-block { margin-left: -1px; } -/* line 93, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 93, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-prepend { margin-right: -1px; } -/* line 94, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 94, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-append { margin-left: -1px; } -/* line 102, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 102, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-text { display: -webkit-box; display: flex; @@ -4174,19 +4174,19 @@ input[type="button"].btn-block { border-radius: 0.25rem; } -/* line 118, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 118, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-text input[type="radio"], .input-group-text input[type="checkbox"] { margin-top: 0; } -/* line 130, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-lg > .form-control:not(textarea), .input-group-lg > .custom-select { height: calc(1.5em + 1rem + 2px); } -/* line 135, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 135, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-lg > .form-control, .input-group-lg > .custom-select, .input-group-lg > .input-group-prepend > .input-group-text, @@ -4199,13 +4199,13 @@ input[type="button"].btn-block { border-radius: 0.3rem; } -/* line 147, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-sm > .form-control:not(textarea), .input-group-sm > .custom-select { height: calc(1.5em + 0.5rem + 2px); } -/* line 152, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 152, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-sm > .form-control, .input-group-sm > .custom-select, .input-group-sm > .input-group-prepend > .input-group-text, @@ -4218,13 +4218,13 @@ input[type="button"].btn-block { border-radius: 0.2rem; } -/* line 164, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 164, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group-lg > .custom-select, .input-group-sm > .custom-select { padding-right: 1.75rem; } -/* line 177, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .input-group-text, .input-group > .input-group-append:not(:last-child) > .btn, @@ -4235,7 +4235,7 @@ input[type="button"].btn-block { border-bottom-right-radius: 0; } -/* line 186, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ +/* line 186, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_input-group.scss */ .input-group > .input-group-append > .btn, .input-group > .input-group-append > .input-group-text, .input-group > .input-group-prepend:not(:first-child) > .btn, @@ -4246,7 +4246,7 @@ input[type="button"].btn-block { border-bottom-left-radius: 0; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control { position: relative; display: block; @@ -4254,62 +4254,62 @@ input[type="button"].btn-block { padding-left: 1.5rem; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-inline { display: -webkit-inline-box; display: inline-flex; margin-right: 1rem; } -/* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-input { position: absolute; z-index: -1; opacity: 0; } -/* line 27, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-input:checked ~ .custom-control-label::before { color: #fff; border-color: #007bff; background-color: #007bff; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-input:focus ~ .custom-control-label::before { box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-input:focus:not(:checked) ~ .custom-control-label::before { border-color: #80bdff; } -/* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-input:not(:disabled):active ~ .custom-control-label::before { color: #fff; background-color: #b3d7ff; border-color: #b3d7ff; } -/* line 55, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-input:disabled ~ .custom-control-label { color: #6c757d; } -/* line 58, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-input:disabled ~ .custom-control-label::before { background-color: #e9ecef; } -/* line 69, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-label { position: relative; margin-bottom: 0; vertical-align: top; } -/* line 75, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 75, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-label::before { position: absolute; top: 0.25rem; @@ -4323,7 +4323,7 @@ input[type="button"].btn-block { border: #adb5bd solid 1px; } -/* line 90, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-label::after { position: absolute; top: 0.25rem; @@ -4335,58 +4335,58 @@ input[type="button"].btn-block { background: no-repeat 50% / 50% 50%; } -/* line 108, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 108, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-checkbox .custom-control-label::before { border-radius: 0.25rem; } -/* line 113, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 113, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e"); } -/* line 119, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 119, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { border-color: #007bff; background-color: #007bff; } -/* line 124, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 124, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); } -/* line 130, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { background-color: rgba(0, 123, 255, 0.5); } -/* line 133, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 133, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { background-color: rgba(0, 123, 255, 0.5); } -/* line 144, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 144, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-radio .custom-control-label::before { border-radius: 50%; } -/* line 150, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 150, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-radio .custom-control-input:checked ~ .custom-control-label::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); } -/* line 156, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { background-color: rgba(0, 123, 255, 0.5); } -/* line 167, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-switch { padding-left: 2.25rem; } -/* line 171, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-switch .custom-control-label::before { left: -2.25rem; width: 1.75rem; @@ -4394,7 +4394,7 @@ input[type="button"].btn-block { border-radius: 0.5rem; } -/* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-switch .custom-control-label::after { top: calc(0.25rem + 2px); left: calc(-2.25rem + 2px); @@ -4409,26 +4409,26 @@ input[type="button"].btn-block { } @media (prefers-reduced-motion: reduce) { - /* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-switch .custom-control-label::after { -webkit-transition: none; transition: none; } } -/* line 192, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 192, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-switch .custom-control-input:checked ~ .custom-control-label::after { background-color: #fff; -webkit-transform: translateX(0.75rem); transform: translateX(0.75rem); } -/* line 199, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 199, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { background-color: rgba(0, 123, 255, 0.5); } -/* line 212, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 212, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-select { display: inline-block; width: 100%; @@ -4448,38 +4448,38 @@ input[type="button"].btn-block { appearance: none; } -/* line 230, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 230, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-select:focus { border-color: #80bdff; outline: 0; box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } -/* line 239, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 239, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-select:focus::-ms-value { color: #495057; background-color: #fff; } -/* line 250, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 250, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-select[multiple], .custom-select[size]:not([size="1"]) { height: auto; padding-right: 0.75rem; background-image: none; } -/* line 257, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 257, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-select:disabled { color: #6c757d; background-color: #e9ecef; } -/* line 263, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 263, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-select::-ms-expand { display: none; } -/* line 268, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 268, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-select-sm { height: calc(1.5em + 0.5rem + 2px); padding-top: 0.25rem; @@ -4488,7 +4488,7 @@ input[type="button"].btn-block { font-size: 0.875rem; } -/* line 276, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 276, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-select-lg { height: calc(1.5em + 1rem + 2px); padding-top: 0.5rem; @@ -4497,7 +4497,7 @@ input[type="button"].btn-block { font-size: 1.25rem; } -/* line 289, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 289, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-file { position: relative; display: inline-block; @@ -4506,7 +4506,7 @@ input[type="button"].btn-block { margin-bottom: 0; } -/* line 297, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 297, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-file-input { position: relative; z-index: 2; @@ -4516,28 +4516,28 @@ input[type="button"].btn-block { opacity: 0; } -/* line 305, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 305, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-file-input:focus ~ .custom-file-label { border-color: #80bdff; box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } -/* line 310, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 310, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-file-input:disabled ~ .custom-file-label { background-color: #e9ecef; } -/* line 315, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 315, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-file-input:lang(en) ~ .custom-file-label::after { content: "Browse"; } -/* line 320, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 320, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-file-input ~ .custom-file-label[data-browse]::after { content: attr(data-browse); } -/* line 325, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 325, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-file-label { position: absolute; top: 0; @@ -4554,7 +4554,7 @@ input[type="button"].btn-block { border-radius: 0.25rem; } -/* line 342, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 342, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-file-label::after { position: absolute; top: 0; @@ -4572,7 +4572,7 @@ input[type="button"].btn-block { border-radius: 0 0.25rem 0.25rem 0; } -/* line 366, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 366, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range { width: 100%; height: calc(1rem + 0.4rem); @@ -4583,32 +4583,32 @@ input[type="button"].btn-block { appearance: none; } -/* line 373, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 373, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range:focus { outline: none; } -/* line 378, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 378, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range:focus::-webkit-slider-thumb { box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } -/* line 379, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 379, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range:focus::-moz-range-thumb { box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } -/* line 380, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 380, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range:focus::-ms-thumb { box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } -/* line 383, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 383, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-moz-focus-outer { border: 0; } -/* line 387, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 387, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-webkit-slider-thumb { width: 1rem; height: 1rem; @@ -4623,19 +4623,19 @@ input[type="button"].btn-block { } @media (prefers-reduced-motion: reduce) { - /* line 387, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + /* line 387, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-webkit-slider-thumb { -webkit-transition: none; transition: none; } } -/* line 398, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 398, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-webkit-slider-thumb:active { background-color: #b3d7ff; } -/* line 403, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 403, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-webkit-slider-runnable-track { width: 100%; height: 0.5rem; @@ -4646,7 +4646,7 @@ input[type="button"].btn-block { border-radius: 1rem; } -/* line 414, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 414, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-moz-range-thumb { width: 1rem; height: 1rem; @@ -4660,19 +4660,19 @@ input[type="button"].btn-block { } @media (prefers-reduced-motion: reduce) { - /* line 414, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + /* line 414, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-moz-range-thumb { -webkit-transition: none; transition: none; } } -/* line 424, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 424, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-moz-range-thumb:active { background-color: #b3d7ff; } -/* line 429, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 429, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-moz-range-track { width: 100%; height: 0.5rem; @@ -4683,7 +4683,7 @@ input[type="button"].btn-block { border-radius: 1rem; } -/* line 440, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 440, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-ms-thumb { width: 1rem; height: 1rem; @@ -4699,19 +4699,19 @@ input[type="button"].btn-block { } @media (prefers-reduced-motion: reduce) { - /* line 440, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + /* line 440, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-ms-thumb { -webkit-transition: none; transition: none; } } -/* line 453, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 453, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-ms-thumb:active { background-color: #b3d7ff; } -/* line 458, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 458, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-ms-track { width: 100%; height: 0.5rem; @@ -4722,45 +4722,45 @@ input[type="button"].btn-block { border-width: 0.5rem; } -/* line 469, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 469, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-ms-fill-lower { background-color: #dee2e6; border-radius: 1rem; } -/* line 474, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 474, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range::-ms-fill-upper { margin-right: 15px; background-color: #dee2e6; border-radius: 1rem; } -/* line 481, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 481, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range:disabled::-webkit-slider-thumb { background-color: #adb5bd; } -/* line 485, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 485, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range:disabled::-webkit-slider-runnable-track { cursor: default; } -/* line 489, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 489, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range:disabled::-moz-range-thumb { background-color: #adb5bd; } -/* line 493, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 493, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range:disabled::-moz-range-track { cursor: default; } -/* line 497, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 497, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-range:disabled::-ms-thumb { background-color: #adb5bd; } -/* line 503, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ +/* line 503, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-label::before, .custom-file-label, .custom-select { @@ -4769,7 +4769,7 @@ input[type="button"].btn-block { } @media (prefers-reduced-motion: reduce) { - /* line 503, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ + /* line 503, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_custom-forms.scss */ .custom-control-label::before, .custom-file-label, .custom-select { @@ -4778,7 +4778,7 @@ input[type="button"].btn-block { } } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav { display: -webkit-box; display: flex; @@ -4788,54 +4788,54 @@ input[type="button"].btn-block { list-style: none; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-link { display: block; padding: 0.5rem 1rem; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .nav-link:hover, .nav-link:focus { text-decoration: none; } -/* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-link.disabled { color: #6c757d; pointer-events: none; cursor: default; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-tabs { border-bottom: 1px solid #dee2e6; } -/* line 37, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-tabs .nav-item { margin-bottom: -1px; } -/* line 41, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-tabs .nav-link { border: 1px solid transparent; border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { border-color: #e9ecef #e9ecef #dee2e6; } -/* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-tabs .nav-link.disabled { color: #6c757d; background-color: transparent; border-color: transparent; } -/* line 56, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link { color: #495057; @@ -4843,33 +4843,33 @@ input[type="button"].btn-block { border-color: #dee2e6 #dee2e6 #fff; } -/* line 63, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-tabs .dropdown-menu { margin-top: -1px; border-top-left-radius: 0; border-top-right-radius: 0; } -/* line 77, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 77, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-pills .nav-link { border-radius: 0.25rem; } -/* line 81, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 81, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-pills .nav-link.active, .nav-pills .show > .nav-link { color: #fff; background-color: #007bff; } -/* line 94, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 94, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-fill .nav-item { -webkit-box-flex: 1; flex: 1 1 auto; text-align: center; } -/* line 101, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 101, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .nav-justified .nav-item { flex-basis: 0; -webkit-box-flex: 1; @@ -4877,17 +4877,17 @@ input[type="button"].btn-block { text-align: center; } -/* line 114, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 114, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .tab-content > .tab-pane { display: none; } -/* line 117, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_nav.scss */ .tab-content > .active { display: block; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar { position: relative; display: -webkit-box; @@ -4900,7 +4900,7 @@ input[type="button"].btn-block { padding: 0.5rem 1rem; } -/* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar > .container, .navbar > .container-fluid { display: -webkit-box; @@ -4912,7 +4912,7 @@ input[type="button"].btn-block { justify-content: space-between; } -/* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-brand { display: inline-block; padding-top: 0.3125rem; @@ -4923,12 +4923,12 @@ input[type="button"].btn-block { white-space: nowrap; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .navbar-brand:hover, .navbar-brand:focus { text-decoration: none; } -/* line 61, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-nav { display: -webkit-box; display: flex; @@ -4940,26 +4940,26 @@ input[type="button"].btn-block { list-style: none; } -/* line 68, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-nav .nav-link { padding-right: 0; padding-left: 0; } -/* line 73, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-nav .dropdown-menu { position: static; float: none; } -/* line 84, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-text { display: inline-block; padding-top: 0.5rem; padding-bottom: 0.5rem; } -/* line 99, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 99, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-collapse { flex-basis: 100%; -webkit-box-flex: 1; @@ -4968,7 +4968,7 @@ input[type="button"].btn-block { align-items: center; } -/* line 108, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 108, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-toggler { padding: 0.25rem 0.75rem; font-size: 1.25rem; @@ -4978,12 +4978,12 @@ input[type="button"].btn-block { border-radius: 0.25rem; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .navbar-toggler:hover, .navbar-toggler:focus { text-decoration: none; } -/* line 123, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 123, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-toggler-icon { display: inline-block; width: 1.5em; @@ -4995,7 +4995,7 @@ input[type="button"].btn-block { } @media (max-width: 575.98px) { - /* line 142, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid { padding-right: 0; @@ -5004,7 +5004,7 @@ input[type="button"].btn-block { } @media (min-width: 576px) { - /* line 140, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-sm { -webkit-box-orient: horizontal; -webkit-box-direction: normal; @@ -5012,40 +5012,40 @@ input[type="button"].btn-block { -webkit-box-pack: start; justify-content: flex-start; } - /* line 153, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-sm .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } - /* line 156, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-sm .navbar-nav .dropdown-menu { position: absolute; } - /* line 160, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-sm .navbar-nav .nav-link { padding-right: 0.5rem; padding-left: 0.5rem; } - /* line 167, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid { flex-wrap: nowrap; } - /* line 172, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-sm .navbar-collapse { display: -webkit-box !important; display: flex !important; flex-basis: auto; } - /* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-sm .navbar-toggler { display: none; } } @media (max-width: 767.98px) { - /* line 142, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-md > .container, .navbar-expand-md > .container-fluid { padding-right: 0; @@ -5054,7 +5054,7 @@ input[type="button"].btn-block { } @media (min-width: 768px) { - /* line 140, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-md { -webkit-box-orient: horizontal; -webkit-box-direction: normal; @@ -5062,40 +5062,40 @@ input[type="button"].btn-block { -webkit-box-pack: start; justify-content: flex-start; } - /* line 153, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-md .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } - /* line 156, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-md .navbar-nav .dropdown-menu { position: absolute; } - /* line 160, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-md .navbar-nav .nav-link { padding-right: 0.5rem; padding-left: 0.5rem; } - /* line 167, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-md > .container, .navbar-expand-md > .container-fluid { flex-wrap: nowrap; } - /* line 172, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-md .navbar-collapse { display: -webkit-box !important; display: flex !important; flex-basis: auto; } - /* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-md .navbar-toggler { display: none; } } @media (max-width: 991.98px) { - /* line 142, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid { padding-right: 0; @@ -5104,7 +5104,7 @@ input[type="button"].btn-block { } @media (min-width: 992px) { - /* line 140, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-lg { -webkit-box-orient: horizontal; -webkit-box-direction: normal; @@ -5112,40 +5112,40 @@ input[type="button"].btn-block { -webkit-box-pack: start; justify-content: flex-start; } - /* line 153, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-lg .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } - /* line 156, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-lg .navbar-nav .dropdown-menu { position: absolute; } - /* line 160, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-lg .navbar-nav .nav-link { padding-right: 0.5rem; padding-left: 0.5rem; } - /* line 167, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid { flex-wrap: nowrap; } - /* line 172, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-lg .navbar-collapse { display: -webkit-box !important; display: flex !important; flex-basis: auto; } - /* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-lg .navbar-toggler { display: none; } } @media (max-width: 1199.98px) { - /* line 142, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid { padding-right: 0; @@ -5154,7 +5154,7 @@ input[type="button"].btn-block { } @media (min-width: 1200px) { - /* line 140, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-xl { -webkit-box-orient: horizontal; -webkit-box-direction: normal; @@ -5162,39 +5162,39 @@ input[type="button"].btn-block { -webkit-box-pack: start; justify-content: flex-start; } - /* line 153, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-xl .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } - /* line 156, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-xl .navbar-nav .dropdown-menu { position: absolute; } - /* line 160, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-xl .navbar-nav .nav-link { padding-right: 0.5rem; padding-left: 0.5rem; } - /* line 167, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid { flex-wrap: nowrap; } - /* line 172, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-xl .navbar-collapse { display: -webkit-box !important; display: flex !important; flex-basis: auto; } - /* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ + /* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand-xl .navbar-toggler { display: none; } } -/* line 140, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand { -webkit-box-orient: horizontal; -webkit-box-direction: normal; @@ -5203,75 +5203,75 @@ input[type="button"].btn-block { justify-content: flex-start; } -/* line 142, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand > .container, .navbar-expand > .container-fluid { padding-right: 0; padding-left: 0; } -/* line 153, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } -/* line 156, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand .navbar-nav .dropdown-menu { position: absolute; } -/* line 160, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand .navbar-nav .nav-link { padding-right: 0.5rem; padding-left: 0.5rem; } -/* line 167, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand > .container, .navbar-expand > .container-fluid { flex-wrap: nowrap; } -/* line 172, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand .navbar-collapse { display: -webkit-box !important; display: flex !important; flex-basis: auto; } -/* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-expand .navbar-toggler { display: none; } -/* line 194, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 194, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-light .navbar-brand { color: rgba(0, 0, 0, 0.9); } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { color: rgba(0, 0, 0, 0.9); } -/* line 203, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 203, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-light .navbar-nav .nav-link { color: rgba(0, 0, 0, 0.5); } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { color: rgba(0, 0, 0, 0.7); } -/* line 210, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 210, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-light .navbar-nav .nav-link.disabled { color: rgba(0, 0, 0, 0.3); } -/* line 215, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 215, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.show, @@ -5279,58 +5279,58 @@ input[type="button"].btn-block { color: rgba(0, 0, 0, 0.9); } -/* line 223, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 223, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-light .navbar-toggler { color: rgba(0, 0, 0, 0.5); border-color: rgba(0, 0, 0, 0.1); } -/* line 228, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 228, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-light .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } -/* line 232, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 232, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-light .navbar-text { color: rgba(0, 0, 0, 0.5); } -/* line 234, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 234, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-light .navbar-text a { color: rgba(0, 0, 0, 0.9); } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { color: rgba(0, 0, 0, 0.9); } -/* line 246, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 246, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-dark .navbar-brand { color: #fff; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { color: #fff; } -/* line 255, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 255, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-dark .navbar-nav .nav-link { color: rgba(255, 255, 255, 0.5); } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { color: rgba(255, 255, 255, 0.75); } -/* line 262, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 262, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-dark .navbar-nav .nav-link.disabled { color: rgba(255, 255, 255, 0.25); } -/* line 267, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 267, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-dark .navbar-nav .show > .nav-link, .navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.show, @@ -5338,33 +5338,33 @@ input[type="button"].btn-block { color: #fff; } -/* line 275, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 275, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-dark .navbar-toggler { color: rgba(255, 255, 255, 0.5); border-color: rgba(255, 255, 255, 0.1); } -/* line 280, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 280, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-dark .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } -/* line 284, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 284, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-dark .navbar-text { color: rgba(255, 255, 255, 0.5); } -/* line 286, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ +/* line 286, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_navbar.scss */ .navbar-dark .navbar-text a { color: #fff; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { color: #fff; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card { position: relative; display: -webkit-box; @@ -5380,58 +5380,58 @@ input[type="button"].btn-block { border-radius: 0.25rem; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card > hr { margin-right: 0; margin-left: 0; } -/* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card > .list-group:first-child .list-group-item:first-child { border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem; } -/* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card > .list-group:last-child .list-group-item:last-child { border-bottom-right-radius: 0.25rem; border-bottom-left-radius: 0.25rem; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-body { -webkit-box-flex: 1; flex: 1 1 auto; padding: 1.25rem; } -/* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-title { margin-bottom: 0.75rem; } -/* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-subtitle { margin-top: -0.375rem; margin-bottom: 0; } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-text:last-child { margin-bottom: 0; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .card-link:hover { text-decoration: none; } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-link + .card-link { margin-left: 1.25rem; } -/* line 69, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-header { padding: 0.75rem 1.25rem; margin-bottom: 0; @@ -5439,29 +5439,29 @@ input[type="button"].btn-block { border-bottom: 1px solid rgba(0, 0, 0, 0.125); } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-header:first-child { border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; } -/* line 81, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 81, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-header + .list-group .list-group-item:first-child { border-top: 0; } -/* line 87, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-footer { padding: 0.75rem 1.25rem; background-color: rgba(0, 0, 0, 0.03); border-top: 1px solid rgba(0, 0, 0, 0.125); } -/* line 92, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 92, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-footer:last-child { border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); } -/* line 102, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 102, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-header-tabs { margin-right: -0.625rem; margin-bottom: -0.75rem; @@ -5469,13 +5469,13 @@ input[type="button"].btn-block { border-bottom: 0; } -/* line 109, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 109, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-header-pills { margin-right: -0.625rem; margin-left: -0.625rem; } -/* line 115, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 115, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-img-overlay { position: absolute; top: 0; @@ -5485,27 +5485,27 @@ input[type="button"].btn-block { padding: 1.25rem; } -/* line 124, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 124, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-img { width: 100%; border-radius: calc(0.25rem - 1px); } -/* line 130, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-img-top { width: 100%; border-top-left-radius: calc(0.25rem - 1px); border-top-right-radius: calc(0.25rem - 1px); } -/* line 135, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 135, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-img-bottom { width: 100%; border-bottom-right-radius: calc(0.25rem - 1px); border-bottom-left-radius: calc(0.25rem - 1px); } -/* line 143, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-deck { display: -webkit-box; display: flex; @@ -5514,13 +5514,13 @@ input[type="button"].btn-block { flex-direction: column; } -/* line 147, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-deck .card { margin-bottom: 15px; } @media (min-width: 576px) { - /* line 143, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-deck { -webkit-box-orient: horizontal; -webkit-box-direction: normal; @@ -5528,7 +5528,7 @@ input[type="button"].btn-block { margin-right: -15px; margin-left: -15px; } - /* line 156, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-deck .card { display: -webkit-box; display: flex; @@ -5543,7 +5543,7 @@ input[type="button"].btn-block { } } -/* line 173, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 173, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group { display: -webkit-box; display: flex; @@ -5552,68 +5552,68 @@ input[type="button"].btn-block { flex-direction: column; } -/* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group > .card { margin-bottom: 15px; } @media (min-width: 576px) { - /* line 173, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 173, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-flow: row wrap; } - /* line 187, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 187, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group > .card { -webkit-box-flex: 1; flex: 1 0 0%; margin-bottom: 0; } - /* line 192, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 192, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group > .card + .card { margin-left: 0; border-left: 0; } - /* line 199, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 199, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group > .card:not(:last-child) { border-top-right-radius: 0; border-bottom-right-radius: 0; } - /* line 202, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 202, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group > .card:not(:last-child) .card-img-top, .card-group > .card:not(:last-child) .card-header { border-top-right-radius: 0; } - /* line 207, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 207, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group > .card:not(:last-child) .card-img-bottom, .card-group > .card:not(:last-child) .card-footer { border-bottom-right-radius: 0; } - /* line 214, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 214, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group > .card:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0; } - /* line 217, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 217, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group > .card:not(:first-child) .card-img-top, .card-group > .card:not(:first-child) .card-header { border-top-left-radius: 0; } - /* line 222, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 222, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-group > .card:not(:first-child) .card-img-bottom, .card-group > .card:not(:first-child) .card-footer { border-bottom-left-radius: 0; } } -/* line 239, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 239, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-columns .card { margin-bottom: 0.75rem; } @media (min-width: 576px) { - /* line 238, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 238, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-columns { -webkit-column-count: 3; -moz-column-count: 3; @@ -5624,48 +5624,48 @@ input[type="button"].btn-block { orphans: 1; widows: 1; } - /* line 249, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ + /* line 249, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .card-columns .card { display: inline-block; width: 100%; } } -/* line 262, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 262, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .accordion > .card { overflow: hidden; } -/* line 266, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 266, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .accordion > .card:not(:first-of-type) .card-header:first-child { border-radius: 0; } -/* line 270, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 270, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .accordion > .card:not(:first-of-type):not(:last-of-type) { border-bottom: 0; border-radius: 0; } -/* line 276, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 276, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .accordion > .card:first-of-type { border-bottom: 0; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } -/* line 281, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 281, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .accordion > .card:last-of-type { border-top-left-radius: 0; border-top-right-radius: 0; } -/* line 285, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ +/* line 285, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_card.scss */ .accordion > .card .card-header { margin-bottom: -1px; } -/* line 1, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ .breadcrumb { display: -webkit-box; display: flex; @@ -5677,12 +5677,12 @@ input[type="button"].btn-block { border-radius: 0.25rem; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ .breadcrumb-item + .breadcrumb-item { padding-left: 0.5rem; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ .breadcrumb-item + .breadcrumb-item::before { display: inline-block; padding-right: 0.5rem; @@ -5690,22 +5690,22 @@ input[type="button"].btn-block { content: "/"; } -/* line 30, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ .breadcrumb-item + .breadcrumb-item:hover::before { text-decoration: underline; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ .breadcrumb-item + .breadcrumb-item:hover::before { text-decoration: none; } -/* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_breadcrumb.scss */ .breadcrumb-item.active { color: #6c757d; } -/* line 1, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ .pagination { display: -webkit-box; display: flex; @@ -5714,7 +5714,7 @@ input[type="button"].btn-block { border-radius: 0.25rem; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ .page-link { position: relative; display: block; @@ -5726,7 +5726,7 @@ input[type="button"].btn-block { border: 1px solid #dee2e6; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ .page-link:hover { z-index: 2; color: #0056b3; @@ -5735,27 +5735,27 @@ input[type="button"].btn-block { border-color: #dee2e6; } -/* line 25, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ .page-link:focus { z-index: 2; outline: 0; box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ .page-item:first-child .page-link { margin-left: 0; border-top-left-radius: 0.25rem; border-bottom-left-radius: 0.25rem; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ .page-item:last-child .page-link { border-top-right-radius: 0.25rem; border-bottom-right-radius: 0.25rem; } -/* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ .page-item.active .page-link { z-index: 1; color: #fff; @@ -5763,7 +5763,7 @@ input[type="button"].btn-block { border-color: #007bff; } -/* line 52, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_pagination.scss */ .page-item.disabled .page-link { color: #6c757d; pointer-events: none; @@ -5772,45 +5772,45 @@ input[type="button"].btn-block { border-color: #dee2e6; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ .pagination-lg .page-link { padding: 0.75rem 1.5rem; font-size: 1.25rem; line-height: 1.5; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ .pagination-lg .page-item:first-child .page-link { border-top-left-radius: 0.3rem; border-bottom-left-radius: 0.3rem; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ .pagination-lg .page-item:last-child .page-link { border-top-right-radius: 0.3rem; border-bottom-right-radius: 0.3rem; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ .pagination-sm .page-link { padding: 0.25rem 0.5rem; font-size: 0.875rem; line-height: 1.5; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ .pagination-sm .page-item:first-child .page-link { border-top-left-radius: 0.2rem; border-bottom-left-radius: 0.2rem; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */ .pagination-sm .page-item:last-child .page-link { border-top-right-radius: 0.2rem; border-bottom-right-radius: 0.2rem; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge { display: inline-block; padding: 0.25em 0.4em; @@ -5826,181 +5826,181 @@ input[type="button"].btn-block { } @media (prefers-reduced-motion: reduce) { - /* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ + /* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge { -webkit-transition: none; transition: none; } } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.badge:hover, a.badge:focus { text-decoration: none; } -/* line 25, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge:empty { display: none; } -/* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .btn .badge { position: relative; top: -1px; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge-pill { padding-right: 0.6em; padding-left: 0.6em; border-radius: 10rem; } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge-primary { color: #fff; background-color: #007bff; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.badge-primary:hover, a.badge-primary:focus { color: #fff; background-color: #0062cc; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ a.badge-primary:focus, a.badge-primary.focus { outline: 0; box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge-secondary { color: #fff; background-color: #6c757d; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.badge-secondary:hover, a.badge-secondary:focus { color: #fff; background-color: #545b62; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ a.badge-secondary:focus, a.badge-secondary.focus { outline: 0; box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge-success { color: #fff; background-color: #28a745; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.badge-success:hover, a.badge-success:focus { color: #fff; background-color: #1e7e34; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ a.badge-success:focus, a.badge-success.focus { outline: 0; box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge-info { color: #fff; background-color: #17a2b8; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.badge-info:hover, a.badge-info:focus { color: #fff; background-color: #117a8b; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ a.badge-info:focus, a.badge-info.focus { outline: 0; box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge-warning { color: #212529; background-color: #ffc107; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.badge-warning:hover, a.badge-warning:focus { color: #212529; background-color: #d39e00; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ a.badge-warning:focus, a.badge-warning.focus { outline: 0; box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge-danger { color: #fff; background-color: #dc3545; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.badge-danger:hover, a.badge-danger:focus { color: #fff; background-color: #bd2130; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ a.badge-danger:focus, a.badge-danger.focus { outline: 0; box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge-light { color: #212529; background-color: #f8f9fa; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.badge-light:hover, a.badge-light:focus { color: #212529; background-color: #dae0e5; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ a.badge-light:focus, a.badge-light.focus { outline: 0; box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_badge.scss */ .badge-dark { color: #fff; background-color: #343a40; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.badge-dark:hover, a.badge-dark:focus { color: #fff; background-color: #1d2124; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_badge.scss */ a.badge-dark:focus, a.badge-dark.focus { outline: 0; box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } -/* line 1, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_jumbotron.scss */ +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_jumbotron.scss */ .jumbotron { padding: 2rem 1rem; margin-bottom: 2rem; @@ -6009,20 +6009,20 @@ a.badge-dark:focus, a.badge-dark.focus { } @media (min-width: 576px) { - /* line 1, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_jumbotron.scss */ + /* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_jumbotron.scss */ .jumbotron { padding: 4rem 2rem; } } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_jumbotron.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_jumbotron.scss */ .jumbotron-fluid { padding-right: 0; padding-left: 0; border-radius: 0; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert { position: relative; padding: 0.75rem 1.25rem; @@ -6031,22 +6031,22 @@ a.badge-dark:focus, a.badge-dark.focus { border-radius: 0.25rem; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-heading { color: inherit; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-link { font-weight: 700; } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-dismissible { padding-right: 4rem; } -/* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-dismissible .close { position: absolute; top: 0; @@ -6055,138 +6055,138 @@ a.badge-dark:focus, a.badge-dark.focus { color: inherit; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-primary { color: #004085; background-color: #cce5ff; border-color: #b8daff; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-primary hr { border-top-color: #9fcdff; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-primary .alert-link { color: #002752; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-secondary { color: #383d41; background-color: #e2e3e5; border-color: #d6d8db; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-secondary hr { border-top-color: #c8cbcf; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-secondary .alert-link { color: #202326; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-success { color: #155724; background-color: #d4edda; border-color: #c3e6cb; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-success hr { border-top-color: #b1dfbb; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-success .alert-link { color: #0b2e13; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-info { color: #0c5460; background-color: #d1ecf1; border-color: #bee5eb; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-info hr { border-top-color: #abdde5; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-info .alert-link { color: #062c33; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-warning { color: #856404; background-color: #fff3cd; border-color: #ffeeba; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-warning hr { border-top-color: #ffe8a1; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-warning .alert-link { color: #533f03; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-danger { color: #721c24; background-color: #f8d7da; border-color: #f5c6cb; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-danger hr { border-top-color: #f1b0b7; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-danger .alert-link { color: #491217; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-light { color: #818182; background-color: #fefefe; border-color: #fdfdfe; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-light hr { border-top-color: #ececf6; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-light .alert-link { color: #686868; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_alert.scss */ .alert-dark { color: #1b1e21; background-color: #d6d8d9; border-color: #c6c8ca; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-dark hr { border-top-color: #b9bbbe; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_alert.scss */ .alert-dark .alert-link { color: #040505; } @@ -6209,7 +6209,7 @@ a.badge-dark:focus, a.badge-dark.focus { } } -/* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ .progress { display: -webkit-box; display: flex; @@ -6220,7 +6220,7 @@ a.badge-dark:focus, a.badge-dark.focus { border-radius: 0.25rem; } -/* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ .progress-bar { display: -webkit-box; display: flex; @@ -6238,34 +6238,34 @@ a.badge-dark:focus, a.badge-dark.focus { } @media (prefers-reduced-motion: reduce) { - /* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ .progress-bar { -webkit-transition: none; transition: none; } } -/* line 30, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ .progress-bar-striped { background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-size: 1rem 1rem; } -/* line 36, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ .progress-bar-animated { -webkit-animation: progress-bar-stripes 1s linear infinite; animation: progress-bar-stripes 1s linear infinite; } @media (prefers-reduced-motion: reduce) { - /* line 36, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ + /* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_progress.scss */ .progress-bar-animated { -webkit-animation: none; animation: none; } } -/* line 1, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_media.scss */ +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_media.scss */ .media { display: -webkit-box; display: flex; @@ -6273,13 +6273,13 @@ a.badge-dark:focus, a.badge-dark.focus { align-items: flex-start; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_media.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_media.scss */ .media-body { -webkit-box-flex: 1; flex: 1; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group { display: -webkit-box; display: flex; @@ -6290,14 +6290,14 @@ a.badge-dark:focus, a.badge-dark.focus { margin-bottom: 0; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-item-action { width: 100%; color: #495057; text-align: inherit; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .list-group-item-action:hover, .list-group-item-action:focus { z-index: 1; color: #495057; @@ -6305,13 +6305,13 @@ a.badge-dark:focus, a.badge-dark.focus { background-color: #f8f9fa; } -/* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-item-action:active { color: #212529; background-color: #e9ecef; } -/* line 44, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-item { position: relative; display: block; @@ -6321,27 +6321,27 @@ a.badge-dark:focus, a.badge-dark.focus { border: 1px solid rgba(0, 0, 0, 0.125); } -/* line 54, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-item:first-child { border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem; } -/* line 58, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-item:last-child { margin-bottom: 0; border-bottom-right-radius: 0.25rem; border-bottom-left-radius: 0.25rem; } -/* line 63, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-item.disabled, .list-group-item:disabled { color: #6c757d; pointer-events: none; background-color: #fff; } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-item.active { z-index: 2; color: #fff; @@ -6349,27 +6349,27 @@ a.badge-dark:focus, a.badge-dark.focus { border-color: #007bff; } -/* line 88, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } -/* line 91, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal .list-group-item { margin-right: -1px; margin-bottom: 0; } -/* line 95, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal .list-group-item:first-child { border-top-left-radius: 0.25rem; border-bottom-left-radius: 0.25rem; border-top-right-radius: 0; } -/* line 100, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal .list-group-item:last-child { margin-right: 0; border-top-right-radius: 0.25rem; @@ -6378,24 +6378,24 @@ a.badge-dark:focus, a.badge-dark.focus { } @media (min-width: 576px) { - /* line 88, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-sm { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } - /* line 91, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-sm .list-group-item { margin-right: -1px; margin-bottom: 0; } - /* line 95, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-sm .list-group-item:first-child { border-top-left-radius: 0.25rem; border-bottom-left-radius: 0.25rem; border-top-right-radius: 0; } - /* line 100, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-sm .list-group-item:last-child { margin-right: 0; border-top-right-radius: 0.25rem; @@ -6405,24 +6405,24 @@ a.badge-dark:focus, a.badge-dark.focus { } @media (min-width: 768px) { - /* line 88, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-md { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } - /* line 91, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-md .list-group-item { margin-right: -1px; margin-bottom: 0; } - /* line 95, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-md .list-group-item:first-child { border-top-left-radius: 0.25rem; border-bottom-left-radius: 0.25rem; border-top-right-radius: 0; } - /* line 100, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-md .list-group-item:last-child { margin-right: 0; border-top-right-radius: 0.25rem; @@ -6432,24 +6432,24 @@ a.badge-dark:focus, a.badge-dark.focus { } @media (min-width: 992px) { - /* line 88, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-lg { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } - /* line 91, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-lg .list-group-item { margin-right: -1px; margin-bottom: 0; } - /* line 95, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-lg .list-group-item:first-child { border-top-left-radius: 0.25rem; border-bottom-left-radius: 0.25rem; border-top-right-radius: 0; } - /* line 100, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-lg .list-group-item:last-child { margin-right: 0; border-top-right-radius: 0.25rem; @@ -6459,24 +6459,24 @@ a.badge-dark:focus, a.badge-dark.focus { } @media (min-width: 1200px) { - /* line 88, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-xl { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } - /* line 91, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-xl .list-group-item { margin-right: -1px; margin-bottom: 0; } - /* line 95, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-xl .list-group-item:first-child { border-top-left-radius: 0.25rem; border-bottom-left-radius: 0.25rem; border-top-right-radius: 0; } - /* line 100, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-horizontal-xl .list-group-item:last-child { margin-right: 0; border-top-right-radius: 0.25rem; @@ -6485,182 +6485,182 @@ a.badge-dark:focus, a.badge-dark.focus { } } -/* line 117, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-flush .list-group-item { border-right: 0; border-left: 0; border-radius: 0; } -/* line 122, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-flush .list-group-item:last-child { margin-bottom: -1px; } -/* line 128, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 128, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-flush:first-child .list-group-item:first-child { border-top: 0; } -/* line 134, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ +/* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_list-group.scss */ .list-group-flush:last-child .list-group-item:last-child { margin-bottom: 0; border-bottom: 0; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-primary { color: #004085; background-color: #b8daff; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { color: #004085; background-color: #9fcdff; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-primary.list-group-item-action.active { color: #fff; background-color: #004085; border-color: #004085; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-secondary { color: #383d41; background-color: #d6d8db; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { color: #383d41; background-color: #c8cbcf; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-secondary.list-group-item-action.active { color: #fff; background-color: #383d41; border-color: #383d41; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-success { color: #155724; background-color: #c3e6cb; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { color: #155724; background-color: #b1dfbb; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-success.list-group-item-action.active { color: #fff; background-color: #155724; border-color: #155724; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-info { color: #0c5460; background-color: #bee5eb; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { color: #0c5460; background-color: #abdde5; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-info.list-group-item-action.active { color: #fff; background-color: #0c5460; border-color: #0c5460; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-warning { color: #856404; background-color: #ffeeba; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { color: #856404; background-color: #ffe8a1; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-warning.list-group-item-action.active { color: #fff; background-color: #856404; border-color: #856404; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-danger { color: #721c24; background-color: #f5c6cb; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { color: #721c24; background-color: #f1b0b7; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-danger.list-group-item-action.active { color: #fff; background-color: #721c24; border-color: #721c24; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-light { color: #818182; background-color: #fdfdfe; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { color: #818182; background-color: #ececf6; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-light.list-group-item-action.active { color: #fff; background-color: #818182; border-color: #818182; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-dark { color: #1b1e21; background-color: #c6c8ca; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { color: #1b1e21; background-color: #b9bbbe; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */ .list-group-item-dark.list-group-item-action.active { color: #fff; background-color: #1b1e21; border-color: #1b1e21; } -/* line 1, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_close.scss */ +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_close.scss */ .close { float: right; font-size: 1.5rem; @@ -6671,18 +6671,18 @@ a.badge-dark:focus, a.badge-dark.focus { opacity: .5; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .close:hover { color: #000; text-decoration: none; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { opacity: .75; } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_close.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_close.scss */ button.close { padding: 0; background-color: transparent; @@ -6692,12 +6692,12 @@ button.close { appearance: none; } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_close.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_close.scss */ a.close.disabled { pointer-events: none; } -/* line 1, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ .toast { max-width: 350px; overflow: hidden; @@ -6712,28 +6712,28 @@ a.close.disabled { border-radius: 0.25rem; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ .toast:not(:last-child) { margin-bottom: 0.75rem; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ .toast.showing { opacity: 1; } -/* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ .toast.show { display: block; opacity: 1; } -/* line 27, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ .toast.hide { display: none; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ .toast-header { display: -webkit-box; display: flex; @@ -6746,23 +6746,23 @@ a.close.disabled { border-bottom: 1px solid rgba(0, 0, 0, 0.05); } -/* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_toasts.scss */ .toast-body { padding: 0.75rem; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-open { overflow: hidden; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-open .modal { overflow-x: hidden; overflow-y: auto; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal { position: fixed; top: 0; @@ -6775,7 +6775,7 @@ a.close.disabled { outline: 0; } -/* line 36, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog { position: relative; width: auto; @@ -6783,7 +6783,7 @@ a.close.disabled { pointer-events: none; } -/* line 44, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal.fade .modal-dialog { -webkit-transition: -webkit-transform 0.3s ease-out; transition: -webkit-transform 0.3s ease-out; @@ -6794,44 +6794,44 @@ a.close.disabled { } @media (prefers-reduced-motion: reduce) { - /* line 44, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal.fade .modal-dialog { -webkit-transition: none; transition: none; } } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal.show .modal-dialog { -webkit-transform: none; transform: none; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-scrollable { display: -webkit-box; display: flex; max-height: calc(100% - 1rem); } -/* line 57, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 57, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-scrollable .modal-content { max-height: calc(100vh - 1rem); overflow: hidden; } -/* line 62, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-scrollable .modal-header, .modal-dialog-scrollable .modal-footer { flex-shrink: 0; } -/* line 67, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-scrollable .modal-body { overflow-y: auto; } -/* line 72, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-centered { display: -webkit-box; display: flex; @@ -6840,14 +6840,14 @@ a.close.disabled { min-height: calc(100% - 1rem); } -/* line 78, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 78, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-centered::before { display: block; height: calc(100vh - 1rem); content: ""; } -/* line 85, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 85, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-centered.modal-dialog-scrollable { -webkit-box-orient: vertical; -webkit-box-direction: normal; @@ -6857,17 +6857,17 @@ a.close.disabled { height: 100%; } -/* line 90, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-centered.modal-dialog-scrollable .modal-content { max-height: none; } -/* line 94, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 94, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-centered.modal-dialog-scrollable::before { content: none; } -/* line 101, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 101, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-content { position: relative; display: -webkit-box; @@ -6884,7 +6884,7 @@ a.close.disabled { outline: 0; } -/* line 119, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 119, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-backdrop { position: fixed; top: 0; @@ -6895,17 +6895,17 @@ a.close.disabled { background-color: #000; } -/* line 129, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 129, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-backdrop.fade { opacity: 0; } -/* line 130, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-backdrop.show { opacity: 0.5; } -/* line 135, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 135, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-header { display: -webkit-box; display: flex; @@ -6919,19 +6919,19 @@ a.close.disabled { border-top-right-radius: 0.3rem; } -/* line 143, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-header .close { padding: 1rem 1rem; margin: -1rem -1rem -1rem auto; } -/* line 151, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 151, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-title { margin-bottom: 0; line-height: 1.5; } -/* line 158, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 158, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-body { position: relative; -webkit-box-flex: 1; @@ -6939,7 +6939,7 @@ a.close.disabled { padding: 1rem; } -/* line 167, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 167, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-footer { display: -webkit-box; display: flex; @@ -6953,17 +6953,17 @@ a.close.disabled { border-bottom-left-radius: 0.3rem; } -/* line 176, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 176, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-footer > :not(:first-child) { margin-left: .25rem; } -/* line 177, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-footer > :not(:last-child) { margin-right: .25rem; } -/* line 181, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ +/* line 181, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-scrollbar-measure { position: absolute; top: -9999px; @@ -6973,35 +6973,35 @@ a.close.disabled { } @media (min-width: 576px) { - /* line 192, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + /* line 192, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog { max-width: 500px; margin: 1.75rem auto; } - /* line 197, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + /* line 197, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-scrollable { max-height: calc(100% - 3.5rem); } - /* line 200, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + /* line 200, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-scrollable .modal-content { max-height: calc(100vh - 3.5rem); } - /* line 205, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + /* line 205, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-centered { min-height: calc(100% - 3.5rem); } - /* line 208, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + /* line 208, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-dialog-centered::before { height: calc(100vh - 3.5rem); } - /* line 217, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + /* line 217, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-sm { max-width: 300px; } } @media (min-width: 992px) { - /* line 221, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + /* line 221, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-lg, .modal-xl { max-width: 800px; @@ -7009,13 +7009,13 @@ a.close.disabled { } @media (min-width: 1200px) { - /* line 228, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ + /* line 228, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_modal.scss */ .modal-xl { max-width: 1140px; } } -/* line 2, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .tooltip { position: absolute; z-index: 1070; @@ -7040,12 +7040,12 @@ a.close.disabled { opacity: 0; } -/* line 15, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .tooltip.show { opacity: 0.9; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .tooltip .arrow { position: absolute; display: block; @@ -7053,7 +7053,7 @@ a.close.disabled { height: 0.4rem; } -/* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .tooltip .arrow::before { position: absolute; content: ""; @@ -7061,79 +7061,79 @@ a.close.disabled { border-style: solid; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { padding: 0.4rem 0; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { bottom: 0; } -/* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { top: 0; border-width: 0.4rem 0.4rem 0; border-top-color: #000; } -/* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { padding: 0 0.4rem; } -/* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { left: 0; width: 0.4rem; height: 0.8rem; } -/* line 54, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { right: 0; border-width: 0.4rem 0.4rem 0.4rem 0; border-right-color: #000; } -/* line 62, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { padding: 0.4rem 0; } -/* line 65, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 65, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { top: 0; } -/* line 68, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { bottom: 0; border-width: 0 0.4rem 0.4rem; border-bottom-color: #000; } -/* line 76, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 76, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { padding: 0 0.4rem; } -/* line 79, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 79, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { right: 0; width: 0.4rem; height: 0.8rem; } -/* line 84, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { left: 0; border-width: 0.4rem 0 0.4rem 0.4rem; border-left-color: #000; } -/* line 108, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ +/* line 108, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_tooltip.scss */ .tooltip-inner { max-width: 200px; padding: 0.25rem 0.5rem; @@ -7143,7 +7143,7 @@ a.close.disabled { border-radius: 0.25rem; } -/* line 1, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 1, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .popover { position: absolute; top: 0; @@ -7173,7 +7173,7 @@ a.close.disabled { border-radius: 0.3rem; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .popover .arrow { position: absolute; display: block; @@ -7182,7 +7182,7 @@ a.close.disabled { margin: 0 0.3rem; } -/* line 27, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .popover .arrow::before, .popover .arrow::after { position: absolute; display: block; @@ -7191,36 +7191,36 @@ a.close.disabled { border-style: solid; } -/* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-top, .bs-popover-auto[x-placement^="top"] { margin-bottom: 0.5rem; } -/* line 41, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow { bottom: calc((0.5rem + 1px) * -1); } -/* line 44, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before { bottom: 0; border-width: 0.5rem 0.5rem 0; border-top-color: rgba(0, 0, 0, 0.25); } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after { bottom: 1px; border-width: 0.5rem 0.5rem 0; border-top-color: #fff; } -/* line 58, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-right, .bs-popover-auto[x-placement^="right"] { margin-left: 0.5rem; } -/* line 61, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow { left: calc((0.5rem + 1px) * -1); width: 0.5rem; @@ -7228,45 +7228,45 @@ a.close.disabled { margin: 0.3rem 0; } -/* line 67, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before { left: 0; border-width: 0.5rem 0.5rem 0.5rem 0; border-right-color: rgba(0, 0, 0, 0.25); } -/* line 73, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after { left: 1px; border-width: 0.5rem 0.5rem 0.5rem 0; border-right-color: #fff; } -/* line 81, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 81, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { margin-top: 0.5rem; } -/* line 84, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow { top: calc((0.5rem + 1px) * -1); } -/* line 87, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before { top: 0; border-width: 0 0.5rem 0.5rem 0.5rem; border-bottom-color: rgba(0, 0, 0, 0.25); } -/* line 93, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 93, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after { top: 1px; border-width: 0 0.5rem 0.5rem 0.5rem; border-bottom-color: #fff; } -/* line 101, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 101, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { position: absolute; top: 0; @@ -7278,12 +7278,12 @@ a.close.disabled { border-bottom: 1px solid #f7f7f7; } -/* line 113, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 113, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-left, .bs-popover-auto[x-placement^="left"] { margin-right: 0.5rem; } -/* line 116, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 116, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow { right: calc((0.5rem + 1px) * -1); width: 0.5rem; @@ -7291,21 +7291,21 @@ a.close.disabled { margin: 0.3rem 0; } -/* line 122, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before { right: 0; border-width: 0.5rem 0 0.5rem 0.5rem; border-left-color: rgba(0, 0, 0, 0.25); } -/* line 128, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 128, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after { right: 1px; border-width: 0.5rem 0 0.5rem 0.5rem; border-left-color: #fff; } -/* line 153, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .popover-header { padding: 0.5rem 0.75rem; margin-bottom: 0; @@ -7316,42 +7316,42 @@ a.close.disabled { border-top-right-radius: calc(0.3rem - 1px); } -/* line 163, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 163, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .popover-header:empty { display: none; } -/* line 168, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ +/* line 168, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_popover.scss */ .popover-body { padding: 0.5rem 0.75rem; color: #212529; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel { position: relative; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel.pointer-event { touch-action: pan-y; } -/* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-inner { position: relative; width: 100%; overflow: hidden; } -/* line 2, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .carousel-inner::after { display: block; clear: both; content: ""; } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-item { position: relative; display: none; @@ -7367,35 +7367,35 @@ a.close.disabled { } @media (prefers-reduced-motion: reduce) { - /* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-item { -webkit-transition: none; transition: none; } } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-item.active, .carousel-item-next, .carousel-item-prev { display: block; } -/* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-item-next:not(.carousel-item-left), .active.carousel-item-right { -webkit-transform: translateX(100%); transform: translateX(100%); } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-item-prev:not(.carousel-item-right), .active.carousel-item-left { -webkit-transform: translateX(-100%); transform: translateX(-100%); } -/* line 61, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-fade .carousel-item { opacity: 0; -webkit-transition-property: opacity; @@ -7404,7 +7404,7 @@ a.close.disabled { transform: none; } -/* line 67, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-fade .carousel-item.active, .carousel-fade .carousel-item-next.carousel-item-left, .carousel-fade .carousel-item-prev.carousel-item-right { @@ -7412,7 +7412,7 @@ a.close.disabled { opacity: 1; } -/* line 74, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 74, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right { z-index: 0; @@ -7422,7 +7422,7 @@ a.close.disabled { } @media (prefers-reduced-motion: reduce) { - /* line 74, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ + /* line 74, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right { -webkit-transition: none; @@ -7430,7 +7430,7 @@ a.close.disabled { } } -/* line 87, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-control-prev, .carousel-control-next { position: absolute; @@ -7452,7 +7452,7 @@ a.close.disabled { } @media (prefers-reduced-motion: reduce) { - /* line 87, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ + /* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-control-prev, .carousel-control-next { -webkit-transition: none; @@ -7460,7 +7460,7 @@ a.close.disabled { } } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ .carousel-control-prev:hover, .carousel-control-prev:focus, .carousel-control-next:hover, .carousel-control-next:focus { @@ -7470,17 +7470,17 @@ a.close.disabled { opacity: 0.9; } -/* line 111, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 111, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-control-prev { left: 0; } -/* line 117, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-control-next { right: 0; } -/* line 125, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-control-prev-icon, .carousel-control-next-icon { display: inline-block; @@ -7489,17 +7489,17 @@ a.close.disabled { background: no-repeat 50% / 100% 100%; } -/* line 132, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 132, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-control-prev-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"); } -/* line 135, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 135, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-control-next-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"); } -/* line 145, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 145, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-indicators { position: absolute; right: 0; @@ -7516,7 +7516,7 @@ a.close.disabled { list-style: none; } -/* line 159, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 159, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-indicators li { box-sizing: content-box; -webkit-box-flex: 0; @@ -7537,19 +7537,19 @@ a.close.disabled { } @media (prefers-reduced-motion: reduce) { - /* line 159, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ + /* line 159, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-indicators li { -webkit-transition: none; transition: none; } } -/* line 177, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-indicators .active { opacity: 1; } -/* line 187, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ +/* line 187, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_carousel.scss */ .carousel-caption { position: absolute; right: 15%; @@ -7576,7 +7576,7 @@ a.close.disabled { } } -/* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ .spinner-border { display: inline-block; width: 2rem; @@ -7589,7 +7589,7 @@ a.close.disabled { animation: spinner-border .75s linear infinite; } -/* line 21, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ +/* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ .spinner-border-sm { width: 1rem; height: 1rem; @@ -7616,7 +7616,7 @@ a.close.disabled { } } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ .spinner-grow { display: inline-block; width: 2rem; @@ -7629,386 +7629,386 @@ a.close.disabled { animation: spinner-grow .75s linear infinite; } -/* line 52, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_spinners.scss */ .spinner-grow-sm { width: 1rem; height: 1rem; } -/* line 3, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +/* line 3, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ .align-baseline { vertical-align: baseline !important; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ .align-top { vertical-align: top !important; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ .align-middle { vertical-align: middle !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ .align-bottom { vertical-align: bottom !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ .align-text-bottom { vertical-align: text-bottom !important; } -/* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_align.scss */ .align-text-top { vertical-align: text-top !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ .bg-primary { background-color: #007bff !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.bg-primary:hover, a.bg-primary:focus, button.bg-primary:hover, button.bg-primary:focus { background-color: #0062cc !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ .bg-secondary { background-color: #6c757d !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.bg-secondary:hover, a.bg-secondary:focus, button.bg-secondary:hover, button.bg-secondary:focus { background-color: #545b62 !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ .bg-success { background-color: #28a745 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.bg-success:hover, a.bg-success:focus, button.bg-success:hover, button.bg-success:focus { background-color: #1e7e34 !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ .bg-info { background-color: #17a2b8 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.bg-info:hover, a.bg-info:focus, button.bg-info:hover, button.bg-info:focus { background-color: #117a8b !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ .bg-warning { background-color: #ffc107 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.bg-warning:hover, a.bg-warning:focus, button.bg-warning:hover, button.bg-warning:focus { background-color: #d39e00 !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ .bg-danger { background-color: #dc3545 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.bg-danger:hover, a.bg-danger:focus, button.bg-danger:hover, button.bg-danger:focus { background-color: #bd2130 !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ .bg-light { background-color: #f8f9fa !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.bg-light:hover, a.bg-light:focus, button.bg-light:hover, button.bg-light:focus { background-color: #dae0e5 !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */ .bg-dark { background-color: #343a40 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.bg-dark:hover, a.bg-dark:focus, button.bg-dark:hover, button.bg-dark:focus { background-color: #1d2124 !important; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_background.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_background.scss */ .bg-white { background-color: #fff !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_background.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_background.scss */ .bg-transparent { background-color: transparent !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border { border: 1px solid #dee2e6 !important; } -/* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-top { border-top: 1px solid #dee2e6 !important; } -/* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-right { border-right: 1px solid #dee2e6 !important; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-bottom { border-bottom: 1px solid #dee2e6 !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-left { border-left: 1px solid #dee2e6 !important; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-0 { border: 0 !important; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-top-0 { border-top: 0 !important; } -/* line 15, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-right-0 { border-right: 0 !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-bottom-0 { border-bottom: 0 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-left-0 { border-left: 0 !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-primary { border-color: #007bff !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-secondary { border-color: #6c757d !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-success { border-color: #28a745 !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-info { border-color: #17a2b8 !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-warning { border-color: #ffc107 !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-danger { border-color: #dc3545 !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-light { border-color: #f8f9fa !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-dark { border-color: #343a40 !important; } -/* line 25, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .border-white { border-color: #fff !important; } -/* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .rounded-sm { border-radius: 0.2rem !important; } -/* line 37, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .rounded { border-radius: 0.25rem !important; } -/* line 41, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .rounded-top { border-top-left-radius: 0.25rem !important; border-top-right-radius: 0.25rem !important; } -/* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .rounded-right { border-top-right-radius: 0.25rem !important; border-bottom-right-radius: 0.25rem !important; } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .rounded-bottom { border-bottom-right-radius: 0.25rem !important; border-bottom-left-radius: 0.25rem !important; } -/* line 56, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .rounded-left { border-top-left-radius: 0.25rem !important; border-bottom-left-radius: 0.25rem !important; } -/* line 61, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .rounded-lg { border-radius: 0.3rem !important; } -/* line 65, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 65, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .rounded-circle { border-radius: 50% !important; } -/* line 69, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 69, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .rounded-pill { border-radius: 50rem !important; } -/* line 73, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_borders.scss */ .rounded-0 { border-radius: 0 !important; } -/* line 2, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ +/* line 2, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */ .clearfix::after { display: block; clear: both; content: ""; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-none { display: none !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-inline { display: inline !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-inline-block { display: inline-block !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-block { display: block !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-table { display: table !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-table-row { display: table-row !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-table-cell { display: table-cell !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-flex { display: -webkit-box !important; display: flex !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-inline-flex { display: -webkit-inline-box !important; display: inline-flex !important; } @media (min-width: 576px) { - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-sm-none { display: none !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-sm-inline { display: inline !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-sm-inline-block { display: inline-block !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-sm-block { display: block !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-sm-table { display: table !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-sm-table-row { display: table-row !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-sm-table-cell { display: table-cell !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-sm-flex { display: -webkit-box !important; display: flex !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-sm-inline-flex { display: -webkit-inline-box !important; display: inline-flex !important; @@ -8016,40 +8016,40 @@ button.bg-dark:focus { } @media (min-width: 768px) { - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-md-none { display: none !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-md-inline { display: inline !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-md-inline-block { display: inline-block !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-md-block { display: block !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-md-table { display: table !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-md-table-row { display: table-row !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-md-table-cell { display: table-cell !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-md-flex { display: -webkit-box !important; display: flex !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-md-inline-flex { display: -webkit-inline-box !important; display: inline-flex !important; @@ -8057,40 +8057,40 @@ button.bg-dark:focus { } @media (min-width: 992px) { - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-lg-none { display: none !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-lg-inline { display: inline !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-lg-inline-block { display: inline-block !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-lg-block { display: block !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-lg-table { display: table !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-lg-table-row { display: table-row !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-lg-table-cell { display: table-cell !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-lg-flex { display: -webkit-box !important; display: flex !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-lg-inline-flex { display: -webkit-inline-box !important; display: inline-flex !important; @@ -8098,40 +8098,40 @@ button.bg-dark:focus { } @media (min-width: 1200px) { - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-xl-none { display: none !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-xl-inline { display: inline !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-xl-inline-block { display: inline-block !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-xl-block { display: block !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-xl-table { display: table !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-xl-table-row { display: table-row !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-xl-table-cell { display: table-cell !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-xl-flex { display: -webkit-box !important; display: flex !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-xl-inline-flex { display: -webkit-inline-box !important; display: inline-flex !important; @@ -8139,47 +8139,47 @@ button.bg-dark:focus { } @media print { - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-print-none { display: none !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-print-inline { display: inline !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-print-inline-block { display: inline-block !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-print-block { display: block !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-print-table { display: table !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-print-table-row { display: table-row !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-print-table-cell { display: table-cell !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-print-flex { display: -webkit-box !important; display: flex !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_display.scss */ .d-print-inline-flex { display: -webkit-inline-box !important; display: inline-flex !important; } } -/* line 3, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +/* line 3, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ .embed-responsive { position: relative; display: block; @@ -8188,13 +8188,13 @@ button.bg-dark:focus { overflow: hidden; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ .embed-responsive::before { display: block; content: ""; } -/* line 15, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ .embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, @@ -8209,964 +8209,964 @@ button.bg-dark:focus { border: 0; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ .embed-responsive-21by9::before { padding-top: 42.85714%; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ .embed-responsive-16by9::before { padding-top: 56.25%; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ .embed-responsive-4by3::before { padding-top: 75%; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_embed.scss */ .embed-responsive-1by1::before { padding-top: 100%; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-row { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; flex-direction: row !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-column { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; flex-direction: column !important; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; flex-direction: row-reverse !important; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; flex-direction: column-reverse !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-wrap { flex-wrap: wrap !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-nowrap { flex-wrap: nowrap !important; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-wrap-reverse { flex-wrap: wrap-reverse !important; } -/* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-fill { -webkit-box-flex: 1 !important; flex: 1 1 auto !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-grow-0 { -webkit-box-flex: 0 !important; flex-grow: 0 !important; } -/* line 21, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-grow-1 { -webkit-box-flex: 1 !important; flex-grow: 1 !important; } -/* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-shrink-0 { flex-shrink: 0 !important; } -/* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-shrink-1 { flex-shrink: 1 !important; } -/* line 25, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-start { -webkit-box-pack: start !important; justify-content: flex-start !important; } -/* line 26, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-end { -webkit-box-pack: end !important; justify-content: flex-end !important; } -/* line 27, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-center { -webkit-box-pack: center !important; justify-content: center !important; } -/* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-between { -webkit-box-pack: justify !important; justify-content: space-between !important; } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-around { justify-content: space-around !important; } -/* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-start { -webkit-box-align: start !important; align-items: flex-start !important; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-end { -webkit-box-align: end !important; align-items: flex-end !important; } -/* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-center { -webkit-box-align: center !important; align-items: center !important; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-baseline { -webkit-box-align: baseline !important; align-items: baseline !important; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-stretch { -webkit-box-align: stretch !important; align-items: stretch !important; } -/* line 37, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-start { align-content: flex-start !important; } -/* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-end { align-content: flex-end !important; } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-center { align-content: center !important; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-between { align-content: space-between !important; } -/* line 41, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-around { align-content: space-around !important; } -/* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-stretch { align-content: stretch !important; } -/* line 44, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-auto { align-self: auto !important; } -/* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-start { align-self: flex-start !important; } -/* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-end { align-self: flex-end !important; } -/* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-center { align-self: center !important; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-baseline { align-self: baseline !important; } -/* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-stretch { align-self: stretch !important; } @media (min-width: 576px) { - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-row { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; flex-direction: row !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-column { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; flex-direction: column !important; } - /* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; flex-direction: row-reverse !important; } - /* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; flex-direction: column-reverse !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-wrap { flex-wrap: wrap !important; } - /* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-nowrap { flex-wrap: nowrap !important; } - /* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-wrap-reverse { flex-wrap: wrap-reverse !important; } - /* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-fill { -webkit-box-flex: 1 !important; flex: 1 1 auto !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-grow-0 { -webkit-box-flex: 0 !important; flex-grow: 0 !important; } - /* line 21, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-grow-1 { -webkit-box-flex: 1 !important; flex-grow: 1 !important; } - /* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-shrink-0 { flex-shrink: 0 !important; } - /* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-sm-shrink-1 { flex-shrink: 1 !important; } - /* line 25, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-sm-start { -webkit-box-pack: start !important; justify-content: flex-start !important; } - /* line 26, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-sm-end { -webkit-box-pack: end !important; justify-content: flex-end !important; } - /* line 27, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-sm-center { -webkit-box-pack: center !important; justify-content: center !important; } - /* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-sm-between { -webkit-box-pack: justify !important; justify-content: space-between !important; } - /* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-sm-around { justify-content: space-around !important; } - /* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-sm-start { -webkit-box-align: start !important; align-items: flex-start !important; } - /* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-sm-end { -webkit-box-align: end !important; align-items: flex-end !important; } - /* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-sm-center { -webkit-box-align: center !important; align-items: center !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-sm-baseline { -webkit-box-align: baseline !important; align-items: baseline !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-sm-stretch { -webkit-box-align: stretch !important; align-items: stretch !important; } - /* line 37, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-sm-start { align-content: flex-start !important; } - /* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-sm-end { align-content: flex-end !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-sm-center { align-content: center !important; } - /* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-sm-between { align-content: space-between !important; } - /* line 41, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-sm-around { align-content: space-around !important; } - /* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-sm-stretch { align-content: stretch !important; } - /* line 44, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-sm-auto { align-self: auto !important; } - /* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-sm-start { align-self: flex-start !important; } - /* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-sm-end { align-self: flex-end !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-sm-center { align-self: center !important; } - /* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-sm-baseline { align-self: baseline !important; } - /* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-sm-stretch { align-self: stretch !important; } } @media (min-width: 768px) { - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-row { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; flex-direction: row !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-column { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; flex-direction: column !important; } - /* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; flex-direction: row-reverse !important; } - /* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; flex-direction: column-reverse !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-wrap { flex-wrap: wrap !important; } - /* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-nowrap { flex-wrap: nowrap !important; } - /* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-wrap-reverse { flex-wrap: wrap-reverse !important; } - /* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-fill { -webkit-box-flex: 1 !important; flex: 1 1 auto !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-grow-0 { -webkit-box-flex: 0 !important; flex-grow: 0 !important; } - /* line 21, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-grow-1 { -webkit-box-flex: 1 !important; flex-grow: 1 !important; } - /* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-shrink-0 { flex-shrink: 0 !important; } - /* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-md-shrink-1 { flex-shrink: 1 !important; } - /* line 25, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-md-start { -webkit-box-pack: start !important; justify-content: flex-start !important; } - /* line 26, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-md-end { -webkit-box-pack: end !important; justify-content: flex-end !important; } - /* line 27, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-md-center { -webkit-box-pack: center !important; justify-content: center !important; } - /* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-md-between { -webkit-box-pack: justify !important; justify-content: space-between !important; } - /* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-md-around { justify-content: space-around !important; } - /* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-md-start { -webkit-box-align: start !important; align-items: flex-start !important; } - /* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-md-end { -webkit-box-align: end !important; align-items: flex-end !important; } - /* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-md-center { -webkit-box-align: center !important; align-items: center !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-md-baseline { -webkit-box-align: baseline !important; align-items: baseline !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-md-stretch { -webkit-box-align: stretch !important; align-items: stretch !important; } - /* line 37, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-md-start { align-content: flex-start !important; } - /* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-md-end { align-content: flex-end !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-md-center { align-content: center !important; } - /* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-md-between { align-content: space-between !important; } - /* line 41, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-md-around { align-content: space-around !important; } - /* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-md-stretch { align-content: stretch !important; } - /* line 44, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-md-auto { align-self: auto !important; } - /* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-md-start { align-self: flex-start !important; } - /* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-md-end { align-self: flex-end !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-md-center { align-self: center !important; } - /* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-md-baseline { align-self: baseline !important; } - /* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-md-stretch { align-self: stretch !important; } } @media (min-width: 992px) { - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-row { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; flex-direction: row !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-column { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; flex-direction: column !important; } - /* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; flex-direction: row-reverse !important; } - /* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; flex-direction: column-reverse !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-wrap { flex-wrap: wrap !important; } - /* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-nowrap { flex-wrap: nowrap !important; } - /* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-wrap-reverse { flex-wrap: wrap-reverse !important; } - /* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-fill { -webkit-box-flex: 1 !important; flex: 1 1 auto !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-grow-0 { -webkit-box-flex: 0 !important; flex-grow: 0 !important; } - /* line 21, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-grow-1 { -webkit-box-flex: 1 !important; flex-grow: 1 !important; } - /* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-shrink-0 { flex-shrink: 0 !important; } - /* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-lg-shrink-1 { flex-shrink: 1 !important; } - /* line 25, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-lg-start { -webkit-box-pack: start !important; justify-content: flex-start !important; } - /* line 26, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-lg-end { -webkit-box-pack: end !important; justify-content: flex-end !important; } - /* line 27, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-lg-center { -webkit-box-pack: center !important; justify-content: center !important; } - /* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-lg-between { -webkit-box-pack: justify !important; justify-content: space-between !important; } - /* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-lg-around { justify-content: space-around !important; } - /* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-lg-start { -webkit-box-align: start !important; align-items: flex-start !important; } - /* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-lg-end { -webkit-box-align: end !important; align-items: flex-end !important; } - /* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-lg-center { -webkit-box-align: center !important; align-items: center !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-lg-baseline { -webkit-box-align: baseline !important; align-items: baseline !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-lg-stretch { -webkit-box-align: stretch !important; align-items: stretch !important; } - /* line 37, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-lg-start { align-content: flex-start !important; } - /* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-lg-end { align-content: flex-end !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-lg-center { align-content: center !important; } - /* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-lg-between { align-content: space-between !important; } - /* line 41, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-lg-around { align-content: space-around !important; } - /* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-lg-stretch { align-content: stretch !important; } - /* line 44, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-lg-auto { align-self: auto !important; } - /* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-lg-start { align-self: flex-start !important; } - /* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-lg-end { align-self: flex-end !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-lg-center { align-self: center !important; } - /* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-lg-baseline { align-self: baseline !important; } - /* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-lg-stretch { align-self: stretch !important; } } @media (min-width: 1200px) { - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-row { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; flex-direction: row !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-column { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; flex-direction: column !important; } - /* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; flex-direction: row-reverse !important; } - /* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; flex-direction: column-reverse !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-wrap { flex-wrap: wrap !important; } - /* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-nowrap { flex-wrap: nowrap !important; } - /* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-wrap-reverse { flex-wrap: wrap-reverse !important; } - /* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-fill { -webkit-box-flex: 1 !important; flex: 1 1 auto !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-grow-0 { -webkit-box-flex: 0 !important; flex-grow: 0 !important; } - /* line 21, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-grow-1 { -webkit-box-flex: 1 !important; flex-grow: 1 !important; } - /* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-shrink-0 { flex-shrink: 0 !important; } - /* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .flex-xl-shrink-1 { flex-shrink: 1 !important; } - /* line 25, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 25, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-xl-start { -webkit-box-pack: start !important; justify-content: flex-start !important; } - /* line 26, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-xl-end { -webkit-box-pack: end !important; justify-content: flex-end !important; } - /* line 27, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-xl-center { -webkit-box-pack: center !important; justify-content: center !important; } - /* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-xl-between { -webkit-box-pack: justify !important; justify-content: space-between !important; } - /* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .justify-content-xl-around { justify-content: space-around !important; } - /* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-xl-start { -webkit-box-align: start !important; align-items: flex-start !important; } - /* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-xl-end { -webkit-box-align: end !important; align-items: flex-end !important; } - /* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-xl-center { -webkit-box-align: center !important; align-items: center !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-xl-baseline { -webkit-box-align: baseline !important; align-items: baseline !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-items-xl-stretch { -webkit-box-align: stretch !important; align-items: stretch !important; } - /* line 37, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-xl-start { align-content: flex-start !important; } - /* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-xl-end { align-content: flex-end !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-xl-center { align-content: center !important; } - /* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-xl-between { align-content: space-between !important; } - /* line 41, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-xl-around { align-content: space-around !important; } - /* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-content-xl-stretch { align-content: stretch !important; } - /* line 44, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-xl-auto { align-self: auto !important; } - /* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-xl-start { align-self: flex-start !important; } - /* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-xl-end { align-self: flex-end !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-xl-center { align-self: center !important; } - /* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-xl-baseline { align-self: baseline !important; } - /* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_flex.scss */ .align-self-xl-stretch { align-self: stretch !important; } } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-left { float: left !important; } -/* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-right { float: right !important; } -/* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-none { float: none !important; } @media (min-width: 576px) { - /* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-sm-left { float: left !important; } - /* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-sm-right { float: right !important; } - /* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-sm-none { float: none !important; } } @media (min-width: 768px) { - /* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-md-left { float: left !important; } - /* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-md-right { float: right !important; } - /* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-md-none { float: none !important; } } @media (min-width: 992px) { - /* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-lg-left { float: left !important; } - /* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-lg-right { float: right !important; } - /* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-lg-none { float: none !important; } } @media (min-width: 1200px) { - /* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-xl-left { float: left !important; } - /* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-xl-right { float: right !important; } - /* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ + /* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_float.scss */ .float-xl-none { float: none !important; } } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_overflow.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_overflow.scss */ .overflow-auto { overflow: auto !important; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_overflow.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_overflow.scss */ .overflow-hidden { overflow: hidden !important; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ .position-static { position: static !important; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ .position-relative { position: relative !important; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ .position-absolute { position: absolute !important; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ .position-fixed { position: fixed !important; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ .position-sticky { position: -webkit-sticky !important; position: sticky !important; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ .fixed-top { position: fixed; top: 0; @@ -9175,7 +9175,7 @@ button.bg-dark:focus { z-index: 1030; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ .fixed-bottom { position: fixed; right: 0; @@ -9185,7 +9185,7 @@ button.bg-dark:focus { } @supports ((position: -webkit-sticky) or (position: sticky)) { - /* line 26, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ + /* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_position.scss */ .sticky-top { position: -webkit-sticky; position: sticky; @@ -9194,7 +9194,7 @@ button.bg-dark:focus { } } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_screenreaders.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_screenreaders.scss */ .sr-only { position: absolute; width: 1px; @@ -9206,7 +9206,7 @@ button.bg-dark:focus { border: 0; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_screen-reader.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_screen-reader.scss */ .sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; @@ -9216,107 +9216,107 @@ button.bg-dark:focus { white-space: normal; } -/* line 3, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ +/* line 3, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ .shadow-sm { box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ .shadow { box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ .shadow-lg { box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */ .shadow-none { box-shadow: none !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .w-25 { width: 25% !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .w-50 { width: 50% !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .w-75 { width: 75% !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .w-100 { width: 100% !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .w-auto { width: auto !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .h-25 { height: 25% !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .h-50 { height: 50% !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .h-75 { height: 75% !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .h-100 { height: 100% !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .h-auto { height: auto !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .mw-100 { max-width: 100% !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .mh-100 { max-height: 100% !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .min-vw-100 { min-width: 100vw !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .min-vh-100 { min-height: 100vh !important; } -/* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .vw-100 { width: 100vw !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */ .vh-100 { height: 100vh !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_stretched-link.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_stretched-link.scss */ .stretched-link::after { position: absolute; top: 0; @@ -9329,957 +9329,957 @@ button.bg-dark:focus { background-color: transparent; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-0 { margin: 0 !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-0, .my-0 { margin-top: 0 !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-0, .mx-0 { margin-right: 0 !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-0, .my-0 { margin-bottom: 0 !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-0, .mx-0 { margin-left: 0 !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-1 { margin: 0.25rem !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-1, .my-1 { margin-top: 0.25rem !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-1, .mx-1 { margin-right: 0.25rem !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-1, .my-1 { margin-bottom: 0.25rem !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-1, .mx-1 { margin-left: 0.25rem !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-2 { margin: 0.5rem !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-2, .my-2 { margin-top: 0.5rem !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-2, .mx-2 { margin-right: 0.5rem !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-2, .my-2 { margin-bottom: 0.5rem !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-2, .mx-2 { margin-left: 0.5rem !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-3 { margin: 1rem !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-3, .my-3 { margin-top: 1rem !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-3, .mx-3 { margin-right: 1rem !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-3, .my-3 { margin-bottom: 1rem !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-3, .mx-3 { margin-left: 1rem !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-4 { margin: 1.5rem !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-4, .my-4 { margin-top: 1.5rem !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-4, .mx-4 { margin-right: 1.5rem !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-4, .my-4 { margin-bottom: 1.5rem !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-4, .mx-4 { margin-left: 1.5rem !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-5 { margin: 3rem !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-5, .my-5 { margin-top: 3rem !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-5, .mx-5 { margin-right: 3rem !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-5, .my-5 { margin-bottom: 3rem !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-5, .mx-5 { margin-left: 3rem !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-0 { padding: 0 !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-0, .py-0 { padding-top: 0 !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-0, .px-0 { padding-right: 0 !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-0, .py-0 { padding-bottom: 0 !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-0, .px-0 { padding-left: 0 !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-1 { padding: 0.25rem !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-1, .py-1 { padding-top: 0.25rem !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-1, .px-1 { padding-right: 0.25rem !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-1, .py-1 { padding-bottom: 0.25rem !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-1, .px-1 { padding-left: 0.25rem !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-2 { padding: 0.5rem !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-2, .py-2 { padding-top: 0.5rem !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-2, .px-2 { padding-right: 0.5rem !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-2, .py-2 { padding-bottom: 0.5rem !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-2, .px-2 { padding-left: 0.5rem !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-3 { padding: 1rem !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-3, .py-3 { padding-top: 1rem !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-3, .px-3 { padding-right: 1rem !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-3, .py-3 { padding-bottom: 1rem !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-3, .px-3 { padding-left: 1rem !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-4 { padding: 1.5rem !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-4, .py-4 { padding-top: 1.5rem !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-4, .px-4 { padding-right: 1.5rem !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-4, .py-4 { padding-bottom: 1.5rem !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-4, .px-4 { padding-left: 1.5rem !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-5 { padding: 3rem !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-5, .py-5 { padding-top: 3rem !important; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-5, .px-5 { padding-right: 3rem !important; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-5, .py-5 { padding-bottom: 3rem !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-5, .px-5 { padding-left: 3rem !important; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-n1 { margin: -0.25rem !important; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-n1, .my-n1 { margin-top: -0.25rem !important; } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-n1, .mx-n1 { margin-right: -0.25rem !important; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-n1, .my-n1 { margin-bottom: -0.25rem !important; } -/* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-n1, .mx-n1 { margin-left: -0.25rem !important; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-n2 { margin: -0.5rem !important; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-n2, .my-n2 { margin-top: -0.5rem !important; } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-n2, .mx-n2 { margin-right: -0.5rem !important; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-n2, .my-n2 { margin-bottom: -0.5rem !important; } -/* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-n2, .mx-n2 { margin-left: -0.5rem !important; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-n3 { margin: -1rem !important; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-n3, .my-n3 { margin-top: -1rem !important; } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-n3, .mx-n3 { margin-right: -1rem !important; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-n3, .my-n3 { margin-bottom: -1rem !important; } -/* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-n3, .mx-n3 { margin-left: -1rem !important; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-n4 { margin: -1.5rem !important; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-n4, .my-n4 { margin-top: -1.5rem !important; } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-n4, .mx-n4 { margin-right: -1.5rem !important; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-n4, .my-n4 { margin-bottom: -1.5rem !important; } -/* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-n4, .mx-n4 { margin-left: -1.5rem !important; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-n5 { margin: -3rem !important; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-n5, .my-n5 { margin-top: -3rem !important; } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-n5, .mx-n5 { margin-right: -3rem !important; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-n5, .my-n5 { margin-bottom: -3rem !important; } -/* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-n5, .mx-n5 { margin-left: -3rem !important; } -/* line 55, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-auto { margin: auto !important; } -/* line 56, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-auto, .my-auto { margin-top: auto !important; } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-auto, .mx-auto { margin-right: auto !important; } -/* line 64, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-auto, .my-auto { margin-bottom: auto !important; } -/* line 68, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ +/* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-auto, .mx-auto { margin-left: auto !important; } @media (min-width: 576px) { - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-0 { margin: 0 !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-0, .my-sm-0 { margin-top: 0 !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-0, .mx-sm-0 { margin-right: 0 !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-0, .my-sm-0 { margin-bottom: 0 !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-0, .mx-sm-0 { margin-left: 0 !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-1 { margin: 0.25rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-1, .my-sm-1 { margin-top: 0.25rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-1, .mx-sm-1 { margin-right: 0.25rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-1, .my-sm-1 { margin-bottom: 0.25rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-1, .mx-sm-1 { margin-left: 0.25rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-2 { margin: 0.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-2, .my-sm-2 { margin-top: 0.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-2, .mx-sm-2 { margin-right: 0.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-2, .my-sm-2 { margin-bottom: 0.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-2, .mx-sm-2 { margin-left: 0.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-3 { margin: 1rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-3, .my-sm-3 { margin-top: 1rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-3, .mx-sm-3 { margin-right: 1rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-3, .my-sm-3 { margin-bottom: 1rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-3, .mx-sm-3 { margin-left: 1rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-4 { margin: 1.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-4, .my-sm-4 { margin-top: 1.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-4, .mx-sm-4 { margin-right: 1.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-4, .my-sm-4 { margin-bottom: 1.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-4, .mx-sm-4 { margin-left: 1.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-5 { margin: 3rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-5, .my-sm-5 { margin-top: 3rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-5, .mx-sm-5 { margin-right: 3rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-5, .my-sm-5 { margin-bottom: 3rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-5, .mx-sm-5 { margin-left: 3rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-sm-0 { padding: 0 !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-sm-0, .py-sm-0 { padding-top: 0 !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-sm-0, .px-sm-0 { padding-right: 0 !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-sm-0, .py-sm-0 { padding-bottom: 0 !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-sm-0, .px-sm-0 { padding-left: 0 !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-sm-1 { padding: 0.25rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-sm-1, .py-sm-1 { padding-top: 0.25rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-sm-1, .px-sm-1 { padding-right: 0.25rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-sm-1, .py-sm-1 { padding-bottom: 0.25rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-sm-1, .px-sm-1 { padding-left: 0.25rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-sm-2 { padding: 0.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-sm-2, .py-sm-2 { padding-top: 0.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-sm-2, .px-sm-2 { padding-right: 0.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-sm-2, .py-sm-2 { padding-bottom: 0.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-sm-2, .px-sm-2 { padding-left: 0.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-sm-3 { padding: 1rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-sm-3, .py-sm-3 { padding-top: 1rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-sm-3, .px-sm-3 { padding-right: 1rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-sm-3, .py-sm-3 { padding-bottom: 1rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-sm-3, .px-sm-3 { padding-left: 1rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-sm-4 { padding: 1.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-sm-4, .py-sm-4 { padding-top: 1.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-sm-4, .px-sm-4 { padding-right: 1.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-sm-4, .py-sm-4 { padding-bottom: 1.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-sm-4, .px-sm-4 { padding-left: 1.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-sm-5 { padding: 3rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-sm-5, .py-sm-5 { padding-top: 3rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-sm-5, .px-sm-5 { padding-right: 3rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-sm-5, .py-sm-5 { padding-bottom: 3rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-sm-5, .px-sm-5 { padding-left: 3rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-n1 { margin: -0.25rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-n1, .my-sm-n1 { margin-top: -0.25rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-n1, .mx-sm-n1 { margin-right: -0.25rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-n1, .my-sm-n1 { margin-bottom: -0.25rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-n1, .mx-sm-n1 { margin-left: -0.25rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-n2 { margin: -0.5rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-n2, .my-sm-n2 { margin-top: -0.5rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-n2, .mx-sm-n2 { margin-right: -0.5rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-n2, .my-sm-n2 { margin-bottom: -0.5rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-n2, .mx-sm-n2 { margin-left: -0.5rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-n3 { margin: -1rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-n3, .my-sm-n3 { margin-top: -1rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-n3, .mx-sm-n3 { margin-right: -1rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-n3, .my-sm-n3 { margin-bottom: -1rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-n3, .mx-sm-n3 { margin-left: -1rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-n4 { margin: -1.5rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-n4, .my-sm-n4 { margin-top: -1.5rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-n4, .mx-sm-n4 { margin-right: -1.5rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-n4, .my-sm-n4 { margin-bottom: -1.5rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-n4, .mx-sm-n4 { margin-left: -1.5rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-n5 { margin: -3rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-n5, .my-sm-n5 { margin-top: -3rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-n5, .mx-sm-n5 { margin-right: -3rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-n5, .my-sm-n5 { margin-bottom: -3rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-n5, .mx-sm-n5 { margin-left: -3rem !important; } - /* line 55, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-sm-auto { margin: auto !important; } - /* line 56, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-sm-auto, .my-sm-auto { margin-top: auto !important; } - /* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-sm-auto, .mx-sm-auto { margin-right: auto !important; } - /* line 64, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-sm-auto, .my-sm-auto { margin-bottom: auto !important; } - /* line 68, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-sm-auto, .mx-sm-auto { margin-left: auto !important; @@ -10287,434 +10287,434 @@ button.bg-dark:focus { } @media (min-width: 768px) { - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-0 { margin: 0 !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-0, .my-md-0 { margin-top: 0 !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-0, .mx-md-0 { margin-right: 0 !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-0, .my-md-0 { margin-bottom: 0 !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-0, .mx-md-0 { margin-left: 0 !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-1 { margin: 0.25rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-1, .my-md-1 { margin-top: 0.25rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-1, .mx-md-1 { margin-right: 0.25rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-1, .my-md-1 { margin-bottom: 0.25rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-1, .mx-md-1 { margin-left: 0.25rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-2 { margin: 0.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-2, .my-md-2 { margin-top: 0.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-2, .mx-md-2 { margin-right: 0.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-2, .my-md-2 { margin-bottom: 0.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-2, .mx-md-2 { margin-left: 0.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-3 { margin: 1rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-3, .my-md-3 { margin-top: 1rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-3, .mx-md-3 { margin-right: 1rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-3, .my-md-3 { margin-bottom: 1rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-3, .mx-md-3 { margin-left: 1rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-4 { margin: 1.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-4, .my-md-4 { margin-top: 1.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-4, .mx-md-4 { margin-right: 1.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-4, .my-md-4 { margin-bottom: 1.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-4, .mx-md-4 { margin-left: 1.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-5 { margin: 3rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-5, .my-md-5 { margin-top: 3rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-5, .mx-md-5 { margin-right: 3rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-5, .my-md-5 { margin-bottom: 3rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-5, .mx-md-5 { margin-left: 3rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-md-0 { padding: 0 !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-md-0, .py-md-0 { padding-top: 0 !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-md-0, .px-md-0 { padding-right: 0 !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-md-0, .py-md-0 { padding-bottom: 0 !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-md-0, .px-md-0 { padding-left: 0 !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-md-1 { padding: 0.25rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-md-1, .py-md-1 { padding-top: 0.25rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-md-1, .px-md-1 { padding-right: 0.25rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-md-1, .py-md-1 { padding-bottom: 0.25rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-md-1, .px-md-1 { padding-left: 0.25rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-md-2 { padding: 0.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-md-2, .py-md-2 { padding-top: 0.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-md-2, .px-md-2 { padding-right: 0.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-md-2, .py-md-2 { padding-bottom: 0.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-md-2, .px-md-2 { padding-left: 0.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-md-3 { padding: 1rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-md-3, .py-md-3 { padding-top: 1rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-md-3, .px-md-3 { padding-right: 1rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-md-3, .py-md-3 { padding-bottom: 1rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-md-3, .px-md-3 { padding-left: 1rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-md-4 { padding: 1.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-md-4, .py-md-4 { padding-top: 1.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-md-4, .px-md-4 { padding-right: 1.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-md-4, .py-md-4 { padding-bottom: 1.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-md-4, .px-md-4 { padding-left: 1.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-md-5 { padding: 3rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-md-5, .py-md-5 { padding-top: 3rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-md-5, .px-md-5 { padding-right: 3rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-md-5, .py-md-5 { padding-bottom: 3rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-md-5, .px-md-5 { padding-left: 3rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-n1 { margin: -0.25rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-n1, .my-md-n1 { margin-top: -0.25rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-n1, .mx-md-n1 { margin-right: -0.25rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-n1, .my-md-n1 { margin-bottom: -0.25rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-n1, .mx-md-n1 { margin-left: -0.25rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-n2 { margin: -0.5rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-n2, .my-md-n2 { margin-top: -0.5rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-n2, .mx-md-n2 { margin-right: -0.5rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-n2, .my-md-n2 { margin-bottom: -0.5rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-n2, .mx-md-n2 { margin-left: -0.5rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-n3 { margin: -1rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-n3, .my-md-n3 { margin-top: -1rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-n3, .mx-md-n3 { margin-right: -1rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-n3, .my-md-n3 { margin-bottom: -1rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-n3, .mx-md-n3 { margin-left: -1rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-n4 { margin: -1.5rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-n4, .my-md-n4 { margin-top: -1.5rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-n4, .mx-md-n4 { margin-right: -1.5rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-n4, .my-md-n4 { margin-bottom: -1.5rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-n4, .mx-md-n4 { margin-left: -1.5rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-n5 { margin: -3rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-n5, .my-md-n5 { margin-top: -3rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-n5, .mx-md-n5 { margin-right: -3rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-n5, .my-md-n5 { margin-bottom: -3rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-n5, .mx-md-n5 { margin-left: -3rem !important; } - /* line 55, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-md-auto { margin: auto !important; } - /* line 56, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-md-auto, .my-md-auto { margin-top: auto !important; } - /* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-md-auto, .mx-md-auto { margin-right: auto !important; } - /* line 64, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-md-auto, .my-md-auto { margin-bottom: auto !important; } - /* line 68, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-md-auto, .mx-md-auto { margin-left: auto !important; @@ -10722,434 +10722,434 @@ button.bg-dark:focus { } @media (min-width: 992px) { - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-0 { margin: 0 !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-0, .my-lg-0 { margin-top: 0 !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-0, .mx-lg-0 { margin-right: 0 !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-0, .my-lg-0 { margin-bottom: 0 !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-0, .mx-lg-0 { margin-left: 0 !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-1 { margin: 0.25rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-1, .my-lg-1 { margin-top: 0.25rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-1, .mx-lg-1 { margin-right: 0.25rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-1, .my-lg-1 { margin-bottom: 0.25rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-1, .mx-lg-1 { margin-left: 0.25rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-2 { margin: 0.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-2, .my-lg-2 { margin-top: 0.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-2, .mx-lg-2 { margin-right: 0.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-2, .my-lg-2 { margin-bottom: 0.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-2, .mx-lg-2 { margin-left: 0.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-3 { margin: 1rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-3, .my-lg-3 { margin-top: 1rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-3, .mx-lg-3 { margin-right: 1rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-3, .my-lg-3 { margin-bottom: 1rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-3, .mx-lg-3 { margin-left: 1rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-4 { margin: 1.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-4, .my-lg-4 { margin-top: 1.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-4, .mx-lg-4 { margin-right: 1.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-4, .my-lg-4 { margin-bottom: 1.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-4, .mx-lg-4 { margin-left: 1.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-5 { margin: 3rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-5, .my-lg-5 { margin-top: 3rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-5, .mx-lg-5 { margin-right: 3rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-5, .my-lg-5 { margin-bottom: 3rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-5, .mx-lg-5 { margin-left: 3rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-lg-0 { padding: 0 !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-lg-0, .py-lg-0 { padding-top: 0 !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-lg-0, .px-lg-0 { padding-right: 0 !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-lg-0, .py-lg-0 { padding-bottom: 0 !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-lg-0, .px-lg-0 { padding-left: 0 !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-lg-1 { padding: 0.25rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-lg-1, .py-lg-1 { padding-top: 0.25rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-lg-1, .px-lg-1 { padding-right: 0.25rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-lg-1, .py-lg-1 { padding-bottom: 0.25rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-lg-1, .px-lg-1 { padding-left: 0.25rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-lg-2 { padding: 0.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-lg-2, .py-lg-2 { padding-top: 0.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-lg-2, .px-lg-2 { padding-right: 0.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-lg-2, .py-lg-2 { padding-bottom: 0.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-lg-2, .px-lg-2 { padding-left: 0.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-lg-3 { padding: 1rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-lg-3, .py-lg-3 { padding-top: 1rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-lg-3, .px-lg-3 { padding-right: 1rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-lg-3, .py-lg-3 { padding-bottom: 1rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-lg-3, .px-lg-3 { padding-left: 1rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-lg-4 { padding: 1.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-lg-4, .py-lg-4 { padding-top: 1.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-lg-4, .px-lg-4 { padding-right: 1.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-lg-4, .py-lg-4 { padding-bottom: 1.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-lg-4, .px-lg-4 { padding-left: 1.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-lg-5 { padding: 3rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-lg-5, .py-lg-5 { padding-top: 3rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-lg-5, .px-lg-5 { padding-right: 3rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-lg-5, .py-lg-5 { padding-bottom: 3rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-lg-5, .px-lg-5 { padding-left: 3rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-n1 { margin: -0.25rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-n1, .my-lg-n1 { margin-top: -0.25rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-n1, .mx-lg-n1 { margin-right: -0.25rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-n1, .my-lg-n1 { margin-bottom: -0.25rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-n1, .mx-lg-n1 { margin-left: -0.25rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-n2 { margin: -0.5rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-n2, .my-lg-n2 { margin-top: -0.5rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-n2, .mx-lg-n2 { margin-right: -0.5rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-n2, .my-lg-n2 { margin-bottom: -0.5rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-n2, .mx-lg-n2 { margin-left: -0.5rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-n3 { margin: -1rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-n3, .my-lg-n3 { margin-top: -1rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-n3, .mx-lg-n3 { margin-right: -1rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-n3, .my-lg-n3 { margin-bottom: -1rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-n3, .mx-lg-n3 { margin-left: -1rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-n4 { margin: -1.5rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-n4, .my-lg-n4 { margin-top: -1.5rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-n4, .mx-lg-n4 { margin-right: -1.5rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-n4, .my-lg-n4 { margin-bottom: -1.5rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-n4, .mx-lg-n4 { margin-left: -1.5rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-n5 { margin: -3rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-n5, .my-lg-n5 { margin-top: -3rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-n5, .mx-lg-n5 { margin-right: -3rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-n5, .my-lg-n5 { margin-bottom: -3rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-n5, .mx-lg-n5 { margin-left: -3rem !important; } - /* line 55, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-lg-auto { margin: auto !important; } - /* line 56, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-lg-auto, .my-lg-auto { margin-top: auto !important; } - /* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-lg-auto, .mx-lg-auto { margin-right: auto !important; } - /* line 64, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-lg-auto, .my-lg-auto { margin-bottom: auto !important; } - /* line 68, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-lg-auto, .mx-lg-auto { margin-left: auto !important; @@ -11157,693 +11157,693 @@ button.bg-dark:focus { } @media (min-width: 1200px) { - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-0 { margin: 0 !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-0, .my-xl-0 { margin-top: 0 !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-0, .mx-xl-0 { margin-right: 0 !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-0, .my-xl-0 { margin-bottom: 0 !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-0, .mx-xl-0 { margin-left: 0 !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-1 { margin: 0.25rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-1, .my-xl-1 { margin-top: 0.25rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-1, .mx-xl-1 { margin-right: 0.25rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-1, .my-xl-1 { margin-bottom: 0.25rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-1, .mx-xl-1 { margin-left: 0.25rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-2 { margin: 0.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-2, .my-xl-2 { margin-top: 0.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-2, .mx-xl-2 { margin-right: 0.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-2, .my-xl-2 { margin-bottom: 0.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-2, .mx-xl-2 { margin-left: 0.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-3 { margin: 1rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-3, .my-xl-3 { margin-top: 1rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-3, .mx-xl-3 { margin-right: 1rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-3, .my-xl-3 { margin-bottom: 1rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-3, .mx-xl-3 { margin-left: 1rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-4 { margin: 1.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-4, .my-xl-4 { margin-top: 1.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-4, .mx-xl-4 { margin-right: 1.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-4, .my-xl-4 { margin-bottom: 1.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-4, .mx-xl-4 { margin-left: 1.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-5 { margin: 3rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-5, .my-xl-5 { margin-top: 3rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-5, .mx-xl-5 { margin-right: 3rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-5, .my-xl-5 { margin-bottom: 3rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-5, .mx-xl-5 { margin-left: 3rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-xl-0 { padding: 0 !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-xl-0, .py-xl-0 { padding-top: 0 !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-xl-0, .px-xl-0 { padding-right: 0 !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-xl-0, .py-xl-0 { padding-bottom: 0 !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-xl-0, .px-xl-0 { padding-left: 0 !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-xl-1 { padding: 0.25rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-xl-1, .py-xl-1 { padding-top: 0.25rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-xl-1, .px-xl-1 { padding-right: 0.25rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-xl-1, .py-xl-1 { padding-bottom: 0.25rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-xl-1, .px-xl-1 { padding-left: 0.25rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-xl-2 { padding: 0.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-xl-2, .py-xl-2 { padding-top: 0.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-xl-2, .px-xl-2 { padding-right: 0.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-xl-2, .py-xl-2 { padding-bottom: 0.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-xl-2, .px-xl-2 { padding-left: 0.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-xl-3 { padding: 1rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-xl-3, .py-xl-3 { padding-top: 1rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-xl-3, .px-xl-3 { padding-right: 1rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-xl-3, .py-xl-3 { padding-bottom: 1rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-xl-3, .px-xl-3 { padding-left: 1rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-xl-4 { padding: 1.5rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-xl-4, .py-xl-4 { padding-top: 1.5rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-xl-4, .px-xl-4 { padding-right: 1.5rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-xl-4, .py-xl-4 { padding-bottom: 1.5rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-xl-4, .px-xl-4 { padding-left: 1.5rem !important; } - /* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .p-xl-5 { padding: 3rem !important; } - /* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pt-xl-5, .py-xl-5 { padding-top: 3rem !important; } - /* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pr-xl-5, .px-xl-5 { padding-right: 3rem !important; } - /* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pb-xl-5, .py-xl-5 { padding-bottom: 3rem !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .pl-xl-5, .px-xl-5 { padding-left: 3rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-n1 { margin: -0.25rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-n1, .my-xl-n1 { margin-top: -0.25rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-n1, .mx-xl-n1 { margin-right: -0.25rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-n1, .my-xl-n1 { margin-bottom: -0.25rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-n1, .mx-xl-n1 { margin-left: -0.25rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-n2 { margin: -0.5rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-n2, .my-xl-n2 { margin-top: -0.5rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-n2, .mx-xl-n2 { margin-right: -0.5rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-n2, .my-xl-n2 { margin-bottom: -0.5rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-n2, .mx-xl-n2 { margin-left: -0.5rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-n3 { margin: -1rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-n3, .my-xl-n3 { margin-top: -1rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-n3, .mx-xl-n3 { margin-right: -1rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-n3, .my-xl-n3 { margin-bottom: -1rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-n3, .mx-xl-n3 { margin-left: -1rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-n4 { margin: -1.5rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-n4, .my-xl-n4 { margin-top: -1.5rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-n4, .mx-xl-n4 { margin-right: -1.5rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-n4, .my-xl-n4 { margin-bottom: -1.5rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-n4, .mx-xl-n4 { margin-left: -1.5rem !important; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-n5 { margin: -3rem !important; } - /* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-n5, .my-xl-n5 { margin-top: -3rem !important; } - /* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-n5, .mx-xl-n5 { margin-right: -3rem !important; } - /* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-n5, .my-xl-n5 { margin-bottom: -3rem !important; } - /* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-n5, .mx-xl-n5 { margin-left: -3rem !important; } - /* line 55, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .m-xl-auto { margin: auto !important; } - /* line 56, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mt-xl-auto, .my-xl-auto { margin-top: auto !important; } - /* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mr-xl-auto, .mx-xl-auto { margin-right: auto !important; } - /* line 64, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .mb-xl-auto, .my-xl-auto { margin-bottom: auto !important; } - /* line 68, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ + /* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */ .ml-xl-auto, .mx-xl-auto { margin-left: auto !important; } } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-monospace { font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-justify { text-align: justify !important; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-wrap { white-space: normal !important; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-nowrap { white-space: nowrap !important; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } -/* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-left { text-align: left !important; } -/* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-right { text-align: right !important; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-center { text-align: center !important; } @media (min-width: 576px) { - /* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-sm-left { text-align: left !important; } - /* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-sm-right { text-align: right !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-sm-center { text-align: center !important; } } @media (min-width: 768px) { - /* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-md-left { text-align: left !important; } - /* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-md-right { text-align: right !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-md-center { text-align: center !important; } } @media (min-width: 992px) { - /* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-lg-left { text-align: left !important; } - /* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-lg-right { text-align: right !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-lg-center { text-align: center !important; } } @media (min-width: 1200px) { - /* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-xl-left { text-align: left !important; } - /* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-xl-right { text-align: right !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-xl-center { text-align: center !important; } } -/* line 30, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-lowercase { text-transform: lowercase !important; } -/* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-uppercase { text-transform: uppercase !important; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-capitalize { text-transform: capitalize !important; } -/* line 36, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .font-weight-light { font-weight: 300 !important; } -/* line 37, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 37, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .font-weight-lighter { font-weight: lighter !important; } -/* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .font-weight-normal { font-weight: 400 !important; } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .font-weight-bold { font-weight: 700 !important; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .font-weight-bolder { font-weight: bolder !important; } -/* line 41, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .font-italic { font-style: italic !important; } -/* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-white { color: #fff !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ .text-primary { color: #007bff !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.text-primary:hover, a.text-primary:focus { color: #0056b3 !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ .text-secondary { color: #6c757d !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.text-secondary:hover, a.text-secondary:focus { color: #494f54 !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ .text-success { color: #28a745 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.text-success:hover, a.text-success:focus { color: #19692c !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ .text-info { color: #17a2b8 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.text-info:hover, a.text-info:focus { color: #0f6674 !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ .text-warning { color: #ffc107 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.text-warning:hover, a.text-warning:focus { color: #ba8b00 !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ .text-danger { color: #dc3545 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.text-danger:hover, a.text-danger:focus { color: #a71d2a !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ .text-light { color: #f8f9fa !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.text-light:hover, a.text-light:focus { color: #cbd3da !important; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */ .text-dark { color: #343a40 !important; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/mixins/_hover.scss */ a.text-dark:hover, a.text-dark:focus { color: #121416 !important; } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-body { color: #212529 !important; } -/* line 52, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-muted { color: #6c757d !important; } -/* line 54, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-black-50 { color: rgba(0, 0, 0, 0.5) !important; } -/* line 55, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-white-50 { color: rgba(255, 255, 255, 0.5) !important; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-hide { font: 0/0 a; color: transparent; @@ -11852,75 +11852,75 @@ a.text-dark:hover, a.text-dark:focus { border: 0; } -/* line 63, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-decoration-none { text-decoration: none !important; } -/* line 65, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 65, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-break { word-break: break-word !important; overflow-wrap: break-word !important; } -/* line 72, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ +/* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_text.scss */ .text-reset { color: inherit !important; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_visibility.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_visibility.scss */ .visible { visibility: visible !important; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_visibility.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/utilities/_visibility.scss */ .invisible { visibility: hidden !important; } @media print { - /* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ *, *::before, *::after { text-shadow: none !important; box-shadow: none !important; } - /* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ a:not(.btn) { text-decoration: underline; } - /* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ abbr[title]::after { content: " (" attr(title) ")"; } - /* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ pre { white-space: pre-wrap !important; } - /* line 52, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ pre, blockquote { border: 1px solid #adb5bd; page-break-inside: avoid; } - /* line 63, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ thead { display: table-header-group; } - /* line 67, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ tr, img { page-break-inside: avoid; } - /* line 72, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ p, h2, h3 { orphans: 3; widows: 3; } - /* line 79, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 79, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ h2, h3 { page-break-after: avoid; @@ -11928,48 +11928,48 @@ a.text-dark:hover, a.text-dark:focus { @page { size: a3; } - /* line 92, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 92, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ body { min-width: 992px !important; } - /* line 95, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ .container { min-width: 992px !important; } - /* line 100, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ .navbar { display: none; } - /* line 103, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 103, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ .badge { border: 1px solid #000; } - /* line 107, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 107, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ .table { border-collapse: collapse !important; } - /* line 110, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 110, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ .table td, .table th { background-color: #fff !important; } - /* line 117, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ .table-bordered th, .table-bordered td { border: 1px solid #dee2e6 !important; } - /* line 123, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 123, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ .table-dark { color: inherit; } - /* line 126, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 126, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ .table-dark th, .table-dark td, .table-dark thead th, .table-dark tbody + tbody { border-color: #dee2e6; } - /* line 134, ../../../../../Library/Ruby/Gems/2.3.0/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ + /* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/bootstrap-4.3.1/assets/stylesheets/bootstrap/_print.scss */ .table .thead-dark th { color: inherit; border-color: #dee2e6; @@ -11990,7 +11990,7 @@ a.text-dark:hover, a.text-dark:focus { font-style: normal; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_core.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_core.scss */ .fa { display: inline-block; font: normal normal normal 14px/1 FontAwesome; @@ -12001,52 +12001,52 @@ a.text-dark:hover, a.text-dark:focus { } /* makes the font 33% larger relative to the icon container */ -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ .fa-lg { font-size: 1.33333em; line-height: 0.75em; vertical-align: -15%; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ .fa-2x { font-size: 2em; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ .fa-3x { font-size: 3em; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ .fa-4x { font-size: 4em; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_larger.scss */ .fa-5x { font-size: 5em; } -/* line 3, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_fixed-width.scss */ +/* line 3, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_fixed-width.scss */ .fa-fw { width: 1.28571em; text-align: center; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ .fa-ul { padding-left: 0; margin-left: 2.14286em; list-style-type: none; } -/* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ .fa-ul > li { position: relative; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ .fa-li { position: absolute; left: -2.14286em; @@ -12055,66 +12055,66 @@ a.text-dark:hover, a.text-dark:focus { text-align: center; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_list.scss */ .fa-li.fa-lg { left: -1.85714em; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ .fa-border { padding: .2em .25em .15em; border: solid 0.08em #eee; border-radius: .1em; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ .fa-pull-left { float: left; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ .fa-pull-right { float: right; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ .fa.fa-pull-left { margin-right: .3em; } -/* line 15, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ .fa.fa-pull-right { margin-left: .3em; } /* Deprecated as of 4.4.0 */ -/* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ .pull-right { float: right; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ .pull-left { float: left; } -/* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ .fa.pull-left { margin-right: .3em; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */ .fa.pull-right { margin-left: .3em; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_animated.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_animated.scss */ .fa-spin { -webkit-animation: fa-spin 2s infinite linear; animation: fa-spin 2s infinite linear; } -/* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_animated.scss */ +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_animated.scss */ .fa-pulse { -webkit-animation: fa-spin 1s infinite steps(8); animation: fa-spin 1s infinite steps(8); @@ -12142,42 +12142,42 @@ a.text-dark:hover, a.text-dark:focus { } } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ .fa-rotate-90 { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; -webkit-transform: rotate(90deg); transform: rotate(90deg); } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ .fa-rotate-180 { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; -webkit-transform: rotate(180deg); transform: rotate(180deg); } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ .fa-rotate-270 { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; -webkit-transform: rotate(270deg); transform: rotate(270deg); } -/* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ .fa-flip-horizontal { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; -webkit-transform: scale(-1, 1); transform: scale(-1, 1); } -/* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ .fa-flip-vertical { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; -webkit-transform: scale(1, -1); transform: scale(1, -1); } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */ :root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, @@ -12187,7 +12187,7 @@ a.text-dark:hover, a.text-dark:focus { filter: none; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ .fa-stack { position: relative; display: inline-block; @@ -12197,7 +12197,7 @@ a.text-dark:hover, a.text-dark:focus { vertical-align: middle; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ .fa-stack-1x, .fa-stack-2x { position: absolute; left: 0; @@ -12205,1605 +12205,1605 @@ a.text-dark:hover, a.text-dark:focus { text-align: center; } -/* line 18, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ +/* line 18, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ .fa-stack-1x { line-height: inherit; } -/* line 19, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ +/* line 19, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ .fa-stack-2x { font-size: 2em; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_stacked.scss */ .fa-inverse { color: #fff; } /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons */ -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-glass:before { content: ""; } -/* line 5, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 5, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-music:before { content: ""; } -/* line 6, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 6, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-search:before { content: ""; } -/* line 7, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 7, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-envelope-o:before { content: ""; } -/* line 8, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 8, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-heart:before { content: ""; } -/* line 9, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 9, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-star:before { content: ""; } -/* line 10, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 10, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-star-o:before { content: ""; } -/* line 11, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 11, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-user:before { content: ""; } -/* line 12, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 12, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-film:before { content: ""; } -/* line 13, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 13, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-th-large:before { content: ""; } -/* line 14, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 14, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-th:before { content: ""; } -/* line 15, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 15, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-th-list:before { content: ""; } -/* line 16, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 16, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-check:before { content: ""; } -/* line 17, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 17, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-remove:before, .fa-close:before, .fa-times:before { content: ""; } -/* line 20, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 20, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-search-plus:before { content: ""; } -/* line 21, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 21, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-search-minus:before { content: ""; } -/* line 22, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 22, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-power-off:before { content: ""; } -/* line 23, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 23, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-signal:before { content: ""; } -/* line 24, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 24, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-gear:before, .fa-cog:before { content: ""; } -/* line 26, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 26, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-trash-o:before { content: ""; } -/* line 27, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 27, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-home:before { content: ""; } -/* line 28, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 28, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-o:before { content: ""; } -/* line 29, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 29, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-clock-o:before { content: ""; } -/* line 30, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 30, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-road:before { content: ""; } -/* line 31, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 31, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-download:before { content: ""; } -/* line 32, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 32, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-circle-o-down:before { content: ""; } -/* line 33, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 33, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-circle-o-up:before { content: ""; } -/* line 34, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 34, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-inbox:before { content: ""; } -/* line 35, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 35, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-play-circle-o:before { content: ""; } -/* line 36, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 36, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-rotate-right:before, .fa-repeat:before { content: ""; } -/* line 38, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 38, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-refresh:before { content: ""; } -/* line 39, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 39, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-list-alt:before { content: ""; } -/* line 40, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 40, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-lock:before { content: ""; } -/* line 41, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 41, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-flag:before { content: ""; } -/* line 42, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 42, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-headphones:before { content: ""; } -/* line 43, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 43, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-volume-off:before { content: ""; } -/* line 44, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 44, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-volume-down:before { content: ""; } -/* line 45, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 45, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-volume-up:before { content: ""; } -/* line 46, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 46, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-qrcode:before { content: ""; } -/* line 47, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 47, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-barcode:before { content: ""; } -/* line 48, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 48, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tag:before { content: ""; } -/* line 49, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 49, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tags:before { content: ""; } -/* line 50, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 50, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-book:before { content: ""; } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bookmark:before { content: ""; } -/* line 52, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 52, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-print:before { content: ""; } -/* line 53, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 53, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-camera:before { content: ""; } -/* line 54, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 54, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-font:before { content: ""; } -/* line 55, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 55, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bold:before { content: ""; } -/* line 56, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 56, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-italic:before { content: ""; } -/* line 57, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 57, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-text-height:before { content: ""; } -/* line 58, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 58, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-text-width:before { content: ""; } -/* line 59, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 59, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-align-left:before { content: ""; } -/* line 60, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 60, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-align-center:before { content: ""; } -/* line 61, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 61, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-align-right:before { content: ""; } -/* line 62, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 62, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-align-justify:before { content: ""; } -/* line 63, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 63, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-list:before { content: ""; } -/* line 64, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 64, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-dedent:before, .fa-outdent:before { content: ""; } -/* line 66, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 66, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-indent:before { content: ""; } -/* line 67, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 67, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-video-camera:before { content: ""; } -/* line 68, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 68, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-photo:before, .fa-image:before, .fa-picture-o:before { content: ""; } -/* line 71, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 71, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pencil:before { content: ""; } -/* line 72, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 72, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-map-marker:before { content: ""; } -/* line 73, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 73, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-adjust:before { content: ""; } -/* line 74, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 74, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tint:before { content: ""; } -/* line 75, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 75, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-edit:before, .fa-pencil-square-o:before { content: ""; } -/* line 77, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 77, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-share-square-o:before { content: ""; } -/* line 78, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 78, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-check-square-o:before { content: ""; } -/* line 79, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 79, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrows:before { content: ""; } -/* line 80, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 80, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-step-backward:before { content: ""; } -/* line 81, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 81, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-fast-backward:before { content: ""; } -/* line 82, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 82, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-backward:before { content: ""; } -/* line 83, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 83, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-play:before { content: ""; } -/* line 84, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 84, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pause:before { content: ""; } -/* line 85, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 85, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-stop:before { content: ""; } -/* line 86, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 86, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-forward:before { content: ""; } -/* line 87, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 87, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-fast-forward:before { content: ""; } -/* line 88, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 88, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-step-forward:before { content: ""; } -/* line 89, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 89, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-eject:before { content: ""; } -/* line 90, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 90, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-chevron-left:before { content: ""; } -/* line 91, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 91, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-chevron-right:before { content: ""; } -/* line 92, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 92, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-plus-circle:before { content: ""; } -/* line 93, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 93, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-minus-circle:before { content: ""; } -/* line 94, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 94, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-times-circle:before { content: ""; } -/* line 95, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 95, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-check-circle:before { content: ""; } -/* line 96, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 96, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-question-circle:before { content: ""; } -/* line 97, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 97, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-info-circle:before { content: ""; } -/* line 98, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 98, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-crosshairs:before { content: ""; } -/* line 99, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 99, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-times-circle-o:before { content: ""; } -/* line 100, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 100, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-check-circle-o:before { content: ""; } -/* line 101, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 101, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ban:before { content: ""; } -/* line 102, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 102, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-left:before { content: ""; } -/* line 103, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 103, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-right:before { content: ""; } -/* line 104, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 104, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-up:before { content: ""; } -/* line 105, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 105, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-down:before { content: ""; } -/* line 106, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 106, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mail-forward:before, .fa-share:before { content: ""; } -/* line 108, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 108, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-expand:before { content: ""; } -/* line 109, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 109, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-compress:before { content: ""; } -/* line 110, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 110, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-plus:before { content: ""; } -/* line 111, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 111, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-minus:before { content: ""; } -/* line 112, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 112, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-asterisk:before { content: ""; } -/* line 113, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 113, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-exclamation-circle:before { content: ""; } -/* line 114, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 114, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-gift:before { content: ""; } -/* line 115, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 115, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-leaf:before { content: ""; } -/* line 116, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 116, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-fire:before { content: ""; } -/* line 117, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 117, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-eye:before { content: ""; } -/* line 118, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 118, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-eye-slash:before { content: ""; } -/* line 119, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 119, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-warning:before, .fa-exclamation-triangle:before { content: ""; } -/* line 121, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 121, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-plane:before { content: ""; } -/* line 122, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 122, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-calendar:before { content: ""; } -/* line 123, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 123, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-random:before { content: ""; } -/* line 124, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 124, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-comment:before { content: ""; } -/* line 125, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 125, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-magnet:before { content: ""; } -/* line 126, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 126, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-chevron-up:before { content: ""; } -/* line 127, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 127, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-chevron-down:before { content: ""; } -/* line 128, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 128, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-retweet:before { content: ""; } -/* line 129, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 129, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-shopping-cart:before { content: ""; } -/* line 130, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 130, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-folder:before { content: ""; } -/* line 131, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 131, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-folder-open:before { content: ""; } -/* line 132, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 132, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrows-v:before { content: ""; } -/* line 133, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 133, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrows-h:before { content: ""; } -/* line 134, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 134, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bar-chart-o:before, .fa-bar-chart:before { content: ""; } -/* line 136, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 136, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-twitter-square:before { content: ""; } -/* line 137, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 137, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-facebook-square:before { content: ""; } -/* line 138, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 138, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-camera-retro:before { content: ""; } -/* line 139, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 139, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-key:before { content: ""; } -/* line 140, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 140, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-gears:before, .fa-cogs:before { content: ""; } -/* line 142, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 142, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-comments:before { content: ""; } -/* line 143, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 143, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-thumbs-o-up:before { content: ""; } -/* line 144, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 144, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-thumbs-o-down:before { content: ""; } -/* line 145, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 145, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-star-half:before { content: ""; } -/* line 146, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 146, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-heart-o:before { content: ""; } -/* line 147, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 147, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sign-out:before { content: ""; } -/* line 148, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 148, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-linkedin-square:before { content: ""; } -/* line 149, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 149, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-thumb-tack:before { content: ""; } -/* line 150, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 150, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-external-link:before { content: ""; } -/* line 151, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 151, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sign-in:before { content: ""; } -/* line 152, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 152, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-trophy:before { content: ""; } -/* line 153, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 153, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-github-square:before { content: ""; } -/* line 154, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 154, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-upload:before { content: ""; } -/* line 155, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 155, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-lemon-o:before { content: ""; } -/* line 156, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 156, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-phone:before { content: ""; } -/* line 157, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 157, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-square-o:before { content: ""; } -/* line 158, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 158, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bookmark-o:before { content: ""; } -/* line 159, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 159, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-phone-square:before { content: ""; } -/* line 160, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 160, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-twitter:before { content: ""; } -/* line 161, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 161, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-facebook-f:before, .fa-facebook:before { content: ""; } -/* line 163, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 163, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-github:before { content: ""; } -/* line 164, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 164, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-unlock:before { content: ""; } -/* line 165, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 165, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-credit-card:before { content: ""; } -/* line 166, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 166, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-feed:before, .fa-rss:before { content: ""; } -/* line 168, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 168, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hdd-o:before { content: ""; } -/* line 169, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 169, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bullhorn:before { content: ""; } -/* line 170, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 170, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bell:before { content: ""; } -/* line 171, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 171, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-certificate:before { content: ""; } -/* line 172, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 172, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-o-right:before { content: ""; } -/* line 173, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 173, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-o-left:before { content: ""; } -/* line 174, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 174, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-o-up:before { content: ""; } -/* line 175, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 175, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-o-down:before { content: ""; } -/* line 176, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 176, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-circle-left:before { content: ""; } -/* line 177, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 177, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-circle-right:before { content: ""; } -/* line 178, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 178, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-circle-up:before { content: ""; } -/* line 179, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 179, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-circle-down:before { content: ""; } -/* line 180, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 180, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-globe:before { content: ""; } -/* line 181, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 181, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-wrench:before { content: ""; } -/* line 182, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 182, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tasks:before { content: ""; } -/* line 183, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 183, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-filter:before { content: ""; } -/* line 184, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 184, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-briefcase:before { content: ""; } -/* line 185, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 185, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrows-alt:before { content: ""; } -/* line 186, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 186, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-group:before, .fa-users:before { content: ""; } -/* line 188, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 188, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-chain:before, .fa-link:before { content: ""; } -/* line 190, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 190, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cloud:before { content: ""; } -/* line 191, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 191, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-flask:before { content: ""; } -/* line 192, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 192, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cut:before, .fa-scissors:before { content: ""; } -/* line 194, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 194, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-copy:before, .fa-files-o:before { content: ""; } -/* line 196, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 196, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-paperclip:before { content: ""; } -/* line 197, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 197, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-save:before, .fa-floppy-o:before { content: ""; } -/* line 199, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 199, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-square:before { content: ""; } -/* line 200, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 200, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-navicon:before, .fa-reorder:before, .fa-bars:before { content: ""; } -/* line 203, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 203, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-list-ul:before { content: ""; } -/* line 204, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 204, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-list-ol:before { content: ""; } -/* line 205, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 205, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-strikethrough:before { content: ""; } -/* line 206, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 206, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-underline:before { content: ""; } -/* line 207, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 207, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-table:before { content: ""; } -/* line 208, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 208, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-magic:before { content: ""; } -/* line 209, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 209, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-truck:before { content: ""; } -/* line 210, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 210, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pinterest:before { content: ""; } -/* line 211, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 211, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pinterest-square:before { content: ""; } -/* line 212, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 212, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-google-plus-square:before { content: ""; } -/* line 213, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 213, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-google-plus:before { content: ""; } -/* line 214, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 214, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-money:before { content: ""; } -/* line 215, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 215, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-caret-down:before { content: ""; } -/* line 216, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 216, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-caret-up:before { content: ""; } -/* line 217, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 217, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-caret-left:before { content: ""; } -/* line 218, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 218, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-caret-right:before { content: ""; } -/* line 219, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 219, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-columns:before { content: ""; } -/* line 220, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 220, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-unsorted:before, .fa-sort:before { content: ""; } -/* line 222, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 222, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sort-down:before, .fa-sort-desc:before { content: ""; } -/* line 224, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 224, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sort-up:before, .fa-sort-asc:before { content: ""; } -/* line 226, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 226, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-envelope:before { content: ""; } -/* line 227, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 227, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-linkedin:before { content: ""; } -/* line 228, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 228, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-rotate-left:before, .fa-undo:before { content: ""; } -/* line 230, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 230, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-legal:before, .fa-gavel:before { content: ""; } -/* line 232, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 232, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-dashboard:before, .fa-tachometer:before { content: ""; } -/* line 234, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 234, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-comment-o:before { content: ""; } -/* line 235, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 235, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-comments-o:before { content: ""; } -/* line 236, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 236, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-flash:before, .fa-bolt:before { content: ""; } -/* line 238, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 238, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sitemap:before { content: ""; } -/* line 239, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 239, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-umbrella:before { content: ""; } -/* line 240, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 240, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-paste:before, .fa-clipboard:before { content: ""; } -/* line 242, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 242, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-lightbulb-o:before { content: ""; } -/* line 243, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 243, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-exchange:before { content: ""; } -/* line 244, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 244, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cloud-download:before { content: ""; } -/* line 245, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 245, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cloud-upload:before { content: ""; } -/* line 246, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 246, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-user-md:before { content: ""; } -/* line 247, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 247, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-stethoscope:before { content: ""; } -/* line 248, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 248, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-suitcase:before { content: ""; } -/* line 249, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 249, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bell-o:before { content: ""; } -/* line 250, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 250, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-coffee:before { content: ""; } -/* line 251, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 251, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cutlery:before { content: ""; } -/* line 252, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 252, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-text-o:before { content: ""; } -/* line 253, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 253, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-building-o:before { content: ""; } -/* line 254, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 254, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hospital-o:before { content: ""; } -/* line 255, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 255, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ambulance:before { content: ""; } -/* line 256, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 256, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-medkit:before { content: ""; } -/* line 257, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 257, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-fighter-jet:before { content: ""; } -/* line 258, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 258, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-beer:before { content: ""; } -/* line 259, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 259, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-h-square:before { content: ""; } -/* line 260, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 260, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-plus-square:before { content: ""; } -/* line 261, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 261, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-angle-double-left:before { content: ""; } -/* line 262, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 262, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-angle-double-right:before { content: ""; } -/* line 263, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 263, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-angle-double-up:before { content: ""; } -/* line 264, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 264, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-angle-double-down:before { content: ""; } -/* line 265, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 265, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-angle-left:before { content: ""; } -/* line 266, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 266, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-angle-right:before { content: ""; } -/* line 267, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 267, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-angle-up:before { content: ""; } -/* line 268, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 268, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-angle-down:before { content: ""; } -/* line 269, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 269, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-desktop:before { content: ""; } -/* line 270, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 270, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-laptop:before { content: ""; } -/* line 271, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 271, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tablet:before { content: ""; } -/* line 272, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 272, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mobile-phone:before, .fa-mobile:before { content: ""; } -/* line 274, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 274, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-circle-o:before { content: ""; } -/* line 275, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 275, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-quote-left:before { content: ""; } -/* line 276, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 276, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-quote-right:before { content: ""; } -/* line 277, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 277, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-spinner:before { content: ""; } -/* line 278, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 278, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-circle:before { content: ""; } -/* line 279, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 279, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mail-reply:before, .fa-reply:before { content: ""; } -/* line 281, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 281, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-github-alt:before { content: ""; } -/* line 282, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 282, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-folder-o:before { content: ""; } -/* line 283, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 283, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-folder-open-o:before { content: ""; } -/* line 284, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 284, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-smile-o:before { content: ""; } -/* line 285, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 285, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-frown-o:before { content: ""; } -/* line 286, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 286, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-meh-o:before { content: ""; } -/* line 287, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 287, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-gamepad:before { content: ""; } -/* line 288, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 288, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-keyboard-o:before { content: ""; } -/* line 289, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 289, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-flag-o:before { content: ""; } -/* line 290, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 290, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-flag-checkered:before { content: ""; } -/* line 291, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 291, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-terminal:before { content: ""; } -/* line 292, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 292, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-code:before { content: ""; } -/* line 293, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 293, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mail-reply-all:before, .fa-reply-all:before { content: ""; } -/* line 295, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 295, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before { content: ""; } -/* line 298, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 298, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-location-arrow:before { content: ""; } -/* line 299, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 299, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-crop:before { content: ""; } -/* line 300, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 300, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-code-fork:before { content: ""; } -/* line 301, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 301, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-unlink:before, .fa-chain-broken:before { content: ""; } -/* line 303, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 303, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-question:before { content: ""; } -/* line 304, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 304, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-info:before { content: ""; } -/* line 305, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 305, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-exclamation:before { content: ""; } -/* line 306, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 306, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-superscript:before { content: ""; } -/* line 307, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 307, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-subscript:before { content: ""; } -/* line 308, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 308, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-eraser:before { content: ""; } -/* line 309, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 309, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-puzzle-piece:before { content: ""; } -/* line 310, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 310, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-microphone:before { content: ""; } -/* line 311, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 311, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-microphone-slash:before { content: ""; } -/* line 312, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 312, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-shield:before { content: ""; } -/* line 313, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 313, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-calendar-o:before { content: ""; } -/* line 314, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 314, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-fire-extinguisher:before { content: ""; } -/* line 315, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 315, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-rocket:before { content: ""; } -/* line 316, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 316, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-maxcdn:before { content: ""; } -/* line 317, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 317, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-chevron-circle-left:before { content: ""; } -/* line 318, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 318, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-chevron-circle-right:before { content: ""; } -/* line 319, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 319, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-chevron-circle-up:before { content: ""; } -/* line 320, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 320, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-chevron-circle-down:before { content: ""; } -/* line 321, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 321, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-html5:before { content: ""; } -/* line 322, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 322, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-css3:before { content: ""; } -/* line 323, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 323, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-anchor:before { content: ""; } -/* line 324, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 324, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-unlock-alt:before { content: ""; } -/* line 325, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 325, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bullseye:before { content: ""; } -/* line 326, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 326, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ellipsis-h:before { content: ""; } -/* line 327, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 327, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ellipsis-v:before { content: ""; } -/* line 328, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 328, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-rss-square:before { content: ""; } -/* line 329, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 329, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-play-circle:before { content: ""; } -/* line 330, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 330, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ticket:before { content: ""; } -/* line 331, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 331, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-minus-square:before { content: ""; } -/* line 332, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 332, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-minus-square-o:before { content: ""; } -/* line 333, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 333, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-level-up:before { content: ""; } -/* line 334, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 334, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-level-down:before { content: ""; } -/* line 335, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 335, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-check-square:before { content: ""; } -/* line 336, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 336, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pencil-square:before { content: ""; } -/* line 337, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 337, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-external-link-square:before { content: ""; } -/* line 338, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 338, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-share-square:before { content: ""; } -/* line 339, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 339, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-compass:before { content: ""; } -/* line 340, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 340, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-toggle-down:before, .fa-caret-square-o-down:before { content: ""; } -/* line 342, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 342, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-toggle-up:before, .fa-caret-square-o-up:before { content: ""; } -/* line 344, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 344, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-toggle-right:before, .fa-caret-square-o-right:before { content: ""; } -/* line 346, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 346, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-euro:before, .fa-eur:before { content: ""; } -/* line 348, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 348, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-gbp:before { content: ""; } -/* line 349, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 349, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-dollar:before, .fa-usd:before { content: ""; } -/* line 351, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 351, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-rupee:before, .fa-inr:before { content: ""; } -/* line 353, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 353, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cny:before, .fa-rmb:before, .fa-yen:before, @@ -13811,574 +13811,574 @@ a.text-dark:hover, a.text-dark:focus { content: ""; } -/* line 357, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 357, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ruble:before, .fa-rouble:before, .fa-rub:before { content: ""; } -/* line 360, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 360, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-won:before, .fa-krw:before { content: ""; } -/* line 362, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 362, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bitcoin:before, .fa-btc:before { content: ""; } -/* line 364, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 364, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file:before { content: ""; } -/* line 365, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 365, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-text:before { content: ""; } -/* line 366, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 366, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sort-alpha-asc:before { content: ""; } -/* line 367, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 367, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sort-alpha-desc:before { content: ""; } -/* line 368, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 368, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sort-amount-asc:before { content: ""; } -/* line 369, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 369, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sort-amount-desc:before { content: ""; } -/* line 370, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 370, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sort-numeric-asc:before { content: ""; } -/* line 371, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 371, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sort-numeric-desc:before { content: ""; } -/* line 372, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 372, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-thumbs-up:before { content: ""; } -/* line 373, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 373, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-thumbs-down:before { content: ""; } -/* line 374, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 374, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-youtube-square:before { content: ""; } -/* line 375, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 375, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-youtube:before { content: ""; } -/* line 376, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 376, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-xing:before { content: ""; } -/* line 377, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 377, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-xing-square:before { content: ""; } -/* line 378, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 378, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-youtube-play:before { content: ""; } -/* line 379, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 379, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-dropbox:before { content: ""; } -/* line 380, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 380, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-stack-overflow:before { content: ""; } -/* line 381, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 381, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-instagram:before { content: ""; } -/* line 382, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 382, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-flickr:before { content: ""; } -/* line 383, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 383, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-adn:before { content: ""; } -/* line 384, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 384, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bitbucket:before { content: ""; } -/* line 385, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 385, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bitbucket-square:before { content: ""; } -/* line 386, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 386, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tumblr:before { content: ""; } -/* line 387, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 387, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tumblr-square:before { content: ""; } -/* line 388, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 388, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-long-arrow-down:before { content: ""; } -/* line 389, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 389, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-long-arrow-up:before { content: ""; } -/* line 390, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 390, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-long-arrow-left:before { content: ""; } -/* line 391, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 391, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-long-arrow-right:before { content: ""; } -/* line 392, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 392, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-apple:before { content: ""; } -/* line 393, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 393, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-windows:before { content: ""; } -/* line 394, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 394, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-android:before { content: ""; } -/* line 395, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 395, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-linux:before { content: ""; } -/* line 396, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 396, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-dribbble:before { content: ""; } -/* line 397, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 397, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-skype:before { content: ""; } -/* line 398, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 398, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-foursquare:before { content: ""; } -/* line 399, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 399, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-trello:before { content: ""; } -/* line 400, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 400, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-female:before { content: ""; } -/* line 401, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 401, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-male:before { content: ""; } -/* line 402, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 402, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-gittip:before, .fa-gratipay:before { content: ""; } -/* line 404, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 404, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sun-o:before { content: ""; } -/* line 405, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 405, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-moon-o:before { content: ""; } -/* line 406, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 406, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-archive:before { content: ""; } -/* line 407, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 407, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bug:before { content: ""; } -/* line 408, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 408, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-vk:before { content: ""; } -/* line 409, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 409, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-weibo:before { content: ""; } -/* line 410, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 410, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-renren:before { content: ""; } -/* line 411, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 411, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pagelines:before { content: ""; } -/* line 412, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 412, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-stack-exchange:before { content: ""; } -/* line 413, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 413, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-circle-o-right:before { content: ""; } -/* line 414, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 414, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-arrow-circle-o-left:before { content: ""; } -/* line 415, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 415, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-toggle-left:before, .fa-caret-square-o-left:before { content: ""; } -/* line 417, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 417, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-dot-circle-o:before { content: ""; } -/* line 418, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 418, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-wheelchair:before { content: ""; } -/* line 419, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 419, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-vimeo-square:before { content: ""; } -/* line 420, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 420, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-turkish-lira:before, .fa-try:before { content: ""; } -/* line 422, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 422, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-plus-square-o:before { content: ""; } -/* line 423, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 423, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-space-shuttle:before { content: ""; } -/* line 424, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 424, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-slack:before { content: ""; } -/* line 425, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 425, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-envelope-square:before { content: ""; } -/* line 426, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 426, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-wordpress:before { content: ""; } -/* line 427, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 427, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-openid:before { content: ""; } -/* line 428, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 428, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-institution:before, .fa-bank:before, .fa-university:before { content: ""; } -/* line 431, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 431, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mortar-board:before, .fa-graduation-cap:before { content: ""; } -/* line 433, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 433, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-yahoo:before { content: ""; } -/* line 434, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 434, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-google:before { content: ""; } -/* line 435, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 435, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-reddit:before { content: ""; } -/* line 436, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 436, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-reddit-square:before { content: ""; } -/* line 437, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 437, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-stumbleupon-circle:before { content: ""; } -/* line 438, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 438, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-stumbleupon:before { content: ""; } -/* line 439, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 439, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-delicious:before { content: ""; } -/* line 440, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 440, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-digg:before { content: ""; } -/* line 441, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 441, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pied-piper-pp:before { content: ""; } -/* line 442, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 442, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pied-piper-alt:before { content: ""; } -/* line 443, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 443, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-drupal:before { content: ""; } -/* line 444, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 444, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-joomla:before { content: ""; } -/* line 445, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 445, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-language:before { content: ""; } -/* line 446, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 446, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-fax:before { content: ""; } -/* line 447, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 447, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-building:before { content: ""; } -/* line 448, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 448, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-child:before { content: ""; } -/* line 449, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 449, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-paw:before { content: ""; } -/* line 450, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 450, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-spoon:before { content: ""; } -/* line 451, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 451, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cube:before { content: ""; } -/* line 452, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 452, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cubes:before { content: ""; } -/* line 453, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 453, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-behance:before { content: ""; } -/* line 454, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 454, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-behance-square:before { content: ""; } -/* line 455, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 455, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-steam:before { content: ""; } -/* line 456, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 456, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-steam-square:before { content: ""; } -/* line 457, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 457, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-recycle:before { content: ""; } -/* line 458, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 458, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-automobile:before, .fa-car:before { content: ""; } -/* line 460, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 460, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cab:before, .fa-taxi:before { content: ""; } -/* line 462, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 462, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tree:before { content: ""; } -/* line 463, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 463, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-spotify:before { content: ""; } -/* line 464, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 464, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-deviantart:before { content: ""; } -/* line 465, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 465, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-soundcloud:before { content: ""; } -/* line 466, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 466, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-database:before { content: ""; } -/* line 467, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 467, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-pdf-o:before { content: ""; } -/* line 468, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 468, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-word-o:before { content: ""; } -/* line 469, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 469, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-excel-o:before { content: ""; } -/* line 470, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 470, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-powerpoint-o:before { content: ""; } -/* line 471, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 471, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before { content: ""; } -/* line 474, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 474, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-zip-o:before, .fa-file-archive-o:before { content: ""; } -/* line 476, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 476, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-sound-o:before, .fa-file-audio-o:before { content: ""; } -/* line 478, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 478, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-movie-o:before, .fa-file-video-o:before { content: ""; } -/* line 480, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 480, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-file-code-o:before { content: ""; } -/* line 481, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 481, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-vine:before { content: ""; } -/* line 482, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 482, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-codepen:before { content: ""; } -/* line 483, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 483, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-jsfiddle:before { content: ""; } -/* line 484, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 484, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, @@ -14387,1328 +14387,1328 @@ a.text-dark:hover, a.text-dark:focus { content: ""; } -/* line 489, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 489, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-circle-o-notch:before { content: ""; } -/* line 490, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 490, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ra:before, .fa-resistance:before, .fa-rebel:before { content: ""; } -/* line 493, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 493, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ge:before, .fa-empire:before { content: ""; } -/* line 495, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 495, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-git-square:before { content: ""; } -/* line 496, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 496, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-git:before { content: ""; } -/* line 497, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 497, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before { content: ""; } -/* line 500, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 500, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tencent-weibo:before { content: ""; } -/* line 501, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 501, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-qq:before { content: ""; } -/* line 502, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 502, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-wechat:before, .fa-weixin:before { content: ""; } -/* line 504, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 504, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-send:before, .fa-paper-plane:before { content: ""; } -/* line 506, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 506, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-send-o:before, .fa-paper-plane-o:before { content: ""; } -/* line 508, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 508, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-history:before { content: ""; } -/* line 509, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 509, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-circle-thin:before { content: ""; } -/* line 510, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 510, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-header:before { content: ""; } -/* line 511, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 511, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-paragraph:before { content: ""; } -/* line 512, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 512, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sliders:before { content: ""; } -/* line 513, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 513, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-share-alt:before { content: ""; } -/* line 514, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 514, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-share-alt-square:before { content: ""; } -/* line 515, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 515, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bomb:before { content: ""; } -/* line 516, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 516, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-soccer-ball-o:before, .fa-futbol-o:before { content: ""; } -/* line 518, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 518, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tty:before { content: ""; } -/* line 519, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 519, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-binoculars:before { content: ""; } -/* line 520, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 520, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-plug:before { content: ""; } -/* line 521, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 521, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-slideshare:before { content: ""; } -/* line 522, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 522, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-twitch:before { content: ""; } -/* line 523, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 523, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-yelp:before { content: ""; } -/* line 524, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 524, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-newspaper-o:before { content: ""; } -/* line 525, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 525, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-wifi:before { content: ""; } -/* line 526, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 526, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-calculator:before { content: ""; } -/* line 527, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 527, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-paypal:before { content: ""; } -/* line 528, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 528, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-google-wallet:before { content: ""; } -/* line 529, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 529, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cc-visa:before { content: ""; } -/* line 530, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 530, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cc-mastercard:before { content: ""; } -/* line 531, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 531, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cc-discover:before { content: ""; } -/* line 532, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 532, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cc-amex:before { content: ""; } -/* line 533, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 533, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cc-paypal:before { content: ""; } -/* line 534, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 534, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cc-stripe:before { content: ""; } -/* line 535, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 535, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bell-slash:before { content: ""; } -/* line 536, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 536, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bell-slash-o:before { content: ""; } -/* line 537, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 537, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-trash:before { content: ""; } -/* line 538, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 538, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-copyright:before { content: ""; } -/* line 539, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 539, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-at:before { content: ""; } -/* line 540, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 540, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-eyedropper:before { content: ""; } -/* line 541, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 541, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-paint-brush:before { content: ""; } -/* line 542, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 542, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-birthday-cake:before { content: ""; } -/* line 543, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 543, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-area-chart:before { content: ""; } -/* line 544, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 544, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pie-chart:before { content: ""; } -/* line 545, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 545, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-line-chart:before { content: ""; } -/* line 546, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 546, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-lastfm:before { content: ""; } -/* line 547, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 547, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-lastfm-square:before { content: ""; } -/* line 548, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 548, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-toggle-off:before { content: ""; } -/* line 549, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 549, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-toggle-on:before { content: ""; } -/* line 550, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 550, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bicycle:before { content: ""; } -/* line 551, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 551, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bus:before { content: ""; } -/* line 552, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 552, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ioxhost:before { content: ""; } -/* line 553, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 553, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-angellist:before { content: ""; } -/* line 554, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 554, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cc:before { content: ""; } -/* line 555, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 555, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-shekel:before, .fa-sheqel:before, .fa-ils:before { content: ""; } -/* line 558, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 558, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-meanpath:before { content: ""; } -/* line 559, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 559, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-buysellads:before { content: ""; } -/* line 560, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 560, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-connectdevelop:before { content: ""; } -/* line 561, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 561, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-dashcube:before { content: ""; } -/* line 562, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 562, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-forumbee:before { content: ""; } -/* line 563, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 563, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-leanpub:before { content: ""; } -/* line 564, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 564, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sellsy:before { content: ""; } -/* line 565, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 565, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-shirtsinbulk:before { content: ""; } -/* line 566, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 566, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-simplybuilt:before { content: ""; } -/* line 567, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 567, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-skyatlas:before { content: ""; } -/* line 568, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 568, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cart-plus:before { content: ""; } -/* line 569, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 569, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cart-arrow-down:before { content: ""; } -/* line 570, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 570, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-diamond:before { content: ""; } -/* line 571, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 571, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ship:before { content: ""; } -/* line 572, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 572, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-user-secret:before { content: ""; } -/* line 573, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 573, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-motorcycle:before { content: ""; } -/* line 574, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 574, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-street-view:before { content: ""; } -/* line 575, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 575, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-heartbeat:before { content: ""; } -/* line 576, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 576, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-venus:before { content: ""; } -/* line 577, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 577, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mars:before { content: ""; } -/* line 578, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 578, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mercury:before { content: ""; } -/* line 579, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 579, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-intersex:before, .fa-transgender:before { content: ""; } -/* line 581, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 581, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-transgender-alt:before { content: ""; } -/* line 582, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 582, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-venus-double:before { content: ""; } -/* line 583, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 583, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mars-double:before { content: ""; } -/* line 584, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 584, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-venus-mars:before { content: ""; } -/* line 585, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 585, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mars-stroke:before { content: ""; } -/* line 586, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 586, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mars-stroke-v:before { content: ""; } -/* line 587, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 587, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mars-stroke-h:before { content: ""; } -/* line 588, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 588, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-neuter:before { content: ""; } -/* line 589, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 589, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-genderless:before { content: ""; } -/* line 590, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 590, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-facebook-official:before { content: ""; } -/* line 591, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 591, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pinterest-p:before { content: ""; } -/* line 592, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 592, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-whatsapp:before { content: ""; } -/* line 593, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 593, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-server:before { content: ""; } -/* line 594, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 594, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-user-plus:before { content: ""; } -/* line 595, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 595, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-user-times:before { content: ""; } -/* line 596, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 596, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hotel:before, .fa-bed:before { content: ""; } -/* line 598, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 598, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-viacoin:before { content: ""; } -/* line 599, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 599, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-train:before { content: ""; } -/* line 600, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 600, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-subway:before { content: ""; } -/* line 601, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 601, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-medium:before { content: ""; } -/* line 602, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 602, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-yc:before, .fa-y-combinator:before { content: ""; } -/* line 604, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 604, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-optin-monster:before { content: ""; } -/* line 605, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 605, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-opencart:before { content: ""; } -/* line 606, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 606, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-expeditedssl:before { content: ""; } -/* line 607, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 607, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-battery-4:before, .fa-battery:before, .fa-battery-full:before { content: ""; } -/* line 610, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 610, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-battery-3:before, .fa-battery-three-quarters:before { content: ""; } -/* line 612, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 612, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-battery-2:before, .fa-battery-half:before { content: ""; } -/* line 614, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 614, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-battery-1:before, .fa-battery-quarter:before { content: ""; } -/* line 616, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 616, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-battery-0:before, .fa-battery-empty:before { content: ""; } -/* line 618, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 618, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mouse-pointer:before { content: ""; } -/* line 619, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 619, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-i-cursor:before { content: ""; } -/* line 620, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 620, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-object-group:before { content: ""; } -/* line 621, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 621, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-object-ungroup:before { content: ""; } -/* line 622, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 622, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sticky-note:before { content: ""; } -/* line 623, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 623, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-sticky-note-o:before { content: ""; } -/* line 624, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 624, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cc-jcb:before { content: ""; } -/* line 625, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 625, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-cc-diners-club:before { content: ""; } -/* line 626, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 626, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-clone:before { content: ""; } -/* line 627, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 627, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-balance-scale:before { content: ""; } -/* line 628, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 628, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hourglass-o:before { content: ""; } -/* line 629, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 629, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hourglass-1:before, .fa-hourglass-start:before { content: ""; } -/* line 631, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 631, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hourglass-2:before, .fa-hourglass-half:before { content: ""; } -/* line 633, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 633, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hourglass-3:before, .fa-hourglass-end:before { content: ""; } -/* line 635, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 635, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hourglass:before { content: ""; } -/* line 636, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 636, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-grab-o:before, .fa-hand-rock-o:before { content: ""; } -/* line 638, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 638, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-stop-o:before, .fa-hand-paper-o:before { content: ""; } -/* line 640, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 640, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-scissors-o:before { content: ""; } -/* line 641, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 641, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-lizard-o:before { content: ""; } -/* line 642, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 642, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-spock-o:before { content: ""; } -/* line 643, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 643, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-pointer-o:before { content: ""; } -/* line 644, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 644, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hand-peace-o:before { content: ""; } -/* line 645, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 645, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-trademark:before { content: ""; } -/* line 646, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 646, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-registered:before { content: ""; } -/* line 647, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 647, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-creative-commons:before { content: ""; } -/* line 648, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 648, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-gg:before { content: ""; } -/* line 649, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 649, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-gg-circle:before { content: ""; } -/* line 650, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 650, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tripadvisor:before { content: ""; } -/* line 651, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 651, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-odnoklassniki:before { content: ""; } -/* line 652, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 652, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-odnoklassniki-square:before { content: ""; } -/* line 653, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 653, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-get-pocket:before { content: ""; } -/* line 654, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 654, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-wikipedia-w:before { content: ""; } -/* line 655, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 655, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-safari:before { content: ""; } -/* line 656, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 656, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-chrome:before { content: ""; } -/* line 657, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 657, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-firefox:before { content: ""; } -/* line 658, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 658, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-opera:before { content: ""; } -/* line 659, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 659, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-internet-explorer:before { content: ""; } -/* line 660, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 660, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-tv:before, .fa-television:before { content: ""; } -/* line 662, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 662, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-contao:before { content: ""; } -/* line 663, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 663, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-500px:before { content: ""; } -/* line 664, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 664, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-amazon:before { content: ""; } -/* line 665, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 665, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-calendar-plus-o:before { content: ""; } -/* line 666, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 666, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-calendar-minus-o:before { content: ""; } -/* line 667, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 667, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-calendar-times-o:before { content: ""; } -/* line 668, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 668, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-calendar-check-o:before { content: ""; } -/* line 669, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 669, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-industry:before { content: ""; } -/* line 670, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 670, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-map-pin:before { content: ""; } -/* line 671, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 671, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-map-signs:before { content: ""; } -/* line 672, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 672, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-map-o:before { content: ""; } -/* line 673, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 673, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-map:before { content: ""; } -/* line 674, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 674, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-commenting:before { content: ""; } -/* line 675, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 675, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-commenting-o:before { content: ""; } -/* line 676, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 676, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-houzz:before { content: ""; } -/* line 677, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 677, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-vimeo:before { content: ""; } -/* line 678, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 678, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-black-tie:before { content: ""; } -/* line 679, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 679, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-fonticons:before { content: ""; } -/* line 680, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 680, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-reddit-alien:before { content: ""; } -/* line 681, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 681, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-edge:before { content: ""; } -/* line 682, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 682, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-credit-card-alt:before { content: ""; } -/* line 683, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 683, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-codiepie:before { content: ""; } -/* line 684, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 684, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-modx:before { content: ""; } -/* line 685, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 685, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-fort-awesome:before { content: ""; } -/* line 686, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 686, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-usb:before { content: ""; } -/* line 687, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 687, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-product-hunt:before { content: ""; } -/* line 688, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 688, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-mixcloud:before { content: ""; } -/* line 689, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 689, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-scribd:before { content: ""; } -/* line 690, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 690, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pause-circle:before { content: ""; } -/* line 691, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 691, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pause-circle-o:before { content: ""; } -/* line 692, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 692, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-stop-circle:before { content: ""; } -/* line 693, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 693, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-stop-circle-o:before { content: ""; } -/* line 694, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 694, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-shopping-bag:before { content: ""; } -/* line 695, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 695, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-shopping-basket:before { content: ""; } -/* line 696, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 696, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-hashtag:before { content: ""; } -/* line 697, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 697, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bluetooth:before { content: ""; } -/* line 698, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 698, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bluetooth-b:before { content: ""; } -/* line 699, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 699, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-percent:before { content: ""; } -/* line 700, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 700, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-gitlab:before { content: ""; } -/* line 701, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 701, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-wpbeginner:before { content: ""; } -/* line 702, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 702, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-wpforms:before { content: ""; } -/* line 703, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 703, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-envira:before { content: ""; } -/* line 704, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 704, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-universal-access:before { content: ""; } -/* line 705, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 705, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-wheelchair-alt:before { content: ""; } -/* line 706, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 706, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-question-circle-o:before { content: ""; } -/* line 707, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 707, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-blind:before { content: ""; } -/* line 708, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 708, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-audio-description:before { content: ""; } -/* line 709, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 709, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-volume-control-phone:before { content: ""; } -/* line 710, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 710, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-braille:before { content: ""; } -/* line 711, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 711, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-assistive-listening-systems:before { content: ""; } -/* line 712, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 712, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before { content: ""; } -/* line 714, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 714, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before { content: ""; } -/* line 717, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 717, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-glide:before { content: ""; } -/* line 718, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 718, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-glide-g:before { content: ""; } -/* line 719, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 719, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-signing:before, .fa-sign-language:before { content: ""; } -/* line 721, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 721, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-low-vision:before { content: ""; } -/* line 722, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 722, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-viadeo:before { content: ""; } -/* line 723, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 723, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-viadeo-square:before { content: ""; } -/* line 724, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 724, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-snapchat:before { content: ""; } -/* line 725, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 725, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-snapchat-ghost:before { content: ""; } -/* line 726, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 726, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-snapchat-square:before { content: ""; } -/* line 727, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 727, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-pied-piper:before { content: ""; } -/* line 728, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 728, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-first-order:before { content: ""; } -/* line 729, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 729, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-yoast:before { content: ""; } -/* line 730, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 730, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-themeisle:before { content: ""; } -/* line 731, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 731, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-google-plus-circle:before, .fa-google-plus-official:before { content: ""; } -/* line 733, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 733, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-fa:before, .fa-font-awesome:before { content: ""; } -/* line 735, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 735, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-handshake-o:before { content: ""; } -/* line 736, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 736, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-envelope-open:before { content: ""; } -/* line 737, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 737, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-envelope-open-o:before { content: ""; } -/* line 738, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 738, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-linode:before { content: ""; } -/* line 739, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 739, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-address-book:before { content: ""; } -/* line 740, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 740, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-address-book-o:before { content: ""; } -/* line 741, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 741, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-vcard:before, .fa-address-card:before { content: ""; } -/* line 743, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 743, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-vcard-o:before, .fa-address-card-o:before { content: ""; } -/* line 745, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 745, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-user-circle:before { content: ""; } -/* line 746, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 746, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-user-circle-o:before { content: ""; } -/* line 747, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 747, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-user-o:before { content: ""; } -/* line 748, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 748, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-id-badge:before { content: ""; } -/* line 749, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 749, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-drivers-license:before, .fa-id-card:before { content: ""; } -/* line 751, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 751, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-drivers-license-o:before, .fa-id-card-o:before { content: ""; } -/* line 753, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 753, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-quora:before { content: ""; } -/* line 754, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 754, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-free-code-camp:before { content: ""; } -/* line 755, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 755, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-telegram:before { content: ""; } -/* line 756, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 756, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-thermometer-4:before, .fa-thermometer:before, .fa-thermometer-full:before { content: ""; } -/* line 759, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 759, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-thermometer-3:before, .fa-thermometer-three-quarters:before { content: ""; } -/* line 761, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 761, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-thermometer-2:before, .fa-thermometer-half:before { content: ""; } -/* line 763, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 763, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-thermometer-1:before, .fa-thermometer-quarter:before { content: ""; } -/* line 765, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 765, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-thermometer-0:before, .fa-thermometer-empty:before { content: ""; } -/* line 767, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 767, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-shower:before { content: ""; } -/* line 768, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 768, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bathtub:before, .fa-s15:before, .fa-bath:before { content: ""; } -/* line 771, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 771, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-podcast:before { content: ""; } -/* line 772, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 772, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-window-maximize:before { content: ""; } -/* line 773, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 773, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-window-minimize:before { content: ""; } -/* line 774, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 774, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-window-restore:before { content: ""; } -/* line 775, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 775, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-times-rectangle:before, .fa-window-close:before { content: ""; } -/* line 777, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 777, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-times-rectangle-o:before, .fa-window-close-o:before { content: ""; } -/* line 779, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 779, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-bandcamp:before { content: ""; } -/* line 780, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 780, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-grav:before { content: ""; } -/* line 781, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 781, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-etsy:before { content: ""; } -/* line 782, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 782, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-imdb:before { content: ""; } -/* line 783, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 783, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-ravelry:before { content: ""; } -/* line 784, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 784, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-eercast:before { content: ""; } -/* line 785, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 785, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-microchip:before { content: ""; } -/* line 786, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 786, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-snowflake-o:before { content: ""; } -/* line 787, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 787, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-superpowers:before { content: ""; } -/* line 788, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 788, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-wpexplorer:before { content: ""; } -/* line 789, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ +/* line 789, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_icons.scss */ .fa-meetup:before { content: ""; } -/* line 4, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_screen-reader.scss */ +/* line 4, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_screen-reader.scss */ .sr-only { position: absolute; width: 1px; @@ -15720,7 +15720,7 @@ a.text-dark:hover, a.text-dark:focus { border: 0; } -/* line 51, ../../../../../Library/Ruby/Gems/2.3.0/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_mixins.scss */ +/* line 51, ../../../.rvm/gems/ruby-2.3.7@eduplus2/gems/font-awesome-sass-4.7.0/assets/stylesheets/font-awesome/_mixins.scss */ .sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; diff --git a/public/assets/college-38f953d6ba5b85d3fab63cb3c2bbf0d057ccc6454d07cfaafac3b06da37b8437.css.gz b/public/assets/college-38f953d6ba5b85d3fab63cb3c2bbf0d057ccc6454d07cfaafac3b06da37b8437.css.gz new file mode 100644 index 0000000000000000000000000000000000000000..80e2b4cf9853e167f3de7a9d335f95fed75a4255 GIT binary patch literal 43439 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�?qD@V>e^eBk&WfL+4`@Z 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 literal 0 HcmV?d00001 diff --git a/public/assets/college-55ed707c611d1162b786815686efe68ecfb0af719c34efb70a827ead6fc7dfb1.css.gz b/public/assets/college-55ed707c611d1162b786815686efe68ecfb0af719c34efb70a827ead6fc7dfb1.css.gz deleted file mode 100644 index 7ecf087ce0d106bbf693b047b8ad6888658b6bb1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 43436 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