@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
 

*{
  font-family: 'Lato', sans-serif;
}

html{
    font-size: 14px;
    scroll-behavior: smooth;
}



/* FUENTES ==========================================
====================================================*/

.text-normal{
    font-size: 1rem;
}
.text-small{
    font-size: 0.8rem;
}
.text-xsmall{
    font-size: 0.64rem;
}


/* COLORES TEXTOS ==================================
====================================================*/

.text-primario{
    color: var(--Color1) !important;
}

.text-gray{
    color: #454545;
}

.text-header{
    color: var(--Color4);
}

.text-contraste{
    color: lch(from var(--Color1) calc((50 - l) * infinity) 0 0) !important;
}

/* BACKGROUNDS GENERALES  ==========================
====================================================*/

.bg-primario{
    background-color: var(--Color1);
    color: lch(from var(--Color1) calc((50 - l) * infinity) 0 0) !important;
}
.bg-primario-2{
    background-color: var(--Color2);
}
.bg-primario-dark{
    background-color: color-mix(in srgb, var(--Color1), black 15%);
}
.bg-primario-light{
    background: color-mix(in srgb, var(--Color2) 15%, white) !important;
}

.bg-gray-xlight{
    background-color: color-mix(in srgb, #294b52 15%, white);
}

.bg-white-transparente{
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
}


.bg-header{
    background-color: var(--Color3);
}

.bg-header-dark{
    background-color: color-mix(in srgb, var(--Color1), black 15%);
}

.bg-light{
    background-color: var(--Color5) !important;
}

.bg-seleccionado{
    background: color-mix(in srgb, var(--Color1) 8%, white) !important;
    box-shadow: 0px 0px 6px 1px var(--Color1);
}

/* BOTONES =========================================
====================================================*/

.btn-primario{
    text-decoration: none;
    background-color: var(--Color1);
}
.btn-primario:hover , .btn-primario:focus{
    background-color: color-mix(in srgb, var(--Color1), black 10%);
}
.btn-primario:active{
    background-color: color-mix(in srgb, var(--Color1), black 25%);
}

.btn-secundario{
    text-decoration: none;
    border: thin solid var(--Color1);
    color: var(--Color1);
    background-color: #ffffff;
}
.btn-secundario:hover , .btn-secundario:focus{
    background-color: color-mix(in srgb, var(--Color1), black 10%);
    color: #ffffff;
}
.btn-secundario:active{
    background-color: color-mix(in srgb, var(--Color1), black 25%);
    color: #ffffff;
}


.btn-link{
    text-decoration: none;
    color: var(--Color1);
}
.btn-link:hover , .btn-primario:focus{
    color: color-mix(in srgb, var(--Color1), black 10%);
}
.btn-link:active{
    color: color-mix(in srgb, var(--Color1), black 25%);
}

.btn-mapa{
    background: url(../images/bg-mapa.jpg);
    background-size: cover;
    background-position: center center;
}


.btn-ordenar:hover{
    background-color: rgb(233, 236, 239) !important;
}
.btn-ordenar:active , .btn-ordenar:focus{
    color: var(--Color1) !important;
    font-weight: 600;
    background: color-mix(in srgb, var(--Color1) 15%, white) !important;
    border: thin solid color-mix(in srgb, var(--Color1) 25%, white) !important;
}


.btn-check:checked+.btn{
    color: var(--Color1) !important;
    font-weight: 600;
    background: color-mix(in srgb, var(--Color1) 15%, white) !important;
    border: thin solid color-mix(in srgb, var(--Color1) 25%, white) !important;
}


.btn-filtro-mapa:hover{
    background: color-mix(in srgb, var(--Color1) 15%, white) !important;
    border: thin solid color-mix(in srgb, var(--Color1) 25%, white) !important;
}


/* ESTILOS VARIOS ==================================
====================================================*/

.border-8px{
    border-radius: 8px;
}
.border-15px{
    border-radius: 15px;
}
.border-20px{
    border-radius: 20px;
}
.border-23px{
    border-radius: 23px;
}
.border-25px{
    border-radius: 25px;
}

.border-f3{
    border: thin solid #f3f3f3;
}


.btn-close-modal{
    top: 7%;
    right: 5%;
}

.top-10px{
    top: 10px;
}


.form-check-input:checked{
    background-color: var(--Color1) !important;
    border-color: var(--Color1) !important;
}
.form-check-input:focus {
    border-color: var(--Color1) !important;
    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--Color1) 15%, white) !important;
}

.form-select , .form-control{
    border: thin solid #f3f3f3 !important;
}

.form-control:focus{
    border-color: var(--Color1) !important;
    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--Color1) 25%, white) !important;
}


.estrellas-hoteles{
    color:  #FD910D;
}

.link-footer:hover{
    color: var(--Color1) !important;
    font-weight: 600;
}



/* MAIN ============================================
====================================================*/

.vh-index{
    height: 100vh;
}

.bg-main{
    background-image: url(../images/bg-main.jpg);
    background-size: cover;
    background-position: 50% 20%;
}
.bg-general{
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-image: url(../images/bg-main.jpg);
    background-size: cover;
    background-position: 50% 30%;
}
.bg-promociones{
    height: 40vh;
    background: url(../images/img-especial.jpg);
    background-size: cover;
    background-position: center center;
}

.logo-header{
    height: 30px;
}


.pos-buscador-general{
    width: 90% !important;
    position: relative;
    top: -75px;
    z-index: 10;
}
.pos-buscador-promociones{
    width: 90% !important;
    bottom: -28%;
    left: 5%;
}


.m-section-main{
    margin-top: 200px !important;
}

.cont-img-destino:before{
    content: '';
    position:absolute;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%,rgba(0,0,0,.7) 100%);
    z-index: 1;
    border-radius: 15px;
}

.img-destino{
    width: 100%;
    max-height: 150px;
    object-fit: cover;
}

.cont-img-oferta:before{
    content: '';
    position:absolute;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 30%,rgba(0,0,0,.8) 100%);
    z-index: 1;
    border-radius: 20px;
}

.img-oferta{
    width: 100%;
    height: 350px;
    object-fit: cover;
}


.item-ciudad-buscador{
    cursor: pointer;
    padding: 3px 15px;
}
.item-ciudad-buscador:hover{
    color: #ffffff;
    background: var(--Color1);
}



/* RESULTADOS ======================================
====================================================*/

.iconos-resultado{
    height: 12px;
}

.iconos-servicios{
    height: 18px;
}

.linea-rango{
    width: calc(100% - 18px);
    height: 5px;
}
.point-rango{
    width: 18px;
    height: 18px;
    border-radius: 100%;
    top: calc(50% - 9px);
}
.valor-rango{
    top: 5px;
}


.img-hotel{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 9999;
}

.box-patrocinado{
    margin: auto;
    background: linear-gradient(to bottom, rgba(248, 249, 250,.9) 0%,rgba(248, 249, 250,.7) 100%);
    border: thin solid rgba(248, 249, 250,.85);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

/* FICHA HOTEL ======================================
====================================================*/

.box-descr-ficha{
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}


/* FORMULARIO PAGO =================================
====================================================*/

.iconos-tarjeta{
    width: 35px;
}

.block-cancelacion{
    background: color-mix(in srgb, var(--Color1) 10%, white) !important;
    border: thin solid var(--Color1);
}
.block-cancelacion::-webkit-scrollbar {
    width: 8px;
}
.block-cancelacion::-webkit-scrollbar-track {
    border-radius: 6px;
    background: color-mix(in srgb, var(--Color1) 25%, white);
}
.block-cancelacion::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: var(--Color1);
}

.block-cancelacion-txt{
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}


/* SOLO MAPA ========================================
====================================================*/

.width-collapse-filtro{
    width: 30%;
}



/* LOADER ==========================================
====================================================*/
.loader{
    width: 150px;
    height: 150px;
}

.cont-animacion{
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--Color1);
    animation: spin 2s linear infinite;
}
.cont-animacion:before{
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--Color1);
    animation: spin 3s linear infinite;
}
.cont-animacion:after{
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--Color1);
    animation: spin 1.5s linear infinite;
}

@keyframes spin{
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


@media (max-width: 768px) and (orientation: landscape){

    .vh-index{
        height: auto !important;
    }
    .bg-main{
        padding: 3rem 0;
    }
}


@media (min-width: 350px){

    .logo-header{
        height: 40px;
    }
}



@media (min-width: 768px){

    html{
        font-size: 16px;
    }

    /* MAIN ============================================
    ====================================================*/


    .size-titulos-repsonsive{
        width: 70%;
    }

    .pos-buscador-general{
        top: -50px;
    }
    .pos-buscador-promociones{
        bottom: -10%;
    }


    .m-section-main{
        margin-top: 150px !important;
    }
    
    .bg-general {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    
}



@media (min-width: 992px){

    /* MAIN ============================================
    ====================================================*/

    .size-titulos-repsonsive{
        width: 50%;
    }


    /* FICHA HOTEL ======================================
    ====================================================*/

    .box-descr-ficha {
        -webkit-line-clamp: 20;
    }



    /* SOLO MAPA =========================================
    ====================================================*/

    .width-collapse-filtros{
        width: 296px;
    }


}


@media (min-width: 1200px){

    /* MAIN ============================================
    ====================================================*/

    .pos-buscador-promociones{
        width: 70% !important;
        left: 15%;
    }

    /* SOLO MAPA =========================================
    ====================================================*/

    .width-collapse-filtros{
        width: 356px;
    }


}



@media (min-width: 1400px){

    /* SOLO MAPA =========================================
    ====================================================*/

    .width-collapse-filtros{
        width: 416px;
    }

}


