.hide {
    display: none;
}
.show {
    display: flex;
}
#calendar {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
}
#time {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
}
.calendar_wrapper {
    border: 2px solid var(--link2);
    width: max-content;
    background-color: #fff;
}
.calendar_heading {
    width: 100%;
    text-align: center;
    color: var(--text2);
    font-weight: bold;
}
.month {
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: var(--link2);
    color: var(--bgheader)
}
.row_wrapper {
    display: flex;
}
.day_heading {
    background-color: var(--link2);
    color: var(--bgheader);
    border: 1px solid var(--bgheader) !important;
}
.day {
    flex: 1 1 0;
    padding: 10px;
    border: 1px solid var(--link2);
    text-align: center;
    box-sizing: border-box;
    width: 75px;
}
.month_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--link2);
    color: var(--bgheader);
}
.month_nav {
    display: flex;
    align-items: center;
}
.nav_buttons {
    font-size: 1.5em;
}
.nav_buttons:hover {
    cursor: pointer;
}
.close {
    font-weight: bold;
    padding-left: 10px;
    padding-top: 3px;
    padding-right: 10px;
}
.close:hover {
    cursor: pointer;
}
.active_calendar {
    background-color: var(--link2);
    color: white;
}
.set_date:hover {
    cursor: pointer;
}
.time_wrapper {
    display: flex;
    min-width: 100%;
    background-color: #fff;
}
.time {
    flex-direction: column;
    padding: 10px;
    border: 1px solid var(--link2);
    text-align: center;
    box-sizing: border-box;
    width: 100%;
}
.time_cell {
    display: flex;
    flex-direction: column;
    min-width: 50%;
    height: 250px;
    background-color: #fff;
    overflow-y: scroll;
    scrollbar-width: thin;
}
.no_scroll {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.schedule_row {
    display: flex;
    align-items: center;
    justify-content: left;
    height: 35px;
    min-width: 100%;
    border: 2px solid var(--text2);
}
#schedule_day {
    flex-direction: row;
    justify-content: left;
}
.text_inputs {
    display: flex;
    align-items: center;
    min-width: 170px;
    margin-right: 10px;
    height: 25px;
    border: 2px solid var(--link2);     
    color: var(--link2);
    background-color: var(--bgmain);
    margin-top: 5px;
    padding: 2px;
    font-size: .8em;
}
#schedule:hover {
    cursor: pointer;
}