.scheduler {
    text-align: center;
    margin: 20px 0;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.schedule-loader {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 30%;
    background-color: white;
    background-image: url('https://cdn.pixabay.com/animation/2022/07/29/03/42/03-42-05-37_512.gif');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30%;
}
.schedule-loader.hide {
    display: none;
}
.controls {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.date-holder {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    flex-wrap: wrap;
}
.schedule-info {
    text-align: center;
}
.schedule-controls {
    background-color: #f4f4f4;
    color: black;
    border: 1px solid black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 50%;
    min-width: 120px;
}
.control-text {
    padding: 10px;
    width: 80%;
}
.hider {
    background-color: #f4f4f4;
    color: black;
    border: 1px solid black;
    width: 200px;
    font-size: 14px;
    padding: 5px;
    margin: 30px;
    margin-bottom: 0;
}
.schedule-times {
    display: none;
    padding: 20px;
}
.schedule-times .time-title {
    width: 100%;
    text-align: center;
}
.schedule-times.show {
    display: block;
}
.schedule-times-field {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border: none;
}
.schedule-date,
.schedule-time-button {
    background-color: #f4f4f4;
    color: black;
    border: 1px solid black;
    font-size: 18px;
    width: 120px;
    box-sizing: border-box;
}
.schedule-date {
    padding: 10px;
}
.schedule-date.active,
.schedule-time-button.active {
    color: blue;
    border: 1px solid blue;
}
.schedule-date.active {
    border-top: 3px solid blue;
}
.schedule-controls[disabled],
.schedule-date.disabled {
    background-color: #c1c1c1;
    color: #4c4c4c;
    border: 1px solid #4c4c4c;
}
.schedule-time-button {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.schedule-time-button label {
    display: block;
    padding-left: 5px;
    flex: 1;
}
.schedule-confirm {
    padding: 15px;
    font-size: 18px;
    background-color: #f4f4f4;
    color: black;
    border: 1px solid black;
}
@media screen and (max-width: 767px) {
    .schedule-date,
    .schedule-time-button {
        width: 30%;
        font-size: 14px;
    }
    .schedule-confirm {
        font-size: 14px;
    }
}

/* Template Specific */
.scheduler {
    min-height: 150px;
}
.scheduler a {
    color:white!important;
}
.schedule-panel .panel-heading {
    background-color: rgba(255,255,255,.1);
    padding: 1rem 2rem;
    font-size: 20px;
}
.schedule-controls svg {
    filter: brightness(0) invert(1);
}
.schedule-controls,
.hider,
.schedule-date,
.schedule-time-button {
    cursor: pointer;
    background-color: rgba(255,255,255,.1);
    color: white;
    border: none;
}
.schedule-time-button input {
    padding: 0;
    width: 12px;
}
.schedule-time-button {
    cursor: auto;
    margin: 2px;
}
.schedule-times legend {
    font-size: 20px;
}
.schedule-controls[disabled],
.schedule-date.disabled {
    background-color: rgba(0,0,0,.1);
    color: rgba(255,255,255,.7);
    border: none;
    cursor: default;
}
.schedule-date.active {
    color:white;
    border-color: white;
    border-right: none;
    border-left: none;
    border-bottom: none;
}
.schedule-time-button.active {
    color:white;
    border: none;
    box-shadow: inset 0px 0px 0px 1px white;
}
