@charset "utf-8"; .datepicker[readonly], .datepicker[disabled] {
    background-color: #f9f9f9;
}

/* 데이터피커 */
#ui-datepicker-div {
    font-family: 'Titillium', 'NotoSansKR', sans-serif;
}

.ui-datepicker-trigger {
    display: none;
}

.ui-datepicker-trigger:hover, .ui-datepicker-trigger:focus {
    -webkit-box-shadow: inset 0 0 0 1px #666;
    box-shadow: inset 0 0 0 1px #666;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
    padding-right: 19px;
    font-family: 'Titillium', 'NotoSansKR', sans-serif;
}

.ui-datepicker select.ui-datepicker-month {
    width: 45%;
}

.ui-datepicker select.ui-datepicker-year {
    width: 50%;
}

input + .ui-datepicker-trigger {
    border-left: 0;
}

.ui-datepicker {
    width: auto !important;
}

.ui-widget.ui-widget-content {
    z-index: 100 !important;
    background: #fff;
    border: 1px solid #ccc;
}

.ui-datepicker .ui-datepicker-header {
    padding: 4px 0 6px;
    background: #fff;
    border: 0px;
    border-bottom: 1px solid #cfcece;
}

.ui-datepicker .ui-datepicker-title select {
    height: 30px;
    margin: 0 1px !important;
    font-size: 14px;
    padding-left: 10px;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 22px 22px;
}

.ui-datepicker .ui-datepicker-prev {
    background-image: url(/images/common/icon_arw_left.svg)
}

.ui-datepicker .ui-datepicker-next {
    background-image: url(/images/common/icon_arw_right.svg)
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    display: inline-block;
    width: 30px;
    /*height:30px;*/
    line-height: 27px;
    background: transparent !important;
    border: 0px !important;
    text-align: center;
    font-size: 14px;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    background: #546792 !important;
    color: #fff !important;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    background: #ffe79d !important;
}

.ui-datepicker th {
    font-weight: 400 !important;
    font-size: 14px;
    text-align: center;
}

.ui-datepicker thead tr > th.ui-datepicker-week-end:first-child {
    color: #e82c27;
}

.ui-datepicker thead tr > th.ui-datepicker-week-end:last-child {
    color: #4e86c6;
}

.ui-datepicker tbody tr > td.ui-datepicker-week-end:first-child a {
    color: #e82c27;
}

.ui-datepicker tbody tr > td.ui-datepicker-week-end:last-child a {
    color: #4e86c6;
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
    border: 0px !important;
}

.ui-datepicker .ui-datepicker-prev-hover {
    left: 2px !important;
}

.ui-datepicker .ui-datepicker-next-hover {
    right: 2px !important;
}

.day-bar {
    display: inline-block;
    width: 14px;
    text-align: center;
    font-weight: 600;
}

/* 중요도 별점 */
.starRadio {
    display: inline-block;
    overflow: hidden;
    height: 30px;
}

.starRadio:after {
    content: "";
    display: block;
    position: relative;
    z-index: 10;
    height: 30px;
    background: url(/images/board/star_radio.png) repeat-x 0 0;
    background-size: contain;
    pointer-events: none;
}

.starRadio__box {
    position: relative;
    z-index: 1;
    float: left;
    width: 15px;
    height: 30px;
    cursor: pointer;
}

.starRadio__box input {
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    position: absolute !important;
}

.starRadio__box input[type="radio"]:checked + .starRadio__img {
    background-color: #1fb9ee;
}

.starRadio__img {
    display: block;
    position: absolute;
    right: 0;
    width: 500px;
    height: 30px;
    pointer-events: none;
}

/* 필수입력 */
.marking {
    display: inline-block;
    position: relative;
    width: 8px;
    height: 14px;
    margin-bottom: -2px;
    margin-right: 2px;
    vertical-align: middle;
    font-size: 0;
    text-indent: -999em;
}

.marking:after {
    content: '\002A';
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 17px;
    font-size: 14px;
    font-weight: 600;
    color: #e82c27;
    text-indent: 0;
}

/* 테이블 스크롤 */
.scrollTable {
    width: 100%;
    max-height: 690px;
    min-height: 280px;
    overflow-y: auto;
    overflow-x: auto;
}

.scrollTable > table {
    white-space: nowrap;
}

.scrollTable thead th {
    position: sticky;
    top: 0;
    z-index: 10;
}

/* ArticleList 제목 글자수 제한 */
.txt_line {width:70%;padding:0 5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.txt_full_line {padding:0 5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}