@charset "UTF-8";
/* -------------------------------------------------------------------------- */
/*                                 STYLE Fonts                                 */
/* -------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;700&display=swap");

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

/* -------------------------------------------------------------------------- */
/*                               STYLE Container                              */
/* -------------------------------------------------------------------------- */
.container {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 320px) {
  .container {
    max-width: 95%;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: 0;
  margin-left: 0;
}

/* -------------------------------------------------------------------------- */
/*                                  STYLE Row                                 */
/* -------------------------------------------------------------------------- */
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* -------------------------------------------------------------------------- */
/*                                  STYLE Col                                 */
/* -------------------------------------------------------------------------- */
.col {
  flex: 1 0 0%;
}

/* -------------------------------------------------------------------------- */
/*                               STYLE Universal                              */
/* -------------------------------------------------------------------------- */
* {
  outline: none !important;
  /* Hide scrollbar for Chrome, Safari and Opera */
  -webkit-tap-highlight-color: transparent;
  -ms-overflow-style: none;
  /* Hide scrollbar for IE, Edge and Firefox */
  /* IE and Edge */
  /* Firefox */
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
* ::-webkit-scrollbar {
  width: 9px;
  border-radius: 0px;
}
* ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px transparent;
  border-radius: 0px;
}
* ::-webkit-scrollbar-thumb {
  background: rgba(47, 48, 49, 0.5);
}
* ::-webkit-scrollbar-thumb:hover {
  background: #ad0a33;
}

/* -------------------------------------------------------------------------- */
/*                                 STYLE Body                                */
/* -------------------------------------------------------------------------- */
body {
    width: 100%;
    height: 100%;
    padding: 0;
    font-size: 100%;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    overflow-y: overlay;
    background-color: #fff;
    background-attachment: fixed;
    background-image: url('../../images/home/noisy-texture.png');
    background-repeat: no-repeat;
}

a {
  text-decoration: none;
}


/* -------------------------------------------------------------------------- */
/*                             STYLE Button style                            */
/* -------------------------------------------------------------------------- */
.btn {
  text-decoration: none;
  min-width: 120px;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 300;
  color: #fff;
  text-align: center;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 6px 10px;
  font-size: 0.8rem;
  line-height: 1.5;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn .im {
  font-size: 1rem;
  margin: 2px 10px 0px 0;
}
.btn a {
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn-primary {
  outline: none;
  color: #fff;
  background-color: #ad0a33;
  border-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
  transition: 0.2s ease-in-out;
}
.btn-primary:hover {
  background-color: #95092c;
  border-color: transparent;
  border-width: 1px;
  border-style: solid;
}
.btn-primary:active {
  color: #fff;
  background-color: #c50b3a;
  border-color: transparent;
}

.btn-primary-small {
  min-width: 80px;
  padding: 5px 8px;
  outline: none;
  font-size: 0.6rem;
  color: #fff;
  background-color: #ad0a33;
  border-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
  transition: 0.2s ease-in-out;
}
.btn-primary-small:hover {
  background-color: #95092c;
  border-color: transparent;
  border-width: 1px;
  border-style: solid;
}
.btn-primary-small:active {
  color: #fff;
  background-color: #c50b3a;
  border-color: transparent;
}
.btn-primary-small .im {
  font-size: 1rem;
  margin-right: 10px;
}

.btn-save {
  outline: none;
  color: #fff;
  background-color: #60992b;
  border-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
  transition: 0.2s ease-in-out;
}
.btn-save:hover {
  background-color: #456d1f;
  border-color: transparent;
  border-width: 1px;
  border-style: solid;
}
.btn-save:active {
  color: #fff;
  background-color: #365518;
  border-color: transparent;
}

/* -------------------------------------------------------------------------- */
/*                            STYLE Input styles                            */
/* -------------------------------------------------------------------------- */
input {
  display: block;
  background-color: transparent;
  box-sizing: border-box;
  font-size: 0.9rem;
  padding-left: 0px;
  color: #000;
  outline: none;
  border-width: 0px;
  border-bottom: 1px;
  border-style: solid;
  border-color: #a4a7ab;
  margin: 0px 0 0 0;
  height: 40px;
  width: 100%;
  border-radius: 0px;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #787d81;
  opacity: 1;
}

::-moz-placeholder {
  color: #787d81;
  opacity: 1;
  /* Firefox */
}

::placeholder {
  color: #787d81;
  opacity: 1;
  /* Firefox */
}

/* -------------------------------------------------------------------------- */
/*                               STYLE Textarea                               */
/* -------------------------------------------------------------------------- */
textarea {
    width: 100%;
    font-size: 0.9rem;
    display: block;
    background-color: transparent;
    padding: 10px;
/*    margin-top: 10px;*/
    color: white;
    overflow: auto;
    outline: none;
    box-shadow: none;
    border-width: 1px;
    border-style: solid;
    border-color: #a4a7ab;
    resize: none;
    box-sizing: border-box;
    border-radius: 2px;
}

/* -------------------------------------------------------------------------- */
/*                              STYLE Hamburgers                             */
/* -------------------------------------------------------------------------- */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 1.5px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 9px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 18px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 9px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 9px, 0) rotate(-45deg);
}

.hamburger {
  margin: 20px auto 0 auto;
  right: 0;
  left: auto;
  top: 0;
  position: relative;
  padding: 10px 10px;
  display: block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  width: 50px;
  overflow: visible;
  z-index: 100000;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  top: 5px;
  width: 40px;
  height: 21px;
  display: inline-block;
  position: relative;
  z-index: 100000;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 3px;
  background-color: #fff;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -9px;
}
.hamburger-inner::after {
  bottom: -9px;
}

/* -------------------------------------------------------------------------- */
/*                               SECTION #1 Main                              */
/* -------------------------------------------------------------------------- */
#courses-main {
  padding-top: 120px;
  padding-bottom: 100px;
  background-color: #1f2022;

}
#courses-main .title {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 100px;
}
#courses-main .title h1 {
  color: #a2a7ac;
  font-size: 3rem;
}
#courses-main .title h1::after {
  content: "";
  display: block;
  margin-top: 10px;
  width: 150px;
  height: 5px;
  background-color: #ad0a33;
}
#courses-main .title h2 {
  font-size: 1.4rem;
  margin-bottom: 60px;
  color: #a2a7ac;
}
#courses-main .title p {
  color: #a2a7ac;
}
#courses-main .banner {
    display:block;
  color: #a2a7ac;
  margin-bottom: 60px;
  padding-bottom: 15px;
  border-radius: 2px;
  border-bottom: 1px solid #3f4144;
}

    #courses-main .banner-info {
        width: 100%;
        display: block;
        padding: 20px 15px;
        text-align: justify;
    }

#courses-main .banner:nth-child(2) .img-container .course-logo {
    width: 200px;
}
#courses-main .img-container {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  max-height: 350px;
}
#courses-main .img-container img {
  overflow: hidden;
  border-radius: 2px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
#courses-main .img-container .course-logo {
  display: block;
  width: 120px;
  height: auto;
  position: absolute;
}
    #courses-main .banner-footer {
        margin-top: 5px;
        margin-bottom: 5px;
        width: 100%;
        display: block;
        align-items: center;
        /* ---------------------- ANCHOR Íconos de calificación ---------------------- */
    }
#courses-main .banner-footer .course-duration {
  display: flex;
  margin-right: 10px;
}
#courses-main .banner-footer .course-duration b {
  margin-left: 5px;
  margin-right: 40px;
}
#courses-main .banner-footer span {
  font-size: 0.8rem;
}
#courses-main .banner-footer .icons-stars {
  display: flex;
  align-items: center;
  margin: 10px 0;
}
#courses-main .banner-footer .icons-stars span {
  margin-right: 10px;
}
#courses-main .banner-footer .icons-stars .im {
  font-size: 0.9rem;
}
#courses-main .banner-footer .rating-0 .im {
  color: #787d81;
}
#courses-main .banner-footer .rating-1 .im {
  color: #787d81;
}
#courses-main .banner-footer .rating-1 .im:nth-child(1) {
  color: #fdd806;
}
#courses-main .banner-footer .rating-2 .im:nth-child(-n+2) {
  color: #fdd806;
}
#courses-main .banner-footer .rating-3 .im {
  color: #787d81;
}
#courses-main .banner-footer .rating-3 .im:nth-child(-n+3) {
  color: #fdd806;
}
#courses-main .banner-footer .rating-4 .im {
  color: #787d81;
}
#courses-main .banner-footer .rating-4 .im:nth-child(-n+4) {
  color: #fdd806;
}
#courses-main .banner-footer .rating-5 .im {
  color: #787d81;
}
#courses-main .banner-footer .rating-5 .im:nth-child(-n+5) {
  color: #fdd806;
}
#courses-main .banner-footer .btn a {
  color: #fff;
}
#courses-main .course-contact-link {
  text-align: left;
  display: block;
  width: 100%;
  color: #a2a7ac;
}
#courses-main .course-contact-link .btn a {
  color: #fff;
}
@media only screen and (min-width: 992px) {
  #courses-main .container {
    max-width: 992px;
  }
}
@media only screen and (min-width: 768px) {
    #courses-main .banner {
        display: flex;
    }

    #courses-main .banner-info {
        padding: 15px;
    }

  #courses-main .banner-footer {
    display: flex;
    align-items: center;
  }
  #courses-main .banner-footer .btn {
    margin-left: auto;
    margin-right: 0;
  }
  #courses-main .img-container {
    height: 250px;
  }
  #courses-main .img-container .course-logo {
    width: 160px;
  }
  #courses-main .banner:nth-child(2) .img-container .course-logo {
    width: 350px;
  }
  #courses-main .banner:nth-child(3) .img-container .course-logo {
    width: 250px;
  }
}
@media only screen and (min-width: 576px) {
  #courses-main .banner:nth-child(2) .img-container .course-logo {
    width: 300px;
  }
}

/* -------------------------------- !SECTION -------------------------------- */
/* -------------------------------------------------------------------------- */
/*                               SECTION  Login                                  */
/* -------------------------------------------------------------------------- */
#login {
  color: #a2a7ac;
  min-height: 700px;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1f2022;
  /* ------------------------------- ANCHOR Form ------------------------------ */
}
#login .content {
  margin: auto;
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  max-width: 600px;
  height: 580px;
  background-color: #2f3031;
  box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.137);
  -webkit-box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.137);
  -moz-box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.137);
  border-radius: 0 0 2px 2px;
}
#login input {
  color: #a2a7ac;
  border-color: #3f4144;
}
#login .menu-dot-container {
  margin: 0 auto;
  max-width: 600px;
  display: flex;
  align-items: center;
  height: 45px;
  background-color: #ad0a33;
  border-radius: 2px 2px 0 0;
}
#login .menu-dot-container span {
  color: #fff;
  cursor: pointer;
  margin-left: 15px;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}
#login .menu-dot-container span .im {
  font-size: 0.6rem;
  margin-right: 6px;
  margin-top: 2px;
  height: 100%;
}
#login .form {
  display: block;
  padding: 15px;
}
#login .form h1 {
  text-align: center;
  margin: 50px auto;
}
#login .form form {
  margin-top: 50px;
  position: relative;
  width: auto;
  height: auto;
}
#login .form form input {
  margin: 20px 0 0 0 !important;
  width: 100%;
}
#login .form form .btn {
  display: block;
  margin: 50px auto 0 auto;
}
#login .login-footer {
  display: block;
  position: relative;
  width: 100%;
}
#login .login-footer ul {
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  padding: 0;
}
#login .login-footer ul li {
  list-style: none;
  margin: 5px 15px;
}
#login .login-footer ul li a {
  font-size: 0.9rem;
  color: #a2a7ac;
  text-decoration: none;
  opacity: 0.8;
}

/* -------------------------------- !SECTION -------------------------------- */
/* -------------------------------------------------------------------------- */
/*                               SECTION Contact                              */
/* -------------------------------------------------------------------------- */
#courses-contact-form {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 1100px;
  justify-content: center;
  align-items: center;
  background-color: #1f2022;
  /* ------------------------------- ANCHOR Form ------------------------------ */
  /* --------------------------- ANCHOR Media query --------------------------- */
}
#courses-contact-form .content {
  color: #a2a7ac;
  display: block;
  position: relative;
  width: 100%;
  margin: auto;
}
#courses-contact-form .menu-dot-container {
  display: flex;
  align-items: center;
  height: 45px;
  background-color: #ad0a33;
}
#courses-contact-form .menu-dot-container span {
  color: #fff;
  cursor: pointer;
  margin-left: 15px;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}
#courses-contact-form .menu-dot-container span .im {
  font-size: 0.6rem;
  margin-right: 6px;
  margin-top: 2px;
  height: 100%;
}
#courses-contact-form form {
  overflow: hidden;
  background-color: #2f3031;
  width: 100%;
  max-width: 700px;
  margin: auto;
  display: block;
  border-radius: 2px;
}
#courses-contact-form form .form-container {
  padding: 15px;
}
#courses-contact-form form .title {
  display: block;
  text-align: center;
  max-width: 500px;
  margin: 0 auto 50px auto;
}
#courses-contact-form form .title::after {
  content: "";
  display: block;
  width: 150px;
  height: 4px;
  background-color: #ad0a33;
  margin: 25px auto;
}
#courses-contact-form form .form-input {
  margin-bottom: 50px;
  display: block;
  width: 100%;
}
#courses-contact-form form .form-input .input {
  display: block;
  width: auto;
}
#courses-contact-form form .form-input .input span {
  font-size: 0.9rem;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #787d81;
}
#courses-contact-form form .form-input .input input {
  color: #a2a7ac;
  margin-bottom: 0;
  border-color: #3f4144;
}
@media only screen and (min-width: 768px) {
  #courses-contact-form form .form-input .input input {
    margin-bottom: 0;
  }
}
#courses-contact-form form textarea {
  color: #a2a7ac;
  margin-top: 10px;
  display: block;
  width: 100%;
  border-color: #3f4144;
}
#courses-contact-form form .btn {
  margin: 40px auto 20px auto;
}
#courses-contact-form form .social-icons {
  margin: 40px 0;
  display: flex;
  width: 100%;
  justify-content: center;
}
#courses-contact-form form .social-icons a {
  margin: 0 20px;
  color: #ad0a33;
}
#courses-contact-form form .social-icons a .im {
  font-size: 1rem;
}
@media only screen and (min-width: 768px) {
  #courses-contact-form .content {
    display: flex;
    align-items: center;
  }
  #courses-contact-form form .form-input {
    display: flex;
  }
  #courses-contact-form form .form-input .input {
    width: 100%;
  }
  #courses-contact-form form .form-input .input:first-child {
    margin-right: 15px;
  }
}

/* -------------------------------- !SECTION -------------------------------- */
/* -------------------------------------------------------------------------- */
/*                           SECTION Course preview                           */
/* -------------------------------------------------------------------------- */
#course-preview {
  color: #a2a7ac;
  display: flex;
  width: 100%;
  height: 100vh;
  min-height: 1600px;
  justify-content: center;
  align-items: center;
  background-color: #1f2022;
  /* ------------------------------- ANCHOR Info ------------------------------ */
  /* --------------------------- ANCHOR List topics --------------------------- */
  /* --------------------------- ANCHOR Media query --------------------------- */
}
#course-preview .content {
  max-width: 370px;
  display: block;
  margin: 0 auto;
}
    #course-preview .info {
        padding: 0rem;
        position: relative;
        margin-bottom: 0.75rem;
        display: flex;
        flex-direction: column;
        width: 95%;
    }

        #course-preview .info p {
            text-align: justify;
        }
#course-preview .info h1::after {
  content: "";
  display: block;
  margin-top: 10px;
  width: 150px;
  height: 5px;
  background-color: #ad0a33;
}
#course-preview .info .info-score {
  width: 100%;
  display: block;
  align-items: center;
  /* ---------------------- ANCHOR Íconos de calificación ---------------------- */
}
#course-preview .info .info-score .course-duration {
  display: flex;
  margin-right: 10px;
}
#course-preview .info .info-score .course-duration b {
  margin-left: 5px;
  margin-right: 40px;
}
#course-preview .info .info-score span {
  font-size: 0.8rem;
}
#course-preview .info .info-score .icons-stars {
  display: contents;
  align-items: center;
  margin: 10px 0;
}
#course-preview .info .info-score .icons-stars span {
  margin-right: 10px;
}
#course-preview .info .info-score .icons-stars .im {
  font-size: 0.9rem;
}
#course-preview .info .info-score .rating-0 .im {
  color: #787d81;
}
#course-preview .info .info-score .rating-1 .im {
  color: #787d81;
}
#course-preview .info .info-score .rating-1 .im:nth-child(1) {
  color: #fdd806;
}
#course-preview .info .info-score .rating-2 .im {
  color: #787d81;
}
#course-preview .info .info-score .rating-2 .im:nth-child(-n+2) {
  color: #fdd806;
}
#course-preview .info .info-score .rating-3 .im {
  color: #787d81;
}
#course-preview .info .info-score .rating-3 .im:nth-child(-n+3) {
  color: #fdd806;
}
#course-preview .info .info-score .rating-4 .im {
  color: #787d81;
}
#course-preview .info .info-score .rating-4 .im:nth-child(-n+4) {
  color: #fdd806;
}
#course-preview .info .info-score .rating-5 .im {
  color: #787d81;
}
#course-preview .info .info-score .rating-5 .im:nth-child(-n+5) {
  color: #fdd806;
}
#course-preview .info a {
  margin-top: auto;
}
#course-preview .course-description {
  display: block;
  border-bottom: 1px solid #3f4144;
  padding-bottom: 0.75rem;
  /* ------------------------------ ANCHOR Banner ----------------------------- */
}
    #course-preview .course-description .course-banner {
        display: block;
        width: 100%;
        max-width: 450px;
    }
#course-preview .course-description .course-banner img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}
#course-preview .course-topics {
  display: block;
  width: 100%;
  padding: 0 0 3rem 0;
}
#course-preview .course-topics .list-group {
  display: block;
}
#course-preview .course-topics .list-group .list {
  display: block;
  width: 100%;
}
#course-preview .course-topics .list-group .list span {
  width: 100%;
  align-items: center;
  display: flex;
  margin: 10px 0;
  border-bottom: 1px solid #3f4144;
}
#course-preview .course-topics .list-group .list .number {
  font-weight: 700;
  font-size: 0.9rem;
  color: #ccd2d8;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  text-align: center;
  align-items: center;
  background-color: #ad0a33;
}
@media only screen and (min-width: 768px) {
  #course-preview {
    min-height: 1200px;
  }
  #course-preview .content {
    max-width: 100%;
  }
    #course-preview .course-description {
        display: flex;
        margin-top: 350px;
    }
  #course-preview .course-description .course-banner img {
    min-width: 300px;
  }
  #course-preview .course-description .info-score {
    display: flex;
    align-items: center;
  }
  #course-preview .info {
    padding: 0.75rem;
  }
  #course-preview .course-topics .list-group {
    display: flex;
    padding: 0.75rem;
  }
/*  #course-preview .course-topics .list-group .list:last-child {
    margin-left: 20px;
  }*/
}

/* -------------------------------- !SECTION -------------------------------- */
/* -------------------------------------------------------------------------- */
/*                               SECTION Course                               */
/* -------------------------------------------------------------------------- */
.answer-wrong {
  background-color: #e02424 !important;
  border: 1px solid #e02424 !important;
}

.answer-correct {
  background-color: #60992b !important;
  border: 1px solid #60992b !important;
}

.btn-flag-active {
    color: #fff81c !important;
}

.btn-flag-completed {
    color: #0af32b !important;
    cursor:pointer;
}

.btn-flag-disabled {
    color: #6c6c6c !important;
    cursor: pointer;
}

.no-pointer {
    cursor: auto !important;
}

.btn-active-session {
  background-color: #000 !important;
  color: #ccd2d8 !important;
  border: 2px solid #a2a7ac;
}

#course {
  padding: 125px 0;
  color: #a2a7ac;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  background-color: #1f2022;
  /* -------------------------- ANCHOR navbar curses -------------------------- */
  /* ------------------------------ ANCHOR Video ------------------------------ */
  /* ------------------------------- ANCHOR Test ------------------------------ */
  /* ----------------------------- ANCHOR Section ----------------------------- */
  /* --------------------------- ANCHOR Media query --------------------------- */
}
    #course .content {
        display: block;
        margin: 0 auto;
        line-height: 1.15 !important;
    }
#course .course-container {
  width: 100%;
  display: flex;
}
#course .navar-curses {
  transform: scale(0.8);
  transform-origin: top;
  /* ------------------------ ANCHOR Session container ------------------------ */
}
    #course .navar-curses .session-container {
        display: block;
        margin: 0 auto;
        overflow-y: scroll;
        max-height: 700px;
        padding: 0px 20px 0px 0px;
        /* -------------------------- ANCHOR Session title -------------------------- */
        /* ------------------------------ ANCHOR Lesson ----------------------------- */
    }
#course .navar-curses .session-container .session-title {
  position: relative;
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 10px 0;
}
#course .navar-curses .session-container .session-title::after {
  content: "";
  display: block;
  position: absolute;
  top: 37px;
  width: 2px;
  height: 15px;
  background-color: #ad0a33;
}
#course .navar-curses .session-container .session-title .btn-course-var {
  cursor: pointer;
  pointer-events: none;
  flex-direction: column;
  display: flex;
  width: 35px;
  height: 35px;
  background-color: #a2a7ac;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  color: #ad0a33;
  font-weight: 700;
}

#course .navar-curses .session-container .lesson {
  cursor:pointer;
  position: relative;
  list-style: none;
  display: flex;
  justify-content: center;
  /* ------------------------------- ANCHOR Flag ------------------------------ */
}

#course .navar-curses .session-container .lesson .flag {
  pointer-events: none;
  cursor: pointer;
  margin: 18px 0 10px 0;
  background-color: transparent !important;
}
#course .navar-curses .session-container .lesson .flag .im {
  font-size: 1rem;
  color: #fff;
}

#course .navar-curses .session-container .lesson::after {
  content: "";
  display: block;
  position: absolute;
  top: 37px;
  width: 2px;
  height: 15px;
  background-color: #ad0a33;
}

    #course .navar-curses .session-container .first-bullet::after {
        content: "";
        display: block;
        position: absolute;
        top: 62px;
        width: 2px;
        height: 15px;
        background-color: #ad0a33;
    }

#course .navar-curses .session-container .lesson:last-child::after {
  content: "";
  display: block;
  position: absolute;
  top: 30px;
  width: 0px;
  height: 25px;
  background-color: #ad0a33;
}
#course .navar-curses .session-container .lesson .btn-course-var {
  cursor: pointer;
  display: flex;
  width: 25px;
  height: 25px;
  background-color: #ad0a33;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  color: #ccd2d8;
  font-size: 0.9rem;
  margin: 10px 0;
}

    #course .navar-curses .session-container .lesson .btn-course-var.btn-lesson-disabled {
        background-color: #4f4f4f !important;
        cursor: default;
    }
    #course .navar-curses .session-container .lesson .btn-intro-course-var {
        cursor: pointer;
        display: flex;
        width: 50px;
        height: 50px;
        background-color: #ad0a33;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 0.9rem;
        margin: 10px 0;
    }


#course #course-content {
  display: block;
  width: inherit;
}

#course .video-container {
  width: 100%;
  height: auto;
  display: block;
  padding: 0.75rem;
  /* ---------------------- ANCHOR Frame video container ---------------------- */
}
    #course .video-container h2 {
        margin: 30px 0 10px 0 !important;
        padding: 0 !important;
    }
    #course .video-container h3 {
        color: #787d81;
        align-items: center !important;
        font-weight: 300 !important;
        font-size: 1rem !important;
        margin-bottom: 50px !important;
    }
#course .video-container h3 span {
  font-weight: 700;
  margin-right: 10px;
}
#course .video-container .description {
  padding-bottom: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #3f4144;
  line-height: 1.15 !important;
  margin-top: 20px;
}
#course .video-container .video-embed {
  display: block;
  width: 100%;
  height: 100%;
}
#course .video-container .video-embed .video-wrapper {
  display: flex;
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}
#course .video-container .video-embed .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#course .video-container .video-info-footer {
  display: block;
  margin-top: 25px;
}
#course .video-container .video-info-footer a {
  margin-top: 25px;
  display: flex;
  align-items: center;
  color: #ccd2d8;
  max-width: 200px;
}
#course .video-container .video-info-footer a .im {
  font-size: 1rem;
  margin-right: 15px;
}




    #course #test-form-wrapper {
        overflow: hidden;
        width: 100%;
        height: 750px;
        position: relative;
        display: block;
    }

    #course .test-container {
        width: 100%;
        height: 100%;
        position: absolute;
    }

        #course .test-container .test-form {
            position: relative;
            padding: 0.75rem;
        }

            #course .test-container .test-form h1 .im {
                color: #60992b;
            }

            #course .test-container .test-form form .question p {
                display: block;
                font-size: 1rem;
                margin-bottom: 50px;
            }

                #course .test-container .test-form form .question p::after {
                    margin-top: 20px;
                    content: "";
                    display: block;
                    position: relative;
                    width: 100%;
                    height: 1px;
                    background-color: #2f3031;
                }

            #course .test-container .test-form form .answer-content {
                /* --------------------------- ANCHOR Button test --------------------------- */
            }

                #course .test-container .test-form form .answer-content .btn {
                    text-align: left;
                    background-color: #2f3031;
                    padding: 10px 10px !important;
                    height: auto;
                    min-height: 55px;
                    width: 100%;
                    margin: 20px 0;
                    border: 1px solid #3f4144;
                    white-space: normal;
                }

                    #course .test-container .test-form form .answer-content .btn:hover {
                        background-color: #2f3031;
                    }

        #course .test-container .btn-next {
            margin-left: auto;
            margin-right: 0.75rem;
        }

        #course .test-container .btn-next-lesson {
            margin-left: auto;
            margin-right: 0.75rem;
        }

    #course .attempts-container {
        position: relative;
        display: flex;
        width: auto;
        margin-left: 0.75rem;
        background-color: #2f3031;
    }

        #course .attempts-container .attempts {
            width: auto;
            height: 30px;
            position: relative;
            display: flex;
            align-items: center;
            color: #ccd2d8;
            font-size: 0.8rem;
        }

        #course .attempts-container .attempts-number {
            width: auto;
            height: 30px;
            position: relative;
            display: flex;
            align-items: center;
            color: #ccd2d8;
            font-size: 0.8rem;
            margin: 0 8px;
        }

        #course .attempts-container .bg-progress {
            position: absolute;
            display: block;
            width: 0%;
            height: 100%;
            background-color: #ad0a33;
            background: #ad0a33;
            background: linear-gradient(45deg, #1f2022 0%, #ad0a33 100%);
        }

        #course .attempts-container .test-completed {
            z-index: 2;
            position: absolute;
            margin: auto 0;
            left: 50px;
            top: 0;
            bottom: 0;
            font-size: 0.8rem;
            margin-left: 15px;
            display: flex;
            align-items: center;
        }

            #course .attempts-container .test-completed .im {
                margin-left: 10px;
                padding-top: 2px;
                color: #ccd2d8;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 23px;
                height: 23px;
                border-radius: 50%;
                font-size: 0.6rem;
                background-color: #60992b;
            }







#course .section-btn {
  opacity: 0.3;
}
#course #section-contr,
#course #section-quest {
  display: block;
  width: 100%;
  max-height: 100%;
  overflow: hidden;
  font-size: 0.9rem;
  padding: 0.75rem;
  margin-top: 100px;
  /* ------------------------------- ANCHOR Form ------------------------------ */
}
#course #section-contr form,
#course #section-quest form {
  display: block;
  overflow: auto;
  /*padding-bottom: 25px;*/
  max-height: 900px;
  scrollbar-width: none;
  /* ------------------------------- ANCHOR Card ------------------------------ */
}
#course #section-contr form::-webkit-scrollbar,
#course #section-quest form::-webkit-scrollbar {
  display: none;
}
    #course #section-contr form textarea,
    #course #section-quest form textarea {
        color: #a2a7ac;
        /*border-color: #2f3031;*/
        border-color: #a4a7ab;
    }
#course #section-contr form .btn-send,
#course #section-quest form .btn-send {
  margin-top: 15px;
}
#course #section-contr form .contributions,
#course #section-quest form .contributions {
  margin-top: 40px;
  display: block;
  position: relative;
}
#course #section-contr form .contributions .header,
#course #section-quest form .contributions .header {
  display: flex;
  justify-content: space-between;
}
#course #section-contr form .contributions .header li,
#course #section-quest form .contributions .header li {
  cursor: pointer;
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
  border-bottom: 2px solid #ad0a33;
  line-height: 1.15 !important;
}
#course #section-contr form .contributions .header li .contr,
#course #section-contr form .contributions .header li .quest,
#course #section-quest form .contributions .header li .contr,
#course #section-quest form .contributions .header li .quest {
  margin-right: 10px;
}
#course #section-contr form .contributions .order,
#course #section-quest form .contributions .order {
  display: block;
  margin-top: 50px;
}
#course #section-contr form .contributions .order h3,
#course #section-quest form .contributions .order h3 {
  margin-bottom: 30px;
}
#course #section-contr form .contributions .order .order-options,
#course #section-quest form .contributions .order .order-options {
  display: flex;
}
#course #section-contr form .contributions .order .btn,
#course #section-quest form .contributions .order .btn {
  color: #a2a7ac;
  margin: 0 5px;
  background-color: #2f3031;
}
#course #section-contr form .contributions .order .btn:hover,
#course #section-quest form .contributions .order .btn:hover {
  background-color: #38393c;
}
#course #section-contr form .card-container,
#course #section-quest form .card-container {
  margin-top: 25px;
  display: flex;
}
#course #section-contr form .card-container .card,
#course #section-quest form .card-container .card {
  display: flex;
  width: 100%;
  padding: 0.75rem;
  background-color: #2f3031;
  border-radius: 2px;
  flex-direction:unset !important;
  /* --------------------------- ANCHOR Card content -------------------------- */
}
#course #section-contr form .card-container .card .var,
#course #section-quest form .card-container .card .var {
  max-width: 50px;
  display: flex;
  flex-direction: column;
}
#course #section-contr form .card-container .card .var img,
#course #section-quest form .card-container .card .var img {
  display: block;
  width: 50px;
  border-radius: 50%;
}
#course #section-contr form .card-container .card .var .like,
#course #section-quest form .card-container .card .var .like {
  transform: scale(0.8);
  cursor: pointer;
  display: flex;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  border: 1px solid #3f4144;
  padding: 5px;
  border-radius: 50%;
}
#course #section-contr form .card-container .card .var .like .im,
#course #section-quest form .card-container .card .var .like .im {
  font-size: 0.9rem;
  margin-bottom: 2px;
}
#course #section-contr form .card-container .card .card-content,
#course #section-quest form .card-container .card .card-content {
  display: block;
  margin-left: 15px;
}
#course #section-contr form .card-container .card .card-content h4,
#course #section-quest form .card-container .card .card-content h4 {
  padding: 0;
  margin: 0;
  font-size: unset !important;
}
    #course #section-contr form .card-container .card .card-content h5,
    #course #section-quest form .card-container .card .card-content h5 {
        padding: 0;
        margin: 0;
        font-size: 0.75em !important;
        font-weight: lighter;
    }
#course #section-contr form .card-container .card .card-content .time,
#course #section-quest form .card-container .card .card-content .time {
  color: #787d81;
  font-size: 0.8rem;
}
#course #section-contr form .card-container .card .card-content p,
#course #section-quest form .card-container .card .card-content p {
  font-size: 0.8rem;
}
@media only screen and (min-width: 768px) {
  #course #course-content {
    display: flex;
    width: 100%;
  }

    #course #course-content h2 {
        display: block;
        font-size: 1.5em;
        margin-block-start: 0.83em;
        margin-block-end: 0.83em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        font-weight: bold;
    }

    #course #course-content h3 {
        display: block;
        font-size: 1.17em;
        margin-block-start: 1em;
        margin-block-end: 1em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        font-weight: bold;
    }


  #course #section-quest,
#course #section-contr {
    max-width: 350px;
    margin-top: 0;
  }
}

/* -------------------------------- !SECTION -------------------------------- */


#response-message {
    margin-top: 10px;
    position: absolute;
}

.title {
    margin: 3em 0 0 0;
    color: #ffffff;
}

#lang_switch .select-options li[rel="Spain"] {
    display: flex !important;
    align-items: center;
    background-image: url('../../images/icons/flags2.png') !important;
    background-position: 0 20px;
    background-size: cover;
    background-color: red;
    width: 15px;
    height: 20px;
    border-radius: 50%;
}

#lang_switch .select-options li[rel="Usa"] {
    background-image: url('../../images/icons/flags2.png') !important;
    background-position: 0 128px;
    background-size: cover;
    background-color: red;
    width: 15px;
    height: 20px;
    border-radius: 50%;
}

.log-out {
    position: fixed;
    display: block;
    top: 14px;
    right: 20px;
    z-index: 999999;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

    .log-out li a {
        color: white !important;
        text-decoration: revert;
    }






/* Language switcher */
#lang_switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: right;
    font-size: 0.9em;
    width: 120px;
    left: 0;
    /*    top: 33px;*/
    position: absolute;
}

    #lang_switch .select-hidden {
        display: none;
        visibility: hidden;
        padding-right: 10px;
    }

    #lang_switch .select {
        font-weight: normal;
        font-size: 0.6em;
        border: 0.5px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        position: relative;
        color: #232325;
        width: 120px;
        height: 28px;
    }

    #lang_switch .select-styled {
        display: flex;
        text-align: right;
        justify-content: space-between;
        font-weight: normal;
        font-size: 0.8rem;
        position: absolute;
        top: 0;
        right: 0;
        color: #a2a7ac;
        bottom: 0;
        left: 8px;
        /* background-color: #232325;*/
        background-color: red;
        padding: 5px 0px 10px 36px;
        border-radius: 50%;
        /*        transition: transform 0.2s ease-in;*/
    }

        #lang_switch .select-styled:after {
            content: "";
            white-space: pre;
            width: 0;
            height: 0;
            border: none;
            border-color: #fff transparent transparent transparent;
            position: absolute;
            top: 2px;
            right: 10px;
            left: 10px;
        }

        /* #lang_switch .select-styled:hover {
            background-color: #232325;
        }*/

        #lang_switch .select-styled:active,
        .select-stylctive {
            background-color: rgb(248, 246, 242);
        }

            #lang_switch .select-styled:active:after,
            .select-styled.active:after {
                top: 4px;
                border-color: transparent transparent transparent transparent;
            }

    #lang_switch .select-options {
        width: 110px;
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 999;
        margin-top: 8px;
        padding: 5px;
        list-style: none;
        background-color: rgb(35, 35, 37);
        -webkit-box-shadow: 0px 11px 20px -7px rgba(0, 0, 0, 0.33);
        -moz-box-shadow: 0px 11px 20px -7px rgba(0, 0, 0, 0.33);
        box-shadow: 0px 11px 20px -7px rgba(0, 0, 0, 0.33);
    }

        #lang_switch .select-options ul {
            padding-left: 5px;
        }

        #lang_switch .select-options li {
            display: flex;
            align-items: center;
            width: 35px;
            cursor: pointer;
            font-size: 0.7rem;
            color: white;
            margin: 4px 0 10px 5px;
            padding: 1px 0 0px 25px;
            text-indent: 15px;
            /*            transition: color 0.1s linear, background-color 0.1s linear;*/
        }

            #lang_switch .select-options li:hover {
                color: #ffffff;
                background: #232325;
            }

            #lang_switch .select-options li[rel="Spain"] {
                display: flex !important;
                align-items: center;
                background-image: url('../../images/icons/flags2.png');
                background-position: 0 20px;
                background-size: cover;
                background-color: red;
                width: 15px;
                height: 20px;
                border-radius: 50%;
            }

            #lang_switch .select-options li[rel="Usa"] {
                background-image: url('../../images/icons/flags2.png');
                background-position: 0 128px;
                background-size: cover;
                background-color: red;
                width: 15px;
                height: 20px;
                border-radius: 50%;
            }

    /*            #lang_switch .select-options li[rel="France"] {
                background-image: url('../content/images/icons/flags2.png');
                background-position: 0 0px;
                background-size: cover;
            }*/

    #lang_switch .select-styled {
        width: 20px;
        padding: 1px 0px 10px 21px;
        background-image: url('../../images/icons/flags2.png');
        background-position: 0 23px;
        background-size: 30px;
        transition: none;
        border: 4px solid #232325;
    }






/* Language switcher in mobile version*/
#lang_switch_mobile {
    display: block;
    font-size: 0.9em;
    /*width: 92px;*/
    left: 10px;
    top: 33px;
    position: absolute;
}

    #lang_switch_mobile .select-hidden {
        display: none;
        visibility: hidden;
        padding-right: 10px;
    }

    #lang_switch_mobile .select {
        font-size: 0.6em;
        border: 0.5px;
        cursor: pointer;
        display: inline-block;
        position: relative;
        font-size: 0.8em;
        color: #232325;
        width: 60px;
        height: 28px;
    }

    #lang_switch_mobile .select-styled {
        font-size: 1em;
        position: absolute;
        top: 5px;
        right: 0;
        bottom: 0;
        left: 8px;
        background-color: #232325;
        padding: 5px 0px 10px 36px;
        /*        transition: all 0.2s ease-in;*/
    }

        #lang_switch_mobile .select-styled:after {
            content: "";
            white-space: pre;
            width: 0;
            height: 0;
            border: none;
            border-color: #fff transparent transparent transparent;
            position: absolute;
            top: 2px;
            right: 10px;
            left: 10px;
        }

        #lang_switch_mobile .select-styled:hover {
            background-color: #232325;
        }

        #lang_switch_mobile .select-styled:active,
        .select-styled.active {
            background-color: rgb(248, 246, 242);
        }

            #lang_switch_mobile .select-styled:active:after,
            .select-styled.active:after {
                top: 4px;
                border-color: transparent transparent transparent transparent;
            }

    #lang_switch_mobile .select-options {
        width: 110px;
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 999;
        margin-top: 8px;
        padding: 0px;
        list-style: none;
        background-color: rgb(35, 35, 37);
        -webkit-box-shadow: 0px 11px 20px -7px rgba(0, 0, 0, 0.33);
        -moz-box-shadow: 0px 11px 20px -7px rgba(0, 0, 0, 0.33);
        box-shadow: 0px 11px 20px -7px rgba(0, 0, 0, 0.33);
    }

        #lang_switch_mobile .select-options ul {
            padding-left: 5px;
        }

        #lang_switch_mobile .select-options li {
            width: 35px;
            cursor: pointer;
            font-size: 0.7rem;
            margin: 4px 0 10px 5px;
            padding: 7px 0 0px 25px;
            text-indent: 15px;
            transition: color 0.1s linear, background-color 0.1s linear;
            -webkit-transition: color 0.1s linear, background-color 0.1s linear;
            -moz-transition: color 0.1s linear, background-color 0.1s linear;
            -ms-transition: color 0.1s linear, background-color 0.1s linear;
            -o-transition: color 0.1s linear, background-color 0.1s linear;
        }

            #lang_switch_mobile .select-options li:hover {
                color: #ffffff;
                background: #232325;
            }

            #lang_switch_mobile .select-options li[rel="Spain"] {
                background-image: url('../../images/icons/flags2.png');
                background-position: 0 25px;
                background-size: cover;
            }

            #lang_switch_mobile .select-options li[rel="Usa"] {
                background-image: url('../../images/icons/flags2.png');
                background-position: 0 77px;
                background-size: cover;
            }

            #lang_switch_mobile .select-options li[rel="France"] {
                background-image: url('../../images/icons/flags2.png');
                background-position: 0 0px;
                background-size: cover;
            }

    #lang_switch_mobile .select-styled {
        width: 30px;
        padding: 1px 0px 10px 30px;
        background-image: url('../../images/icons/flags2.png');
        background-position: 0 23px;
        background-size: 30px;
        transition: none;
    }



@media (max-width: 767px) {
    #course-preview .info {
        padding: 0.5rem;
        position: relative;
        margin: 0.75rem 0.5rem;
        display: flex;
        flex-direction: column;
        width: 95%;
    }


    #course #section-contr {
        display: block;
        width: 100%;
        max-height: 100%;
        overflow: hidden;
        font-size: 0.9rem;
        padding: 0.75rem;
        margin-top: 0px;
    }
}