#calendarJump {
    position: absolute;
    height: 0;
    margin-top: -121px;
}

.calendar_opening,
.private_event_wrapper {
    width: 700px;
    margin: 80px auto 96px;
    text-align: center;
    box-sizing: border-box;
}

.calendar_opening h2,
.private_event_wrapper h2 {
    margin: 0;
}

.calendar_opening .button,
.private_event_wrapper .button {
    margin: 30px auto 0;
}

.book_visit_container {
    margin-top: 50px;
}

#bookingSystem {
    height: 100%;
}

.booking_system_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;
    height: 100%;
} 

.timetable {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#calendar_wrapper, #calendar {
    display: flex;
    justify-content: center;
    align-items: start;
    width: 100%
} 

.calendar_wrapper {
    display: flex;
    justify-content: center;
    align-items: start;
    background-color: var(--white);
    border: 2px solid var(--border-grey);
    box-sizing: border-box;
    width: 100%;
    padding: 15px;
    margin-bottom: 96px;
}

.calendar {
    position: relative;
    height: 100%;
    width: 100%;
    background-color: #FFFEFA;
    box-sizing: border-box;
    border: none;
    outline: none;
}

.calendar .month_header {
    text-align: left;
    margin: 0;
    width: 100%;
}

.calendar .w0_weekday p:nth-of-type(1),
.calendar .w1_weekday p:nth-of-type(2),
.calendar .w2_weekday p:nth-of-type(3),
.calendar .w3_weekday p:nth-of-type(4),
.calendar .w4_weekday p:nth-of-type(5),
.calendar .w5_weekday p:nth-of-type(6),
.calendar .w6_weekday p:nth-of-type(7),
.calendar .today_date {
    background-color: var(--black) !important;
    color: var(--white) !important;
    border: 2px solid var(--black) !important;
}

.calendar .week_header {
    margin: 0;
    margin-left: -8px;
    display: flex;
    justify-content: center;
    width: calc(100% + 16px);
}

.calendar_week {
    display: flex;
    width: calc(100% + 16px);
    margin-left: -8px;
}

.calendar_day,
.non_calendar_day {
    position: relative;
    width: calc(100% / 7);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 3px;
    margin: 5px;
    box-sizing: border-box;
}

.calendar_day .date,
.week_header p {
    margin: 15px auto;
    width: 100%;
    height: 33px;
    color: var(--black);
    border: 2px solid var(--border-grey);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    cursor: pointer;
    font-weight: 500;
}

.week_header p {
    text-align: center;
    width: calc((100% - 114px) / 7);
    height: 50px;
    box-sizing: border-box;
}

.calendar_day input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    margin: 0;
    border: none;
    opacity: 0;
}

.calendar_event {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    font-weight: 700;
    transition: 0.2s all ease-in-out;
    color: var(--white);
}

.calendar_event h5 {
    color: var(--white);
    margin: 0;
}

.calendar_event:hover {
    opacity: 0.8;
    transition: 0.2s all ease-in-out;
}

.calendar_event p {
    opacity: 0.5;
    color: var(--white);
    font-weight: 400;
    margin: 5px 0 -2px;
    height: max-content;
    width: max-content;
    display: block;
}

.calendar_event p i {
    margin-right: 5px;
}

.calendar_event p span i {
    display: none;
}

.colorTrue,
.colorTrue h5,
.colorTrue p {
    color: var(--black) !important;
}

.calendar input[type="radio"][disabled],
.calendar input[type="radio"][disabled] + label {
    opacity: 0.3;
    cursor: auto;
    pointer-events: none;
}

@media (max-width: 1480px) and (min-width: 1250px) {
    .calendar_event p {
        flex-direction: column;
    }

    .calendar_event p span,
    .calendar_event p span i {
        display: flex;
        align-items: center;
    }

    .calendar_event p .dash {
        display: none;
    }
}

@media (max-width: 1350px) and (min-width: 1250px) {
    #stage1 {
        display: none;
    }
}

@media (max-width: 1200px) and (min-width: 1025px) {
    .calendar_event p {
        flex-direction: column;
    }

    .calendar_event p span,
    .calendar_event p span i {
        display: flex;
        align-items: center;
    }

    .calendar_event p .dash {
        display: none;
    }
}

@media (max-width: 1025px) {
    #stage1 {
        display: none;
    }
}

@media (max-width: 800px) {
    .calendar_opening,
    .private_event_wrapper {
        width: calc(100% - 40px);
    }
}

@media (max-width: 600px) {
    .calendar_opening .button,
    .private_event_wrapper .button {
        width: 100%;
    }
}