


.banner-a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    flex-direction: column;
    position: relative;
}

.banner-a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-a h3{
    font-size: 64px;
    font-family: 'Inter',sans-serif;
    position:absolute;
    color:white
}

.banner-a a{
    position: absolute;
    bottom: 95px;
    padding-right: 20px;
    padding-left: 20px;
    width: 161px;
    height: 38px;
    font-size: 14px;
}


.contenedor-alquiler{
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap:40px
}

.grupo-alquiler{
    display: flex;
    flex-direction: column;
    gap:3px;
}

.objeto-alquiler{
    border: 2px solid #3E9984;
    border-radius: 9px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 250px;
    height: 392px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.objeto-alquiler img{
    width: 235px;
    height: 299px;
}

.objeto-alquiler-texto{
    display: flex;
    flex-direction: column;
    gap:10px;
}

.objeto-alquiler-texto p{
    text-align: center;
    font-family: 'Inter',sans-serif;
    font-size: 16px;
    font-weight: 500;
}


.boton-container{
    display: flex;
    border: 2px solid #3E9984;
    border-radius: 50px;
    overflow: hidden;
    width: 90px;
    height: 25px;
    position: relative;
}

.boton-container input{
    border: none;
    padding: 8px 12px;
    flex: 1;
    outline: none;
    font-size: 14px;
    text-align: center;
    width: 65px;
}

.boton-container input::-webkit-outer-spin-button,
.boton-container input::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}

.boton-container button{
    background-color: #3E9984;
    color:white;
    border:none;
    padding: 2px 10px;
    cursor: pointer;
    font-size: 16px;
    position: absolute;
    right: 0px;
}

.boton-container .btn-menos{
    position: absolute;
    right:60px
}

.grupo-objetos{
    display:flex ;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap:7px;
    margin-top: 10px;
}

.boton-añadir{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 15px;
}
.boton-añadir a{
    width: 130px;
    height: 36px;
    font-size: 11px;
    border-radius: 25px;
    line-height: 37px;
}

.grupo-objetos h2{
    font-size: 16px;

}

.grupo-objetos span{
    font-size: 16px;
}

.seleccion{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
    
}


.seleccion-objeto{
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.seleccionado{
    background-color: #3E9984;
    padding: 0px 5px;
    border-radius: 3px;
    color: white;
}

.oculto{
    display: none;
}

.dropdown{
    position: relative;
    display:inline-block
}


.dropdown-btn{
    background-color: #3E9984;
    width: 25px;
    height: 25px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.dropdown-content {
    display: none;  
    position: absolute;
    left:-400px;
    top:100px;
    grid-template-columns: 100px 1fr; 
    gap: 10px;
    background-color: #3E9984;
    padding: 35px;
    border-radius: 5px;
    z-index: 10;
}


.dropdown-content .options-title {
    color: black;
    font-weight: bold;
    display: flex;
    align-items: flex-start;
    background-color: white;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    height: 160px;
    margin-top: -10px;
}


.dropdown-content .options-container {
    display: flex;
    flex-direction: column;
}

.content-box { 
    border-radius: 5px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    gap: 25px;
    min-width: 150px;
    width: 680px;
    margin-bottom: -13px;
}

.content-box a {
    color: black;
    text-decoration: none;
    font-size: 12px;
    background: #ffffff; 
    display: block;      
    padding: 15px 15px;    
    margin-bottom: 5px;  
    border-radius: 8px;  
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.content-box input[type="number"] {
    width: 80px;
    height: 46px;
    border-radius: 8px;
}

.content-box input[type=number]::-webkit-inner-spin-button,
.content-box input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.content-box input[type="check"] {
    width: 80px;
    height: 46px;
    border-radius: 8px;
}


.dropdown.show .dropdown-content {
    display: grid; 
}


.custom-checkbox{
    display: flex;
    align-items: center;
}
.custom-checkbox input[type="checkbox"] {
    display: none;
}


.custom-checkbox span {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #195043; 
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}


.custom-checkbox input[type="checkbox"]:checked + span::after {
    content: "✔";
    color: white; 
    font-size: 14px;
    position: absolute;
    top: 1px;
    left: 4px;
}

.flecha{
    margin-bottom: 15px;
    margin-top: -30px;
    color: white;
}

.flecha a{
    cursor: pointer;
}

.overlay{
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 3;
}