@charset "UTF-8";

:root {
    --h5-color: #6f839f;
    --h1-color: #161c2d;
    --button-fonfo: #e1bc34;
    --hover-any: #f8db48;
    --links-color: #1daeff;
    --fondo-formulario: #295aa5;
}

/* Declaraciones de fuentes */

@font-face {
    font-family: "Poppins Regular";
    src: url("../fuentes/Poppins-Regular.eot");
    src: url("../fuentes/Poppins-Regular.eot?#iefix") format("embedded-opentype"), url("../fuentes/Poppins-Regular.woff2") format("woff2"), url("../fuentes/Poppins-Regular.woff") format("woff"),
        url("../fuentes/Poppins-Regular.ttf") format("truetype"), url("../fuentes/Poppins-Regular.svg#Poppins-Regular") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins Bold";
    src: url("../fuentes/Poppins-Bold.eot");
    src: url("../fuentes/Poppins-Bold.eot?#iefix") format("embedded-opentype"), url("../fuentes/Poppins-Bold.woff2") format("woff2"), url("../fuentes/Poppins-Bold.woff") format("woff"), url("../fuentes/Poppins-Bold.ttf") format("truetype"),
        url("../fuentes/Poppins-Bold.svg#Poppins-Bold") format("svg");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins Medium";
    src: url("../fuentes/Poppins-Medium.eot");
    src: url("../fuentes/Poppins-Medium.eot?#iefix") format("embedded-opentype"), url("../fuentes/Poppins-Medium.woff2") format("woff2"), url("../fuentes/Poppins-Medium.woff") format("woff"),
        url("../fuentes/Poppins-Medium.ttf") format("truetype"), url("../fuentes/Poppins-Medium.svg#Poppins-Medium") format("svg");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins Light";
    src: url("../fuentes/Poppins-Light.eot");
    src: url("../fuentes/Poppins-Light.eot?#iefix") format("embedded-opentype"), url("../fuentes/Poppins-Light.woff2") format("woff2"), url("../fuentes/Poppins-Light.woff") format("woff"),
        url("../fuentes/Poppins-Light.ttf") format("truetype"), url("../fuentes/Poppins-Light.svg#Poppins-Light") format("svg");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

button {
    background: #009eb0;
    border: none;
    color: white;
    padding: 5px 20px 5px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

button:hover {
    scale: 1.1;
}

.boton_enviar, .boton_buscar {
    background: #009eb0;
    border: none;
    color: white;
    padding: 5px 20px 5px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.boton_enviar:hover {
    scale: 1.1;
}


.btn_oferta {
    border: none;
    background: var(--button-fonfo);
    border-radius: 50px;
    color: #ffffff;
    letter-spacing: 2px;
    font-family: "Poppins Bold";
    font-size: 13px;
    text-align: center;
    padding: 5px;
}

input {
    width: 100%;
    border: 1px solid #ffffff;
    background: white;
    border-radius: 50px;
    color: #009eb0;
    border: 1px solid #009eb0;
}

input::placeholder {
    color: #009eb0;
    letter-spacing: 2px;
    font-family: "Poppins Regular";
    padding-left: 20px;
}

.content-select {
    position: relative;
    width: 90%;
}

.background-search {
    background: var(--links-color);
    border-radius: 15px;
}

#txt_location {
    font-size: 13px;
}
select::-ms-expand {
    display: none;
}

.content-select i {
    position: absolute;
    right: 10px;
    top: calc(50% - 8px);
    width: 10px;
    height: 10px;
    display: block;
    border-left: var(--links-color) 2px solid;
    border-bottom: var(--links-color) 2px solid;
    transform: rotate(-45deg); /* Giramos el cuadrado */
    transition: all 0.25s ease;
    pointer-events: none;
    /* font-family: var(--tipografia-light); */
}

.linea-bottom {
    border-bottom: 1px solid #ffffff;
}

ul.custom-list {
    list-style-type: none; /* Eliminar los puntos de lista predeterminados */
    padding: 0;
}

li {
    color: rgba(255, 255, 255, 70%);
    font-family: "Poppins Regular";
}

ul.custom-list li {
    position: relative;
    padding-left: 25px; /* Espacio para el círculo */
    margin-bottom: 10px; /* Espacio entre elementos de la lista */
}

ul.custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px; /* Tamaño del círculo */
    height: 10px; /* Tamaño del círculo */
    background-color: white; /* Color del círculo */
    border-radius: 50%; /* Hacer el círculo */
    /*border: 1px solid black; /* Borde del círculo */
}

.linea-amarilla {
    width: 100%;
    height: 20px;
    background-color: var(--hover-any);
}

.select-card {
    height: 460px;
}
.select-card:hover {
    border: 3px solid var(--hover-any);
}
.cursor_pointer {
    cursor: pointer;
}
body {
    position: relative;
}

.background-translucido {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-desing {
    background: rgba(255, 255, 255, 1);
    border-radius: 20px;
}

.descp-desing {
    color: rgba(22, 28, 45, 0.7);
}

.flecha-derecha {
    position: absolute;
    top: 50%;
    right: 20px;
}

.flecha-izquierda {
    position: absolute;
    top: 50%;
    left: 20px;
}

.fondo-form {
    background-color: var(--fondo-formulario);
    border-radius: 15px;
}

.color-blanco-translucido {
    color: rgba(255, 255, 255, 0.7);
}

.mfp-close-btn-in .mfp-close {
    color: white !important;
}
.espacio-indicativo {
    text-indent: 40px;
}
.iti {
    width: 100% !important;
}
.iti__country {
    color: black !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
    color: white !important;
    background: #588dca !important;
    font-family: "Poppins Bold" !important;
    letter-spacing: 0px !important;
}

a {
    text-decoration: none;
    color: #009eb0;
}

.fondo-total2 {
    height: 100vh;
    background: url(../imagenes/fondo_error.jpg) bottom;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.div-gracias {
    font-size: 35px;
    text-align: center;
    font-weight: 700;
    color: white;
    font-family: "Poppins Regular";
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.6);
}
.btn-volver {
    background: white;
    padding: 10px;
    border-radius: 10px;
}

.borde-clic {
    border: 2px solid var(--hover-any);
    border-radius: 35px;
}
.txt_precio {
    font-weight: bold;
    padding: 10px;
    font-size: 20px;
    background: #efefef;
    margin-bottom: 10px;
}

.txt_codigo {
    font-size: 12px;
    align-items: end;
    display: flex;
}

.fondo_pie {
    background: #f4f4f4;
}
.txt_item_pie {
    font-size: 10px;
    color: #a2a2a2;
}
.txt_legal_imagen {
    font-size: 10px;
}
.color_azul {
    color: #009eb0;
}
.txt_principales {
    font-size: 26px;
}

p {
    font-family: "Poppins Light";
    font-size: 16px;
    color: #7c7c7c;
}

b {
    font-family: "Poppins bold";
}

select {
    width: 100%;
    background: none;
    border: 1px solid #cdecfa !important;
    border-radius: 10px;
    padding: 5px !important;  
    color: #7c7c7c;
    font-size: 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../../recursos/imagenes/arrow.svg);
    background-repeat: no-repeat;
    background-position: right 2px center;
    background-size: 20px;

}

.fondo_azul {
    background: url(../../recursos/imagenes/fondo_azul.png) center top no-repeat;
    background-size: cover;
    background-position-y: -100px;
}

.posicion_fondo{
    background-position-y: 200px;
}

.contenedor_filtros {
    background: white;
    border-radius: 10px;
}
.contendor_superior_filtros {
    background: white;
    border-radius: 10px 10px 0px 0px;
}
.card {
    background: white;
}

.altura_imagen_pequenas {
    height: 177px;
}

.recuadro_azul {
    background: #83d0f2;
}

.contenedor_numero {
    font-size: 50px;
    background: #569ebc;
    border: 1px solid white;
}

.campana {
    height: 730px;
}

.campana-interna{
    height: 260px;
}

.alto_galeria{
    height: 720px;
}


@media (max-width: 992px) {
    .alto_galeria{
        height: 200px !important;
    }
    .contendor_fechas{
        left: 0px !important;
    }
    .info_barra_miga_pan {
        width: 100%;
        top: 70px !important;
    }
    .background-ciudades {
        min-height: 320px;
        background-position: center !important;
    }
    .descripcion_amp {
        font-size: 10px;
    }
    .titulo_amp {
        font-size: 18px;
    }
    .txt_precio {
        font-size: 14px;
    }
    .color-blanco-translucido {
        font-size: 13px;
        padding: 10px;
    }
    .galeria_galeria {
        height: 230px !important;
        border-radius: 10px 10px 0px 0px;
    }
    .mfp-close {
        color: #333 !important;
    }
    .campana {
        height: 1210px;
    }
    .ovalo-blanco {
        background: none;
    }
    .texto_campana_movil {
        height: 580px;
        position: relative;
        top: 50%;
    }
    .fz-13 {
        font-size: 10px !important;
    }
    select {
        font-size: 15px !important;
        border: 1px solid #f1eeee;
        padding: 10px;
    }
    .alto_del_contenedor{
        top: 340px !important;
    }
    .fondo_azul{
        background-position-y: -410px !important;
    }
}
