@import "fonts.css";
:root{
    --black-color: #000000;
    --green-color: #06716C;
    --green-light-color: #239590;
    --white-color: #FFFFFF;
    --red-color: #EF0F0F;
    --disabled-text: #959c9b;
}
*{
    margin: 0;
    padding: 0;
}
body{
    font-family: "Bogle";
    font-size: 14px;
    color: var(--black-color);
    font-weight: normal;
}
html{
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
    cursor: pointer;
}
.wrapper{
    padding: 10px 20px;
    max-width: 1240px;
    margin: auto;
}
.wrapper_footer{
    padding: 0px 20px 20px 20px;
    max-width: 1240px;
    margin: auto;
}
img{
    width: 100%;
}
h1,h2, h3{
    font-size: 30px;
    line-height: 44px;
    font-weight: bold;
    margin-bottom: 20px;
    
    text-align: center;
}
h1{
    font-size: 24px;
    line-height: 38px;
}
p{
    line-height: 22px;
    margin-bottom: 20px;
}

header{
    background-color: #FFFFFF;
    position: fixed;
    left: 0; right: 0; top: 0;
    z-index: 6;
    box-shadow: 0px 3px 11px #00000029;
}
.noscroll {
    overflow: hidden;
}
.bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 6;
}
.footer__text{
    font-weight: unset;
    font-size: 14px;
}
.header__row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo{
    color: #002D58;
    font-size: 24px;
    line-height: 33px;
}
.header__logo span{
    font-weight: bold;
}
.menu__mob img{
    width: 48px;
    height: 48px;
}
.login__link img{
    width: 32px;
    height: 32px;
}
.close__menu{
    position: absolute;
    right: 20px;
    top: 20px;
    width: 20%;
}
.close__menu img{
    width: 25px;
}
.menu{
    position: fixed;
    height: 100%;
    width: 100%;
    right: 0; top: 0; bottom: 0;
    transform: translateX(100%);
    background-color: #fff;
    z-index: 999;
    padding: 100px 0px 10px 0px;
    text-align: center;
}
.menu ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.menu.active{
    transform: translateX(0);
    transition: all ease-in 300ms;
}
.menu.hide{
    transition: all ease-in 300ms;
}

.menu li a{
    color: #002D58;
    font-size: 20px;
    font-weight: bold;
}
.menu li{
    padding: 10px 20px;
}


footer{
    background-color: #ECECEC;
    color: #002D58;
    padding: 20px 0px 0px 0px;
    text-align: center;
}
.footer__copyright img{
    width: 20px;
    position: relative;
    top: -3px;
}
.footer__logo{
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 20px;
}
.footer__logo span{
    font-weight: bold;
}
.footer__links{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.footer__links a{
    font-weight: bold;
    text-decoration: underline;
    color: #002D58;
    font-size: 11px;
    list-style: 15px;
    min-width: 33%;
    margin: 0px auto 29px auto;
    display: block;
}
.footer__legal{
    font-size: 16px;
    line-height: 22px;
}
.footer__legal a{
    color: #002D58;
    font-weight: bold;
    text-decoration: underline;
}

/*FORMS*/
.lbl{
    display: block;
    font-weight: bold;
    text-align: left;
    margin-bottom: 15px;
}

.input, .tab__input{
    border: 2px solid #000000;
    border-radius: 6px;
    width: -moz-available;  
    width: -webkit-fill-available; 
    width: fill-available;
    padding: 8px 12px;
    color: var(--text-color);
    margin: auto;
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.3;
    outline: 0;
    text-align: center;
    font-family: "Bogle";
    background: #ffffff00;
}

.input.form-control{
    color: var(--disabled-text) !important;
}

textarea.input{
    font-family: "Bogle";
    text-align: left;
}
.frm__col.error .input{
    border: 2px solid var(--red-color);
}
.frm__col.error {
    color: var(--red-color);
}
.col.error .input{
    border: 2px solid var(--red-color);
}
.col.error {
    color: var(--red-color);
}
.col-12.error .input{
    border: 2px solid var(--red-color);
}
.col-12.error {
    color: var(--red-color);
}
select{
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: url(../static/img/icons/down.svg) no-repeat;
    background-position: 97% 0px;
}
.input.search{
    background: url(../static/img/icons/search.svg) no-repeat;
    background-position: 10px 4px;
}
.input__radio{
    height: 20px;
    width: 20px;
}

.frm__radio{
    display: flex;
    margin-bottom: 15px;
}
.frm__radio .input__radio{
    margin-right: 14px;
    
}
.frm__radio .lbl{
    margin: 0;
}
.main__cta{
    width: 350px;
    height: 53px;
    background-color: #002D58;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 1;
    display: flex;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    padding-top: 3px;
    border: none;
    
}
.main__cta_button{
    margin: 0px auto 20px;
    width: 100%;
    max-width: 350px;
    height: 53px;
    background-color: #002D58;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 1;
    display: flex;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    padding-top: 3px;
    border: none;
  }
  

.main__cta_renueva {
    width: 350px;
    height: 53px;
    background-color: #002D58;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 1;
    display: flex;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    padding-top: 3px;
    border: none;
    margin: 0 auto;
}
.main__cta_renueva:hover{
    background-color: #1a75ce;
    color: #FFFFFF;
    transition: .3s ease-in-out;
}

.main__cta:hover{
    background-color: #1a75ce;
    color: #FFFFFF;
    transition: .3s ease-in-out;
}

.main__link{
    color: black;
    display: block;
    text-align: right;
    font-size: 20px;
    line-height: 1;
    line-height: 38px;
    font-weight: bold;
    text-decoration: underline;
}
.msg__error{
    display: none;
    background-color: var(--red-color);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    text-align: center !important;
    margin: 8px 0px;
    padding: 10px;
}

.phone__cta{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 639px;
    font-size: 22px;
    line-height: 1;
    font-weight: bold;
    color: var(--black-color);
    background-color: rgb(223, 229, 229);
    width: -webkit-fill-available;
    text-decoration: none;
    padding: 11px 15px;
    margin: auto;
    border-radius: 100px;
}

.phone__cta img{
    width: 30px;
    height: 33px;
    margin-right: 8px;
}
.frm__derecha {
    float: right;
}
.whats__cta{
    font-size: 20px;
    max-width: 519px;
}

.ty__msg, .fail__msg{
    display: none;
}
.popup{
    position: fixed;
    left: 0; right: 0; top: 0; bottom: 0;
    margin: auto;
    z-index: 20;
    display: none;   
    background: rgb(20, 20, 20, 0.8);
    height: 100%;
}
.popup__wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    overflow-x: hidden;
}
.popup__info{
    padding: 40px 20px;
    width: 350px;
    position: relative;
    text-align: center;
    background-color: #E5F1F1;
    border-radius: 8px;
}
.popup__info h3{
    font-weight: normal;
}
.popup__info p{
    font-size: 16px;
    margin-bottom: 12px;
}
.cta__popup{
    color: var(--green-light-color);
    text-decoration: underline;
    font-weight: bold;
}
.close__popup{
    position: absolute;
    right: 10px;
    top: 10px
}
.close__popup img{
    width: 25px;
}
.cta__show__error{
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-color: var(--red-color);
    margin-left: 10px;
    display: inline-block;
}

.main__cta.disabled{
    opacity: 0.5;
    cursor: not-allowed;
}
.password__check{
    border: 1px solid #454545;
    width: 9px;
    height: 9px;
    border-radius: 9px;
    margin-right: 7px;
    background-color: #FFFFFF;
}
.password__check.checked{
    background-color: #5FB446;
}
.password__details__row{
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.password__details p{
    font-weight: bold;
    margin: 0;
}
.password__title{
    font-weight: bold;
    margin: 0px 0px 10px 0px;
    padding: 0px 20px;
}
.password__details p, p.password__title{
    font-size: 14px !important;
}
.genero__filds .input{
    max-width: 100px;
    margin-left: 0;
}
.frm__row.genero{
    grid-template-columns: repeat(1, 1fr);
}
.genero__filds{
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 8px;
    align-items: center;
}
.frm__radio__row{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.frm__radio__row .frm__radio:nth-child(1){
    margin-right: 20px;
}
.frm__link{
    color: #002D58;
    text-decoration: underline;
    word-break: break-word;
}

.input__grid{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.tab__input.selected{
    background-color: #ECE9EE;
}
.login__link, .menu li a.login__menu{
    display: none;
}

.frm__terminos{
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.input__radio2 {
    height: 20px;
    width: 20px;
    padding: 20px;
    margin-right: 10px;
}

.logo_ike{
    width: 15%;
    position: relative;
    top: -2px;
}

@media screen and (min-width: 568px) {
    .footer__links a{
        min-width: 25%;
    }
}

@media screen and (min-width: 768px) {
    .menu{
        width: 40%;
        padding: 65px 0px 10px 0px;
    }

    .bg {
        width: 60%;
    }
    a.login__menu{
        text-decoration: underline;
        color: var(--green-light-color) !important;
    }
    .header__logo{
        width: 25%;
    }

    .footer__links a{
        min-width: auto;
        font-size: 12px;
        margin-bottom: 20px;
    }
    .footer__links{
        display: grid;
        grid-template-columns: repeat(5, auto);
        grid-gap: 0px 20px;
    }
    footer{
        padding: 20px 0px 0px 0px;
    }

    .whats__cta img{
        width: 38px;
        height: 35px;
        margin-right: 25px;
    }

    .frm__row{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 25px;
        margin-bottom: 20px;
        align-items: center;
    }
    .input, .tab__input{
        padding: 13px 12px;
        font-size: 16px;
    }
    .input.date{
        padding: 12px 12px;
    }
    .input {
        border-radius: 10px;
    }
    select{
        background-position: 97% 5px;
        border-radius: 10px;
    }
    .input.search{
        background: url(../static/img/icons/search.svg) no-repeat;
        background-position: 12px 10px;
    }
    .genero__filds{
        grid-template-columns: min-content min-content min-content min-content;
        grid-gap: 46px;
    }
    .genero__filds .input, .membresia__input{
        max-width: 150px;
        margin-left: 0;
    }
    .membresia__input{
        margin-left: 20px;
    }
    .tab__input{
        width: 200px;
        margin-left: 0;
        margin-right: 20px;
        cursor: pointer;
    }
}

@media screen and (min-width: 943px) {
    .menu{
        width: 30%;
    }

    .bg {
        width: 70%;
    }
    .logo_ike{
        width: 5%;
    }
    .menu li a{
        font-size: 18px;
    }

    .footer__links a{
        font-size: 14px;
    }
}

@media screen and (min-width: 1200px) {
    .menu{
        width: 20%;
    }

    .bg {
        width: 80%;
    }
    .header__logo{
        width: 28%;
    }
    h1{
       font-size: 36px;
       line-height: 52px; 
       margin-bottom: 30px;
    }
    h2{
        font-size: 30px;
        line-height: 44px; 
        margin-bottom: 45px;
    }
    .phone__cta{
        font-size: 24px;
        justify-content: center;
        padding-left: 0px;
    }
    .phone__cta img{
        margin-right: 50px;
        width: 44px;
        height: 36px;
    }
    .whats__cta{
        font-size: 24px;
    }
    .msg__error{
        font-size: 16px;
    }
    .popup__info p {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .cta__popup{
        font-size: 18px;
    }
    .lbl{
        font-size: 16px;
    }
    .lbl02 {
        float: right;
        text-align: right;
        font-size: 16px;
    }
}

.swal-button--confirm-color {
    background-color: #002D58 !important; /* Cambia el color de fondo del botón */
    color: white !important; /* Cambia el color del texto del botón */
}

.footer__copyright{
    background-color: #004B86;
    font-size: 12px;
    color: #F6F6F6;
    text-align: center;
    padding: 16px 0;
}

.pointer{
    cursor: pointer;
}

#header a.header__logo img {
    height: 65px;
    width: 100px;
}
#header .menu img {
    width: 50%;
}