@import url(../fonts/stylesheet.css);
body {
  font-family: 'JosefinSans-Light'; }

.bold {
  font-family: 'JosefinSans-Regular'; }

.black {
  font-family: 'JosefinSans-Bold'; }

.upper {
  text-transform: uppercase; }

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px; }

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px; }

.pt-50 {
  padding-top: 50px; }

.pb-50 {
  padding-bottom: 50px; }

.pt-100 {
  padding-top: 100px; }

.pb-100 {
  padding-bottom: 100px; }

.list-group-item {
  background: transparent;
  border: none;
  border-radius: 0 !important;
  border-bottom: 1px solid #6a6a6a; }

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

.btn-custom {
  background: #004b6a;
  color: aliceblue; }
  .btn-custom:hover {
    color: aliceblue; }

.btn-outline-custom {
  border: 1px solid #004b6a;
  color: #4c4c4c;
  font-size: .9em; }

.btn-rounded {
  border-radius: 250px; }

.primary-text {
  color: #004b6a; }

.form-group label {
  font-family: 'JosefinSans-Regular';
  font-size: .8em;
  position: relative;
  top: 8px;
  left: 14px; }
.form-group .form-control {
  background: transparent;
  border: 1px solid #d4d4d4;
  color: #101010;
  font-family: 'JosefinSans-Regular';
  font-size: .9em;
  border-radius: 25px; }
  .form-group .form-control:focus {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    border: 1px solid #004b6a; }

#videos_container .video_holder {
  border: 2px solid red;
  position: relative;
  margin-bottom: 20px; }
  #videos_container .video_holder .absolute {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    width: 85px;
    height: 85px; }
#videos_container #videos_div .list-group-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  border: none;
  border-radius: 50px;
  position: relative; }
  #videos_container #videos_div .list-group-item.active {
    background: rgba(255, 255, 255, 0.72);
    color: #4c4c4c; }
    #videos_container #videos_div .list-group-item.active::after {
      opacity: 0; }
  #videos_container #videos_div .list-group-item::after {
    content: '';
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 10%;
    height: 1px;
    background: #9a9a9a; }
  #videos_container #videos_div .list-group-item:hover {
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer; }
    #videos_container #videos_div .list-group-item:hover::after {
      opacity: 0; }
  #videos_container #videos_div .list-group-item img {
    width: 25px;
    height: 25px; }
  #videos_container #videos_div .list-group-item h5,
  #videos_container #videos_div .list-group-item h6 {
    margin-bottom: 0;
    margin-left: 15px; }
#videos_container #video_div video {
  max-width: 100%; }

#player {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.81);
  z-index: 20;
  width: 100%;
  height: 100vh;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  opacity: 0;
  visibility: hidden; }
  #player.active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    visibility: visible; }
  #player #video_closer {
    width: 30px;
    height: 30px;
    margin-bottom: 20px;
    cursor: pointer; }
  #player iframe {
    border: 2px solid white;
    width: 1280px;
    max-width: 100%;
    height: 720px; }

.modules_content .list-group-item {
  border: none;
  background: transparent;
  border-bottom: 1px solid #afafaf;
  border-radius: 0 !important;
  cursor: pointer; }

.d-none {
  display: none !important; }

.question_card .question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px; }
  .question_card .question h5 {
    margin-bottom: 0;
    margin-right: 25px; }
  .question_card .question .number {
    width: 75px; }
  .question_card .question .options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .question_card .question .option {
    border: 1px solid #004b6a;
    padding-bottom: 0;
    width: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 5px;
    border-radius: 3px;
    cursor: pointer; }
    .question_card .question .option.correct {
      background: #004b6a;
      color: aliceblue; }

.loader {
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  width: 100%;
  height: 100vh;
  z-index: 11;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .loader img {
    max-width: 350px; }

#top_bar {
  height: 60px;
  background: #004b6a;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10; }
  #top_bar .left_text {
    width: 300px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    color: aliceblue;
    font-weight: 700 !important; }

#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: rgba(255, 255, 255, 0.67);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  z-index: 9;
  padding-top: 80px;
  overflow-y: scroll;
  -webkit-transition: all .4s linear;
  transition: all .4s linear; }
  #sidebar #profile {
    text-align: center;
    padding-bottom: 15px; }
    #sidebar #profile img {
      margin: 0 auto;
      max-width: 75px;
      border-radius: 150px;
      margin-bottom: 15px; }
  #sidebar ul {
    list-style: none;
    padding-left: 0; }
    #sidebar ul li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-transition: all .5s linear;
      transition: all .5s linear;
      cursor: pointer;
      height: 45px;
      padding-left: 20px;
      -webkit-transition: all .4s linear;
      transition: all .4s linear; }
      #sidebar ul li:hover {
        background: rgba(216, 103, 130, 0.17); }
      #sidebar ul li a {
        color: #4C4C4C;
        margin-left: 20px;
        display: inline-block;
        height: 100% !important;
        width: 230px;
        padding-top: 13px; }
        #sidebar ul li a:hover {
          text-decoration: none; }
      #sidebar ul li.active {
        border-right: 3px solid #004b6a;
        background: rgba(255, 24, 24, 0.18); }
        #sidebar ul li.active a {
          font-weight: 400; }
        #sidebar ul li.active i {
          color: rgba(255, 24, 24, 0.95); }

#content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding-left: 320px;
  padding-top: 80px;
  overflow-y: scroll; }
  #content .cover {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: calc(100% - 300px);
    background: rgba(0, 0, 0, 0.35); }
  #content .container-fluid {
    position: relative;
    right: 10px; }
  #content.dash_content .card {
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.61);
    -webkit-backdrop-filter: blur(65px);
            backdrop-filter: blur(65px); }
    #content.dash_content .card .card-header h4 {
      font-family: 'JosefinSans-Bold';
      margin-bottom: 0 !important; }
    #content.dash_content .card th {
      font-family: 'JosefinSans-Bold'; }

.modal-title {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: 'JosefinSans-Bold';
  color: #004b6a; }

::-webkit-scrollbar {
  width: 0px !important; }

.left_border {
  border: none;
  border-left: 2px solid #004b6a; }

table tr,
table td {
  border: hidden !important;
  padding: 0; }
table td {
  font-family: 'JosefinSans-Regular';
  color: #4c4c4c;
  font-size: .85em; }
  table td.d-flex .btn {
    font-size: .85em;
    padding-bottom: 2px;
    padding-left: 18px;
    padding-right: 18px;
    margin-right: 10px; }

#auth {
  background-image: url(../img/backgrounds/auth-2.jpg);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  overflow-y: scroll; }
  #auth #cover {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    padding-top: 100px;
    background: rgba(255, 255, 255, 0.49);
    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px); }
    #auth #cover .card {
      border: none; }

@media only screen and (max-width: 768px) {
  #top_bar img {
    width: 30px;
    height: 30px;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    cursor: pointer; }
  #top_bar h3 {
    margin-bottom: 0;
    display: none; }

  #sidebar {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(25px);
            backdrop-filter: blur(25px); }
    #sidebar.active {
      -webkit-transform: translate(0);
              transform: translate(0); }

  #content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-left: 0px; }
    #content .cover {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: calc(100% - 300px);
      background: rgba(0, 0, 0, 0.35);
      background: rgba(255, 255, 255, 0.67);
      -webkit-backdrop-filter: blur(25px);
              backdrop-filter: blur(25px);
      -webkit-transform: translateX(-200px);
              transform: translateX(-200px);
      display: none; }
    #content .container-fluid {
      position: relative;
      right: 0px; }
    #content.dash_content .card {
      margin-bottom: 25px;
      background: rgba(255, 255, 255, 0.61);
      -webkit-backdrop-filter: blur(65px);
              backdrop-filter: blur(65px); }
      #content.dash_content .card .card-header h4 {
        font-family: 'JosefinSans-Bold'; }
      #content.dash_content .card th {
        font-family: 'JosefinSans-Bold'; } }
@media only screen and (min-width: 768px) {
  #menu_btn {
    display: none; } }
