@charset "UTF-8";
:root {
  --main-color: #2083fe;
  --accent-color: #2083fe;
}

@keyframes slide-up-fade-in {
  0% {
    opacity: 0;
    transform: translate(0px, 40px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
@keyframes slide-up-fade-in-disabled {
  0% {
    opacity: 0;
    transform: translate(0px, 40px);
  }
  100% {
    opacity: 0.5;
    transform: translate(0px, 0px);
  }
}
html, body {
  /*min-height: 101%;*/
  min-height: calc(100vh + 1px);
}

#root {
  height: 100%;
}

header {
  min-height: 80px;
}

.c-card {
  position: relative;
  display: block;
}
.c-card.equalize {
  height: calc(100% - 30px);
}
.c-card.clickable {
  cursor: pointer;
}
.c-card.clickable.selected {
  border-color: var(--accent-color) !important;
}
.c-card.reduced {
  padding: 10px;
}

a.c-card:hover {
  border-color: var(--accent-color);
}

.c-sidebar .u-border-bottom {
  padding-bottom: 20px;
}
.c-sidebar .c-sidebar__icon {
  margin-right: 10px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.o-page .top {
  border-bottom: 2px solid #e9e9e9;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.o-page .top h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.o-page .logo {
  display: block;
  margin: 0 auto 40px auto !important;
}

.o-page__content {
  display: flex;
  flex-flow: column;
  height: 100%;
}
.o-page__content .container {
  flex: 1 1 auto;
  padding: 0 30px 30px 30px;
  max-width: 100%;
}
.o-page__content .c-navbar {
  padding: 20px 30px 20px 30px;
}

.loading {
  width: 100%;
  height: 100%;
  /*background: url(/images/loader.gif) center center no-repeat #f4f6f9;*/
  background-color: #f4f6f9;
}
.loading.full {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
}
.loading.inline {
  background-color: transparent;
  height: auto;
  min-height: 100px;
}
.loading:before {
  content: "\f3f4";
  font-family: "Font Awesome 5 Pro";
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  color: #999;
}

.dropzone {
  position: relative;
  outline: none;
  height: 100%;
}
.dropzone .status {
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.dropzone .status.border {
  border: 1px solid var(--accent-color);
  border-radius: 4px;
}
.dropzone .status div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 15px;
}
.dropzone .status div i {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.c-toolbar-responsive {
  margin-top: -30px;
  z-index: 4;
}
.c-toolbar-responsive.sticky {
  margin-top: 0;
}
.c-toolbar-responsive .c-toolbar {
  margin: 0;
  min-height: 67px;
  border-bottom: 1px solid #e1e2e8;
}
.c-toolbar-responsive .c-toolbar .c-toolbar__nav .fa-chevron-right {
  margin-right: 10px;
  font-size: 15px;
}
.c-toolbar-responsive .c-toolbar .c-toolbar__nav .c-toolbar__nav-link {
  margin: 0 15px 0 0;
  border-top: none;
  border-left: none;
  border-right: none;
  background: transparent;
  outline: none;
  font-size: 15px;
}
.c-toolbar-responsive .c-toolbar .c-toolbar__nav .c-toolbar__nav-link:not(.is-active) {
  border-bottom: none;
}
.c-toolbar-responsive .c-toolbar .c-toolbar__buttons .filters-toggle {
  display: inline-block;
  background: #FFF;
  color: #768093;
  box-shadow: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: 1px solid transparent;
  border-top: 0;
  font-size: 20px;
  padding-left: 10px;
  padding-right: 0;
  margin-right: -10px;
  cursor: pointer;
}
.c-toolbar-responsive .c-toolbar .c-toolbar__buttons .filters-toggle:hover:not(:active) {
  color: var(--main-color);
  opacity: 1;
}
.c-toolbar-responsive .c-toolbar .c-toolbar__buttons .filters-toggle.active:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -10px;
  margin-left: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7.5px 0 7.5px;
  border-color: #768093 transparent transparent transparent;
}
.c-toolbar-responsive .c-toolbar .c-toolbar__buttons .c-btn:last-child {
  margin-right: 0 !important;
}
.c-toolbar-responsive .c-btn {
  width: auto !important;
}
.c-toolbar-responsive .c-filters {
  background: #768093;
  box-shadow: none;
  display: none;
  padding-top: 15px;
  padding-bottom: 0;
  min-height: auto;
  display: none;
  justify-content: center;
  align-items: flex-start;
  align-content: center;
  width: calc(100% + 15px) !important;
}
.c-toolbar-responsive .c-filters.active {
  display: flex;
}
.c-toolbar-responsive .c-filters.active .c-field {
  width: 100%;
  margin-right: 15px;
}
.c-toolbar-responsive .c-filters.active .c-field .c-field__label {
  color: #FFF !important;
}

.icon-padding-right {
  padding-right: 5px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99999;
  background: #f4f6f9;
}
.overlay.hidden {
  display: none;
}
.overlay .close {
  right: 20px;
}
.overlay .back {
  left: 20px;
}
.overlay .close,
.overlay .back {
  position: absolute;
  top: 23px;
  z-index: 10;
  line-height: 25px;
}
.overlay .close a,
.overlay .back a {
  font-size: 40px;
  text-decoration: none;
}
.overlay .close a button,
.overlay .back a button {
  margin: 0;
  opacity: 0.3;
  outline: none;
  border: none;
  font-size: 25px;
  background: transparent !important;
}
.overlay .close a button:hover,
.overlay .back a button:hover {
  opacity: 1;
}
.overlay .content {
  overflow-y: scroll;
  height: 100%;
  padding-top: 115px;
}
.overlay .content.container {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.overlay .content header {
  position: fixed;
  top: 0;
  left: 0;
  background: #FFF;
  z-index: 4;
}
.overlay .content header h2 {
  width: 100%;
  text-align: center;
}
.overlay .content #cta {
  position: fixed;
  bottom: 0;
  padding: 20px;
  border-top: 1px solid #e1e2e8;
  width: 100%;
  left: 0;
  background: #FFF;
  z-index: 100;
  display: flex;
  align-self: flex-end;
  width: calc(100% + 10px);
  display: flex;
}
.overlay .content #cta button,
.overlay .content #cta .c-btn,
.overlay .content #cta .btn-split {
  display: inline-block;
  flex: 1;
  margin-right: 10px;
  vertical-align: top;
}
.overlay .content .c-toolbar-responsive:not(.c-filters) {
  width: 100% !important;
  margin: 80px 0 0 0;
  left: 0;
  position: fixed;
  top: 0;
}
.overlay .content .cta-push {
  padding-bottom: 80px;
}
.overlay.fadeOut {
  -webkit-animation-duration: 100ms;
  animation-duration: 100ms;
}
.overlay.slideInUp {
  -webkit-animation-duration: 500ms !important;
  animation-duration: 500ms !important;
}

.datepicker {
  position: relative;
}
.datepicker .wrapper .rdrCalendarWrapper .rdrMonth {
  width: 100%;
  min-width: 250px;
  max-width: 350px;
}
.datepicker .wrapper.popup {
  overflow: hidden;
  position: absolute;
  background: #FFF;
  z-index: 101;
  border: 1px solid #99a5bd;
  top: 0;
  left: 0;
  border-radius: 5px;
  transform: translateY(-10px);
  display: none;
}
.datepicker .wrapper.popup.open {
  display: block;
}
.datepicker .wrapper.popup .rdrMonthAndYearWrapper {
  height: 30px;
  transform: translateY(-10px);
  padding: 0;
}
.datepicker .wrapper.popup .rdrMonthAndYearWrapper i {
  margin: auto;
}
.datepicker .wrapper.popup .rdrDateRangeWrapper .rdrMonthAndYearWrapper {
  margin-top: 5px;
  transform: none;
}
.datepicker .wrapper.popup .timepicker {
  margin: 0 10px 10px 10px;
  border-top: 1px dotted #CCC;
  padding-top: 10px;
  display: flex;
  align-items: center;
  align-content: flex-start;
}
.datepicker .wrapper.popup .timepicker label {
  color: #000000;
  font-size: 12px;
  margin-right: 10px;
}
.datepicker .wrapper.popup .timepicker .times {
  width: 100%;
}
.datepicker .wrapper.popup .timepicker .times .rc-time-picker {
  width: 0px;
  height: 0px;
  visibility: hidden;
  display: block;
}
.datepicker .wrapper.popup .timepicker .times .rc-time-picker input {
  height: 1px;
  padding: 0;
  margin: 0;
  vertical-align: bottom;
}
.datepicker .wrapper .rdrDayToday .rdrDayNumber span:after {
  background: var(--accent-color);
}
.datepicker.right .wrapper.popup {
  right: 0;
  left: auto;
}

.collections,
.assets {
  padding: 15px 0 15px 0;
}
.collections .scroller-col,
.assets .scroller-col {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .collections .scroller-col,
.assets .scroller-col {
    min-width: 100%;
  }
}
.collections .c-card,
.assets .c-card {
  display: block;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.collections .c-card .directory i,
.assets .c-card .directory i {
  font-size: 40px;
}
.collections .c-card .directory i.locked,
.assets .c-card .directory i.locked {
  font-size: 11px;
  position: absolute;
  color: #768093;
  margin: 15px 0 0 -25px;
}
.collections .c-card.selected,
.assets .c-card.selected {
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 10px var(--accent-color);
}
.collections .c-card .selectable,
.assets .c-card .selectable {
  cursor: pointer;
}
.collections .c-card.equalize,
.assets .c-card.equalize {
  height: 100%;
}

.assets .c-card,
.topics .c-card,
.quizzes .c-card {
  padding: 0;
}
.assets .c-card .thumbnail .image,
.topics .c-card .thumbnail .image,
.quizzes .c-card .thumbnail .image {
  background-position: center center;
  background-size: cover;
  padding-top: 56%;
  position: relative;
  background-color: #f6f6f6;
}
.assets .c-card .thumbnail .image .hover,
.topics .c-card .thumbnail .image .hover,
.quizzes .c-card .thumbnail .image .hover {
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.assets .c-card .thumbnail .image .hover div,
.topics .c-card .thumbnail .image .hover div,
.quizzes .c-card .thumbnail .image .hover div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 15px;
}
.assets .c-card .thumbnail .image .hover div i,
.topics .c-card .thumbnail .image .hover div i,
.quizzes .c-card .thumbnail .image .hover div i {
  font-size: 25px;
  display: block;
  margin-bottom: 10px;
  color: var(--accent-color);
  margin-bottom: 0;
}
.assets .c-card .info,
.topics .c-card .info,
.quizzes .c-card .info {
  line-height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
}
.assets .c-card .info h4,
.topics .c-card .info h4,
.quizzes .c-card .info h4 {
  font-size: 13px;
  max-width: calc(100% - 20px);
}
.assets .c-card .info h4 .locked i,
.topics .c-card .info h4 .locked i,
.quizzes .c-card .info h4 .locked i {
  position: absolute;
  margin: 3px 6px 0 0;
  color: #768093;
}
.assets .c-card .info h4 .locked div,
.topics .c-card .info h4 .locked div,
.quizzes .c-card .info h4 .locked div {
  padding-left: 18px;
}
.assets .c-card .info.hover h4,
.topics .c-card .info.hover h4,
.quizzes .c-card .info.hover h4 {
  max-width: calc(100% - 90px);
}
.assets .c-card .info label,
.topics .c-card .info label,
.quizzes .c-card .info label {
  font-size: 12px;
}
.assets .c-card .info i,
.topics .c-card .info i,
.quizzes .c-card .info i {
  margin-left: 6px;
  font-size: 14px;
  /*position: absolute;
  border-radius: 5px;
  background: rgba(255,255,255, 0.3);
  padding: 3px;
  bottom: 5px;
  right: 5px;
  color: #FFF;*/
}
.assets .c-card .info button,
.topics .c-card .info button,
.quizzes .c-card .info button {
  border: none;
  padding: 0;
  outline: none;
  color: var(--accent-color);
}
.assets .c-card .sub,
.topics .c-card .sub,
.quizzes .c-card .sub {
  font-size: 12px;
  line-height: 20px;
  display: flex;
  padding: 5px;
  border-top: 1px solid rgba(153, 165, 189, 0.3);
}

.jumbotron {
  background: #99a5bd;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  margin-top: -30px;
  min-height: 250px;
  margin-bottom: 30px;
}
.jumbotron .container {
  padding-top: 30px;
  padding-bottom: 30px;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
}
.jumbotron .container .contents {
  width: 100%;
}
.jumbotron .container .contents h2 {
  color: #FFF;
}
.jumbotron .container .contents p {
  color: #FFF;
}
.jumbotron .container .contents input {
  margin-top: 20px;
  font-size: 1.75em;
}

.grid-scroller {
  padding-bottom: 0;
}
.grid-scroller .toggle {
  cursor: pointer;
  background: none;
}
.grid-scroller .row {
  width: calc(100% + 60px);
  overflow-x: auto;
  position: relative;
  flex-wrap: nowrap;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: -30px;
}
.grid-scroller .row.expanded {
  flex-wrap: wrap;
}

.c-table-container {
  overflow-x: scroll;
  border: 1px solid #ecedf2;
  border-radius: 5px;
}
.c-table-container table {
  border: 0;
  margin-top: -1px;
}

.c-table thead th.sort {
  position: relative;
  cursor: pointer;
}
.c-table thead th.sort.sort_asc:after, .c-table thead th.sort.sort_desc:after {
  content: "▲";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: block;
  font-size: 8px;
}
.c-table thead th.sort.sort_desc:after {
  content: "▼";
}
.c-table thead th.sort:hover {
  color: #000;
}
.c-table tbody tr:hover td {
  background-color: rgba(244, 246, 249, 0.7);
}
.c-table tbody tr:hover.click {
  cursor: pointer;
}
.c-table th,
.c-table td {
  padding: 10px !important;
}
.c-table th:not(:last-child),
.c-table td:not(:last-child) {
  border-right: 1px dotted rgba(118, 128, 147, 0.1);
}
.c-table th.right,
.c-table td.right {
  text-align: right;
}
.c-table th.tight,
.c-table td.tight {
  white-space: nowrap;
  width: 10px;
}
.c-table th.icon,
.c-table td.icon {
  width: 50px;
}
.c-table th img.flag,
.c-table td img.flag {
  width: 15px;
  margin-right: 5px;
  vertical-align: middle;
}
.c-table th .price strike,
.c-table td .price strike {
  color: #a11414;
}
.c-table th.hidden,
.c-table td.hidden {
  display: none;
}
.c-table th .pre,
.c-table td .pre {
  margin-right: 3px;
}
.c-table th .skillbar,
.c-table td .skillbar {
  margin-top: 13px;
  min-width: 80px;
}
.c-table th .skillbar .skillbar-title,
.c-table td .skillbar .skillbar-title {
  display: none;
}
.c-table th .skillbar .skillbar-bar,
.c-table td .skillbar .skillbar-bar {
  left: 0;
  width: 100%;
}
.c-table th .skillbar .skillbar-percent,
.c-table td .skillbar .skillbar-percent {
  font-size: 10px;
}
.c-table th .sub,
.c-table td .sub {
  font-size: 12px;
}

.c-pagination {
  justify-content: center;
}
.c-pagination .c-pagination__link {
  font-size: 14px;
  width: 30px;
  height: 30px;
  border: 1px solid #99a5bd;
  font-size: 12px;
}
.c-pagination .c-pagination__link.is-active {
  background: #99a5bd;
  color: #FFF;
}
.c-pagination .c-pagination__link:hover {
  background: var(--main-color);
  border-color: var(--main-color);
  color: #FFF;
}

.suggest__control {
  border-color: #99a5bd !important;
  box-shadow: none !important;
}
.suggest__control.suggest__control--is-focused {
  border-color: #2684FF !important;
}
.suggest__control .suggest__value-container {
  font-size: 0.75rem;
}

.suggest__menu {
  font-size: 0.75rem;
}
.suggest__menu .suggest__option {
  display: flex;
  align-items: center;
}
.suggest__menu .suggest__option .c-avatar {
  width: 36px;
  color: #768093;
  margin-right: 10px;
}
.suggest__menu .suggest__option .c-avatar .c-avatar__img:before {
  font-size: 14px;
}
.suggest__menu .suggest__option .c-avatar .c-avatar__img.background {
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #FFF;
  width: 36px;
  height: 36px;
}
.suggest__menu .suggest__option .sub {
  font-size: 10px;
}

.c-input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgb(128, 128, 128) !important;
  opacity: 1;
  /* Firefox */
}
.c-input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgb(128, 128, 128) !important;
}
.c-input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgb(128, 128, 128) !important;
}
.c-input.c-input--danger::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: red !important;
  opacity: 1;
  /* Firefox */
}
.c-input.c-input--danger:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: red !important;
}
.c-input.c-input--danger::-ms-input-placeholder {
  /* Microsoft Edge */
  color: red !important;
}
.c-input.copy {
  position: relative;
  cursor: pointer;
}
.c-input.copy:after {
  font-family: "Font Awesome 5 Pro" !important;
  font-weight: 300;
  content: "\f0c5";
  position: absolute;
  cursor: pointer;
  color: #000;
  border-radius: 50%;
  background-color: #FFF;
  border: none;
  font-size: 14px;
  width: 16px;
  height: 16px;
  font-family: inherit;
  margin: 2px 10px 0 0;
  padding: 0;
  outline: none;
  text-align: center;
  line-height: 16px;
  right: 0;
}
.c-input.copy:hover:after {
  color: var(--accent-color);
}

.c-input--danger .suggest__control {
  border-color: red !important;
}
.c-input--danger .suggest__dropdown_indicator {
  color: red;
}

.react-tel-input .c-input {
  border-color: #99a5bd !important;
  width: 100% !important;
  height: 37px !important;
  font-size: 0.75rem !important;
  font-family: Lato, sans-serif !important;
}
.react-tel-input .flag-dropdown {
  border-color: #99a5bd !important;
  background: #FFF !important;
}

.c-card {
  animation-delay: 0.1s;
  animation: slide-up-fade-in 1s ease;
  animation-fill-mode: initial;
}
.c-card.disabled {
  opacity: 0.5;
  animation: slide-up-fade-in-disabled;
}
.c-card .c-card {
  box-shadow: none;
  border-width: 1px;
  border-style: solid;
  border-color: #99a5bd;
}
.c-card.c-alert {
  border-width: 2px;
  border-style: solid;
}

.empty-section,
.soon-section {
  text-align: center;
  color: #FFF;
  padding: 50px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  max-width: 500px;
  margin: auto;
  animation-delay: 0.1s;
  animation: slide-up-fade-in 1s ease;
  animation-fill-mode: initial;
}
.empty-section i,
.soon-section i {
  font-size: 70px;
  color: #768093;
}
.empty-section .buttons,
.soon-section .buttons {
  margin-top: 30px;
}

.modal-container {
  height: 100%;
}
.modal-container > div:first-child {
  height: 100%;
}
.modal-container .react-router-modal__container,
.modal-container .react-router-modal__wrapper,
.modal-container .react-router-modal__modal {
  height: 100%;
}

.view-section {
  text-align: center;
  color: #FFF;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
}
.view-section .pg-viewer-wrapper {
  width: 100%;
}
.view-section img {
  max-height: 100%;
}

.notification-close-button-container span {
  cursor: pointer;
}
.notification-close-button-container span:hover {
  color: #000;
}

.c-field label i {
  font-size: 12px;
  cursor: pointer;
  position: absolute;
  font-weight: 500;
  margin: 6px 0 0 10px;
}
.c-field label i:hover {
  color: #000;
}
.c-field label .right {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 10px;
  display: block;
  margin-top: 3px;
}
.c-field label .__react_component_tooltip {
  max-width: 300px;
}
.c-field.prepend .field, .c-field.append .field {
  display: flex;
  align-items: flex-start;
  align-content: space-between;
}
.c-field.prepend .field .pended, .c-field.append .field .pended {
  flex-grow: 0;
  line-height: 35px;
  padding: 0 10px 0 10px;
  background: rgba(153, 165, 189, 0.5);
  border: 1px solid #99a5bd;
  color: #333;
  font-weight: 400;
  box-sizing: border-box;
  font-size: 0.75rem;
}
.c-field.prepend .pended {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-right: 0px !important;
}
.c-field.prepend .c-input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.c-field.append .pended {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-left: 0px !important;
}
.c-field.append .c-input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.c-field p {
  margin-bottom: 10px;
}

.c-btn.submit {
  overflow: hidden;
}
.c-btn.submit.processing {
  opacity: 0.7;
  cursor: progress;
  color: #333;
}
.c-btn.submit.processing:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: rgba(0, 0, 51, 0.4);
  animation: btn-loading 1.5s ease both alternate infinite;
}
@keyframes btn-loading {
  from {
    left: -100%;
    width: 0%;
  }
  50% {
    left: 0%;
    width: 100%;
  }
  to {
    left: 105%;
    width: 0%;
  }
}

.filepond-container .filepond--panel-top,
.filepond-container .filepond--panel-center,
.filepond-container .filepond--panel-bottom {
  border: 1px solid #99a5bd;
}
.filepond-container.error .filepond--panel-top,
.filepond-container.error .filepond--panel-center,
.filepond-container.error .filepond--panel-bottom {
  border-color: red;
}
.filepond-container .filepond--image-preview-overlay {
  opacity: 0 !important;
}
.filepond-container .filepond--image-preview {
  background: transparent !important;
}
.filepond-container.minimal .filepond--file-info {
  display: none !important;
}
.filepond-container.minimal .filepond--file-status {
  display: none !important;
}
.filepond-container.rename .filepond--file-info {
  pointer-events: all;
  cursor: pointer;
}
.filepond-container.rename .filepond--file-info .filepond--file-info-main {
  width: auto;
}
.filepond-container.rename .filepond--file-info .filepond--file-info-main:after {
  font-family: "Font Awesome 5 Pro" !important;
  font-weight: 600;
  content: "\f304";
  position: absolute;
  cursor: pointer;
  color: #000;
  border-radius: 50%;
  background-color: #FFF;
  border: none;
  font-size: 9px;
  width: 16px;
  height: 16px;
  font-family: inherit;
  margin: 0 0 0 5px;
  padding: 0;
  outline: none;
  text-align: center;
  line-height: 16px;
}
.filepond-container.rename .filepond--file-info .filepond--file-info-main:after:hover {
  border-color: #FFF;
}
.filepond-container.noname .filepond--file-info {
  display: none;
}

.filepond--wrapper .circle .filepond--list {
  width: calc(100% - 1.5em);
  top: 2px;
}
.filepond--wrapper .circle .filepond--action-edit-item {
  margin-left: -15px;
}
.filepond--wrapper .circle .filepond--action-remove-item {
  margin-left: 15px;
}

#scheduler_week .days {
  position: relative;
}
#scheduler_week .days ul {
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}
#scheduler_week .days ul li {
  width: 14.2857142857%;
  display: inline-block;
  padding: 5px;
  border: 1px solid #ecedf2;
  height: 100%;
  cursor: pointer;
  position: relative;
}
#scheduler_week .days ul li strong {
  font-size: 14px;
  font-weight: 300;
}
#scheduler_week .days ul li strong.today {
  /*text-transform: uppercase*/
}
#scheduler_week .days ul li:not(:first-child) {
  border-left: 0;
}
#scheduler_week .days ul li div {
  height: 26px;
  background: #FFF;
  display: block;
  border-radius: 5px;
  margin-top: 5px;
  line-height: 26px;
  font-size: 11px;
  text-align: center;
  color: #768093;
}
#scheduler_week .days ul li div .c-badge {
  font-size: 11px;
  padding: 0 8px;
  height: 20px;
  line-height: 18px;
  margin: 0 1px 0 1px;
}
#scheduler_week .days ul li.selected {
  background: #768093;
}
#scheduler_week .days ul li.selected strong {
  color: #FFF;
}
#scheduler_week .days ul li.selected:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #768093 transparent transparent transparent;
}
#scheduler_week .days ul li.disabled {
  background: rgba(186, 186, 186, 0.1);
  cursor: auto;
}
#scheduler_week .days ul li.disabled strong,
#scheduler_week .days ul li.disabled div {
  opacity: 0.2;
}
#scheduler_week .days .paginate {
  position: absolute;
  top: 50%;
  cursor: pointer;
  font-size: 20px;
  transform: translateY(-50%);
}
#scheduler_week .days .paginate.previous {
  left: -25px;
}
#scheduler_week .days .paginate.next {
  right: -25px;
}

.view-toggle {
  position: absolute;
  right: 0;
  margin-right: 30px;
  z-index: 2;
  font-size: 20px;
}
.view-toggle i {
  cursor: pointer;
  margin-left: 5px;
}
.view-toggle i:not(.selected) {
  opacity: 0.3;
}
.view-toggle i:not(.selected):hover {
  opacity: 1;
}

h4 .options,
h5 .options,
h6 .options {
  float: right;
}
h4 .options i,
h5 .options i,
h6 .options i {
  font-size: 20px;
  margin-left: 10px;
  cursor: pointer;
}
h4 .options i.selected,
h5 .options i.selected,
h6 .options i.selected {
  opacity: 1;
}
h4 .options .red,
h5 .options .red,
h6 .options .red {
  color: #ed4d4d;
}
h4 .options .green,
h5 .options .green,
h6 .options .green {
  color: green;
}
h4 .status.c-badge,
h5 .status.c-badge,
h6 .status.c-badge {
  float: right;
  font-size: 10px;
  padding: 2px 5px;
  margin-top: 5px;
}
h4 i,
h5 i,
h6 i {
  margin-right: 5px;
}
h4.split,
h5.split,
h6.split {
  display: flex;
}
h4.split .options,
h5.split .options,
h6.split .options {
  float: none;
  margin-left: auto;
  white-space: nowrap;
}

.languages {
  text-align: center;
  margin-top: 20px;
}
.languages li {
  width: 23px;
  margin: 5px 3px 0 3px;
  display: inline-block;
  opacity: 0.4;
  cursor: pointer;
}
.languages li.selected, .languages li:hover {
  opacity: 1;
}

.languages-dropdown {
  margin-left: -8px;
}
.languages-dropdown .c-avatar--xsmall {
  margin-top: 20px;
}
.languages-dropdown .c-avatar--xsmall .c-avatar__img {
  min-width: auto;
  width: 17px;
  height: 17px;
  border: 2px solid #FFF;
}
.languages-dropdown .dropdown-menu {
  width: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.languages-dropdown .dropdown-menu ul {
  margin-top: 0;
}
.languages-dropdown .dropdown-menu ul li {
  opacity: 1 !important;
}
.languages-dropdown .dropdown-menu:hover li {
  opacity: 0.4 !important;
}
.languages-dropdown .dropdown-menu:hover li:hover {
  opacity: 1 !important;
}

.header-avatar-user {
  margin-right: 2px;
}

.header-details {
  text-align: right;
  line-height: 18px;
  margin-right: 10px;
}
.header-details h6 {
  font-size: 14px;
}
.header-details p {
  font-size: 12px;
}

.header-account-dropdown.has-arrow:before {
  margin-right: 7px;
}

.poweredby {
  position: absolute;
  width: 100%;
  bottom: 10px;
  text-align: center;
  font-size: 12px;
  color: #333333;
  text-align: center;
}

@media (max-width: 768px) {
  .c-toolbar-responsive .c-toolbar {
    width: 100%;
  }
}
.c-avatar__img {
  border: 1px solid #EEE;
}

.c-avatar--small i.c-avatar__img,
.c-avatar--xsmall i.c-avatar__img {
  background: #FFF;
}
.c-avatar--small i.c-avatar__img:before,
.c-avatar--xsmall i.c-avatar__img:before {
  font-size: 20px;
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.color-picker .swatch {
  padding: 5px;
  background: #FFF;
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  display: inline-block;
  cursor: pointer;
  width: 100%;
}
.color-picker .swatch .color {
  width: 100%;
  height: 20px;
  border-radius: 2px;
  background: "red";
}
.color-picker .popover {
  position: absolute;
  z-index: 2;
}
.color-picker .cover {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.c-progress--info .c-progress__bar,
.c-icon--info {
  background: #1d7bf0;
}

.c-navbar__title i {
  font-size: 20px;
  margin-right: 8px;
  opacity: 0.7;
  font-weight: 400;
}
.c-navbar__title i:hover {
  opacity: 1;
}
.c-navbar__title a {
  color: var(--accent-color);
}

.tabs {
  border-bottom: 1px solid #e1e2e8;
  box-shadow: none;
  background: transparent !important;
}
.tabs .c-tabs__link {
  font-size: 16px;
  font-weight: normal !important;
  padding: 0 0 10px 0;
  border-left: none;
  border-right: none;
  border-top: none;
  background: transparent;
  outline: none;
}
.tabs .c-tabs__link:not(.active) {
  border-bottom: none;
}

.previewIframe {
  border: none;
  width: 100%;
  background: #FFF;
  transition: width 2s;
  overflow-x: hidden;
}
.previewIframe.edit {
  width: calc(100% + 29px);
}

.previewDevice {
  max-width: 100%;
}
.previewDevice.center {
  display: inline-block;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}
.previewDevice .marvel-device.macbook {
  margin-left: 6.1403508772% !important;
}
.previewDevice .marvel-device .screen {
  overflow: auto !important;
}

ol.numbererd {
  list-style-type: decimal;
  padding-left: 20px;
}

.counter .sub {
  color: #99a5bd;
  border: 1px solid #99a5bd;
  border-radius: 5px;
  padding: 3px 5px;
  font-size: 14px;
  transform: translateY(-4px);
  display: inline-block;
  margin-left: 10px;
}

.retailerMap {
  width: "100%";
  border: 1px solid #99a5bd;
  border-radius: 5px;
  height: 100%;
  min-height: 190px;
}

canvas.chartjs-render-monitor {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

#chartjs-tooltip {
  opacity: 1;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border-radius: 3px;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  pointer-events: none;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.chartjs-tooltip-key {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
}

.suggest__multi-value__label {
  font-size: 100% !important;
}

.u-mr-xxsmall {
  margin-right: 5px;
}

.u-mb-zero {
  margin-bottom: 0 !important;
}

.pg-viewer-wrapper .loading-container .loading {
  display: none !important;
}

.c-switch__label {
  position: relative;
}
.c-switch__label:after {
  top: 50%;
  transform: translateY(-50%);
}

.c-switch__input:disabled ~ .c-switch__label {
  cursor: default;
}

.c-switch__input:disabled ~ .c-switch__label:before {
  background-color: #99a5bd;
}

.c-switch__input:checked:disabled ~ .c-switch__label:before {
  background-color: var(--main-color) !important;
}

.notification-wrapper {
  border: 3px solid #99a5bd;
  border-radius: 4px;
}
.notification-wrapper .notification {
  border-left-width: 10px;
}

.swal2-container {
  z-index: 99999 !important;
}
.swal2-container .swal2-icon {
  color: #768093 !important;
  border-color: #768093 !important;
}
.swal2-container .swal2-title {
  font-size: 20px !important;
  color: #000 !important;
}
.swal2-container .swal2-content {
  font-size: 15px !important;
  font-weight: 300 !important;
  color: #768093 !important;
}
.swal2-container .swal2-confirm {
  background-color: var(--accent-color) !important;
}
.swal2-container .swal2-actions {
  display: flex;
  align-self: flex-end;
  width: calc(100% + 10px);
  margin-top: 50px;
}
.swal2-container .swal2-actions button {
  display: inline-block;
  flex: 1;
  margin-right: 10px;
  vertical-align: top;
  border-radius: 4px;
  outline: none;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}

.btn-split {
  position: relative;
  white-space: nowrap;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  height: 40px;
}
.btn-split .c-btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  display: inline-block;
  vertical-align: top;
  margin-right: 0 !important;
  padding-top: 0;
  padding-bottom: 0;
  height: 40px;
  line-height: 40px;
  width: calc(100% - 35px);
}
.btn-split .c-btn.c-btn--outline {
  border-right: none;
}
.btn-split .toggle {
  background: var(--main-color);
  opacity: 0.5;
  border-radius: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 35px;
  height: 100%;
  cursor: pointer;
  display: inline-block;
  height: 40px;
}
.btn-split .toggle:before, .btn-split .toggle:after {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background: #FFF;
  position: absolute;
  top: 20px;
  transition: transform 0.3s;
  transform: translateX(-8px);
}
.btn-split .toggle:before {
  right: 15px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
}
.btn-split .toggle:after {
  right: 9px;
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.btn-split ul {
  position: absolute;
  list-style: none;
  margin: 0;
  padding: 0;
  right: 0;
  border-radius: 4px;
  margin-top: -3px;
  min-width: 100%;
  display: none;
  background: #768093;
  z-index: 4;
  min-width: 100%;
  text-align: right;
  border-top-right-radius: 0;
}
.btn-split ul .open {
  display: block;
  background: #FFF;
  z-index: 1;
}
.btn-split ul li a,
.btn-split ul li button {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  color: #FFF;
  font-size: 13px;
  padding: 0 10px 0 1.25rem;
  outline: none;
  text-decoration: none;
  white-space: nowrap;
  color: #FFF;
  height: 43px;
  line-height: 43px;
  cursor: pointer;
}
.btn-split ul li a:hover,
.btn-split ul li button:hover {
  color: #CCC !important;
}
.btn-split ul li:not(:last-of-type) {
  border-bottom: 1px dotted #FFF;
}
.btn-split.open {
  border-bottom-left-radius: 0;
}
.btn-split.open ul {
  display: block;
}
.btn-split.open ul:after {
  content: "";
  display: block;
  width: 35px;
  height: 5px;
  background: #768093;
  position: absolute;
  top: -3px;
  right: 0;
}
.btn-split.open .toggle {
  opacity: 1;
  background: #768093;
  border-bottom-right-radius: 0;
}
.btn-split.open .toggle:before {
  transform: rotate(-45deg);
}
.btn-split.open .toggle:after {
  transform: rotate(45deg);
}
.btn-split.btn-split-reverse ul {
  transform: translateY(-100%);
  top: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
}
.btn-split.btn-split-reverse.open ul:after {
  bottom: -3px;
  top: auto;
}
.btn-split.btn-split-reverse.open .toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
}

.preview_device.inactive {
  cursor: not-allowed;
}

.c--btn--push-label {
  margin-top: 25px;
  height: 38px;
  line-height: 15px;
}

.c--btn-fullwidth {
  width: 100%;
}

.splitter {
  margin: 0;
  border: none;
  border-top: 1px solid #99a5bd;
}

.medium-editor-element.c-input {
  color: #252529;
}
.medium-editor-element.c-input p {
  color: #252529;
}

.play-video {
  color: #FFF;
  font-size: 80px;
}
.play-video:hover {
  color: var(--accent-color);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  border: 1px solid #E4E4E4;
}
.video-wrapper div:first-of-type {
  position: absolute;
}

ul.stat-totals {
  margin: 0;
  padding: 0;
  font-size: 13px;
}
ul.stat-totals li {
  width: 33.33%;
  min-width: 70px;
  display: inline-block;
  margin-bottom: 5px;
}
ul.stat-totals li .c-icon {
  height: 22px;
  width: 22px;
  vertical-align: top;
}
ul.stat-totals li .c-icon i {
  font-size: 10px;
  display: inline-block;
}
ul.stat-totals li h4 {
  font-size: 11px;
  margin: 2px 0 0 10px;
  display: inline-block;
}
ul.stat-totals li h4 span {
  line-height: 22px;
}

.c-card-asset,
.c-card-topic,
.c-card-quiz {
  overflow: visible !important;
}
.c-card-asset .thumbnail,
.c-card-topic .thumbnail,
.c-card-quiz .thumbnail {
  overflow: hidden;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.preview-popup {
  text-align: center;
}
.preview-popup .soon {
  position: relative;
  padding-top: 50px;
  font-size: 12px;
  width: 180px;
  text-align: center;
}
.preview-popup .soon:before {
  content: "\f3f4";
  font-family: "Font Awesome 5 Pro";
  font-size: 30px;
  position: absolute;
  top: 0;
  left: 80px;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  color: #999;
}
.preview-popup img {
  border: 1px solid #FFF;
}

.__react_component_tooltip.show {
  opacity: 1 !important;
}

.vertical-timeline {
  width: 100% !important;
  max-width: 100% !important;
}
.vertical-timeline .vertical-timeline-element-icon {
  font-size: 25px;
  line-height: 60px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #FFF;
  text-align: center;
  cursor: pointer;
}
.vertical-timeline .vertical-timeline-element-content {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #99a5bd;
  cursor: pointer;
}
.vertical-timeline .vertical-timeline-element-content .vertical-timeline-element-date {
  color: #99a5bd;
}
.vertical-timeline .vertical-timeline-element-content .vertical-timeline-element-content-arrow {
  border: 0;
  margin-top: 7px;
}
.vertical-timeline .vertical-timeline-element-content .vertical-timeline-element-content-arrow:after, .vertical-timeline .vertical-timeline-element-content .vertical-timeline-element-content-arrow:before {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.vertical-timeline .vertical-timeline-element-content .vertical-timeline-element-content-arrow:after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #FFF;
  border-width: 10px;
  margin-top: -10px;
}
.vertical-timeline .vertical-timeline-element-content .vertical-timeline-element-content-arrow:before {
  border-color: rgba(245, 59, 22, 0);
  border-right-color: #99a5bd;
  border-width: 11px;
  margin-top: -11px;
}

#delegate-bar {
  background: #dc1405;
  color: #FFF;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  animation-name: delegate-throb;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
#delegate-bar i {
  margin-right: 10px;
}
#delegate-bar a {
  color: #FFF;
  text-decoration: underline;
  display: inline-block;
  margin-left: 10px;
}

@keyframes delegate-throb {
  0% {
    background-color: #dc1405;
  }
  50% {
    background-color: #FF3333;
  }
  100% {
    background-color: #dc1405;
  }
}
.rc-time-picker-panel .rc-time-picker-panel-inner {
  overflow: hidden;
  margin-top: 3px;
}
.rc-time-picker-panel .rc-time-picker-panel-input-wrap {
  display: none;
}

.stats-box {
  padding: 15px 15px 15px 60px;
  position: relative;
}
.stats-box .c-icon {
  width: 35px;
  height: 35px;
  position: absolute;
  left: 15px;
}
.stats-box .c-icon i {
  font-size: 16px;
}
.stats-box h3 {
  font-size: 10px;
  letter-spacing: 0.5px;
}
.stats-box h2 {
  font-size: 20px;
  line-height: 18px;
  margin-top: 2px;
}
.stats-box .c-btn {
  position: absolute;
  top: 0;
  right: 10px;
  padding: 5px 10px 5px 10px;
}

.col-xl-flex {
  display: flex;
}
@media (min-width: 1200px) {
  .col-xl-flex .col-xl-2,
.col-xl-flex .col-xl-3,
.col-xl-flex .col-xl-4,
.col-xl-flex .col-xl-5,
.col-xl-flex .col-xl-6,
.col-xl-flex .col-xl-7,
.col-xl-flex .col-xl-8,
.col-xl-flex .col-xl-9,
.col-xl-flex .col-xl-10,
.col-xl-flex .col-xl-11 {
    max-width: 100%;
    flex: 1;
  }
}

.rdw-editor-wrapper {
  box-sizing: border-box !important;
}
.rdw-editor-wrapper .rdw-editor-toolbar {
  box-shadow: content-box !important;
}

#grid_progress {
  height: 100%;
  display: flex;
  flex-direction: column;
}
#grid_progress .available {
  height: 100%;
}
#grid_progress .complete {
  margin-top: auto;
}

.question h6 {
  margin: 0;
  color: #99a5bd;
  font-weight: 500;
}

.form-check,
.form-radio {
  position: relative;
}
.form-check label,
.form-radio label {
  padding-left: 25px;
}
.form-check label.is-invalid,
.form-radio label.is-invalid {
  color: red;
}
.form-check label:before,
.form-radio label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  border: 2px solid #000;
  border-radius: 3px;
  background: #FFF;
}
.form-check label:after,
.form-radio label:after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  position: absolute;
  top: 8px;
  left: 3px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  border-radius: 3px;
}
.form-check label.checked:after,
.form-radio label.checked:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.form-check label.wrapped,
.form-radio label.wrapped {
  display: block;
  border: 1px dotted #e4e4e4;
  border-radius: 5px;
  padding: 5px 5px 5px 30px;
  margin-bottom: 5px;
}
.form-check label.wrapped:before,
.form-radio label.wrapped:before {
  left: 5px;
  top: 10px;
}
.form-check label.wrapped:after,
.form-radio label.wrapped:after {
  top: 13px;
  left: 8px;
}
.form-check label.wrapped .c-badge,
.form-radio label.wrapped .c-badge {
  padding: 2px 5px 2px 5px;
  border-radius: 3px;
  font-size: 11px;
  position: absolute;
  right: 5px;
  color: #FFF;
  font-weight: 500;
}
.form-check label.wrapped.correct,
.form-radio label.wrapped.correct {
  border-style: solid;
  border-color: #2fca74;
  background-color: #f1f9f3;
}
.form-check label.wrapped.correct .c-badge,
.form-radio label.wrapped.correct .c-badge {
  background-color: #2fca74;
}
.form-check label.wrapped.incorrect,
.form-radio label.wrapped.incorrect {
  border-style: solid;
  border-color: red;
  background-color: #ffefef;
}
.form-check label.wrapped.incorrect .c-badge,
.form-radio label.wrapped.incorrect .c-badge {
  background-color: red;
}
.form-check input,
.form-radio input {
  position: absolute;
  left: -9999px;
}

.question-number.correct {
  color: #2fca74;
}

.question-number.incorrect {
  color: red;
}

.characterCounter textarea {
  padding-right: 0.9375rem !important;
}

.characterCounter span {
  font-size: 11px !important;
  font-weight: 400 !important;
  left: auto !important;
  top: auto !important;
  bottom: 4px;
  right: 4px;
  color: #99a5bd;
}

.bullets {
  list-style: circle;
  margin-left: 14px;
}

/*# sourceMappingURL=neat.override.css.map */
