@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');
* {
    margin: 0;
    padding: 0;
}
*:focus {
    outline: 0;
}
html, body, h1, h2, h3, h4, h5, h6, p, span, ol, ul, li, pre, code, address, form, fieldset, input, textarea {
    padding: 0;
    margin: 0;
    font-family: Roboto, monospace;
}
ol {
    margin-left: 1.4em;
    list-style: decimal;
}
ul {
    margin-left: 1.4em;
    list-style: square;
}
img {
    border: 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
::-webkit-scrollbar-button {
    display: block;
    height: 0px;
    border-radius: 0px;
    background-color: #AAA;
}
::-webkit-scrollbar-button:hover {
    background-color: #AAA;
}
::-webkit-scrollbar-thumb {
    background-color: #CCC;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #CCC;
}
::-webkit-scrollbar-track {
    background-color: #efefef;
}
::-webkit-scrollbar-track:hover {
    background-color: #CCC;
}
::-webkit-scrollbar {
    width: 5px;
}
input::-webkit-input-placeholder {
    font-family: Roboto, monospace;
    font-size: 16px;
}
input::-moz-placeholder {
    font-family: Roboto, monospace;
    font-size: 16px;
}
body {
    width: 100%;
    min-width: 320px;
    margin: 0 auto;
}
.contendorPrincipal {
    transition: filter .25s;
}
.barraInicio {
    transition: filter .25s;
}
.contendorNewsletter {
    box-sizing: border-box;
    width: 100%;
    display: none;
    padding: 20px;
    justify-content: center;
    background: linear-gradient(to right, rgba(167, 217, 240, 1) 0%, rgba(0, 145, 202, 1) 100%);
}
#menuContendor {
    display: block;
    width: 1366px;
    height: 100%;
}
#classRegular {
    width: 100%;
    height: auto;
}
#cajaTituloNewsletter {
    width: 100%;
    height: auto;
    float: left;
    margin: 0 0 8px;
    text-align: center;
}
#cajaTituloNewsletter span {
    font-size: 2em;
    font-weight: 700;
    color: white;
}
#cajaSubTitulo {
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 15px;
    text-align: center;
}
#cajaSubTitulo span {
    font-size: 1.5em;
    font-weight: 400;
    color: white;
}
#cajaBuscador {
    margin: 0 0 12px;
    width: 100%;
    height: 50px;
    background: white;
    border-radius: 52px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 5px 0 #585858a1;
}
#contenrCajaBuscador {
    height: 100%;
    width: calc(100% - 42px);
    border-radius: 52px;
    margin: 0 0 0 42px;
}
#formNewsletter {
    height: 100%;
    width: 100%;
}
#textoemailnews {
    height: 100%;
    width: 850px;
    border: none;
    padding-left: 10px;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: #777777;
    float: left;
    background: none;
}
#contentBoton {
    height: 100%;
    width: 272px;
    float: right;
    display: flex;
    align-items: center;
}
#botonEnviar {
    width: 100%;
    height: 100%;
}
#textoError {
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: red;
}
#cajaCheck {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
#cajaCheck input {
    margin-right: 5px;
    transform: scale(1.4);
}
#cajaCheck span, #cajaCheck a {
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
    color: white;
}
#botonSubmitNewslewtter {
    font-size: 20px;
    border-radius: 0 52px 52px 0;
    width: 100%;
    height: 100%;
    border: none;
    color: white;
    cursor: pointer;
    background: -moz-linear-gradient(to right, #e94584, #fb9066);
    background: -webkit-linear-gradient(to right, #e94584, #fb9066);
    background: -o-linear-gradient(to right, #e94584, #fb9066);
    background: -ms-linear-gradient(to right, #e94584, #fb9066);
    background: linear-gradient(to right, #e94584, #fb9066);
}
#botonSubmitNewslewtter:hover {
    background: -moz-linear-gradient(to right, #f794ba, #fb9066);
    background: -webkit-linear-gradient(to right, #f794ba, #fb9066);
    background: -o-linear-gradient(to right, #f794ba, #fb9066);
    background: -ms-linear-gradient(to right, #f794ba, #fb9066);
    background: linear-gradient(to right, #f794ba, #fb9066);
}
.barraFooter {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    box-shadow: inset 0 0 10px 0 #dbdbdb;
}
@-webkit-keyframes arrowMove {
    0% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(-5px);
    }
}
.scrollButton {
    position: absolute;
    opacity: 1;
    top: 0;
    z-index: 10;
    width: 100px;
    height: 100%;
    background: none;
    border: none;
    cursor: pointer;
}
.scrollButton:disabled,
.scrollButton[disabled] {
    cursor: not-allowed;
    opacity: 0.2;
}
.scrollButton > i {
    color: #fb7a48;
    text-shadow: 0 0 2px black;
    -webkit-animation: arrowMove 1.5s infinite alternate 1s ease-in-out;
    -moz-animation: arrowMove 1.5s infinite alternate 1s ease-in-out;
    -o-animation: arrowMove 1.5s infinite alternate 1s ease-in-out;
    animation: arrowMove 1.5s infinite alternate 1s ease-in-out;
    font-size: 75px;
    -webkit-transition: font-size .5s, color .25s, text-shadow .25s, transform .25s;
    -moz-transition: font-size .5s, color .25s, text-shadow .25s, transform .25s;
    -ms-transition: font-size .5s, color .25s, text-shadow .25s, transform .25s;
    -o-transition: font-size .5s, color .25s, text-shadow .25s, transform .25s;
    transition: font-size .5s, color .25s, text-shadow .25s, transform .25s;
}
.scrollButton:hover > i {
    transform: translateX(-10px);
    font-size: 100px;
    color: #e94583;
    text-shadow: 0 0 2px black;
}
.scrollButtonTitulo {
    opacity: 1;
    z-index: 10;
    width: 100px;
    height: 100%;
    background: none;
    border: none;
    cursor: pointer;
    float: left;
    display: none;
}
.scrollButtonTitulo > i {
    color: #fb7a48;
    text-shadow: 0 0 2px black;
    -webkit-animation: arrowMove 1.5s infinite alternate 1s ease-in-out;
    -moz-animation: arrowMove 1.5s infinite alternate 1s ease-in-out;
    -o-animation: arrowMove 1.5s infinite alternate 1s ease-in-out;
    animation: arrowMove 1.5s infinite alternate 1s ease-in-out;
    font-size: 55px;
    -webkit-transition: font-size .5s, color .25s, text-shadow .25s, transform .25s;
    -moz-transition: font-size .5s, color .25s, text-shadow .25s, transform .25s;
    -ms-transition: font-size .5s, color .25s, text-shadow .25s, transform .25s;
    -o-transition: font-size .5s, color .25s, text-shadow .25s, transform .25s;
    transition: font-size .5s, color .25s, text-shadow .25s, transform .25s;
}
.contendorCarrusel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 434px;
    box-shadow: inset 0 0 20px 0 #00000054;
    background-size: cover;
}
.contedorCentradoCarrusel {
    width: 1366px;
    height: 100%;
    background-color: transparent;
    display: flex;
    flex-flow: column;
}
.divContentCarrusel2 {
    width: 98%;
    height: auto;
    float: left;
}
.divContentCarrusel {
    width: 98%;
    height: auto;
    float: left;
    flex: auto;
    display: flex;
    align-items: center;
}
.cajaTextoCarrusel {
    margin: 30px 0 20px;
    width: 800px;
    height: 188px;
}
.cajaTextoCarrusel span {
    font-size: 59px;
    line-height: 80px;
    color: #E94683;
    font-weight: 700;
    text-shadow: 0 3px 6px darkgrey;
}
.cajaBotonCarrusel {
    width: 272px;
    height: 64px;
    margin-bottom: 35px;
}
.botonETCCarrusel {
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(270deg, rgb(250, 94, 33), rgb(233, 69, 132));
    background: -webkit-linear-gradient(270deg, rgb(250, 94, 33), rgb(233, 69, 132));
    background: -webkit-linear-gradient(270deg, rgb(250, 94, 33), rgb(233, 69, 132));
    background: -o-linear-gradient(270deg, rgb(250, 94, 33), rgb(233, 69, 132));
    background: -ms-linear-gradient(270deg, rgb(250, 94, 33), rgb(233, 69, 132));
    background: linear-gradient(270deg, rgb(250, 94, 33), rgb(233, 69, 132));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgb(250, 94, 33)', endColorstr='#0091ca', GradientType=1);
    cursor: pointer;
    box-shadow: none;
    border: none;
    border-radius: 32px;
    font-family: Roboto, monospace;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: white;
    transition: background .25s;
}
.botonETCCarrusel:hover {
    background: -moz-linear-gradient(270deg, rgb(251, 144, 102), rgb(247, 148, 186));
    background: -webkit-linear-gradient(270deg, rgb(251, 144, 102), rgb(247, 148, 186));
    background: -webkit-linear-gradient(270deg, rgb(251, 144, 102), rgb(247, 148, 186));
    background: -o-linear-gradient(270deg, rgb(251, 144, 102), rgb(247, 148, 186));
    background: -ms-linear-gradient(270deg, rgb(251, 144, 102), rgb(247, 148, 186));
    background: linear-gradient(270deg, rgb(251, 144, 102), rgb(247, 148, 186));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgb(250, 94, 33)', endColorstr='#f794ba', GradientType=1);
}
.cajaSelectoresBusqueda {
    margin: 0;
    width: 100%;
    height: 55px;
    display: block;
    background-color: #ffffff;
    border-radius: 52px;
    box-shadow: 0 0 5px 0 #585858a1;
}
.contentCajaBusqueda {
    width: 1294px;
    height: 100%;
    margin: 0px 0px 0px 45px;
    border-radius: 35px;
}
.cajaDentroBusqueda {
    width: 192px;
    height: 100%;
    float: left;
    border-right: 1px solid #dfdfdf;
    font-size: 15px;
}
.contentSelectorBusqueda {
    width: 100%;
    height: 100%;
}
.cajaTituloCajaCarrusel {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.divContenedorSelector {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    cursor: pointer;
}
.divContenedorTextoSelector {
    float: left;
    height: 100%;
    width: calc(100% - 20px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.divContenedorFlechaSelector {
    float: left;
    height: 100%;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.divContenedorFlechaSelector i {
    color: #807777;
}
.textoBotonBusqueda {
    color: #777777;
    text-align: center;
}
.divBarraBusqueda {
    height: 100%;
    width: 715px;
    float: left;
}
.divInputBusqueda {
    width: calc(100% - 272px);
    height: 100%;
    float: left;
    border: none;
}
.divInputBusqueda input {
    margin: 0;
    height: 100%;
    width: 430px;
    border: none;
    padding-left: 10px;
    color: #777777;
    font-size: 15px;
}
.divInputBusqueda input::placeholder {
    font-size: 15px;
}
.contentBotonBusqueda {
    width: 272px;
    height: 100%;
    float: left;
    display: flex;
    align-items: center;
}
.botonBusquedaCarrusel {
    width: 272px;
    height: 55px;
}
.botonBuscarCursoCarrusel {
    width: 100%;
    height: 100%;
    background: rgba(167, 217, 240, 1);
    background: -moz-linear-gradient(left, rgba(167, 217, 240, 1) 0%, rgba(0, 145, 202, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(167, 217, 240, 1) 0%, rgba(0, 145, 202, 1) 100%);
    background: -o-linear-gradient(left, rgba(167, 217, 240, 1) 0%, rgba(0, 145, 202, 1) 100%);
    background: -ms-linear-gradient(left, rgba(167, 217, 240, 1) 0%, rgba(0, 145, 202, 1) 100%);
    background: linear-gradient(to right, rgba(167, 217, 240, 1) 0%, rgba(0, 145, 202, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(167,217,240,1)', endColorstr='#0091ca', GradientType=1);
    cursor: pointer;
    box-shadow: none;
    border: none;
    border-radius: 0 32px 32px 0;
    font-family: Roboto, monospace;
    font-size: 15px;
    line-height: 24px;
    color: white;
    transition: background .25s;
}
.botonBuscarCursoCarrusel:hover {
    background: rgba(167, 217, 240, 1);
    background: -moz-linear-gradient(left, rgba(167, 217, 240, 1) 0%, rgba(59, 200, 255, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(167, 217, 240, 1) 0%, rgba(59, 200, 255, 1) 100%);
    background: -o-linear-gradient(left, rgba(167, 217, 240, 1) 0%, rgba(59, 200, 255, 1) 100%);
    background: -ms-linear-gradient(left, rgba(167, 217, 240, 1) 0%, rgba(59, 200, 255, 1) 100%);
    background: linear-gradient(to right, rgba(167, 217, 240, 1) 0%, rgba(59, 200, 255, 1) 100%);
}
.cajaD {
    width: 100%;
    overflow: scroll;
    height: auto;
    max-height: 200px;
    background-color: #ffffff;
    z-index: 125;
    position: relative;
    overflow-x: hidden;
    box-shadow: 0 13px 10px 0 #00000038;
}
.cajaDN {
    display: none;
}
.divBuscadorCla {
    width: 100%;
    padding: 15px 0;
    justify-content: center;
    box-shadow: 1px 1px 0 darkgrey;
    background-color: #ffffff;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}
.divBuscadorCla:hover {
    color: #ffffff;
}
.contendorMayorCursosTituloBotones {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contendorResponsiveCentrado {
    width: 100%;
    height: 100%;
}
.contendorCursosRelacionados {
    background-color: #f5f5f5;
    box-shadow: inset 0 0 10px 0 #dbdbdb;
    width: 100%;
    height: 100%;
}
.contendorTituloBotones {
    width: 717px;
    margin: 30px 10% 0 10%;
    position: relative;
    float: left;
}
.cajaBotonesDos {
    width: 100%;
    height: 100%;
    float: left;
}
.tituloRR {
    width: 100%;
    height: 100%;
    float: left;
}
.divTitulosIndex {
    height: 44px;
    width: 100%;
    margin-bottom: 7px;
}
.divTitulosIndex span {
    font-size: 25px;
    font-weight: bold;
    color: #4F4D4E;
    width: 100%;
}
.barraTitulo {
    width: 390px;
    height: 10px;
    background: linear-gradient(270deg, #ffffff00, #fa5e21, #e94584, #e9458400);
}
.botonesRR {
    width: 120px;
    height: 100%;
    float: left;
}
.contendorBarraBotones {
    width: 100%;
    background-color: transparent;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.botonesPagina {
    float: right;
}
.contedorCursosMasivo {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    flex-flow: wrap;
}
.contedorCursosMasivo > fragment-curso {
    margin: 20px;
}
.divCajaComunFragemntos {
    width: 100%;
    display: grid;
    grid-gap: 50px;
    grid-template-columns: repeat(999999, 300px);
    padding: 50px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    background: none;
}
.divCajaComunFragemntos::before,
.divCajaComunFragemntos::after {
    content: "";
}
.divCajaCasosExito {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.cajaFragemtnos {
    width: auto;
    height: 100%;
    display: block;
    padding: 50px 10% 0 10%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.textoDibujo {
    background: #FFFFFF;
    width: 50px;
    height: 50px;
    color: #E0E6ED;
    border-radius: 50%;
    border: 2px solid;
    padding: 8px;
    float: left;
    cursor: pointer;
    box-shadow: 0 3px 6px #0003;
}
.textoDibujo:hover {
    background: #ebebeb;
}
.contedorCursosSectorProfesional {
    width: 100%;
    float: left;
    position: relative;
}
.boxSectoresScroll {
    width: 100%;
    display: grid;
    grid-gap: 50px;
    grid-template-columns: repeat(999999, 300px);
    padding: 50px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}
.boxSectoresScroll::before,
.boxSectoresScroll::after {
    content: "";
}
.contenedorDatos {
    width: 100%;
    height: 336px;
    display: flex;
    justify-content: center;
    margin-top: 60px;
    background: #6abfe2;
    box-shadow: inset 0px 0px 20px 0px #007bad;
}
.contedorCursosAlumnos {
    height: 266px;
    width: 100%;
    position: relative;
}
.divCajaComunFragmentosExito {
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: auto;
    float: left;
}
.cajaFragmentosExito {
    height: 100%;
    margin: 0;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(.96);
    }
    25% {
        opacity: 0;
        transform: scale(.96);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.popUpTotal {
    background: white;
    width: 478px;
    height: 334px;
    margin: 0 auto;
    transition: box-shadow 1s;
    box-shadow: 0 0 220px 0 black;
    animation: fadeIn .15s linear;
}
.divPopUP {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
}
.cajaETuCurso {
    width: 100%;
    height: 49px;
    position: relative;
}
.cajaTituloPop {
    width: 100%;
    height: 100%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    font-size: 12px;
    color: #B2B2B2;
    position: absolute;
    left: 0;
    top: 0;
}
.cajaCerrarDesplegable {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    width: 53px;
    float: left;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    color: rgb(202, 209, 217);
    transition: color .25s;
    cursor: pointer;
}
.cajaCerrarDesplegable:hover {
    color: black;
}
.cajaPaso {
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.textoPaso {
    font-weight: bold;
    font-size: 20px;
}
.cajaBotones {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.botonDerecho {
    margin: 5px;
    width: 136px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    cursor: pointer;
    border-radius: 10px;
    text-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 0 #00000059;
    background-color: white;
    transform: translateY(0px);
    transition: box-shadow .5s, background-color .25s, text-shadow .25s, transform .5s;
}
.botonDerecho:hover {
    background-color: #f2f2f2;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.24);
}
.botonIzquierdo {
    margin: 5px;
    width: 136px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    cursor: pointer;
    text-shadow: 1px 1px 6px white;
    border-radius: 10px;
    transform: translateY(-10px);
    transition: box-shadow .5s, background-color .25s, text-shadow .25s, transform .5s;
    box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.63);
    background-color: rgb(253, 71, 0);
}
.textoBotonIzquierdo {
    font-weight: bold;
    font-size: 14px;
}
.cajaBotonSiguiente {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.botonSIguiente {
    border-radius: 8px;
    padding-left: 20px;
    padding-right: 20px;
    width: 169px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(167, 217, 240, 1);
    background: -moz-linear-gradient(left, rgba(167, 217, 240, 1) 0%, rgba(0, 145, 202, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(167, 217, 240, 1) 0%, rgba(0, 145, 202, 1) 100%);
    background: -o-linear-gradient(left, rgba(167, 217, 240, 1) 0%, rgba(0, 145, 202, 1) 100%);
    background: -ms-linear-gradient(left, rgba(167, 217, 240, 1) 0%, rgba(0, 145, 202, 1) 100%);
    background: linear-gradient(to right, rgba(167, 217, 240, 1) 0%, rgba(0, 145, 202, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(167,217,240,1)', endColorstr='#0091ca', GradientType=1);
    cursor: pointer;
}
.botonSIguiente:hover {
    background: rgba(167, 217, 240, 1);
    background: -moz-linear-gradient(left, rgba(167, 217, 240, 1) 0%, rgb(98, 193, 230) 100%);
    background: -webkit-linear-gradient(left, rgba(167, 217, 240, 1) 0%, rgb(98, 193, 230) 100%);
    background: -o-linear-gradient(left, rgba(167, 217, 240, 1) 0%, rgb(98, 193, 230) 100%);
    background: -ms-linear-gradient(left, rgba(167, 217, 240, 1) 0%, rgb(98, 193, 230) 100%);
    background: linear-gradient(to right, rgba(167, 217, 240, 1) 0%, rgb(98, 193, 230) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(167,217,240,1)', endColorstr='#0091ca', GradientType=1);
}
.textoBotonSiguiente {
    font-weight: bold;
    font-size: 14px;
    color: white;
}
.contentPopUp {
    width: 100%;
    height: calc(100% - 205px);
    float: left;
    display: flex;
    align-items: center;
    flex: auto;
}
.cajaBotones2 {
    width: 260px;
    height: auto;
    margin: 0 auto;
}
.barritaCheckbox {
    width: 100%;
    height: auto;
    margin: 15px 0px;
}
.cajaTotalNumeros {
    width: 140px;
    height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.contenedorMasyMenos {
    width: 39px;
    height: 39px;
    cursor: pointer;
    color: #00000091;
    transition: color .25s, text-shadow .25s;
}
.contenedorMasyMenos:hover {
    color: black;
    text-shadow: 0 0 15px #0593cb;
}
.contenedorMasyMenos > i {
    font-size: 39px;
}
.cajaNumero {
    float: left;
    width: 64px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inputEdadPopUp {
    width: 100%;
    height: 100%;
    border: none;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
}
.cajaBotones3 {
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    border-color: #B2B2B2;
    border-width: 2px;
    border-style: solid;
    position: relative;
    cursor: pointer;
}
.boxTituloComunidadPop {
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    width: calc(100% - 45px);
    height: 60px;
    margin: 0;
    float: left;
}
.cajaFlechitaDesplegable {
    display: flex;
    width: 45px;
    height: 60px;
    margin: 0;
    align-items: center;
    justify-content: center;
}
.comunidadesPopUpAbrir {
    height: auto;
    max-height: 270px;
    float: left;
    position: absolute;
    left: 0;
    width: 262px;
    overflow: hidden scroll;
    display: block;
}
.comunidadesPopUpCerrar {
    display: none;
}
.divSubirTop {
    right: 14px;
    bottom: 60px;
    position: fixed;
    border-radius: 30%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    z-index: 99999;
    background-color: #fa8c67;
    transition: right .25s;
    cursor: pointer;
    box-shadow: 0 0 6px 0 #0000005c;
}
.divSubirTop:hover {
    background-color: #f5796e;
}
@media screen and (max-width: 800px) {
    .scrollButtonTitulo {
        display: block;
    }
    .scrollButton {
        display: none;
    }
    .boxSectoresScroll {
        overflow: scroll;
    }
    .divCajaComunFragemntos {
        overflow-x: scroll;
    }
    .barraTitulo {
        width: 250px;
        height: 9px;
        margin: auto;
    }
    .contendorTituloBotones {
        width: calc(100% - 30px - 10%);
    }
    .tituloRR {
        width: 100%;
    }
    .contendorPrincipal {
        padding-top: 104px;
    }
    .contendorMenuHambur {
        height: auto;
        width: 100%;
        position: fixed;
        z-index: 5000;
        margin-top: -6px;
    }
    #menuContendor {
        width: 95%;
    }
    #cajaTituloNewsletter {
        margin: 22.33px 0px 4px;
    }
    #cajaTituloNewsletter span {
        font-size: 24px;
        line-height: 29px;
    }
    #cajaSubTitulo {
        margin-bottom: 17.67px;
    }
    #cajaSubTitulo span {
        font-size: 18px;
        line-height: 22px;
    }
    #cajaBuscador {
        margin: 0 0 19px;
        height: 40px;
    }
    #contenrCajaBuscador {
        height: 100%;
        width: 100%;
        margin: 0 0 0 10px;
    }
    #textoemailnews {
        width: calc(100% - 140px);
        font-size: 16px;
        line-height: 19px;
    }
    #contentBoton {
        width: 104.75px;
    }
    #botonSubmitNewslewtter {
        font-size: 14px;
    }
    #textoError {
        font-size: 11px;
        line-height: 0px;
        margin-left: 10px;
    }
    #cajaCheck {
        width: 300px;
        height: auto;
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    #cajaCheck a {
        margin-left: -6px;
    }
    .contendorCarrusel, .botonesRR {
        display: none;
    }
    .divTitulosIndex {
        height: 29px;
        margin-bottom: 11px;
        display: flex;
    }
    .divTitulosIndex span {
        font-size: 24px;
        line-height: 29px;
        margin: 0;
        width: 100%;
        text-align: center;
    }
    .contenedorDatos {
        height: 273px;
        margin-top: 0px;
    }
    .contedorCursosAlumnos {
        height: 300px;
    }
    .divCajaComunFragmentosExito {
        overflow-y: hidden;
        overflow-x: scroll;
    }
    .popUpTotal {
        width: 95%;
        height: auto;
    }
    .textoPaso {
        font-size: 18px;
    }
}
@media screen and (min-width: 801px) and (max-width: 1200px) {
    #menuContendor {
        width: 750px;
    }
    #cajaTituloNewsletter {
        margin: 20px 0 3px;
    }
    #cajaTituloNewsletter span {
        font-size: 36px;
        line-height: 40px;
    }
    #cajaSubTitulo {
        margin-bottom: 30px;
    }
    #cajaSubTitulo span {
        font-size: 26px;
        line-height: 30px;
    }
    #cajaBuscador {
        margin: 0 0 35px;
        height: 60px;
    }
    #contenrCajaBuscador {
        height: 45px;
        width: calc(100% - 35px);
        margin: 0px 8px 0px 27px;
    }
    #textoemailnews {
        width: 500px;
        font-size: 18px;
    }
    #contentBoton {
        width: 150px;
    }
    #botonEnviar {
        height: 45px;
    }
    #botonSubmitNewslewtter {
        font-size: 16px;
    }
    #textoError {
        font-size: 12px;
        line-height: 0px;
        margin-left: 10px;
    }
    .contendorCarrusel {
        height: 534px;
        background-size: cover;
        background-position: center;
    }
    .contedorCentradoCarrusel {
        width: 750px;
    }
    .cajaTextoCarrusel {
        width: 700px;
        height: auto;
    }
    .cajaTextoCarrusel span {
        font-size: 59px;
        line-height: 75px;
    }
    .cajaBotonCarrusel {
        width: 214.52px;
        height: 50.47px;
        margin-bottom: 100px;
    }
    .contentCajaBusqueda {
        width: 716px;
        margin: 0px 0px 0px 25px;
    }
    .cajaDentroBusqueda {
        width: 120px;
    }
    .divBarraBusqueda {
        width: 353px;
    }
    .divInputBusqueda {
        width: calc(100% - 162px);
    }
    .divInputBusqueda input {
        width: 185px;
        padding-left: 5px;
        font-size: 15px;
    }
    .contentBotonBusqueda {
        width: 145px;
        float: right;
    }
    .divTitulosIndex {
        height: 40px;
        margin-bottom: 16px;
    }
    .divTitulosIndex span {
        font-size: 34px;
        line-height: 38px;
        width: 100%;
        text-align: center;
    }
    .contenedorDatos {
        height: 280px;
        margin-top: 40px;
    }
    .contedorCursosAlumnos {
        height: 240px;
    }
}
@media screen and (min-width: 1201px) and (max-width: 1399px) {
    #menuContendor {
        width: 1135px;
    }
    #textoemailnews {
        width: 720px;
    }
    .contedorCentradoCarrusel {
        width: 1135px;
    }
    .contendorCarrusel {
        background-size: cover;
        background-position: center;
    }
    .contentCajaBusqueda {
        width: 1080px;
        margin: 0px 0px 0px 35px;
    }
    .divBarraBusqueda {
        height: 100%;
        width: 501px;
        float: left;
    }
    .divInputBusqueda {
        width: calc(100% - 214px);
    }
    .divInputBusqueda input {
        width: 250px;
    }
    .contentBotonBusqueda {
        width: 214px;
    }
    .botonBusquedaCarrusel {
        width: 214px;
    }
    .contenedorDatos {
        height: 320px;
        margin-top: 40px;
    }
    .contedorCursosAlumnos {
        height: 240px;
    }
}
#divLoading {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 50000000000000;
    margin: 0px;
    padding: 0px;
    border: none;
    display: flex;
    overflow: hidden;
}
.loader {
    font-size: 10px;
    margin: 20% auto;
    text-indent: -9999em;
    width: 11em;
    height: 11em;
    border-radius: 50%;
    background: #ffffff;
    background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    position: relative;
    -webkit-animation: load3 1.4s infinite linear;
    animation: load3 1.4s infinite linear;
}
.loader:before {
    width: 50%;
    height: 50%;
    background: #FFF;
    border-radius: 100% 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
}
.loader:after {
    background: #0dcecb;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
@-webkit-keyframes load3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes load3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}