.calendar {
    font-size: 0;
}

    .calendar .bottom {
        font-size: 15px;
        text-align: center;
        margin-bottom: 20px;
        position: relative;
        color: white;
        padding-top: 10px;
        font-weight: 700;
    }

        .calendar .bottom .left,
        .calendar .bottom .right {
            position: absolute;
            top: 10px;
            cursor: pointer;
        }

        .calendar .bottom .left {
            left: 0;
        }

        .calendar .bottom .right {
            right: 0;
        }

    .calendar .each {
        font-size: 15px;
        text-align: center;
        display: inline-block;
        padding: 5px;
        color: #000;
        cursor: default;
    }

        .calendar .each[day='0'] {
            color: red;
        }

        .calendar .each.prev,
        .calendar .each.next {
            color: rgba(255,255,255,0.2);
        }

        .calendar .each.schedule {
            position:relative;
            cursor: pointer;
        }

        .calendar .each.schedule .more {
            position: absolute;padding: .2em;background-color: #47bcf7;right: 0;top: 0;border-radius: 50%;
        }

        .calendar .each.holiday {
            color: red;
        }

@media(min-width:992px) and (max-width:1199px) {
    .calendar .each {
        padding:2px!important;
    }
}