* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    background: linear-gradient(45deg,#fff,#eee);
    /* margin: env(safe-area-inset-top, 0px)
env(safe-area-inset-right, 0px)
env(safe-area-inset-bottom, 0px)
env(safe-area-inset-left, 0px); */
    /* overflow: hidden; */
}
h1, h2 {
    font-family: 'Open Sans', sans-serif;
}
h3 {
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    margin-bottom: 24px;
}
h4 {
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    margin-bottom: 24px;
}
a {
    text-decoration: none;
}
p {
    font-size: 1.4em;
    font-weight: 300;
    color: #333;
}
::selection {
    background: var(--primario);
    color: white;
}
/* article {
    padding: 30px 0;
} */
article,
article p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
	font-weight: 300;
    color: #333;
}
article p span.destacado {
    font-weight: 400;
    color: var(--primario);
}
article h3 {
    font-size: 1.6em;
    font-weight: 400;
    color: var(--primario);
    margin-bottom: 0;
    line-height: 24px;
}
ul {
    margin-bottom: 30px;
}
ul li {
    font-size: 1.6rem;
    font-weight: 300;
    color: #333;
    line-height: 24px;
    margin-left: 24px;
    position: relative;
}
td ul li {
	font-size: 1.6rem;
}
ul li:before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    background: #333;
    position: absolute;
    top: 11px;
    left: -12px;
}
.desarrollado-por {
    display: flex;
    min-width: 233px;
    text-align: right;
    align-items: center;
}
.desarrollado-por img {
    margin-right: 10px;
    width: 29px;
    height: 18px;
}
.flecha-subir {
    position: fixed;
    top: calc( 100vh - 180px);
    right: 0;
    padding: 10px;
    background: var(--primario);
    color: #fff;
    font-size: 2em;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all ease .3s;
    z-index:10;
}
.flecha-subir.activo {
    opacity: 1;
    pointer-events: auto;
}
.flecha-subir:hover {
    opacity: 7;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.flecha-subir i {
    display: flex;
}
.form__grupo .text, .form__grupo select, .form__grupo textarea {
    font-size: 14px;
    border-radius: 5px;
}
:root {
    --primario: #2A518C;
    --primario-hover: #073578;
    --primario-texto: #fff;
    --primario-hover-texto: #fff;
    --secundario: #2367D0;
    --secundario-hover: #4786e7;
    --secundario-texto: #fff;
    --secundario-hover-texto: #fff;
    --terciario: #d7d7d9;
    --terciario-hover: #b0b0b1;
    --terciario-texto: #333;
    --terciario-hover-texto: #333;
    --light-blue:#2A518C;
}
/* :root {
    --primario:#2A518C;
    --primario-hover:#387fea;
    --primario-texto: #fff;
    --primario-hover-texto: #fff;

    --secundario: #408E5C;
    --secundario-hover:#43a266;
    --secundario-texto: #fff;
    --secundario-hover-texto: #fff;
    
    --terciario: #d7d7d9;
    --terciario-hover:#b0b0b1;
    --terciario-texto: #333;
    --terciario-hover-texto:#333;
} */
.primario {
    background: var(--primario) !important;
    border: 1px solid var(--primario) !important;
}
.secundario {
    background: var(--secundario) !important;
    border: 1px solid var(--secundario) !important;
}
.primario_borde{
    background: #fff !important;
    color: var(--primario) !important;
    border: 1px solid var(--primario) !important;
}
.secundario_borde {
    background: #fff !important;
    border: 1px solid var(--secundario) !important;
    color: var(--secundario) !important;
}
.texto-primario {
    color: var(--primario) !important;
}
.texto-secundario {
    color: var(--secundario) !important;
}
/* LOGIN */
.img-login {
	height: 100vh;
	width: 100%;
	background: url(/img/fondo_login.jpg) no-repeat right center;
	background-size: 500%;
	background-position-x: left;
}
.login-box {
    display: flex;
    max-width: 330px;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 60px 26px 20px;
    background: #fff;
}
.login {
    display: flex;
}
form#login-form,
form#recuperar_clave-form {
    width: 100%;
}
.logo {
    text-align: center;
    margin-bottom: 50px;
}
.form__grupo {
    margin-bottom: 30px;
}
.form__grupo label {
    font-style: normal;
    font-weight: 300;
    font-size: 1.4em;
    line-height: 19px;
    color: #333333;
    margin-bottom: 6px;
    -webkit-transition: all ease 200ms;
    transition: all ease 200ms;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
}

#login input.text {
    width: 100%;
    box-sizing: border-box;
    height: auto !important;
    height: 35px;
    border: 1px
    solid #ddd;
    margin-top: 5px;
    padding-left: 8px;
    padding-top: 5px;
    color: #666;
}
#entrar.btn {
    width: 100%;
    height: 40px;
    font-size: 16px;
    font-weight: 300;
}
.btn {
    font-weight: 300;
    border-radius: 5px;
    font-size: 1.5rem;
}
.stores {
    width: 100%;
}
.stores p {
    font-style: normal;
    font-weight: 300;
    font-size: 1.2em;
    line-height: 14px;
    color: #333333;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
}
.items-stores {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    flex-wrap: wrap;
}
.items-stores img {
    max-height: 35px;
    transition: all ease .3s;
}
.items-stores img:hover {
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}
.link_form {
    display: block;
    margin-top: 20px;
    text-align: center;
    font-style: normal;
    font-weight: 300;
    font-size: 1.4em;
    color: #333333;
    text-decoration: none;
    transition: all ease .3s;
}
.link_form:hover {
    text-decoration: underline;
}

.preloader-general {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(12,68,151,.5);
    z-index: 9999;
}

.preloader-general::before {
	content: '';
    display: block;
    width: 63px;
    height: 63px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-bottom-color: var(--primario);
    -webkit-animation: rotar 400ms linear infinite;
    animation: rotar 400ms linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
}

.exito_recuperar p {
    text-align: center;
    font-size: 1.4em;
}
span.fln-alerta-exito.exito,
span.fln-alerta-error.error {
    background: none !important;
    font-size: 4em;
    padding: 0;
    margin: 0;
}
.marco {
    max-width: 1108px;
    width: 100%;
    margin: 0 auto;
}
main {
    min-height: calc(100vh -  144px);
    padding-top:50px;
}
main.evento-interior {
    padding-top: 0;
}
main.inicio {
    padding-top: 28px;
}

#respuesta_exito-evento h2,
#respuesta_error-evento h2 {
    font-size: 20px;
}

#respuesta_exito-evento h2, #respuesta_error-evento h2 {
    font-size: 30px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 19px 25px 20px;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-logo {
    align-items: center;
    display: flex;
    margin-top:10px;
}
.header-logo img {
    width: 130px;
}
.navegacion {
    display: flex;
    align-items: center;
}
.navegacion ul {
    display: flex;
    align-items: center;
}
.navegacion ul li {
    display: flex;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 1.5em;
    color: #333333;
    margin-right: 37px;
    line-height:normal;
    margin-left: 0;
    position:relative;
    margin-bottom: 1rem;
}
.navegacion ul li.activo a {
    color: var(--primario);
    text-decoration: underline;
    text-underline-offset: 31px;
    text-decoration-thickness: 6px;
}
.navegacion ul li::before {
    display: none;
}
.navegacion ul li ul:after {
    content: '';
    position: absolute;
    top: -50px;
    bottom: -40px;
    left: 0;
    right: 0;
    z-index: -1;
}
.navegacion ul li ul li:after {
    display: none;
}
.navegacion ul li ul {
    position: absolute;
    top: 54px;
    left: -70px;
    width: 207px;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 10px;
    background: #FFFFFF;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 10%, rgba(255,255,255,1) 100%);
    border: 1px solid #E5E5E5;
    border-top: 1px solid #fff;
    box-shadow: 0px 10px 10px rgb(0 0 0 / 10%);
    transition: all ease .3s;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
}
.navegacion ul li:hover ul {
    transform: scaleY(1);
    opacity: 1;
}
.navegacion ul li ul li {
    margin-bottom: 15px;
    margin-right: 0;
}
.navegacion ul li ul li.activo:before {
    content: '';
    background: var(--primario);
    display: block;
    height: 100%;
    width: 5px;
    position: absolute;
    top: 0;
    left: -20px;
}
.navegacion ul li ul li a {
    text-decoration: none !important;
    color: #333 !important;
}
.navegacion ul li ul li:hover a,
.navegacion ul li ul li.activo a {
    color: var(--primario) !important;
}
.navegacion a {
    display: flex;
    transition: all ease .3s;
    font-size: 1.4rem;
    text-transform: uppercase;
    text-decoration-color: transparent;
}
.navegacion a:hover {
    color: var(--primario);
    text-decoration: underline;
    text-underline-offset: 31px;
    text-decoration-thickness: 6px;
}
.navegacion a.btn_correo:hover {
    color: var(--primario);
    text-decoration: none;
}
.navegacion a:hover span:before {
    fill: var(--primario);
}
.navegacion .icon-correo {
    font-size: 1.8rem;
}
.navegacion .icon-correo::before {
    display: flex;
}
nav.menu {
    padding: 10px;
    border-right: 1px solid rgba(51, 51, 51, 0.28);
}
nav.menu ul {
    margin-bottom: 0;
}
#info-usuario {
    padding: 0 16px 0 34px;
    transition: all ease .3s;
}
#info-usuario span{
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 1.6rem;
    color: #333333;
    display: flex;
    align-items: center;
    margin-right: 14px;
}
#icono-usuario {
    background: var(--primario);
    border-radius: 90px;
    color: white;
    font-size: 1.4rem;
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
}
#info-usuario_datos {
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 10;
    right: 0;
    top: 120%;
    min-width: 200%;
    width: max-content;
    display: none;
}
#info-usuario_datos span {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--primario);
    margin-bottom: 20px;
    display: block;
}
.usuario_box .info-usuario {
    transition: all ease .3s;
}
.usuario_box:hover #info-usuario_datos {
    display: block;
}
.usuario_box:hover .info-usuario {
    opacity: .85;
}
.usuario_box:after {
    position: absolute;
    content: '';
    top: 0;
    bottom: -20px;
    left: 0;
    right: 0;
}
#info-usuario_datos a{
    margin-bottom: 20px;
    font-size: 1.2em;
    font-weight: 300;
    transition: all ease .3s;
}
#info-usuario_datos a:hover{
    text-decoration: underline;
    text-underline-offset: 2px;
}
#info-usuario_datos a svg{
    margin-right: 10px;
}
#info-usuario_datos a:last-child{
    margin-bottom: 0;
}
div#info-usuario_datos:before {
    content: '';
    width: 18px;
    height: 18px;
    background: #fff;
    transform: rotate(45deg);
    position: absolute;
    top: -6px;
    right: 32px;
    z-index: 10;
    box-shadow: -10px -10px 10px rgb(0 0 0 / 10%);
}
.usuario_box {
    position: relative;
}

/* CAROUSEL */
.owl-carousel > div{
    border-radius: 5px;
    position: relative;
}

.owl-item > div > div{
    height: 100%;
}
.owl-carousel > div h1{
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 2.6em;
    color: #FFFFFF;
}
.owl-carousel .owl-stage {
    display: flex;
}
.sombra {
    background: linear-gradient(188.09deg, rgba(51, 51, 51, 0) 21.72%, rgba(16, 16, 16, 0.5) 56.24%, #000000 93.03%);
    border-radius: 5px;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 39px;
    display: flex;
    align-items: flex-end;
    z-index: 1;
}
.sombra > div {
    width: 100%;
}
.fecha_limite, .fecha_resultado {
    display: flex;
    align-items: center;
    /* max-width: 280px; */
    margin-bottom: 15px;
}
.fecha_resultado {
	margin-bottom: 20px;
}
.fecha_resultado p {
    background: #2A518C;
    padding: 7px 10px;
    color: white;
    font-size: 1.4em;
    font-weight: 400;
    display: flex;
}
.fecha_limite svg,
.fecha_resultado svg {
    margin-right: 10px;
}
.fecha_limite p {
    background: #FF5C00;
    padding: 7px 10px;
    color: white;
    font-size: 1.4em;
    font-weight: 400;
    display: flex;
}
.inicio_lugar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.inicio_lugar > div {
    display: flex;
    margin-right: auto;
}
.inicio_lugar div svg {
    margin-right: 10px;
}
.inicio_lugar div span {
    display: block;
    color: white;
    font-size: 1.4em;
    font-weight: 300;
}
.inicio_lugar div span strong {
    font-weight: 400;
}
.owl-dot span {
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    margin: 5px;
}
.owl-dot.active span {
    background: rgba(255, 255, 255, 1);
}
.owl-dots {
    position: absolute !important;
    right: 20px;
    display: flex;
    flex-direction: column;
}
.contenedor-owl-carousel {
    min-height: 585px;
}
.no-js .owl-carousel, .owl-carousel.owl-loaded {
    /* display: block; */
    display: flex;
    align-items: center;
}
.ui-datepicker-unselectable.ui-state-disabled span{
    opacity: .3;
}
table.ui-datepicker-calendar thead th span {
    color: var(--secundario);
}
a.ui-state-default,
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
    font-family: 'Open sans', sans-serif;
    font-weight: 400;
}
.ui-datepicker-prev span:before,
.ui-datepicker-next span:before {
    color: var(--secundario)
}
.ui-datepicker td span, .ui-datepicker td a {
    font-family: 'Open sans', sans-serif ;
}
div#ui-datepicker-div {
    margin-top: 10px;
}
.ui-datepicker th {
    font-weight: 400;
}
/* EVENTOS */
.eventos-cabecera {
    display: flex;
    justify-content: space-between;
    align-items:flex-end;
    padding: 23px 0 43px;
}
.eventos-cabecera h2{
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 3em;
    color: var(--primario);
    margin: 0;
}
.eventos-selectores {
    display: flex;
    justify-content: space-between;
    align-items:center;
}
.eventos-selectores .form__grupo{
    margin: 0 0 0 23px ;
}
.eventos-selectores select{
    width: 320px;
    height: 35px;
    padding: 0 35px 0 10px;
}
.eventos-selectores select option{
    font-size: 1.4rem;
}
.eventos-selectores .form__grupo .icono {
    line-height: 2.6rem;
}
.eventos-selectores .form__grupo[data-animacion='placeholder'] label {
    -webkit-transform: translate(10px, 2.2em);
    transform: translate(10px, 2.2em);
}
.eventos-selectores .form__grupo[data-animacion='placeholder'] label.focus {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
}
.evento-item {
    background: #FFFFFF;
    /* border: 1px solid #DDDDDD; */
    box-sizing: border-box;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
    display: block;
    -webkit-transition: all ease 300ms;
    transition: all ease 300ms;
}
.evento-item-img {
    max-height: 182px;
    overflow: hidden;
}
.evento-item-texto {
    padding: 15px 18px 10px;
    height: auto;
}
.evento-item-texto h3 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 1.8em;
    color: var(--primario);
    margin: 0 0 20px;
}
.evento-item-img img {
    width: 100%;
    transform-origin: center center;
    -webkit-transition: all ease 300ms;
    transition: all ease 300ms;
}
.evento-item:hover {
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.15);
}
.evento-item:hover .evento-item-img img{
    transform: scale(1.05);
}
.item-detalle {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.item-detalle span {
    font-weight: 400;
}
.item-detalle img {
    margin-right: 13px;
    margin-top: 3px;
    width: 16px;
    min-height: 16px;
}
.item-detalle-vacio {
    height: 41px;
}
.evento-item.finalizado .evento-item-img img, .evento-item.en_desarrollo .evento-item-img img {
    filter: grayscale(1);
}
.evento-item.en_desarrollo .evento-item-img, .evento-item.finalizado .evento-item-img {
    position: relative;
}
.evento-item.finalizado .evento-item-img:after {
    content: 'Finalizado';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -30px;
    background: rgba(51, 51, 51, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.4em;
    font-weight: 300;
}
.evento-item.en_desarrollo .evento-item-img:after {
    content: 'En desarrollo';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -30px;
    background: rgba(51, 51, 51, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.4em;
    font-weight: 300;
}
.evento-item.finalizado .evento-item-img:before, .evento-item.evento-item.en_desarrollo .evento-item-img:before {
    content: url(../img/finalizado-icon.svg);
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 1;
    display: flex;
    top: 0;
    bottom: 0;
    left: -85px;
    right: 0;
    margin: auto;
}
.evento-item.evento-item.en_desarrollo .evento-item-img:before{
	/* content: url(../img/en_desarrollo-icon.svg); */
}
.ver_mas_eventos {
    border-radius: 5px;
    width: 100%;
    max-width: 260px;
    margin: 80px auto 0;
}
.banner-evento {
    height: fit-content;
    max-height: 680px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1360px;
    margin: auto;
}
.banner-evento img {
    min-width: 100%;
    min-height: 100%;
}
.banner-evento .sombra {
    background: linear-gradient(180deg, rgba(51, 51, 51, 0) 25.77%, #000000 88.4%);
    border-radius: 0;
    z-index: 1;
}
.datos-eventos-item a {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    text-decoration-line: underline;
    color: #000000;
    transition: all ease .3s;
}
.datos-eventos-item a:hover {
    opacity: .7;
}
.datos-eventos-item img {
    margin-top: 3px;
}
.datos-eventos-item .aside-texto {
    margin-top: 2px;
}
.form__grupo.form__grupo-row div {
    display: flex;
    align-items: center;
}
.form__grupo.form__grupo-row div span {
    margin:0 5px;
}
.tox-notification.tox-notification--in.tox-notification--warning {
    display: none;
}
.tox .tox-mbtn--active {
    background: var(--secundario) !important;
    color: #fff !important;
}
.tox .tox-collection--list .tox-collection__item--active {
    background-color: #b9dfc7 !important;
}
.tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active) {
    background: var(--secundario) !important;
    color: #fff !important;
}
.tox .tox-notification--error {
    max-width: 763px !important;
}
.form__grupo small,
.imagen-evento + p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #666;
    text-align: right;
    margin-top: 5px;
}
.imagen-evento {
    background: #A6A6A6;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 16/8.15;
    cursor: pointer;
    transition: all ease .3s;
    position: relative;
    overflow: hidden;
}
.imagen-evento:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.imagen-evento::after {
    content: 'Agregar imagen';
    color: #fff;
    position: absolute;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
}
.imagen-evento::before {
    content: 'Agregar imagen';
    color: #fff;
    position: absolute;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: rgba(166, 166, 166, 0.9);
    opacity: 0;
    transition: all ease .3s;
}
.imagen-evento:hover::before {
    opacity: 1;
}
.imagen-evento.invalido {
    border: 1px solid #FF0000;
}
.imagen-evento #img-upload {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    z-index: 2;
    width: 100%;
    cursor: pointer;
}
.imagen-evento img {
    min-width: 100%;
    min-height: 100%;
    position: relative;
    z-index: 1;
    /* background: #fff; */
}
.borrarImg {
    position: absolute;
    z-index: 10;
    right: 10px;
    bottom: 5px;
    font-size: 20px;
    color: white;
}
.form__grupo input,
.form__grupo select {
    height: 35px;
    padding: 0 35px 0 10px;
    font-weight: 300;
}
.form__seleccion.lista-duracion {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.form__seleccion.lista-duracion .form__checkbox {
    width: 50%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* MI CUENTA */
.mi-cuenta .tabs-contenido {
	padding: 15px !important;
}
h1.mi-cuenta-titulo {
    font-style: normal;
    font-weight: 300;
    font-size: 3em;
    color: var(--primario);
    margin-top:15px;
    margin-bottom: 55px;
    text-transform: uppercase;
}
h1.mi-colegio-titulo {
    font-style: normal;
    font-weight: 300;
    font-size: 3em;
    color: var(--secundario);
    margin-top:0;
    margin-bottom: 55px;
    text-transform: uppercase;
}
h1.eventos-titulo {
    font-style: normal;
    font-weight: 300;
    font-size: 3em;
    color: var(--secundario);
    margin-top:0;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.avatar-box {
    overflow: hidden;
    width: 159px;
    height: 159px;
    border-radius: 90px;
    background: white;
    border: 1px solid #ccc;
    display:flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all ease .3s;
}
.avatar-box.colegio {
    border-radius: 0;
    width: 280px;
    height: 187px;
}
.avatar-box:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    background: rgba(26, 26, 26, .1);
}
.avatar-box::after {
    content: 'Agregar imagen';
    color: #fff;
    position: absolute;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
}
.avatar-box::before {
    content: 'Agregar imagen';
    color: #fff;
    position: absolute;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: all ease .3s;
}
.avatar-box:hover::before {
    opacity: 1;
}
.avatar-box.invalido {
    border: 2px solid #ea5233;
}
.avatar-box.usuario-colegio .borrarImg {
    left: 46%;
}
.avatar-box.usuario-colegio::after,
.avatar-box.usuario-colegio::before {
    content: 'Agregar imagen de perfil';
}
.datos-perfil {
    padding: 30px 0;
    /* margin-bottom: 40px; */
}

.datos-perfil h2 {
    font-style: normal;
    font-weight: 300;
    font-size: 2.2em;
    color: var(--primario);
    margin-bottom:5px;
    margin-top: 0;
}
.datos-perfil p {
    font-weight: 300;
    font-size: 14px;
    line-height: 19px;
    color: #333333;
    margin-bottom: 10px;
}
.datos-perfil p:last-of-type {
    margin-bottom: 0;
}
.datos-perfil.colegio-perfil h2{
    color: var(--secundario);
    font-weight: 300;
}
.texto-destacado-colegio{
    color: var(--secundario);
    font-weight: 300;
}
.datos-perfil.datos-colegio {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    margin-left: 39px;
    height: 100%;
}
.avatar-box.no-editar,
.avatar-box.no-editar {
    pointer-events: none;
}
.avatar-box.no-editar::after,
.avatar-box.no-editar::before {
    display: none;
}
.iconos-utilidades {
    margin-left: auto;
}
#tabs {
    margin-top: 28px;
}
#tabs ul {
    margin-bottom: 10px;
    padding-left: 40px;
    display: flex;
}
#tabs ul li {
    font-size: 1.6em;
    font-weight: 300;
    color: #333;
    line-height: 24px;
    margin-left: 0;
    margin-right: 25px;
    position: relative;
    font-weight: 300;
    font-size: 16px;
    color: #A6A6A6;
}
#tabs ul li.ui-tabs-active {
    color: var(--primario);
    text-decoration: underline;
    text-decoration-thickness: 6px;
    text-underline-offset: 3px;
    text-underline-offset: 14px;
}
#tabs ul li a{
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    text-transform: uppercase;
}
#tabs .tabs-contenido,
.div-sombra {
    padding: 50px 40px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    box-shadow: 0px 0px 10px 2px rgba(0, 32, 92, 0.1);
    border-radius: 5px;
}
#tabs ul li:before {
    display: none;
}
#tabs.tabs-mi-colegio ul li.ui-tabs-active {
    color: var(--primario);
}
#tabs.tabs-mi-colegio ul li {
    margin-right: 25px;
}
#form_crear_eventos #tabs.tabs-mi-colegio ul li  {
    margin-right: 50px;
}
.btn-formulario-cuenta {
    margin-top: 50px;
    margin-left: 20px;
    width: 260px;
}
.btn-formulario-cuenta.bloqueado {
    pointer-events: none;
    opacity: .6;
}
.lista-asig, .lista-esp {
    max-height: 80%;
    display: flex;
    flex-wrap: wrap;
}
.lista-especialidades.lista-colegios .form__checkbox--checked .form__checkbox__item {
    background: var(--secundario);
    border-color: var(--secundario);
}
.lista-especialidades.lista-colegios .form__radio input:checked ~ label, .lista-especialidades.lista-colegios .form__checkbox input:checked ~ label, .form__toggle input:checked ~ label {
    color: var(--secundario);
}
.form__grupo .icono {
    top: 5px;
}
.requisitos-clave {
    margin-top: 20px;
}
.requisitos-clave li {
    font-size: 14px;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    background: #2A518C;
    padding-bottom: 80px;
}
.footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}
.footer .logo-footer {
    display: flex;
}
.footer p {
    color: white;
    font-size: 1.3em;
    font-weight: 300;
    display:flex;
    align-items:center;
}
.footer .logo-footer p {
    color: white;
    font-size: 1.3em;
    font-weight: 300;
    display:flex;
    align-items:center;
}
.footer .logo-footer img {
    width: 130px;
    margin-right: 30px;
}
.titulo-banner-evento {
    position: absolute;
    bottom: 0;
    z-index: 5;
    left: 0;
    right: 0;
    max-width: 1108px;
    height: 170px;
    margin: 0 auto;
}
.titulo-banner-evento h1 {
    font-weight: 300;
    font-size: 2.6em;
    color: #FFFFFF;
    margin-bottom: 0;
    padding-left: 20px;
}
.evento-interior .contenido-evento {
    padding-left:20px;
    margin: 30px 0 70px;
}
.datos-eventos-detalle {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 2px rgba(0, 32, 92, 0.1);
    border-radius: 5px;
    top: -150px;
    padding: 40px 30px;
    z-index: 2;
}
.datos-eventos-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.datos-eventos-item:first-of-type {
	flex-wrap: wrap;
}
.datos-eventos-item .mensaje {
    margin-top: 10px;
}
.datos-eventos-item img {
    margin-right: 20px;
    width: 21px;
    height: 21px;
    margin-bottom: auto;
}
.datos-eventos-item p {
    font-weight: 600;
}
.datos-eventos-item a.doc_enlace {
    font-family: 'Open Sans';
    font-weight: 300;
    font-size: 14px;
    text-decoration-line: underline;
    color: var(--primario);
    display: block;
    margin: 10px 0;
}
.datos-eventos-item p.horario_item {
    font-weight: 300;
    margin-bottom: 4px;
}
.datos-eventos-item p span {
    font-weight: 300;
}
a.btn.btn_secundario {
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    box-sizing: border-box;
    border-radius: 5px;
    color: #333;
    width: 100%;
    font-size: 1.4em;
    font-weight: 300;
    margin: 10px 0;
}
p.formato_doc {
    text-align: right;
    font-size: 1.2em;
}
.btn.primario.postular {
    width: 100%;
    font-weight: 300;
}
/* --evento pasado--- */
.evento-pasado .banner-evento img {
    filter: grayscale(1);
}
.evento-pasado .banner-evento .sombra {
    background: rgba(51, 51, 51, 0.5);
}
.evento-pasado .evento-vigente {
    display: none;
}
.form__radio input ~ label, .form__checkbox input ~ label, .form__toggle input ~ label {
    font-size: 1.4em;
    color: #333;
    font-weight: 300;
}
.form__checkbox {
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.form__checkbox__item:before {
    display: none;
}
.form__checkbox label {
    cursor: pointer;
}
.mencion-item {
    background: #F6F5F5;
    border-radius: 5px;
    width: 100%;
    padding: 20px 25px;
    margin: 10px 25px 30px 0;
    display: none;
}
.mencion-item p {
    font-family: 'Open Sans';
    font-weight: 300;
    font-size: 14px;
    color: #333333;
    margin-bottom: 24px;
}
.lista-especialidades {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    /* transition: all ease .3s; */
    opacity: 0;
    /* max-height: 760px; */
}
.lista-especialidades.lista-asignaturas {
    flex-direction: row;
}
.lista-especialidades .form__checkbox {
    width: auto;
}
.lista-especialidades.lista-modal .form__checkbox {
    /* width: 225px; */
    margin-right: 20px;
    margin-bottom: 20px;
}
.lista-especialidades.lista-modal .mencion-item .form__checkbox {
    margin-bottom: 15px;
}
.lista-especialidades.lista-modal .mencion-item .form__checkbox:last-child {
    margin-bottom: 0;
}
.lista-especialidades .mencion-item {
    width: auto;
    max-width: 80%;
}
.especialidad-item-box {
    width: 33%;
}
.fln-check.invalido{
    border-color: #ea5233;
}
span.icono.fln-reloj {
    content: url(../img/reloj.svg);
    width: 20px;
    height: 20px;
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
}
.buscador-tabla-colegio {
    margin-top: 12px;
}
.tabla-overflow.div-sombra {
    padding: 27px 20px;
}
.tabla-overflow table {
    width: 100%;
}
.tabla-overflow table th {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--secundario);
    text-align: center;
    padding: 13px 0;
}
.tabla-overflow table td {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #333;
    text-align: center;
    padding: 10px 0;
}
.tabla-overflow table tr:nth-child(odd) td {
    background: #F6F5F5;
}
.tabla-overflow table td .icono {
    color: var(--secundario);
    cursor: pointer;
    transition: all ease .5s;
}
.tabla-overflow table td .icono:hover {
    opacity: .8;
}
.btn-formulario-buscador {
    width: 100%;
    margin-top: 36px;
}
.pager {
    text-align: left;
    display: flex;
    align-items: center;
}
.pager .pagedisplay {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 13px;
    text-align: right;
    color: #333333;
    margin: 0 10px;
}
.opciones-tabla {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 15px;
    margin-top: 40px;
    margin-bottom: 3px;
}
.iconos-utilidades a {
    margin-right:14px;
}
.pager span:before {
    vertical-align: middle;
    font-size: 14px;
    cursor: pointer;
}
.avatar-box #img-upload {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}
#img-avatar {
    width: 100%;
    min-height: 100%;
    position: absolute;
    z-index: 1;
    /* background: #fff; */
}
.agregar-item-box {
    position: relative;
}
.sort.aceptados .tablesorter-header-inner {
    padding-left: 0;
}
input#pdf-upload {
    position: absolute;
    padding: 0;
    opacity: 0;
    height: 30px;
    width: 30px;
    right: -3px;
    top: -3px;
    cursor: pointer;
    font-size: 0;
    transition: all ease .3s;
}
input#pdf-upload::before {
    margin-right: 10px;
}
input#pdf-upload:focus {
    box-shadow: none;
}
input#pdf-list {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
}
input#carta-upload {
    position: absolute;
    opacity: 0;
    right: 0;
    bottom: 0;
    width: 20px !important;
    cursor: pointer;
    font-size: 20px;
    color: #546e7a;
    padding: 17px;
}
input#carta-upload::before {
    margin-right: 10px;
}
input#carta-upload:focus {
    box-shadow: none;
}
#carta-evento-interior {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    font-size: 20px;
    color: #546e7a;
    padding: 50px;
}
.btn.invalido {
    border-color: red !important;
}
.agregar-item-box .fln-mas-light {
    display: flex;
    right: -5px;
    top: 14px;
    color: var(--secundario);
    font-size: 13px;
}
.agregar-item-box .fln-mas {
    display: flex;
    right: -5px;
    top: 14px;
    color: var(--secundario);
    font-size: 13px;
}
.hasDatepicker {
    cursor: pointer;
}
.reloj-input {
    display: flex;
    align-items: center;
}
.reloj-input input{
    text-align: right;
}
.reloj-input span {
    margin: 0 5px;
}
.icono.fln-subir {
    color:#A6A6A6;
}
.input-opcional-upload {
    outline: none !important;
    border: none !important;
}
.pdf-item-upload {
    position: absolute !important;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 0 !important;
    height: 0 !important;
    opacity: 0;
}
.pdf-item-tag {
    position: relative;
    display: flex;
    background: #E8FDEF;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 300;
    font-family: 'Open Sans',sans-serif;
    overflow: hidden;
    margin: 10px 10px 0 0;
    align-items: center;
}
.lista_items_uploads {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    position: relative;
    overflow: auto;
    z-index: 5;
    scrollbar-width: thin;
}
.lista_items_uploads::-webkit-scrollbar {
    width: 3px;
    background: #fff;
}
.lista_items_uploads::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.lista_items_uploads::-webkit-scrollbar-thumb {
    background-color: darkgrey;
}
.pdf-item-tag span {
    margin-right: 10px;
}
.pdf-item-tag .icono {
    font-size: 14px;
    display: flex;
    pointer-events: auto;
    margin: 0;
}
.pdf-item-tag .icono::before {
    cursor: pointer;
    position: relative;
    top: 11px;
}
.text.upload {
    height: 35px;
    display: flex;
    align-items: center;
}
.text.upload:hover {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.text.upload p{
    font-size: 14px;
    color: #333;
    font-weight: 300;
}
.text.upload input {
    font-size: 14px;
    color: #333;
    font-weight: 300;
    border: none;
    width: 100%;
    background: none;
    padding: 0;
}
.btn-crear {
    width: 100%;
    max-width: 153px;
    margin: 0;
    margin-left: auto;
}
#form_eventos_creados #tabs {
    margin-top: 5px;
}
.tabs-contenido.div-sombra {
    padding: 27px 20px !important;
    margin-bottom: 78px !important;
}
.tabla-overflow .tabla-eventos th {
    text-align: left;
    font-size: 13px;
    font-weight: 400;
    vertical-align: bottom;
}
.tabla-overflow .tabla-eventos td {
    font-size: 13px;
    font-weight: 300;
    text-align: left;
}
.tabla-overflow .tabla-eventos td:first-child {
    width: 400px;
    padding-left: 32px;
    text-align: left;
}
.tabla-overflow .tabla-eventos th:first-child {
    padding-left: 32px;
    text-align: left;
}
.tabla-overflow .tabla-eventos td.td-icono {
    width: 35px;
}
.tabla-overflow .tabla-eventos td.verde,
.tabla-overflow .tabla-eventos td.rojo {
    position: relative;
}
.tabla-overflow .tabla-eventos td.rojo::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left:0;
    bottom: 0;
    width: 16px;
    background: #FF0000;
}
.tabla-overflow .tabla-eventos td.verde::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left:0;
    bottom: 0;
    width: 16px;
    background: #408E5C;
}
.tabla-overflow .tabla-eventos .tablesorter-headerUnSorted:after {
    content: url(../img/chevron-expand.svg);
    vertical-align: middle;
}
.tabla-overflow .tabla-eventos .tablesorter-headerAsc:after {
    content: url(../img/chevron-up.svg);
    vertical-align: middle;
}
.tabla-overflow .tabla-eventos .tablesorter-headerDesc:after {
    content: url(../img/chevron-down.svg);
    vertical-align: middle;
}
.tabla-overflow .tabla-eventos .tablesorter-header-inner {
    display: initial;
}
.tabla-overflow .tabla-eventos .th-icono.tablesorter-headerUnSorted:after,
.tabla-overflow .tabla-eventos .th-icono.tablesorter-headerDesc:after,
.tabla-overflow .tabla-eventos .th-icono.tablesorter-headerAsc:after {
    display:none;
}
.buscador-tabla {
    max-width: 345px;
    margin-left: 27px;
}
/* TOOLTIP */
.tooltip {
    position: relative;
    /* display: inline-block; */
    /* border-bottom: 1px dotted black; */
}

.tooltip .tooltiptext {
    visibility: hidden;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    bottom: 120%;
    left: 0;
    margin-left: -7px;
    font-size: 11px;
    font-style: normal;
    font-family: 'Open sans', sans-serif;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.tooltip .tooltiptext.favorito,
.tooltip .tooltiptext.favorito_no {
	right: 28px;
	width: max-content;
	margin: 0;
	left: initial;
	bottom: 0;
}
.tooltip .tooltiptext.favorito::after,
.tooltip .tooltiptext.favorito_no::after {
    border-color: transparent transparent transparent #333;
    left: calc(100% + 5px);
    top: 30%;
}
.tooltip:hover .tooltiptext:not(.favorito),
.tooltip:hover .tooltiptext:not(.favorito_no) {
    visibility: visible;
}
td.tooltip{
    padding: 0 !important;
}
td.tooltip .tooltiptext {
    bottom: 80%;
}
.tooltip .tooltiptext.tip-vertical {
    text-align: left;
    left: 95%;
    bottom: -20%;
}
.tooltip .tooltiptext.tip-vertical:after {
    content: "";
    position: absolute;
    top: 40%;
    left: -5px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #333 transparent transparent;
}
div#respuesta_exito-clave {
    min-height: 25vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 60px;
}
.user-deshabilitado {
    opacity: .5;
    pointer-events: none;
}
.agregar-item-mas {
    font-size: 13px;
    color: var(--secundario);
    border: 1px solid var(--secundario);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 90px;
    width: 25px;
    height: 25px;
    padding-right: 1px;
    background: #fff;
    transition: all ease .3s;
    margin-right: 2px;
}
.agregar-item-menos {
    font-size: 13px;
    color: #F00;
    border: 1px solid #F00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 90px;
    width: 25px;
    height: 25px;
    padding-right: 1px;
    background: #fff;
    transition: all ease .3s;
    margin-right: 10px;
}
.agregar-item-mas i,
.agregar-item-menos i {
    display: flex;
}
.agregar-item-mas:hover,
.agregar-item-menos:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.botonera-agregar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.upload-list-pdf {
    height: 100px !important;
    align-items: flex-start !important;
}
.upload-list-pdf:hover {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.upload-list-pdf::-webkit-scrollbar {
    width: 1px;
}
.icono-list-pdf {
    transform: translateY(-9rem) !important;
}
.radio-flex {
    display: flex;
}
.radio-flex .form__seleccion {
    margin-right: 40px;
}
.radio-flex label {
    display:contents;
}
.tabs-mi-colegio .form__radio--checked .form__radio__item {
    background: var(--secundario);
    box-shadow: 0 0 0 1px var(--secundario);
}
.tabs-mi-colegio .form__radio input:checked ~ label, .tabs-mi-colegio .form__checkbox input:checked ~ label, .tabs-mi-colegio .form__toggle input:checked ~ label {
    color: var(--secundario);
}
.tabs-mi-colegio .form__checkbox--checked .form__checkbox__item {
    background: var(--secundario);
    border: 4px solid #fff !important;
}
.tabs-mi-colegio .form__checkbox--checked .form__checkbox__item:before {
    display: none;
}
.form__checkbox__item:after {
    -webkit-animation:none;
    animation: none;
    opacity: 1;
    border-radius: 4px;
    background: none;
    border: 3px solid #fff;
    outline: 1px solid #ccc;
}
.form__checkbox__item {
    margin: 0 10px 0 0;
}
.addFile {
    cursor: pointer;
}
.tox.tox-tinymce.invalido {
    border: 1px solid red;
}
.form__radio__item.invalido::after {
	border: 1px solid red;
}
.boton-azul {
    background: rgba(0, 32, 92, 0.7) !important;
    border-color: none !important;
    border-radius: 5px;
    padding: 10px 20px;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    color: #FFFFFF;
    min-width: 116px;
    display: inline-block;
    margin-left: 10px;
    text-align: center;
}
.boton-terciario {
    background: rgba(0, 32, 92, 0.7) !important;
    border-color: none !important;
    border-radius: 5px;
    padding: 10px 20px;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    color: #FFFFFF;
    min-width: 116px;
    display: inline-block;
    margin-left: 10px;
    text-align: center;
}
.botonera-tab {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}
.botonera-eventos {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.botonera-eventos .btn {
    min-width: 164px;
}
.flecha-volver {
	position: fixed;
    left: 0;
    width: 40px;
    height: 40px;
    color: #fff;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: var(--primario);
    font-size: 2em;
	transition: all ease .3s;
}
.flecha-volver i {
	display: flex;
}
.flecha-volver.fixed {
	position: fixed;
	top: 245px;
}
.flecha-volver.fixed.stop,
.flecha-volver.flecha-top {
    top: 60px;
}

.fln-vista:before {
    content: url(../img/ver.svg) !important;
}
.password-icon:before {
    content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='23.2' height='18' viewBox='0 0 23.2 18' style='enable-background:new 0 0 23.2 18;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%232367cc;%7D%0A%3C/style%3E%3Cg%3E%3Cpath class='st0' d='M11.6,0.3C6.4,0.3,2,4,1.1,9c0.9,5,5.3,8.7,10.5,8.7S21.2,14,22.1,9C21.2,4.1,16.7,0.3,11.6,0.3z M20.3,8.9 L20.3,8.9c-0.4,1.9-1.6,3.8-3.2,5.1c-1.6,1.3-3.5,1.9-5.5,1.9c-2.2,0-4-0.6-5.5-1.8C4.4,12.7,3.3,11,2.9,9l0,0l0,0 c0.4-2,1.5-3.8,3.2-5.1c1.7-1.3,3.6-2,5.5-2c2,0,4,0.7,5.5,2.1C18.8,5.2,19.9,6.9,20.3,8.9L20.3,8.9z'/%3E%3Cpath class='st0' d='M14.6,5.9c-0.7-0.8-1.8-1.3-3-1.3c-1.2,0-2.4,0.5-3,1.3C7.8,6.8,7.3,8,7.3,9c0,1,0.5,2.1,1.3,2.9 c0.7,0.8,1.8,1.3,3,1.3c1.2,0,2.3-0.4,3-1.2c0.6-0.8,1.3-1.8,1.3-3C15.9,7.9,15.5,6.8,14.6,5.9L14.6,5.9z M13.5,10.8L13.5,10.8 c-0.6,0.5-1.2,0.7-1.9,0.7c-0.7,0-1.3-0.3-1.8-0.6l0,0C9.3,10.3,9,9.7,9,9c0-0.7,0.2-1.3,0.5-1.9l0,0c0.6-0.5,1.2-0.7,1.9-0.7 c0.7,0,1.5,0.3,1.9,0.7c0.5,0.6,0.7,1.2,0.7,1.9C14.2,9.8,13.9,10.4,13.5,10.8z'/%3E%3C/g%3E%3C/svg%3E");
    cursor: pointer !important;
    pointer-events: initial !important;
};
.fln-doc:before {
    content: url(../img/doc-tabla.svg);
}
.sort .tablesorter-header-inner {
    display: block;
    /* align-items: flex-end; */
    /* padding-left: px; */
    cursor: pointer;
}
.sort .tablesorter-header-inner:after {
    margin-bottom: 1px;
}
.sort.tablesorter-headerUnSorted .tablesorter-header-inner::after {
    content: url(../img/chevron-expand.svg);
    display: inline-block;
    vertical-align: middle;
    height: 18px;
    width: 18px;
    margin-left: 5px;
}
.sort.tablesorter-headerAsc .tablesorter-header-inner::after {
    content: url(../img/chevron-up.svg);
    display: inline-block;
    vertical-align: middle;
    height: 18px;
    width: 18px;
    margin-left: 5px;
}
.sort.tablesorter-headerDesc .tablesorter-header-inner::after {
    content: url(../img/chevron-down.svg);
    display: inline-block;
    vertical-align: middle;
    height: 18px;
    width: 18px;
    margin-left: 5px;
}
.no-sort {
    pointer-events: none;
}
.b_tag{
    /* content: url(/img/b_tag.svg); */
    color: white;
    display: inline-block;
    height: 20px;
    width: 20px;
    vertical-align: middle;
    padding: 4px;
    font-size: 14px;
    text-align: center;
    background: #17a5ef;
    font-style: normal !important;
    font-family: 'Open sans',sans-serif;
}
.b_tag:after{
    content: 'B';
}
.b_tag.b_tag-destacado {
    height: 30px;
    width: 30px;
}
.postulacion_tag {
    content: url(../img/send.svg);
    display: inline-block;
    height: 30px;
    width: 30px;
    vertical-align: middle;
    padding: 5px;
    background: orange;
}
.aceptado_tag {
    content: url(../img/check.svg);
    display: inline-block;
    height: 30px;
    width: 30px;
    vertical-align: middle;
    padding: 4px;
    background: #9ccf80;
}
/* .aceptado_tag:after {
    content: 'A';
} */
.icono-item .postulacion_tag {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    padding: 2px;
}
.icono-item .aceptado_tag {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    padding: 2px;
    font-size: 12px;
}
.icono-item .b_tag {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    padding: 2px;
    font-size: 12px;
}
i.b_tag {
    padding: 0;
}
/* .icono-item .aceptado_tag span {
    padding: 2px;
} */
.tabla-overflow .tabla_evento th {
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    vertical-align: top;
    padding-left: 10px;
    padding-right: 10px;
}
.tabla-overflow .tabla_evento td {
    font-size: 14px;
    font-weight: 300;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
}
.tabla-overflow .tabla_evento td:first-child {
    padding-left: 20px !important;
}
.celda-center{
    text-align: center !important;
}
.celda-center .tablesorter-header-inner {
    justify-content: center;
}
.celda-right{
    text-align: right !important;
}
.celda-left{
    text-align: left !important;
}
.centro-check .form__checkbox,
.centro-input .form__grupo{
    margin: auto;
    margin-bottom: 0;
    text-align: center;
}
.centro-check .form__checkbox__item {
    margin: auto;
}
.centro-check .form__checkbox input{
    left: calc(50% - 14px);
}
.cierre_pronto {
    display: flex;
    justify-content: center;
    color: #FF0000 !important;
    padding-left: 30px !important;
    min-height: 58px;
    align-items: center;
}
.cierre_pronto:after {
    content: url(../img/warning.svg);
    display: flex;
    height: 16px;
    width: 16px;
    margin-left: 5px;
}
td.sorteable {
    padding-right: 20px !important;
}
.postulacion-estado{
    position: relative;
    padding-right: 25px !important;
}
.postulacion-estado:after {
    content: '';
    border-radius: 10px;
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 10px;
    top: 41%;
}
.postulacion-estado.negativa:after {
    background: #FF0000;
}
.postulacion-estado.positiva:after {
    background: #408E5C;
}
.postulacion-estado.media:after {
    background: #FDC500;
}
.leyenda-tabs {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 14px;
    color:#ABABAB;
}
.leyenda-tabs .icono-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    font-weight: 300;
}
.leyenda-tabs .separador {
    padding: 0 10px;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 300;
    color: #ABABAB;
    padding-bottom: 3px;
}
.leyenda-tabs .cierre_pronto,
.leyenda-tabs i {
    padding: 0 !important;
    margin-right: 10px;
}
.leyenda-tabs .postulacion-estado{
    margin-bottom: 8px;
    margin-right: 5px;
}
.leyenda-tabs .icono-item.estado{
    margin-left:20px;
}
.leyenda-tabs .postulacion-estado:after {
    right: 0;
}
.inicio .leyenda-tabs {
    margin-top: 60px !important;
    justify-content: center;
}
.tabs-contenido.sombra-interno {
    box-shadow:none !important;
    border:none !important;
    padding: 0 !important;
    background: none !important;
}
.tabs-contenido.sombra-interno .div-sombra {
    padding: 30px 20px;
}
td.rechazado {
    color: #FF0000 !important;
}
.tabs-contenido.tab-con-msj {
    padding-left: 25px !important;
    padding-right: 25px !important;
}
.tabs-contenido.tab-con-msj .tab-interior{
    padding-left: 15px;
    padding-right: 15px;
}
.especialidad-box {
    height: 166px;
    border: 1px solid #cccccc;
    color: #333;
    border-radius: 6px;
    padding: 15px;
    position: relative;
}
.especialidad-box i.icono {
    position: absolute;
    display: flex;
    right: 10px;
    bottom: 10px;
    font-size: 20px;
    font-weight: 300;
    pointer-events:initial;
    cursor: pointer;
    transition: all ease .3s;
}
.especialidad-box i.icono:hover {
    opacity: .8;
}
.modal-contenedor {
    background: rgba(44, 44, 44, 0.7);
    position: absolute;
    top: 82px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}
.caja-especialidades {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 0px 10px 2px rgba(0, 32, 92, 0.1);
    border-radius: 5px;
    padding: 30px 25px 40px 45px;
    width: 1000px;
    margin: auto;
    margin-top: 20vh;
    position: relative;

}
.totales-box {
    display: flex;
    align-items: baseline;
}
.totales-box h4{
    padding-left: 5px;
}
.totales-box h4 span{
    color: var(--secundario);
}
.totales-box .v-separador {
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    margin-bottom: 0;
    margin-left: 20px;
    margin-right: 15px;
}
.img-evento-resultado {
    overflow: hidden;
    max-height: 224px;
}
.img-evento-resultado img {
    width: 100%;
    min-height: 100%;
}
.texto-evento-resultado {
    padding-left: 20px;
}
.texto-evento-resultado h2 {
    margin-top: 0;
    font-size: 2.2em;
    text-transform: uppercase;
}
.texto-evento-resultado h3 {
    margin-top: 0;
    margin-bottom: 20px;
}
.texto-evento-resultado a {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    display: block;
    text-decoration: underline;
}
.texto-evento-resultado p {
    margin-bottom: 10px;
}
/* .form__seleccion.lista-especialidades {
    display: flex;
    flex-wrap: wrap;
} */
.form__seleccion.lista-especialidades .item-esp {
    margin-right: 22px;
    flex-basis: 200px;
}
.form__seleccion.lista-especialidades .item-esp:nth-child(3n * 3) {
    margin-right: 0;
}
.lista-colegios .form__checkbox--checked .form__checkbox__item {
    background: var(--secundario);
    border-color: var(--secundario);
}
.lista-colegios .form__checkbox--checked .form__checkbox__item:before {
    opacity: 0;
}
.scrollbar {
    overflow-y: auto;
    overflow-x: hidden;
}
.scrollbar::-webkit-scrollbar {
    width: 5px;
    background: #fff;
    border-radius: 3px;
}
.scrollbar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.scrollbar::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    border-radius: 3px;
}
.item-tag-esp {
    position: relative;
    background: #E8FDEF;
    border-radius: 5px;
    padding: 10px 40px 10px 10px;
    margin: 10px;
    margin-left: 0;
    width: fit-content;
}
.item-tag-esp p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    color: #333333;
}
.item-tag-esp i.icono {
    font-size: 16px;
}
/* .mi-cuenta .item-tag-esp {
    background: #E8F3FD;
} */
.tipo_hora {
    max-width: 60px;
}

.hora-beca span.icono.fln-reloj{
    margin-right:0;
}
#imagen_evento span.icono.fln-eliminar {
    bottom: 6px;
    color: #fff;
    font-size: 20px;
    right: 10px;
    position: absolute;
    z-index: 10;
    transition: all ease .3s;
}
#imagen_evento span.icono.fln-eliminar:hover {
    color: #ccc;
}
.avatar-box.usuario-colegio {
    width: 208px;
    height: 208px;
    border-radius: 120px;
    margin: auto;
}
.usuario-colegio .img-src {
    width: auto !important;
    height: 100% !important;
}
.img-small {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #333;
    text-align: center;
    margin-top: 14px;
    display: block;
}
.input-big input {
    height: 75px;
    font-size: 2em !important;
}
.input-big .icono {
    transform: translateY(-5rem);
}
table .icono:before {
    font-size: 18px;
    padding: 10px;
}
table td a {
    width: 100%;
    display: block;
}
#total-evento span{
    color: var(--secundario);
}
#total-evento {
    padding-left: 20px;
}
.caja-especialidades .fln-cerrar {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 20px;
    opacity: .5;
    cursor: pointer;
    transition: all ease .3s;
}
.caja-especialidades .fln-cerrar:hover {
    opacity: .2;
}
.tabla-overflow table td .icono.fln-mail:before,
.tabla-overflow table td .icono.fln-alerta-advertencia:before{
    font-size: 24px;
}
.respuesta_form {
    padding: 20px 75px 40px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    box-shadow: 0px 0px 10px 2px rgb(0 32 92 / 10%);
    border-radius: 5px;
    min-height: 33vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.inicio_textos .tipo_evento {
    margin-bottom: 10px;
}
.franja-beca {
    /* position: absolute;
    transform: translate(19px, -15px); */
	min-height: 45px;
    padding: 15px 15px 0 15px;
	display: flex;
}
.franja-beca .b_tag {
    /* position: absolute;
    top: -15px;
    left: 18px; */
    margin-right: 3px;
}
.franja-beca .postulacion_tag {
    margin-right: 3px;
}
.franja-beca .aceptado_tag {
    margin-right: 3px;
}
.aceptado_tag span {
    width: 100%;
    text-align: center;
}
.item-detalle strong {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}
.item-detalle p {
    font-weight: 300;
}
.limite-convocatoria {
    color: #FF5C00;
    font-size: 14px;
    font-weight: 600 !important;
}
.resultado-convocatoria {
    color: #2A518C;
    font-weight: 600 !important;
}
.map-box {
    display: flex;
    position: relative;
    height: 222px;
}
.map-frame {
    display: flex;
    position: absolute;
    right: -30px;
    left: -30px;
    bottom: -40px;
    top: 0;
    overflow: hidden;
}
.disabled-check {
    pointer-events: none;
}
.botonera-resultado {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 43px;
    margin-bottom: 13px;
}
.botonera-resultado .btn {
    font-size: 1.5rem;
    font-weight: 300;
    padding: 15px 20px;
}
.botonera-resultado .mensaje {
    max-width: 769px;
    margin-bottom: 0;
    text-align: left;
    padding: 20px;
}
.resultado_excel {
    display: flex;
    align-items:  center;
    justify-content: space-between;
}
.resultado_excel .form__grupo {
    margin-bottom: 0;
    margin-left: 35px;
    min-width: 345px;
}
.separador-tabla-resultado {
    width: 100%;
    height: 1px;
    background: #F6F5F5;
    margin: 40px 0 30px;
}
.resultado_excel a {
    padding: 10px 40px;
}
thead.doble-linea th {
    vertical-align: top !important;
    padding-bottom: 4px !important;
}
.especialidad-box.invalido {
    border-color: #F00;
}
/* RESPONSIVE */
@media(max-width:991px){
    .titulo-banner-evento h1 {
        margin: 15px;
        font-size: 2.2em;
    }
    .datos-eventos-detalle {
        position: initial;
        margin-top: 20px;
    }
}
@media(max-width:767px){
    .login-box {
        position: absolute;
        height: auto;
    }
    .login {
        justify-content: center;
        align-items: center;
    }
}
@media(max-width:544px){
    .owl-carousel .owl-item img {
        width: auto;
        height: 100%;
        position: absolute;
        top: 0;
        filter: blur(30px);
    }
    .sombra {
        position: relative;
        z-index: 1;
    }
    .banner-evento .sombra {
        position: absolute;
    }
}

/* ALERTAS ***********************/
.error,.exito,.aviso,.mensaje{
    font-family: 'Open sans', sans-serif;
    display:block;
    font-size:1.4em;
    font-weight: 300;
    padding:10px;
    height:auto !important;
    margin-bottom:20px;
    color:#333;
    text-align:center;
}
.exito{
    background: #d0efbf !important;
    color: #447826 !important;
}
.exito a{
    color: #447826 !important;
    text-decoration:underline !important;
}
.error{
    background:#EFA3A3 !important;
    color:#a91e12 !important;
}
.error a{
    color:#a91e12 !important;
    text-decoration:underline !important;
}
.aviso{
    background:#99d3f7 !important;
    color:#005284 !important;
}
.aviso a{
    color:#005284 !important;
    text-decoration:underline !important;
}
.mensaje{
    background:#FFEEBA !important;
    color: #B7993D !important;
}
.mensaje a{
    color: #B7993D !important;
    text-decoration:underline !important;
}
.mensaje ul {
    flex-direction: column;
    text-align: left;
    padding-left: 20px !important;
    margin-bottom: 0 !important;
}
.mensaje ul li {
    color: #B7993D !important;
    font-size: 1.4rem !important;
    margin-right: 0 !important;
}
#tabs.tabs-mi-colegio .mensaje ul li:before {
    content: '';
    background: #B7993D;
    display: block;
    border-radius: 3px;
    height: 3px;
    width: 3px;
    display: block;
}
input#seleccionar-archivo-excel {
    position: absolute;
    opacity: 0;
    right: 0;
    bottom: 0;
    width: 20px !important;
    cursor: pointer;
    font-size: 20px;
    color: #546e7a;
    padding: 17px;
}
.error a,.exito a,.aviso a,.mensaje a{
    transition: all ease .3s;
}
.error a:hover,.exito a:hover,.aviso a:hover,.mensaje a:hover{
    opacity: .6;
}
.texto-exito {
    color: #447826 !important;
}
.texto-error {
    color:#a91e12 !important;
}

.link_line {
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all ease .3s;
}
.link_line:hover {
    opacity: .7;
}
.no-seudo::before,
.no-seudo::after {
    display: none;
}
.disabled-box a {
    pointer-events: none !important;
}
.form__checkbox--checked .form__checkbox__item:after {
    -webkit-animation: none;
    animation: none;
    opacity: 1;
}
/*********************************/


.contacto-desplegable {
	display: none;
	padding: 40px;
	background: white;
	box-shadow: 0 0 10px rgb(0 0 0 / 10%);
	position: absolute;
	z-index: 10;
	right: -48px;
	top: 40px;
	width: 550px;
}

.contacto-desplegable::before {
	content: '';
	width: 18px;
	height: 18px;
	background: #fff;
	transform: rotate(45deg);
	position: absolute;
	top: -6px;
	right: 51px;
	z-index: 10;
	box-shadow: -10px -10px 10px rgb(0 0 0 / 10%);
}

.contacto-desplegable h2 {
	font-weight: 300;
	font-size: 2.4rem;
	line-height: 33px;
	text-transform: uppercase;
	color: var(--secundario);
	margin: 0;
	margin-bottom: 18px;
}

#enviar-contacto {
	margin-bottom: 0;
}

#enviar-contacto .form__grupo label {
	font-weight: 300;
	font-size: 14px;
	line-height: 19px;
	color: #333333;
}

#enviar-contacto .form__grupo textarea {
	height: 190px;
}

#enviar-contacto #errores_enviar-contacto {
	font-size: inherit;
}

.botonera-contacto {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.btn.enviar-mensaje {
	display: inline-flex;
	min-width: 260px;
	text-transform: capitalize;
}

.btn.enviar-mensaje:hover {
	color: #fff;
}

.respuestas__item {
	padding: 53px 0 52px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.respuestas__item h3 {
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	color: #2A518C;
	margin: 0;
	margin-bottom: 40px;
}

.fechaNoticia {
    line-height: 24px;
    color: #333;
    font-size: 1.1rem;
}

.noticiaTitulo {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 1.8em;
    color: var(--primario);
    margin-top: 20px;
}

.bibliotecaTitulo {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 1.8em;
    color: var(--primario);
}

.respuestas__item p {
	font-weight: 300;
	font-size: 14px;
	line-height: 19px;
	text-align: center;
	color: #333333;
	margin-bottom: 40px;
	max-width: 300px;
}

.contacto-desplegable p {
	font-size: inherit;
	margin-bottom: 2em;
	font-weight: 300;
}

.observar .form__grupo label {
	pointer-events: none;
}
.preloader-general::before {
	border-bottom-color:var(--primario);
}
/* .preloader-general::after {
	color: var(--primario);
} */
span.usuario-tipo {
    font-size: 1.3rem !important;
    color: #333d47 !important;
	font-weight: 300 !important;
}
span.usuario-nombre {
    margin-bottom: 4px !important;
}
.link_gris:hover{
	text-decoration:underline !important;
}
.dashboard-vigentes h4#total-evento {
	padding: 0;
	margin-top: 0;
	margin-bottom: 0;
	font-weight: 300;
}
.contenido-evento h2{
	font-size: 2.4em;
	font-weight: 300;
	margin-bottom: 10px;
}
.contenido-evento h3{
	font-size: 1.8em;
	font-weight: 300;
	color: var(--primario);
	margin-bottom: 10px;
}
.contenido-evento table {
	border: none;
	font-size: 1.4em;
	font-weight: 300;
}
.contenido-evento strong {
	font-weight: 600;
}
.contenido-evento a {
	color: var(--primario);
	text-decoration: underline;
	transition: all ease .3s;
}
.contenido-evento a:hover {
	opacity: .7;
}
.contenido-evento table td{
	padding: 10px;
	border: 1px solid #ccc;
}
.contenido-evento table th{
	padding: 10px;
	border: 1px solid #ccc;
	background: #f6f5f5;
}

ol {
	list-style-type: auto;
}
ol li {
    font-size: 1.6em;
    font-weight: 300;
    color: #333;
    line-height: 24px;
    margin-left: 24px;
    position: relative;
}
.google-link {
	color: var(--secundario)
}

.w-100{
    width:100%;
}

.botonera-box a.btn.secundario_borde {
    margin-right: auto;
    margin-top: 50px;
	min-width: 164px;
}

.icono-item-postulantes {
    display: flex;
}

.contacto-desplegable-movil .fln-cerrar-light {
    position: absolute;
    right: 8px;
    font-size: 20px;
    top: 10px;
}

.contrasena-contenedor {
	padding: 50px 50px 20px;
}
span.usuario-colegio {
	margin-bottom: 4px !important;
	color: #333d47 !important;
	font-weight: 300 !important;
}

.pagina-error {
    position: absolute;
    color: #fff;
	padding: 0 15px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: rgba(0,0,0,.1);
}

.pagina-error h1, 
.pagina-error h2,
.pagina-error h3,
.pagina-error p {
	color: #fff;
	text-align: center;
}
.pagina-error h1 {
	margin-top: 30vh;
	margin-bottom: 20px;
}
.pagina-error h3 {
	line-height: 28px;
}
.th-comentarios {
	width: 30%;
}

td .fln-check.invalido:after {
	border: 1px solid #ea5233 !important;
}

label.label-anim {
    position: absolute;
    transform: translate(10px, -25px);
    z-index: 10;
	transition: all ease .3s;
}
label.label-anim.activo {
    position: absolute;
    transform: translate(0, -55px);
    z-index: 10;
}
.disabled-hijos input {
	pointer-events: none;
	background: #f5f5f5 !important;
}
.disabled-hijos .botonera-agregar {
	display: none;
}
.boton_disabled {
	pointer-events: none;
	opacity: .6;
}
.form__checkbox__item.invalido:after {
    outline: 1px solid #F00 !important;
}

.mt-2 {
    margin-top: 20px;
}

.tags{
    display: flex;
    flex-direction: row;
    padding: 5px 0;
    margin-top: 20px;
    overflow-x: auto;
}
.tag{
    padding: 5px 10px;
    background-color: #e5e5e5;
    font-size: 14px;
    margin-right: 15px ;
}

.bibliotecaTexto{
    font-size: 12px;
    margin-bottom: 10px;
}
.fln-menu:before {
    display: none;
}
.menu_bottom {
    position: fixed;
    display: flex;
    bottom: 0;
	left: 0;
    flex-direction: row;
    background: #fff;
    width: 100%;
    padding: 0px;
    justify-content: space-between;
	z-index: 10000;
    box-shadow: 10px 10px 10px 10px rgba(0,0,0,.1);
}
.menu_bottom a {
    flex-grow: 1;
    padding: 10px 10px;
    min-width: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
	justify-content: space-between;
    font-size: 9px;
    padding-bottom: 15px;
}

.menu_bottom svg {
    margin-bottom: 5px;
}
.menu_bottom svg path {
	fill: #333;
}
.menu_bottom a.eventos.activa-eventos,
.menu_bottom a.noticias.activa-noticias,
.menu_bottom a.biblioteca.activa-biblioteca,
.menu_bottom a.mapa.activa-mapa,
.menu_bottom a.historial.activa-historial, 
.menu_bottom a.dashboard.activa-dashboard {
    background: #2A518C;
	color: #fff;
}
.menu_bottom a.eventos.activa-eventos svg path,
.menu_bottom a.noticias.activa-noticias svg path,
.menu_bottom a.biblioteca.activa-biblioteca svg path,
.menu_bottom a.mapa.activa-mapa svg path, 
.menu_bottom a.historial.activa-historial svg path, 
.menu_bottom a.dashboard.activa-dashboard svg path {
    fill: #fff;
}
.biblo-item-img {
    width: 100%;
	min-height: 100%;
    overflow: hidden;
    aspect-ratio: 384/182;
    justify-content: center;
}
.biblo-item-img img {
    transform-origin: center center;
    -webkit-transition: all ease 300ms;
    transition: all ease 300ms;
    width: 100%;
}
.noticias-item-img {
    overflow: hidden;
    aspect-ratio: 136/78;
}
.noticias-item-img img {
    width: 100%;
	min-height: 100%;
    transform-origin: center center;
    -webkit-transition: all ease 300ms;
    transition: all ease 300ms;
}
.header_modal {
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 20px;
}
.busqueda-filtros_modal {
    display: flex;
	flex-direction:column-reverse;
	width: 100%;
}
.buscador-modal {
	margin: 0;
	position: relative;
}
.buscador-modal .fln-buscar {
    margin: 0;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-40%);
    z-index: 1;
    font-size: 1.6rem;
}
.busqueda-filtros_modal a {
    font-size: 14px;
    color: var(--primario);
    margin-right: 20px;
	margin-top: 20px;
	display: block;
}
.header_caja_mas {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.header_caja_mas p{
	margin-bottom: 0;
}
.header_caja_mas .eliminar-opcion{
	font-size: 1.4em;
	margin-left: 15px;
	color: var(--secundario);
	display: none;
}
.header_caja_mas .eliminar-opcion:hover{
	text-decoration: underline;
}
/* .agregar-item-box i.icono.fln-mas {
    left: 50%;
    top: 50%;
    transform: translate(-55%, -50%);
    bottom: initial;
    right: initial;
} */
.position-relative {
	position: relative;
}
div#filtro-areas {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 100vh;
    background: rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    justify-content: center;
	padding: 15px;
}
div#filtro-areas .cerrarFiltros {
    position: absolute;
    top: 6px;
    right: 6px;
	font-size: 2rem;
}
div#filtro-areas .interior-filtro {
	position: relative;
    background: #fff;
    padding: 15px;
	padding-top: 50px;
    height: 75vh;
	box-sizing: border-box;
    box-shadow: 4px 4px 10px rgb(0 0 0 / 25%);
    border-radius: 5px;
	width: 100%;
}
div#filtro-areas .interior-filtro .multibuscador {
    width: 100%;
}
div#filtro-areas .interior-filtro ul {
    overflow-y: auto;
    height: calc(100% - 65px);
    width: 100%;
    margin: 0;
    padding-right: 10px;
}
div#filtro-areas .interior-filtro ul li {
    margin: 0;
	padding: 10px 0;
}
div#filtro-areas .interior-filtro ul li label {
	font-size: 1.4rem;
	margin-left: 5px;
}
div#filtro-areas .interior-filtro .multibuscador input {
	font-size: 1.4rem;
}
#filtro-areas ul li::marker,
#filtro-areas ul li::before {
	display: none;
}
.multiSel span {
    background: #E8FDEF;
    border: 1px solid #accab6;
    margin: 6px;
    margin-left: 0;
	margin-right: 10px;
    padding: 3px 7px;
    position: relative;
    top: 0;
    border-radius: 4px;
    display: inline-flex;
    font-size: 1.4em;
    color: #333;
}
.multiSel span a {
	display: flex;
    align-items: center;
}
.multiSel span a:before {
	margin-right: 5px;
}
.radio_box_pregunta{
	padding-left: 26px;
}
.radio_box_pregunta p{
	font-style: italic;
    font-family: sans-serif;
    color: #8c8c8c;
}
/* .form__radio__item.invalido::after {
    border: 1px solid red;
} */


.around {
    justify-content: space-around !important;
}


@media(max-width: 1024px){
	.header {
		padding: 15px;
	}
	.login .logo {
		margin-bottom: 40px;
	}
	.login .form__grupo {
		margin-bottom: 20px;
	}
	.login #entrar.btn {
		margin: 20px 0 10px;
	}
	.login .link_form {
		margin-bottom: 40px;
	}
	.contenedor-owl-carousel {
		min-height: unset;
	}
	.fln-menu {
		display: flex !important;
		font-size: 30px;
		margin-left: 20px;
		padding-left: 15px;
		border-left: 1px solid #999;
	}
	nav.menu ul {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		padding: 20px;
	}
	nav.menu {
		position: fixed;
		top: 74px;
		right: 0;
		left: 0;
		bottom: -100vh;
		width: 100%;
		background: var(--primario);
		border-right: none;
		box-shadow: 0 10px 10px rgba( 0 , 0 , 0 , .2);
		padding: 15px;
		z-index: 1100;
		display: none;
	}
	nav.menu.menu_abierto {
		display: block !important;
		padding: 15px;
	}
	.navegacion ul li.activo a,
	.navegacion ul li a:hover  {
		text-decoration-thickness: 1px;
		text-underline-offset: 2px;
		color: white;
	}
	.navegacion a {
		margin-bottom: 15px;
		font-size: 20px;
		color:white;
	}

	.usuario_box a {
		padding-right: 0 !important;
		padding-left: 25px !important;
		margin-bottom: 0;
	}
	.header-menu-derecha {
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		/* position: relative; */
	}
	#info-usuario_datos a {
		padding-left: 0 !important;
		display: block;
		text-align: right;
		font-size: 14px;
	}
	#info-usuario_datos a svg {
		display: none;
	}
	div#info-usuario_datos {
		right: -20px;
	}
	.navegacion ul li {
		position: initial !important;
		margin-right: 0;
	}
	.contacto-desplegable {
		max-width: 95vw;
		right: 0;
		top: 20px;
	}
	#desplegar-correo-movil {
		display: flex !important;
		font-size: 2.3rem;
	}
	#desplegar-correo-movil span {
		display: flex !important;
	}
	.contacto-desplegable-movil {
		padding: 5px 25px 25px;
		background: white;
		box-shadow: 0 0 10px rgb(0 0 0 / 10%);
		position: absolute;
		z-index: 10;
		width: 550px;
		max-width: 95vw;
		right: 10px;
		left: 10px;
		top: 50px;
	}
	div#contacto-desplegable-movil {
		width: 100vw;
		height: 100vh;
		position: fixed;
		background: rgba(0,0,0,.8);
		z-index: 10;
	}
	.contacto-desplegable-movil .btn.enviar-mensaje {
		width: 100%;
	}
	.footer {
		flex-direction: column;
		align-items: center;
	}
	.logo-footer {
		flex-direction: column;
		align-items: center;
		margin: 0 0 10px 0;
	}
	.footer .logo-footer img {
		margin: 0 0 20px 0;
	}
	.eventos-cabecera {
		flex-direction: column;
		align-items: flex-start;
	}
	.eventos-selectores {
		flex-direction: row;
		align-items: flex-start;
		margin-top: 25px;
		width: 100%;
		flex-wrap: nowrap;
		justify-content: space-between;
	}
	.eventos-selectores .form__grupo {
		margin: 0 0 25px 0;
		width: calc( 50% - 10px);
	}
	.eventos-selectores select {
		width: 100%;
	}
	.owl-item .sombra {
		height: 100%;
		width: 100%;
	}
	.owl-carousel .owl-item img {
		filter: brightness(0.6);
	}
	.eventos-cabecera {
		padding: 23px 0 15px;
	}
	.fila-xs-reverse {
		flex-direction: column-reverse;
	}
	.evento-interior .contenido-evento {
		padding: 0;
		margin: 30px 0 10px;
	}
	.datos-eventos-detalle {
		margin: 10px 0 40px;
	}
	.botonera-eventos {
		padding-left: 0 !important;
	}
	.botonera-eventos a {
		width: 100%;
		margin-bottom: 20px;
	}
	.botonera-eventos a:last-of-type {
		margin-bottom: 0;
	}
	.botonera-eventos {
		padding-left: 0 !important;
		flex-direction: column;
	}
	.cierre_pronto {
		display: revert;
		position: relative;
	}
	.cierre_pronto:after {
		position: absolute;
		right: 20px;
		top: 40%;
	}
	.buscador-tabla-padre {
		padding: 0 !important;
	}
	.tabs-contenido h4#total-evento {
		padding: 0;
		margin: 10px 0;
	}
	.leyenda-tabs {
		/* flex-direction: column;
		align-items: flex-start; */
		justify-content: flex-start;
		flex-wrap: wrap;
		margin-bottom: 20px;
	}
	.leyenda-tabs .icono-item {
		margin-bottom: 15px;
	}
	.leyenda-tabs .separador {
		margin-bottom: 15px;
	}

	.leyenda-tabs .cierre_pronto {
		margin-right: 20px;
	}
	.leyenda-tabs .cierre_pronto:after {
		right: -10px;
		top: 35%;
	}
	.icono-item-postulantes {
		margin-top: 10px;
		flex-wrap: wrap;
	}
	a#btn-crear {
		width: 100% !important;
		margin: 20px 0 !important;
		max-width: initial !important;
	}
	.evento-item-texto {
		height: auto;
	}
	.usuario_box {
		display: none;
	}
	.usuario_box.usuario_box--movil {
		/* display: flex !important; */
		justify-content: center;
		margin-bottom: 20px;
		display: none !important;
	}
	.usuario_box.usuario_box--movil a#info-usuario {
		padding: 0 !important;
	}
	.usuario_box.usuario_box_datos--movil #info-usuario_datos {
		display: block !important;
		position: initial;
		box-shadow: none;
		width: 100%;
		min-width: initial;
		padding: 20px;
		background: var(--secundario);
	}
	div#info-usuario_datos:before {
		display: none;
	}
	.usuario_box.usuario_box_datos--movil {
		display: block !important;
	}
	.avatar-box.colegio {
		width: 100%;
	}
	.datos-perfil.datos-colegio {
		margin-left: 0;
		padding: 20px 0 10px;
	}
	#tabs {
		margin-top: 0;
	}
	h1 {
		font-size: 2.2em !important;
	}
	h1.mi-colegio-titulo {
		padding: 0;
		margin-bottom: 20px;
	}
	.tabs-contenido.tab-con-msj .tab-interior {
		padding: 0;
	}
	.lista-colegios {
		flex-direction: row;
	}
	.especialidad-item-box {
		width: 100%;
	}
	.modal-contenedor {
		top: 74px;
		position: fixed;
	}
	.caja-especialidades {
		margin: 20px 10px auto;
	}
	.especialidad-box {
		height: auto;
	}
	main {
		padding-top: 30px;
	}
	.avatar-box.colegio img {
		width: 100%;
	}
	.btn-formulario-buscador {
		margin-top: 0;
		margin-bottom: 20px;
	}
	.usuario_box:after {
		display: none;
	}
	.btn {
		width: 100% !important;
		margin: 20px 0;
	}
	.agregar-item-box {
		margin-bottom: 10px;
	}
	.caja-especialidades form {
		height: 60vh;
	}
	h1.mi-cuenta-titulo {
		margin-bottom: 10px;
	}
	.eventos-cabecera h2 {
		font-size: 2.4em;
	}
	div#msn-more {
		margin: 0;
	}
	.inicio_textos {
		margin-bottom: 20px;
	}
	.owl-item a {
		position: relative;
		height: 100%;
	}
	#info-usuario_datos {
		background: var(--primario);
	}
	#info-usuario_datos span {
		color: white !important;
		text-align: end;
	}
	.owl-item > div {
		height: 100%;
	}
	.cerrar-sesion-movil {
		display: block !important;
	}
	.banner-evento .sombra {
		position: absolute;
		background: linear-gradient(180deg, rgba(51, 51, 51, .3) 0%, #000000 100%);
	}
	table span.tooltiptext {
		display: none;
	}
	.tabla-overflow table th:nth-child(2) {
		min-width: 120px;
	}
	.tabla-overflow table td {
		padding: 10px;
	}
	.navegacion a:hover {
		color: white !important;
	}
	.btn {
		min-height: 60px;
	}
	#tabs li a {
		font-weight: 300;
	}
	.tabla-overflow {
		overflow-y: scroll;
		width: 100%;
	}
	h1.mi-colegio-titulo {
		padding: 0 15px;
	}
	.paddings-xs {
		padding: 0 15px !important;
	}
	.contrasena-contenedor {
		padding: 30px 20px;
	}
	.img-login {
		background: url(/img/fondo_login.jpg) no-repeat right center;
		background-size: cover;
	}
	.titulo-banner-evento h1 {
		margin: auto;
		padding: 0;
	}
	#tabs .tabs-contenido {
		transition: all ease .3s;
		transform: scaleY(0);
		transform-origin: top;
	}
	#tabs .tabs-contenido[aria-hidden="false"] {
		transform: scale(1);
	}
	#tabs li {
		color: #A6A6A6;
		background: #fff;
		font-size: 16px;
		list-style: none;
		text-transform: uppercase;
		box-shadow: 0 7px 10px rgb(0 0 0 / 20%);
		border-radius: 5px;
		margin-bottom: 5px;
		margin-top: 5px;
	}
	#tabs li a {
		padding: 15px 10px;
		display: block;
		width: 100%;
	}
	#tabs li.ui-state-active {
		color: var(--secundario);
	}
	.tabs-contenido.sombra-interno .div-sombra {
		margin: 0;
		box-shadow: none;
		padding: 20px 5px;
	}
	#tabs .tabs-contenido, .div-sombra {
		padding: 25px 22px;
	}
	#tabs .tabs-contenido, .div-sombra {
		box-shadow: none;
	}
	.banner-evento img {
		min-width: 100%;
		min-height: inherit;
	}
	.titulo-banner-evento {
		top: 0;
		display: flex;
		align-items: center;
		height: 100%;
		padding: 15px;
	}
	.pagina-error h1 {
		margin-top: 170px;
	}
	.inicio .leyenda-tabs {
		margin-top: 30px !important;
		justify-content: center;
	}
}
@media(max-width:767px){
	.owl-item .sombra {
		align-items: flex-start;
	}
	.img-login {
		background: url(/img/fondo_login.jpg) no-repeat right center;
		background-size: 500%;
		background-position-x: left;
	}
}