/* CARDS Propiedades Fondo*/

.cardpropiedades {
    margin: 1.5rem;
    min-width: 300px;
    flex: 0 0 auto;
    height: 400px;
    transform: scale(1) translateY(0px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 1, 1);
}
.cardpropiedades:hover{
    transform: scale(1.1) translateY(-10px);
    transition: transform 0.2s cubic-bezier(0.4, 0, 1, 1);
}
.card-img-top {
    height: 200px;
    object-fit: cover;
    object-position: center;
}
.property-code {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: red;
    color: white;
    padding: 5px;
    font-weight: bold;
}
.property-status {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: darkgreen;
    color: white;
    padding: 5px;
    font-weight: bold;
}
.scrolling-wrapper {
    display: flex;
    overflow-x: auto;
    padding: 1rem;
    scroll-behavior: smooth;
}
.scrolling-wrapper::-webkit-scrollbar {
    height: 10px;
}
.scrolling-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
.scrolling-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.scroll-button {
    position:fixed;
    background-color: transparent;
    height: 200px;
    width: 50px;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 9999;
}
.scroll-button.left {
    left: 10px;
}
.scroll-button.right {
    right: 10px;
}