﻿@charset "UTF-8";
html, body {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Lato", serif;
  color: var(--secondary-color);
}
body .no-support-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--secondary-color);
  z-index: 100;
  color: white;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-size: 30px;
  background-image: url(../images/background.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  display: none;
}
body .no-support-panel img {
  position: absolute;
  top: 30px;
  right: 20px;
}
body .content h2 {
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .content .box {
  background-color: white;
  border-radius: 8px;
  margin-bottom: var(--bs-gutter-x);
  padding: 24px;
}
body .content .box h5 {
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  margin: 0px 0 10px;
}
body .content .box.transparent {
  background-color: transparent;
}
body .content .box p {
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}
body .content .box video {
  width: 100%;
  margin: 0px 0 10px;
}
body.no-support {
  overflow: hidden;
}
body.no-support .container-wrapper {
  display: none;
}
body.no-support .no-support-panel {
  display: flex;
}

.w-50 {
  width: 50%;
}

.mt-10 {
  margin-top: 10px;
}

a.lms-button {
  font-size: 12px !important;
  line-height: 32px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  color: white !important;
  background-color: #0097DA;
}

.lms-link {
  font-size: 12px;
  line-height: 32px;
  font-weight: 700;
  padding: 0px 20px;
  height: 32px;
  border-radius: 20px;
  background-color: var(--secondary-color);
  color: white;
  position: relative;
  border: 0 none;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}
.lms-link.primary {
  background-color: var(--primary-color);
}
.lms-link.primary.reverted {
  background-color: white;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.lms-link.primary:hover {
  background-color: var(--primary-dark-color);
}
.lms-link.primary:hover.reverted {
  border: 1px solid var(--primary-dark-color);
  color: var(--primary-dark-color);
  background-color: white;
}
.lms-link.secondary {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}
.lms-link.secondary.reverted {
  background-color: white;
  color: var(--secondary-color);
}
.lms-link.secondary:hover {
  background-color: white;
  color: var(--secondary-color);
}
.lms-link.secondary:hover.reverted {
  color: white;
  background-color: var(--secondary-color);
}
.lms-link.delete {
  background-color: #FD361C;
}
.lms-link.delete.reverted {
  background-color: white;
  border: 1px solid #FD361C;
  color: #FD361C;
}
.lms-link:hover {
  color: white;
}
.lms-link.arrow {
  padding-right: 45px;
}
.lms-link.arrow:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 16px;
  height: 12px;
  transition: right 0.3s ease;
  background-image: url("../images/icons/icon_arrow-right-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.lms-link.arrow:hover:after {
  right: 15px;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal.blur {
  z-index: 1050;
}
.modal .modal-dialog {
  max-width: fit-content;
  padding-left: 20px;
  padding: 0 20px;
}
.modal .modal-dialog .modal-content {
  padding: 28px 70px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
.modal .modal-dialog .modal-content.gray {
  background-color: #F6F6F5;
}
.modal .modal-dialog .modal-content .close-button {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 10px;
  height: 10px;
  display: inline-block;
  cursor: pointer;
  background: none;
  border: none;
  text-indent: -9999px;
  transition: transform 0.3s ease;
}
.modal .modal-dialog .modal-content .close-button:before, .modal .modal-dialog .modal-content .close-button:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background-color: var(--secondary-color);
  transform-origin: center;
}
.modal .modal-dialog .modal-content .close-button:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal .modal-dialog .modal-content .close-button:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal .modal-dialog .modal-content .close-button:hover {
  transform: scale(1.2);
}
.modal .modal-dialog .modal-content .modal-body {
  padding: 0;
}
.modal .modal-dialog .modal-content .modal-body .extra-info {
  font-size: 16px;
  padding: 20px 0;
  font-style: italic;
  color: #cb3f3f;
  transition: opacity 0.3s;
}
.modal .modal-dialog .modal-content .modal-footer {
  padding: 0;
}

#secondModal .modal-content {
  padding: 40px 30px;
}

#confirmationModal.modal .modal-dialog {
  max-width: initial;
}
#confirmationModal.modal .modal-dialog .modal-content {
  max-width: 400px;
  padding: 20px 50px;
  margin-left: auto;
  margin-right: auto;
}
#confirmationModal.modal .modal-dialog .modal-content .modal-header {
  padding: 20px 0;
  display: none;
}
#confirmationModal.modal .modal-dialog .modal-content .modal-body {
  padding: 20px 0;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}
.modal-backdrop.show {
  opacity: 1;
}

.custom-radio {
  display: inline-block;
  align-items: center;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  user-select: none;
  font-size: 13px;
  line-height: 19px;
  font-weight: 500;
}
.custom-radio .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: none;
}
.custom-radio.block {
  pointer-events: none;
}
.custom-radio.block .overlay {
  display: block;
}
.custom-radio.block .checkmark {
  background-color: var(--primary-light-color) !important;
  border: var(--primary-light-color) !important;
}
.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.custom-radio .checkmark {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: white;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
}
.custom-radio:hover input ~ .checkmark {
  background-color: white;
}
.custom-radio input:checked ~ .checkmark {
  background-color: var(--primary-color);
}
.custom-radio .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background-image: url("../images/icons/icon_ok.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.custom-radio input:checked ~ .checkmark:after {
  display: block;
}

.disabled label {
  opacity: 0.5;
  pointer-events: none;
}

svg {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
svg path {
  stroke: var(--primary-color);
}
svg g {
  stroke: var(--primary-color);
}
svg.secondary path {
  stroke: var(--secondary-color);
}
svg.secondary g {
  stroke: var(--secondary-color);
}

a.icon {
  width: 16px;
  height: 16px;
  display: block;
  text-indent: -9999px;
  transition: transform 0.3s ease;
}
a.icon.edit {
  background-image: url("../images/icons/icon_edit.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
a.icon.delete {
  background-image: url("../images/icons/icon_delete.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
a.icon.add {
  background-image: url("../images/icons/icon_add.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
}
a.icon:hover {
  transform: scale(1.5);
}

.validation-summary-errors ul {
  padding-left: 0;
  list-style: none;
}
.wistia-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.wistia-video-container .wistia_embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main-content .mail-tedmplate {
  max-width: 440px;
  margin: 0 auto;
}
.main-content .mail-tedmplate .header {
  background-color: #082951;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  height: 80px;
  background-position: left;
  background-size: cover;
  position: relative;
  background-image: url("../images/mails/mail-banner.png");
}
.main-content .mail-tedmplate .header img {
  position: absolute;
  right: 20px;
  top: 30px;
  height: 20px;
}
.main-content .mail-tedmplate .body {
  padding: 20px 40px;
  background-color: white;
}
.main-content .mail-tedmplate .footer {
  background-color: #082951;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  position: static !important;
  padding: 20px 40px 10px !important;
  height: initial !important;
  color: #EAE8E7;
  font-size: 10px;
  line-height: 16px;
}
.main-content .mail-tedmplate .footer > div {
  display: flex;
  text-align: left;
  justify-content: space-between;
  margin-bottom: 20px;
}
.main-content .mail-tedmplate .footer p {
  text-align: left;
}
.main-content .mail-tedmplate .footer a {
  color: #EAE8E7;
}

.ck-balloon-panel {
  z-index: 9999 !important;
}

form {
  padding: 0px 0 0;
}
form h2 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}
form h3 {
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
}
form h4 {
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  margin: 0;
}
form h5 {
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  margin: 0 0 8px;
  text-align: left;
}
form label {
  font-size: 11px;
  line-height: 13px;
  font-weight: 500;
  display: block;
  color: #546A85;
}
form input, form textarea {
  font-size: 13px;
  line-height: 19px;
  font-weight: 500;
}
form input.form-control, form textarea.form-control {
  border: 1px solid #546A85;
  border-radius: 8px;
  color: var(--secondary-color);
  font-size: 13px;
  line-height: 19px;
  font-weight: 500;
}
form .select-items, form .select-selected {
  border: 1px solid #546A85;
}
form .text-danger {
  display: block;
  font-size: 11px;
  line-height: 20px;
  font-weight: 500;
}
form .readonly input {
  background-color: #f0f0f0;
  pointer-events: none;
  cursor: not-allowed;
}
form .readonly .custom-select .select-selected {
  background-color: #f0f0f0;
  pointer-events: none;
  cursor: not-allowed;
  border-radius: 4px;
}
form .readonly .custom-select .select-selected:after {
  display: none;
}
form .readonly .autocomplete {
  background-color: #f0f0f0;
  pointer-events: none;
  cursor: not-allowed;
  border-radius: 4px;
}
form .readonly .autocomplete input {
  background-color: #f0f0f0;
}
form .readonly .autocomplete .expander {
  display: none;
}
form .readonly .custom-radio {
  opacity: 0.5;
}
form .date input[readonly] {
  background-color: white;
}
form .custom-dropdown {
  position: relative;
  display: inline-block;
}
form .custom-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
form .custom-dropdown .dropdown-menu .dropdown-item {
  padding: 8px 16px;
  border: none;
  background-color: #f1f1f1;
  width: 100%;
  text-align: left;
}
form .custom-dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ddd;
}
form .custom-dropdown .dropdown-button {
  padding: 10px 20px;
  cursor: pointer;
}
form .custom-dropdown:hover .dropdown-menu {
  display: block;
}
form .file-upload[data-has-bg=true]::after {
  opacity: 0;
}
form .file-upload-container {
  display: flex;
  gap: 20px;
  border-radius: 8px;
}
form .file-upload-container p {
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  opacity: 0.7;
  flex-grow: 1;
}
form .file-upload-container .file-upload {
  width: 200px;
  min-height: 150px;
  cursor: pointer;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 1px dashed #ccc;
  border-radius: 8px;
}
form .file-upload-container .file-upload:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  display: block;
  transform: translate(-50%, -50%);
  background-image: url("../images/icons/icon_plus_dark.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}
form .file-upload-container .file-upload.show:before {
  display: none;
}
form .file-upload-container .file-upload.video {
  width: 100%;
  min-height: initial;
}
form .file-upload-container .file-upload.video:before {
  background-image: url("../images/icons/icon_add-video.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}
form .file-upload-container .file-upload.video:after {
  display: none;
}
form .file-upload-container .file-upload video {
  display: none;
  width: 100%;
  min-height: 150px;
  flex-grow: 1;
  border-radius: 8px;
  background-color: black;
}
form .file-upload-container .file-upload video.show {
  display: block;
}
form .file-upload-container .file-upload input {
  display: none;
  text-align: center;
}
form .file-upload-container .file-upload label.link {
  position: absolute;
  width: 28px;
  height: 28px;
  text-indent: -9999px;
  border-radius: 50px;
  background-color: var(--primary-color);
  display: block;
  cursor: pointer;
  right: 0;
  bottom: -14px;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  background-image: url(../images/icons/icon_pencil-white.svg);
}
form .image {
  width: 200px;
  height: 150px;
  background-color: #eee;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
form .row .flex-column {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
form .row .flex-column > * {
  flex-grow: 0;
}
form .row .flex-column .fill-empty-space {
  flex-grow: 1;
}
form .row .flex {
  display: flex;
  gap: 20px;
}
form .row .flex .file-upload-container {
  flex-grow: 0;
}

.readonly button.save {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

#customDropdown {
  display: none;
}

.login {
  background-image: url("../images/background.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px;
  min-height: 100vh;
}
.login .logo {
  position: absolute;
  top: 60px;
  right: 70px;
}
.login section {
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  width: 400px;
  margin: auto;
}
.login section.with-logo {
  background-image: url(../images/logo_blue.svg);
  background-position: top 40px right 40px;
  background-repeat: no-repeat;
}
.login section h2 {
  font-size: 20px;
  line-height: 28px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}
.login section form {
  padding: 20px 0 0;
}
.login section form p {
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}
.login section form h3 {
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
}
.login section form h4 {
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  margin: 0;
}
.login section form label {
  font-size: 11px;
  line-height: 13px;
  font-weight: 500;
  display: inline;
}
.login section form a {
  margin-left: 10px;
  font-size: 11px;
  line-height: 13px;
  font-weight: 500;
  color: #546A85;
}
.login section form .alert a {
  margin-left: 0px;
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
}
.login section form button {
  background-color: #0097DA;
}
.login section form .form-floating input.form-control {
  padding: 10px 20px;
  height: initial;
  background-color: white !important;
  border: 1px solid #546A85;
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  box-shadow: none;
}
.login section form .form-floating input.form-control:focus {
  border: 1px solid #0097DA;
  box-shadow: none;
}
.login section form .form-floating .password-preview {
  position: absolute;
  top: 12px;
  right: 20px;
  cursor: pointer;
  opacity: 0.5;
}
.login section form div.right {
  text-align: right;
}

.switch {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 16px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch > .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #c3c3c3;
  transition: 0.4s;
}
.switch > .slider:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
}
.switch > .slider:after {
  position: absolute;
  content: "";
  height: 4px;
  width: 6px;
  left: 5px;
  bottom: 7px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transition: 0.3s ease;
  opacity: 0;
}
.switch input:checked + .slider {
  background-color: var(--primary-color);
}
.switch input:checked + .slider:before {
  transform: translateX(16px);
}
.switch input:checked + .slider:after {
  transform: translateX(16px) rotate(-60deg) skewX(-30deg);
  border-left: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  opacity: 1;
}
.switch .slider.round {
  border-radius: 8px;
}
.switch .slider.round:before {
  border-radius: 50%;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 175px;
  background-color: var(--secondary-color);
  color: #fff;
  transition: width 0.3s ease;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.sidebar .toggle-btn {
  background-color: var(--primary-color);
  color: #fff;
  border: 2px solid white;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  bottom: 16px;
  width: 24px;
  height: 24px;
  right: -12px;
}
.sidebar .toggle-btn:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 7px;
  transform: rotate(45deg);
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  width: 10px;
  height: 10px;
  display: block;
  transition: transform left 0.3s ease;
}
.sidebar .toggle-btn:hover {
  background-color: var(--primary-dark-color);
}
.sidebar .menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.sidebar .menu a.logo {
  background-image: url("../images/logo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
  height: 60px;
  width: 100%;
  margin: 10px 0 20px;
}
.sidebar .menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sidebar .menu ul li {
  padding: 8px;
  /*                &.dashboard {
      a:before {
          background-image: url("../images/icons/icon_dashboard.svg");
      }
  }

  &.training {
      a:before {
          background-image: url("../images/icons/icon_training.svg");
      }
  }

  &.certificates {
      a:before {
          background-image: url("../images/icons/icon_certificates.svg");
      }
  }

  &.reporting {
      a:before {
          background-image: url("../images/icons/icon_reporting.svg");
      }
  }

  &.admin {
      a:before {
          background-image: url("../images/icons/icon_admin.svg");
      }
  }

  &.settings {
      a:before {
      }
  }*/
}
.sidebar .menu ul li a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: text-indent padding 0.3s ease;
  position: relative;
  padding: 10px 20px;
  gap: 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 20px;
}
.sidebar .menu ul li a svg {
  width: 20px;
  height: 20px;
}
.sidebar .menu ul li a svg path {
  stroke: white;
}
.sidebar .menu ul li a:hover {
  background-color: white;
  color: var(--secondary-color);
}
.sidebar .menu ul li a:hover svg path {
  stroke: var(--secondary-color);
}
.sidebar .menu ul li.active a {
  background-color: white;
  color: var(--secondary-color);
}
.sidebar .menu ul li.active a svg path {
  stroke: var(--secondary-color);
}
.sidebar .menu ul li.help a svg {
  width: 20px;
  height: 20px;
}
.sidebar .menu ul li.help a svg path {
  fill: white;
}
.sidebar .menu ul li.help a:hover svg path {
  fill: var(--secondary-color);
}
.sidebar .menu ul li.end {
  margin-top: auto;
}
.sidebar .menu ul li.end a {
  margin-right: 20px;
}
.sidebar .menu ul li.end a:hover {
  color: #fff;
  background-color: var(--secondary-color);
}
.sidebar .menu ul li.end a:hover svg path {
  stroke: white;
}
.sidebar.collapsed {
  width: 75px;
}
.sidebar.collapsed .toggle-btn:after {
  transform: scaleX(-1) rotate(45deg);
  left: 2px;
}
.sidebar.collapsed .menu a.logo {
  background-image: url("../images/logo_min.svg");
}
.sidebar.collapsed .menu ul li a {
  text-indent: -200px;
}

.sidebar.collapsed + .main-content {
  margin-left: 75px;
}
.sidebar.collapsed + .main-content .top-menu {
  left: 75px;
}

.main-content {
  position: relative;
}
.main-content .top-menu {
  position: fixed;
  top: 0;
  left: 175px;
  right: 0;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  transition: left 0.3s ease;
  z-index: 11;
}
.main-content .top-menu ol.breadcrumb li.breadcrumb-item {
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  color: var(--secondary-color);
  opacity: 0.7;
}
.main-content .top-menu ol.breadcrumb li.breadcrumb-item a {
  color: var(--secondary-color);
}
.main-content .top-menu ol.breadcrumb li.breadcrumb-item:after {
  content: "";
}
.main-content .top-menu ol.breadcrumb li.breadcrumb-item.active:after {
  content: "";
}
.main-content .top-menu a {
  text-decoration: none;
}
.main-content .top-menu > .custom {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
}
.main-content .top-menu .settings,
.main-content .top-menu .language-switcher,
.main-content .top-menu .notifications,
.main-content .top-menu .user-profile {
  flex-grow: 0;
  margin: 0 15px;
}
.main-content .top-menu .settings {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin: 0 15px;
}
.main-content .top-menu .settings a {
  display: flex;
  align-items: center;
  padding: 10px;
  transition: background-color 0.2s ease;
  background-image: url("../images/icons/icon_settings2.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.main-content .top-menu .settings.expanded .settings-dropdown {
  display: block;
}
.main-content .top-menu .settings .settings-dropdown {
  position: absolute;
  top: 150%;
  left: 0;
  background-color: #fff;
  margin-top: 5px;
  list-style: none;
  padding: 5px 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  z-index: 100;
  width: 200px;
  border-radius: 5px;
  display: none;
}
.main-content .top-menu .settings .settings-dropdown li {
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
}
.main-content .top-menu .settings .settings-dropdown li h4 {
  margin: 0;
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
}
.main-content .top-menu .settings .settings-dropdown li label {
  flex-grow: 1;
  flex-shrink: 1;
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.main-content .top-menu .settings .settings-dropdown li label.switch {
  flex-grow: 0;
  flex-shrink: 0;
}
.main-content .top-menu .settings .settings-dropdown li label.main {
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
}
.main-content .top-menu .language-switcher {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin: 0 15px;
  width: 20px;
}
.main-content .top-menu .language-switcher .current-lang {
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: background-color 0.2s ease;
}
.main-content .top-menu .language-switcher .current-lang .lang-icon {
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/icon_globe.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-content .top-menu .language-switcher .current-lang .dropdown-icon {
  margin-left: auto;
  font-size: 12px;
}
.main-content .top-menu .language-switcher .lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  margin-top: 5px;
  list-style: none;
  padding: 5px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 100;
  width: 150px;
}
.main-content .top-menu .language-switcher .lang-dropdown li {
  padding: 8px 12px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.main-content .top-menu .language-switcher .lang-dropdown li:hover {
  background-color: #f4f4f4;
}
.main-content .top-menu .language-switcher .lang-dropdown.hidden {
  display: none;
}
.main-content .top-menu .search-box {
  flex: 0;
  margin: 0 15px;
  height: 30px;
  border-radius: 15px;
  background-color: white;
  position: relative;
}
.main-content .top-menu .search-box:before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  background-image: url("../images/icons/icon_search.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-content .top-menu .search-box input {
  border: none;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin-left: 40px;
  margin-right: 15px;
  height: 30px;
  width: 150px;
}
.main-content .top-menu .search-box input:focus {
  border-color: #000;
  outline: none;
}
.main-content .top-menu .notifications {
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/icon_notification.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.main-content .top-menu .notifications span {
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 10px;
  line-height: 14px;
  font-weight: 600;
  background-color: #FFA700;
  top: -6px;
  right: -4px;
  text-align: center;
  line-height: 16px;
  color: var(--secondary-color);
}
.main-content .top-menu .user-profile {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-image: url("../images/example.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-content .footer {
  position: fixed;
  text-align: right;
  bottom: 0;
  right: 0;
  height: 30px;
  padding: 0px 30px;
  font-size: 12px;
  line-height: 30px;
}

.dt-layout-table .dt-layout-cell {
  width: 100%;
}

.list-container {
  position: relative;
}
.list-container .dropdowns-container {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 20px;
}

.table.dataTable {
  border-collapse: separate;
  border-spacing: 0 5px;
  width: 100%;
  color: var(--secondary-color);
  border: none;
}
.table.dataTable thead tr {
  background-color: #EAE8E7;
  position: relative;
  z-index: 0;
  height: 55px;
}
.table.dataTable thead tr th {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  border: none;
  vertical-align: top;
}
.table.dataTable thead tr th:first-child {
  border-top-left-radius: 8px;
  padding-left: 16px;
}
.table.dataTable thead tr th:last-child {
  border-top-right-radius: 8px;
  padding-right: 16px;
}
.table.dataTable thead tr th .dt-column-order {
  display: inline-flex;
  transform: translateY(10px);
  right: initial !important;
  margin-left: 5px;
  width: 16px !important;
  height: 14px !important;
}
.table.dataTable thead tr th .dt-column-order::after, .table.dataTable thead tr th .dt-column-order::before {
  display: block !important;
  content: "" !important;
  width: 8px !important;
  height: 14px !important;
  position: static !important;
  flex: 1;
}
.table.dataTable thead tr th .dt-column-order::before {
  background-image: url("../images/icons/icon_sort-arrow-up.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.table.dataTable thead tr th .dt-column-order::after {
  background-image: url("../images/icons/icon_sort-arrow-down.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.table.dataTable thead tr th.dt-orderable-none .dt-column-order {
  display: none;
}
.table.dataTable thead tr th:hover {
  outline: none !important;
}
.table.dataTable tbody {
  position: relative;
  z-index: 1;
  transform: translateY(-25px);
}
.table.dataTable tbody tr {
  border-radius: 8px;
}
.table.dataTable tbody tr td {
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  border: none;
  vertical-align: middle;
  padding: 14px 10px;
  background-color: white;
}
.table.dataTable tbody tr td span.star {
  display: flex;
  gap: 5px;
  align-items: center;
}
.table.dataTable tbody tr td span.star:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("../images/icons/icon_star.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.table.dataTable tbody tr td span.disabled {
  opacity: 0.5;
}
.table.dataTable tbody tr td p {
  margin: 0;
}
.table.dataTable tbody tr td .btn.details-control {
  border: none;
  padding: 0;
  font-size: 1.2em;
  cursor: pointer;
  border-radius: 0;
  width: 20px;
  height: 20px;
  display: block;
  text-indent: -9999px;
  position: relative;
  transition: 0.3s ease;
}
.table.dataTable tbody tr td .btn.details-control:focus {
  box-shadow: none;
}
.table.dataTable tbody tr td .btn.details-control::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  border-right: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: 0.3s ease;
}
.table.dataTable tbody tr td .btn.details-control:hover {
  transform: scale(1.2);
  background-color: initial;
}
.table.dataTable tbody tr td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-left: 16px;
}
.table.dataTable tbody tr td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  padding-right: 16px;
}
.table.dataTable tbody tr td label {
  background-color: var(--primary-light-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 13px;
  line-height: 13px;
  font-weight: 500;
}
.table.dataTable tbody tr td label.gray {
  background-color: #EAE8E7;
}
.table.dataTable tbody tr td label.ml-30 {
  margin-left: 30px;
}
.table.dataTable tbody tr:last-child {
  margin-bottom: 0;
}
.table.dataTable tbody tr:last-child * {
  border-bottom: 0 none !important;
}
.table.dataTable tbody tr.dt-hasChild.shown {
  margin-bottom: 0px;
}
.table.dataTable tbody tr.nested-row > td {
  background-color: transparent !important;
}
.table.dataTable tbody tr.nested-row > td table.nested-table {
  border-collapse: separate;
  border-spacing: 0 5px;
}
.table.dataTable tbody tr.nested-row > td table.nested-table thead {
  display: none;
}
.table.dataTable tbody tr.nested-row > td table.nested-table tbody {
  transform: translateY(0px);
}
.table.dataTable tbody tr.nested-row > td table.nested-table tbody td {
  background-color: white;
}
.table.dataTable tbody tr.dt-hasChild.shown td .btn.details-control::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.table.dataTable tbody tr.dt-hasChild.shown td span.drag-handle {
  display: none;
}
.table.dataTable tfoot tr td {
  background-color: transparent !important;
}
.table.dataTable tfoot tr td .add-new {
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.table.dataTable tfoot tr td .add-new:before {
  content: "";
  height: 16px;
  width: 16px;
  margin-left: 16px;
  margin-right: 16px;
  background-image: url("../images/icons/icon_plus.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.center-text {
  text-align: center;
}

div.dt-container .top-controls, div.dt-container .bottom-controls {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  z-index: 100;
  margin-bottom: 10px;
  gap: 20px;
}
div.dt-container .top-controls .dt-paging, div.dt-container .bottom-controls .dt-paging {
  display: flex;
  gap: 5px;
}
div.dt-container .top-controls .dt-paging .dt-paging-button, div.dt-container .bottom-controls .dt-paging .dt-paging-button {
  flex-grow: 0;
  flex-shrink: 0;
}
div.dt-container .top-controls .dt-paging .dt-paging-button.previous, div.dt-container .top-controls .dt-paging .dt-paging-button.next, div.dt-container .bottom-controls .dt-paging .dt-paging-button.previous, div.dt-container .bottom-controls .dt-paging .dt-paging-button.next {
  background-color: transparent;
  cursor: pointer;
  width: 10px;
  height: 10px;
  display: block;
  border: none;
  border-left: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  padding: 0;
  margin: 0;
  min-width: initial;
  transition: 0.3s ease;
}
div.dt-container .top-controls .dt-paging .dt-paging-button.previous::before, div.dt-container .top-controls .dt-paging .dt-paging-button.next::before, div.dt-container .bottom-controls .dt-paging .dt-paging-button.previous::before, div.dt-container .bottom-controls .dt-paging .dt-paging-button.next::before {
  content: "";
}
div.dt-container .top-controls .dt-paging .dt-paging-button.previous:hover, div.dt-container .top-controls .dt-paging .dt-paging-button.next:hover, div.dt-container .bottom-controls .dt-paging .dt-paging-button.previous:hover, div.dt-container .bottom-controls .dt-paging .dt-paging-button.next:hover {
  background-color: initial;
  background-image: none;
  border: none;
  border-left: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
}
div.dt-container .top-controls .dt-paging .dt-paging-button.previous:hover.previous, div.dt-container .top-controls .dt-paging .dt-paging-button.next:hover.previous, div.dt-container .bottom-controls .dt-paging .dt-paging-button.previous:hover.previous, div.dt-container .bottom-controls .dt-paging .dt-paging-button.next:hover.previous {
  transform: scale(1.5) rotate(45deg);
}
div.dt-container .top-controls .dt-paging .dt-paging-button.previous:hover.next, div.dt-container .top-controls .dt-paging .dt-paging-button.next:hover.next, div.dt-container .bottom-controls .dt-paging .dt-paging-button.previous:hover.next, div.dt-container .bottom-controls .dt-paging .dt-paging-button.next:hover.next {
  transform: scale(1.5) rotate(-135deg);
}
div.dt-container .top-controls .dt-paging .dt-paging-button.previous, div.dt-container .bottom-controls .dt-paging .dt-paging-button.previous {
  transform: rotate(45deg);
}
div.dt-container .top-controls .dt-paging .dt-paging-button.next, div.dt-container .bottom-controls .dt-paging .dt-paging-button.next {
  transform: rotate(-135deg);
}
div.dt-container .top-controls .dt-paging .dt-paging-button.disabled, div.dt-container .bottom-controls .dt-paging .dt-paging-button.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
div.dt-container .top-controls .dt-paging .dt-paging-button.first, div.dt-container .top-controls .dt-paging .dt-paging-button.last, div.dt-container .bottom-controls .dt-paging .dt-paging-button.first, div.dt-container .bottom-controls .dt-paging .dt-paging-button.last {
  display: none;
}
div.dt-container .top-controls .dt-paging .dt-paging-button:not(.previous, .next), div.dt-container .bottom-controls .dt-paging .dt-paging-button:not(.previous, .next) {
  width: 8px;
  height: 8px;
  background-color: var(--primary-light-color);
  text-indent: -9999px;
  padding: 0;
  border: none !important;
  border-radius: 50%;
  min-width: initial;
  transition: transform 0.3s ease;
}
div.dt-container .top-controls .dt-paging .dt-paging-button:not(.previous, .next):hover, div.dt-container .bottom-controls .dt-paging .dt-paging-button:not(.previous, .next):hover {
  transform: scale(1.5);
  background: var(--primary-light-color) !important;
}
div.dt-container .top-controls .dt-paging .dt-paging-button.current, div.dt-container .bottom-controls .dt-paging .dt-paging-button.current {
  background: var(--primary-color);
  transition: transform 0.3s ease;
}
div.dt-container .top-controls .dt-paging .dt-paging-button.current:hover, div.dt-container .bottom-controls .dt-paging .dt-paging-button.current:hover {
  transform: scale(1.5);
  background: var(--primary-color) !important;
}
div.dt-container .top-controls .dt-search, div.dt-container .bottom-controls .dt-search {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: white;
  border-radius: 20px;
}
div.dt-container .top-controls .dt-search label, div.dt-container .bottom-controls .dt-search label {
  display: block;
  text-indent: -9999px;
  width: 16px;
  height: 16px;
  background-image: url("../images/icons/icon_magnify.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
div.dt-container .top-controls .dt-search input, div.dt-container .bottom-controls .dt-search input {
  border: none;
  padding: 0;
  height: 20px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
}
div.dt-container .top-controls .dt-search input:focus, div.dt-container .bottom-controls .dt-search input:focus {
  outline: none;
}

table.dataTable tbody tr td .drag-handle {
  cursor: move;
  display: block;
  width: 9px;
  height: 24px;
  background-image: url("../images/icons/icon_dragdrop.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
table.dataTable tbody tr.reorder-dragging td .drag-handle {
  cursor: grabbing;
}

.dt-rowReorder-float-parent {
  cursor: grabbing;
}

.dashboard-switcher {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
}
.dashboard-switcher .toggle-switch {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-left: 20px;
  height: 24px;
  background-color: white;
  border-radius: 12px;
  cursor: pointer;
}
.dashboard-switcher .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.dashboard-switcher .toggle-switch .text {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  padding: 0 20px;
  color: var(--secondary-color);
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.dashboard-switcher .toggle-switch .text.off {
  background-color: var(--primary-color);
  color: white;
}
.dashboard-switcher .toggle-switch input:checked ~ .text.on {
  background-color: var(--primary-color);
  color: white;
}
.dashboard-switcher .toggle-switch input:checked ~ .text.off {
  color: var(--secondary-color);
  background-color: white;
}
input:checked ~ .dashboard-switcher .toggle-switch {
  background-color: white;
}

.time {
  display: flex;
  align-items: center;
}
.time svg {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}
.time svg path {
  fill: var(--primary-color);
  stroke: none;
}

.cert-status {
  display: flex;
  align-items: center;
}
.cert-status:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.cert-status span {
  margin-left: 5px;
  font-weight: 700;
}
.cert-status > div {
  margin-left: 5px;
}
.cert-status > div > div {
  font-weight: 700;
}
.cert-status.status-1:before {
  background-image: url("../images/icons/icon_cert-expired.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cert-status.status-2:before {
  background-image: url("../images/icons/icon_cert-upcoming.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cert-status.status-3:before {
  background-image: url("../images/icons/icon_cert-valid.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.download {
  text-indent: -9999px;
  display: block;
}
.download svg {
  width: 18px;
  height: 18px;
}

.download-all {
  display: flex;
  align-items: center;
}
.download-all:before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background-image: url("../images/icons/icon_cup-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.box .team-progress {
  color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.box .team-progress .title {
  display: flex;
  gap: 24px;
}
.box .team-progress .title svg {
  width: 32px;
  height: 32px;
  margin-right: 20px;
}
.box .team-progress .title h5 {
  flex: 1;
  margin: 0;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
}
.box .team-progress .number {
  display: flex;
  justify-content: flex-end;
}
.box .team-progress .number span {
  font-size: 20px;
  line-height: 24px;
  font-weight: 900;
}
.box .team-progress .bar {
  background-color: #EAE8E7;
  width: 100%;
  height: 8px;
  border-radius: 4px;
}
.box .team-progress .bar span {
  border-radius: 4px;
  background-color: var(--primary-color);
  display: block;
  height: 100%;
}
.box.links a {
  display: block;
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  padding: 10px;
  border-top: 1px solid #F6F6F5;
  display: flex;
  align-items: center;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  display: flex;
  gap: 16px;
}
.box.links a svg {
  width: 16px;
  height: 16px;
}
.box.links a:first-child {
  border-top: 1px solid transparent;
}
.box.links a:hover {
  background-color: #F6F6F5;
}
.box.news-box {
  display: flex;
  gap: 20px;
}
.box.news-box a {
  color: var(--secondary-color);
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}
.box.link {
  display: flex;
  gap: 20px;
  flex-direction: column;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}
.box.link h4 {
  display: flex;
  align-items: start;
  margin: 0;
}
.box.link h4 svg {
  margin-right: 20px;
  flex-grow: 0;
  flex-shrink: 0;
}
.box.link h4 span {
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  width: 70%;
}
.box.link p {
  margin: 0;
}
.box.link a {
  color: var(--secondary-color);
}

.my-courses .dt-container .top-controls {
  margin-bottom: 0;
}
.my-courses .dt-container .top-controls .dt-search {
  display: none;
}
.my-courses table.table {
  border-spacing: 0 16px;
}
.my-courses table.table thead {
  display: none;
}
.my-courses table.table tbody {
  transform: translateY(0);
}
.my-courses table.table tbody tr td {
  padding: 16px 0;
}
.my-courses table.table tbody tr td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-left: 24px;
}
.my-courses table.table tbody tr td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  padding-right: 24px;
}
.my-courses table.table tbody tr td .course {
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
}
.my-courses table.table tbody tr td .module {
  margin-top: 10px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
}
.my-courses table.table tbody tr td span {
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}
.my-courses table.table tbody tr td a {
  float: right;
  font-size: 13px;
  line-height: 32px;
  font-weight: 700;
}

.status-list {
  display: flex;
  gap: 20px;
  flex: 1;
}
.status-list a {
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  color: var(--secondary-color);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: 0.3s ease;
}
.status-list a.active {
  border-bottom: 2px solid var(--primary-color);
}
.status-list .mark-all-as-read {
  margin-left: auto;
  display: flex;
  gap: 10px;
}
.status-list .mark-all-as-read.hide {
  display: none;
}
.status-list .mark-all-as-read:before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../images/icons/icon_checked.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.welcome a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary-color);
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}
.welcome a img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.welcome h5 {
  margin-top: 20px !important;
}

.modal .modal-dialog .dashboard-selector form h2 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}
.modal .modal-dialog .dashboard-selector form p {
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}
.modal .modal-dialog .dashboard-selector form h5 {
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
}
.modal .modal-dialog .dashboard-selector form .selectors {
  display: flex;
  gap: 32px;
}
.modal .modal-dialog .dashboard-selector form .selectors .box {
  flex: 1;
  font-size: 13px;
  line-height: 17px;
  font-weight: 500;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  padding: 16px;
  border-radius: 8px;
  text-align: left;
  display: flex;
  gap: 16px;
  border: 1px solid #eee;
}
.modal .modal-dialog .dashboard-selector form .selectors .box .icon {
  width: 48px;
  height: 48px;
  border-radius: 2px;
  flex-grow: 0;
}
.modal .modal-dialog .dashboard-selector form .selectors .box .icon.simplified {
  background-image: url("../images/icons/icon_simplified-dashboard.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.modal .modal-dialog .dashboard-selector form .selectors .box .icon.advanced {
  background-image: url("../images/icons/icon_advanced-dashboard.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.modal .modal-dialog .dashboard-selector form .selectors .box .options {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal .modal-dialog .dashboard-selector form .selectors .box .options div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.modal .modal-dialog .dashboard-selector form .selectors .box .options div .left {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 5px;
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
}
.modal .modal-dialog .dashboard-selector form .selectors .box .options div .left label {
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
}
.modal .modal-dialog .dashboard-selector form .selectors .box .options div .left span {
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  opacity: 0.7;
}
.modal .modal-dialog .dashboard-selector form .selectors .box .options div .right {
  display: flex;
  align-items: center;
}
.modal .modal-dialog .dashboard-selector form .footer {
  text-align: center;
  margin: 20px 0;
}
.modal .modal-dialog .modal-footer {
  border-top: none;
  display: flex;
  justify-content: space-between;
}

.training-index {
  padding: 0 30px;
}

.module-details {
  margin: 0;
}

h2.course-header {
  font-weight: 600;
  margin-bottom: 30px;
}

.courses-topbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.courses-topbar .courses-views {
  display: flex;
  gap: 20px;
}
.courses-topbar .courses-views div {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.courses-topbar .courses-views #grid-view {
  background-image: url("../images/icons/icon_grid.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.courses-topbar .courses-views #grid-view.selected {
  background-image: url("../images/icons/icon_grid_selected.svg");
}
.courses-topbar .courses-views #list-view {
  background-image: url("../images/icons/icon_rows.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.courses-topbar .courses-views #list-view.selected {
  background-image: url("../images/icons/icon_rows_selected.svg");
}

.course-box {
  background-color: white;
  border-radius: 8px;
  margin-bottom: var(--bs-gutter-x);
  padding: 0;
}
.course-box video {
  width: 100%;
  margin: 0;
  border-radius: 8px;
}
.course-box .description {
  padding: 24px;
}
.course-box .description p {
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}

.module-row .col-md-4,
.module-row .col-md-3 {
  display: flex;
}

.chapter-content {
  padding-left: 100px;
}
.chapter-content .row {
  margin: 20px 0;
  /*        .splide img {
      height: 100%;
  }*/
}
.chapter-content .row video {
  width: 100%;
}
.chapter-content .row .image-caption {
  margin-top: 10px;
}
.chapter-content .row .splide__arrow {
  background: var(--primary-color);
  opacity: 1;
  border: 1px solid #FFF;
}
.chapter-content .row .splide__arrow svg {
  fill: #FFF;
}
.chapter-content .row img {
  width: 100%;
  /*            height: calc(100% - 34px);*/
  object-fit: cover;
}
.chapter-content .chapter-headline {
  display: flex;
  justify-content: space-between;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}
.chapter-content .chapter-headline h1 {
  font-size: 24px;
}
.chapter-content .download-button {
  display: flex;
  align-items: center;
  width: max-content;
}
.chapter-content .download-button:before {
  content: "";
  width: 13px;
  height: 15px;
  margin-right: 10px;
  background-image: url("../images/icons/icon_document.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.chapter-content .chapter-buttons {
  display: flex;
  justify-content: space-between;
  margin: 40px 0 20px;
}
.chapter-content .chapter-buttons .lms-link {
  cursor: pointer;
}
.chapter-content .chapter-buttons .lms-link.primary {
  margin-left: auto;
}
.chapter-content .chapter-buttons .lms-link.white {
  cursor: pointer;
  background-color: #FFF;
  color: var(--primary-color);
  border-color: var(--primary-color);
  border: 1px solid;
  font-size: 13px;
}

.row.grid > h3 {
  display: none;
}
.row.grid .col-md-12 {
  display: none;
}
.row.grid .col-md-3 {
  display: block;
}
.row.grid .col-md-4 {
  display: block;
}

.row.list > h3 {
  display: block;
  font-size: 15px;
  line-height: 21px;
  font-weight: 400;
  margin-bottom: 19px;
}
.row.list .col-md-12 {
  display: block;
}
.row.list .col-md-3 {
  display: none;
}
.row.list .col-md-4 {
  display: none;
}

.box {
  position: relative;
}
.box.course-modules {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.box .cup-icon {
  width: 40px;
  height: 40px;
  background-image: url("../images/icons/icon_cup_green.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 20px;
  margin-top: -20px;
}
.box .module-data {
  color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  flex: 1;
}
.box .module-data a {
  color: var(--secondary-color);
  text-decoration: none;
}
.box .module-data a:visited {
  color: var(--secondary-color);
}
.box .module-data a:hover {
  color: var(--secondary-color);
}
.box .module-data a:active {
  color: var(--secondary-color);
}
.box .module-data .course-title {
  display: flex;
  gap: 24px;
}
.box .module-data .course-title h4 {
  flex: 1;
  margin: 0 0 10px 0;
  font-size: 15px;
  line-height: 15px;
  font-weight: 400;
}
.box .module-data .module-title {
  display: flex;
  gap: 24px;
}
.box .module-data .module-title h5 {
  flex: 1;
  margin: 0;
  font-size: 13px;
  line-height: 15px;
  font-weight: 700;
}
.box .module-data .number {
  display: flex;
  justify-content: flex-end;
}
.box .module-data .number span {
  font-size: 20px;
  line-height: 24px;
  font-weight: 900;
}
.box .module-data .bar {
  background-color: #EAE8E7;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  margin-bottom: 25px;
}
.box .module-data .bar span {
  border-radius: 4px;
  background-color: var(--primary-color);
  display: block;
  height: 100%;
}
.box .module-data .chapter-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
.box .module-data .chapter-list ul li {
  font-size: 13px;
  line-height: 17px;
  font-weight: 400;
  text-align: left;
}
.box .module-data .chapter-list ul li:before {
  content: "·";
  font-size: 80px;
  vertical-align: text-bottom;
  line-height: 29px;
  color: #EAE8E7;
  margin-right: 10px;
  font-weight: 400;
}
.box .module-data .chapter-list ul li.visited {
  font-weight: 600;
}
.box .module-data .chapter-list ul li.visited:before {
  color: var(--primary-color);
}
.box .box-footer {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}
.box .box-footer a {
  color: #FFF !important;
}
.box .box-footer .time {
  font-size: 13px;
}
.box .box-footer .time svg {
  width: 16px;
  height: 16px;
}
.box.all-modules {
  margin-bottom: 40px !important;
}
.box.all-modules .module-title h5 {
  margin: 0 0 20px;
}
.box.all-modules .number span {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}
.box.all-modules .time.completed svg path {
  fill: #01e0be;
}
.box.all-modules.list-view {
  padding: 15px 30px;
}
.box.all-modules.list-view .module-data {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
}
.box.all-modules.list-view .module-data .module-info {
  width: 60%;
}
.box.all-modules.list-view .module-data .module-info .description {
  width: 90%;
}
.box.all-modules.list-view .module-data .module-info .description p {
  margin-bottom: 0;
}
.box.all-modules.list-view .module-data .module-info .bar {
  margin-bottom: 5px;
}
.box.all-modules.list-view .module-data .cup-icon {
  position: static;
  margin-top: 0;
  opacity: 0;
}
.box.all-modules.list-view .module-data a.lms-link {
  cursor: pointer;
  color: #FFF !important;
}
.box.all-modules.list-view .module-data.completed .time svg path {
  fill: #01e0be;
}
.box.all-modules.list-view .module-data.completed .cup-icon {
  opacity: 1;
}
.box.all-modules.list-view .module-title h5 {
  font-size: 15px;
}
.box.all-modules.list-view .number span {
  margin-top: -22px;
  margin-bottom: 15px;
}
.box.course-modules .module-title h5 {
  font-size: 15px;
  line-height: 15px;
  font-weight: 400;
}

.exam-content {
  padding-left: 100px;
}
.exam-content.results {
  width: 75%;
}
.exam-content.results .question input[type=radio]:checked + label:before {
  background-color: #FD361C;
  border-color: #FD361C;
}
.exam-content .exam-headline {
  display: flex;
  justify-content: space-between;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}
.exam-content .exam-headline.no-introduction {
  margin-bottom: 40px;
}
.exam-content .exam-headline h1 {
  font-size: 24px;
}
.exam-content > p {
  margin: 20px 0 40px;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}
.exam-content .exam-buttons {
  display: flex;
  justify-content: space-between;
  margin: 40px 0 20px;
}
.exam-content .exam-buttons .lms-link.white {
  cursor: pointer;
  background-color: #FFF;
  color: var(--primary-color);
  border-color: var(--primary-color);
  border: 1px solid;
  font-size: 13px;
}
.exam-content .exam-result-buttons {
  display: flex;
  justify-content: space-between;
  margin: 40px 0 20px;
  width: 40%;
}
.exam-content .exam-result-buttons .lms-link.white {
  cursor: pointer;
  background-color: #FFF;
  color: var(--primary-color);
  border-color: var(--primary-color);
  border: 1px solid;
  font-size: 13px;
}
.exam-content .question {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}
.exam-content .question h4 {
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 35px;
}
.exam-content .question .question-option {
  margin-bottom: 15px;
}
.exam-content .question label {
  display: inline-block;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  color: #082951;
}
.exam-content .question input[type=radio] {
  display: none;
}
.exam-content .question input[type=radio] + label:before {
  content: "✔";
  border: 0.1em solid #072951;
  border-radius: 50%;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  color: transparent;
  transition: 0.2s;
  font-size: 10px;
  text-align: center;
  line-height: 15px;
  vertical-align: text-bottom;
}
.exam-content .question input[type=radio] + label:active:before {
  transform: scale(0);
}
.exam-content .question input[type=radio]:checked + label:before {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.exam-content .question input[type=radio]:disabled + label:before {
  transform: scale(1);
  border-color: #aaa;
}
.exam-content .question input[type=radio]:checked:disabled + label:before {
  transform: scale(1);
  background-color: #bfb;
  border-color: #bfb;
}
.exam-content .question ul {
  list-style: none;
  padding: 0;
}
.exam-content .question ul li {
  margin-bottom: 10px;
  background-color: #FFF;
  border-radius: 8px;
  padding: 8px 16px;
  background-image: url("../images/icons/icon_dragdrop1.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  position: relative;
}
.exam-content .question ul li:hover {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  cursor: pointer;
}
.exam-content .question ul li:hover:after {
  display: block;
}
.exam-content .question ul li:after {
  content: " ";
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -12px;
  margin-right: -12px;
  background-image: url("../images/icons/icon_drag_green.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: none;
}
.exam-content .question .hotspot-cross {
  width: 50px;
  height: 50px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exam-content .question .hotspot-cross:before, .exam-content .question .hotspot-cross:after {
  content: "";
  position: absolute;
  display: block;
  opacity: 1;
  background-color: var(--primary-color);
  transform: rotate(45deg);
}
.exam-content .question .hotspot-cross:before {
  width: 50px;
  height: 5px;
}
.exam-content .question .hotspot-cross:after {
  width: 5px;
  height: 50px;
}
.exam-content .question .hotspot-cross.wrong:before, .exam-content .question .hotspot-cross.wrong:after {
  background-color: #FD361C;
}
.exam-content .exam-results-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.exam-content .exam-results-container .exam-result-text {
  width: 60%;
}
.exam-content .exam-results-container .exam-result-text h3 {
  margin-bottom: 20px;
}
.exam-content .exam-results-container .exam-result-text .certificate-info {
  margin: 10px 0 20px;
}
.exam-content .exam-results-container .exam-result-text a {
  width: max-content;
}
.exam-content .exam-results-container .exam-score h2 {
  margin-top: 7px;
}
.exam-content .exam-results-container .exam-score .exam-score-box {
  background: var(--primary-color);
  color: #FFF;
  font-size: 40px;
  font-weight: 600;
  padding: 50px 40px;
  min-width: 180px;
  text-align: center;
}

.certificate-lock {
  position: relative;
  padding: 30px 25px;
  width: 100%;
  aspect-ratio: 2/1.6;
}
.certificate-lock .certificate-image {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  aspect-ratio: 2/1.6;
  border-radius: 8px;
  background-image: url("../images/icons/certificate_image.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 173, 160, 0.64);
  filter: blur(5px);
  background-blend-mode: multiply;
}
.certificate-lock .lock-message {
  z-index: 1;
  position: relative;
  color: #FFF;
  font-size: 15px;
  font-weight: 600;
}

.certificate-lock:after {
  content: " ";
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  background-image: url("../images/icons/icon_lock_green.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.reporting {
  padding: 0 30px;
}

.row {
  margin-bottom: 40px;
}
.row .col-md-2 {
  /*        margin: 0 50px 0 0;*/
}
.row .graph-container {
  padding: 0 50px;
}

.reporting .dt-container .top-controls .dt-search {
  display: none;
}
.reporting .dt-container .table.dataTable thead th {
  white-space: nowrap;
}
.reporting .dt-container .table.dataTable thead th:last-child {
  padding-right: 30px;
}
.reporting .dt-container .table.dataTable td.dt-bold {
  font-weight: 600;
}
.reporting .dt-buttons .lms-link {
  background-color: var(--primary-color);
}
.reporting .legend-container {
  margin-top: 20px;
  font-size: 13px;
}
.reporting .cert-status {
  justify-content: end;
  font-weight: 400;
}
.reporting .cert-status.status-1:before {
  background-image: url("../images/icons/icon_cert-expired.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.reporting .cert-status.status-2:before {
  background-image: url("../images/icons/icon_cert-upcoming.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.reporting .cert-status.status-3:before {
  background-image: url("../images/icons/icon_cert-upcoming.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.reporting .cert-status.status-4:before {
  background-image: url("../images/icons/icon_cert-valid.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.reporting .selectize-control.single .selectize-input {
  color: var(--secondary-color);
  padding: 8px 50px 8px 16px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: none;
  background-image: none;
}
.reporting .selectize-control.single .selectize-input input::placeholder {
  color: var(--secondary-color);
  opacity: 1; /* Firefox */
}
.reporting .selectize-control.single .selectize-input input::-ms-input-placeholder { /* Edge 12 -18 */
  color: var(--secondary-color);
}
.reporting .selectize-control.single .selectize-input:after {
  position: absolute;
  content: "";
  top: 13px;
  right: 25px;
  width: 10px;
  height: 10px;
  opacity: 1;
  border-left: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: 0.3s ease;
  border-right: none;
  border-top: none;
  margin-top: 0;
}
.reporting .selectize-control.single .selectize-input.dropdown-active:after {
  transform: rotate(135deg);
  top: 17px;
  margin-top: 0;
  border-left: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
}
.reporting .selectize-control.single .selectize-input .item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.reporting .selectize-dropdown-content {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border: 0;
  color: var(--secondary-color);
}
.reporting .selectize-dropdown-content::-webkit-scrollbar-track {
  background-color: whitesmoke;
}
.reporting .selectize-dropdown-content::-webkit-scrollbar {
  width: 10px;
  background-color: var(--primary-light-color);
}
.reporting .selectize-dropdown-content::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--primary-light-color);
  border: 2px solid var(--primary-light-color);
}
.reporting .selectize-dropdown [data-selectable].option {
  color: var(--secondary-color);
  padding: 8px 50px 8px 16px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent transparent;
}
.reporting .selectize-dropdown [data-selectable].option:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.reporting .selectize-dropdown .active:not(.selected) {
  background: #fff;
}
.reporting .selectize-dropdown .selected {
  color: var(--secondary-color);
  background-color: rgba(0, 0, 0, 0.1);
}

.list-container .custom-controls {
  display: none;
}
.list-container .add-buttons {
  display: flex;
  gap: 20px;
  flex: 1;
}
.list-container .add-buttons a {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.list-container .add-buttons a:before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 10px;
}
.list-container .add-buttons a.add-organization:before {
  width: 22px;
  height: 18px;
  background-image: url("../images/icons/icon_add-organization.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.list-container .add-buttons a.add-course:before {
  width: 18px;
  height: 16px;
  background-image: url("../images/icons/icon_book.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.list-container .add-buttons a.add-user:before {
  width: 18px;
  height: 16px;
  background-image: url("../images/icons/icon_add-user-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.exam-settings-preview-container {
  max-width: 800px;
  margin-bottom: 50px;
}
.exam-settings-preview-container .row div label {
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
}
.exam-settings-preview-container .row div div {
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
}

/* prefixed by https://autoprefixer.github.io (PostCSS: v7.0.26, autoprefixer: v9.7.3) */
.custom-select {
  position: relative;
  margin-top: 0px;
}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: #fff;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  min-width: 200px;
  border-radius: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 13px;
  right: 25px;
  width: 10px;
  height: 10px;
  opacity: 1;
  border-left: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: 0.3s ease;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  transform: rotate(135deg);
  top: 17px;
}

.select-selected.select-arrow-active {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

/* style the items (options), including the selected item: */
.select-items div, .select-selected {
  color: var(--secondary-color);
  padding: 8px 50px 8px 16px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}

.select-items div {
  border-color: rgba(0, 0, 0, 0.1) transparent transparent transparent;
}

.select-items div.disabled, .select-selected.disabled {
  color: #8394A8;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: white;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  max-height: 200px;
  overflow: auto;
  -webkit-background-clip: padding-box; /* for Safari */
  background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
  /*    border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;*/
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.select-items::-webkit-scrollbar-track {
  background-color: whitesmoke;
}
.select-items::-webkit-scrollbar {
  width: 10px;
  background-color: var(--primary-light-color);
}
.select-items::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--primary-light-color);
  border: 2px solid var(--primary-light-color);
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.autocomplete {
  position: relative;
  display: flex;
  padding: 4px 20px;
  background-color: #fff;
  border-radius: 24px;
  border: 1px solid #546A85;
  transition: all 0.3s;
  align-items: center;
}
.autocomplete .expander {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.autocomplete .expander:after {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 5px;
  left: 6px;
  border-right: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  transform: rotate(45deg);
  cursor: pointer;
  transition: 0.3s ease;
}
.autocomplete.expanded .expander:after {
  top: 11px;
  transform: rotate(-135deg);
}
.autocomplete input {
  padding: 4px 0;
  border: 1px solid transparent;
  color: var(--secondary-color);
  margin-right: 10px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
}
.autocomplete input:focus {
  outline-width: 0;
}
.autocomplete input[type=search] {
  background-color: #fff;
  width: 100%;
}
.autocomplete input[type=search]::-webkit-search-cancel-button {
  appearance: none;
  width: 10px;
  height: 10px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14" fill="none" stroke="%23000" stroke-width="2"><line x1="1" y1="1" x2="13" y2="13"/><line x1="13" y1="1" x2="1" y2="13"/></svg>') no-repeat center center;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.autocomplete input::-webkit-input-placeholder {
  color: #546A85;
  font-weight: 500;
}
.autocomplete input:-moz-placeholder {
  font-weight: 500;
  color: #546A85;
}
.autocomplete input::-moz-placeholder {
  color: #546A85;
  font-weight: 500;
}
.autocomplete input:-ms-input-placeholder {
  color: #546A85;
  font-weight: 500;
}
.autocomplete input[placeholder] {
  color: #546A85;
  font-weight: 500;
}
@keyframes comboboxAnimation {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 300px;
  }
}
@keyframes closeAnimation {
  from {
    opacity: 1;
    max-height: 300px;
  }
  to {
    opacity: 0;
    max-height: 0;
  }
}
.autocomplete .autocomplete-items {
  position: absolute;
  border: 1px solid #546A85;
  border-top: none;
  z-index: 99;
  top: 100%;
  left: -1px;
  right: -1px;
  color: #546A85;
  animation-name: comboboxAnimation;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  overflow: auto;
}
.autocomplete .autocomplete-items.closeAnimation {
  animation-name: closeAnimation;
}
.autocomplete .autocomplete-items::-webkit-scrollbar-track {
  background-color: whitesmoke;
}
.autocomplete .autocomplete-items::-webkit-scrollbar {
  width: 10px;
  background-color: var(--primary-light-color);
}
.autocomplete .autocomplete-items::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--primary-light-color);
  border: 2px solid var(--primary-light-color);
}
.autocomplete .autocomplete-items div {
  padding: 0 20px;
  cursor: pointer;
  background-color: #fff;
  position: relative;
  font-size: 13px;
  line-height: 19px;
  font-weight: 500;
}
.autocomplete .autocomplete-items div span {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: block;
  cursor: pointer;
  color: #546A85;
}
.autocomplete .autocomplete-items div:hover {
  font-weight: 700;
}
.autocomplete .autocomplete-active {
  font-weight: 700;
}
.autocomplete.expanded {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0;
}

.chart-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0 0 50px;
}
.chart-container .y-axis {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #000;
  display: none;
}
.chart-container .grid-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #EAE8E7;
}
.chart-container .grid-line span {
  position: absolute;
  left: -20px;
  top: -10px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
}
.chart-container .bars {
  position: relative;
  height: 250px;
  margin-top: 40px;
  margin-left: 20px;
  display: flex;
  align-items: flex-end;
}
.chart-container .bars .bar {
  flex: 1;
  margin: 0 0px;
  position: relative;
  background-color: var(--primary-light-color);
  text-align: center;
  color: white;
  font-weight: bold;
}
.chart-container .bars .bar .tooltip {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  color: var(--secondary-color);
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  width: 50px;
  height: 22px;
  text-align: center;
  white-space: nowrap;
  z-index: 10;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
.chart-container .bars .bar .tooltip::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: white transparent transparent transparent;
}
.chart-container .bars .bar-label {
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  color: var(--secondary-color);
  position: absolute;
  bottom: -30px;
  width: 100%;
}

body .content.profile {
  position: relative;
  display: flex;
  flex-direction: column;
}
body .content.profile .circle {
  position: fixed;
  border-radius: 50%;
  background: var(--primary-light-color);
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
body .content.profile .circle.circle-1 {
  width: 50vh;
  height: 50vh;
  bottom: -30%;
  left: 10vh;
}
body .content.profile .circle.circle-2 {
  width: 90vh;
  height: 90vh;
  bottom: -30%;
  right: -20vh;
}
body .content.profile .profilecontainer {
  position: relative;
  z-index: 1;
  flex-grow: 1;
  margin: 0px auto 30px 200px;
}
body .content.profile .profilecontainer h2 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  color: #0C0B0B;
}
body .content.profile .profilecontainer > div {
  display: flex;
  gap: 30px;
}
body .content.profile .profilecontainer > div .left-box {
  background-color: white;
  border-radius: 8px;
}
body .content.profile .profilecontainer > div .left-box .head {
  background-color: var(--primary-color);
  border-radius: 8px;
  position: relative;
  padding: 16px 24px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body .content.profile .profilecontainer > div .left-box .head img {
  width: 100px;
  height: 100px;
  position: absolute;
  bottom: -30px;
  border-radius: 50%;
}
body .content.profile .profilecontainer > div .left-box .head h5 {
  margin: 10px 0 0 120px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  color: white;
}
body .content.profile .profilecontainer > div .left-box .head h4 {
  margin: 10px 0 0 120px;
  margin-bottom: 0px;
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
  color: white;
}
body .content.profile .profilecontainer > div .left-box .head .link-container {
  display: flex;
  justify-content: flex-end;
}
body .content.profile .profilecontainer > div .left-box .head .link-container a {
  width: 16px;
  height: 16px;
  background-image: url("../images/icons/icon_pencil.svg");
}
body .content.profile .profilecontainer > div .left-box form {
  padding: 50px 24px 24px;
}
body .content.profile .profilecontainer > div .left-box form hr {
  color: var(--primary-color);
}
body .content.profile .profilecontainer > div .left-box form .row {
  padding: 10px 0;
}
body .content.profile .profilecontainer > div .left-box form .row label {
  color: var(--secondary-color);
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}
body .content.profile .profilecontainer > div .left-box form .row label span {
  display: block;
  width: 16px;
  height: 16px;
  text-align: center;
  font-size: 10px;
  line-height: 12px;
  font-weight: 700;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  color: var(--primary-color);
  position: relative;
  cursor: pointer;
}
body .content.profile .profilecontainer > div .left-box form .row label span::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 200%;
  right: 0%;
  text-align: left;
  background-color: white;
  width: 160px;
  color: var(--secondary-color);
  padding: 16px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
body .content.profile .profilecontainer > div .left-box form .row label span:hover::after {
  visibility: visible;
  opacity: 1;
}
body .content.profile .profilecontainer > div .left-box form .row div {
  color: var(--secondary-color);
  margin-top: 10px;
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
}
body .content.profile .profilecontainer > div .left-box form .row div a {
  color: var(--secondary-color);
}
body .content.profile .profilecontainer > div .right-box {
  width: 330px;
}
body .content.profile .profilecontainer > div .right-box h4 {
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0 0 30px;
}
body .content.profile .profilecontainer > div .right-box p {
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}
body .content.profile .profilecontainer > div .right-box .box {
  margin: 0 0 30px;
}
body .content.profile .profilecontainer > div .right-box .security {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
}
body .content.profile .profilecontainer > div .right-box .security a, body .content.profile .profilecontainer > div .right-box .security button {
  height: 36px;
  padding: 0px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: var(--secondary-color);
  font-size: 13px;
  line-height: 36px;
  font-weight: 500;
  border-radius: 4px;
  width: 100%;
  border: none;
  background: white;
}
body .content.profile .profilecontainer > div .right-box .security a:before, body .content.profile .profilecontainer > div .right-box .security button:before {
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
  margin-right: 20px;
}
body .content.profile .profilecontainer > div .right-box .security a.two-fa:before, body .content.profile .profilecontainer > div .right-box .security button.two-fa:before {
  background-image: url("../images/icons/icon_tool.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body .content.profile .profilecontainer > div .right-box .security a.password:before, body .content.profile .profilecontainer > div .right-box .security button.password:before {
  background-image: url("../images/icons/icon_lock.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body .content.profile .profilecontainer > div .right-box .security a.logout:before, body .content.profile .profilecontainer > div .right-box .security button.logout:before {
  width: 18px;
  background-image: url("../images/icons/icon_logout.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body .content.profile .profilecontainer > div .right-box .security a:nth-child(even), body .content.profile .profilecontainer > div .right-box .security button:nth-child(even) {
  background-color: #F6F6F5;
}
body .content.profile .profilecontainer > div .right-box .security a:hover, body .content.profile .profilecontainer > div .right-box .security button:hover {
  background-color: #eee;
}
body .content.profile .profilecontainer > div .right-box .security a:hover:nth-child(even), body .content.profile .profilecontainer > div .right-box .security button:hover:nth-child(even) {
  background-color: #e9e9e9;
}
body .modal .modal-body h3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}
body .modal .modal-body.edit-profile form .content {
  display: flex;
  gap: 60px;
  padding: 20px 0;
}
body .modal .modal-body.edit-profile form .content .left {
  padding: 50px 0;
}
body .modal .modal-body.edit-profile form .content .left .image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-color: gray;
}
body .modal .modal-body.edit-profile form .content .left .image a {
  position: absolute;
  display: block;
  width: 32px;
  height: 32px;
  bottom: 0;
  right: 0;
  background-color: var(--secondary-color);
  border-radius: 50%;
  background-image: url("../images/icons/icon_pencil-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 50%;
}
body .modal .modal-body.edit-profile form .content .right {
  flex-grow: 1;
}
body .modal .modal-body.edit-photo form .content {
  display: flex;
  gap: 30px;
  padding: 20px 0 40px;
  flex-direction: row;
}
body .modal .modal-body.edit-photo form .content .image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-color: gray;
}
body .modal .modal-body.edit-photo form .content .right {
  flex-grow: 1;
  max-width: 180px;
}
body .modal .modal-body.edit-photo form .content .right p {
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}
body .modal .modal-body.edit-photo form .content .right input[type=file] {
  display: none;
}
body .modal .modal-body.edit-photo form .content .right .custom-file-upload {
  border: 2px solid var(--secondary-color);
  height: 24px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  color: var(--secondary-color);
  background-color: #F6F6F5;
  display: inline-block;
  cursor: pointer;
}
body .modal .modal-body.edit-photo form .content .right .file-info {
  display: none;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  color: #546A85;
  margin-top: 30px;
}
body .modal .modal-body.edit-photo form .content .right .file-info.show {
  display: block;
}

.communication-preferences {
  padding: 16px;
}
.communication-preferences > a {
  text-decoration: none;
  color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
}
.communication-preferences > a:after {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url("../images/icons/icon_pencil.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 30px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  flex-shrink: 0;
}
.communication-preferences form {
  display: none;
}
.communication-preferences.expanded > a:after {
  background-image: url("../images/icons/icon_close.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.communication-preferences.expanded form {
  display: block;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.communication-preferences.expanded form .custom-radio a {
  display: block;
  opacity: 0.7;
  color: var(--secondary-color);
}
.communication-preferences.expanded form .action {
  margin: 20px 0 0;
  display: flex;
  justify-content: space-between;
}
.communication-preferences.expanded form .action button {
  height: 24px;
  font-size: 12px;
  line-height: 24px;
  font-weight: 700;
  border: none;
}
.password-requrements {
  font-size: 10px;
  line-height: 16px;
  font-style: italic;
  margin: 10px;
}
.password-requrements p {
  margin: 5px 0;
}
.password-requrements ul {
  padding: 0;
  list-style: inside;
  margin: 0;
}

#notificationContainer .notification-box {
  margin: 20px 0;
  background-color: white;
  display: flex;
  gap: 30px;
  padding: 24px;
  border-radius: 8px;
}
#notificationContainer .notification-box.no-results {
  justify-content: center;
}
#notificationContainer .notification-box.no-results.hide {
  display: none;
}
#notificationContainer .notification-box .left {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#notificationContainer .notification-box .left .header {
  display: flex;
  gap: 10px;
  align-items: center;
}
#notificationContainer .notification-box .left .header span {
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
#notificationContainer .notification-box .left .header span:after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  display: block;
  background-color: var(--primary-color);
}
#notificationContainer .notification-box .left .header span.icon svg {
  display: none;
  width: initial;
  height: initial;
}
#notificationContainer .notification-box .left .header span.icon.group-reminder .group-reminder, #notificationContainer .notification-box .left .header span.icon.group-new .group-new, #notificationContainer .notification-box .left .header span.icon.group-warning .group-warning {
  display: block;
}
#notificationContainer .notification-box .left .header span.icon:after {
  display: none;
}
#notificationContainer .notification-box .left .body {
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}
#notificationContainer .notification-box .left .body p {
  margin: 0;
}
#notificationContainer .notification-box .left .body a {
  background-color: initial !important;
  color: var(--primary-color) !important;
  padding: 0px !important;
  text-decoration: underline !important;
}
#notificationContainer .notification-box .left .body ul {
  list-style: none;
}
#notificationContainer .notification-box .left a {
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  color: var(--secondary-color);
}
#notificationContainer .notification-box .img-contianer {
  flex-grow: 0;
}
#notificationContainer .notification-box .img-contianer .image {
  margin-top: 20px;
  width: 100px;
  height: 70px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
}
#notificationContainer .notification-box .link {
  flex-grow: 0;
  width: 24px;
}
#notificationContainer .notification-box .link > a {
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/icon_unread.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#notificationContainer .notification-box .link > a svg {
  width: initial;
  height: initial;
  display: none;
}
#notificationContainer .notification-box.read .link > a {
  background: none;
  width: initial;
  height: initial;
  pointer-events: none;
}
#notificationContainer .notification-box.read .link > a svg {
  display: block;
}

.more {
  text-align: center;
}

.row.notifications {
  margin: 10px 10%;
}
@media screen and (max-width: 1680px) {
  .row.notifications {
    margin: 10px 5%;
  }
}
@media screen and (max-width: 1024px) {
  .row.notifications {
    margin: 10px 5px;
  }
}
.row.notifications .preferences h4 {
  display: none;
}
.row.notifications .preferences p {
  display: none;
}
.row.notifications .preferences .communication-preferences {
  margin-top: 85px;
}

.modal-content.course-content h2 {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.modal-content.course-content h2 a {
  display: block;
  width: 24px;
  height: 24px;
  text-indent: -9999px;
  border-radius: 4px;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease;
  flex-grow: 0;
}
.modal-content.course-content h2 a.reorder {
  background-image: url("../images/icons/icon_reorder.svg");
  background-size: cover;
}
.modal-content.course-content .content-block-selector {
  position: relative;
}
.modal-content.course-content .content-block-selector .trigger {
  margin: auto;
  display: block;
  width: 24px;
  height: 24px;
  background-color: #DCE0E3;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  cursor: pointer;
  transition: 0.3s ease;
}
.modal-content.course-content .content-block-selector .trigger:hover {
  background-color: var(--primary-color);
}
.modal-content.course-content .content-block-selector .trigger:before, .modal-content.course-content .content-block-selector .trigger:after {
  position: absolute;
  content: "";
  display: block;
  width: 2px;
  height: 8px;
  top: 50%;
  left: 50%;
  border-radius: 1px;
  background-color: #F6F6F5;
  transform: translate(-50%, -50%);
}
.modal-content.course-content .content-block-selector .trigger:before {
  width: 2px;
  height: 8px;
}
.modal-content.course-content .content-block-selector .trigger:after {
  height: 2px;
  width: 8px;
}
.modal-content.course-content .content-block-selector .trigger .options {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 24px;
  padding: 5px 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  background-color: var(--primary-light1-color);
}
.modal-content.course-content .content-block-selector .trigger.expanded {
  background-color: var(--primary-color);
  opacity: 1;
}
.modal-content.course-content .content-block-selector .trigger.expanded:before {
  opacity: 0;
}
.modal-content.course-content .content-block-selector .trigger.expanded .options {
  display: flex;
}
.modal-content.course-content .content-block-selector .trigger.expanded .options span {
  display: block;
  width: 2px;
  background-color: white;
  margin-left: 10px;
  margin-right: 10px;
}
.modal-content.course-content .content-block-selector .trigger.expanded .options a {
  display: block;
  width: 28px;
  height: 18px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  text-indent: -9999px;
  border-radius: 4px;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease;
}
.modal-content.course-content .content-block-selector .trigger.expanded .options a.reorder {
  background-image: url("../images/icons/icon_reorder.svg");
}
.modal-content.course-content .content-block-selector .trigger.expanded .options a.content-type-text {
  background-image: url("../images/icons/contentblocks/icon_text.svg");
}
.modal-content.course-content .content-block-selector .trigger.expanded .options a.content-type-image {
  background-image: url("../images/icons/contentblocks/icon_image.svg");
}
.modal-content.course-content .content-block-selector .trigger.expanded .options a.content-type-video {
  background-image: url("../images/icons/contentblocks/icon_video.svg");
}
.modal-content.course-content .content-block-selector .trigger.expanded .options a.content-type-twocolumnstext {
  background-image: url("../images/icons/contentblocks/icon_twocolumnstext.svg");
}
.modal-content.course-content .content-block-selector .trigger.expanded .options a.content-type-onecolumntext {
  background-image: url("../images/icons/contentblocks/icon_onecolumntext.svg");
}
.modal-content.course-content .content-block-selector .trigger.expanded .options a.content-type-twocolumnimages {
  background-image: url("../images/icons/contentblocks/icon_twocolumnimages.svg");
}
.modal-content.course-content .content-block-selector .trigger.expanded .options a.content-type-threecolumnimages {
  background-image: url("../images/icons/contentblocks/icon_threecolumnimages.svg");
}
.modal-content.course-content .content-block-selector .trigger.expanded .options a.content-type-button {
  background-image: url("../images/icons/contentblocks/icon_button.svg");
}
.modal-content.course-content .content-block-selector .trigger.expanded .options a.content-type-wistiavideo {
  background-image: url("../images/icons/contentblocks/icon_wistia-video.svg");
}
.modal-content.course-content .content-block-selector .trigger.expanded .options a:hover {
  background-color: var(--primary-light-color);
}
.modal-content.course-content .content-block-selector:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  opacity: 0.5;
  transform: translateY(-50%);
  transition: 0.3s ease;
}
.modal-content.course-content .content-block .row {
  position: relative;
}
.modal-content.course-content .content-block a.delete {
  position: absolute;
  top: 30px;
  right: -20px;
  display: block;
  width: 20px;
  height: 20px;
  opacity: 0;
  transition: 0.3s ease;
  background-size: contain;
}
.modal-content.course-content .content-block:hover a.delete {
  opacity: 1;
}
.modal-content.course-content .content-block .ck-editor .ck-toolbar {
  background-color: var(--primary-light1-color);
  border: none;
  border-top-left-radius: 8px !important;
  border-top-right-radius: 8px !important;
  overflow: hidden;
  padding-bottom: 8px;
}
.modal-content.course-content .content-block .ck-editor .ck-toolbar .ck-toolbar__items button {
  cursor: pointer;
}
.modal-content.course-content .content-block .ck-editor .ck-toolbar .ck-toolbar__items button svg path {
  stroke: transparent;
  fill: var(--secondary-color);
  transition: fill 0.3s ease;
}
.modal-content.course-content .content-block .ck-editor .ck-toolbar .ck-toolbar__items button:hover {
  background-color: initial;
}
.modal-content.course-content .content-block .ck-editor .ck-toolbar .ck-toolbar__items button:hover svg path {
  fill: var(--primary-color);
}
.modal-content.course-content .content-block .ck-editor .ck-content {
  border: none;
  border-radius: 8px;
  transform: translateY(-8px);
  font-size: 13px;
  line-height: 20px;
  padding: 0 16px;
}
.modal-content.course-content .content-block .ck-editor .ck-content.ck-focused {
  border: 1px solid #546A85;
  box-shadow: none;
}
.modal-content.course-content .content-block input, .modal-content.course-content .content-block textarea {
  font-size: 13px;
  line-height: 20px;
  color: var --secondary-color;
}
.modal-content.course-content .content-block .file-upload-container {
  flex-direction: column;
}
.modal-content.course-content .content-block .file-upload-container .file-upload {
  width: 100%;
  min-height: 200px;
}
.modal-content.course-content .content-block .file-upload-container .file-upload label.link {
  right: 10px;
}
.modal-content.course-content .content-block .file-upload-container .image-gallery {
  position: relative;
}
.modal-content.course-content .content-block .file-upload-container .image-gallery .icon-link {
  position: absolute;
  border-radius: 50%;
  text-indent: -9999px;
  display: block;
  cursor: pointer;
}
.modal-content.course-content .content-block .file-upload-container .image-gallery .prev, .modal-content.course-content .content-block .file-upload-container .image-gallery .next {
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  display: none;
}
.modal-content.course-content .content-block .file-upload-container .image-gallery .prev:before, .modal-content.course-content .content-block .file-upload-container .image-gallery .next:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  display: block;
  transform: translate(-50%, -50%) rotate(45deg);
  border-left: 2px solid white;
  border-bottom: 2px solid white;
}
.modal-content.course-content .content-block .file-upload-container .image-gallery .prev {
  left: 16px;
}
.modal-content.course-content .content-block .file-upload-container .image-gallery .next {
  right: 16px;
}
.modal-content.course-content .content-block .file-upload-container .image-gallery .next:before {
  transform: translate(-50%, -50%) rotate(-135deg);
}
.modal-content.course-content .content-block .file-upload-container .image-gallery .image-preview-container {
  width: 100%;
}
.modal-content.course-content .content-block .file-upload-container .image-gallery .image-preview-container .image-preview {
  display: none;
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.modal-content.course-content .content-block .file-upload-container .image-gallery .image-preview-container .image-preview.active {
  display: block;
}
.modal-content.course-content .content-block .file-upload-container .image-gallery .image-preview-container .image-preview .delete-image {
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  background-image: url(/images/icons/icon_delete.svg);
  background-color: white;
  background-image: url("/images/icons/icon_delete.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}
.modal-content.course-content .content-block .file-upload-container .image-gallery .image-preview-container textarea {
  display: none;
}
.modal-content.course-content .content-block .file-upload-container .image-gallery .image-preview-container textarea.active {
  display: block;
}
.modal-content.course-content .content-block .file-upload-container .caption {
  display: none;
}
.modal-content.course-content .content-block .file-upload-container .caption.active {
  display: block;
}
.modal-content.course-content .content-block .flex {
  display: flex;
  gap: 40px;
}
.modal-content.course-content .content-block .flex > div {
  flex: 1;
}
.modal-content .cb-reorder-list {
  padding: 20px 0;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.modal-content .cb-reorder-list .item {
  background-color: var(--primary-light1-color);
  height: 56px;
  display: flex;
  gap: 20px;
  border-radius: 8px;
  overflow: hidden;
  align-items: center;
}
.modal-content .cb-reorder-list .item .drag-handler {
  flex-grow: 0;
  flex-shrink: 0;
  width: 16px;
  height: 56px;
  background-color: #F6F6F5;
  background-image: url("../images/icons/icon_dragdrop1.svg");
}
.modal-content .cb-reorder-list .item .image {
  flex-grow: 0;
  flex-shrink: 0;
  width: 70px;
  height: 40px;
  background-color: white;
  border-radius: 8px;
  background-position: center;
  background-repeat: no-repeat;
}
.modal-content .cb-reorder-list .item .image.cb-1 {
  background-image: url("../images/icons/contentblocks/icon_text.svg");
}
.modal-content .cb-reorder-list .item .image.cb-2 {
  background-image: url("../images/icons/contentblocks/icon_image.svg");
}
.modal-content .cb-reorder-list .item .image.cb-3 {
  background-image: url("../images/icons/contentblocks/icon_video.svg");
}
.modal-content .cb-reorder-list .item .image.cb-4 {
  background-image: url("../images/icons/contentblocks/icon_twocolumnstext.svg");
}
.modal-content .cb-reorder-list .item .image.cb-5 {
  background-image: url("../images/icons/contentblocks/icon_onecolumntext.svg");
}
.modal-content .cb-reorder-list .item .image.cb-6 {
  background-image: url("../images/icons/contentblocks/icon_twocolumnimages.svg");
}
.modal-content .cb-reorder-list .item .image.cb-7 {
  background-image: url("../images/icons/contentblocks/icon_threecolumnimages.svg");
}
.modal-content .cb-reorder-list .item .image.cb-8 {
  background-image: url("../images/icons/contentblocks/icon_button.svg");
}
.modal-content .cb-reorder-list .item .image.cb-9 {
  background-image: url("../images/icons/contentblocks/icon_wistia-video.svg");
}
.modal-content .cb-reorder-list .item .description {
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  padding-right: 20px;
}
.modal-content.exam-question-content #options-container .option-row .flex, .modal-content.exam-question-content #abc-options-container .option-row .flex {
  align-items: center;
  border-radius: 8px;
  background-color: var(--primary-light1-color);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.modal-content.exam-question-content #options-container .option-row .flex .custom-radio, .modal-content.exam-question-content #abc-options-container .option-row .flex .custom-radio {
  padding: 0;
  margin-left: 20px;
}
.modal-content.exam-question-content #options-container .option-row .flex .custom-radio .checkmark, .modal-content.exam-question-content #abc-options-container .option-row .flex .custom-radio .checkmark {
  position: static;
}
.modal-content.exam-question-content #options-container .option-row .flex .drag-handler, .modal-content.exam-question-content #abc-options-container .option-row .flex .drag-handler {
  flex-grow: 0;
  flex-shrink: 0;
  width: 24px;
  height: 100%;
  cursor: grab;
  background-color: #F6F6F5;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../images/icons/icon_dragdrop1.svg");
}
.modal-content.exam-question-content #options-container .option-row .flex a, .modal-content.exam-question-content #abc-options-container .option-row .flex a {
  margin-right: 20px;
}
.modal-content.exam-question-content #options-container .option-row .flex input, .modal-content.exam-question-content #abc-options-container .option-row .flex input {
  margin: 10px 0;
}
.modal-content.exam-question-content .right {
  display: flex;
  justify-content: flex-end;
}
.modal-content.exam-question-content #image-click-options .canvas-container {
  width: 100%;
  position: relative;
  border: 1px dashed #ccc;
  border-radius: 8px;
}
.modal-content.exam-question-content #image-click-options .canvas-container:before {
  content: "";
  position: absolute;
  cursor: pointer;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  display: block;
  transform: translate(-50%, -50%);
  background-image: url("../images/icons/icon_plus_dark.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}
.modal-content.exam-question-content #image-click-options .canvas-container .file-upload {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}
.modal-content.exam-question-content #image-click-options .canvas-container .file-upload input {
  display: none;
}
.modal-content.exam-question-content #image-click-options .canvas-container label.link {
  position: absolute;
  right: 10px;
  bottom: -14px;
  z-index: 1;
  background-color: var(--primary-color);
  width: 28px;
  height: 28px;
  border-radius: 50px;
  text-indent: -9999px;
  display: block;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  background-image: url(../images/icons/icon_pencil-white.svg);
}
.modal-content.exam-question-content #image-click-options .canvas-container canvas {
  opacity: 0;
  min-height: 200px;
  cursor: crosshair;
}
.modal-content.exam-question-content #image-click-options .canvas-container.has-image .file-upload {
  display: none;
}
.modal-content.exam-question-content #image-click-options .canvas-container.has-image:before {
  display: none;
}
.modal-content.exam-question-content #image-click-options .canvas-container.has-image canvas {
  opacity: 1;
}

@keyframes slideToRight {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideToLeft {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoom {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.animate-zoom {
  opacity: 0;
  transform: scale(0);
  animation: zoom 0.5s ease-out forwards;
}

.animate-slideUp {
  opacity: 0;
  transform: translateY(100px);
  animation: slideUp 0.5s ease-out forwards;
}

.animate-slideDown {
  opacity: 0;
  transform: translateY(-100px);
  animation: slideDown 0.5s ease-out forwards;
}

.animate-slideLeft {
  opacity: 0;
  transform: translateX(100px);
  animation: slideToLeft 0.5s ease-out forwards;
}

.animate-fade {
  opacity: 0;
  animation: fade 0.5s ease-out forwards;
}

.animated-slideToRight .animate-item {
  animation: slideToRight 0.5s ease-out forwards;
  opacity: 0;
  transform: translateX(-100px);
  /* &:nth-child(1) {
       animation-delay: 0.1s;
   }

   &:nth-child(2) {
       animation-delay: 0.2s;
   }

   &:nth-child(3) {
       animation-delay: 0.3s;
   }

   &:nth-child(4) {
       animation-delay: 0.4s;
   }

   &:nth-child(5) {
       animation-delay: 0.5s;
   }

   &:nth-child(6) {
       animation-delay: 0.6s;
   }

   &:nth-child(7) {
       animation-delay: 0.7s;
   }

   &:nth-child(8) {
       animation-delay: 0.8s;
   }

   &:nth-child(9) {
       animation-delay: 0.9s;
   }

   &:nth-child(10) {
       animation-delay: 1.0s;
   }*/
}

.main-content {
  margin-left: 175px;
  transition: margin-left 0.3s ease;
  display: flex;
  flex-direction: column;
  background-color: #F6F6F5;
}
.main-content .content {
  margin-top: 70px;
  padding: 20px;
  overflow-y: auto;
  height: calc(100vh - 70px);
}
