/* =====================================
   RENTAL RATES SURFACE
===================================== */

.rental-rates-surface {
    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 18px;

    padding: 2rem;

    box-shadow:
        0 2px 8px rgba(0,0,0,0.04);
}


/* =====================================
   PAGE WRAPPER
===================================== */

.rental-rates-page {
    width: 100%;
}


/* =====================================
   HEADER
===================================== */

.rental-page-title {
    font-size: 3rem;
    font-weight: 800;

    margin-bottom: 0.5rem;

    color: #111827;
}

.rental-rates-page .text-muted {
    font-size: 1rem;
}


/* =====================================
   SEASON WRAPPER
===================================== */

.rental-season-wrapper {
    margin-top: 2rem;
}


/* =====================================
   SEASON CONTENT
===================================== */

.rental-season-content {
    display: none;
}

.rental-season-content.active {
    display: block;
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 768px) {

    .rental-rates-surface {
        padding: 1rem;

        border-radius: 14px;
    }

    .rental-page-title {
        font-size: 2rem;
    }
}