.main__header.is__home__four .queens-header.main__header__wrapper {
    grid-template-columns: 1fr 2fr;
    ;
}

.main__header.is__home__four.header__inner .queens-header.main__header__wrapper {
    grid-template-columns: 1fr 1fr;
    ;
}

.font-jost {
    font-family: var(--jost);
}

.drop-shadow {
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.3));
}

.carpet .room__card__link {
    color: var(--heading-color);
}

.similar__modal .modal-dialog {
    border: none;
}

a:focus-visible {
    outline: none;
}

.rotate-180 {
    transform: rotate(180deg);
}

.sticky-buttons {
    position: fixed;
    right: 0;
    text-wrap: nowrap;
    writing-mode: vertical-lr;
    top: 50%;
    z-index: 1000;
    transform: translate(0, -50%) rotate(180deg);
    font-size: 1rem;
    display: flex;
    gap: 15px;
}

.float-btn {
    padding: 20px 10px;
    border: 1px solid var(--rts-white);
    background-color: var(--heading-color);
    color: var(--rts-white);
}

@media (max-width: 768px) {
    .sticky-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        z-index: 1000;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 0;
        text-wrap: nowrap;
        writing-mode: horizontal-tb;
        transform: unset;
        top: unset;
        gap: 0;
    }

    .float-btn {
        flex: 1;
        padding: 10px 20px;
        border: 1px solid var(--rts-white);
        background-color: var(--heading-color);
        color: var(--rts-white);
        display: flex;
        justify-content: center;
    }

    .rotate-180 {
        transform: rotate(0deg);
    }
}

#allLoader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.75) url(../image/loading2.gif) no-repeat center center;
    z-index: 10000;
}