html, body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

*, *:before, *:after {
    box-sizing: inherit;
}
.clearfix:after {
    content: '';
    display: block;
    clear: both;
    float: none;
}

/* ======== Calendar ======== */
.my-calendar {
    /*margin: 30px;*/
    padding: 40px 20px 10px;
    text-align: center;
    font-weight: 800;
    /*border: 1px solid #ddd;*/
    cursor: default;
    /**add**/
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}
.my-calendar .clicked-date {
    border-radius: 25px;
    margin-top: 36px;
    float: left;
    width: 42%;
    padding: 46px 0 26px;
    background: #ddd;
}
.my-calendar .calendar-box {

}

.clicked-date .cal-day {
    font-size: 24px;
}
.clicked-date .cal-date {
    font-size: 130px;
}

.ctr-box {
    padding: 0 16px;
    margin-bottom: 20px;
    font-size: 20px;
}
.ctr-box .btn-cal {
    position: relative;
    float: left;
    width: 25px;
    height: 25px;
    margin-top: 5px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background: none;
}
.ctr-box .btn-cal:after {
    content: '<';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 25px;
    font-weight: bold;
    font-size: 20px;
}
.ctr-box .btn-cal.next {
    float: right;
}
.ctr-box .btn-cal.next:after {
    content: '>';
}

.cal-table {
    width: 100%;
}
.cal-table th {
    width: 14.2857%;
    padding-bottom: 5px;
    font-size: 16px;
    font-weight: 900;
}
.cal-table td {
    padding: 3px 0;
    height: 60px;
    font-size: 15px;
    vertical-align: middle;
}
.cal-table td.day {
    position: relative;
    cursor: pointer;
    text-align: center;
}
.cal-table td.today {
    /*
    background: #AED9EA !important;
    border-radius: 50%;
    */
    color: #67EBFA;
    font-weight: 800;
    text-align: center;
}

.cal-table td.dataday {
    color: green;
    position : relative;
    cursor: pointer;
    text-align: center;
}

.cal-table td.day-active {
    background: #E9DDFC !important;
    border-radius: 50%;
    color: #000;
}
.cal-table td.has-event:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #FFC107;
}