.C--fullcalendar {
    display: block;
    position: relative;
    .fc-header-toolbar {
        margin-bottom: 24px;
        padding-bottom: 24px;
        height: 68px;
        border-bottom: 1px solid $border-color;
        @media (max-width: $screen-sm) {
            margin-bottom: 0;
            padding-bottom: 0;
            padding-left: 16px;
            padding-right: 16px;
            height: auto;
        }
        .fc-left {
            height: 44px;
            @media (max-width: $screen-sm) {
                margin-bottom: 16px;
                height: 34px;
                text-align: left;
            }
            h2 {
                display: block;
                margin: 0;
                height: 44px;
                font-size: 2rem;
                font-weight: 600;
                color: $text-color;
                line-height: 44px;
                @media (max-width: $screen-sm) {
                    height: 34px;
                    float: none;
                    font-size: 1.6rem;
                    line-height: 34px;
                }
            }
        }
        .fc-right {
            height: 44px;
            @media (max-width: $screen-sm) {
                text-align: left;
            }
            .fc-button-group {
                display: inline-block;
                vertical-align: middle;
                float: none;
                .fc-prev-button,
                .fc-next-button {
                    margin: 0 2px;
                    padding: 0;
                    width: 44px;
                    height: 44px;
                    text-shadow: none;
                    background: #f5f5f5;
                    border: 1px solid $border-color;
                    -webkit-transition: all .2s;
                    transition: all .2s;
                    @include border-radius(34px);
                    @include box-shadow(none);
                    @media (max-width: $screen-sm) {
                        width: 34px;
                        height: 34px;
                    }
                    .fc-icon {
                        color: #777777;
                    }
                    &:hover {
                        border-color: rgba(0,0,0,.16);
                        .fc-icon {
                            color: $text-color;
                        }
                    }
                }
            }
            .fc-today-button {
                display: inline-block;
                margin-left: 16px;
                padding: 9px 24px;
                vertical-align: middle;
                height: auto;
                float: none;
                font-size: 1.45rem;
                font-weight: 400;
                color: #fff;
                text-align: center;
                text-decoration: none;
                text-shadow: none;
                border: 1px solid $secondary-color;
                outline: 0;
                cursor: pointer;
                background: $secondary-color;
                transition: background-color .3s, border .3s;
                -webkit-transition: background-color .3s;
                @include box-sizing;
                @include box-shadow(none);
                @include border-radius(6px);
                @media (max-width: $screen-sm) {
                    margin-left: 8px;
                    padding: 4px 14px;
                }
            }
        }
    }
    .fc-view {
        > table {
            thead,
            tbody {
                border-color: $border-color;
            }
        }
        .fc-head {
            .fc-day-header {
                padding: 10px;
                background: #e2e2e2;
                border-color: $border-color;
                span {
                    display: block;
                    font-size: 1.3rem;
                    font-weight: 600;
                    color: $text-color;
                    text-transform: uppercase;
                }
            }
        }
        .fc-day-number {
            padding: 8px;
            font-size: 1.4rem;
            color: #777777;
        }
        .fc-day-grid-event {
            margin: 1px 4px 0 0;
            background: #cceaf7;
            border-color: #cceaf7;
            @include border-radius(0);
        }
        .fc-event {
            position: relative;
            padding: 2px 8px;
            font-size: 1.2rem;
            color: $text-color;
            &:hover {
                .calendar__dialog {
                    display: block;
                }
            }
        }
    }
    .fc-scroller {
        overflow: initial !important;
        height: auto !important;
    }
    .calendar__dialog {
        display: none;
        position: absolute;
        left: 50%;
        bottom: 100%;
        z-index: 3;
        margin-left: -200px;
        .dialog__box {
            display: block;
            position: relative;
            margin-bottom: 16px;
            width: 400px;
        }
        .dialog__tip {
            display: block;
            position: absolute;
            top: 100%;
            left: 50%;
            z-index: 1;
            margin-top: -7.5px;
            width: 15px;
            height: 15px;
            background: #fff;
            transform: rotate(45deg);
            @include box-shadow(1px 2px 8px rgba(0,0,0,.2));
        }
        .C--post.type--1 {
            .post__table {
                position: relative;
                z-index: 2;
                background: #fff;
                overflow: hidden;
                @include border-radius(6px);
            }
            .post__card {
                overflow: initial;
            }
            .post__thumbnail {
                background-color: #f5f5f5;
            }
            .post__thumbnail-cloning {
                width: 120px;
            }
            .post__detail {
                padding: 16px;
            }
            .post__title {
                max-height: 42px;
                font-size: 1.4rem;
                line-height: 1.55;
            }
            .post__meta {
                margin-top: 8px;
                .meta__icon {
                    display: block;
                    margin-right: 8px;
                    margin-bottom: 6px;
                    .svg {
                        display: block;
                    }
                }
                .meta__item {
                    display: block;
                    display: -webkit-box;
                    margin-right: 8px;
                    margin-bottom: 0;
                    height: 16px;
                    overflow: hidden;
                    font-size: 1.25rem;
                    color: #777;
                    line-height: 1;
                    white-space: nowrap;
                    text-overflow: ellipsis;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 1;
                }
            }
            .post__clickable {
                z-index: 4;
            }
        }
    }
}