@import url(
  https://fonts.googleapis.com/css?family=Oswald:300,
  400,
  500,
  700|Roboto:400,
  500
);
@charset "UTF-8";
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #868e96;
  --gray-dark: #343a40;
  --primary: #0b58bb;
  --secondary: #868e96;
  --success: #77c13a;
  --info: #17a2b8;
  --warning: #f98437;
  --danger: #d9534f;
  --light: #f8f9fa;
  --dark: #1d2126;
  --accent: #ed0b4c;
  --primary-light: #99ccff;
  --breakpoint-xs: 0;
  --breakpoint-i8: 374px;
  --breakpoint-i8-plus: 413px;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1366px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
    'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    'Liberation Mono', 'Courier New', monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(48, 56, 64, 0);
}

.container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 520px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1366px) {
  .container {
    max-width: 1120px;
  }
}
/* Override Container-fluid from 100% */
@media (min-width: 1345px) {
  .container-fluid {
    width: 1200px !important;
    padding-right: 12px;
    padding-left: 12px;
    margin-right: auto;
    margin-left: auto;
  }
}

.mdk-drawer-layout #filters-drawer[data-persistent] .mdk-drawer__content {
  position: absolute;
}
@media (max-width: 767.98px) {
  .mdk-drawer-layout #filters-drawer .mdk-drawer__content {
    background: #f5f7fa;
  }
  .mdk-drawer-layout #filters-drawer .mdk-drawer__inner {
    height: 100%;
  }
}
.mdk-drawer-layout .filter-section {
  box-shadow: 0px 2px 1px -1px rgba(48, 56, 64, 0.2),
    0px 1px 1px 0px rgba(48, 56, 64, 0.14),
    0px 1px 3px 0px rgba(48, 56, 64, 0.12);
  background-color: #fff;
}

.text-scramble__dud {
  opacity: 0.5;
  font-weight: 300;
}

.course-nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
  z-index: 0;
}
.course-nav::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 1px);
  height: 2px;
  background-color: white;
  opacity: 0.2;
  z-index: -1;
}
.course-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 100px;
  background-color: #f5f7fa;
}
.course-nav a .material-icons {
  font-size: 1rem;
  color: rgba(48, 56, 64, 0.7);
}
.course-nav .active {
  position: relative;
  z-index: 0;
}
.course-nav .active::before {
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  left: -2px;
  top: -2px;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: -1;
  position: absolute;
  content: '';
  border-radius: 100px;
}
.course-nav .active .material-icons {
  color: #ed0b4c;
}

.player {
  background-color: rgba(48, 56, 64, 0.8);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  z-index: 0;
}
.player__image {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: var(--player-image);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
}
@media (min-width: 768px) {
  .player__image {
    left: 2rem;
    top: 2rem;
    bottom: 2rem;
    right: 2rem;
  }
}
.player__play {
  background-color: #ed0b4c;
  width: 3rem;
  height: 3rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
}
.player__play .material-icons {
  font-size: 2rem;
  color: white;
}

@media (min-width: 768px) {
  .home-macbook {
    margin-left: -37px;
  }
}
@media (max-width: 767.98px) {
  .home-macbook {
    max-width: 100%;
    height: auto;
  }
}

.courses-modal .modal-content {
  position: relative;
  overflow: hidden;
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2),
    0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
}
.courses-modal .modal-body {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.courses-modal .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.courses-modal .tab-content .nav-link {
  color: rgba(48, 56, 64, 0.7);
}
.courses-modal .tab-content .nav-link:hover {
  color: #303840;
}
.courses-modal .nav-link.active {
  color: #303840;
}
.courses-modal .menu .nav-link {
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  color: rgba(48, 56, 64, 0.7);
}
.courses-modal .menu .active {
  color: rgba(48, 56, 64, 0.7);
  background-color: #fff;
  position: relative;
}
.courses-modal .menu .active::after {
  content: ' ';
  width: 4px;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #0b58bb;
  display: block;
  position: absolute;
}
@media (min-width: 576px) {
  .courses-modal .modal-dialog {
    max-width: calc(800px - (1rem * 2));
    margin-top: 64px;
  }
}

.search-form-courses {
  width: 344px;
}

.seperator {
  width: 100%;
}

.controls-wrapper {
  width: 100%;
}

.carousel-wrapper {
  width: 100%;
}

.rec-carousel-item:focus {
  outline: none;
  box-shadow: inset 0 0 1px 0px violet;
}

.rec.rec-arrow {
  width: 50px;
  height: 50px;
  padding: 7px 10px;
  border-radius: 25px;
  font-size: 25px;
  text-align: center;
  color: #0858bb !important;
  background: #fff !important;
  box-shadow: none !important;
}

.rec.rec-arrow:focus {
  outline: none !important;
}

.rec-arrow-left:disabled {
  display: none !important;
}

.rec-arrow-right:disabled {
  display: none !important;
}

.rec.rec-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  margin-right: 7px;
}

.rec.rec-dot_active {
  background-color: #0858bb !important;
  box-shadow: 0 0 1px 3px rgb(8 88 187) !important;
}

.separator {
  display: flex;
  align-items: center;
  text-align: center;
}

.separator::before,
.separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px dotted #000;
}

.separator:not(:empty)::before {
  margin-right: 0.25em;
}

.separator:not(:empty)::after {
  margin-left: 0.25em;
}

/* Ribbon Wrap CSS */

.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
}
.ribbon::before,
.ribbon::after {
  position: absolute;
  z-index: -1;
  content: '';
  display: block;
  border: 15px solid #c10000; /*change to red the ribbon fold*/
}
.ribbon span {
  position: absolute;
  display: block;
  width: 227px;
  padding: 7px 0; /* Thickness of ribbon */
  background-color: #d40000; /*change ribbon color*/
  color: #fff; /* colour of text */
  font: 700 18px/1 'Lato', sans-serif;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  text-align: center;
}

/* top right*/
.ribbon-corner-top-right {
  top: -10px;
  right: -10px;
} /*folded section*/
.ribbon-corner-top-right::before,
.ribbon-corner-top-right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}
.ribbon-corner-top-right::before {
  top: 0;
  left: 85px; /* How close the folded area is to ribbon (top) */
}
.ribbon-corner-top-right::after {
  bottom: 85px; /* How close the folded area is to ribbon (bottom) */
  right: 0;
}
.ribbon-corner-top-right span {
  left: 28px;
  top: 40px;
  transform: rotate(45deg);
} /* Adjusts position of ribbon to card (not including folded area) */

/* End of Ribbon Wrap CSS */

.course-player-menu {
  background-color: #e4f1fd;
}

.path-option:hover {
  background-color: #e4f1fd;
}

.vertical-line {
  border-left: 2px dashed #d9d9d9;
  height: 100%;
  color: #868e96;
}

.circle {
  display: inline-block;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 10px;
  background: #f4f6fc;
  border: 2px dashed #d9d9d9;
  color: #868e96;
  text-align: center;
  position: absolute;
  z-index: 1020;
  left: 28px;
  top: 49px;
}

.checkbox-circle {
  width: 20px;
  height: 20px;
  background-color: transparent;
  border-radius: 50%;
  vertical-align: middle;
  border: 1px solid #ddd;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  border-color: #1a62bf;
}

.checkbox-circle:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
  color: #fff;
  background-color: #1a62bf;
}
.option-active {
  color: #303840 !important;
  width: 250px;
}

.option-active .active .nav-link > .nav-link.active,
.active .nav-link {
  font-weight: 500;
  color: #303840;
  background-color: #fff !important;
  border-radius: 7px 0px 0px 7px;
}

.menu-option {
  width: 3px;
  height: 23px;
  background-color: transparent;
}

.menu-option .active {
  width: 3px;
  height: 23px;
  background-color: #1a62bf;
}

.ml-sm-6,
.mx-sm-6 {
  margin-left: 4rem !important;
}

.ml-sm-7,
.mx-sm-7 {
  margin-left: 5rem !important;
}

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

.bread-crumbs ul {
  list-style: none;
  display: inline-block;
}

.bread-crumbs ul li {
  display: inline;
}

.bread-crumbs ul li a {
  display: block;
  float: left;
  height: 28px;
  background-color: #d7dcea;
  text-align: center;
  padding: 5px 5px 0 15px;
  position: relative;
  margin: 0px 2px 0 0;
  font-size: 10px;
  text-decoration: none;
}
.bread-crumbs ul li a:after {
  content: '';
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 13px solid #d7dcea;
  position: absolute;
  right: -12px;
  top: 0;
  z-index: 1;
}
.bread-crumbs ul li a:before {
  content: '';
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 13px solid #f5f7fa;
  position: absolute;
  left: 0;
  top: 0;
}
.bread-crumbs ul li:first-child a {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.bread-crumbs ul li:first-child a::before {
  display: none;
}
.bread-crumbs ul li:last-child a {
  padding-right: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.bread-crumbs ul li:last-child a:after {
  display: none;
}

.bread-crumbs ul li a:hover {
  background: #0b58bb;
  color: #fff;
}

.bread-crumbs ul li a:hover::after {
  border-left-color: #0b58bb;
  color: #fff;
}

.bread-crumbs ul li a:active {
  background: #0b58bb;
  color: #fff;
}

.bread-crumbs ul li a:active::after {
  border-left-color: #0b58bb;
  color: #fff;
}

.bread-crumbs-checkbox {
  width: 20px;
  height: 20px;
  background-color: transparent;
  border-radius: 50%;
  vertical-align: middle;
  border: 1px solid #ddd;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  border-color: #1a62bf;
}

.bread-crumbs-checkbox:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
  background-color: #77c13a;
}

.border-divider {
  border-right: 1px solid #e2e2e2 !important;
}

.card-image-top {
  width: 100%;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  height: 100px;
}

/* @media (max-width: 576px) {
    [dir="ltr"] .creator-responsive {
        margin-top: -6em !important;
    }
} */

@media (max-width: 576px) {
  .mobile-menu-responsive {
    position: initial;
  }
}
@media (max-width: 576px) {
  .menu-responsive {
    width: 100%;
    height: 100vh;
  }
}

@media (min-width: 279.98px) and (max-width: 359.98px) {
  .navbar-top {
    margin-top: -13.75em !important;
  }

  .creator-mobile {
    display: flex;
    position: absolute;
    z-index: 100;
    margin-left: 4em;
    margin-top: -3em;
  }

  .creator-menu {
    margin-left: 2rem;
  }
}

@media (min-width: 360px) and (max-width: 539.98px) {
  .navbar-top {
    margin-top: -13.75em !important;
  }

  .creator-mobile {
    display: flex;
    position: absolute;
    z-index: 100;
    margin-left: 8em;
    margin-top: -3em;
  }

  .creator-menu {
    margin-left: 7rem;
  }
}

@media (min-width: 540px) and (max-width: 573.98px) {
  .navbar-top {
    margin-top: -13.75em !important;
  }

  .creator-mobile {
    display: flex;
    position: absolute;
    z-index: 100;
    margin-left: 12em;
    margin-top: -3em;
  }

  .creator-menu {
    margin-left: 11rem;
  }
}

@media (min-width: 574.98px) and (max-width: 767.98px) {
  .creator-mobile {
    display: flex;
    position: absolute;
    z-index: 100;
    margin-left: 20em;
    margin-top: -3em;
  }

  .creator-menu {
    margin-left: 18rem;
  }

  .navbar-top {
    margin-top: -13.75em !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .creator-mobile {
    display: flex;
    position: absolute;
    z-index: 100;
    margin-left: 27em;
    margin-top: -3em;
  }

  .creator-menu {
    margin-left: 25rem;
  }
}

.toggle-btn:focus {
  outline: none !important;
  box-shadow: none;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm,
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md,
  .container-sm,
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1140px;
  }
}

.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    flex-wrap: nowrap;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    flex-wrap: nowrap;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    flex-wrap: nowrap;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1200px) {
  .navbar-expand > .container,
  .navbar-expand > .container-fluid,
  .navbar-expand > .container-sm,
  .navbar-expand > .container-md,
  .navbar-expand > .container-lg,
  .navbar-expand > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand > .container,
  .navbar-expand > .container-fluid,
  .navbar-expand > .container-sm,
  .navbar-expand > .container-md,
  .navbar-expand > .container-lg,
  .navbar-expand > .container-xl {
    flex-wrap: nowrap;
  }
}

.active-type {
  color: #fff;
  background-color: #0b58bb;
  border-color: #0b58bb;
}

.card-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 57px;
  left: 0;
  border-top-left-radius: 0.3em;
  border-top-right-radius: 0.3em;
  padding: 3.25rem;
  color: white;
  background-color: #50636c73;
}

.card-path-img-top {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
  max-width: 360px;
  max-height: 170px;
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.active-type {
  color: #fff;
  background-color: #0b58bb;
  border-color: #0b58bb;
}

.card-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 57px;
  left: 0;
  border-top-left-radius: 0.3em;
  border-top-right-radius: 0.3em;
  padding: 3.25rem;
  color: white;
  background-color: #50636c73;
}

.upload {
  background-color: transparent;
  border: 5px dotted lightgray;
  border-radius: 22px;
  height: 200px;
}

.upload-area {
  position: absolute;
  height: 200px;
  cursor: pointer;
}

.nav-pills-path .nav-link {
  border-radius: 0.25rem;
}
.nav-pills-path .nav-link.active,
.nav-pills-path .show > .nav-link {
  color: #000;
  background-color: #e4f1fd !important;
}

.path-img {
  border-top-left-radius: 0.7rem;
  border-bottom-left-radius: 0.7rem;
  max-width: 160px;
  max-height: 170px;
  width: auto;
  height: 160px;
  object-fit: cover;
}
.path-img-border {
  background-color: transparent;
  padding: 0;
}

.overlay-shadow {
  bottom: 0 !important;
  border-radius: 0.3rem;
}

.card-small {
  width: 244px;
  border-radius: 0.3rem;
}

.card-xs {
  width: 238px !important;
  border-radius: 0.3rem;
}

.course-table {
  background-color: #2f84d7;
  color: #ffffff;
}

.table-striped-primary tbody tr:nth-of-type(even) {
  background-color: #c4ddf5;
}

.table-hover-primary tbody tr:hover {
  color: #303840;
  background-color: #c4ddf5;
}

.shadow-primary {
  box-shadow: 0 0.5rem 1rem rgb(11 88 187 / 22%) !important;
}

.upload-file {
  position: absolute;
  width: 130px;
  cursor: pointer;
}

.card-course-img-top {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
  max-width: 360px;
  max-height: 170px;
  width: 100%;
  height: 15vw;
  object-fit: cover;
}

.badge-alert {
  color: #ffffff;
  background-color: #ffd700;
}

.review-notification {
  margin-left: 314px;
  z-index: 1000;
  top: -10px;
  position: absolute;
}

.card-overlay-view {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 0.3rem;
  padding: 3.25rem;
  color: white;
  background-color: #50636c73;
}

.path-img {
  border-top-left-radius: 0.7rem;
  max-width: 406px;
  max-height: 170px;
  width: 100%;
  height: 15vw;
  object-fit: cover;
}

.course-select {
  border-top-left-radius: 0.3rem;
  max-width: 200px;
  max-height: 125px;
  width: 14vw;
  height: 15vw;
  object-fit: cover;
}

.font-weight-bold {
  font-weight: 600 !important;
}

.selection-area {
  /* height: 250px; */
  margin-left: 80px;
  max-width: 652px;
  background-color: rgb(244, 246, 252);
  overflow: hidden auto;
}

.plan {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.transition {
  opacity: 0;
  transition: 1.3s opacity;
}

.fade-in {
  opacity: 1;
}

.btn-alert {
  color: #fff;
  background-color: #decc07;
  border-color: #decc07;
  color: #fff;
}
.btn-alert:hover {
  color: #fff;
  background-color: #d5c408;
  border-color: #d5c306;
}
.form-check-input-invisible {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
  background-color: transparent;
}
.page-separator__label {
  /* border: 1px solid rgba(0, 0, 0, 0.1); */
  display: inline-flex;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  background-color: #f5f7fa;
  max-width: 90%;
}
.page-separator__label:hover {
  text-decoration: none;
}
.page-separator__bg-top--dash {
  content: '';
  height: 50%;
  background-color: #f5f7fa;
  width: 100%;
  top: 50%;
  left: 0;
  position: absolute;
  z-index: -2;
  border-bottom: 2px dashed #d9dbdf;
}
.btn-outline-primary-bright {
  color: #4285f4;
  border-color: #4285f4;
}
.btn-outline-primary-bright:hover {
  color: #fff;
  background-color: #4285f4;
  border-color: #4285f4;
}
.btn-outline-primary-bright:focus,
.btn-outline-primary-bright.focus {
  box-shadow: 0 0 0 0.2rem rgba(51, 139, 228, 0.5);
}

.rounded-top-lg {
  border-top-left-radius: 0.8125rem;
  border-top-right-radius: 0.8125rem;
}
.rounded-bottom-lg {
  border-bottom-left-radius: 0.8125rem;
  border-bottom-right-radius: 0.8125rem;
}
.rounded-modal {
  border-radius: 0.9375rem;
}
.modal-bg-dark {
  background-color: rgb(141, 141, 141);
}
.bg-gradient-dark {
  background-image: linear-gradient(180deg, #000000 0%, #646363e0 100%);
}
.intro {
  min-height: auto; /*67vh;*/
  border: transparent;
  border-radius: 0.8275rem;
}
.standard-body {
  min-height: 52vh;
  border: transparent;
  border-radius: 0.8275rem;
}
.intro-backdrop {
  background-color: rgb(190 191 192 / 80%) !important;
}
.browse-backdrop {
  background-color: rgb(190 191 192 / 40%) !important;
}
.bg-primary-intro-light {
  background-color: #e4f1fd;
}
.active-tab.nav-link.active {
  font-weight: 600;
}
.card--elevated-primary:hover {
  box-shadow: 0px 3px 5px -1px rgba(11, 88, 187, 0.25),
    0px 5px 8px 0px rgba(11, 88, 187, 0.19),
    0px 1px 14px 0px rgba(11, 88, 187, 0.17);
}
.btn-primary-selected {
  box-shadow: 0px 3px 5px -1px rgba(11, 88, 187, 0.25),
    0px 5px 8px 0px rgba(11, 88, 187, 0.19),
    0px 1px 14px 0px rgba(11, 88, 187, 0.17);
  border: 1px outset #0bec;
}
.primary-border-bottom-4 {
  border-bottom: 4px solid #0b58bb !important;
}
.btn-alert {
  color: #212529;
  background-color: #ffd202;
  border-color: #ffd202;
  border-radius: 0;
}
.btn-alert:hover {
  color: #fff;
  background-color: #ffd700;
  border-color: #ffd700;
}
.btn-alert:focus,
.btn-alert.focus {
  box-shadow: 0 0 0 0.2rem #ffd519;
}
.btn-alert.disabled,
.btn-alert:disabled {
  color: #212529;
  background-color: #e1b801;
  border-color: #e1b801;
}
.btn-alert:not(:disabled):not(.disabled):active,
.btn-alert:not(:disabled):not(.disabled).active,
.show > .btn-alert.dropdown-toggle {
  color: #fff;
  background-color: #ffd825;
  border-color: #ffd825;
}
.btn-alert:not(:disabled):not(.disabled):active:focus,
.btn-alert:not(:disabled):not(.disabled).active:focus,
.show > .btn-alert.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem #fdd830;
}
.document-count {
  width: 40px;
  height: 40px;
  shape-outside: circle();
  clip-path: circle();
}
.modal-45w {
  min-width: 45vw;
}
.modal-90w {
  min-width: 90vw;
}
.modal-25h {
  min-height: 25rem;
}
.rounded-md-top {
  border-top-left-radius: 0.7rem !important;
  border-top-right-radius: 0.7rem !important;
}
.rounded-md-bottom {
  border-bottom-left-radius: 0.7rem !important;
  border-bottom-right-radius: 0.7rem !important;
}
.rounded-md {
  border-radius: 0.7rem;
}
.react-select-dropdown-form-control {
  color: rgb(48, 56, 64);
  background-color: rgb(237, 240, 242);
  border-radius: 0.25rem;
  font-size: 1rem;
  border: 1px solid rgb(237, 240, 242);
  padding-left: 1rem;
  padding-top: 5px;
}
@media (min-width: 279.98px) and (max-width: 768px) {
  .responsive {
    padding-top: 0 !important;
  }
}

.flush {
  border-radius: 0rem !important;
}
.min-vh-75 {
  min-height: 75vh !important;
}
.card-shadow-elevated:hover {
  box-shadow: 0px 3px 5px -1px rgba(48, 56, 64, 0.2),
    0px 5px 8px 0px rgba(48, 56, 64, 0.14),
    0px 1px 14px 0px rgba(48, 56, 64, 0.12) !important;
}
.border-top-light {
  border-top: 1px solid #ffffff !important;
}
.border-top-light-2 {
  border-top: 2px solid #ffffff !important;
}
.border-top-light-3 {
  border-top: 3px solid #ffffff !important;
}
.border-top-light-4 {
  border-top: 4px solid #ffffff !important;
}
.border-top-light-5 {
  border-top: 5px solid #ffffff !important;
}
.visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 2s linear;
}
.hidden {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 2s, opacity 2s linear;
}
.custom-input-group-text {
  background-color: #868e96 !important;
  border-color: #868e96 !important;
  color: #fff !important;
}
@media (min-width: 1200px) {
  .course-list-xl {
    width: 117%;
  }
  .standard-course-list {
    width: 113%;
  }
  .community-panel {
    margin-left: 6.4rem;
    max-width: 32%;
  }
  .community-panel-inactive {
    margin-left: 7.4rem;
  }
}
.show-up {
  /* opacity: 1; */
  transform: opacity 0.15 ease-out;
}
.show-up:not(.show) {
  opacity: 1;
}

.show-panel {
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: ease;
  animation-fill-mode: none;

  /* animation: fadeIn 0.8s ease 0s 1 normal none fade-in; */
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  25% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.75;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.rating-progress-bar {
  background-color: #ffb400 !important;
}

.animate-780036 {
  animation-name: fadeIn;
  animation-duration: 0.6s;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: ease;
  animation-fill-mode: none;
}

.lessonTitle a {
  text-decoration: none !important;
  cursor: pointer;
}
.lessonTitle a:hover {
  text-decoration: none !important;
  cursor: pointer;
}

.notification-option .nav-link {
  border-radius: 0.7rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #e4f1fd !important;
  margin-left: 25px;
}
.notification-option .nav-link.active,
.notification-option .show > .nav-link {
  color: #fff;
  background-color: #0b58bb !important;
  padding-top: 0;
  padding-bottom: 0;
  /* border-left: 4px solid #c8c8c9 !important;
  border-right: 4px solid #c8c8c9 !important; */
  border-radius: 0.7rem;
}
.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^='top'] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0.5rem;
  font-family: Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol';
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 15px;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip-dark {
  background-color: #868e96;
}

.w-80 {
  width: 80% !important;
}

.w-85 {
  width: 85% !important;
}

.w-90 {
  width: 90% !important;
}

.w-95 {
  width: 95% !important;
}

.track-progress-bar {
  border-radius: 1rem;
  height: 20px;
}
.track-progress-bar-slider {
  border-radius: 1rem;
}
.track-circular-progress-bar {
  height: 100px;
  width: 100px;
}
.text-circular-progress-bar {
  margin-top: -1rem;
}
.wifi-logo {
  background-color: red;
  height: 4px;
  max-width: 14px;
}
.path-banner {
  border-radius: 50%;
  max-height: 150px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.side-bar {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  width: 270px;
  height: 100%;
  position: absolute;
  /* top: 0; */
  left: -100%;
  overflow-y: hidden;
  transition: 0.7s ease-in-out;
  transition-property: left;
}
.side-bar.activated {
  left: 0;
}
.side-bar .menu {
  width: 100%;
  /* margin-top: 80px; */
}
.side-bar .menu .item {
  position: relative;
  cursor: pointer;
}
.side-bar .menu .item a {
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 5px 15px;
  line-height: 30px;
}
.side-bar .menu .item a:hover {
  background: #0b58bb;
  color: #fff;
  transition: 0.3s ease;
}
.side-bar .menu .item i {
  margin-right: 15px;
}
.navigation .list.active .sub-btn .sub-menu .sub-item a .dropdown {
  position: absolute;
  right: 0;
  margin: 20px;
  transition: 0.3s ease;
}
.side-bar .menu .item .sub-menu a .dropdown {
  position: absolute;
  right: 0;
  margin: 20px;
  transition: 0.3s ease;
  overflow-x: hidden;
}

.navigation .list .sub-menu {
  /* background: rgba(255, 255, 255, 0.1); */
  padding-left: 70px;
  display: none;
}
.side-bar .menu .item .sub-menu a {
  padding-left: 40px;
}
.navigation .list.active .sub-menu .sub-option {
  background: rgba(255, 255, 255, 0.1);
  display: none;
  padding-left: 15px;
  margin-top: -5px;
}
.side-bar .menu .item .sub-menu .sub-option a {
  padding-left: 70px;
}
.sub-option-active {
  display: block;
}
.rotate {
  transform: rotate(90deg);
}
.menu-user-name {
  margin: 25px 20px;
  font-size: 15px;
  font-weight: bold;
  padding-left: 3rem;
  color: #fff;
}
.close-btn {
  position: absolute;
  color: #000;
  font-size: 20px;
  right: 0;
  margin: 25px;
  cursor: pointer;
}
.menu-btn {
  position: absolute;
  color: #000;
  font-size: 20px;
  margin: 25px;
  cursor: pointer;
}

.fade-active {
  animation: fadeIn 1s;
  -webkit-animation: fadeIn 1s;
  -moz-animation: fadeIn 1s;
  -o-animation: fadeIn 1s;
  -ms-animation: fadeIn 1s;
}

@media (prefers-reduced-motion: reduce) {
  .fade-active {
    animation: fadeIn 0.25s linear;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.chart-area {
  height: 250px;
}

.doughnut-area {
  height: 115px;
}

.dropdown-type:hover {
  color: #fff;
  background: #0b58bb;
  transition: 0.3s ease;
}

.dropdown-type:focus {
  color: #fff;
  background: #0b58bb;
  border-color: #0c61d1;
}

.dropdown-menu::before,
.dropdown-menu::after {
  left: 111px;
}

.dropdown-center {
  left: -110px !important;
}

.navigation {
  position: absolute;
  top: 80px;
  left: 0;
  bottom: 20px;
  width: 70px;
  height: 130%;
  border-radius: 0 0 10px 10px;
  box-sizing: inherit;
  border-left: 5px solid #0b58bb;
  background: #0b58bb;
  transition: width 0.5s;
  overflow-x: hidden;
  max-height: 150%;
  z-index: 1000;
}

.navigation.active {
  width: 300px;
}

.navigation ul {
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  padding-left: 5px;
  padding-top: 40px;
}

.navigation ul li {
  position: relative;
  list-style: none;
  width: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.navigation ul li.active {
  background: #f5f7fa;
  transition: 0.5s ease;
}

.navigation ul li b:nth-child(1) {
  position: absolute;
  top: -20px;
  height: 20px;
  width: 100%;
  background: #f5f7fa;
  display: none;
}

.navigation ul li b:nth-child(1)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom-right-radius: 20px;
  background: #0b58bb;
}
.navigation ul li b:nth-child(2) {
  position: absolute;
  bottom: -20px;
  height: 20px;
  width: 100%;
  background: #f5f7fa;
  display: none;
}

.navigation ul li b:nth-child(2)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top-right-radius: 20px;
  background: #0b58bb;
}

.navigation ul li.active b:nth-child(1),
.navigation ul li.active b:nth-child(2) {
  display: block;
}

.navigation ul li a {
  position: relative;
  display: block;
  width: 100%;
  display: flex;
  text-decoration: none;
  color: #fff;
}
.navigation ul li.active a {
  color: #333;
}
.navigation ul li a .material-icons {
  position: relative;
  display: block;
  min-width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 1.5em;
}

.navigation ul li a .title {
  position: relative;
  display: block;
  height: 60px;
  line-height: 60px;
  white-space: normal;
}
.toggle {
  position: absolute;
  top: 97px;
  left: 20px;
  width: 35px;
  height: 35px;
  background: #0b58bb;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.toggle.active {
  background: transparent;
}

.toggle span {
  position: absolute;
  color: #fff;
  font-size: 20px;
  display: none;
}

.toggle span.open,
.toggle.active span.close {
  display: block;
}

.toggle span.close,
.toggle.active span.open {
  display: none;
}

.admin-shadow {
  box-shadow: 9px 20px 20px 3px rgb(48 56 64 / 14%);
  transition: 0.2 linear;
}

.admin-login {
  background-color: #f5f7fa;
}

.txt_field {
  position: relative;
  border-bottom: 2px solid #adadad;
  margin: 30px 0;
}

.txt_field input {
  width: 100%;
  padding: 0 5px;
  height: 40px;
  font-size: 15px;
  border: none;
  background: none;
  outline: none;
}

.txt_field label {
  position: absolute;
  top: -45%;
  left: 5px;
  color: #adadad;
  transform: translateY(-25%);
  font-size: 15px;
  pointer-events: none;
  transition: 0.5s;
}

.txt_field span::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #0b58bb;
  transition: 0.5s;
}

.txt_field input:focus ~ label,
.txt_field input:valid ~ label {
  top: -23px;
  color: #0b58bb;
}

.txt_field input:focus ~ span::before,
.txt_field input:valid ~ span::before {
  width: 100%;
}
.google-icon {
  border-radius: 120%;
  background-color: #fff;
}
.facebook-icon {
  border-radius: 120%;
  /* background-color: #0c86e0; */
}
.admin-separator__label {
  padding: 0.5rem 0.1rem;
  background-color: #fff !important;
}
.admin-separator::before {
  border-top: 2px solid #d9dbdf;
}
.admin-login-btn {
  border-radius: 1rem;
}
.admin-login-img {
  max-width: 350px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 374px) and (max-width: 575.96px) {
  .admin-text-img {
    font-weight: 600;
    margin-top: -125px;
    color: #0b58bb;
    font-style: italic;
    margin-left: 10px;
    font-size: 25px;
  }
}
@media (min-width: 576px) and (max-width: 992px) {
  .admin-text-img {
    font-weight: 600;
    margin-top: -125px;
    color: #0b58bb;
    font-style: italic;
    margin-left: 10px;
    font-size: 25px;
  }
  .google-icon {
    border-radius: 1rem;
    background-color: #fff;
    width: 45%;
  }
  .facebook-icon {
    border-radius: 1rem;
    width: 45%;
    background-color: #1877f1;
  }
  .facebook-svg {
    filter: brightness(0) invert(1);
  }
  .facebook-btn:hover {
    background-color: #1877f1;
    border-color: #1877f1;
  }
}
@media (min-width: 992px) {
  .admin-text-img {
    font-weight: 600;
    margin-top: -150px;
    color: #0b58bb;
    font-style: italic;
    margin-left: 10px;
    font-size: 25px;
  }
  .admin-text-logo {
    font-weight: 600;
    margin-top: -39px;
    color: #0b58bb;
    font-style: italic;
    margin-left: 2px;
    font-size: 9px;
  }
}
.forgot-password:hover {
  color: #0b58bb;
}
.main {
  position: absolute;
  width: calc(100% - 70px);
  left: 70px;
  min-height: 100vh;
  background: #f5f7fa;
  transition: 0.5s;
}
.main.active {
  width: calc(100% - 300px);
  left: 300px;
}
@media (min-width: 992px) {
  .page-content {
    margin-left: -15rem;
    padding-top: 1.5rem;
  }
  .page-content.active {
    margin-left: -13rem;
    padding-top: 1.5rem;
  }
}
