.floating-booking-button-wrapper {
    position: fixed;
    bottom: 16px;
    width: 100%;
    z-index: 100;
    display: none;
    transform: translateY(4rem);
    opacity: 0;
}

.floating-booking-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: white;
    background-color: var(--primary);
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.07);
}

@media (max-width: 532px) {
    .floating-booking-button-wrapper {
        display: block;
    }
}