@charset "utf-8";

/* 캘린더 */
.cal-nav h2 {
    font-size: 11px;
    padding-bottom: 15px;
    letter-spacing: 7px;
    color: #0d0d0d;
    font-weight: 600;
}

.sched-list .theme-list th {
    height: 36px;
    padding: 0;
    font-size: 11px;
    border-top: 0;
    border-bottom: 0;
    background-color: #0d0d0d;
    border-radius: 20px;
    width: 36px;
    color: #fff;
    margin-left: -10px;
    font-weight: 600;
}

/* 요일 표시 칸 */
.sched-list .theme-list td {
    text-align: center;
    padding: 0;
    line-height: 18px;
    font-size: 11px;
    height: 40px;
    border-bottom: 0 none;
    background: none;
}

/* 날짜 표시 칸 */
.sched-list .theme-list td i {
    position: relative;
    display: block;
    margin-bottom: 3px;
    font-style: normal;
}

/* 날짜(숫자) */
.sched-list .theme-list td.today i {
    font-weight: bold;
}

.sched-list .theme-list td.today i:after {
    /* 오늘 날짜 동그라미 */
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    border: 2px solid #dddddd;
    border-radius: 100%;
    transform: translate(-50%, -51%);
    z-index: 10;
}

/* 일정표시 */
.sched-list .liner {
    position: relative;
    display: block;
    margin-top: 1px;
    width: 100%;
    height: 15px;
    color: #202020;
}

.sched-list .starter {
    padding: 0;
}

.sched-list .liner:not(.first, .starter) {
    z-index: -1;
}

.sched-list .s_subject {
    height: 15px;
    line-height: 14px;
}

.sched-list .left .starter .s_subject {
    left: 0;
}

.sched-list .right .starter .s_subject {
    right: 0;
}

.sched-list .starter .s_subject,
.sched-list .first .s_subject {
    border-radius: 5px;
    z-index: 2;
}

.sched-list .starter .s_subject {
    position: absolute;
    width: 100%;
    min-width: 100%;
    padding: 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    font-size: 10px;
    box-sizing: border-box;
}

.sched-list .starter:hover .s_subject {
    width: auto;
    overflow: visible;
}

.sched-list .liner:not(.first, .starter) p {
    background: none;
    border: 0 none;
}

/* 일정 팝업레이어 */
.sched-list .popup_layer {
    position: absolute;
    display: none;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px 10px;
    border-radius: 5px;
    width: 125px;
    z-index: 20;
}

.sched-list td a:hover {
    z-index: 40;
}

.sched-list td a:hover .popup_layer {
    display: block;
}

.sched-list .left .popup_layer {
    left: 0;
    transform: none;
}

.sched-list .right .popup_layer {
    left: auto;
    right: 0;
    transform: none;
}

.sched-list .popup_layer .popup_title {
    padding: 5px 0;
    font-size: 13px;
    display: none;
}

.sched-list .popup_layer .popup_cont {
    word-break: keep-all;
    padding-top: 5px;
}


/*표시색상*/
.color_1 {
    background: #6393f2;
}

.color_2 {
    background: #b5b5b5;
}

.color_3 {
    background: #f2e74b;
}

.color_4 {
    background: #f25c61;
}