/*---------------- ICON CAROSEL HOTEL ROOMS ----------------*/

.top-car-arrow {
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: white;
    color: gray;
    border: none;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.3s ease, background-color 0.3s, transform 0.3s,
        visibility 0.3s;
    cursor: pointer;
    z-index: 9999999999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.top-car-arrow-left-arrow {
    left: -19px;
}

.top-car-arrow-right-arrow {
    right: -14px;
}

.top-car-arrow:hover {
    background-color: var(--theme-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}
