/*
	Theme Name: Vikki Theme
	Text Domain: vikki_theme
*/

/* ============================================
   1. FUENTES Y ANIMACIONES
   ============================================ */
@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Black.woff2') format('woff2'),
        url('./fonts/Roboto-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Bold.woff2') format('woff2'),
        url('./fonts/Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Italic.woff2') format('woff2'),
        url('./fonts/Roboto-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Light.woff2') format('woff2'),
        url('./fonts/Roboto-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Medium.woff2') format('woff2'),
        url('./fonts/Roboto-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Regular.woff2') format('woff2'),
        url('./fonts/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@keyframes pulse {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes pulseOrange {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulseEdit {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.5);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 8px rgba(0, 180, 216, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 180, 216, 0);
    }
}

/* ============================================
   2. RESET Y NORMALIZACIÓN
   ============================================ */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    border: 0;
    font-style: normal;
    font-weight: normal;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

body {
    overflow-x: hidden;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

img {
    border: none;
}

*:focus {
    outline: none;
}

.is_clear {
    clear: both;
}

.ls-shadow {
    display: none !important;
}

.alignright {
    float: right;
    margin-left: 30px;
    margin-bottom: 15px;
}

.alignleft {
    float: left;
    margin-right: 30px;
    margin-bottom: 15px;
}

.aligncenter {
    margin: 0 auto;
    text-align: center;
    display: inherit;
}

/* ============================================
   3. HEADER Y NAVEGACIÓN
   ============================================ */
header {
    width: 100%;
    position: absolute;
    top: 55px;
    z-index: 999;
}

.isLogo {
    float: left;
}

.isLogo img {
    width: auto;
    height: 60px;
}

.icoNav {
    float: right;
    width: 35px;
    height: 35px;
    padding: 5px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 15px;
    cursor: pointer;
}

.icoNav span {
    width: 100%;
    height: 2px;
    background: #fff;
    margin-top: 3px;
    margin-bottom: 3px;
    display: block;
}

.iconReload {
    background-image: url(images/icoReload.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
}

/* Modal Styles */
.vikki-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.vikki-modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.vikki-modal-content {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.vikki-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e4e8f0;
}

.vikki-modal-header h3 {
    margin: 0;
    font-size: 16px;
    color: #13235B;
}

.vikki-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #8e97b5;
}

.vikki-modal-body {
    padding: 20px;
    font-size: 14px;
    color: #555e7a;
    line-height: 1.5;
}

.vikki-modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #e4e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.vikki-btn-cancel,
.vikki-btn-ok {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    font-weight: 600;
}

.vikki-btn-cancel {
    background: #f1f1f1;
    color: #555e7a;
}

.vikki-btn-ok {
    background: #E8385B;
    color: #fff;
}

.containerNav {
    width: 300px;
    background: #253468;
    top: 0px;
    right: 0px;
    z-index: 99999;
    right: -300px;
    height: 100%;
    position: fixed;
    box-sizing: border-box;
    padding-right: 52px;
    min-height: 759px;
}

.containerNav .closeNav {
    right: 52px;
    width: 13px;
    height: 13px;
    background-image: url(images/icoClose.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    top: 47px;
    position: absolute;
    cursor: pointer;
}

.btnLogin {
    color: #fff;
    font-weight: 300;
    font-size: 13px;
    background-image: url(images/icoLogin.svg);
    background-repeat: no-repeat;
    background-position: 0px 1px;
    background-size: 13px;
    margin-top: 98px;
    padding-left: 25px;
    text-decoration: none;
    letter-spacing: 0.3px;
    font-weight: bold;
    float: right;
}

.containerItemNav {
    width: 100%;
    margin-top: 88px;
    text-align: right;
}

.containerItemNav ul li {
    list-style: none;
    margin-bottom: 30px;
}

.containerItemNav ul li a {
    color: #fff;
    font-weight: 300;
    font-size: 21px;
    line-height: 20px;
    text-decoration: none;
    display: block;
    letter-spacing: 0.2px;
}

.containerItemNav ul li a:hover {
    color: #FDC947;
}

.containerItemNav strong {
    color: #ED385B;
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
    text-decoration: none;
    display: block;
    padding-bottom: 33px;
}

.containerSocialNav {
    position: absolute;
    right: 52px;
    bottom: 72px;
    text-align: right;
}

.containerSocialNav strong {
    color: #ED385B;
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
    text-decoration: none;
    display: block;
    padding-bottom: 28px;
}

.icoSocialNav a {
    margin-left: 12px;
}

.icoSocialNav a:nth-child(1) img {
    height: 23px;
}

.icoSocialNav a:nth-child(2) img {
    height: 23px;
}

.icoSocialNav a:nth-child(3) img {
    height: 17px;
}

.icoSocialNav a:nth-child(4) img {
    height: 20px;
}

.isDatosLogin {
    float: left;
    margin-top: 98px;
    text-align: right;
    margin-bottom: -70px;
    width: 100%;
}

.isNameLogin {
    color: #FFCA47;
    font-weight: 300;
    font-size: 13px;
    background-image: url(images/userActivo.svg);
    background-repeat: no-repeat;
    background-position: 0px 1px;
    background-size: 13px;
    padding-left: 25px;
    text-decoration: none;
    letter-spacing: 0.3px;
    font-weight: bold;
    float: right;
}

.isOptionsLogin {
    color: #fff;
    font-weight: 300;
    font-size: 11px;
    background-image: url(images/btnOpciones.svg);
    background-repeat: no-repeat;
    background-position: 0px 5px;
    background-size: 13px;
    padding-left: 20px;
    text-decoration: none;
    letter-spacing: 0.3px;
    float: right;
    margin-top: 8px;
    cursor: pointer;
    line-height: 11px;
}

.isNavLogin {
    width: 185px;
    float: right;
    margin-right: -52px;
    margin-top: 15px;
    display: none;
}

.linkPerfil {
    color: #FFCA47;
    font-weight: 300;
    font-size: 13px;
    background-image: url(images/userActivo.svg);
    background-repeat: no-repeat;
    background-position: 200px 12px;
    background-size: 13px;
    text-decoration: none;
    letter-spacing: 0.3px;
    font-weight: bold;
    float: right;
    width: 100%;
    padding-right: 80px;
    padding-top: 12px;
    padding-bottom: 12px;
    box-shadow: 4px 8px 10px #1C274E;
}

.linkPerfil:hover {
    background: #F5F5F5 url(images/userHover.svg) !important;
    background-repeat: no-repeat !important;
    background-position: 200px 12px !important;
    background-size: 13px !important;
    color: #253468 !important;
}

.linkSesion {
    color: #FFCA47;
    font-weight: 300;
    font-size: 13px;
    background-image: url(images/btnCerrarSesion.svg);
    background-repeat: no-repeat;
    background-position: 200px 15px;
    background-size: 13px;
    text-decoration: none;
    letter-spacing: 0.3px;
    font-weight: bold;
    float: right;
    width: 100%;
    padding-right: 80px;
    padding-top: 12px;
    padding-bottom: 12px;
    box-shadow: 4px 8px 10px #1C274E;
}

.linkSesion:hover {
    background: #F5F5F5 url(images/sesionHover.svg) !important;
    background-repeat: no-repeat !important;
    background-position: 200px 15px !important;
    background-size: 13px !important;
    color: #253468 !important;
}

/* ============================================
   4. CONTENEDORES PRINCIPALES
   ============================================ */
.is_centeredBeneficios {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    padding: 0 30px;
}

.is_centeredServiciosListado {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    padding: 0 30px;
}

.is_centeredUbicacion {
    max-width: 1245px;
    margin: 0 auto;
    position: relative;
    padding: 0 30px;
}

.is_centeredServicios {
    max-width: 1245px;
    margin: 0 auto;
    position: relative;
    padding: 0 30px;
}

.is_centeredNovedades {
    max-width: 1245px;
    margin: 0 auto;
    position: relative;
    padding: 0 30px;
}

.is_centered {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 30px;
}

.is_centeredFull {
    width: 93%;
    margin: 0 auto;
    position: relative;
}

/* ============================================
   5. PÁGINA PRINCIPAL - SLIDER
   ============================================ */
.isContainerSlider {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.isContainerSlider img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.isContainerSlider:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.3);
}

.isLayerSlider {
    width: 90%;
    text-align: center;
    padding-left: 5%;
    padding-right: 5%;
    position: absolute;
}

.isLayerSlider h1 {
    color: #fff;
    font-weight: 600;
    font-size: 55px;
    line-height: 50px;
}

.isLayerSlider h2 {
    color: #fff;
    font-weight: 300;
    font-size: 21px;
    line-height: 21px;
    padding-top: 25px;
    padding-bottom: 15px;
}

.isLayerSlider a {
    color: #fff;
    font-weight: 600;
    font-size: 21px;
    line-height: 19px;
    text-decoration: none;
    background: #E73A5C;
    border-radius: 10px;
    padding: 10px 35px;
    display: table;
    margin: 0 auto;
    margin-top: 22px;
}

.isButtonSlider {
    width: 30px;
    height: 55px;
    position: absolute;
    bottom: 30px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    background-image: url(images/btnSlider.svg);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    animation: pulse 1s infinite;
    animation-direction: alternate;
    animation-delay: alternate;
}

/* ============================================
   6. PÁGINA NOSOTROS
   ============================================ */
.isContainerNosotros {
    width: 100%;
    height: auto;
    padding-top: 100px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.isContainerNosotros:before {
    content: "";
    width: 190px;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url(images/icoArrow.svg);
    background-repeat: no-repeat;
    background-position: center right;
}

.isContainerNosotros:after {
    content: "";
    width: 110px;
    height: 490px;
    position: absolute;
    top: -120px;
    right: 40px;
    background-image: url(images/icoSigno.svg);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 100%;
}

.isContainerNosotros h2 {
    font-weight: 700;
    color: #18285F;
    font-size: 28px;
    line-height: 30px;
    text-transform: uppercase;
    display: block;
    padding-bottom: 55px;
}

.is_rowNosotros {
    color: #16265E;
    font-size: 30px;
    line-height: 35px;
    display: block;
    position: relative;
    z-index: 99;
}

.is_rowNosotros p {
    margin: 0px;
}

.isPageNosotros {
    width: 100%;
    height: auto;
    padding-top: 115px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.isPageNosotros:before {
    content: "";
    width: 14%;
    height: 1000px;
    position: absolute;
    top: -285px;
    left: 0px;
    background-image: url(images/icoArrow.svg);
    background-repeat: no-repeat;
    background-position: center right;
}

.isPageNosotros h2 {
    font-weight: 700;
    color: #18285F;
    font-size: 22px;
    line-height: 22px;
    text-transform: uppercase;
    display: block;
    padding-bottom: 50px;
}

.is_rowPageNosotros {
    color: #16265E;
    font-size: 30px;
    line-height: 34px;
    font-weight: 300;
    display: block;
}

.is_rowPageNosotros p {
    margin: 0px;
}

.is_containerValores {
    width: 1030px;
    margin: 0 auto;
    margin-top: 118px;
}

.is_rowValores {
    width: 100%;
    height: auto;
    padding-top: 17px;
    position: relative;
}

.is_containerValores h3 {
    font-weight: 700;
    color: #18285F;
    font-size: 21px;
    line-height: 21px;
    text-transform: uppercase;
    display: block;
    padding-bottom: 50px;
}

.isColumnValores {
    width: 25%;
    height: auto;
    position: relative;
    float: left;
    text-align: center;
    margin-bottom: 68px;
}

.isColumnValores .isImgValores {
    width: 100%;
    height: 130px;
}

.isColumnValores .isImgValores img {
    display: block;
    margin: 0 auto;
    width: 180px;
    height: 125px;
}

.isColumnValores h4 {
    font-weight: 700;
    color: #253468;
    font-size: 18px;
    line-height: 18px;
    display: block;
    padding-top: 23px;
    letter-spacing: -0.3px;
}

.isTxtValores {
    color: #253468;
    font-size: 14px;
    line-height: 21px;
    display: block;
    padding-top: 9px;
    letter-spacing: -0.1px;
}

.isTxtValores p {
    margin: 0px;
}

.isColumnValores:nth-child(3n) {
    margin-right: 0px;
}

.isContainerEquipo {
    width: 100%;
    position: relative;
    background: #F2F2F2;
}

.isLeftEquipo {
    float: left;
    width: 50%;
    height: 100%;
    position: absolute;
}

.isLeftEquipo h2 {
    color: #E8385B;
    font-weight: 700;
    font-size: 28px;
    line-height: 28px;
    text-transform: uppercase;
    display: block;
}

.isTxtEquipo {
    color: #394675;
    font-size: 14px;
    line-height: 21px;
    display: block;
    padding-top: 38px;
    padding-bottom: 45px;
    letter-spacing: -0.1px;
    padding-left: 3px;
}

.isTxtEquipo p {
    margin: 0px;
}

.isLeftEquipo a {
    background: #E73A5C;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    color: #fff;
    padding: 4px 27px;
    font-size: 12px;
    padding-bottom: 5px;
    font-style: normal;
    display: table;
    text-decoration: none;
}

.isWrapperEquipo {
    width: 390px;
    display: flex;
    justify-content: center;
    align-items: center;
    float: right;
    padding-right: 125px;
    height: 100%;
}

.isRightEquipo {
    float: right;
    width: 50%;
}

.isRightEquipo img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   7. PÁGINA SERVICIOS
   ============================================ */
.isContainerServicios {
    width: 100%;
    height: auto;
    padding-top: 55px;
    padding-bottom: 30px;
    position: relative;
    background: #243367;
}

.isContainerServicios h2 {
    font-weight: 700;
    color: #fff;
    font-size: 28px;
    line-height: 30px;
    text-transform: uppercase;
    display: block;
    padding-bottom: 65px;
}

.is_rowServicios {
    width: 100%;
}

.is_rowServicios a {
    display: block;
    text-decoration: none;
}

.is_rowServicios .is_columServicios {
    width: 390px;
    height: 528px;
    background: #FFFFFF;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.is_imageServicios {
    width: 100%;
    height: 265px;
    position: relative;
}

.is_imageServicios div {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
}

.is_contentServicios {
    width: 100%;
    padding-left: 70px;
    padding-right: 70px;
    box-sizing: border-box;
    padding-top: 25px;
}

.is_contentServicios span {
    color: #243367;
    font-size: 22px;
    line-height: 20px;
    display: block;
    background-image: url(images/icoServicios.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 13px;
    padding-left: 25px;
}

.is_contentServicios strong {
    color: #243367;
    font-weight: 600;
    font-size: 28px;
    line-height: 30px;
    display: block;
    padding-top: 10px;
}

.is_contentServicios div {
    color: #353434;
    font-size: 14px;
    line-height: 21px;
    display: block;
    padding-top: 15px;
    padding-bottom: 10px;
}

.is_contentServicios div p {
    margin: 0px;
}

.is_contentServicios i {
    background: #E73A5C;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    color: #fff;
    padding: 4px 15px;
    font-size: 12px;
    padding-bottom: 5px;
    margin-top: 5px;
    font-style: normal;
    display: table;
}

.isContainerServicios .slick-slide {
    margin: 0 17px;
}

.btnVerServicios,
.list_invitar_personas {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btnVerServicios {
    background: none;
    border-radius: 5px;
    font-weight: 600;
    color: #fff;
    padding: 2px 15px;
    font-size: 14px;
    padding-bottom: 2px;
    font-style: normal;
    display: table;
    border: 2px solid #fff;
    text-decoration: none;
    margin: 0 auto;
    margin-top: 25px;
}

.isContainerListadoServicios {
    width: 100%;
    float: right;
    padding-top: 115px;
    padding-bottom: 115px;
    background: #F2F2F2;
}

.isContainerListadoServicios ul li {
    width: 100%;
    list-style: none;
    background: #fff;
    margin-bottom: 28px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.isImageListadoServicios {
    width: 520px;
    float: left;
    position: relative;
}

.isImageListadoServicios:before {
    content: "";
    width: 90%;
    height: 110%;
    background-image: url(images/bgContacto.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 100%;
    position: absolute;
    right: -220px;
    top: 0px;
    transform: rotate(180deg);
    top: -30px;
}

.isImageListadoServicios img {
    width: 100%;
    height: auto;
    display: block;
}

.isContentListadoServicios {
    height: 100%;
    position: absolute;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 50px;
}

.isContentListadoServicios h2 {
    display: block;
    font-weight: 600;
    color: #253468;
    font-size: 42px;
    padding-top: 20px;
    line-height: 40px;
}

.isTxtListadoServicios {
    color: #394675;
    font-size: 20px;
    line-height: 28px;
    display: block;
    padding-top: 30px;
    padding-bottom: 35px;
    letter-spacing: -0.1px;
    padding-left: 2px;
}

.isTxtListadoServicios p {
    margin: 0px;
}

.isContentListadoServicios a {
    background: #E73A5C;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    color: #fff;
    padding: 8px 30px;
    font-size: 14px;
    padding-bottom: 8px;
    font-style: normal;
    display: table;
    text-decoration: none;
}

.isWrapperListadoServicios {
    width: 425px;
}

.isContainerListadoServicios ul li:nth-child(2n) .isImageListadoServicios:before {
    content: "" !important;
    left: -220px !important;
    right: inherit !important;
    transform: rotate(0deg) !important;
    top: 0px !important;
}

.isContainerListadoServicios ul li:nth-child(2n) .isImageListadoServicios {
    float: right !important;
}

.isContainerListadoServicios ul li:nth-child(2n) .isContentListadoServicios {
    right: inherit !important;
    left: 0px !important;
    margin-right: 0px !important;
    margin-left: 50px !important;
    text-align: right !important;
}

.isContainerListadoServicios ul li:nth-child(2n) a {
    float: right !important;
}

.isContainerListadoServicios ul li:last-child {
    margin-bottom: 0px !important;
}

.isContainerDescription {
    width: 100%;
    height: auto;
    padding-top: 100px;
    padding-bottom: 120px;
    position: relative;
}

.isRowDescription_Title {
    width: 285px;
    float: left;
    margin-top: 10px;
}

.isRowDescription_Title span {
    color: #243367;
    font-size: 22px;
    line-height: 20px;
    display: block;
    background-image: url(images/icoServicios.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 13px;
    padding-left: 25px;
}

.isRowDescription_Title h2 {
    display: block;
    font-weight: 700;
    color: #253468;
    font-size: 42px;
    padding-top: 12px;
    line-height: 45px;
}

.isContainerDescription:before {
    content: "";
    width: 14%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url(images/icoArrow.svg);
    background-repeat: no-repeat;
    background-position: center right;
}

.isRowDescription_Content {
    width: 685px;
    float: right;
    font-weight: 300;
    color: #191818;
    font-size: 21px;
    line-height: 28px;
    display: block;
    margin-right: -115px;
    font-weight: bold;
}

.isRowDescription_Content p {
    margin: 0px;
}

/* ============================================
   8. PÁGINA NOVEDADES
   ============================================ */
.isContainerNovedades {
    width: 100%;
    height: auto;
    padding-top: 110px;
    padding-bottom: 55px;
    position: relative;
    background: #F2F2F2;
    display: block;
}

.isContainerNovedades h2 {
    font-weight: 700;
    color: #233266;
    font-size: 28px;
    line-height: 30px;
    text-transform: uppercase;
    display: block;
    padding-bottom: 50px;
}

.is_rowNovedades {
    width: 100%;
}

.is_rowNovedades a {
    display: block;
    text-decoration: none;
}

.is_rowNovedades .is_columNovedades {
    width: 415px;
    padding-left: 80px;
    padding-right: 80px;
    box-sizing: border-box;
    padding-top: 15px;
    border-right: 2px solid #253468;
    float: left;
}

.is_rowNovedades .is_columNovedades:nth-child(3) {
    border-right: 0px solid #253468 !important;
}

.is_columNovedades strong {
    color: #243367;
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
    display: block;
    padding-top: 0px;
    padding-right: 20px;
}

.is_columNovedades div {
    color: #344272;
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    display: block;
    padding-top: 30px;
    padding-bottom: 10px;
    font-weight: bold;
}

.is_columNovedades div p {
    margin: 0px;
}

.is_columNovedades i {
    background: #E73A5C;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    color: #fff;
    padding: 4px 18px;
    font-size: 12px;
    padding-bottom: 5px;
    margin-top: 15px;
    font-style: normal;
    display: table;
}

.btnVerNovedades {
    background: none;
    border-radius: 5px;
    font-weight: 500;
    color: #253468;
    padding: 2px 10px;
    font-size: 14px;
    padding-bottom: 2px;
    font-style: normal;
    display: table;
    border: 2px solid #253468;
    text-decoration: none;
    margin: 0 auto;
    margin-top: 55px;
    font-weight: bold;
}

.isContainerPageNovedades {
    width: 100%;
    height: auto;
    padding-top: 110px;
    padding-bottom: 75px;
    position: relative;
    background: #F2F2F2;
}

.isCenteredPageNovedades {
    max-width: 1260px;
    margin: 0 auto;
    position: relative;
    padding: 0 30px;
}

.is_columPageNovedades:nth-child(3n) {
    margin-right: 0px;
}

.is_columPageNovedades {
    width: 395px;
    padding-left: 70px;
    padding-right: 83px;
    box-sizing: border-box;
    padding-top: 45px;
    padding-bottom: 40px;
    background: #fff;
    margin-right: 35px;
    float: left;
    border-radius: 15px;
    margin-bottom: 35px;
}

.is_columPageNovedades a {
    text-decoration: none;
}

.is_columPageNovedades strong {
    color: #243367;
    font-weight: 600;
    font-size: 28px;
    line-height: 30px;
    display: block;
}

.is_columPageNovedades div {
    color: #353434;
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    display: block;
    padding-top: 25px;
    padding-bottom: 20px;
    font-weight: bold;
}

.is_columPageNovedades div p {
    margin: 0px;
}

.is_columPageNovedades i {
    background: #E73A5C;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    color: #fff;
    padding: 3px 15px;
    font-size: 11px;
    padding-bottom: 4px;
    margin-top: 5px;
    font-style: normal;
    display: table;
}

.isContainerRelacionadosNovedades {
    width: 100%;
    height: auto;
    padding-top: 110px;
    padding-bottom: 110px;
    position: relative;
    background: #F2F2F2;
}

.isContainerRelacionadosNovedades h3 {
    color: #243367;
    font-weight: 700;
    font-size: 28px;
    line-height: 29px;
    display: block;
    text-align: center;
    padding-bottom: 55px;
}

.isCenteredRelacionadosNovedades {
    max-width: 1260px;
    margin: 0 auto;
    position: relative;
    padding: 0 30px;
}

.is_rowRelacionadosNovedades .is_columRelacionadosNovedades:nth-child(3n) {
    margin-right: 0px;
}

.is_columRelacionadosNovedades {
    width: 395px;
    padding-left: 70px;
    padding-right: 83px;
    box-sizing: border-box;
    padding-top: 45px;
    padding-bottom: 40px;
    background: #fff;
    margin-right: 35px;
    float: left;
    border-radius: 15px;
}

.is_columRelacionadosNovedades a {
    text-decoration: none;
}

.is_columRelacionadosNovedades strong {
    color: #243367;
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
    display: block;
}

.is_columRelacionadosNovedades div {
    color: #353434;
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    display: block;
    padding-top: 25px;
    padding-bottom: 20px;
    font-weight: bold;
}

.is_columRelacionadosNovedades div p {
    margin: 0px;
}

.is_columRelacionadosNovedades i {
    background: #E73A5C;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    color: #fff;
    padding: 3px 15px;
    font-size: 11px;
    padding-bottom: 4px;
    margin-top: 5px;
    font-style: normal;
    display: table;
}

.isContainerSingleNovedades {
    width: 100%;
    height: auto;
    padding-top: 90px;
    padding-bottom: 75px;
    position: relative;
    background: #fff;
    text-align: justify;
    color: #3C4A78;
    overflow: hidden;
}

.isContainerSingleNovedades p {
    font-weight: 300;
    font-size: 20px;
    line-height: 21px;
    font-weight: bold;
    margin-bottom: 30px;
}

.isContainerSingleNovedades:after {
    content: "";
    width: 110px;
    height: 490px;
    position: absolute;
    top: -20px;
    right: 40px;
    background-image: url(images/icoSigno.svg);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 100%;
}

.isContainerSingleNovedades:before {
    content: "";
    width: 170px;
    height: 100%;
    position: absolute;
    left: 0px;
    background-image: url(images/icoArrow.svg);
    background-repeat: no-repeat;
    background-position: top right;
    top: -120px;
}

.isCenteredSingleNovedades {
    width: 890px;
    margin: 0 auto;
    position: relative;
}

.isContainerSingleNovedades h2 {
    font-weight: 300;
    color: #16265E;
    font-size: 30px;
    line-height: 35px;
    display: block;
    padding-bottom: 120px;
    font-weight: bold;
    text-align: left;
    padding-right: 50px;
}

.isContainerSingleNovedades strong {
    color: #243367;
    font-weight: 700;
    font-size: 21px;
    line-height: 20px;
    display: block;
    padding-bottom: 20px;
    padding-top: 20px;
}

.isContainerSingleNovedades img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 60px;
    margin-bottom: 60px;
}

.btnNovedades {
    border-radius: 5px;
    font-weight: 500;
    color: #253468;
    padding: 2px 25px;
    font-size: 14px;
    font-style: normal;
    display: table;
    border: 2px solid #253468;
    text-decoration: none;
    margin: 0 auto;
    margin-top: 5px;
    background-image: url(images/btnRegresar.svg);
    background-repeat: no-repeat;
    background-position: 25px 7px;
    padding-left: 35px;
    background-size: 5px;
    padding-bottom: 3px;
    font-weight: bold;
}

/* ============================================
   9. PÁGINA UBICACIÓN
   ============================================ */
.isContainerUbicacion {
    width: 100%;
    height: auto;
    padding-top: 113px;
    padding-bottom: 55px;
    position: relative;
    background: #fff;
}

.isContainerUbicacion h2 {
    font-weight: 700;
    color: #E73A5C;
    font-size: 28px;
    line-height: 30px;
    text-transform: uppercase;
    display: block;
    padding-bottom: 63px;
}

.is_rowUbicacion {
    width: 390px;
    background: #F2F2F2;
    float: left;
    border-radius: 10px;
    padding-bottom: 45px;
    position: relative;
}

.is_rowUbicacion:before {
    content: "";
    width: 23px;
    height: 48px;
    background-image: url(images/icoArrowUbicacion.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: -82px;
    top: 150px;
}

.is_imageUbicacion {
    width: 100%;
    height: 205px;
    position: relative;
}

.is_imageUbicacion div {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
}

.is_contentUbicacion {
    width: 100%;
    padding-left: 70px;
    padding-right: 70px;
    box-sizing: border-box;
    padding-top: 30px;
}

.is_contentUbicacion h3 {
    color: #243367;
    font-weight: 700;
    font-size: 21px;
    line-height: 22px;
    display: block;
    padding-top: 0px;
    padding-right: 20px;
}

.is_contentUbicacion div {
    color: #344272;
    font-size: 14px;
    line-height: 18px;
    display: block;
    padding-top: 20px;
    padding-right: 20px;
}

.is_contentUbicacion div p {
    margin: 0px;
}

.is_rowUbicacionMaps {
    width: 710px;
    height: 354px;
    background: #E8E8E8;
    float: right;
}

.isContainerPageUbicacion {
    width: 100%;
    padding-top: 115px;
    padding-bottom: 90px;
    background: #F5F5F5;
}

.is_centerPageUbicacion {
    width: 1045px;
    margin: 0 auto;
    position: relative;
}

.isMapsPageUbicacion {
    width: 100%;
    height: 575px;
    margin: 0 auto;
    position: relative;
    background: #E8E8E8;
    border-radius: 15px;
    overflow: hidden;
}

.is_rowPageUbicacion {
    width: 390px;
    background: #fff;
    float: left;
    border-radius: 10px;
    padding-bottom: 45px;
    position: relative;
    margin-top: 90px;
}

.is_rowPageUbicacion:before {
    content: "";
    width: 23px;
    height: 48px;
    background-image: url(images/icoArrowUbicacion.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: -140px;
    top: 155px;
}

.is_imagePageUbicacion {
    width: 100%;
    height: 205px;
    position: relative;
}

.is_imagePageUbicacion div {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    border-radius: 10px 10px 0px 0px;
}

.is_contentPageUbicacion {
    width: 100%;
    padding-left: 70px;
    padding-right: 70px;
    box-sizing: border-box;
    padding-top: 30px;
}

.is_contentPageUbicacion h3 {
    color: #243367;
    font-weight: 700;
    font-size: 21px;
    line-height: 22px;
    display: block;
    padding-top: 0px;
    padding-right: 20px;
}

.is_contentPageUbicacion div {
    color: #344272;
    font-size: 14px;
    line-height: 18px;
    display: block;
    padding-top: 20px;
    padding-right: 20px;
}

.is_contentPageUbicacion div p {
    margin: 0px;
}

.is_rowPageUbicacionListado {
    width: 434px;
    background: #fff;
    float: right;
    border-radius: 12px;
    position: relative;
    margin-top: 70px;
}

.is_wrapperPageUbicacionListado {
    width: 100%;
    box-sizing: border-box;
    padding-left: 73px;
    padding-right: 25px;
    padding-top: 22px;
    padding-bottom: 15px;
    height: 376px;
}

.is_rowPageUbicacionListado h2 {
    color: #E8375A;
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    display: block;
    padding-top: 5px;
    padding-bottom: 30px;
    padding-right: 70px;
}

.is_rowPageUbicacionListado ul li {
    list-style: none;
    margin-bottom: 30px;
    padding-right: 105px;
}

.is_rowPageUbicacionListado ul li:last-child {
    margin-bottom: 15px;
}

.is_rowPageUbicacionListado ul li strong {
    color: #1C2B62;
    font-weight: 500;
    font-size: 17px;
    line-height: 20px;
    display: block;
    font-weight: bold;
}

.is_rowPageUbicacionListado ul li span {
    color: #334172;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    display: block;
    font-weight: bold;
    padding-top: 3px;
}

.divScrollUbicacion {
    height: 376px;
}

/* ============================================
   10. PÁGINA CONTACTO
   ============================================ */
.isContainerContacto {
    width: 100%;
    background: #F2F2F2;
    position: relative;
}

.isLeftContacto {
    width: 65%;
    float: left;
}

.isRightContacto {
    width: 35%;
    height: 100%;
    float: right;
    position: absolute;
    right: 0px;
    display: flex;
    justify-content: left;
    align-items: center;
    background-image: url(images/bgContacto.svg);
    background-repeat: no-repeat;
    background-position: 0% 48%;
}

.isContainerForm {
    width: 745px;
    float: right;
    margin-right: 80px;
    padding-top: 113px;
    padding-bottom: 70px;
}

.isContainerForm p {
    margin: 0px;
    margin-bottom: 27px;
}

.isContainerForm .rowLeft {
    width: 320px;
    float: left;
    margin-right: 105px;
}

.isContainerForm .rowRight {
    width: 320px;
    float: left;
}

.isContainerForm p label {
    display: block;
    font-weight: 600;
    color: #253468;
    font-size: 14px;
}

.isContainerForm p input[type="text"],
.isContainerForm p input[type="tel"],
.isContainerForm p input[type="email"] {
    display: block;
    color: #253468;
    font-size: 13px;
    border: 1px solid #D9D9D9;
    border-radius: 13px;
    height: 30px;
    width: 100%;
    padding: 0px;
    margin: 0px;
    margin-top: 13px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}

.isContainerForm p textarea {
    display: block;
    color: #253468;
    font-size: 13px;
    border: 1px solid #D9D9D9;
    border-radius: 13px;
    height: 165px;
    width: 100%;
    padding: 0px;
    margin: 0px;
    margin-top: 13px;
    padding-top: 10px;
    resize: none;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}

.isContainerForm p i {
    color: #AFAFAF;
    font-style: normal;
}

.isContainerForm p input[type="submit"] {
    margin: 0px;
    background: #E73A5C;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    color: #fff;
    padding: 0px 35px;
    font-size: 14px;
    padding-bottom: 2px;
    margin-top: -8px;
    font-style: normal;
    display: table;
    cursor: pointer;
}

.isContainerDataForm {
    width: 345px;
    float: left;
    text-align: center;
    margin-left: 98px;
    margin-top: 30px;
}

.isContainerDataForm img {
    width: 340px;
    height: 140px;
    display: block;
    margin: 0 auto;
    margin-right: -15px;
}

.isContainerDataForm strong {
    display: block;
    font-weight: 700;
    color: #253468;
    font-size: 28px;
    padding-top: 32px;
    line-height: 28px;
}

.isContainerDataForm span {
    display: block;
    color: #3D3D3D;
    font-size: 14px;
    line-height: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.telContacto {
    background-image: url(images/icoPhoneContacto.svg);
    background-position: 0px 3px;
    background-repeat: no-repeat;
    background-size: 14px;
    padding-left: 22px;
    display: block;
    color: #DB0B37;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-align: left;
    width: 120px;
    margin: 0 auto;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.telEmail {
    background-image: url(images/icoEmailContacto.svg);
    background-position: 0px 5px;
    background-repeat: no-repeat;
    background-size: 14px;
    padding-left: 22px;
    display: block;
    color: #DB0B37;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-align: left;
    width: 120px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

/* ============================================
   11. PÁGINA EVENTOS / CALENDARIO
   ============================================ */
.isContainerEventos {
    width: 100%;
    padding-top: 120px;
    padding-bottom: 110px;
    background: #F5F5F5;
}

.is_rowCalendar {
    width: 1265px;
    margin: 0 auto;
    position: relative;
}

.is_rowCalendar h2 {
    display: block;
    font-weight: 700;
    color: #253468;
    font-size: 42px;
    line-height: 38px;
    text-align: center;
}

.divWrapperCalendar {
    width: 100%;
    margin-top: 75px;
}

.is_columnCalendar {
    width: 170px;
    height: 170px;
    background: #fff;
    margin-right: 12px;
    margin-bottom: 12px;
    float: left;
    position: relative;
}

.is_columnCalendar>span {
    position: absolute;
    top: 5px;
    right: 10px;
    font-weight: 600;
    color: #B1B1B1;
    font-size: 16px;
    z-index: 999;
}

.divWrapperCalendar .is_columnCalendar:nth-child(7n) {
    margin-right: 0px;
}

.is_rowCalendar .slick-prev {
    position: absolute;
    width: 15px;
    height: 30px;
    z-index: 9999;
    border: none;
    padding: 0px;
    color: transparent;
    top: 3px;
    left: 325px;
    cursor: pointer;
    background-image: url(images/leftCalendar.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100% 100%;
}

.is_rowCalendar .slick-next {
    position: absolute;
    width: 15px;
    height: 30px;
    z-index: 9999;
    border: none;
    padding: 0px;
    color: transparent;
    top: 3px;
    right: 325px;
    cursor: pointer;
    background-image: url(images/rightCalendar.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100% 100%;
}

.isCalendarSubscription {
    margin-top: 30px;
    margin-bottom: 40px;
    padding: 24px 30px;
    background: #fff;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
}

.isCalendarSubscription h4 {
    color: #253468;
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.isCalendarSubscription p {
    font-size: 16px;
    color: #253468;
    margin-bottom: 12px;
}

.isCalendarSubscription__urlWrap {
    margin-bottom: 10px;
}

.isCalendarSubscription__label {
    font-size: 12px;
    color: #777;
    display: block;
    margin-bottom: 4px;
}

.isCalendarSubscription__urlRow {
    display: flex;
    gap: 8px;
    align-items: center;
}

.isCalendarSubscription__urlInput {
    flex: 1;
    padding: 8px 10px;
    font-size: 12px;
    border: 1px solid #b0bbdd;
    border-radius: 6px;
    background: #fff;
    color: #333;
}

.isCalendarSubscription__btnCopy {
    padding: 8px 14px;
    background: #253468;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    white-space: nowrap;
}

.isCalendarSubscription__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.isCalendarSubscription__btnGoogle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: #4285F4;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.isCalendarSubscription__btnRegen {
    padding: 9px 14px;
    background: #f0f0f0;
    color: #444;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
}

.isCalendarSubscription__btnRemove {
    padding: 9px 14px;
    background: #fff0f0;
    color: #c0392b;
    border: 1px solid #f0b0b0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
}

.isCalendarSubscription__note {
    font-size: 11px;
    color: #888;
    margin-top: 8px;
}

.isCalendarSubscription__btnGenerate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #4285F4;
    color: #fff;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.isCalendarCarrusel {
    width: 100%;
    height: 170px;
    position: absolute;
    left: 0px;
    top: 0px;
}

.isImageCalendarCarrusel {
    width: 100%;
    height: 170px;
    overflow: hidden;
    position: relative;
}

.isImageCalendarCarrusel img {
    width: 100%;
    height: 170px;
}

.isImageCalendarCarrusel:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(13, 29, 70, 0.7);
    position: absolute;
}

.isTitleCalendarCarrusel {
    width: 100%;
    position: absolute;
    bottom: 50px;
    box-sizing: border-box;
    padding-left: 13px;
    padding-right: 13px;
}

.isTitleCalendarCarrusel strong {
    font-weight: 500;
    font-size: 13px;
    color: #fff;
    display: block;
    line-height: 12px;
}

.isTitleCalendarCarrusel span {
    font-weight: 300;
    font-size: 11px;
    color: #fff;
    display: block;
    line-height: 13px;
    padding-top: 2px;
}

.isCalendarCarrusel .slick-dots {
    margin-top: -30px;
    position: relative;
    z-index: 9;
}

.isCalendarCarrusel .slick-dots li button {
    width: 10px;
    height: 10px;
    margin-left: 2px;
    margin-right: 1px;
    border: 1px solid #fff !important;
}

.isCalendarCarrusel .slick-active button {
    background: none !important;
}

.isPopupCalendarCarrusel {
    width: 352px;
    position: absolute;
    background: #E8E8E8;
    left: 182px;
    z-index: 9999;
    height: 255px;
    border-bottom: 10px solid #E8E8E8;
    display: none;
}

.isPopupWrapper {
    width: 100%;
    box-sizing: border-box;
    padding-left: 20px;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-right: 45px;
}

.isCloseCalendarCarrusel {
    right: 25px;
    width: 13px;
    height: 13px;
    background-image: url(images/icoCloseCalendar.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    top: 25px;
    position: absolute;
    cursor: pointer;
}

.isPopupCalendarCarrusel strong {
    font-weight: 700;
    font-size: 18px;
    color: #242424;
    display: block;
    line-height: 20px;
}

.isPopupCalendarCarrusel span {
    font-weight: 300;
    font-size: 11px;
    color: #A2A2A2;
    display: block;
    line-height: 13px;
    padding-top: 4px;
}

.isPopupTextCalendarCarrusel {
    font-weight: 300;
    font-size: 11px;
    color: #505050;
    display: block;
    line-height: 14px;
    padding-top: 2px;
    font-weight: bold;
}

.isPopupCalendarCarrusel a {
    background: #E73A5C;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    color: #fff;
    padding: 3px 30px;
    font-size: 12px;
    padding-bottom: 4px;
    font-style: normal;
    display: table;
    text-decoration: none;
    margin: 0 auto;
    margin-top: 15px;
}

.divScroll {
    height: 255px;
}

.divWrapperCalendar .is_columnCalendar:nth-child(6) .isPopupCalendarCarrusel,
.divWrapperCalendar .is_columnCalendar:nth-child(13) .isPopupCalendarCarrusel,
.divWrapperCalendar .is_columnCalendar:nth-child(20) .isPopupCalendarCarrusel,
.divWrapperCalendar .is_columnCalendar:nth-child(27) .isPopupCalendarCarrusel,
.divWrapperCalendar .is_columnCalendar:nth-child(34) .isPopupCalendarCarrusel,
.divWrapperCalendar .is_columnCalendar:nth-child(7) .isPopupCalendarCarrusel,
.divWrapperCalendar .is_columnCalendar:nth-child(14) .isPopupCalendarCarrusel,
.divWrapperCalendar .is_columnCalendar:nth-child(21) .isPopupCalendarCarrusel,
.divWrapperCalendar .is_columnCalendar:nth-child(28) .isPopupCalendarCarrusel,
.divWrapperCalendar .is_columnCalendar:nth-child(35) .isPopupCalendarCarrusel {
    right: 182px !important;
    left: inherit !important;
}

.isContainerSingleEventos:before {
    content: "";
    width: 150px;
    height: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-image: url(images/leftPassword.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
}

.isContainerSingleEventos:after {
    content: "";
    width: 150px;
    height: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    background-image: url(images/rightPassword.svg);
    background-repeat: no-repeat;
    background-position: top left;
}

.isContainerSingleEventos {
    width: 100%;
    padding-top: 115px;
    padding-bottom: 115px;
    background: #F5F5F5;
    position: relative;
}

.isCenteredSingleEventos {
    width: 900px;
    margin: 0 auto;
    position: relative;
}

.isBannerSingleEventos {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.isBannerSingleEventos img {
    width: 100%;
    height: auto;
    display: block;
}

.isBannerSingleEventos:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(13, 29, 70, 0.5);
    position: absolute;
}

.isTitleBannerSingleEventos {
    width: 100%;
    position: absolute;
    box-sizing: border-box;
    padding-left: 5%;
    padding-right: 5%;
}

.isTitleBannerSingleEventos strong {
    color: #fff;
    font-weight: 600;
    font-size: 28px;
    line-height: 28px;
    display: block;
    text-align: center;
}

.isTitleBannerSingleEventos span {
    font-weight: 300;
    color: #fff;
    font-size: 21px;
    line-height: 21px;
    display: block;
    text-align: center;
    padding-top: 8px;
}

.isDescriptionSingleEventos {
    width: 100%;
    font-weight: 300;
    color: #464646;
    font-size: 14px;
    line-height: 17px;
    font-weight: bold;
    padding-top: 70px;
    padding-bottom: 70px;
}

.isDescriptionSingleEventos p {
    margin: 0px;
}

.isHorarioEventos {
    width: 680px;
    height: 125px;
    background: #fff;
    border-radius: 15px;
    margin: 0 auto;
    padding: 23px 40px;
    box-sizing: border-box;
}

.isHorarioEventos ul li {
    list-style: none;
    color: #223266;
    font-weight: 300;
    font-weight: bold;
    font-size: 14px;
    text-align: right;
    position: relative;
    margin-bottom: 10px;
}

.isHorarioEventos ul li:before {
    content: "";
    width: 325px;
    height: 1px;
    background: #EC8097;
    left: 105px;
    position: absolute;
    bottom: 7px;
}

.isHorarioEventos ul li i {
    font-style: normal;
    float: left;
}

.btnEventosContacto {
    background: #E73A5C;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    color: #fff;
    padding: 5px 40px;
    font-size: 17px;
    padding-bottom: 6px;
    font-style: normal;
    display: table;
    text-decoration: none;
    margin: 0 auto;
    margin-top: 40px;
}

/* ============================================
   12. CARRUSEL Y SLIDER
   ============================================ */
.isContainerCarrusel {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}

.isContainerCarrusel .slick-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.isContainerCarrusel .slick-slide div {
    width: 100%;
}

.isContainerCarrusel .slick-prev {
    position: absolute;
    width: 15px;
    height: 30px;
    z-index: 9999;
    border: none;
    padding: 0px;
    color: transparent;
    top: 45%;
    left: 50px;
    cursor: pointer;
    background-image: url(images/arrowLeft.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100%;
}

.isContainerCarrusel .slick-next {
    position: absolute;
    width: 15px;
    height: 30px;
    z-index: 9999;
    border: none;
    padding: 0px;
    color: transparent;
    top: 45%;
    right: 50px;
    cursor: pointer;
    background-image: url(images/arrowRight.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100%;
}

.slick-dots {
    list-style: none;
    text-align: center;
    margin-top: 30px;
}

.slick-dots li {
    display: inline-block;
}

.slick-dots li button {
    width: 15px;
    background: none;
    height: 15px;
    border-radius: 50%;
    padding: 0px;
    margin: 0px;
    border: 2px solid #fff;
    margin-left: 3px;
    margin-right: 3px;
    color: transparent;
    cursor: pointer;
}

.slick_4 .slick-dots .slick-active button {
    background: #FFF !important;
}

/* ============================================
   13. BENEFICIOS E INTERÉS
   ============================================ */
.isContainerBeneficios {
    width: 100%;
    padding-top: 110px;
    padding-bottom: 80px;
}

.isContainerBeneficios h2 {
    display: block;
    font-weight: 700;
    color: #253468;
    font-size: 28px;
    line-height: 28px;
}

.is_rowBeneficios {
    width: 100%;
    margin-top: 80px;
}

.is_rowBeneficios ul li {
    list-style: none;
    width: 145px;
    float: left;
    text-align: center;
    margin-right: 180px;
    margin-bottom: 50px;
    min-height: 120px;
}

.is_rowBeneficios ul li:nth-child(4n) {
    margin-right: 0px;
}

.is_rowBeneficios ul li div {
    width: 100%;
    height: 80px;
}

.is_rowBeneficios ul li div img {
    width: auto;
    height: 65px;
    display: block;
    margin: 0 auto;
}

.is_rowBeneficios ul li span {
    display: block;
    font-weight: 300;
    color: #192960;
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
}

.is_rowBeneficios ul li:last-child span {
    font-size: 18px;
    line-height: 20px;
}

.btnBeneficios {
    border-radius: 5px;
    font-weight: 500;
    color: #253468;
    padding: 2px 25px;
    font-size: 14px;
    font-style: normal;
    display: table;
    border: 2px solid #253468;
    text-decoration: none;
    margin: 0 auto;
    margin-top: 5px;
    background-image: url(images/btnRegresar.svg);
    background-repeat: no-repeat;
    background-position: 25px 7px;
    padding-left: 35px;
    background-size: 5px;
    padding-bottom: 3px;
    font-weight: bold;
}

.isContainerInteres {
    width: 100%;
    position: relative;
}

.isLeftInteres {
    float: left;
    width: 45%;
}

.isLeftInteres .isBlockInteres {
    width: 345px;
    padding-top: 115px;
    padding-bottom: 115px;
    float: right;
    text-align: center;
    margin-right: 80px;
}

.isLeftInteres .isBlockInteres h2 {
    display: block;
    font-weight: 700;
    color: #E8385B;
    font-size: 55px;
    line-height: 55px;
}

.isLeftInteres .isBlockInteres a {
    background: #253468;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    color: #fff;
    padding: 5px 40px;
    font-size: 17px;
    padding-bottom: 6px;
    font-style: normal;
    display: table;
    text-decoration: none;
    margin: 0 auto;
    margin-top: 22px;
}

.isRightInteres {
    float: right;
    width: 54%;
    height: 100%;
    position: absolute;
    right: 0px;
    background-image: url("images/blockTeInteresa.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
}

.isRightInteres img {
    width: 390px;
    height: auto;
    float: left;
    position: absolute;
    bottom: -3px;
    left: 215px;
}

/* ============================================
   14. FOOTER
   ============================================ */
footer {
    background: #253468;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 52px;
}

.isLogoFooter {
    float: left;
}

.isLogoFooter img {
    display: block;
    width: auto;
    height: 130px;
}

.is_rowFooter {
    float: right;
    padding-top: 3px;
}

.icoSocialFooter {
    float: right;
    margin-top: 10px;
}

.icoSocialFooter img {
    width: 14px;
    height: 12px;
}

.icoSocialFooter a:nth-child(1) img {
    height: 15px;
}

.icoSocialFooter a {
    margin-left: 3px;
}

.is_rowNavFooter {
    float: left;
}

.is_rowNavFooter>ul>li {
    float: left;
    list-style: none;
    margin-right: 115px;
    position: relative;
}

.is_rowNavFooter li {
    list-style: none;
}

.is_rowNavFooter>ul>li:before {
    content: "";
    width: 2px;
    height: 115px;
    background: #E8385B;
    position: absolute;
    right: -80px;
    top: 12px;
}

.is_rowNavFooter>ul>li:last-child:before {
    display: none;
}

.is_rowNavFooter>ul>li strong {
    display: block;
    color: #E8385B;
    font-weight: 500;
    font-size: 17px;
    line-height: 17px;
    padding-bottom: 18px;
}

.is_rowNavFooter {
    margin-right: 20px;
}

.is_rowNavFooter ul li a {
    display: block;
    color: #fff;
    font-weight: 300;
    font-size: 11px;
    text-decoration: none;
    margin-bottom: 6px;
}

.is_rowNavFooter ul li a:hover {
    text-decoration: underline;
}

.emailFooter {
    background-image: url(images/icoEmail.svg);
    background-position: 0px 4px;
    background-repeat: no-repeat;
    background-size: 12px;
    padding-left: 25px;
}

.telFooter {
    background-image: url(images/icoPhone.svg);
    background-position: 0px 2px;
    background-repeat: no-repeat;
    background-size: 12px;
    padding-left: 25px;
}

/* ============================================
   15. BANNER INTERNO
   ============================================ */
.isContainerBanner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.isContainerBanner img {
    width: 100%;
    height: auto;
    display: block;
}

.isContainerBanner:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.4);
}

.isLayerBanner {
    width: 90%;
    text-align: center;
    padding-left: 5%;
    padding-right: 5%;
    position: absolute;
}

.isLayerBanner h1 {
    color: #fff;
    font-weight: 600;
    font-size: 55px;
    line-height: 50px;
}

.isLayerBanner h2 {
    color: #fff;
    font-weight: 300;
    font-size: 23px;
    line-height: 21px;
    padding-top: 28px;
    padding-bottom: 15px;
}

/* ============================================
   16. PÁGINA RESERVA DE SALAS
   ============================================ */
.isContainerReservarSala {
    width: 100%;
    height: auto;
    padding-top: 115px;
    position: relative;
    background: #F5F5F5;
}

.is_centeredReservarSala {
    max-width: 1245px;
    margin: 0 auto;
    position: relative;
    padding: 0 30px;
}

.isContainerReservarSala h2 {
    font-weight: 700;
    color: #0E2556;
    font-size: 28px;
    line-height: 30px;
    text-transform: uppercase;
    display: block;
    padding-bottom: 55px;
}

.is_columReservarSala {
    width: 390px;
    height: 520px;
    background: #FFFFFF;
    border-radius: 20px;
    float: left;
    margin-bottom: 110px;
    margin-right: 37px;
    overflow: hidden;
}

.is_columReservarSala:nth-child(3n) {
    margin-right: 0px !important;
}

.is_columReservarSala a {
    display: block;
    text-decoration: none;
}

.is_imageReservarSala {
    width: 100%;
    height: 247px;
    position: relative;
}

.is_imageReservarSala div {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
}

.is_contentReservarSala {
    width: 100%;
    padding-left: 70px;
    padding-right: 70px;
    box-sizing: border-box;
    padding-top: 25px;
}

.is_contentReservarSala strong {
    color: #243367;
    font-weight: 600;
    font-size: 28px;
    line-height: 30px;
    display: block;
    padding-top: 15px;
}

.is_contentReservarSala div {
    color: #353434;
    font-size: 14px;
    line-height: 21px;
    display: block;
    padding-top: 15px;
    padding-bottom: 10px;
}

.is_contentReservarSala div p {
    margin: 0px;
}

.is_contentReservarSala i {
    background: #E73A5C;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    color: #fff;
    padding: 4px 15px;
    font-size: 12px;
    padding-bottom: 5px;
    margin-top: 15px;
    font-style: normal;
    display: table;
}

/* ============================================
   17. SINGLE SALA (CALENDARIO Y HORAS)
   ============================================ */
.isContainerSala {
    width: 100%;
    height: auto;
    padding-top: 115px;
    padding-bottom: 115px;
    position: relative;
    background: #F5F5F5;
}

.is_centeredSala {
    max-width: 1250px;
    padding: 0 30px;
    margin: 0 auto;
    position: relative;
}

.isContainerSala h2 {
    font-weight: 300;
    color: #585858;
    font-size: 26px;
    line-height: 35px;
    display: block;
    font-weight: bold;
    padding-left: 73px;
    padding-right: 80px;
    letter-spacing: 0.5px;
}

.isContainerSala h2 p {
    margin: 0px;
}

.isContainerSalaGrid {
    width: 100%;
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 30px;
    align-items: start;
}

.is_column_actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.is_rowCaracteristicas {
    padding: 40px;
    margin: 0 auto;
    position: relative;
    border-radius: 15px;
    background: #fff;
    margin-top: 70px;
}

.is_rowCaracteristicas ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.is_rowCaracteristicas ul li {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #1D2C62;
    font-size: 18px;
    line-height: 18px;
}

.is_rowCaracteristicas ul li div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.is_rowCaracteristicas ul li div img {
    height: 45px;
    display: block;
    width: 45px;
}

.is_rowCalendarSala {
    width: 100%;
    margin: 0 auto;
    position: relative;
    margin-top: 110px;
}

.is_rowCalendarSala h3 {
    display: block;
    font-weight: 600;
    color: #253468;
    font-size: 42px;
    line-height: 38px;
    text-align: center;
}

.divWrapperCalendarSala {
    margin-top: 75px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
    gap: 6px 12px;
}

.is_columnCalendarSala {
    height: 85px;
    background: #fff;
    position: relative;
    border: 1px solid #E5E5E5;
    cursor: pointer;
    box-sizing: border-box;
}

.is_columnCalendarSala:hover {
    border: 3px solid #E8385B;
}

.is_columnCalendarSala.disabled_day:hover {
    border: 1px solid #E5E5E5;
    cursor: not-allowed;
}

.is_columnCalendarSala>span {
    position: absolute;
    top: 1px;
    right: 5px;
    font-weight: 300;
    color: #B1B1B1;
    font-size: 24px;
    z-index: 999;
}

.is_columnCalendarSala:nth-child(7n) {
    margin-right: 0px;
}

.is_rowCalendarSala .slick-prev {
    position: absolute;
    width: 15px;
    height: 30px;
    z-index: 9999;
    border: none;
    padding: 0px;
    color: transparent;
    top: 3px;
    left: 325px;
    cursor: pointer;
    background-image: url(images/leftCalendar.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100% 100%;
}

.is_rowCalendarSala .slick-next {
    position: absolute;
    width: 15px;
    height: 30px;
    z-index: 9999;
    border: none;
    padding: 0px;
    color: transparent;
    top: 3px;
    right: 325px;
    cursor: pointer;
    background-image: url(images/rightCalendar.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100% 100%;
}

.ocupadaSala {
    background: #8B8B8B;
}

.is_columnCalendarSala.reservadaSala {
    background: #E8385B;
}

.is_columnCalendarSala.reservadaSala>span {
    color: #ffffff;
}

.reservadaSalaActiva {
    border: 3px solid #E8385B !important;
}

.is_columnCalendarSala.editandoReservaSala {
    background: #0096C7 !important;
    border: 2px solid #0096C7 !important;
    position: relative;
    box-shadow: 0 0 0 2px rgba(0, 180, 216, 0.3);
    animation: pulseEdit 1s ease-in-out 2;
}

.is_columnCalendarSala.editandoReservaSala span {
    color: white !important;
}

.editando-badge {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 5px;
    border-radius: 10px;
    white-space: nowrap;
    font-weight: normal;
}

.is_columnCalendarSala.editandoReservaSala:hover::after {
    content: "Editando esta reserva";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 5px;
    pointer-events: none;
}

.is_rowOptionSala {
    display: flex;
    justify-content: flex-end;
    margin: 20px 0 40px 0;
}

.is_rowOptionSala ul li {
    float: left;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 17px;
    font-weight: 300;
    font-size: 11px;
    font-weight: bold;
    color: #747474;
}

.is_rowOptionSala ul li div {
    width: 27px;
    height: 28px;
    margin-right: 10px;
}

.is_rowOptionSala ul li.legend-ocupado div.legend-color {
    background: #8B8B8B;
}

.is_rowOptionSala ul li.legend-tus-reservas {
    color: #E8385B !important;
}

.is_rowOptionSala ul li.legend-tus-reservas div.legend-color {
    background: #E8385B;
    border: 1px solid #E8385B;
}

.is_rowOptionSala ul li.legend-editando {
    color: #00B4D8 !important;
}

.is_rowOptionSala ul li.legend-editando div.legend-color {
    background: #00B4D8;
    border: 1px solid #0096C7;
}

.is_rowOptionSala ul li.legend-disponible div.legend-color {
    background: #fff;
    border: 1px solid #E8E8E8;
}

.is_rowHora {
    width: 100%;
    position: relative;
    margin-top: 40px;
    margin-bottom: 40px;
}

.is_rowHora .listHoraSet {
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(8, 1fr);
}

.is_rowHora .listHoraSet .hourItem {
    list-style: none;
}

.is_rowHora .listHoraSet .hourItem .hourText {
    font-weight: 300;
    font-weight: bold;
    color: #A0A0A0;
    font-size: 16px;
    line-height: 15px;
    display: block;
    text-align: center;
    margin-bottom: 8px;
}

.is_rowHora .listHoraSet .hourItem .hourPanel {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
}

.is_rowHora .listHoraSet .hourItem .hourSelector {
    width: 100%;
    height: 45px;
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    color: #838383;
    font-size: 14px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.2s ease;
}

.is_hora-Activo.hourSelector {
    background: #8B8B8B !important;
    border: 1px solid #8B8B8B !important;
    cursor: not-allowed !important;
    color: #fff !important;
}

.is_hora-ActivoYo.hourSelector {
    background: #E8385B !important;
    border: 1px solid #E8385B !important;
    cursor: not-allowed !important;
    color: #fff !important;
}

.is_hora-Vencida.hourSelector {
    background: #E5E5E5 !important;
    border: 1px solid #D1D1D1 !important;
    cursor: not-allowed !important;
    color: #A0A0A0 !important;
    opacity: 0.6;
}

.hourSelector.rango-seleccionado {
    background: #00B4D8 !important;
    border: 1px solid #0096C7 !important;
    color: white !important;
    box-shadow: 0 0 0 1px rgba(0, 180, 216, 0.3);
}

.hourSelector.hora-editando {
    background: #00B4D8 !important;
    border-color: #0096C7 !important;
    animation: pulseOrange 0.5s ease-in-out;
}

.hourSelector:not(.is_hora-Activo):not(.is_hora-ActivoYo):not(.is_hora-Vencida):hover {
    background: #E8385B !important;
    color: white !important;
    border-color: #E8385B !important;
}

.HoraActivoSet.hourSelector {
    background: #3693D7 !important;
    border: 1px solid #E4E4E4 !important;
    color: #fff !important;
}

.isHorarioSeleccionado {
    width: 800px;
    margin: 0 auto;
    margin-top: 90px;
}

.isHorarioSeleccionado ul li {
    list-style: none;
    color: #223266;
    font-weight: 300;
    font-weight: bold;
    font-size: 16px;
    text-align: right;
    position: relative;
    margin-bottom: 10px;
}

.isHorarioSeleccionado ul li:before {
    content: "";
    width: 390px;
    height: 1px;
    background: #DDDDDD;
    left: -20px;
    position: absolute;
    bottom: 7px;
    right: 0px;
    margin: 0 auto;
}

.isHorarioSeleccionado ul li i {
    font-style: normal;
    float: left;
}

.isHorarioSeleccionado-Activo ul li:before {
    background: #EC8097 !important;
}

.editando-info {
    background: #00B4D8 !important;
    color: white;
    padding: 12px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 180, 216, 0.3);
}

.warning-message {
    background: #f44336 !important;
    color: white;
    padding: 12px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}

.isContainerInvitar {
    border-radius: 15px;
    background: #fff;
    padding: 40px;
    box-sizing: border-box;
}

.isContainerInvitar__content {
    width: 100%;
    display: grid;
    grid-template-columns: 6fr 5fr;
    gap: 20px;
    align-items: flex-start;
    border-bottom: 1px solid #e4e8f0;
}

.isContainerInvitar h4 {
    color: #13235B;
    font-weight: 600;
    font-size: 18px;
    display: block;
    line-height: 14px;
    padding-bottom: 25px;
}

.is_columnFormInvitar {
    padding-right: 40px;
    position: relative;
}

.is_columnFormInvitar:before {
    content: "";
    width: 23px;
    height: 48px;
    background-image: url(images/rightReservas.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 5px;
    top: 105px;
}

.is_columnFormInvitar p {
    margin: 0px;
    margin-bottom: 15px;
}

.is_columnFormInvitar p label {
    color: #2B396C;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    display: block;
    padding-bottom: 11px;
}

.is_columnFormInvitar p input[type="text"],
.is_columnFormInvitar p input[type="email"] {
    color: #2B396C;
    font-weight: 300;
    font-size: 14px;
    line-height: 14px;
    display: block;
    width: 100%;
    border-radius: 13px;
    border: 1px solid #B7B7B7;
    height: 30px;
    padding: 0px;
    padding-left: 5%;
    box-sizing: border-box;
    padding-right: 5%;
}

.is_columnFormInvitar p input[type="checkbox"] {
    transition: linear .2s all;
    width: 11px !important;
    height: 12px !important;
    appearance: none;
    margin: 0;
    padding: 0 !important;
    display: inline-block;
    position: relative;
    border: 1px solid #B7B7B7;
    margin-right: 11px;
    cursor: pointer;
    border-radius: 3px;
    margin-top: 3px;
}

.is_columnFormInvitar p input[type="submit"] {
    background: #D3D3D3;
    border: none;
    border-radius: 8px;
    font-weight: 300;
    color: #fdfdfd;
    padding: 8px 15px;
    font-size: 15px;
    margin-top: 40px;
    font-style: normal;
    display: table;
    cursor: pointer;
}

.is_columnFormInvitar p input[type="checkbox"]:checked {
    background: #B7B7B7 !important;
}

.is_columnListadoInvitados {
    position: relative;
    margin-right: 10px;
}

.is_columnListadoInvitados ol li {
    color: #253468;
    font-weight: 300;
    font-size: 14px;
    line-height: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-right: 20px;
    position: relative;
}

.is_columnListadoInvitados ol li div {
    color: #8C8A8A;
    font-weight: 300;
    font-size: 11px;
    line-height: 14px;
    font-weight: bold;
    padding-top: 5px;
}

.isContainerClient {
    border-radius: 15px;
    background: #fff;
    padding: 40px;
    box-sizing: border-box;
}

.isContainerClient h4 {
    color: #13235B;
    font-weight: 600;
    font-size: 18px;
    display: block;
    line-height: 14px;
    margin-bottom: 25px;
}

.is_columnFormClient p label,
.is_columnFormClient div label {
    color: #2B396C;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    display: block;
    font-weight: bold;
    padding-bottom: 11px;
}

.is_columnFormClient p select,
.is_columnFormClient div select {
    color: #2B396C;
    font-size: 14px;
    line-height: 14px;
    font-weight: bold;
    width: 100%;
    border-radius: 13px;
    background: #ffffff;
    border: 1px solid #B7B7B7;
    height: 30px;
    padding: 0px;
    padding-left: 5%;
    box-sizing: border-box;
    padding-right: 5%;
}

.is_columnFormClient p input[type="text"],
.is_columnFormClient div input[type="text"] {
    color: #2B396C;
    font-size: 14px;
    line-height: 14px;
    display: block;
    width: 100%;
    border-radius: 13px;
    border: 1px solid #B7B7B7;
    height: 30px;
    padding: 0px;
    padding-left: 5%;
    box-sizing: border-box;
    padding-right: 5%;
}

.isContainerHorasConsumidas {
    border-radius: 15px;
    padding: 40px;
    background: #fff;
    box-sizing: border-box;
}

.isTitleHorasConsumidas {
    padding-left: 70px;
    padding-right: 70px;
    background: #253468;
    height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 58px;
}

.isTitleHorasConsumidas span {
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    display: block;
    font-size: 21px;
    background-image: url(images/icoReloj.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 25px;
    padding-left: 40px;
}

.is_rowCantidadHoras {
    width: 180px;
    float: left;
    margin-left: 70px;
}

.is_rowCantidadHoras strong {
    color: #13235B;
    font-weight: 600;
    font-size: 24px;
    display: block;
    line-height: 25px;
    background-image: url(images/icoHoras.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 25px;
    padding-left: 38px;
}

.is_rowCantidadHoras span {
    font-weight: 300;
    font-size: 13px;
    line-height: 14px;
    font-weight: bold;
    padding-top: 5px;
    color: #9A9A9A;
    display: block;
    padding-left: 38px;
}

.is_rowProgressHoras {
    width: 260px;
    float: right;
    margin-right: 70px;
    margin-top: 6px;
}

.is_rowProgressBarra {
    width: 100%;
    border: 1px solid #253468;
    border-radius: 10px;
    height: 14px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.is_rowProgressBarra div {
    background: #253468;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    border-radius: 10px;
}

.is_rowProgressHoras span {
    color: #e8385b;
    font-weight: 300;
    font-size: 11px;
    line-height: 13px;
    font-weight: bold;
    padding-top: 0px;
    display: block;
}

.btnConfirmarReserva {
    background: #D3D3D3;
    border: none;
    border-radius: 8px;
    color: #fdfdfd;
    padding: 16px 40px;
    font-size: 18px;
    font-style: normal;
    display: table;
    cursor: pointer;
    margin: 0 auto;
    margin-top: 65px;
    text-decoration: none;
    margin-bottom: 115px;
}

.btnConfirmarReservaActivo {
    background: #E8385B !important;
}

.btnConfirmarReservaActivo:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btnInvitarPersona-Activo {
    background: #FFBD32 !important;
    color: #000 !important;
}

.is_carruselReservasAnteriores {
    width: 100%;
    position: relative;
    padding-top: 40px;
    padding-bottom: 47px;
    background: #fff;
    padding-left: 105px;
    box-sizing: border-box;
    padding-right: 105px;
    border-radius: 15px;
}

.is_carruselReservasAnteriores strong {
    color: #13235B;
    font-weight: 500;
    font-size: 20px;
    display: block;
    line-height: 14px;
    padding-bottom: 50px;
    font-weight: bold;
}

.is_rowReservasAnteriores {
    width: 950px;
    margin: 0 auto;
    padding-left: 60px;
}

.is_columnReservasAnteriores {
    background: #F5F5F5;
    border-radius: 15px;
    position: relative;
    padding-left: 37px;
    padding-top: 13px;
    padding-bottom: 25px;
    padding-right: 45px;
    width: 253px;
    box-sizing: border-box;
}

.is_columnReservasAnteriores:hover {
    background: #253468 !important;
}

.is_columnReservasAnteriores:hover h5 {
    color: #fff !important;
}

.is_columnReservasAnteriores:hover span {
    color: #fff !important;
}

.is_columnReservasAnteriores:hover .btnEliminarReserva {
    background-image: url("images/icoRemoveHover.svg") !important;
}

.is_columnReservasAnteriores:hover .btnEditarReserva {
    background-image: url(images/icoEditHover.svg) !important;
}

.is_columnReservasAnteriores a {
    text-decoration: none;
}

.is_columnReservasAnteriores h5 {
    color: #2B396C;
    font-weight: 300;
    font-size: 20px;
    line-height: 20px;
    display: block;
    font-weight: bold;
    padding-bottom: 25px;
}

.is_columnReservasAnteriores span {
    color: #989797;
    font-weight: 300;
    font-size: 12px;
    line-height: 17px;
    font-weight: bold;
    padding-top: 0px;
    display: block;
    padding-right: 10px;
}

.is_rowReservasAnteriores .slick-prev {
    position: absolute;
    width: 25px;
    height: 45px;
    z-index: 9999;
    border: none;
    padding: 0px;
    color: transparent;
    top: 40px;
    left: -80px;
    cursor: pointer;
    background-image: url(images/leftReservas.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100% 100%;
}

.is_rowReservasAnteriores .slick-next {
    position: absolute;
    width: 25px;
    height: 45px;
    z-index: 9999;
    border: none;
    padding: 0px;
    color: transparent;
    top: 40px;
    right: -30px;
    cursor: pointer;
    background-image: url(images/rightReservas.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100% 100%;
}

.btnCalendario {
    width: 20px;
    height: 20px;
    border: 0;
    cursor: pointer;
    background-image: url("images/icoReservas.svg");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.isContainerConfirmationReserva {
    border-radius: 15px;
    margin-top: 188px;
    box-sizing: border-box;
    background: #B9B9B9;
    color: #fff;
    padding: 20px 23px;
    padding-bottom: 25px;
    letter-spacing: 0.5px;
    padding-left: 30px;
    margin-bottom: 40px;
}

.isContainerConfirmationReserva ul li {
    list-style: none;
}

.editando-info-message {
    background: #00B4D8;
    color: white;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
}

.hourSelector.rango-seleccionado {
    background: #00B4D8 !important;
    border-color: #0096C7 !important;
    color: white !important;
}

.is_columnCalendarSala.editandoReservaSala {
    background: #00B4D8 !important;
    border: 2px solid #0096C7 !important;
    position: relative;
}

.editando-badge {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 5px;
    border-radius: 10px;
    white-space: nowrap;
}

#date_reserva_current {
    transition: all 0.3s ease;
}

#date_reserva_current li i {
    transition: all 0.3s ease;
}

.resumen-seleccion {
    background: white;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid #00B4D8;
}

.resumen-seleccion .resumen-icono {
    font-size: 28px;
}

.resumen-seleccion .resumen-contenido {
    flex: 1;
}

.resumen-seleccion .resumen-contenido strong {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: #333;
}

.resumen-seleccion .resumen-fecha,
.resumen-seleccion .resumen-horas {
    display: inline-block;
    font-size: 13px;
    color: #666;
    margin-right: 15px;
}

.resumen-seleccion .resumen-nota {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 5px;
}

.resumen-seleccion.resumen-edicion {
    background: linear-gradient(135deg, #00B4D8, #0096C7);
    border-left: 4px solid #0077b6;
}

.resumen-seleccion.resumen-edicion .resumen-contenido strong {
    color: white;
}

.resumen-seleccion.resumen-edicion .resumen-horas {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    color: white;
}

.resumen-seleccion.resumen-edicion .resumen-nota {
    color: rgba(255, 255, 255, 0.8);
}

.resumen-seleccion.resumen-nueva {
    background: #f0f7ff;
    border-left: 4px solid #00B4D8;
}

.resumen-seleccion.resumen-nueva .resumen-contenido strong {
    color: #00B4D8;
}

.notificacion-reserva {
    background: white;
    padding: 16px 20px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.notificacion-reserva .notificacion-titulo {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.notificacion-reserva .notificacion-contenido {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.notificacion-reserva .notificacion-contenido ul {
    list-style: none;
}

.notificacion-reserva .notificacion-contenido strong {
    font-family: 600;
}

.notificacion-reserva .notificacion-mensaje {
    font-size: 14px;
    color: #666;
    padding-top: 8px;
    border-top: 1px solid #eee;
}

.notificacion-reserva .notificacion-mensaje ul {
    list-style: none;
}

.notificacion-reserva.edicion {
    border-left: 4px solid #00B4D8;
    background: #f0f7ff;
}

.notificacion-reserva.edicion .notificacion-titulo {
    color: #00B4D8;
}

.notificacion-reserva.seleccion {
    border-left: 4px solid #2196F3;
    background: #e3f2fd;
}

.notificacion-reserva.seleccion .notificacion-titulo {
    color: #2196F3;
}

.notificacion-reserva.confirmacion {
    border-left: 4px solid #4CAF50;
    background: #e8f5e9;
}

.notificacion-reserva.confirmacion .notificacion-titulo {
    color: #4CAF50;
}

.notificacion-reserva.actualizacion {
    border-left: 4px solid #FF9800;
    background: #fff3e0;
}

.notificacion-reserva.actualizacion .notificacion-titulo {
    color: #FF9800;
}

.notificacion-reserva.error {
    border-left: 4px solid #F44336;
    background: #ffebee;
}

.notificacion-reserva.error .notificacion-titulo {
    color: #F44336;
}

/* ============================================
   18. PÁGINA PERFIL DE USUARIO
   ============================================ */
.isContainerPerfil {
    padding-top: 230px;
    padding-bottom: 150px;
    width: 100%;
    background: #F2F2F2;
}

.isCenteredPerfil {
    width: 1120px;
    max-width: 95%;
    margin: 0 auto;
    position: relative;
}

.isProfileGrid {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 30px;
}

.is_containerInfoUser {
    padding: 60px 40px;
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
}

.isPhotoUser {
    width: 230px;
    height: 225px;
    border-radius: 10px;
    background: #DDD;
    overflow: hidden;
    flex-shrink: 0;
}

.isPhotoUser img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.isInfoUser {
    flex: 1;
}

.isInfoUser strong {
    color: #2B396C;
    font-weight: 300;
    font-size: 25px;
    line-height: 25px;
    display: block;
    font-weight: bold;
    padding-bottom: 11px;
    padding-top: 30px;
}

.isInfoUser div {
    color: #797979;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    display: block;
    font-weight: bold;
    padding-bottom: 40px;
    padding-top: 0px;
}

.isInfoUser a {
    color: #223165;
    font-weight: 300;
    font-size: 14px;
    line-height: 14px;
    display: table;
    font-weight: bold;
    padding-top: 0px;
    border: 1px solid #707070;
    border-radius: 5px;
    text-decoration: none;
    padding: 4px 18px;
    padding-right: 33px;
    background-image: url(images/icoEditar.svg);
    background-repeat: no-repeat;
    background-position: 96px 5px;
    background-size: 12px;
}

.isColumnInfoUser {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.isColumnInfoUser .isOptionUser {
    width: 100%;
    border-radius: 10px;
    background: #fff;
    padding: 35px 40px;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 10px;
}

.isColumnInfoUser .isOptionUser strong {
    color: #2B396C;
    font-weight: 300;
    font-size: 21px;
    line-height: 24px;
    display: block;
    font-weight: bold;
    padding-bottom: 15px;
}

.isColumnInfoUser .isOptionUser a {
    background: #E73A5C;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    color: #fff;
    padding: 8px 15px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
    flex: 1;
    min-width: 140px;
}

.isOptionUser__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.is_rowCantidadHorasUser {
    display: flex;
    justify-self: flex-start;
}

.is_rowCantidadHorasUser strong {
    color: #13235B;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    background-image: url(images/icoHoras.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 25px;
    padding-left: 38px;
    display: table;
}

.is_rowCantidadHorasUser span {
    font-weight: 300;
    font-size: 13px;
    line-height: 14px;
    font-weight: bold;
    padding-top: 5px;
    color: #9A9A9A;
    display: block;
    text-align: center;
}

.isHorasUser {
    width: 100%;
    border-radius: 10px;
    background: #fff;
    padding: 35px 40px;
    box-sizing: border-box;
}

.is_rowProgressBarraUser {
    width: 100%;
    border: 1px solid #253468;
    border-radius: 10px;
    height: 14px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.is_rowProgressBarraUser div {
    background: #253468;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    border-radius: 10px;
}

.is_rowProgressHorasUser span {
    color: #e8385b;
    font-weight: 300;
    font-size: 11px;
    line-height: 13px;
    font-weight: bold;
    padding-top: 0px;
    display: block;
    padding-left: 3%;
    padding-right: 3%;
}

.is_rowProgressHorasUser h4 {
    color: #253468;
    font-weight: 300;
    font-size: 11px;
    line-height: 13px;
    font-weight: bold;
    padding-top: 0px;
    display: block;
    padding-left: 3%;
    padding-right: 3%;
}

.is_rowProgressHorasUser p {
    color: #253468;
    font-size: 16px;
    line-height: 28px;
    padding-top: 0px;
    margin-bottom: 0;
    display: block;
}

.is_rowProgressDescription strong {
    font-weight: 600;
}

.btnContactoHorasConsumidadUser {
    background: #E73A5C;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    color: #fff;
    padding: 5px 30px;
    font-size: 12px;
    padding-bottom: 5px;
    font-style: normal;
    display: table;
    text-decoration: none;
    margin: 0 auto;
    margin-top: 17px;
}

.isTitleReservas {
    color: #e73a5c;
    font-weight: 600;
    font-size: 28px;
    line-height: 25px;
    background-image: url(images/icoReservas.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 25px;
    padding-left: 38px;
    width: 1120px;
    display: block;
    box-sizing: border-box;
}

.is_rowInvitadoPefil,
.is_rowSalaPefil {
    margin: 28px auto 0;
    padding: 36px 40px 32px;
    background: #fff;
    border-radius: 14px;
    box-sizing: border-box;
}

.is_rowInvitadoPefil h3 {
    color: #253468;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    background-image: url(images/userHover.svg);
    background-repeat: no-repeat;
    background-position: 0px 2px;
    background-size: 18px;
    padding-left: 30px;
    display: table;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.is_rowSalaPefil h3 {
    color: #253468;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    background-image: url(images/icoSalas.svg);
    background-repeat: no-repeat;
    background-position: 0px 0px;
    background-size: 24px;
    padding-left: 34px;
    display: table;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Grid de cards */
.is_rowInvitadoPefil ul,
.is_rowSalaPefil ul {
    list-style: none;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

/* Card individual */
.is_rowInvitadoPefil ul li,
.is_rowSalaPefil ul li,
.list_invitar_personas li.isInvitado-Activo {
    box-sizing: border-box;
    border-radius: 12px;
    background: #f7f8fc;
    border: 1px solid #e8ecf5;
    padding: 18px;
    min-height: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.is_rowInvitadoPefil ul li:hover,
.is_rowSalaPefil ul li:hover,
.list_invitar_personas li.isInvitado-Activo:hover {
    box-shadow: 0 4px 16px rgba(37, 52, 104, 0.09);
    border-color: #253468;
}

/* Encabezado de card: nombre + badge sala */
.isNameUser {
    width: 100%;
    float: none;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e4e8f0;
}

.isNameUser__title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.isNameUser strong {
    color: #1d2c63;
    font-weight: 700;
    font-size: 15px;
    line-height: 19px;
    display: block;
    word-break: break-word;
}

.isNameUser span {
    display: inline-block;
    background: #e8edf8;
    color: #253468;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    padding: 3px 8px;
    border-radius: 20px;
    width: fit-content;
}

/* Separador visual ahora en isNameUser */
.is_rowInvitadoPefil ul li .isNameUser,
.is_rowSalaPefil ul li .isNameUser,
.list_invitar_personas li.isInvitado-Activo .isNameUser {
    padding-bottom: 10px;
    border-bottom: 1px solid #e4e8f0;
}

/* Bloque de datos */
.isDescriptionUser {
    width: 100%;
    float: none;
    color: #555e7a;
    font-size: 12px;
    line-height: 19px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 0;
}

/* Fila de dato: etiqueta + valor */
.isDataRow {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-size: 12px;
    line-height: 17px;
}

.isDataLabel {
    color: #8e97b5;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.isDataLabel::after {
    content: ':';
}

.isDataValue {
    color: #1d2c63;
    font-weight: 600;
    word-break: break-word;
}

.isInvitado-Activo .isDescriptionUser {
    color: #555e7a !important;
}

.isDescriptionUser strong {
    font-weight: 600;
    color: #1d2c63;
}




.isActionCalendar {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    background: #1D2C63;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
}

.isActionCalendar a {
    font-weight: 500;
    color: #fff;
    font-size: 10px;
    text-decoration: none;
}

.isAction {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.btnEditarReserva,
.btnEditarInvitado,
.btnEditarInvitadoPerfil {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #e8edf8 url(images/icoEdit.svg) center / 14px no-repeat;
    transition: background-color 0.2s;
}

.btnEditarInvitadoPerfil:hover {
    background-color: #d0d9f0;
}

.btnEliminarInvitado,
.btnEliminarInvitadoPerfil,
.btnEliminarReserva {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fdecea url(images/icoRemove.svg) center / 14px no-repeat;
    transition: background-color 0.2s;
}

.btnEliminarReserva:hover {
    background-color: #f9c8c4;
}


.isOverlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
}

.isContainerEditInfoUser {
    width: 650px;
    max-width: 90%;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    max-height: 95vh;
    overflow-y: auto;
}

.btnSaveUpdateUser {
    float: right;
    background: #253468;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    color: #fff;
    padding: 10px 30px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 20px;
}

.btnSaveUpdateUser:hover {
    background: #e73a5c;
    transform: translateY(-2px);
}

.uploadPhoto {
    width: 140px;
    height: 140px;
    border-radius: 15px;
    float: left;
    position: relative;
    overflow: hidden;
    border: 3px solid #f0f0f0;
}

.uploadPhoto:after {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    top: 42%;
    left: 0px;
    background-image: url(images/icoCamara.svg);
    background-repeat: no-repeat;
    background-position: 0px 0px;
    background-size: 28px;
    margin: 0 auto;
    right: 0px;
}

.photohidden {
    position: absolute;
    width: 100%;
    padding: 0px;
    cursor: pointer;
    opacity: 0;
    height: 100%;
}

.uploadPhoto img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.uploadPhoto:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.4);
}

.isFormEditarInfoUser {
    width: 100%;
    clear: both;
    display: grid;
    gap: 15px;
    padding-top: 10px;
}

.isFormEditarInfoUser p {
    margin: 15px 0;
}

.isFormEditarInfoUser p label {
    color: #2B396C;
    font-size: 11px;
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.isFormEditarInfoUser p input {
    color: #2B396C;
    font-size: 14px;
    display: block;
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-sizing: border-box;
    background: #f8fafc;
    transition: border-color 0.2s;
}

.isFormEditarInfoUser p input:focus {
    outline: none;
    border-color: #253468;
    background: #fff;
}

/* ============================================
   19. LOGIN Y REGISTRO
   ============================================ */
.isContainerRegistro {
    padding-top: 120px;
    padding-bottom: 150px;
    width: 100%;
    background: #F2F2F2;
}

.isCenteredRegistro {
    width: 1120px;
    padding-top: 40px;
    margin: 0 auto;
    position: relative;
}

.is_containerLogin {
    width: 784px;
    top: 0px;
    height: 100%;
    right: -784px;
    z-index: 99999;
    position: fixed;
    box-sizing: border-box;
}

.is_containerRegistro {
    width: 50%;
    height: 100%;
    background: #F2F2F2;
    position: absolute;
    box-sizing: border-box;
    left: 0px;
    top: 0px;
    bottom: 0px;
    overflow: auto;
    padding-bottom: 40px;
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 110px;
}

.is_containerRegistro strong {
    color: #ED385B;
    font-weight: 700;
    font-size: 15px;
    line-height: 15px;
    text-decoration: none;
    display: block;
    padding-bottom: 30px;
}

.is_containerRegistro p {
    margin: 0px;
    margin-bottom: 30px;
}

.is_containerRegistro p label {
    color: #2B396C;
    font-weight: 300;
    font-size: 14px;
    line-height: 14px;
    display: block;
    font-weight: bold;
    padding-bottom: 15px;
}

.is_containerRegistro p input[type="text"],
.is_containerRegistro p input[type="password"] {
    color: #2B396C;
    font-size: 14px;
    line-height: 14px;
    display: block;
    width: 100%;
    border-radius: 13px;
    border: 1px solid #B7B7B7;
    height: 30px;
    padding: 0px;
    padding-left: 5%;
    box-sizing: border-box;
    padding-right: 5%;
}

.is_containerRegistro p input[type="checkbox"] {
    transition: linear .2s all;
    width: 14px !important;
    height: 14px !important;
    appearance: none;
    margin: 0;
    padding: 0 !important;
    display: inline-block;
    position: relative;
    border: 1px solid #E8375A;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 3px;
    margin-top: 2px;
}

.is_containerRegistro p input[type="checkbox"]:checked {
    background: #E73A5C !important;
}

.is_containerRegistro p input[type="submit"] {
    background: #E73A5C;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    color: #fff;
    padding: 0px 30px;
    font-size: 17px;
    padding-bottom: 1px;
    margin-top: -15px;
    font-style: normal;
    display: table;
    cursor: pointer;
}

.istextCheck {
    color: #E8375A;
    font-size: 11px;
    line-height: 14px;
    font-weight: bold;
}

.is_containerIngresar {
    width: 50%;
    height: 100%;
    background: #F8F8F8;
    position: absolute;
    box-sizing: border-box;
    right: 0px;
    top: 0px;
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 110px;
}

.is_containerIngresar strong {
    color: #ED385B;
    font-weight: 700;
    font-size: 15px;
    line-height: 15px;
    text-decoration: none;
    display: block;
    padding-bottom: 30px;
}

.is_containerIngresar p {
    margin: 0px;
    margin-bottom: 30px;
}

.is_containerIngresar p label {
    color: #2B396C;
    font-weight: 300;
    font-size: 14px;
    line-height: 14px;
    display: block;
    font-weight: bold;
    padding-bottom: 15px;
}

.is_containerIngresar p input[type="text"],
.is_containerIngresar p input[type="password"] {
    color: #2B396C;
    font-size: 14px;
    line-height: 14px;
    display: block;
    width: 100%;
    border-radius: 13px;
    border: 1px solid #B7B7B7;
    height: 30px;
    padding: 0px;
    padding-left: 5%;
    box-sizing: border-box;
    padding-right: 5%;
}

.is_containerIngresar p input[type="submit"] {
    background: #E73A5C;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    color: #fff;
    padding: 0px 22px;
    font-size: 17px;
    padding-bottom: 1px;
    margin-top: 0px;
    font-style: normal;
    display: table;
    cursor: pointer;
}

.btnResetPassword {
    color: #E8375A;
    font-size: 14px;
    line-height: 14px;
    font-weight: bold;
    display: block;
    text-decoration: none;
    margin-top: -2px;
}

.closeLogin {
    left: 38px;
    width: 13px;
    height: 13px;
    background-image: url(images/closeLogin.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    top: 45px;
    position: absolute;
    cursor: pointer;
    z-index: 99999;
}

.isContainerEmailPassword {
    width: 100%;
    height: 765px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(to left, rgba(255, 215, 0, 0) 30%, #F2F2F2 0) !important;
    text-align: center;
}

.isContainerEmailPassword:before {
    content: "";
    width: 90%;
    height: 100%;
    background-image: url(images/bcPassword.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: auto;
    position: absolute;
    left: 0px;
    top: 0px;
}

.isContainerEmailPassword h1 {
    color: #263569;
    font-weight: 600;
    font-size: 55px;
    line-height: 50px;
    display: block;
    padding-top: 52px;
    letter-spacing: -0.3px;
}

.isContainerEmailPassword span {
    color: #263569;
    font-weight: 300;
    font-size: 21px;
    line-height: 20px;
    font-weight: bold;
    display: block;
    padding-top: 25px;
}

.isContainerEmailPassword input[type="text"] {
    color: #2B396C;
    font-size: 14px;
    line-height: 14px;
    display: block;
    width: 695px;
    border-radius: 10px;
    border: 1px solid #0E1942;
    height: 40px;
    padding: 0px;
    padding-left: 15px;
    box-sizing: border-box;
    padding-right: 15px;
    margin-top: 38px;
}

.isContainerEmailPassword input[type="submit"] {
    background: #E73A5C;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    color: #fff;
    padding: 6px 60px;
    font-size: 21px;
    padding-bottom: 6px;
    font-style: normal;
    display: table;
    cursor: pointer;
    margin: 0 auto;
    margin-top: 25px;
}

.isAlertEmailPassword {
    color: #fff;
    background: #B9B9B9;
    font-size: 17px;
    line-height: 20px;
    padding: 12px 30px;
    display: table;
    margin: 0 auto;
    margin-top: 35px;
    border-radius: 10px;
    text-align: left;
    padding-bottom: 12px;
    padding-right: 70px;
}

.isContainerUpdatePassword {
    width: 100%;
    height: 759px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #F2F2F2;
    overflow: hidden;
}

.isContainerUpdatePassword:before {
    content: "";
    width: 260px;
    height: 100%;
    position: absolute;
    top: 200px;
    left: 0px;
    background-image: url(images/leftPassword.svg);
    background-repeat: no-repeat;
    background-position: top right;
}

.isContainerUpdatePassword:after {
    content: "";
    width: 260px;
    height: 100%;
    position: absolute;
    bottom: 200px;
    right: 0px;
    background-image: url(images/rightPassword.svg);
    background-repeat: no-repeat;
    background-position: bottom left;
}

.isContainerFormUpdate {
    width: 397px;
    margin: 0 auto;
}

.isPhotoLogin {
    width: 58px;
    height: 58px;
    background: #839CB1;
    border-radius: 10px;
    float: left;
    margin-right: 18px;
}

.isPhotoLogin img {
    width: 58px;
    height: 58px;
    display: block;
}

.isContainerFormUpdate span {
    color: #273669;
    font-weight: 300;
    font-size: 17px;
    line-height: 20px;
    font-weight: bold;
    display: block;
    padding-top: 3px;
    text-align: left;
}

.isContainerFormUpdate i {
    color: #6A6A6A;
    font-style: normal;
    display: block;
}

.isContainerFormUpdate p {
    margin: 0px;
    margin-bottom: 30px;
}

.isContainerFormUpdate p label {
    color: #2B396C;
    font-size: 17px;
    line-height: 14px;
    display: block;
    padding-bottom: 14px;
    font-weight: bold;
}

.isContainerFormUpdate p input[type="password"] {
    color: #2B396C;
    font-size: 14px;
    line-height: 14px;
    display: block;
    width: 100%;
    border-radius: 13px;
    border: 1px solid #E1E1E1;
    height: 30px;
    padding: 0px;
    padding-left: 5%;
    box-sizing: border-box;
    padding-right: 5%;
}

.isContainerFormUpdate form {
    margin-top: 40px;
}

.isContainerFormUpdate input[type="submit"] {
    background: #E73A5C;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    color: #fff;
    padding: 5px 22px;
    font-size: 18px;
    padding-bottom: 6px;
    font-style: normal;
    display: table;
    cursor: pointer;
}

.isContainerConfirmationUpdatePassword {
    width: 100%;
    height: 765px;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(to left, rgba(255, 215, 0, 0) 30%, #F2F2F2 0) !important;
    display: none;
}

.isContainerConfirmationUpdatePassword:before {
    content: "";
    width: 90%;
    height: 100%;
    background-image: url(images/bcPassword.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: auto;
    position: absolute;
    left: 0px;
    top: 0px;
}

.isContainerConfirmationUpdatePassword h1 {
    color: #263569;
    font-weight: 600;
    font-size: 105px;
    line-height: 95px;
    display: block;
    padding-top: 285px;
    letter-spacing: -0.3px;
    text-align: center;
}

.isContainerConfirmationUpdatePassword h1 i {
    color: #DE1F48;
    font-style: normal;
}

.isContainerConfirmationUpdatePassword span {
    color: #263569;
    font-weight: 300;
    font-size: 22px;
    line-height: 20px;
    font-weight: bold;
    display: block;
    padding-top: 40px;
    text-align: center;
    padding-bottom: 40px;
}

.btnContinueVikki {
    background: #E73A5C;
    border: none;
    border-radius: 5px;
    color: #fff;
    padding: 3px 22px;
    font-size: 17px;
    padding-bottom: 2px;
    font-style: normal;
    display: table;
    cursor: pointer;
    margin: 0 auto;
    text-decoration: none;
}

.isContainerWelcome {
    width: 100%;
    min-height: 765px;
    background: #F2F2F2;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(to left, #fff 30%, #F2F2F2 0) !important;
}

.isContainerWelcome:before {
    content: "";
    width: 90%;
    height: 100%;
    background-image: url(images/bcPassword.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: auto;
    position: absolute;
    left: 0px;
    top: 0px;
}

.isContainerWelcome h1 {
    color: #263569;
    font-weight: 600;
    font-size: 105px;
    line-height: 95px;
    display: block;
    letter-spacing: -0.3px;
    text-align: center;
}

.isContainerWelcome h1 i {
    color: #DE1F48;
    font-style: normal;
}

.isContainerWelcome span {
    color: #263569;
    font-weight: 300;
    font-size: 22px;
    line-height: 20px;
    font-weight: bold;
    display: block;
    padding-top: 40px;
    text-align: center;
    padding-bottom: 40px;
}

.btnIngresarVikki {
    background: #E73A5C;
    border: none;
    border-radius: 5px;
    color: #fff;
    padding: 3px 22px;
    font-size: 17px;
    padding-bottom: 2px;
    font-style: normal;
    display: table;
    cursor: pointer;
    margin: 0 auto;
    text-decoration: none;
}

/* ============================================
   20. PÁGINA SEDES
   ============================================ */
.isContainerSedes {
    width: 100%;
    height: auto;
    padding-top: 115px;
    padding-bottom: 64px;
    position: relative;
    background: #fff;
}

.is_centeredSedes {
    width: 1245px;
    margin: 0 auto;
    position: relative;
}

.isContainerSedes h2 {
    font-weight: 700;
    color: #E73A5C;
    font-size: 28px;
    line-height: 30px;
    text-transform: uppercase;
    display: block;
    padding-bottom: 63px;
}

.is_rowSedesMaps {
    width: 750px;
    height: 420px;
    background: #E8E8E8;
    float: right;
}

.is_rowSedes {
    width: 425px;
    float: left;
    position: relative;
}

.is_rowSedes ul li {
    list-style: none;
    margin-bottom: 60px;
}

.is_rowSedes ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.is_rowSedes ul li strong {
    width: 185px;
    color: #C9C9C9;
    font-weight: 600;
    font-size: 21px;
    line-height: 22px;
    display: block;
    padding-top: 0px;
    padding-right: 20px;
    position: relative;
}

.is_rowSedes ul li strong:before {
    content: "";
    width: 15px;
    height: 25px;
    background-image: url(images/icoSede.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 27px;
    top: -1px;
}

.is_rowSedes ul li div {
    width: 205px;
    color: #C9C9C9;
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    display: block;
    margin-right: 76px;
}

.is_rowSedes ul li div p {
    margin: 0px;
}

.is_rowSedes ul {
    margin-top: 33px;
}

.divScrollSedes {
    height: 420px;
}

.isContainerSedes .mCSB_scrollTools .mCSB_draggerRail {
    width: 12px !important;
    border-radius: 5px !important;
}

.btnActiveSede strong {
    color: #1D2C63 !important;
}

.btnActiveSede strong:before {
    content: "" !important;
    background-image: url(images/icoSede-Activo.svg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}

.btnActiveSede div {
    color: #1D2C63 !important;
    font-weight: bold !important;
}

/* ============================================
   21. TÉRMINOS Y CONDICIONES
   ============================================ */
.isContainerTerminos {
    width: 100%;
    height: auto;
    padding-top: 90px;
    padding-bottom: 75px;
    position: relative;
    background: #fff;
    text-align: justify;
    color: #3C4A78;
    overflow: hidden;
}

.isContainerTerminos p {
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.isContainerTerminos:after {
    content: "";
    width: 170px;
    height: 100%;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-image: url(images/rightTestimonio.svg);
    background-repeat: no-repeat;
    background-position: bottom left;
}

.isContainerTerminos:before {
    content: "";
    width: 170px;
    height: 100%;
    position: absolute;
    left: 0px;
    background-image: url(images/leftTestimonio.svg);
    background-repeat: no-repeat;
    background-position: top right;
    top: -120px;
}

.isCenteredTerminos {
    width: 890px;
    margin: 0 auto;
    position: relative;
}

.isContainerTerminos strong {
    color: #243367;
    font-weight: 700;
    font-size: 21px;
    line-height: 20px;
    display: block;
    padding-bottom: 20px;
    padding-top: 20px;
}

/* ============================================
   22. PREGUNTAS FRECUENTES
   ============================================ */
.isContainerQuestion {
    width: 100%;
    position: relative;
    background: #F2F2F2;
}

.isLeftQuestion {
    float: left;
    width: 50%;
    height: 100%;
    position: absolute;
}

.isLeftQuestion h2 {
    color: #E8385B;
    font-weight: 700;
    font-size: 28px;
    line-height: 28px;
    text-transform: uppercase;
    display: block;
}

.isTxtQuestion {
    font-weight: 300;
    color: #394675;
    font-size: 14px;
    line-height: 21px;
    display: block;
    padding-top: 20px;
    padding-bottom: 45px;
    letter-spacing: -0.1px;
    padding-left: 3px;
    font-weight: bold;
}

.isTxtQuestion p {
    margin: 0px;
}

.isLeftQuestion a {
    background: #E73A5C;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    color: #fff;
    padding: 4px 27px;
    font-size: 12px;
    padding-bottom: 5px;
    font-style: normal;
    display: table;
    text-decoration: none;
}

.isWrapperQuestion {
    width: 390px;
    display: flex;
    justify-content: center;
    align-items: center;
    float: right;
    padding-right: 125px;
    height: 100%;
}

.isRightQuestion {
    float: right;
    width: 50%;
}

.isRightQuestion img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   23. FORMULARIO INVITAR PERSONAS
   ============================================ */
.isContainerInvitarPersonas {
    width: 100%;
    position: relative;
    padding-top: 40px;
    padding-bottom: 47px;
    background: #fff;
    padding-left: 70px;
    box-sizing: border-box;
    padding-right: 70px;
    border-radius: 15px;
    margin-bottom: 115px;
}

.isContainerInvitarPersonas h3 {
    color: #13235B;
    font-weight: 700;
    font-size: 28px;
    display: block;
    line-height: 28px;
    padding-bottom: 20px;
    font-weight: bold;
}

.isContainerInvitarPersonas .textDanger {
    color: #cc0c36;
    margin-bottom: 20px;
}

.guest-form .guest-form-group {
    position: relative;
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.guest-form .delete-form {
    position: absolute;
    width: 26px;
    height: 26px;
    top: 10px;
    right: 10px;
    background-image: url(images/icoClose.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #e8385b;
    background-size: 14px;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
}

.guest-form .form-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.guest-form .form-column div {
    margin-bottom: 0;
}

.guest-form .form-hour .form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.button-group {
    display: flex;
    justify-content: space-between;
}

.isFormInvitarPersonasMargin {
    margin-right: 0px;
}

.isFormInvitarPersonas p,
.isFormInvitarPersonas div {
    margin: 0px;
    margin-bottom: 15px;
}

.isFormInvitarPersonas .is_clear {
    margin-bottom: 0 !important;
}

.isFormInvitarPersonas p label,
.isFormInvitarPersonas div label {
    color: #2B396C;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    display: block;
    padding-bottom: 10px;
}

.isFormInvitarPersonas p input[type="text"],
.isFormInvitarPersonas div input[type="text"],
.isFormInvitarPersonas p input[type="email"],
.isFormInvitarPersonas div input[type="email"] {
    color: #2B396C;
    font-size: 14px;
    line-height: 14px;
    display: block;
    width: 100%;
    border-radius: 13px;
    border: 1px solid #B7B7B7;
    height: 30px;
    padding: 0px;
    padding-left: 5%;
    box-sizing: border-box;
    padding-right: 5%;
}

.isFormInvitarPersonas p select,
.isFormInvitarPersonas div select {
    color: #2B396C;
    font-size: 14px;
    line-height: 14px;
    display: block;
    width: 100%;
    border-radius: 13px;
    border: 1px solid #B7B7B7;
    background-color: #fff;
    height: 30px;
    padding: 0px;
    padding-left: 5%;
    box-sizing: border-box;
    padding-right: 5%;
}

.isFormInvitarPersonas p input[type="checkbox"],
.isFormInvitarPersonas div input[type="checkbox"] {
    transition: linear .2s all;
    width: 11px !important;
    height: 12px !important;
    appearance: none;
    margin: 0;
    padding: 0 !important;
    display: inline-block;
    position: relative;
    border: 1px solid #929292;
    margin-right: 11px;
    cursor: pointer;
    border-radius: 3px;
    margin-top: 0px;
    margin-left: 10px;
}

.isFormInvitarPersonas p input[type="checkbox"]:checked,
.isFormInvitarPersonas div input[type="checkbox"]:checked {
    background: #929292 !important;
}

.lblZona {
    background-image: url(images/icoZona.svg);
    background-repeat: no-repeat;
    background-position: 0px 0px;
    padding-left: 30px;
    background-size: 23px;
    padding-top: 4px;
    margin-top: -10px;
}

.isSelectZona {
    width: 100%;
    background: #F5F5F5;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px 37px;
    margin-top: -40px;
    text-align: center;
    padding-bottom: 10px;
}

.isSelectZona ul li {
    width: 45%;
    list-style: none;
    border-radius: 15px;
    height: 45px;
    margin-bottom: 12px;
    padding-left: 10%;
    padding-right: 10%;
    box-sizing: border-box;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    margin-left: 2.5%;
    margin-right: 2.5%;
    font-weight: 300;
    font-size: 15px;
    line-height: 14px;
    font-weight: bold;
    color: #253468;
    padding-bottom: 2px;
    cursor: pointer;
}

.isActiveZona {
    background: #253468 !important;
    color: #fff !important;
}

.btn-primary {
    background: #253468;
    border: none;
    border-radius: 5px;
    color: #fdfdfd;
    padding: 7px 30px;
    font-size: 15px;
    padding-bottom: 8px;
    font-style: normal;
    display: table;
    cursor: pointer;
    text-decoration: none;
}

.btnConfirmarInvitarPersona {
    background: #D3D3D3;
    border: none;
    border-radius: 5px;
    color: #fdfdfd;
    padding: 7px 30px;
    font-size: 15px;
    padding-bottom: 8px;
    font-style: normal;
    display: table;
    cursor: pointer;
    text-decoration: none;
}

.btnConfirmarInvitarPersona-Activo {
    background: #E8385B !important;
}

/* ============================================
   24. LOADER, UTILIDADES Y OTROS
   ============================================ */
.loaderweb {
    width: 80px;
    height: 80px;
    position: fixed;
    left: 45%;
    top: 37%;
    z-index: 99999;
    display: none;
}

.cloaderweb {
    opacity: 0.2;
    background: #000;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
}

.loaderweb img {
    position: fixed;
    width: 75px;
    z-index: 99999999999;
}

.message_text {
    font-weight: 700;
    color: #1D2C62;
    text-align: center;
    border: 1px solid #1D2C62;
    padding-top: 13px;
    padding-bottom: 13px;
    margin-top: 30px;
}

.disabled_day {
    background: #f7f7f7 !important;
}

.z-index {
    position: relative;
    z-index: 99;
}

/* CF7 */
body div.wpcf7 .screen-reader-response {
    display: none !important;
}

span.wpcf7-not-valid-tip {
    text-align: left;
    color: #fff !important;
    font-weight: 300;
    background: #B9B9B9;
    font-size: 15px !important;
    padding-top: 3px;
    padding-bottom: 3px;
    width: 95%;
    padding-left: 5%;
    border-radius: 10px;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
    border: none !important;
    float: left !important;
    background: #B9B9B9 !important;
    color: #fff !important;
    font-family: 300 !important;
    font-size: 15px !important;
    width: 100% !important;
    padding: 0px !important;
    margin: 0px !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    text-align: left !important;
    padding-left: 15px !important;
    box-sizing: border-box;
    border-radius: 10px;
}

div.wpcf7-mail-sent-ok {
    border: none !important;
    float: left !important;
    background: #B9B9B9 !important;
    color: #fff !important;
    font-weight: 300 !important;
    font-size: 15px !important;
    width: calc(100% - 30px) !important;
    padding: 0px !important;
    margin: 0px !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    text-align: left !important;
    border-radius: 10px;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

#invitado_hora_1 {
    text-align: center;
    width: 49%;
    float: left;
    margin-right: 2%;
}

#invitado_hora_2 {
    text-align: center;
    width: 49%;
    float: left;
}

.ui-timepicker-standard a {
    font-size: 12px !important;
}

.list_invitados_search,
.list_client_search {
    margin-top: 10px;
    list-style: none;
    background-color: white;
    margin-bottom: 25px;
    border-radius: 10px;
    border: 1px solid #d2d2d2;
    padding: 5px;
}

.list_invitados_search li a,
.list_client_search li a {
    position: relative;
    display: block;
    border-radius: 0;
    padding: 4px 15px;
    color: #13235b;
    background-color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: ease all 0.3s;
}

.list_invitados_search li a:hover,
.list_client_search li a:hover {
    opacity: 1;
    background-color: #eaeaea;
}

.close_list_invitados,
.close_list_client {
    position: absolute;
    top: 37px;
    right: 5px;
    cursor: pointer;
    background-color: #818181;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    line-height: 20px;
}

.close_list_client {
    top: 5px;
}

.filter-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 20px;
    padding: 24px;
    background: #fff;
    border-radius: 14px;
    margin: 30px auto;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.filter-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 180px;
}

.filter-form label {
    display: block;
    font-weight: 700;
    color: #253468;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-form input,
.filter-form select {
    display: block;
    color: #1d2c63;
    font-size: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    height: 42px;
    width: 100%;
    padding: 0 14px;
    box-sizing: border-box;
    background-color: #f8fafc;
    transition: all 0.2s ease;
}

.filter-form input:focus,
.filter-form select:focus {
    outline: none;
    border-color: #253468;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(37, 52, 104, 0.1);
}

.filter-form .form-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.filter-form .btn {
    background: #253468;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    color: #fff;
    padding: 0 30px;
    height: 42px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.filter-form .btn:hover {
    background: #1c274e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 52, 104, 0.2);
}

.filter-form .btn.success {
    background: #21a96e;
}

.table-invitados {
    max-width: 100%;
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 0;
}

.table-invitados th,
.table-invitados td {
    border: 1px solid #ddd;
    text-align: left;
    padding: 8px;
}

.table-invitados thead th {
    background-color: #253468;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.table-invitados tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.table-invitados tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.table-invitados tbody tr:hover {
    background-color: #d4edda;
    cursor: pointer;
}

.table-invitados input[type="checkbox"] {
    transform: scale(1.2);
    margin: 0 5px;
}

.table-invitados td {
    vertical-align: middle;
}

.table-invitados td:nth-child(11) {
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.page-numbers {
    padding: 8px 16px;
    margin: 0 4px;
    font-weight: 600;
    border: 1px solid #dee2e6;
    color: #1D2C63;
    font-size: 12px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
}

.page-numbers:hover {
    background-color: #1D2C63;
    color: #fff;
    border-color: #1D2C63;
}

.current {
    background-color: #1D2C63;
    color: #fff;
    border-color: #1D2C63;
    pointer-events: none;
}

.containerItemNav ul li a span.one {
    display: block;
}

.containerItemNav ul li a span.two {
    display: none;
}

.containerItemNav ul li a:hover span.one {
    display: none !important;
}

.containerItemNav ul li a:hover span.two {
    display: block !important;
}

.removeMargin li {
    margin-bottom: 21px !important;
}

.erroruserfield {
    border: 1px solid red !important;
}

.btnContactoHorasConsumidad {
    background: #E73A5C;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    color: #fff;
    padding: 5px 30px;
    font-size: 12px;
    padding-bottom: 5px;
    font-style: normal;
    display: table;
    text-decoration: none;
    margin: 0 auto;
    margin-top: 35px;
}

/* ============================================
   25. MEDIA QUERIES (RESPONSIVE)
   ============================================ */
@media screen and (max-width:1100px) {
    .is_rowHora .listHoraSet {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .isLayerSlider h1 {
        font-size: 40px;
        line-height: 35px;
        margin-top: 60px;
    }

    .isLayerSlider h2 {
        font-size: 16px;
        line-height: 18px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .isLayerSlider a {
        font-size: 16px;
        line-height: 15px;
        padding: 7px 30px;
    }

    .is_rowNosotros {
        font-size: 20px;
        line-height: 25px;
    }

    .isContainerNosotros:after {
        width: 90px;
        height: 410px;
    }

    .isContainerNosotros:before {
        width: 90px;
    }

    .is_centeredServicios {
        width: 90%;
    }

    .is_rowServicios .is_columServicios {
        width: auto;
        height: 450px;
    }

    .isContainerNosotros h2 {
        font-size: 25px;
        line-height: 25px;
        padding-bottom: 20px;
    }

    .isContainerServicios h2 {
        font-size: 25px;
        line-height: 25px;
        padding-bottom: 20px;
    }

    .is_imageServicios {
        height: 180px;
    }

    .is_contentServicios {
        padding-left: 50px;
        padding-right: 50px;
    }

    .is_contentServicios span {
        font-size: 18px;
        line-height: 20px;
    }

    .is_contentServicios strong {
        font-size: 22px;
        line-height: 22px;
    }

    .is_contentServicios div {
        font-size: 13px;
        line-height: 18px;
    }

    .isContainerNovedades h2 {
        font-size: 25px;
        line-height: 25px;
        padding-bottom: 20px;
    }

    .is_rowSalaPefil ul,
    .is_rowInvitadoPefil ul {
        grid-template-columns: 1fr;
    }

    .is_rowNovedades .is_columNovedades {
        width: 33%;
        padding-left: 5%;
        padding-right: 5%;
    }

    .is_columNovedades strong {
        font-size: 22px;
        line-height: 22px;
        padding-right: 0px;
    }

    .is_columNovedades div {
        font-size: 13px;
        line-height: 16px;
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .is_centeredUbicacion {
        width: 90%;
    }

    .isContainerUbicacion h2 {
        font-size: 25px;
        line-height: 25px;
        padding-bottom: 20px;
    }

    .is_rowUbicacion {
        width: 280px;
    }

    .is_imageUbicacion {
        width: 100%;
        height: 170px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        overflow: hidden;
    }

    .is_contentUbicacion {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 30px;
    }

    .is_rowUbicacionMaps {
        width: 330px;
        height: 340px;
    }

    .is_rowUbicacion:before {
        width: 18px;
        height: 30px;
        right: -35px;
        top: 150px;
    }

    .is_rowNavFooter {
        margin-right: 0px;
    }

    .is_rowNavFooter>ul>li {
        margin-right: 40px;
    }

    .is_rowNavFooter>ul>li:before {
        width: 1px;
        height: 100px;
        right: -25px;
        top: 30px;
    }

    .icoSocialFooter {
        display: none;
    }

    .isContainerUbicacion {
        padding-top: 70px;
    }

    .isLayerBanner h1 {
        font-size: 40px;
        line-height: 35px;
        margin-top: 100px;
    }

    .isLayerBanner h2 {
        font-size: 16px;
        line-height: 18px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .containerItemNav ul li a {
        font-size: 18px;
        line-height: 18px;
    }

    .containerNav {
        min-height: 700px;
    }

    .is_rowPageNosotros {
        font-size: 20px;
        line-height: 25px;
    }

    .is_containerValores {
        width: 90%;
        z-index: 9999;
        position: relative;
    }

    .isColumnValores {
        width: 50%;
        margin-right: 3%;
        margin-bottom: 40px;
    }

    .isColumnValores .isImgValores img {
        width: 130px;
        height: 70px;
    }

    .isColumnValores .isImgValores {
        height: 80px;
    }

    .isColumnValores h4 {
        font-size: 16px;
        line-height: 18px;
        padding-top: 5px;
    }

    .isTxtValores {
        font-size: 13px;
        line-height: 16px;
        padding-top: 5px;
    }

    .isWrapperEquipo {
        width: 270px;
        padding-right: 30px;
    }

    .isLeftEquipo h2 {
        font-size: 22px;
        line-height: 20px;
    }

    .isTxtEquipo {
        font-size: 12px;
        line-height: 17px;
        padding-top: 10px;
        padding-bottom: 15px;
        padding-left: 0px;
    }

    .isContainerListadoServicios {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .isImageListadoServicios {
        width: 300px;
    }

    .isImageListadoServicios:before {
        right: -90px;
        top: 0px;
    }

    .isWrapperListadoServicios {
        width: 325px;
    }

    .isContentListadoServicios h2 {
        font-size: 25px;
        padding-top: 0px;
        line-height: 25px;
    }

    .isTxtListadoServicios {
        font-size: 15px;
        line-height: 18px;
        padding-top: 10px;
        padding-bottom: 15px;
        padding-left: 0px;
    }

    .isContainerListadoServicios ul li:nth-child(2n) .isImageListadoServicios:before {
        left: -90px !important;
    }

    .isContentListadoServicios a {
        padding: 5px 20px;
        font-size: 13px;
        padding-bottom: 6px;
    }

    .isRowDescription_Title {
        width: 230px;
    }

    .isRowDescription_Title h2 {
        font-size: 30px;
        padding-top: 5px;
        line-height: 40px;
    }

    .isRowDescription_Content {
        width: calc(100% - 250px);
        font-size: 16px;
        line-height: 22px;
        margin-right: 0px;
    }

    .isContainerBeneficios h2 {
        font-size: 25px;
        line-height: 25px;
    }

    .is_rowBeneficios ul li {
        width: 15% !important;
        margin-right: 1% !important;
        margin-bottom: 30px !important;
    }

    .is_rowBeneficios ul li div {
        height: 60px;
    }

    .is_rowBeneficios ul li div img {
        width: auto;
        height: 45px;
    }

    .is_rowBeneficios {
        margin-top: 50px;
    }

    .isLeftContacto,
    .isRightContacto {
        width: 50%;
    }

    .is_rowBeneficios ul li span {
        font-size: 12px !important;
        line-height: 10px !important;
    }

    .isLeftInteres .isBlockInteres {
        width: 250px;
        margin-right: 30px;
    }

    .isLeftInteres .isBlockInteres h2 {
        font-size: 35px;
        line-height: 35px;
    }

    .isRightInteres img {
        width: 50px;
        left: inherit;
        right: 30px;
    }

    .isContainerForm {
        width: 80%;
        margin-right: 0px;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .isContainerForm .rowLeft {
        width: 100%;
        margin-right: 0%;
    }

    .isContainerForm .rowRight {
        width: 100%;
    }

    .isContainerForm p {
        margin-bottom: 8px;
    }

    .isContainerForm p input[type="text"],
    .isContainerForm p input[type="tel"],
    .isContainerForm p input[type="email"] {
        margin-top: 5px;
    }

    .isContainerForm p input[type="submit"] {
        margin-top: 5px;
    }

    .isContainerDataForm {
        width: 90%;
        float: left;
        text-align: center;
        margin-left: 0px;
        margin-top: 0px;
    }

    .isContainerDataForm strong {
        display: block;
        font-size: 25px;
        padding-top: 15px;
        line-height: 20px;
    }

    .isContainerDataForm span {
        font-size: 12px;
        line-height: 15px;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .isRightContacto {
        background: none !important;
    }

    .is_rowCalendar {
        width: 90%;
    }

    .is_columnCalendar {
        width: 32% !important;
        margin-right: 1% !important;
        margin-bottom: 10px !important;
    }

    .is_rowCalendar .slick-next {
        right: 0px;
    }

    .is_rowCalendar .slick-prev {
        left: 0px;
    }

    .is_rowCalendar h2 {
        font-size: 35px;
        line-height: 35px;
    }

    .divWrapperCalendar {
        margin-top: 30px;
    }

    .isPopupCalendarCarrusel {
        width: 100%;
        height: 255px;
    }

    .isContainerSingleEventos:before,
    .isContainerSingleEventos:after {
        display: none;
    }

    .isCenteredSingleEventos {
        width: 90%;
    }

    .isHorarioEventos {
        width: 100%;
    }

    .isContainerSingleEventos {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .is_columPageNovedades {
        width: 48% !important;
        padding-left: 40px;
        padding-right: 40px;
        margin-right: 1% !important;
        margin-left: 1% !important;
    }

    .is_columPageNovedades strong {
        font-size: 24px;
        line-height: 24px;
    }

    .is_columPageNovedades div {
        font-size: 13px;
        line-height: 18px;
    }

    .isContainerPageNovedades {
        padding-top: 70px;
        padding-bottom: 50px;
    }

    .isCenteredSingleNovedades {
        width: 70%;
        position: relative;
        z-index: 999;
    }

    .isContainerSingleNovedades h2 {
        font-size: 20px;
        line-height: 24px;
        padding-bottom: 70px;
        padding-right: 70px;
    }

    .isContainerSingleNovedades p {
        font-size: 17px;
        line-height: 22px;
        margin-bottom: 10px;
    }

    .is_columRelacionadosNovedades {
        width: 48% !important;
        padding-left: 40px;
        padding-right: 40px;
        margin-right: 1% !important;
        margin-left: 1% !important;
        margin-bottom: 15px;
    }

    .is_columRelacionadosNovedades strong {
        font-size: 23px;
        line-height: 24px;
    }

    .is_columRelacionadosNovedades div {
        padding-top: 15px;
        font-size: 14px;
        line-height: 18px;
    }

    .isContainerUpdatePassword:before,
    .isContainerUpdatePassword:after {
        display: none;
    }

    .isContainerUpdatePassword {
        height: 700px;
    }

    .isContainerWelcome:before {
        display: none;
    }

    .isContainerWelcome {
        background: #F2F2F2 !important;
    }

    .isContainerWelcome h1 {
        font-size: 70px;
        line-height: 50px;
    }

    .isContainerWelcome span {
        font-size: 17px;
        line-height: 20px;
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .isCenteredPerfil,
    .isCenteredRegistro {
        width: 95%;
    }

    .isProfileGrid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .is_containerInfoUser {
        width: 100%;
        padding: 40px 35px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .filter-form {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 15px;
    }

    .filter-form .form-group {
        width: 100%;
        min-width: 0;
    }

    .filter-form .form-actions {
        width: 100%;
        flex-direction: column;
    }

    .filter-form .btn {
        width: 100%;
        margin-top: 5px;
    }

    .isColumnInfoUser {
        width: 100%;
        margin-top: 10px;
    }

    .isColumnInfoUser .isOptionUser a {
        width: 45%;
    }

    .isContainerPerfil,
    .isContainerRegistro {
        padding-top: 150px;
        padding-bottom: 100px;
    }

    .isCenteredTerminos {
        width: 70%;
    }

    .isContainerTerminos p {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 0px;
    }

    .isContainerTerminos:before,
    .isContainerTerminos:after {
        display: none;
    }

    .isContainerTerminos {
        padding-top: 30px;
    }

    .isWrapperQuestion {
        width: 225px;
        padding-right: 20px;
    }

    .isLeftQuestion h2 {
        font-size: 24px;
        line-height: 24px;
    }

    .isTxtQuestion {
        font-size: 14px;
        line-height: 21px;
        padding-top: 10px;
        padding-bottom: 15px;
        padding-left: 0px;
    }

    .isContainerPageUbicacion {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .is_centerPageUbicacion {
        width: 90%;
    }

    .isMapsPageUbicacion {
        height: 350px;
    }

    .is_rowPageUbicacion {
        width: 250px;
        margin-top: 30px;
    }

    .is_imagePageUbicacion {
        height: 160px;
    }

    .is_contentPageUbicacion {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 30px;
    }

    .is_rowPageUbicacionListado {
        width: calc(100% - 270px);
        margin-top: 30px;
    }

    .is_wrapperPageUbicacionListado {
        padding-left: 40px;
    }

    .is_rowPageUbicacionListado h2 {
        font-size: 22px;
        line-height: 22px;
        padding-top: 5px;
        padding-bottom: 30px;
        padding-right: 70px;
    }

    .is_rowPageUbicacionListado ul li span {
        font-size: 13px;
        line-height: 16px;
    }

    .isContainerEmailPassword h1 {
        font-size: 40px;
        line-height: 45px;
        padding-top: 20px;
    }

    .isContainerEmailPassword span {
        font-size: 18px;
        line-height: 18px;
        padding-top: 10px;
    }

    .isContainerEmailPassword input[type="text"] {
        font-size: 14px;
        line-height: 14px;
        width: 400px;
        height: 30px;
        margin-top: 38px;
        display: table;
        margin: 0 auto;
        margin-top: 25px;
    }

    .isContainerInvitarPersonas {
        margin-bottom: 50px;
    }

    .isContainerSala {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .is_rowReservasAnteriores {
        width: 100%;
        padding-left: 0px;
    }

    .is_columnReservasAnteriores {
        width: 100%;
    }

    .isContainerReservarSala {
        padding-top: 70px;
    }

    .isContainerReservarSala h2 {
        font-size: 25px;
        line-height: 25px;
        padding-bottom: 30px;
    }

    .is_columReservarSala {
        width: 48%;
        margin-right: 1%;
        margin-left: 1%;
        margin-bottom: 30px;
    }

    .is_contentReservarSala {
        padding-left: 30px;
        padding-right: 30px;
    }

    .isContainerSala h2 {
        font-size: 18px;
        line-height: 25px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .is_rowCaracteristicas ul li div img {
        height: 30px;
        width: 40px;
    }

    .is_rowCaracteristicas {
        margin-top: 40px;
    }

    .is_rowCalendarSala h3 {
        font-size: 30px;
        line-height: 30px;
    }

    .is_rowCalendarSala .slick-prev {
        left: 0px;
    }

    .is_rowCalendarSala .slick-next {
        right: 0px;
    }

    .is_rowHora ul li {
        width: 13%;
        margin-right: 1%;
        margin-bottom: 15px;
    }

    .is_rowHora ul li span {
        font-size: 14px;
        line-height: 15px;
        margin-bottom: 5px;
    }

    .isHorarioSeleccionado {
        width: 100%;
        margin-top: 90px;
    }

    .isContainerInvitar {
        width: 50%;
        padding-left: 25px;
        padding-right: 25px;
    }

    .isContainerClient {
        width: 45%;
        padding-left: 25px;
        padding-right: 25px;
    }

    .is_columnFormInvitar {
        width: 100%;
    }

    .is_columnListadoInvitados {
        width: 95%;
        margin-right: 0px;
        margin-top: 20px;
    }

    .isContainerHorasConsumidas {
        width: 45%;
        height: auto;
        padding-bottom: 30px;
    }

    .isTitleHorasConsumidas {
        padding-left: 30px;
        padding-right: 30px;
    }

    .isTitleHorasConsumidas span {
        font-size: 15px;
        background-size: 15px;
        padding-left: 25px;
    }

    .is_rowCantidadHoras {
        width: 100%;
        margin-left: 0%;
    }

    .is_rowCantidadHoras strong {
        display: table;
        margin: 0 auto;
    }

    .is_rowCantidadHoras span {
        padding-left: 0px;
        text-align: center;
    }

    .is_rowProgressHoras {
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
    }

    .btnContactoHorasConsumidad {
        margin-top: 15px;
    }

    .is_columnFormInvitar:before {
        width: 10px;
        height: 48px;
        right: -45px;
        top: 30px;
    }

    .isContainerConfirmationReserva {
        width: 100%;
        margin-top: 20px;
        font-size: 14px;
        letter-spacing: 0px;
    }

    .btnConfirmarReserva {
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .is_centeredSedes {
        width: 90%;
    }

    .isContainerSedes h2 {
        font-size: 25px;
        line-height: 25px;
        padding-bottom: 30px;
    }

    .is_rowSedes {
        width: 300px;
    }

    .is_rowSedes ul li strong {
        font-size: 13px;
        line-height: 22px;
    }

    .is_rowSedes ul li {
        margin-bottom: 20px;
    }

    .is_rowSedesMaps {
        width: calc(100% - 320px);
    }
}

@media screen and (max-width:750px) {
    .isContainerSlider {
        height: auto;
    }

    .is_rowBeneficios ul li span {
        min-height: 26px;
    }

    .is_rowBeneficios ul li {
        min-height: auto;
    }

    .is_rowCaracteristicas ul {
        gap: 15px;
    }

    .is_rowCaracteristicas ul li {
        font-size: 14px;
    }

    .is_rowCaracteristicas ul li div {
        margin-right: 6px;
    }

    .is_rowCaracteristicas ul li div img {
        height: 20px;
        width: 20px;
    }

    header {
        position: relative;
        top: inherit;
        background: #253468;
        padding-top: 15px;
        padding-bottom: 10px;
    }

    .isLayerSlider h1 {
        font-size: 20px;
        line-height: 20px;
        margin-top: 0px;
    }

    .isLayerSlider h2 {
        font-size: 13px;
        line-height: 14px;
        padding-top: 5px;
        padding-bottom: 10px;
    }

    .isLogo img {
        height: 50px;
    }

    .icoNav {
        margin-top: 10px;
    }

    .isLayerSlider a {
        display: none;
    }

    .isButtonSlider {
        width: 13px;
        height: 40px;
        bottom: 8px;
        background-size: contain;
    }

    .is_rowUbicacion:before {
        display: none;
    }

    .slick-dots li button {
        width: 10px;
        height: 10px;
    }

    .is_rowPageUbicacionListado ul li {
        margin-bottom: 20px;
        padding-right: 15px;
    }

    .isContainerNosotros h2 {
        font-size: 20px;
        line-height: 20px;
        padding-bottom: 15px;
    }

    .isContainerNosotros {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .isContainerNosotros:after {
        width: 50px;
        height: 220px;
        right: 20px;
    }

    .is_rowNosotros {
        font-size: 14px;
        line-height: 20px;
    }

    .is_rowNosotros br {
        display: none;
    }

    .isContainerServicios h2 {
        font-size: 20px;
        line-height: 20px;
        padding-bottom: 15px;
    }

    .isContainerServicios .slick-slide {
        margin: 0px 0px;
    }

    .is_rowServicios .is_columServicios {
        height: auto;
        padding-bottom: 40px;
    }

    .is_contentServicios {
        padding-left: 40px;
        padding-right: 40px;
    }

    .isContainerNovedades h2 {
        font-size: 20px;
        line-height: 20px;
        padding-bottom: 15px;
    }

    .isContainerNovedades {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .is_rowNovedades .is_columNovedades {
        width: 100%;
        padding-left: 0%;
        padding-right: 0%;
        border-right: 0px solid #253468 !important;
        border-bottom: 1px solid #253468 !important;
        padding-bottom: 20px;
        padding-top: 15px;
    }

    .is_columNovedades strong {
        font-size: 18px;
        line-height: 20px;
    }

    .is_columNovedades div {
        font-size: 13px;
        line-height: 16px;
        padding-top: 15px;
        padding-bottom: 10px;
    }

    .is_rowNovedades .is_columNovedades:nth-child(3) {
        border: none !important;
    }

    .btnVerNovedades {
        margin-top: 20px;
    }

    .isContainerUbicacion h2 {
        font-size: 20px;
        line-height: 20px;
        padding-bottom: 15px;
    }

    .isContainerUbicacion {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .is_rowUbicacion {
        width: 100%;
    }

    .is_contentUbicacion {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
    }

    .is_contentUbicacion h3 {
        font-size: 18px;
        line-height: 20px;
        padding-top: 10px;
        padding-right: 0px;
    }

    .is_contentUbicacion div {
        font-size: 14px;
        line-height: 18px;
        padding-top: 10px;
        padding-right: 0px;
    }

    .is_rowUbicacion {
        padding-bottom: 40px;
    }

    .is_rowUbicacionMaps {
        width: 100%;
        height: 250px;
        margin-top: 20px;
    }

    .isLogoFooter {
        width: 100%;
    }

    .is_rowFooter {
        padding-top: 25px;
        width: 100%;
    }

    .is_rowNavFooter {
        width: 100%;
    }

    .is_rowNavFooter>ul>li:before {
        display: none;
    }

    .is_rowNavFooter>ul>li {
        margin-right: 0px;
        width: 100%;
        border-bottom: 1px solid #E73A5C;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

    .is_rowNavFooter>ul>li:last-child {
        border-bottom: 0px solid #E73A5C !important;
    }

    .is_rowNavFooter ul li a {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .is_rowNavFooter>ul>li strong {
        font-size: 17px;
        line-height: 17px;
        padding-bottom: 10px;
        margin-top: 5px;
    }

    footer {
        padding-bottom: 5px;
    }

    .isContainerServicios {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .containerNav {
        position: fixed;
        padding-right: 25px;
        min-height: 100% !important;
        height: 100% !important;
    }

    .containerItemNav ul li a {
        font-size: 16px;
        line-height: 15px;
    }

    .containerItemNav ul li {
        margin-bottom: 15px;
    }

    .containerNav .closeNav {
        right: 25px;
        top: 25px;
    }

    .btnLogin {
        margin-top: 70px;
    }

    .containerItemNav {
        margin-top: 20px;
    }

    .containerSocialNav {
        right: 25px;
        bottom: 30px;
    }

    .containerSocialNav strong {
        font-size: 14px;
        padding-bottom: 10px;
    }

    .icoSocialNav a img {
        height: 15px !important;
    }

    .containerItemNav strong {
        padding-bottom: 20px;
    }

    .isDatosLogin {
        margin-top: 60px;
        margin-bottom: 10px;
        width: 100%;
    }

    .isNavLogin {
        margin-right: -25px;
        margin-top: 10px;
    }

    .linkPerfil,
    .linkSesion {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .is_containerLogin {
        width: 100%;
        right: -100%;
        min-height: auto !important;
        height: 100% !important;
        overflow: auto;
    }

    .is_containerRegistro {
        width: 100%;
        height: auto;
        left: initial;
        top: initial;
        padding-left: 25px;
        padding-right: 25px;
        padding-top: 60px;
        position: relative;
        padding-bottom: 25px;
    }

    .is_containerIngresar {
        width: 100%;
        height: auto;
        left: initial;
        top: initial;
        padding-left: 25px;
        padding-right: 25px;
        padding-top: 60px;
        position: relative;
        padding-bottom: 60px;
    }

    .is_containerRegistro p label {
        padding-bottom: 5px;
    }

    .is_containerRegistro p {
        margin-bottom: 15px;
    }

    .is_containerRegistro p input[type="submit"] {
        margin-top: 10px;
    }

    .is_containerIngresar p label {
        padding-bottom: 5px;
    }

    .is_containerIngresar p {
        margin-bottom: 15px;
    }

    .btnResetPassword {
        margin-top: 0px;
    }

    .is_containerIngresar strong {
        padding-bottom: 20px;
    }

    .closeLogin {
        left: 25px;
        top: 25px;
    }

    .isLayerBanner h1 {
        font-size: 20px;
        line-height: 20px;
        margin-top: 0px;
    }

    .isLayerBanner h2 {
        font-size: 13px;
        line-height: 14px;
        padding-top: 5px;
        padding-bottom: 10px;
    }

    .isPageNosotros {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .isContainerListadoServicios {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .isPageNosotros h2 {
        font-size: 20px;
        line-height: 20px;
        padding-bottom: 15px;
    }

    .isPageNosotros:before {
        display: none;
    }

    .is_rowPageNosotros {
        font-size: 14px;
        line-height: 20px;
    }

    .is_containerValores h3 {
        font-size: 20px;
        line-height: 20px;
        padding-bottom: 15px;
    }

    .is_containerValores {
        margin-top: 60px;
    }

    .isColumnValores {
        width: 100%;
        margin-right: 3%;
        margin-bottom: 30px;
    }

    .isColumnValores .isImgValores img {
        width: 100px;
        height: 55px;
    }

    .isColumnValores .isImgValores {
        height: 70px;
    }

    .isColumnValores h4 {
        font-size: 14px;
        line-height: 16px;
    }

    .isLeftEquipo {
        width: 100%;
        height: auto;
        position: relative;
    }

    .isWrapperEquipo {
        width: 90%;
        padding-right: 5%;
        padding-left: 5%;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .isRightEquipo {
        width: 95%;
    }

    .isImageListadoServicios {
        display: none;
    }

    .isContentListadoServicios {
        height: auto;
        position: relative;
        right: inherit;
        margin-right: 0px;
    }

    .isContainerListadoServicios ul li {
        width: 100%;
        margin-bottom: 15px;
        position: relative;
        padding: 25px;
    }

    .isContentListadoServicios h2 {
        font-size: 20px;
        line-height: 20px;
    }

    .isTxtListadoServicios {
        font-size: 13px;
        line-height: 18px;
        padding-bottom: 15px;
    }

    .isContainerListadoServicios ul li:nth-child(2n) .isContentListadoServicios {
        margin-left: 0px !important;
        text-align: left !important;
    }

    .isContainerListadoServicios ul li:nth-child(2n) a {
        float: left !important;
    }

    .isRowDescription_Title {
        width: 100%;
        margin-top: 0px;
    }

    .isRowDescription_Title h2 {
        font-size: 25px;
        padding-top: 5px;
        line-height: 30px;
    }

    .isRowDescription_Content {
        width: 100%;
        font-size: 13px;
        line-height: 18px;
        margin-right: 0px;
        margin-top: 15px;
    }

    .isContainerDescription:before {
        display: none;
    }

    .isContainerDescription {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .isContainerBeneficios h2 {
        font-size: 22px;
        line-height: 22px;
    }

    .isContainerBeneficios {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .is_rowBeneficios ul li {
        width: 32% !important;
        margin-right: 1% !important;
        margin-bottom: 25px !important;
    }

    .isLeftInteres {
        width: 100%;
    }

    .isLeftInteres .isBlockInteres {
        width: 100%;
        margin-right: 0px;
        padding-top: 0px;
        padding-bottom: 30px;
    }

    .isRightInteres {
        float: right;
        width: 100%;
        height: auto;
        position: relative;
        right: 0px;
        background: none !important;
    }

    .isRightInteres img {
        width: 70%;
        left: 0px;
        right: 0px;
        position: relative;
        display: table;
        margin: 0 auto;
        float: none;
    }

    .isLeftInteres .isBlockInteres h2 {
        font-size: 30px;
        line-height: 35px;
    }

    .is_columnCalendar {
        width: 49% !important;
        margin-right: 1% !important;
        margin-bottom: 4px !important;
    }

    .isPopupCalendarCarrusel {
        left: 0px;
    }

    .isPopupCalendarCarrusel strong {
        font-size: 16px;
        line-height: 17px;
    }

    .isPopupCalendarCarrusel a {
        padding: 3px 10px;
        font-size: 12px;
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }

    .is_rowCalendar h2 {
        font-size: 28px;
        line-height: 35px;
    }

    .isContainerEventos {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .isTitleBannerSingleEventos strong {
        font-size: 20px;
        line-height: 20px;
    }

    .isTitleBannerSingleEventos span {
        font-size: 16px;
        line-height: 16px;
        padding-top: 3px;
    }

    .isHorarioEventos ul li:before {
        width: 35%;
        left: 20%;
    }

    .isDescriptionSingleEventos {
        font-size: 13px;
        line-height: 18px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .btnEventosContacto {
        font-size: 15px;
        margin-top: 25px;
    }

    .isLayerBanner {
        padding-top: 0px !important;
    }

    .is_columPageNovedades {
        width: 100% !important;
        padding-left: 30px;
        padding-right: 30px;
        margin-right: 0% !important;
        margin-left: 0% !important;
        padding-top: 35px;
        padding-bottom: 30px;
        margin-bottom: 10px;
    }

    .is_columPageNovedades strong {
        font-size: 20px;
        line-height: 20px;
    }

    .isContainerSingleNovedades:before,
    .isContainerSingleNovedades:after {
        display: none;
    }

    .isCenteredSingleNovedades {
        width: 85%;
    }

    .isContainerSingleNovedades h2 {
        font-size: 16px;
        line-height: 20px;
        padding-bottom: 0px;
        padding-right: 0px;
    }

    .isContainerSingleNovedades {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .isContainerSingleNovedades p {
        font-size: 14px;
        line-height: 18px;
    }

    .btnNovedades {
        margin-top: 0px;
    }

    .isContainerRelacionadosNovedades h3 {
        font-size: 25px;
        line-height: 25px;
        padding-bottom: 30px;
    }

    .isContainerRelacionadosNovedades {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .is_columRelacionadosNovedades {
        width: 100% !important;
        padding-left: 30px;
        padding-right: 30px;
        margin-right: 0% !important;
        margin-left: 0% !important;
        margin-bottom: 10px;
    }

    .is_rowPageUbicacion:before {
        display: none;
    }

    .isMapsPageUbicacion {
        height: 200px;
    }

    .is_rowPageUbicacion {
        width: 100%;
    }

    .is_rowPageUbicacionListado {
        width: 100%;
        margin-top: 20px;
    }

    .isLeftContacto,
    .isRightContacto {
        width: 100%;
        position: relative;
        padding-bottom: 50px;
    }

    .isContainerForm {
        width: 90%;
        float: none;
        margin: 0 auto;
    }

    .isContainerDataForm {
        margin: 0 auto;
    }

    .isContainerDataForm img {
        width: 100%;
        height: 140px;
        display: block;
        margin: 0 auto;
        margin-right: 0px;
    }

    .isContainerReservarSala h2 {
        font-size: 20px;
        line-height: 20px;
        padding-bottom: 30px;
    }

    .is_columReservarSala {
        width: 100%;
        margin-right: 0%;
        margin-left: 0%;
        margin-bottom: 20px;
        height: auto;
        padding-bottom: 30px;
    }

    .is_imageReservarSala {
        height: 180px;
    }

    .is_contentReservarSala strong {
        font-size: 24px;
        line-height: 24px;
        padding-top: 0px;
    }

    .is_contentReservarSala div {
        font-size: 13px;
        line-height: 18px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .isHorarioSeleccionado ul li:before {
        content: "";
        width: 40%;
        left: 0px;
    }

    .isHorarioSeleccionado ul li {
        font-size: 13px;
    }

    .isContainerSala h2 {
        font-size: 14px;
        line-height: 20px;
    }

    .is_rowCaracteristicas {
        margin-top: 30px;
        height: auto;
        padding: 20px;
        text-align: center;
    }

    .is_rowCalendarSala h3 {
        font-size: 25px;
        line-height: 30px;
    }

    .is_rowCalendarSala {
        margin-top: 50px;
    }

    .divWrapperCalendarSala {
        margin-top: 30px;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px 1%;
    }

    .is_columnCalendarSala {
        height: 65px;
    }

    .is_columnCalendarSala>span {
        font-size: 18px;
    }

    .is_rowOptionSala {
        width: 100%;
    }

    .is_rowOptionSala ul li {
        margin-right: 5px;
        font-size: 10px;
    }

    .is_rowOptionSala ul li div {
        margin-right: 5px;
    }

    .is_rowHora ul li {
        width: 19%;
        margin-right: 1%;
    }

    .is_rowHora ul li span {
        font-size: 12px;
        line-height: 13px;
        margin-bottom: 5px;
    }

    .isHorarioSeleccionado {
        margin-top: 20px;
    }

    .isContainerSala {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .isContainerInvitar,
    .isContainerClient {
        width: 100%;
        margin-top: 30px;
    }

    .isContainerInvitar h4 {
        padding-bottom: 30px;
    }

    .is_columnFormInvitar:before {
        display: none;
    }

    .isContainerHorasConsumidas {
        width: 100%;
        height: auto;
        padding-bottom: 30px;
        margin-top: 40px;
    }

    .isTitleHorasConsumidas {
        margin-bottom: 30px;
    }

    .isContainerConfirmationReserva {
        font-size: 13px;
        letter-spacing: 0px;
    }

    .is_carruselReservasAnteriores {
        width: 100%;
        padding-left: 50px;
        padding-right: 50px;
    }

    .is_rowReservasAnteriores .slick-next {
        width: 15px;
        height: 40px;
        top: 70px;
        right: -22px;
    }

    .is_rowReservasAnteriores .slick-prev {
        width: 15px;
        height: 40px;
        top: 70px;
        left: -25px;
    }

    .is_carruselReservasAnteriores strong {
        font-size: 18px;
        padding-bottom: 20px;
        text-align: center;
    }

    .is_columnListadoInvitados ol li {
        padding-right: 40px;
    }

    .isContainerUpdatePassword {
        height: 500px;
    }

    .isContainerFormUpdate {
        width: 260px;
    }

    .isContainerFormUpdate span {
        font-size: 15px;
        line-height: 20px;
    }

    .isPhotoLogin {
        margin-right: 10px;
    }

    .isContainerFormUpdate p label {
        font-size: 13px;
        line-height: 14px;
        padding-bottom: 5px;
    }

    .isContainerFormUpdate p {
        margin-bottom: 15px;
    }

    .isContainerFormUpdate input[type="submit"] {
        padding: 5px 25px;
        font-size: 14px;
        padding-bottom: 6px;
    }

    .isContainerConfirmationUpdatePassword:before {
        display: none;
    }

    .isContainerConfirmationUpdatePassword {
        width: 100%;
        background: #F2F2F2 !important;
        height: 500px !important;
    }

    .isContainerConfirmationUpdatePassword h1 {
        font-size: 40px;
        line-height: 40px;
        padding-top: 150px;
    }

    .isContainerConfirmationUpdatePassword span {
        font-size: 15px;
        line-height: 15px;
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .isCenteredTerminos {
        width: 85%;
    }

    .isContainerTerminos p {
        font-size: 14px;
        line-height: 20px;
    }

    .isLeftQuestion {
        float: left;
        width: 100%;
        height: auto;
        position: relative;
        text-align: center;
    }

    .isWrapperQuestion {
        width: 90%;
        padding-right: 5%;
        padding-left: 5%;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .isRightQuestion {
        width: 95%;
    }

    .isLeftQuestion h2 {
        font-size: 22px;
        line-height: 22px;
    }

    .isLeftQuestion a {
        margin: 0 auto;
    }

    .isContainerTerminos strong {
        font-size: 18px;
        line-height: 18px;
        padding-bottom: 10px;
        padding-top: 20px;
    }

    .isContainerEmailPassword h1 {
        font-size: 25px;
        line-height: 30px;
        padding-top: 0px;
    }

    .isContainerEmailPassword span {
        font-size: 16px;
        line-height: 18px;
    }

    .isContainerEmailPassword input[type="text"] {
        font-size: 14px;
        line-height: 14px;
        width: 85%;
        height: 27px;
    }

    .isAlertEmailPassword {
        width: 80%;
        padding: 5% !important;
        font-size: 13px;
        line-height: 15px;
    }

    .isAlertEmailPassword br {
        display: none;
    }

    .isContainerEmailPassword {
        height: 500px;
        background: #F2F2F2 !important;
    }

    .isContainerEmailPassword input[type="submit"] {
        font-size: 18px;
        margin-top: 25px;
    }

    .isFormInvitarPersonas {
        width: 100%;
        margin-right: 0px;
    }

    .isContainerInvitarPersonas {
        padding-left: 30px;
        padding-right: 30px;
    }

    .isContainerInvitarPersonas h3 {
        font-size: 22px;
        line-height: 25px;
        padding-bottom: 20px;
    }

    .isFormInvitarPersonas p label,
    .isFormInvitarPersonas div label {
        font-size: 14px;
        line-height: 14px;
        padding-bottom: 7px;
    }

    .isFormInvitarPersonas p,
    .isFormInvitarPersonas div {
        margin: 0px;
        margin-bottom: 15px;
    }

    .isSelectZona {
        margin-top: 10px;
    }

    .isSelectZona ul li {
        width: 100%;
        border-radius: 20px;
        height: 40px;
        margin-bottom: 5px;
        font-size: 14px;
        line-height: 14px;
        padding-bottom: 2px;
    }

    .isFormInvitarPersonas p,
    .isFormInvitarPersonas div {
        margin: 0px;
        margin-bottom: 15px;
        margin-right: 0px !important;
        width: 100% !important;
    }

    .isContainerSedes {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .isContainerSedes h2 {
        font-size: 20px;
        line-height: 25px;
        padding-bottom: 20px;
    }

    .is_rowSedesMaps {
        width: 100%;
        margin-top: 15px;
        height: 250px;
    }

    .is_rowSedes ul li div {
        width: 205px;
        font-size: 12px;
        line-height: 15px;
        margin-right: 40px;
    }

    .isAction .btnEditarReserva,
    .isAction .btnEditarInvitadoPerfil,
    .isAction .btnEliminarReserva {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }
}

@media screen and (max-width:575px) {
    body .isPhotoUser {
        width: 100px;
        height: 100px;
        float: initial;
        margin: 0 auto;
    }

    body .isPhotoUser img {
        width: 100px;
        height: 100px;
    }

    .isContainerPerfil,
    .isContainerRegistro {
        padding-top: 2px !important;
    }

    .isContainerEditInfoUser {
        width: 100%;
    }

    .is_rowSalaPefil,
    .is_rowInvitadoPefil {
        padding: 24px 15px 20px;
    }

    .is_rowSalaPefil ul,
    .is_rowInvitadoPefil ul {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .isCalendarSubscription {
        padding: 16px;
    }

    .isCalendarSubscription__actions {
        flex-direction: column;
    }

    .isCalendarSubscription__btnGoogle,
    .isCalendarSubscription__btnRegen,
    .isCalendarSubscription__btnRemove,
    .isCalendarSubscription__btnGenerate {
        justify-content: center;
    }

    .isContainerEditInfoUser {
        padding: 25px;
    }

    .isFormEditarInfoUser {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .uploadPhoto {
        float: none;
        margin: 0 auto 20px;
    }

    .btnSaveUpdateUser {
        float: none;
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .is_carruselReservasAnteriores {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* end */