:root{
    --primary-color:  #ff385c; 
    --active-btn:rgb(250, 139, 160); 
    --disable-btn: rgb(255, 196, 196);
    --selected-btn:rgb(238, 238, 238);
    --error-text:rgb(156, 0, 0);
    --error-background: rgb(251, 220, 220);
    --borders-color:rgb(222, 222, 222);
    --radius: 3px;
    --radius-fort:8px;
    --radius-total:100px;
    --font-size-redu: 0.9rem;
    --font-bold-small:200;
    --font-bold-medium:400;
    --font-bold: 500;
    --font-big1:1.1rem;
    --font-big2:1.2rem;
    --font-big3:1.3rem;
    --font-super-big1:1.4rem;
    --font-super-big2:1.6rem;
    --font-super-big3:1.8rem;
    --font-color-grey:#717171;
    --fondo-default-body: rgb(244, 244, 244);
    --fondo-white-body:white;
    --fondo-modal: #e4e4e4;
    --secundary-color-blue: rgb(35, 115, 243);
    --secundary-color-red:rgb(232, 48, 48);
    --secundary-color-green:rgb(70, 211, 0);
    --red-flag:rgb(255, 132, 132);
    --green-flag: rgb(158, 255, 110);
    --yellow-flag:rgb(255, 237, 135);

}

canvas{
    border: 1px solid black;
    width:100%;
    max-width: 400px;
    height: 200px;
    
}
.menu-canvas{
    width: 100%;
    height:40px;
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin:0px 0px 10px 0px;
    
}
.menu-element{
    width:30px;
    display:flex;
    flex-direction: column;
}

.a-underline{
    text-decoration: underline;
}
.a-white{
    color: white;
}
.a-black{
    color:black;
    font-weight: var(--font-bold);
}
.a-blue{
    color: rgb(8, 40, 202);
    text-decoration: underline;
}
.a-form-help{
    color: rgb(8, 40, 202);
    text-decoration: underline;
    font-size: 0.80rem;
}
.bold-small{
    font-weight: var(--font-bold-small);
}
.bold{
    font-weight: var(--font-bold);
}
.underline{
    text-decoration: underline;
}
.font-big-1{
    font-size:var(--font-big1);
}
.font-big-2{
    font-size:var(--font-big2);
}
.font-big-3{
    font-size:var(--font-big3);
}
.font-super-big-1{
    font-size:var(--font-super-big1);
}
.font-super-big-2{
    font-size:var(--font-super-big2);
}
.font-super-big-3{
    font-size:var(--font-super-big3);
}
.btn-redondo{
    border-radius: var(--radius-total);
}
.font-grey{
    color: var(--font-color-grey);
}
.invert-color{
    filter: invert(1);
}
.hidden {
    display: none !important;
    
}
.secundary-color-blue{
    color: var(--secundary-color-blue);
}
.secundary-color-red{
    color: var(--secundary-color-red);
}
.secundary-color-green{
    color: var(--secundary-color-green);
}
.oval{
    border-radius: var(--radius-total);
}

*{
    box-sizing: border-box;
    scroll-behavior: smooth;
 }
 
 body{
    font-family: 'Roboto','Roboto Condensed ', sans-serif;
    font-size: 15px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
    margin:0;
    height: auto;
    color:#222;
    line-height: 1.2;
    background-color: var(--fondo-default-body);
    overflow-y: scroll;

}
h1{

    font-size: 1.8rem;
    letter-spacing: 1px;
    line-height: 36px;
    box-sizing:border-box;
    margin: 0; /* Elimina los márgenes predeterminados */
    padding: 0; /* Elimina el padding predeterminado */
}
h2{
    font-size: 1.4rem;
}
h3{
    font-size: 1.2rem;
}
input,select {
     width: 100%;
     padding-left: 10px;
   }
 
 a{
     text-decoration: none;
     color:black;
  
 }
 input[type="file"]{
    border:0;
    padding-left: 0;
    border-radius: 0;
 }


.body-white{
    background-color: var(--fondo-white-body);
}
input{
    height: 40px;
    border: 1px solid var(--borders-color);
    border-radius: var(--radius-fort);

}
input:focus{
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-fort);
    outline: none;

}
.input-read-only{

    background-color: #cdcdcd;
    cursor: not-allowed;

}
select{
    height: 40px;
    border: 1px solid var(--borders-color);
    border-radius: var(--radius-fort);
}
.select-middle{
    height: 30px;
}
button{
    background: none;
    border: 0;
    color: inherit;
    font: inherit;
    line-height: normal;
    overflow: visible;
    padding: 0;
    
}
.header{
    width:100%;
    height:60px;
    display:flex;
    padding-right:5px;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;
    background-color:var(--primary-color);
    color: white; 
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.68);   
    gap:10px;
}




.header-trans{
    height: 80px;
    width:100%;
}

.header-tiitle-a{
    font-family: 'Kaushan Script', cursive;
    font-size: 1.8rem;
   position:relative;
   top:5px;

}
.header-subtitle{
    font-size: 0.50rem;
    font-weight: 300;
    top:-3px;
    position: relative;
    left:7px;
}
.header-icon-admin{
    display: flex;
    align-items: center;
    max-width: 200px;
    width:100%;
    gap:15px;
}
.header img{
    filter: invert(1);
    height:30px;
    width:30px;
} 
.header-btn{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header-btn-title{
    margin:3px;
    font-weight: 400;
    font-size: 0.65rem;
}
.header-img-flag{
    filter: none !important;
}
.header-lenguaje a{
    display:flex;
    flex-direction: row;
    align-items: center;
    gap:5px;
}

.footer{
    width:100%;
    position:fixed;
    bottom:0;
    z-index: 1;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-around;
    align-items: center;

    color: white;   
    
}
.footer-main{
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.68);   
    background-color:var(--primary-color);
    width:100%;
    height:60px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}

.footer-sub{
    display:flex;
    flex-direction: column;
    display:none;
    width:100%;
    z-index: 1;
    background-color:var(--primary-color);
    box-shadow: 0px -1px 2px 0px rgba(0, 0, 0, 0.424);   
    gap:10px;
    padding: 10px;
}
.footer-sub-row{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid rgb(215 0 39)

}
.footer-sub-btn{
    width:70px;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.footer-icon{
    width:70px;
}

.footer img{
    filter: invert(1);
    height:30px;
    width:30px;
}
.footer-trans{
    height: 80px;
    width:100%;
}
.footer-btn{
    display: flex;
    flex-direction: column;
    align-items: center;
   
}
.footer-btn-img-sub{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content:space-evenly;

}
.footer-btn-shadow{
    color:rgb(255, 0, 0);
    box-shadow: inset 5px 8px 15px -14px rgba(0,0,0,1);
}
.footer-btn-title{
    margin:3px;
    font-weight: 400;
    font-size: 0.65rem;
}


.header-user{
    padding:10px;
}
.main{
    max-width: 700px;
    width:100%;
    display: flex;
    flex-direction: column;
    margin:auto;
    align-items: center;
    align-content: center;
    justify-content: space-evenly;
}
.main-head{
    max-width: 700px;
    width:100%;
    padding:0px 10px;
    padding-top:0px;
    margin-top:20px;
}
.main-head-title{
    margin-bottom:16px;
}

.main-head-menu-actions{
    display:flex;
    flex-direction: row;
    gap:5px;
    justify-content: left;
    margin-bottom: 20px;
}

.main-head-section-busqueda{
    width:100%;
    margin-bottom: 20px;
    
}
.section-busqueda form{
    display:flex;
    flex-direction:row;
    width:100%;
}
.section-busqueda form input{
    width:100%;
}
.main-content{
    max-width: 700px;
    width:100%;
    padding:10px;
    padding-top:0px;
}
.main-content-menu{
    width: 100%;
    max-width: 700px;
    display:flex;
    flex-direction: row;
    justify-content:flex-start;
    margin-bottom:10px;
    flex-wrap: wrap;
    gap:3px

}
.btn-ovalado-white{
    border-radius: var(--radius-total);
    padding:10px 10px;
    min-width:85px;
    border:1px solid var(--borders-color);
    background-color: var(--fondo-white-body);
    text-align: center;

}
.btn-ovalado-white-active{
    background-color: var(--selected-btn);
}
.section-fact-fechas{
    display:flex;
    flex-direction: row;
    align-items: end;
    justify-content:space-between ;
    gap:10px;
    justify-content: flex-start;
    margin-bottom:20px;
       
}

.contain-flex-row{
    display:flex;
    flex-direction: row;
    gap: 10px;
    margin:20px 0px;
    
}
.elem-list-modal{
    display:flex;
    flex-direction: column;
    gap:0px;
    padding:20px 0px 20px 0px;
    margin-bottom:0px;
    border-bottom:solid 1.5px #e3e3e3;
}
.vista-lista{
    display:flex;
    flex-direction: column;
    gap:10px;
}
.flex-column{
    display:flex;
    flex-direction: column;
}
.vista-lista-element{

    background-color: var(--fondo-white-body);
    border:solid 1px var(--borders-color);
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-radius: var(--radius-fort);
    gap:2px;
}
.vista-lista-element > :first-child{

    margin-bottom: 5px;
    font-size: 1.005rem;
    color:var(--primary-color)
    

}
.vista-lista-element-doble{

    background-color: var(--fondo-white-body);
    border:solid 1px var(--borders-color);
    display: flex;
    flex-direction: row;
    padding: 15px;
    border-radius: var(--radius-fort);
    gap:10px;
}
.vista-lista-element-doble-icon{
    width:50px;
    height:50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size:contain;
}

.div-paginacion{
    width:100%;
    height:60px;
    margin-top:20px;
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content:center;
    gap:15px;
}
.icon-erase-res{
    width:20px;
    height:20px;
    position:absolute;
    top: 10px;

}

.boxie-panel{
    display:flex;
    flex-direction: column;
    background-color: var(--fondo-white-body);
    padding:20px;
    border-radius: var(--radius-fort);
    border: 1px solid var(--borders-color);
}
.profile-img{
    width:100px;
    height:100px;
    border: 1px solid var(--borders-color);
    border-radius: var(--radius-total);
    margin-bottom:20px;
    & img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.elem-list{
    height: 50px;
    border-bottom:1px solid var(--borders-color);
    padding:15px 0px 0px 0px;
}

.boxie{
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: white;
    text-align: center;
    padding:20px;
    margin-top:20px;
    width:90%;
    margin-bottom:20px;
    border-radius: var(--radius-fort);
    box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.68);

}
.boxie-titulo{
    display:flex;
    flex-direction: column;
    align-items: center;

}
.boxie-titulo-1{
    font-size: 1.2rem;
    font-weight: 600;
    color:var(--primary-color);
    margin-bottom: 0px;
    margin-top: 0px;


}
.boxie-titulo-2{
    margin-top: 0px;
    margin-bottom:25px;
}
.boxie-select-acc{
    margin-bottom: 15px;
}
.boxie-puertas{
    display: flex;
}

.boxie-monumentos{
    display:none;
}
.boxie-restaurantes{
    display:none;
}
.boxie-enlaces{
    display:none; 
}
.boxie-ocio{
    display:none; 
}
.boxie-informacion{
    display:none;
}
.boxie-login{
    align-items: center;
    text-align: left;
}
.tur-images{
    display:flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap:10px;

}
.tur-images-box{
    width:100%;
    height:150px;
    border-radius: var(--radius);
}
.tur-images a img{
    object-fit:cover;
    width:100%;
    height:100%;
    border-radius: var(--radius);
}
.tur-tittle-box{
    margin:0px;
    font-weight: 500;
    font-size: 1.1rem;
    
}
.images-cuadradas{
    display:flex;
    flex-direction: row;
    justify-content: left;
    flex-wrap: wrap;
    gap:10px;

}
.imagen-box-cuadrada{
    width:48%;
    height:140px;
    border-radius: var(--radius-fort);
    margin-bottom:30px;
}
.imagen-box-cuadrada a img{
    object-fit:cover;
    width:100%;
    height:100%;
    border-radius: var(--radius);
}
.tittle-box-cuadrada{
    margin-bottom:10px;
    margin-top:0px;
    font-weight: 500;
    font-size: 1rem;
    
}
.en-interes{
    font-size: 1.1rem;
    margin:0px;
    
}
.en-interes a{
    color:var(--primary-color);
    display: block;
    margin-bottom:5px;
    
}
.informacion p{
    font-weight: 100;
    text-align: left;
    font-size:0.9rem;

}
.font-negra{
    color:black;
}
.btn-primary{
    font-family: 'Roboto Condensed', sans-serif;
    cursor: pointer;
    max-width:100px;
    width:100%;
    height:40px;
    border: none;
    background-color:var(--primary-color);
    color:white;
    border-radius: var(--radius-fort);
    transition: 0.2s ease,transform 0.1s ease;
}
.btn-primary:disabled{
    background-color: var(--disable-btn);
    cursor:auto;
}
.btn-primary:active{
    font-family: 'Roboto Condensed', sans-serif;
    border: none;
    background-color:var(--active-btn);
    color:white;
    border-radius: var(--radius-fort);
}
.btn-flex{
    max-width:600px !important;
    width:100%;
}
.puertas-botones{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    color:white;
}
.btn-puertas{
    width:130px; 
    height:150px; 
    max-width: 130px;
}
.btn-puertas:active{
    width:130px; 
    height:150px;
}
.img-titulo-puertas{
    width:30px;
    filter: hue-rotate(10deg);
    
}
.img-puertas{
    filter: invert(1);
    width:40px;
    margin-top:0px;
}
.text-btn-puerta{
    font-size: 0.85rem;
    font-weight: 200;
    margin-bottom: 0px;
    
}

.login-form form{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width:300px;
    gap:10px;
}
.msgInc{
    display:none;
    color:var(--error-text);
    border-radius: var(--radius-fort);
    padding:12px;
    background-color: var(--error-background);

}
.btn-show-pass{
    background-image: url("../img/ojo_visible.png");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: white;
    border-radius: 2px;
    width:30px;
    height:30px;
    border-width: 0px;
    position:relative;
    display:inline;
    top:-45px;
    left:267px;
    margin-bottom:-38px;
    opacity: 0.7;
}
.btn-hide-pass{
    background-image: url("../img/ojo_novisible.png");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: white;
    border-radius: var(--radius);
    width:30px;
    height:30px;
    border-width: 0px;
    position:relative;
    display:inline;
    top:-44px;
    left:267px;
    margin-bottom:-38px;
    opacity: 0.7;
    
}
.btn-login{
    height:40px;
    width: 100%;
}
.btn-login:active{
    height:40px;
    width: 100%;
}
.login-form-help{
    color: rgb(8, 40, 202);
    text-decoration: underline;
    font-size: 0.80rem;
}
.fondo-modal{
    top: 0px;
    left: 0;
    background: rgba(0, 0, 0, 0.226);
    position:absolute;
    height: 100vh;
    width: 100%;
    display:none;
    transition: opacity 0.4s ease, display 0.4s ease;
    z-index: 2;
    
    
}
.modal{
    width: 100%;
    max-width: 600px;
    max-height:100dvh;
    height: auto;
    /* max-height:800px; */
    top: 3000px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 3;
    background-color: var(--fondo-white-body);
    border-radius: var(--radius-fort);
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: normal;
    align-items: center;
    transition: top 0.4s ease;
    align-items: flex-start;
    
}
.modal-section{
    width:100%;
    margin-bottom:5px;
    align-self: center;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: white;
    box-shadow: 0px 2px 5px 0px rgba(168,168,168,1);

}
.btn-redondo{
    background-color:var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size:1.3rem;
    border-radius: var(--radius-total);
    
}
.btn-redondo img{
    width:23px

}

.modal-cerrar{
    position: absolute;
    right: 5px;  
    top: 5px; 
    margin-bottom:20px;
}
.modal-form{
    margin: 0 auto;
    align-self: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap:10px;
    

}
.nom-hues{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:10px;
    
    
}
.icon-nom-hues{
    height: 40px;
    width:40px;
}
.btn-nom-hues{
    
    display: flex;
    flex-direction: column;
    align-items: center;
    width:48%;
    padding:10px;
    gap:10px;
    border:1px solid var(--borders-color);
    border-radius: var(--radius-fort);

}

.modal-header{
    
    width:100%;
    background-color:var(--fondo-white-body);
    border-top-left-radius: var(--radius-fort);
    border-top-right-radius: var(--radius-fort);
    padding:20px;
    margin-bottom:5px;
    box-shadow: 0px 2px 5px 0px rgba(168,168,168,1);

}
.modal-content{
    margin: 0 auto;
    align-self: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-y: scroll;
}
.modal-footer{
    height:10px;
    width:100%;
    background-color:var(--fondo-white-body);
    border-bottom-left-radius: var(--radius-fort);
    border-bottom-right-radius: var(--radius-fort);
    margin-top:-4px;
    
}
.loading-back{
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.529);
    position:absolute;
    height: 100vh;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
    z-index: 5;
}
.loading-section{
    width: 100%;
    max-width: 700px;
    height:100vh;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    position:absolute;
    background-color: var(--fondo-white-body);
    margin: 0 auto;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding:30px;
    text-align: center;
}
.panel{
    margin-top:35px;
    width:100%;
    height:50px;
    background-color: var(--primary-color);
    display:flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-evenly;


}
.panel img{
    filter: invert(1);
    height:35px;
    width:35px;
}
.tabla-h{
    display: flex;
    align-items: center;
    flex-direction: column;
    width:90%;
    min-width: 350px;
    display:none;
    
    
}
.tabla-h table{
    font-size: 0.9rem;
    font-weight: 200;
    text-align: center;

    width:100%;
    border-spacing: 0px;
    border-collapse: collapse;
    
}

.tabla-h table td{
    padding-top:10px;
    border: 1px solid rgb(215, 215, 215);
    border-collapse: collapse;
    padding:5px;
}

.loader {
    width: 40px;
    height: 40px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

/*Pagina de registro de huespedes*/   
.form-regis-hues{
    width:100%;
    max-width: 700px;
    padding:0 20px;
}
.section-tittle-registroHuespedes{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.section-tittle-registro-comp{
    text-align: center;
    display: none;
    flex-direction: column;
    align-items: center;
}
#regisFirma{
    text-align:justify;
    display:none;
    
    
}
#ayuEmisNueHues{
    display:none;
}
#ayuSopNueHues{
    display:none;
}
#imgsNiesEmisNueHues{
    display:none;
}
.regis-hues-dni-img{
    display: none;
    width: 0%;
    max-width:400px;
    transition: width 2s;
}
.regis-hues-dni-img img{
    width: 100%;
    max-width:400px;
}


/* Facturacion */

.box-balance{
    width:100%;
    margin-top: 20px;
    display:flex;
    flex-direction: column;
    flex-wrap: nowrap;
    background-color: var(--fondo-white-body);
    border: 1px solid var(--borders-color);
    border-radius: var(--radius-fort);
    display: flex;

    border-radius: var(--radius-fort);
    & .containHead{
        
        display: flex;
        flex-direction: row;
        justify-content:flex-start;
        border-bottom: 1px solid var(--borders-color);

    
        & .containHeadElement{       
            width:50%;
            & .elementIzq{
                border-right: 1px solid var(--borders-color);
                padding:30px 10px;
                text-align: center;
            }
            & .elementDer{
                text-align: center;
                padding:30px 10px;
            }
        }
       
    }
    & .containBody{
        width:100%;
        display: flex;
        flex-direction: row;
        justify-content:center;
        padding: 30px 10px;

    }
}

.red-flag{
    background-color: var(--red-flag);
    padding:0px;
    border-radius: var(--radius);
    width:fit-content;
    padding: 0px 5px;

}
.green-flag{
    background-color: var(--green-flag);
    padding:0px;
    border-radius: var(--radius);
    width:fit-content;
    padding: 0px 5px;
}
.yellow-flag{
    background-color: var(--yellow-flag);
    padding:0px;
    border-radius: var(--radius);
    width:fit-content;
    padding: 0px 5px;
}

.display-row{
    display:flex;
    align-items: flex-start;
    flex-direction: row;
    gap:10px;
}
.wrap{
    flex-wrap: wrap;
}

.box-accommodation{
    width: 330px;
    height:540px;
    border: 1px solid var(--borders-color);
    background-color: var(--fondo-white-body);
    border-radius: var(--radius-fort);
    padding: 10px;
    display: flex;
    flex-direction: column;
}
.box-accomodation-row1{
    display:flex;
    flex-direction: row;
    width:100%;
    align-items: flex-start ;

}
.box-accomodation-img{
    position:relative;
    width:100%;
    height:280px;
    overflow: hidden; /* Para recortar la imagen si es necesario */
    margin-bottom:10px;

}
.box-accomodation-img img{
    border-radius: var(--radius-fort);
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.box-accomodation-row1-info{
    display: flex;
    flex-direction: column;
    gap:5px;
}
.box-accommodation-title{
    margin-bottom:10px;
}
.box-accommodation-row1-addres{
    height:40px;
    margin-bottom:10px;
}
.box-accommodation-buttons-row2{

    display: flex;
    flex-direction: row;
    gap:5px;

}
.box-accommodation-default{
    position: absolute;
    top:10px;
    right:10px;
    width: 20px;
    height: 20px;
    background-image: url('../img/check.png');
    background-size: contain;

}
.img-accommodation-mini{
    width:80px;
    height:80px;
}
.img-accommodation-mini img{
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 

