.calendar-cell {
    height: 110px;
    display: block;
    position: relative;
    overflow: hidden;
}

.empty-range {
    display: block;
    height: 20px;
    margin: 7px -8px;
}

.air-bnb-within-range {
    background-color: pink !important;
    display: block;
    height: 15px;
    margin: 5px -8px;
    position: absolute;
    width: 100%;
}

.booking-within-range {
    background-color: darkblue !important;
    display: block;
    height: 15px;
    margin: 5px -8px;
    position: absolute;
    width: 100%;
}

.vrbo-within-range {
    background-color: palegreen !important;
    display: block;
    height: 15px;
    margin: 5px -8px;
    position: absolute;
    width: 100%;
    bottom: 8px;
}

.air-bnb-within-range.event-start::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-bottom: 15px solid pink;
    border-left: 15px solid transparent;
    margin-left: -15px;
}

.booking-within-range.event-start::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-bottom: 15px solid darkblue;
    border-left: 15px solid transparent;
    margin-left: -15px;
}

.vrbo-within-range.event-start::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-bottom: 15px solid palegreen;
    border-left: 15px solid transparent;
    margin-left: -15px;
}

@media (min-width: 425px) {
    .event-start {
        left: 4rem !important;
    }

    .event-end {
        right: 4rem !important;
    }
}


@media (min-width: 768px) {
    .event-start {
        left: 5rem !important;
    }

    .event-end {
        right: 5rem !important;
    }
}

@media (min-width: 1024px) {
    .event-start {
        left: 7rem !important;
    }

    .event-end {
        right: 7rem !important;
    }
}

@media (min-width: 1440px) {
    .event-start {
        left: 8rem !important;
    }

    .event-end {
        right: 8rem !important;
    }
}

.air-bnb-within-range.event-end::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    border-top: 15px solid pink;
    border-bottom: 0px solid pink;
    border-right: 15px solid transparent;
    margin-left: 15px;
}

.booking-within-range.event-end::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    border-top: 15px solid darkblue;
    border-bottom: 0px solid darkblue;
    border-right: 15px solid transparent;
    margin-left: 15px;
}

.vrbo-within-range.event-end::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    border-top: 15px solid palegreen;
    border-bottom: 0px solid palegreen;
    border-right: 15px solid transparent;
    margin-left: 15px;
}

.gallery-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 1200px;
}

.main-image {
    cursor: pointer;
    width: 1200px;
    height: auto;
    margin: 0 auto;
    max-height: 600px;
}

.modal-image {
    width: 100%;
    max-height: 500px;
    height: 500px;
    object-fit: contain;
}

.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.overlay-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 50px;
}

.overlay img {
    margin-right: 5px;
}

.calendar-container {
    text-align: justify;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #fff;
    /* max-width: 2000px;
    width: 180%;
    margin-left: 0px;
    padding-right: 300px; */

}

.calendar-container .controls {
    padding: 10px;
    background-color: #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: justify;
    border-bottom: 1px solid #ddd;
}

.calendar-container .month-arrow {
    cursor: pointer;
    padding: 0 10px;
    font-size: 20px;
    border: none;
    background: none;
}

.calendar-container .year-dropdown {
    margin-left: 10px;
    padding: 5px;
    font-size: 16px;
    border: none;
    background: none;
    appearance: none;
}

.calendar-container .calendar-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.calendar-container .calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: #ddd;
}

.calendar-container .calendar div {
    text-align: left !important;
    padding: 8px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
}

.calendar-container .calendar .day-header {
    background-color: #f1f1f1;
    font-weight: bold;
    padding: 10px;
    border: none;
}

.calendar-container .calendar div:hover {
    background-color: #f0f8ff;
}

.calendar-container .today {
    background-color: #d3e4ff;
}

.calendar-container .today-button {
    background-color: #fff;
    border: 1px solid #007bff;
    color: #007bff;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.calendar-container .today-button:hover {
    background-color: #007bff;
    color: #fff;
}

.calendar-container .view-toggle {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: 30px;
}

.calendar-container .view-toggle span {
    cursor: pointer;
    padding: 5px;
}

.calendar-container .view-toggle .active {
    border-bottom: 2px solid #000;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 155px;

}

.this-container {
    margin-left: 0px;
    /* margin-right: 50px;
    padding-right: 70px; */
}

.amenities-container {
    max-width: 1200px;
    width: 100%
        /* display: flex;
    flex-direction: column;
    align-items: flex-start; */
        /* padding-right: 340px; */
}

.washer-container {
    margin-left: 0px;
}

.see-all {
    background: linear-gradient(287.85deg, #ff0766 0%, #ff7e5d 95.32%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}

.rooms-beds-section {
    max-width: 1200px;
    margin: 0 auto;
}

.about-this-property-section {
    max-width: 1200px;
}

#spinner {
    display: none;
    position: fixed;
    top: 55%;
    left: 50%;
    color: #ff0766;
}

.add-space-below {
    margin-bottom: 50px;
    /* Adjust the value as needed */
}

.legend {
    position: absolute;
    right: 20px;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.legend-item {
    display: flex;
    align-items: center;
}

.legend-color {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 3px;
}

.legend-color.pink {
    background-color: pink;
}

.legend-color.green {
    background-color: palegreen;
}

.color-box {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.green-box {
    background-color: palegreen;
}

.pink-box {
    background-color: pink;
}

.dark-blue-box {
    background-color: darkblue;
}

#calendar-refresher {
    color: #1696e7;
    cursor: pointer;
}

#calendar-refresher.inactive {
    color: #8f8b8b;
}

.hm-gradient {
    background-image: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
}

.darken-grey-text {
    color: #2E2E2E;
}

.bc-icons .breadcrumb-item+.breadcrumb-item::before {
    content: none;
}

.bc-icons .breadcrumb-item.active {
    color: #eeeeee;
}

.bc-icons-2 .breadcrumb-item+.breadcrumb-item::before {
    content: none;
}

.bc-icons-2 .breadcrumb-item.active {
    color: #455a64;
}

.light-font {
    display: flex;
    justify-content: center;
    align-items: center;
}

.light-font .breadcrumb-item+.breadcrumb-item::before {
    color: #000000;
}

.light-font .breadcrumb-item.active {
    color: #cfd8dc;
}

.dark-font .breadcrumb-item+.breadcrumb-item::before {
    color: #000;
}

.dark-font .breadcrumb-item.active {
    color: #455a64;
}

@media (max-width: 767.98px) {
    .breadcrumb {
        display: block;
    }

    .breadcrumb-item {
        display: block;
        margin-bottom: 5px;
        /* Adds space between breadcrumb items */
    }

    .breadcrumb-item a {
        display: inline-block;
        word-wrap: break-word;
        /* Wrap long links to fit the screen */
    }
}