* {
    font-family: 'Open Sans', sans-serif;
}

input:focus {
    outline: none;
    box-shadow: none;
}

.home {
    background-color: #fff;
}

header {
    width: 100%;
    background-color: #fff;
}


header nav {
    width: 100%;
    display: flex;
}

header nav .logo {
    margin: 8px 0;
}

header nav ul {
    margin: 0 0 0 auto;
    display: flex;
    flex-direction: row;
    list-style: none;
}

header nav ul li {

}

header nav ul li a {
    display: block;
    line-height: 40px;
    text-decoration: none;
    color: #000;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    margin: 0 20px;
}

header nav ul li.iniciar-sesion {
    background-color: #F2059F;
    transition: all 0.3s ease;
    border-radius: 0;
}

header nav ul li.iniciar-sesion:hover {
    background-color: #d1047d;
    box-shadow: 0 4px 8px rgba(242, 5, 159, 0.3);
}

header nav ul li.iniciar-sesion:hover a {
    transform: translateY(-2px);
}

header nav ul li.iniciar-sesion a {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 10px;
    color: #FFFFFF;
    transition: all 0.3s ease;
}


nav.navbar-mobile {
    
}

nav.navbar-mobile button {
    margin: 3px 0 0 auto;
    width: 32px;
    height: 32px;
    background-image: url(../images/mobile/Menu.png);
    border: 0;
    background-color: transparent;

}

.menu-lateral-container {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .7);
    z-index: 998;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    overflow: hidden;
}

.menu-lateral {
    position: absolute;
    right: -188px;
    top: 0;
    width: 188px;
    height: 100vmax;
    background-color: #fff;
    z-index: 999;
    padding: 0 16px;
}

.menu-lateral .profile {
    width: 100%;
    margin: 10px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: end;

}

.menu-lateral .profile .image-profile {
    width: 36px;
    height: 36px;
    background-color: #6A747C;
    border-radius: 100%;
}

.menu-lateral .profile .image-profile img {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

.menu-lateral h1 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    color: #F2059F;
    width: 100%;
    border-bottom: 1px solid #F2059F;
    margin: 0 0 25px 0;
}

.menu-lateral ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.menu-lateral ul li {
    border-bottom: 1px solid #F2059F;
    margin: 0 0 20px 0;
}


.menu-lateral ul li a {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
    text-decoration: none;
}

/* HOME
* -------------------------------------------------------------------------------------------------
*/
.home .hero {
    width: 100%;
    height: 157px;
    background-image: url(../images/mobile/hero_home.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home .content {
    width: 100%;
    min-height: 1110px;
    background-image: url(../images/mobile/bg_content_home.png);
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}

.home .content .content-container {
    width: 100%;
    min-height: 1110px;
    background-color: rgba(255, 255, 255, .7);
    margin: 30px 0;
}

.home .content .content-container h1 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: #F2622E;
    padding: 27px 0 27px 0;
    margin: 0;
}

.home .content .content-container p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #000000;
}

.home .content .content-container h2 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 33px;
    color: #F2059F;
    padding: 25px 0 25px 0;
}

.home .content .content-container .items {
    display: flex;
    flex-direction: column;
}

.home .content .content-container .items .item {
    display: flex;
    flex-direction: column;
    align-items: center;    
    margin: 0 0 50px 0;
}

.home .content .content-container .items .item h4 {
    margin: 10px 0 0 25px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: #000000;
}

.home .content .content-container .buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 0 63px 0;
}

.home .content .content-container .buttons a:first-child {
    display: block;
    width: 163px;
    height: 71px;
    text-align: center;
    background-color: #F2059F;
    line-height: 71px;
    color: #fff;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    margin: 0 auto 0 auto;
    border-radius: 0px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.home .content .content-container .buttons a:first-child:hover {
    background-color: #d1047d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 5, 159, 0.4);
}

.home .content .content-container .buttons a:first-child:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(242, 5, 159, 0.3);
}

.home .content .content-container .buttons a:last-child {
    display: block;
    width: 163px;
    height: 71px;
    text-align: center;
    background-color: #fff;
    line-height: 71px;
    color: #000;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    border: 2px solid #000;
    margin: 16px auto 0 auto;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.home .content .content-container .buttons a:last-child:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.home .content .content-container .buttons a:last-child:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* REGISTRO
* -------------------------------------------------------------------------------------------------
*/
.registro .hero {
    width: 100%;
    height: 157px;
    background-image: url(../images/mobile/hero_registro.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.registro .content {
    width: 100%;
    min-height: auto;
    background-image: url(../images/mobile/bg_content_home.png);
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}

.registro .content .content-container {
    width: 100%;
    min-height: auto;
    background-color: rgba(255, 255, 255, .7);
    margin: 30px 0;
}

.registro .content .content-container h1 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #F2622E;
    padding: 22px 0 23px 0;
}

.registro .content .content-container p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 27px;
    text-align: center;
    color: #000000;
    padding: 0 0 24px 0;
    margin: 0;
}

.registro .content .content-container .input-wrapper {
    padding: 0 0 0 0;
}

.registro .content .content-container .input-wrapper label {
    font-weight: bold;
    padding: 0 0 5px 0;
}

.registro .content .content-container .input-wrapper input {
    margin: 0 0 23px 0;
    height: 45px;
    border: 1px solid #9F9D9B;
    border-radius: 10px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 45px;
    color: #000000;
    width: 100%;
}

.registro .content .content-container .input-wrapper.has-error input{
    border: 1px solid #C82333;
}

.registro .content .content-container .input-wrapper.has-error label{
    color: #C82333;
}

.registro .content .content-container .col-6:nth-child(2n+1) .input-wrapper {
    padding: 0 0 0 48px;
}

.registro .content .content-container input::placeholder {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 45px;
    color: #000000;
}

.registro .content .content-container p.obligatorio {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #000000;
    padding: 0 0 0 0;
    text-align: left;
}

.registro .content .content-container h2 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    text-align: center;
    color: #F2059F;
    padding: 60px 0 28px 0;
}

.registro .content .content-container .avatares {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 24px;
    justify-content: space-between;
}

.registro .content .content-container .avatares .avatar {
    width: 102px;
    height: 102px;
    background-color: #D9D9D9;
    border-radius: 100%;
}

.registro .content .content-container .terminos {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 30px 0 0 0;

}

.registro .content .content-container .terminos .has-error label {
    color: #C82333;
}

.registro .content .content-container .terminos .has-error input {
    border:1px solid #C82333;
}

.registro .content .content-container .terminos .form-check {
    display: flex;
    text-align: left;
}

.registro .content .content-container .terminos input {
    width: 30px;
    height: 30px;
    border: 3px solid #000;
    margin: 0 15px 0 0;
}


.registro .content .content-container .terminos label {
    line-height: 36px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    margin: 0;
    padding: 0 0 0 20px;
    line-height: 17px;
}


.registro .content .content-container .buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 20px 0 63px 0;
}

.registro .content .content-container .buttons a:first-child, .registro .content .content-container .buttons button:first-child {
    display: block;
    width: 180px;
    height: 71px;
    text-align: center;
    background-color: #F2059F;
    line-height: 71px;
    color: #fff;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    margin: 0 12px 0 0;
    border-radius: 0px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 0;
}

.registro .content .content-container .buttons a:first-child.disabled, .registro .content .content-container .buttons button:first-child.disabled {
    opacity: 0.4;
    pointer-events: none
}

.registro .content .content-container .buttons a:first-child:hover {
    background-color: #d1047d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 5, 159, 0.4);
}

.registro .content .content-container .buttons a:first-child:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(242, 5, 159, 0.3);
}

#carouselAvatares {
    width: 273px;
    margin: 0 auto;
}

#carouselAvatares .carousel-inner {
    width: 163px;
    margin: 0 auto;
}

#carouselAvatares .carousel-item {
    text-align: center;
    width: 163px;
}

#carouselAvatares .carousel-item a {
    display: block;
    width: 163px;
    height: 163px;
    border-radius: 100%;
    background-color: #D9D9D9;
}

#carouselAvatares .carousel-item a img {
    width: 100%;
    height: 100%;
}

.carousel-control-prev-icon {
        background-image: url(../images/mobile/prev.png);
        width: 55px;
        height: 55px;
}

.carousel-control-next-icon {
        background-image: url(../images/mobile/next.png);
        width: 55px;
        height: 55px;
}

.carousel-control-next, .carousel-control-prev {
    width: 55px;
}

.button_select_avatar {
    width: 195px;
    height: 63px;
    background: #F2622E;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 63px;
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
    margin: 20px auto;
}

/* LOGIN PAGE
* -------------------------------------------------------------------------------------------------
*/

.login .hero {
    width: 100%;
    height: 157px;
    background-image: url(../images/mobile/hero_login.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.login .content {
    width: 100%;
    min-height: auto;
    background-image: url(../images/mobile/bg_content_home.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.login .content .icon {
    margin: 30px auto 20px auto;
    text-align: center;
}

.login .content .content-container {
    width: 100%;
    min-height: auto;
    background-color: rgba(255, 255, 255, .7);
    margin: 30px 0;
}

.login .content .content-container h1 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #F2622E;
    padding: 22px 0 23px 0;
}

.login .content .content-container p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    color: #000000;
    padding: 0 0 24px 0;
    margin: 0;
}

.login .content .content-container .input-wrapper {
    padding: 0 0 0 0;
}

.login .content .content-container .input-wrapper label {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    color: #000000;
}

.login .content .content-container .input-wrapper input {
    margin: 0 0 23px 0;
    height: 45px;
    border: 1px solid #9F9D9B;
    border-radius: 10px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 45px;
    color: #000000;
    width: 100%;
}

.login .content .content-container .input-wrapper.has-error input {
    border: 1px solid #C82333;    
}

.login .content .content-container .input-wrapper.has-error label {
    color:#C82333;    
}

.login .content .content-container input::placeholder {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 45px;
    color: #000000;
}

.login .content .content-container p.obligatorio {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    padding: 0 0 0 48px;
    text-align: left;
}


.login .content .content-container a.recovery {
    text-decoration: none;
    color: #000;
}

.login .content .content-container .buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 20px 0 63px 0;
}

.login .content .content-container .buttons a:first-child, .login .content .content-container .buttons button:first-child {
    display: block;
    width: 180px;
    height: 71px;
    text-align: center;
    background-color: #F2059F;
    line-height: 71px;
    color: #fff;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    margin: 0 12px 0 0;
    border-radius: 0px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 0;
}

.login .content .content-container .buttons a:first-child:hover {
    background-color: #d1047d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 5, 159, 0.4);
}

.login .content .content-container .buttons a:first-child:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(242, 5, 159, 0.3);
}

/* LOGIN
* -------------------------------------------------------------------------------------------------
*/

.login-container {
    width: 100%;
    min-height: 100vh;
    background-color: rgba(0,0,0,.8);
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.login-container .login-content {
    width: 700px;
    height: 550px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.login-container .login-content .form-items {
    width: 461px;
    margin: 25px auto 0 auto;
}

.login-container .login-content .form-items label {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    color: #000000;
}

.login-container .login-content .form-items input {
    height: 33px;
    line-height: 33px;
    border: 1px solid #000;
    border-radius: 4px;
}

.login-container .login-content .form-items div:nth-child(2) {
    margin: 25px 0 0 0;
}


.login-container .login-content .password-recovery {
    padding: 20px 0;
    text-align: center;
}

.login-container .login-content .password-recovery a {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}



.login-container .login-content .buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0px 0 0 0;
}

.login-container .login-content .buttons a:first-child {
    display: block;
    width: 180px;
    height: 71px;
    text-align: center;
    background-color: #F2059F;
    line-height: 71px;
    color: #fff;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    margin: 0 12px 0 0;
    border-radius: 0px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-container .login-content .buttons a:first-child:hover {
    background-color: #d1047d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 5, 159, 0.4);
}

.login-container .login-content .buttons a:first-child:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(242, 5, 159, 0.3);
}

/* HOME USER
* -------------------------------------------------------------------------------------------------
*/

.home-user {

}

header nav ul li.selected a {
    color:#F2059F;
    font-weight: bold;
}

header nav ul li.profile {

}

header nav ul li.profile a {
    width: 78px;
    height: 78px;
    background-color: #D9D9D9;
    border-radius: 100%;
    margin: 11px 0;
}

.home-user .hero {
    width: 100%;
    height: 157px;
    background-image: url(../images/hero_home-user.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-user .content {
    width: 100%;
    min-height: 987px;
    background-image: url(../images/mobile/bg_content_home.png);
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}


.home-user .content .content-container {
    width: 100%;
    min-height: 1110px;
    background-color: rgba(255, 255, 255, .7);
    margin: 30px 0;
}

.home-user .content .content-container h1 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #F2622E;
    padding: 22px 0 0 0;
    margin: 0;
}

.home-user .content .content-container p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #000000;
    padding: 23px 0;
}

.home-user .content .content-container p span {
    font-weight: bold;
    color: #F2059F;
}

.home-user .content .content-container h2 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    color: #F2059F;
    padding: 0 0 30px 0;
}

.home-user .content .content-container .items {
    display: flex;
    flex-direction: column;
}

.home-user .content .content-container .items .item {
    display: flex;
    flex-direction: column;
    align-items: center;    
    margin: 0 0 100px 0;
}

.home-user .content .content-container .items .item h4 {
    margin: 20px 0 0 0;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #000000;
}

.home-user .content .content-container .items .item h4 span {
    font-weight: bold;
}

.home-user .content .content-container h5 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    color: #F2622E;
    padding: 70px 0 40px 0;
    margin: 0;
}




/* HOME ONDEMAND
* -------------------------------------------------------------------------------------------------
*/

.home-ondemand .hero {
    width: 100%;
    height: 157px;
    background-image: url(../images/mobile/hero_ondemand.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-ondemand .content {
    width: 100%;
    min-height: 987px;
    background-image: url(../images/mobile/bg_content_home.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}


.home-ondemand .content .content-container {
    width: 100%;
    min-height: 1110px;
    background-color: rgba(255, 255, 255, .7);
    margin: 30px 0;
}

.home-ondemand .content .content-container h1 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #F2622E;
    padding: 22px 0 25px 0;
    margin: 0;
}

.home-ondemand .content .content-container p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #000000;
    padding: 0 0 15px 0;
}

ul.modules {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}

ul.modules li {
    margin: 0 0 15px 0;
}

ul.modules li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 55px;
    background-color: #F2A516;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 55px;
    color: #FFFFFF;
    padding: 0 0 0 32px;
    text-decoration: none;
}

ul.modules li.disabled a {
    background-color: #E3E3E3;
    color: #737373;
}

ul.modules li a .progress-circle {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: conic-gradient(#F2059F 0deg, #fff 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px 0 0; 
    transition: background 0.5s ease;
}
     
ul.modules li.disabled a .progress-circle {
    display: none;
}

ul.modules li a .progress-circle::before {
    content: "";
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: orange;
}
        
ul.modules li a .progress-value {
    position: relative;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.home-ondemand .content .content-container h2 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #F2059F;
    padding: 15px 0 24px 0 ;
}

.home-ondemand .content .content-container ul.ranking {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.home-ondemand .content .content-container ul.ranking li {
    display: flex;
    flex-direction: row;
    background-color: #fff;
    justify-content: space-between;
    width: 100%;
    height: 58px;
    margin: 0 0 15px 0;
}

.home-ondemand .content .content-container ul.ranking li div {
    padding: 0 15px;
}

.home-ondemand .content .content-container ul.ranking li div p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 58px;
    text-align: center;
    color: #000000;
}

.home-ondemand .content .content-container ul.ranking li div div.imagen {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    overflow: hidden;
    margin: 4px 0 0 0;
    background-color: #D9D9D9;
}


.home-ondemand .content .content-container ul.ranking li:nth-child(1) {
    background-color: #FFD700;
}

.home-ondemand .content .content-container ul.ranking li:nth-child(2) {
    background-color: #C0C0C0;
}

.home-ondemand .content .content-container ul.ranking li:nth-child(3) {
    background-color: #CD7F32;
}

.home-ondemand .content .content-container .ranking-mobile {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.home-ondemand .content .content-container .ranking-mobile h1 {
    text-align: center;
    width: 100%;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    color: #000000;
    padding-bottom: 5px;
    margin: 0;
    padding: 0;
}

.home-ondemand .content .content-container .ranking-mobile .image {
    width: 50px;
    height: 50px;
    background-color: #6A747C;
    border-radius: 100%;
    display: block;
    margin: 0 auto;
}

.home-ondemand .content .content-container .ranking-mobile p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    color: #000000;
}

/* HOME ONDEMAND
* -------------------------------------------------------------------------------------------------
*/

.modulo-ondemand .hero {
    width: 100%;
    height: 157px;
    background-image: url(../images/hero_ondemand.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.modulo-ondemand .content {
    width: 100%;
    background-image: url(../images/bg_content_home.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.modulo-ondemand .content .content-container {
    width: 100%;
    background-color: rgba(255, 255, 255, .7);
    margin: 30px 0;
    padding: 0 0 30px 0;
}

.modulo-ondemand .content .content-container h1 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 54px;
    color: #F2622E;
    padding: 42px 0;
    margin: 0;
}

.modulo-ondemand .content .content-container .modulo-container {
    width: 100%;
    min-height: 604px;
    border: 2px solid #F2622E;
    display: grid;
}

.modulo-ondemand .content .content-container .modulo-container .slide {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modulo-ondemand .content .content-container .modulo-container .slide a.iniciar {
    width: 384px;
    height: 60px;
    background: #F2059F;
    display: block;
    line-height: 60px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    margin: 100px 0 0 0; 
}

.modulo-ondemand .content .content-container .modulo-container .slide .header {
    width: 840px;
    padding: 36px 0 30px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.modulo-ondemand .content .content-container .modulo-container .slide .header p.title {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    color: #F2A516;
    text-align: left;
}

.modulo-ondemand .content .content-container .modulo-container .slide .header p.points {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 33px;
    color: #F2059F;
    text-align: right;
}

.modulo-ondemand .content .content-container .modulo-container .slide ul.instructions {
    width: 840px;
    padding: 36px 0 0 15px;
}

.modulo-ondemand .content .content-container .modulo-container .slide ul.instructions li {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: #000000;
    margin: 0 0 30px 0;
}

.modulo-ondemand .content .content-container .modulo-container .slide ul.instructions li span {
    font-weight: bold;
    color:#F2059F;
}

.modulo-ondemand .content .content-container .modulo-container .slide .buttons {
    width: 840px;
    margin: 0 auto;
}

.modulo-ondemand .content .content-container .modulo-container .slide .buttons a.next {
    width: 102px;
    height: 32px;
    background: #F2622E;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    margin: 0 0 30px auto;
    display: block;
}

.modulo-ondemand .content .content-container .modulo-container .slide .question {
    width: 840px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: #000000; 
    text-align: left;   
    padding: 0 0 65px 0;
}


.modulo-ondemand .content .content-container .modulo-container .slide  ul.options {
    width: 840px;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    list-style: none;
}

.modulo-ondemand .content .content-container .modulo-container .slide  ul.options li {
    margin: 0 0 50px 0;
    display: flex;
}

.modulo-ondemand .content .content-container .modulo-container .slide  ul.options li input {
    width: 30px;
    height: 30px;
    margin: 0 25px 0 0;
    border: 2px solid #000;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
}

.modulo-ondemand .content .content-container .modulo-container .slide  ul.options li input:checked::after {

    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    color: #000;
    text-align: center;
    font-size: 21px;
}

.modulo-ondemand .content .content-container .modulo-container .slide  ul.options li label {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #000000;
}

.modulo-ondemand .content .content-container .modulo-container .progressbar {
    width: 840px;
    height: 15px;
    padding: 0 0 0 0;
    background-color: #E3E3E3;
    border-radius: 0;
    margin: 50px auto 50px auto;
}

.modulo-ondemand .content .content-container .modulo-container .progressbar .progress {
    width: 0;
    height: 15px;
    background-color: #F2059F;
    border-radius: 0;
}

.modulo-ondemand .content .content-container .modulo-container .slide div.answer {
    width: 840px;
    display: flex;
}

.modulo-ondemand .content .content-container .modulo-container .slide div.answer .correct_square {
    width: 30px;
    height: 30px;
    background-color: #6CB33F;
    display: inline-block;
    margin: 0 15px 0 0;
    border: 2px solid #000;
}

.modulo-ondemand .content .content-container .modulo-container .slide div.answer .incorrect_square {
    width: 30px;
    height: 30px;
    background-color: #C82333;
    display: inline-block;
    margin: 0 15px 0 0;
    border: 2px solid #000;
}

.modulo-ondemand .content .content-container .modulo-container .slide p.answer {
    width: 840px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 33px;
    color: #000000;
    padding: 50px 0;
}


.modulo-ondemand .content .content-container .modulo-container .slide p.correct_title {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: #F2059F;
    text-align: left;
    padding: 30px 0 0 0;
    width: 840px;
}


.modulo-ondemand .content .content-container .modulo-container .slide_finalizar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    width: 100%;
    margin: 0 auto;
}

.modulo-ondemand .content .content-container .modulo-container .slide_finalizar div {
    width: 50%;
}

.modulo-ondemand .content .content-container .modulo-container .slide_finalizar h1 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    color: #F2A516;
    padding: 20px 0 60px 75px;
}

.modulo-ondemand .content .content-container .modulo-container .slide_finalizar .avatar {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    background-color: #D9D9D9;
    margin: 0 auto 40px auto;
}

.modulo-ondemand .content .content-container .modulo-container .slide_finalizar p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    text-align: center;
    color: #000000;
}

.modulo-ondemand .content .content-container .modulo-container .slide_finalizar h2 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    text-align: center;
    color: #F2059F;
    padding: 65px 0 0 0;
}

.modulo-ondemand .content .content-container .modulo-container ul.ranking {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 384px;
    margin: 20px auto 0 auto;
}

.modulo-ondemand .content .content-container .modulo-container ul.ranking li {
    display: flex;
    flex-direction: row;
    background-color: #fff;
    justify-content: space-evenly;
    width: 100%;
    height: 58px;
    margin: 0 0 15px 0;
    gap: 0 10px;
}



.modulo-ondemand .content .content-container .modulo-container ul.ranking li div {
    
    width: auto;
}

.modulo-ondemand .content .content-container .modulo-container ul.ranking li div:nth-child(1) {
   
 
}

.modulo-ondemand .content .content-container .modulo-container ul.ranking li div:nth-child(3) {
    width: 50%;
 
}

.modulo-ondemand .content .content-container .modulo-container ul.ranking li div:nth-child(3) p {
    text-align: left; 
}

.modulo-ondemand .content .content-container .modulo-container ul.ranking li div p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 58px;
    text-align: center;
    color: #000000;
}

.modulo-ondemand .content .content-container .modulo-container li div div.imagen {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    overflow: hidden;
    margin: 4px 0 0 0;
    background-color: #D9D9D9;
}


.modulo-ondemand .content .content-container .modulo-container ul.ranking li:nth-child(1) {
    background-color: #FFD700;
}

.modulo-ondemand .content .content-container .modulo-container ul.ranking li:nth-child(2) {
    background-color: #C0C0C0;
}

.modulo-ondemand .content .content-container .modulo-container ul.ranking li:nth-child(3) {
    background-color: #CD7F32;
}

.modulo-ondemand .content .content-container .modulo-container .button_container {
    width: 384px !important;
    display: flex;
    flex-direction: row;
    justify-content: end;
    margin: 0 auto;
    padding: 30px 0 0 0;
}

.modulo-ondemand .content .content-container .modulo-container .button_container a {
    width: 102px;
    height: 32px;
    background: #F2059F;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    color: #FFFFFF;
    text-decoration: none;
    display: block;
    text-align: center;
}

/* HOME LIVE
* -------------------------------------------------------------------------------------------------
*/

.home-live .hero {
    width: 100%;
    height: 157px;
    background-image: url(../images/mobile/hero_live.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-live .content {
    width: 100%;
    background-image: url(../images/mobile/bg_content_home.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.home-live .content .content-container {
    width: 100%;
    background-color: rgba(255, 255, 255, .7);
    margin: 30px 0;
    padding: 0 0 30px 0;
}

.home-live .content .content-container h1 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #F2622E;
    padding: 22px 0;
    margin: 0;
}

.home-live .content .content-container .modulo-container {
    width: 100%;
    min-height: 604px;
    border: 2px solid #F2622E;
    display: grid;
}

.home-live .content .content-container .modulo-container .slide {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-live .content .content-container .modulo-container .slide a.iniciar {
    width: 384px;
    height: 60px;
    background: #F2059F;
    display: block;
    line-height: 60px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    margin: 100px 0 0 0; 
}

.home-live .content .content-container .modulo-container .slide .header {
    width: 840px;
    padding: 36px 0 30px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.home-live .content .content-container .modulo-container .slide .header p.title {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    color: #F2A516;
    text-align: left;
}

.home-live .content .content-container .modulo-container .slide .header p.points {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 33px;
    color: #F2059F;
    text-align: right;
}

.modulo-live .content .content-container .modulo-container .slide ul.instructions {
    width: 840px;
    padding: 36px 0 0 15px;
}

.modulo-live .content .content-container .modulo-container .slide ul.instructions li {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: #000000;
    margin: 0 0 30px 0;
}

.modulo-live .content .content-container .modulo-container .slide ul.instructions li span {
    font-weight: bold;
    color:#F2059F;
}

.modulo-live .content .content-container .modulo-container .slide .buttons {
    width: 840px;
    margin: 0 auto;
}

.modulo-live .content .content-container .modulo-container .slide .buttons a.next {
    width: 102px;
    height: 32px;
    background: #F2622E;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    margin: 0 0 30px auto;
    display: block;
}

.modulo-live .content .content-container .modulo-container .slide .question {
    width: 840px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: #000000; 
    text-align: left;   
    padding: 0 0 65px 0;
}


.modulo-live .content .content-container .modulo-container .slide  ul.options {
    width: 840px;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    list-style: none;
}

.modulo-live .content .content-container .modulo-container .slide  ul.options li {
    margin: 0 0 50px 0;
    display: flex;
}

.modulo-live .content .content-container .modulo-container .slide  ul.options li input {
    width: 30px;
    height: 30px;
    margin: 0 25px 0 0;
    border: 2px solid #000;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
}

.modulo-live .content .content-container .modulo-container .slide  ul.options li input:checked::after {

    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    color: #000;
    text-align: center;
    font-size: 21px;
}

.modulo-live .content .content-container .modulo-container .slide  ul.options li label {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #000000;
}

.modulo-live .content .content-container .modulo-container .progressbar {
    width: 840px;
    height: 15px;
    padding: 0 0 0 0;
    background-color: #E3E3E3;
    border-radius: 0;
    margin: 50px auto 50px auto;
}

.modulo-live .content .content-container .modulo-container .progressbar .progress {
    width: 0;
    height: 15px;
    background-color: #F2059F;
    border-radius: 0;
}

.modulo-live .content .content-container .modulo-container .slide div.answer {
    width: 840px;
    display: flex;
}

.modulo-live .content .content-container .modulo-container .slide div.answer .correct_square {
    width: 30px;
    height: 30px;
    background-color: #6CB33F;
    display: inline-block;
    margin: 0 15px 0 0;
    border: 2px solid #000;
}

.modulo-live .content .content-container .modulo-container .slide div.answer .incorrect_square {
    width: 30px;
    height: 30px;
    background-color: #C82333;
    display: inline-block;
    margin: 0 15px 0 0;
    border: 2px solid #000;
}

.modulo-live .content .content-container .modulo-container .slide p.answer {
    width: 840px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 33px;
    color: #000000;
    padding: 50px 0;
}


.modulo-live .content .content-container .modulo-container .slide p.correct_title {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: #F2059F;
    text-align: left;
    padding: 30px 0 0 0;
    width: 840px;
}


.modulo-live .content .content-container .modulo-container .slide_finalizar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    width: 100%;
    margin: 0 auto;
}

.modulo-live .content .content-container .modulo-container .slide_finalizar div {
    width: 50%;
}

.modulo-live .content .content-container .modulo-container .slide_finalizar h1 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    color: #F2A516;
    padding: 20px 0 60px 75px;
}

.modulo-live .content .content-container .modulo-container .slide_finalizar .avatar {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    background-color: #D9D9D9;
    margin: 0 auto 40px auto;
}

.modulo-live .content .content-container .modulo-container .slide_finalizar p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    text-align: center;
    color: #000000;
}

.modulo-live .content .content-container .modulo-container .slide_finalizar h2 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    text-align: center;
    color: #F2059F;
    padding: 65px 0 0 0;
}


/* FOOTER
* -------------------------------------------------------------------------------------------------
*/
footer {
    width: 100%;
    height: 126px;
    background-color: #fff;
    border-top: 2px solid #F2059F;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    color: #000000;
    margin: 0;
    padding: 0;
}

@media (min-width: 576px) {  }

@media (min-width: 768px) {  }

@media (min-width: 992px) { 

    
    header nav {
        width: 100%;
        display: flex;
    }

    header nav .logo {
        margin: 24px 0;
    }

    header nav ul {
        margin: 0 0 0 auto;
        display: flex;
        flex-direction: row;
        list-style: none;
    }

    header nav ul li {

    }

    header nav ul li a {
        display: block;
        line-height: 100px;
        text-decoration: none;
        color: #000;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        margin: 0 20px;
    }

    header nav ul li.iniciar-sesion {
        background-color: #F2059F;
        transition: all 0.3s ease;
        border-radius: 0;
    }

    header nav ul li.iniciar-sesion:hover {
        background-color: #d1047d;
        box-shadow: 0 4px 8px rgba(242, 5, 159, 0.3);
    }

    header nav ul li.iniciar-sesion:hover a {
        transform: translateY(-2px);
    }

    header nav ul li.iniciar-sesion a {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 16px;
        color: #FFFFFF;
        transition: all 0.3s ease;
    }

    /* HOME
    * -------------------------------------------------------------------------------------------------
    */
    .home .hero {
        width: 100%;
        height: 262px;
        background-image: url(../images/hero_home.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .home .content {
        width: 100%;
        min-height: 1110px;
        background-image: url(../images/bg_content_home.png);
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .home .content .content-container {
        width: 100%;
        min-height: 1110px;
        background-color: rgba(255, 255, 255, .7);
        margin: 30px 0;
    }

    .home .content .content-container h1 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 40px;
        line-height: 54px;
        color: #F2622E;
        padding: 42px 0 25px 0;
        margin: 0;
    }

    .home .content .content-container p {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 27px;
        color: #000000;
    }

    .home .content .content-container h2 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 33px;
        color: #F2059F;
        padding: 60px 0 38px 0;
    }

    .home .content .content-container .items {
        display: flex;
        flex-direction: column;
    }

    .home .content .content-container .items .item {
        display: flex;
        flex-direction: row;
        align-items: center;    
        margin: 0 0 100px 0;
    }

    .home .content .content-container .items .item h4 {
        margin: 0 0 0 25px;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 27px;
        color: #000000;
    }

    .home .content .content-container .buttons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin: 0 0 63px 0;
    }

    .home .content .content-container .buttons a:first-child {
        display: block;
        width: 180px;
        height: 71px;
        text-align: center;
        background-color: #F2059F;
        line-height: 71px;
        color: #fff;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        text-decoration: none;
        margin: 0 12px 0 0;
        border-radius: 0px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .home .content .content-container .buttons a:first-child:hover {
        background-color: #d1047d;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(242, 5, 159, 0.4);
    }

    .home .content .content-container .buttons a:first-child:active {
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(242, 5, 159, 0.3);
    }

    .home .content .content-container .buttons a:last-child {
        display: block;
        width: 180px;
        height: 71px;
        text-align: center;
        background-color: #fff;
        line-height: 71px;
        color: #000;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        text-decoration: none;
        border: 2px solid #000;
        margin: 0 0 0 12px;
        border-radius: 0;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .home .content .content-container .buttons a:last-child:hover {
        background-color: #000;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .home .content .content-container .buttons a:last-child:active {
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    /* REGISTRO
    * -------------------------------------------------------------------------------------------------
    */
    .registro .hero {
        width: 100%;
        height: 262px;
        background-image: url(../images/hero_registro.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .registro .content {
        width: 100%;
        min-height: auto;
        background-image: url(../images/bg_content_home.png);
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .registro .content .content-container {
        width: 100%;
        min-height: auto;
        background-color: rgba(255, 255, 255, .7);
        margin: 30px 0;
    }

    .registro .content .content-container h1 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 40px;
        line-height: 54px;
        text-align: center;
        color: #F2622E;
        padding: 42px 0 23px 0;
    }

    .registro .content .content-container p {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 27px;
        text-align: center;
        color: #000000;
        padding: 0 0 24px 0;
        margin: 0;
    }

    .registro .content .content-container .input-wrapper {
        padding: 0 48px 0 0;
    }

    .registro .content .content-container .input-wrapper label {
        font-weight: bold;
        padding: 0 0 5px 0;
    }

    .registro .content .content-container .input-wrapper input {
        margin: 0 0 23px 0;
        height: 45px;
        border: 1px solid #9F9D9B;
        border-radius: 10px;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 45px;
        color: #000000;
        width: 100%;
    }

    .registro .content .content-container .input-wrapper.has-error input {
        border: 1px solid #C82333;
    }

    .registro .content .content-container .input-wrapper.has-error label {
        color: #C82333;
    }

    .registro .content .content-container .col-6:nth-child(2n+1) .input-wrapper {
        padding: 0 0 0 48px;
    }

    .registro .content .content-container input::placeholder {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 45px;
        color: #000000;
    }

    .registro .content .content-container p.obligatorio {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        color: #000000;
        padding: 0 0 0 48px;
        text-align: left;
    }

    .registro .content .content-container h2 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 33px;
        text-align: center;
        color: #F2059F;
        padding: 60px 0 28px 0;
    }

    .registro .content .content-container .avatares {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        gap: 24px;
        justify-content: space-between;
    }

    .registro .content .content-container .avatares .avatar {
        width: 102px;
        height: 102px;
        background-color: #D9D9D9;
        border-radius: 100%;
    }

    .registro .content .content-container .avatares .avatar a {
        border: 2px solid transparent;
        display: block;
        width: 102px;
        height: 102px;
        border-radius: 100%;
    }

    .registro .content .content-container .avatares .avatar a.selected {
        border: 2px solid #F2059F;
    }

    .registro .content .content-container .avatares .avatar a:hover {
        border: 2px solid #F2059F;
    }

    .registro .content .content-container .avatares .avatar a img {
        width: 100%;
        height: 100%;
    }
    .registro .content .content-container .terminos {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 30px 0 0 0;

    }

    .registro .content .content-container .terminos input {
        width: 30px;
        height: 30px;
        border: 3px solid #000;
    }

    .registro .content .content-container .terminos label {
        line-height: 36px;
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        color: #000000;
        margin: 0;
        padding: 0 0 0 20px;
    }


    .registro .content .content-container .buttons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin: 20px 0 63px 0;
    }

    .registro .content .content-container .buttons a:first-child, .registro .content .content-container .buttons button:first-child {
        display: block;
        width: 180px;
        height: 71px;
        text-align: center;
        background-color: #F2059F;
        line-height: 71px;
        color: #fff;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        text-decoration: none;
        margin: 0 12px 0 0;
        border-radius: 0px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        border: 0;
    }

    .registro .content .content-container .buttons a:first-child:hover {
        background-color: #d1047d;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(242, 5, 159, 0.4);
    }

    .registro .content .content-container .buttons a:first-child:active {
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(242, 5, 159, 0.3);
    }

    /* LOGIN PAGE
    * -------------------------------------------------------------------------------------------------
    */

    .login .hero {
        width: 100%;
        height: 262px;
        background-image: url(../images/hero_login.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .login .content {
        width: 100%;
        min-height: auto;
        background-image: url(../images/bg_content_home.png);
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .login .content .icon {
        margin: 50px auto 20px auto;
        text-align: center;
    }

    .login .content .content-container {
        width: 100%;
        min-height: auto;
        background-color: rgba(255, 255, 255, .7);
        margin: 30px 0;
    }

    .login .content .content-container h1 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 40px;
        line-height: 54px;
        text-align: center;
        color: #F2622E;
        padding: 42px 0 23px 0;
    }

    .login .content .content-container p {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 27px;
        text-align: center;
        color: #000000;
        padding: 0 0 24px 0;
        margin: 0;
    }

    .login .content .content-container .input-wrapper {
        padding: 0 48px 0 0;
    }

    .login .content .content-container .input-wrapper input {
        margin: 0 0 23px 0;
        height: 45px;
        border: 1px solid #9F9D9B;
        border-radius: 10px;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 45px;
        color: #000000;
        width: 100%;
    }


    .login .content .content-container input::placeholder {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 45px;
        color: #000000;
    }

    .login .content .content-container p.obligatorio {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        color: #000000;
        padding: 0 0 0 48px;
        text-align: left;
    }


    .login .content .content-container a.recovery {
        text-decoration: none;
        color: #000;
    }

    .login .content .content-container .buttons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin: 20px 0 63px 0;
    }

    .login .content .content-container .buttons a:first-child {
        display: block;
        width: 180px;
        height: 71px;
        text-align: center;
        background-color: #F2059F;
        line-height: 71px;
        color: #fff;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        text-decoration: none;
        margin: 0 12px 0 0;
        border-radius: 0px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .login .content .content-container .buttons a:first-child:hover {
        background-color: #d1047d;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(242, 5, 159, 0.4);
    }

    .login .content .content-container .buttons a:first-child:active {
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(242, 5, 159, 0.3);
    }

    /* LOGIN
    * -------------------------------------------------------------------------------------------------
    */

    .login-container {
        width: 100%;
        min-height: 100vh;
        background-color: rgba(0,0,0,.8);
        position: fixed;
        left: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .login-container .login-content {
        width: 700px;
        height: 550px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px;
    }

    .login-container .login-content .form-items {
        width: 461px;
        margin: 25px auto 0 auto;
    }

    .login-container .login-content .form-items label {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 25px;
        color: #000000;
    }

    .login-container .login-content .form-items input {
        height: 33px;
        line-height: 33px;
        border: 1px solid #000;
        border-radius: 4px;
    }

    .login-container .login-content .form-items div:nth-child(2) {
        margin: 25px 0 0 0;
    }


    .login-container .login-content .password-recovery {
        padding: 20px 0;
        text-align: center;
    }

    .login-container .login-content .password-recovery a {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        color: #000000;
    }



    .login-container .login-content .buttons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin: 0px 0 0 0;
    }

    .login-container .login-content .buttons a:first-child {
        display: block;
        width: 180px;
        height: 71px;
        text-align: center;
        background-color: #F2059F;
        line-height: 71px;
        color: #fff;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        text-decoration: none;
        margin: 0 12px 0 0;
        border-radius: 0px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .login-container .login-content .buttons a:first-child:hover {
        background-color: #d1047d;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(242, 5, 159, 0.4);
    }

    .login-container .login-content .buttons a:first-child:active {
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(242, 5, 159, 0.3);
    }

    /* HOME USER
    * -------------------------------------------------------------------------------------------------
    */

    .home-user {

    }

    header nav ul li.selected a {
        color:#F2059F;
        font-weight: bold;
    }

    header nav ul li.profile {

    }

    header nav ul li.profile a {
        width: 78px;
        height: 78px;
        background-color: #D9D9D9;
        border-radius: 100%;
        margin: 11px 0;
    }

    header nav ul li.profile a img {
        width: 100%;
        display: block;
        margin: 0;
        padding: 0;
    }

    .home-user .hero {
        width: 100%;
        height: 262px;
        background-image: url(../images/hero_home-user.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .home-user .content {
        width: 100%;
        min-height: 987px;
        background-image: url(../images/bg_content_home.png);
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }


    .home-user .content .content-container {
        width: 100%;
        min-height: 1110px;
        background-color: rgba(255, 255, 255, .7);
        margin: 30px 0;
    }

    .home-user .content .content-container h1 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 40px;
        line-height: 54px;
        color: #F2622E;
        padding: 42px 0 25px 0;
        margin: 0;
    }

    .home-user .content .content-container p {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 27px;
        color: #000000;
        padding: 63px 0;
    }

    .home-user .content .content-container p span {
        font-weight: bold;
        color: #F2059F;
    }

    .home-user .content .content-container h2 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 33px;
        color: #F2059F;
        padding: 0 0 30px 0;
    }

    .home-user .content .content-container .items {
        display: flex;
        flex-direction: column;
    }

    .home-user .content .content-container .items .item {
        display: flex;
        flex-direction: row;
        align-items: center;    
        margin: 0 0 100px 0;
    }

    .home-user .content .content-container .items .item h4 {
        margin: 0 0 0 25px;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 27px;
        color: #000000;
    }

    .home-user .content .content-container .items .item h4 span {
        font-weight: bold;
    }

    .home-user .content .content-container h5 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 24px;
        line-height: 33px;
        color: #F2622E;
        padding: 70px 0 40px 0;
        margin: 0;
    }

    /* HOME ONDEMAND
    * -------------------------------------------------------------------------------------------------
    */

    .home-ondemand .hero {
        width: 100%;
        height: 262px;
        background-image: url(../images/hero_ondemand.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .home-ondemand .content {
        width: 100%;
        min-height: 987px;
        background-image: url(../images/bg_content_home.png);
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }


    .home-ondemand .content .content-container {
        width: 100%;
        min-height: 1110px;
        background-color: rgba(255, 255, 255, .7);
        margin: 30px 0;
    }

    .home-ondemand .content .content-container h1 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 40px;
        line-height: 54px;
        color: #F2622E;
        padding: 42px 0 25px 0;
        margin: 0;
    }

    .home-ondemand .content .content-container p {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 27px;
        color: #000000;
        padding: 0 0 37px 0;
    }

    ul.modules {
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
    }

    ul.modules li {
        margin: 0 0 15px 0;
    }

    ul.modules li a {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 55px;
        background-color: #F2A516;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        line-height: 55px;
        color: #FFFFFF;
        padding: 0 0 0 32px;
        text-decoration: none;
    }

    ul.modules li.disabled a {
        background-color: #E3E3E3;
        color: #737373;
    }

    ul.modules li a .progress-circle {
        position: relative;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: conic-gradient(#F2059F 0deg, #fff 0deg);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 20px 0 0; 
        transition: background 0.5s ease;
    }
        
    ul.modules li.disabled a .progress-circle {
        display: none;
    }

    ul.modules li a .progress-circle::before {
        content: "";
        position: absolute;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background-color: orange;
    }
            
    ul.modules li a .progress-value {
        position: relative;
        font-size: 13px;
        font-weight: 600;
        color: #fff;
    }

    .home-ondemand .content .content-container h2 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 32px;
        line-height: 44px;
        text-align: center;
        color: #F2059F;
        padding: 15px 0 24px 0 ;
    }

    .home-ondemand .content .content-container ul.ranking {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .home-ondemand .content .content-container ul.ranking li {
        display: flex;
        flex-direction: row;
        background-color: #fff;
        justify-content: space-between;
        width: 100%;
        height: 58px;
        margin: 0 0 15px 0;
    }

    .home-ondemand .content .content-container ul.ranking li div {
        padding: 0 15px;
    }

    .home-ondemand .content .content-container ul.ranking li div p {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 18px;
        line-height: 58px;
        text-align: center;
        color: #000000;
    }

    .home-ondemand .content .content-container ul.ranking li div div.imagen {
        width: 50px;
        height: 50px;
        border-radius: 100%;
        overflow: hidden;
        margin: 4px 0 0 0;
        background-color: #D9D9D9;
    }


    .home-ondemand .content .content-container ul.ranking li:nth-child(1) {
        background-color: #FFD700;
    }

    .home-ondemand .content .content-container ul.ranking li:nth-child(2) {
        background-color: #C0C0C0;
    }

    .home-ondemand .content .content-container ul.ranking li:nth-child(3) {
        background-color: #CD7F32;
    }


    /* HOME ONDEMAND
    * -------------------------------------------------------------------------------------------------
    */

    .modulo-ondemand .hero {
        width: 100%;
        height: 262px;
        background-image: url(../images/hero_ondemand.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .modulo-ondemand .content {
        width: 100%;
        background-image: url(../images/bg_content_home.png);
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .modulo-ondemand .content .content-container {
        width: 100%;
        background-color: rgba(255, 255, 255, .7);
        margin: 30px 0;
        padding: 0 0 30px 0;
    }

    .modulo-ondemand .content .content-container h1 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 40px;
        line-height: 54px;
        color: #F2622E;
        padding: 42px 0;
        margin: 0;
    }

    .modulo-ondemand .content .content-container .modulo-container {
        width: 100%;
        min-height: 604px;
        border: 2px solid #F2622E;
        display: grid;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide a.iniciar {
        width: 384px;
        height: 60px;
        background: #F2059F;
        display: block;
        line-height: 60px;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        color: #FFFFFF;
        text-align: center;
        text-decoration: none;
        margin: 100px 0 0 0; 
    }

    .modulo-ondemand .content .content-container .modulo-container .slide .header {
        width: 840px;
        padding: 36px 0 30px 0px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide .header p.title {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 33px;
        color: #F2A516;
        text-align: left;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide .header p.points {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        line-height: 33px;
        color: #F2059F;
        text-align: right;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide ul.instructions {
        width: 840px;
        padding: 36px 0 0 15px;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide ul.instructions li {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 27px;
        color: #000000;
        margin: 0 0 30px 0;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide ul.instructions li span {
        font-weight: bold;
        color:#F2059F;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide .buttons {
        width: 840px;
        margin: 0 auto;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide .buttons a.next {
        width: 102px;
        height: 32px;
        background: #F2622E;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 32px;
        color: #FFFFFF;
        text-align: center;
        text-decoration: none;
        margin: 0 0 30px auto;
        display: block;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide .question {
        width: 840px;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        line-height: 27px;
        color: #000000; 
        text-align: left;   
        padding: 0 0 65px 0;
    }


    .modulo-ondemand .content .content-container .modulo-container .slide  ul.options {
        width: 840px;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        list-style: none;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide  ul.options li {
        margin: 0 0 50px 0;
        display: flex;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide  ul.options li input {
        width: 30px;
        height: 30px;
        margin: 0 25px 0 0;
        border: 2px solid #000;
        border-radius: 0;
        appearance: none;
        -webkit-appearance: none;
        outline: none;
        cursor: pointer;
        position: relative;
        vertical-align: middle;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide  ul.options li input:checked::after {

        content: '✓';
        position: absolute;
        color: white;
        font-size: 14px;
        font-weight: bold;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 30px;
        height: 30px;
        color: #000;
        text-align: center;
        font-size: 21px;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide  ul.options li label {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 30px;
        color: #000000;
    }

    .modulo-ondemand .content .content-container .modulo-container .progressbar {
        width: 840px;
        height: 15px;
        padding: 0 0 0 0;
        background-color: #E3E3E3;
        border-radius: 0;
        margin: 50px auto 50px auto;
    }

    .modulo-ondemand .content .content-container .modulo-container .progressbar .progress {
        width: 0;
        height: 15px;
        background-color: #F2059F;
        border-radius: 0;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide div.answer {
        width: 840px;
        display: flex;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide div.answer .correct_square {
        width: 30px;
        height: 30px;
        background-color: #6CB33F;
        display: inline-block;
        margin: 0 15px 0 0;
        border: 2px solid #000;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide div.answer .incorrect_square {
        width: 30px;
        height: 30px;
        background-color: #C82333;
        display: inline-block;
        margin: 0 15px 0 0;
        border: 2px solid #000;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide p.answer {
        width: 840px;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 24px;
        line-height: 33px;
        color: #000000;
        padding: 50px 0;
    }


    .modulo-ondemand .content .content-container .modulo-container .slide p.correct_title {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        line-height: 27px;
        color: #F2059F;
        text-align: left;
        padding: 30px 0 0 0;
        width: 840px;
    }


    .modulo-ondemand .content .content-container .modulo-container .slide_finalizar {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: start;
        width: 100%;
        margin: 0 auto;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide_finalizar div {
        width: 50%;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide_finalizar h1 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 33px;
        color: #F2A516;
        padding: 20px 0 60px 75px;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide_finalizar .avatar {
        width: 200px;
        height: 200px;
        border-radius: 100%;
        background-color: #D9D9D9;
        margin: 0 auto 40px auto;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide_finalizar p {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 33px;
        text-align: center;
        color: #000000;
    }

    .modulo-ondemand .content .content-container .modulo-container .slide_finalizar h2 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 32px;
        line-height: 44px;
        text-align: center;
        color: #F2059F;
        padding: 65px 0 0 0;
    }

    .modulo-ondemand .content .content-container .modulo-container ul.ranking {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 384px;
        margin: 20px auto 0 auto;
    }

    .modulo-ondemand .content .content-container .modulo-container ul.ranking li {
        display: flex;
        flex-direction: row;
        background-color: #fff;
        justify-content: space-evenly;
        width: 100%;
        height: 58px;
        margin: 0 0 15px 0;
        gap: 0 10px;
    }



    .modulo-ondemand .content .content-container .modulo-container ul.ranking li div {
        
        width: auto;
    }

    .modulo-ondemand .content .content-container .modulo-container ul.ranking li div:nth-child(1) {
    
    
    }

    .modulo-ondemand .content .content-container .modulo-container ul.ranking li div:nth-child(3) {
        width: 50%;
    
    }

    .modulo-ondemand .content .content-container .modulo-container ul.ranking li div:nth-child(3) p {
        text-align: left; 
    }

    .modulo-ondemand .content .content-container .modulo-container ul.ranking li div p {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 18px;
        line-height: 58px;
        text-align: center;
        color: #000000;
    }

    .modulo-ondemand .content .content-container .modulo-container li div div.imagen {
        width: 50px;
        height: 50px;
        border-radius: 100%;
        overflow: hidden;
        margin: 4px 0 0 0;
        background-color: #D9D9D9;
    }


    .modulo-ondemand .content .content-container .modulo-container ul.ranking li:nth-child(1) {
        background-color: #FFD700;
    }

    .modulo-ondemand .content .content-container .modulo-container ul.ranking li:nth-child(2) {
        background-color: #C0C0C0;
    }

    .modulo-ondemand .content .content-container .modulo-container ul.ranking li:nth-child(3) {
        background-color: #CD7F32;
    }

    .modulo-ondemand .content .content-container .modulo-container .button_container {
        width: 384px !important;
        display: flex;
        flex-direction: row;
        justify-content: end;
        margin: 0 auto;
        padding: 30px 0 0 0;
    }

    .modulo-ondemand .content .content-container .modulo-container .button_container a {
        width: 102px;
        height: 32px;
        background: #F2059F;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 32px;
        color: #FFFFFF;
        text-decoration: none;
        display: block;
        text-align: center;
    }

    /* HOME LIVE
    * -------------------------------------------------------------------------------------------------
    */

    .home-live .hero {
        width: 100%;
        height: 262px;
        background-image: url(../images/hero_live.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .home-live .content {
        width: 100%;
        background-image: url(../images/bg_content_home.png);
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .home-live .content .content-container {
        width: 100%;
        background-color: rgba(255, 255, 255, .7);
        margin: 30px 0;
        padding: 0 0 30px 0;
    }

    .home-live .content .content-container h1 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 40px;
        line-height: 54px;
        color: #F2622E;
        padding: 42px 0;
        margin: 0;
    }

    .home-live .content .content-container .modulo-container {
        width: 100%;
        min-height: 604px;
        border: 2px solid #F2622E;
        display: grid;
    }

    .home-live .content .content-container .modulo-container .slide {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .home-live .content .content-container .modulo-container .slide a.iniciar {
        width: 384px;
        height: 60px;
        background: #F2059F;
        display: block;
        line-height: 60px;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        color: #FFFFFF;
        text-align: center;
        text-decoration: none;
        margin: 100px 0 0 0; 
    }

    .home-live .content .content-container .modulo-container .slide .header {
        width: 840px;
        padding: 36px 0 30px 0px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .home-live .content .content-container .modulo-container .slide .header p.title {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 33px;
        color: #F2A516;
        text-align: left;
    }

    .home-live .content .content-container .modulo-container .slide .header p.points {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        line-height: 33px;
        color: #F2059F;
        text-align: right;
    }

    .modulo-live .content .content-container .modulo-container .slide ul.instructions {
        width: 840px;
        padding: 36px 0 0 15px;
    }

    .modulo-live .content .content-container .modulo-container .slide ul.instructions li {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 27px;
        color: #000000;
        margin: 0 0 30px 0;
    }

    .modulo-live .content .content-container .modulo-container .slide ul.instructions li span {
        font-weight: bold;
        color:#F2059F;
    }

    .modulo-live .content .content-container .modulo-container .slide .buttons {
        width: 840px;
        margin: 0 auto;
    }

    .modulo-live .content .content-container .modulo-container .slide .buttons a.next {
        width: 102px;
        height: 32px;
        background: #F2622E;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 32px;
        color: #FFFFFF;
        text-align: center;
        text-decoration: none;
        margin: 0 0 30px auto;
        display: block;
    }

    .modulo-live .content .content-container .modulo-container .slide .question {
        width: 840px;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        line-height: 27px;
        color: #000000; 
        text-align: left;   
        padding: 0 0 65px 0;
    }


    .modulo-live .content .content-container .modulo-container .slide  ul.options {
        width: 840px;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        list-style: none;
    }

    .modulo-live .content .content-container .modulo-container .slide  ul.options li {
        margin: 0 0 50px 0;
        display: flex;
    }

    .modulo-live .content .content-container .modulo-container .slide  ul.options li input {
        width: 30px;
        height: 30px;
        margin: 0 25px 0 0;
        border: 2px solid #000;
        border-radius: 0;
        appearance: none;
        -webkit-appearance: none;
        outline: none;
        cursor: pointer;
        position: relative;
        vertical-align: middle;
    }

    .modulo-live .content .content-container .modulo-container .slide  ul.options li input:checked::after {

        content: '✓';
        position: absolute;
        color: white;
        font-size: 14px;
        font-weight: bold;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 30px;
        height: 30px;
        color: #000;
        text-align: center;
        font-size: 21px;
    }

    .modulo-live .content .content-container .modulo-container .slide  ul.options li label {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 30px;
        color: #000000;
    }

    .modulo-live .content .content-container .modulo-container .progressbar {
        width: 840px;
        height: 15px;
        padding: 0 0 0 0;
        background-color: #E3E3E3;
        border-radius: 0;
        margin: 50px auto 50px auto;
    }

    .modulo-live .content .content-container .modulo-container .progressbar .progress {
        width: 0;
        height: 15px;
        background-color: #F2059F;
        border-radius: 0;
    }

    .modulo-live .content .content-container .modulo-container .slide div.answer {
        width: 840px;
        display: flex;
    }

    .modulo-live .content .content-container .modulo-container .slide div.answer .correct_square {
        width: 30px;
        height: 30px;
        background-color: #6CB33F;
        display: inline-block;
        margin: 0 15px 0 0;
        border: 2px solid #000;
    }

    .modulo-live .content .content-container .modulo-container .slide div.answer .incorrect_square {
        width: 30px;
        height: 30px;
        background-color: #C82333;
        display: inline-block;
        margin: 0 15px 0 0;
        border: 2px solid #000;
    }

    .modulo-live .content .content-container .modulo-container .slide p.answer {
        width: 840px;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 24px;
        line-height: 33px;
        color: #000000;
        padding: 50px 0;
    }


    .modulo-live .content .content-container .modulo-container .slide p.correct_title {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        line-height: 27px;
        color: #F2059F;
        text-align: left;
        padding: 30px 0 0 0;
        width: 840px;
    }


    .modulo-live .content .content-container .modulo-container .slide_finalizar {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: start;
        width: 100%;
        margin: 0 auto;
    }

    .modulo-live .content .content-container .modulo-container .slide_finalizar div {
        width: 50%;
    }

    .modulo-live .content .content-container .modulo-container .slide_finalizar h1 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 33px;
        color: #F2A516;
        padding: 20px 0 60px 75px;
    }

    .modulo-live .content .content-container .modulo-container .slide_finalizar .avatar {
        width: 200px;
        height: 200px;
        border-radius: 100%;
        background-color: #D9D9D9;
        margin: 0 auto 40px auto;
    }

    .modulo-live .content .content-container .modulo-container .slide_finalizar p {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 33px;
        text-align: center;
        color: #000000;
    }

    .modulo-live .content .content-container .modulo-container .slide_finalizar h2 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 32px;
        line-height: 44px;
        text-align: center;
        color: #F2059F;
        padding: 65px 0 0 0;
    }

    /* FOOTER
    * -------------------------------------------------------------------------------------------------
    */
    footer {
        width: 100%;
        height: 90px;
        background-color: #fff;
        border-top: 2px solid #F2059F;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    footer p {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 13px;
        line-height: 18px;
        text-align: center;
        color: #000000;
        margin: 0;
        padding: 0;
    }
}

@media (min-width: 1200px) {  }

@media (min-width: 1400px) { 

}
