.div-galeria {
    display: flex;
    flex-direction: row;
    padding: 6px;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    max-height: 100%;
    position: relative;
}

.div-funciones {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.fechas {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.boton-consultar {
    text-decoration: none;
    color: white;
}

.p-disponibilidad {
    display: flex;
    justify-content: center;
    margin-right: 0;
    border-radius: 5px 5px 5px 5px;
    padding: 5px;
    background-color: rgb(112, 200, 187);
    margin: 5px 5px 10px 5px;
    color: darkslategrey;
    cursor: pointer;
}

.alquilado {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 0;
    border-radius: 5px 5px 5px 5px;
    padding: 5px;
    background-color: #ff2222;
    margin: 5px 5px 10px 5px;
    color: whitesmoke;
    cursor: pointer;
}

.p-nodisponible {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 0;
    border-radius: 5px 5px 5px 5px;
    padding: 5px;
    background-color: #ff2222;
    margin: 5px 5px 10px 5px;
    color: whitesmoke;
    cursor: pointer;
}

.div-imagen-container img{
    object-fit: contain;
    width: 100%;
    height: 70vh;
    /* max-height: 70vh; */
}

.div-imagen {
    padding: 10px;
}

.div-puntero {
    background-color: #fff;
    border: 1px solid #cccccc;
    box-shadow: rgb(100 100 111 / 40%) 0px 7px 29px;
    margin-left: 40px;
    padding: 2px;
    justify-content: center;
}

.puntero {
    text-align: center;
    margin-bottom: 4px;
    margin-top: 2px;
    font-size: 15px;
    font-weight: bold;
}

.btn-derecha,
.btn-izquierda {
    display: flex;
    flex-direction: column;
    padding: 15px;
    justify-content: center;
    margin: 6px;
    position: absolute;
    top: 50%;
    transform:  translateY(-50%);
    z-index: 100;
}
.btn-derecha{
    right: 5px;
}

.btn-izquierda{
    left: 5px;
}


.boton {
    display: inline-block;
    border-radius: 50%;
    background-color: #fff;
    border: 3px solid #cccccc;
    width: 40px;
    height: 40px;
}

.boton:hover {
    transition: 400ms;
    background: #cccccc;
}

.deshabilitado {
    opacity: 0.5;
}

.card-img-wrap {
    overflow: hidden;
    position: relative;
}

.card-img-wrap:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: opacity .25s;
}

.card-img-wrap img {
    transition: transform .25s;
    width: 100%;
}

.card-img-wrap:hover img {
    transform: scale(1.2);
}

.card-img-wrap:hover:after {
    opacity: 1;
}

#caracteristicas > div{
    max-height: 250px;
    overflow: hidden;
    position: relative;
    transition: max-height .4s;
}

.ocultar-descripcion{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgb(229,229,229);
    background: linear-gradient(0deg, rgba(229,229,229,1) 0%, rgba(229,229,229,1) 40%, rgba(255,255,255,0) 100%);
}

.ocultar-descripcion button{
    height: fit-content;
}