.temp_calendar_opening {
    height: calc(100vh - 350px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.calendar_opening h1 {
    text-align: center;
    font-size: 42px;
    color: var(--beaver);
    margin: 10px 0;
}

.temp_calendar_opening h1 {
    font-size: 100px;
    margin-top: 120px;
    margin-bottom: 30px;
}

.booking_opening {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.booking_opening p {
    margin: 0;
    font-weight: 400;
}

.booking_opening .temp_message {
    width: 580px;
    text-align: center;
    margin-left: 0 !important;
}

.booking_opening p:last-of-type {
    margin-left: 15px;
}

.booking_opening a {
    padding: 8px 10px;
    background-color: var(--brown);
    color: var(--white);
    border-radius: 5px;
    font-weight: 500;
    margin-left: 10px;
    transition: 0.1s all ease-in-out;
}

.booking_opening a:hover {
    opacity: 0.9;
    transition: 0.1s all ease-in-out;
}

.details_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background-color: var(--beaver);
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 80px;
}

.details_wrapper p {
    margin: 0;
}

.details_wrapper .form_label {
    margin-top: 0 !important;
    margin-bottom: 5px !important;
}

.checkout_wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.details_wrapper .form_label {
    margin-top: 0 !important;
}

.details_wrapper .input {
    width: calc((100% - 208px) / 4);
}

.details_wrapper .form_field {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.details_wrapper input[type="date"]::-webkit-inner-spin-button,
.details_wrapper input[type="date"]::-webkit-calendar-picker-indicator {
    display: none !important;
    -webkit-appearance: none !important;
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

#id_check_in,
#id_check_out {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkout_wrapper {
    display: none;
    justify-content: center;
    align-items: flex-start;
    margin-top: 30px;
    margin-bottom: 80px;
}

@media (max-width: 950px) {
    .calendar_opening {
        margin-top: 20px;
    }

    .calendar_opening p {
        width: 75%;
    }

    .booking_opening {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .booking_opening p:last-of-type {
        margin-top: 15px;
    }

    .booking_opening .temp_message {
        margin-top: 0 !important;
    }
}

@media (max-width: 650px) {
    .calendar_opening p,
    .booking_opening .temp_message {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .calendar_opening h1 {
        font-size: 36px;
    }

    .temp_calendar_opening h1 {
        font-size: 60px;
        margin-bottom: 20px;
    }
}