.SimpleCalendar {
        background: #fff none repeat scroll 0 0;
        margin-bottom: 50px;
        max-width: 100vw;
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 20px;
}
.SimpleCalendar .title {
        text-align: center
}
.SimpleCalendar .title > span {
        font-size: 24px;
        text-transform: uppercase;
        color: #c70d0c;
        display: inline-block;
        text-align: right;
        margin-bottom: 0;
        font-weight:700;
}
.SimpleCalendar .DateShow > span {
        display: inline-block;
        padding: 8px 15px;
        text-align: center;
        text-transform: uppercase;
        /* white-space: nowrap; */
        transition: 300ms;
        font-size: 15px;
        color: #3C3D41;
}
.SimpleCalendar .DateShow {
        text-align: center;
}
.SimpleCalendar .WeekYear {
        display: block;
        margin-bottom: 10px;
        max-width: 100%;
        overflow: auto;
        flex-wrap: nowrap !important;
        white-space: nowrap;
}
.SimpleCalendar .WeekYear .Pre, .SimpleCalendar .WeekYear .Center {
        padding: 10px;
        text-align: center;
        padding: 10px;
        text-align: center;
        transition: 300ms;
        font-size: 14px;
        color: #3C3D41;
        padding-top: 0;
}
.SimpleCalendar .WeekYear .Next {
        padding: 10px;
        text-align: center;
        transition: 300ms;
        font-size: 14px;
        color: #3C3D41;
        margin-top: 0 !important;
        padding-top:0;
}
.SimpleCalendar .container {
        display: inline-block;
        margin: auto;
        width: 100%;
        padding: 0;
        font-size: -webkit-xxx-large;
        max-width: unset;
        order: 9999;
}
.SimpleCalendar .container table td{
        border-color: #dee2e6 !important;
        display: table-cell;
        border-width: 1px;
        font-size: 14px;
}
.SimpleCalendar .WeekYear .Pre .top a, .SimpleCalendar .WeekYear .Next .top a,.SimpleCalendar .WeekYear .Center .top a {
        font-size: 15px;
        font-weight: 500;
        color: #dc3545;
        text-align: center;
        text-transform: uppercase;
        display: inline-block;
        padding: 8px 20px;
        transition: .3s all linear;
        border-radius: 5px;
        background: #f8f9fa;
        margin-bottom: 5px;
}
.SimpleCalendar .WeekYear .Pre .top a:hover, 
.SimpleCalendar .WeekYear .Next .top a:hover,
.SimpleCalendar .WeekYear .Center .top a:hover{
        background: #e9ecef;
}
.SimpleCalendar .container .CalendarTable td {
        border: 1px solid #ddd;
        border-spacing: 0;
        padding: 5px;
}
.SimpleCalendar .container .CalendarTable {
        border-spacing: 0;
        width: 100%;
        border-collapse: collapse;
}
.SimpleCalendar .container .CalendarTable *{
        font-size: 15px;
}
.SimpleCalendar .container .CalendarTable strong{
        font-weight: 600;
}
.SimpleCalendar .container .CalendarTable thead td {
        background: #eee none repeat scroll 0 0;
        text-align: center;
}
.SimpleCalendar .container .CalendarTable tbody td {
        padding:10px 5px;
        font-size: 15px;
}
.SimpleCalendar .container .CalendarTable .TD_Date {
        width: 100px;
}
.SimpleCalendar .container .CalendarTable .TD_AM {
        width: 45%;
}
.SimpleCalendar .Note {
        display: block;
        text-align: center;
        margin-bottom: 10px;
}
.SimpleCalendar .Note .text {
        text-align: center;
        transition: 300ms;
        font-size: 14px;
        color: #3C3D41;
}
.SimpleCalendar .spinner-border {
        display: block;
        margin: auto;
        margin-top: 10px;
        margin-bottom: 10px;
}
@media only screen and (max-width: 1023px){
        .SimpleCalendar{
                padding: 0 10px;
        }
        .SimpleCalendar .container .CalendarTable tbody td{
                height: auto !important;
                min-height: 30px;
                margin-top: -1px !important;
        }
        .SimpleCalendar .container {
                max-width: 100%;
                overflow: auto;
        }
        .SimpleCalendar .container>table {
                table-layout: auto;
                width: unset;
        }
        .SimpleCalendar .container>table td {
                min-width: 100px;
                text-align: left;
                width: unset !important;
        }
}
