.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://www.marketapts.com/img/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;
    }
}
