/*
  Css Name :snNoticeView.css
  Description :공지사항 CSS
  Modification Information

      수정일      수정자          수정내용
   ----------    --------  ---------------------------
   2021.01.23    이선호      공지사항 css

    since    :2021.01.23
*/
@charset "utf-8";
#notice tr{cursor: pointer}
#notice .left:hover{
    overflow: hidden;
    color: #0E419C;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
#notice td img{    vertical-align: top!important;margin: 1px 0 0 0!important;}

#pageCntView > span{color:#2261CE}

#noticeTable th{text-align: center}
#noticeTable td{text-align: left; padding: 10px 0 10px 10px;}
#noticeTable .content { line-height: 2.5em; padding: 5% 15px;}

#fileList li{cursor: pointer}
#fileList li:hover{font-weight: 600}

.search-box{
    display: flex;
    padding: 30px;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    align-self: stretch;
    border-radius: 5px;
    background: #F3F5F8;
    margin: 60px 0 30px;
}

.search-text {
    color: #111;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.search-option {
    width: 230px;
    height: 44px;
    padding: 12px;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #D3D3D3;
    background: #FFF;
    color: #111;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    background-image: url(/images/common/FiChevronDown.png);
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.search {
    display: flex;
    width: 500px;
    height: 44px;
    padding: 12px;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #D3D3D3;
    background: #FFF;
    color: #666;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.search-btn {
    display: flex;
    height: 44px;
    padding: 14px 20px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 5px;
    background: #0E419C;
    color: #FFF;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.board_list {
    border-bottom: 1px solid #D3D3D3;
}

.board_list thead th {
    background: #F3F5F8;
    border-top: 1px solid #111;
    border-bottom: 1px solid #D3D3D3;
}

.board_list td {
    overflow: hidden;
    color: #111;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-bottom: 1px solid #D3D3D3;
}



/* 모바일 */

.boardListMobile .content img {width: 100%!important; height: auto!important; object-fit: cover;}
.boardListMobile .cont img {vertical-align: top; margin-right: 3px;}

@media screen and (max-width: 800px) {
    .search-box {
        flex-direction: column;
        gap: 8px;
    }

    .search-box p {
        width: 100%;
        text-align: left;
    }

    .datepicker-wrapper,
    .datepicker-wrapper input,
    .search-option,
    .search-btn {
        width: 100%;
    }

    .board_list tbody td{
        text-overflow: unset;
        white-space: normal;
        word-break: break-word;
        color: #111;
        text-align: center;
        font-family: Pretendard;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .board_list tbody td.left {
        display: flex;
        flex-direction: column;
        padding: 15px 0;
        gap: 10px;
    }
    
    .board_list tbody td p {
        color: #555;
        font-family: Pretendard;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .applyStatus {
        width: 45%;
    }
}