#app {
    padding-top: 10px;
}

.calendar {
    font-size: 0;
}

    .calendar .bottom {
        font-size: 17px;
        width: 60%;
        text-align: center;
        margin: auto;
        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 {
        width: 13%;
        font-size: 15px;
        text-align: center;
        display: inline-block;
        border: 1px solid #37485C;
        padding: 3px;
        color: #fff;
        background: #396192;
        cursor: default;
        margin: 0.4%;
    }

        .calendar .each[day='0'] {
            color: red;
        }

        .calendar .each.prev,
        .calendar .each.next {
            color: rgba(255,255,255,0.2);
        }

        .calendar .each.today {
            background: rgba(255,255,255,0.4);
            color: #fff;
        }

        .calendar .each.schedule {
            color: #00147f;
            cursor: pointer;
            background: #a2d3cf;
        }

        .calendar .each.holiday {
            color: red;
        }

@media(min-width:992px) and (max-width:1199px) {
    .calendar .each {
        /*padding:2px!important;*/
        font-size: 13px;
    }
}