@charset "utf-8";
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="date"] {
    height: 42px;
    border: 1px solid #bdbdbd;
    padding: 0 10px;
    max-width: 100%;
    font-size: 14px;
    color: #595959;
	border-radius: 4px;
}
input[type="text"]:read-only,
input[type="password"]:read-only,
input[type="tel"]:read-only,
input[type="email"]:read-only {
    background-color: #f8f8f8;
}
input[type="date"]::-webkit-calendar-picker-indicator {
	appearance: none;
	/*background: url("/static/resource_0.1.0/images/icon-calendar.svg") no-repeat right center;*/
	background-size: 18px;
}
input.datepicker {
	background: url("/static/resource_0.1.0/images/icon-calendar.svg") no-repeat right 8px center;
	background-size: 24px;
}
.ui-datepicker .ui-datepicker-prev span,
 .ui-datepicker .ui-datepicker-next span {
	background-size: 16px;
	background-position: center center;
}
.ui-datepicker .ui-datepicker-prev span {
	background-image: url("/static/resource_0.1.0/images/icon-arrow-back.svg");
}
.ui-datepicker .ui-datepicker-next span {
	background-image: url("/static/resource_0.1.0/images/icon-arrow-next.svg");
}
select {
    height: 42px;
    border: 1px solid #bdbdbd;
    padding: 0 10px;
    max-width: 100%;
    -o-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("/static/resource_0.1.0/images/select-arrow.png");
    background-repeat: no-repeat;
    background-position: right 11px center;
	background-size: 12px;
    position: relative;
	border-radius: 4px;
}
select::-ms-expand {
    display: none;
}
textarea {
    width: 100%;
	height: 100%;
    resize: none;
    border: none;
	font-size: 14px;
	color: #595959; 
	line-height: 1.4;
}
textarea:read-only {
	background-color: #f8f8f8;
}
.inputText {
	position: relative;
}
.inputText + .inputText {
	margin-top: 8px;
}
.inputText input {
	padding-right: 42px;
}
.inputText button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 8px;
}
.inputFile {
	position: relative;
	display: flex;
	border: 1px solid var(--border-color);
}
.inputFile input[type="file"] {
	display: none;
}
.inputFile .label {
	display: flex;
	width: 100%;
}
.inputFile .label input {
	width: calc(100% - 100px);
	border: 0;
}
.inputFile .label label {
	width: 100px;
	border: 0;
	background-color: #f8f8f8;
	cursor: pointer;
}
.checkbox-label,
.checkbox-label label {
	cursor: pointer;
}
.checkbox-label input {
    display: none;
}
.checkbox-label label {
    position: relative;
    padding-left: 27px;
}
.checkbox-label label:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-55%);
    left: 0;
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-color);
	border-radius: 4px;
	background-color: #fff;
}
.checkbox-label input:checked + label:before {
    background-image: url("/static/resource_0.1.0/images/icon-check.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-color: #001459;
    background-size: 14px;
	border-color: #001459;
}
.checkbox-label.favorite .starBox {
	width: 24px;
	height: 24px;
	margin-right: 8px;
	display: inline-block;
	vertical-align: top;
	background: url("/static/resource_0.1.0/images/icon-star02.svg") no-repeat 50% 50%;
}
.checkbox-label.favorite input:checked + label .starBox {
	background: url("/static/resource_0.1.0/images/icon-star-on.svg") no-repeat 50% 50%;
}
.checkbox-label.favorite label {
	padding-left: 0;
}
.checkbox-label.favorite label:before {
	display: none;
}
.radio-label {
	display: inline-flex;
	align-items: center;
	vertical-align: top;
	cursor: pointer;
}
.radio-label + .radio-label {
	margin-left: 16px;
}
.radio-label label {
	cursor: pointer;
}
.radio-label input {
    display: none;
}
.radio-label label {
    position: relative;
    padding-left: 27px;
}
.radio-label label:before {
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-color);
	border-radius: 50%;
	background-color: #fff;
}
.radio-label label:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 4px;
    width: 11px;
    height: 11px;
	border-radius: 50%;
	background-color: var(--color-primary);
	transform: scale(0);
	transition-duration: 0.15s;
}
.radio-label input:checked + label:after {
    transform: scale(1);
}
.star {
    margin-right: 5px;
    position: relative;
    top: 3px;
	margin-left: 2px;
}
.star:after {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: #f00;
    border-radius: 50%;
}
.btn-basic {
	line-height: 32px;
    font-size: 15px;
	font-weight: 500;
    text-align: center;
    border: 1px solid #bdbdbd;
    padding: 0 16px;
	height: 42px;
    display: inline-flex;
	justify-content: center;
    align-items: center;
	border-radius: 4px;
}
.btn-basic02 {
    line-height: 32px;
    font-size: 15px;
	font-weight: 500;
    text-align: center;
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary);
    color: #fff;
    padding: 0 16px;
	height: 42px;
    display: inline-flex;
	justify-content: center;
    align-items: center;
	border-radius: 4px;
}
.btn-basic img {
    margin-right: 5px;
}
.btn-delete {
    background-color: #fff;
}
.btn-settings .material-icons {
    font-size: 20px;
    color: #707070;
}
table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
table thead tr th {
    padding: 18px 10px;
 /*    background-color: #00196c; */
 /*    background-color: #989898; */
    background-color: var(--color-primary);
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    vertical-align: middle;
}
table thead tr:nth-child(1) th:first-child {
	border-top-left-radius: 4px;
}
table thead tr:nth-child(1) th:last-child {
	border-top-right-radius: 4px;
}
table thead tr:last-child th:first-child {
	border-bottom-left-radius: 4px;
}
table thead tr:last-child th:last-child {
	border-bottom-right-radius: 4px;
}
table tbody tr {
    border-bottom: 1px solid #cbcbcb;
}
table tbody tr:hover {
    background-color: #f3f3f3;
}
table tbody tr td {
    padding: 18px 10px;
    font-size: 15px;
    vertical-align: middle;
    text-align: center;
}
table .btn-arr .material-icons {
    position: absolute;
    font-size: 15px;
}
table .btn-arr img {
    position: absolute;
}
table tbody tr {
    cursor: pointer;
}
table.notLink tbody tr {
	cursor: auto;
}
.board-paging {
    text-align: center;
    margin: 35px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #707070;
    font-weight: 500;
}
.board-paging .nums {
    margin: 0 10px;
    display: flex;
    justify-content: center;
}
.board-paging .nums a {
    display: block;
    position: relative;
    padding: 0 10px;
}
.board-paging .nums a:after {
    content: "";
    position: absolute;
    top: 3px;
    right: 0;
    bottom: 3px;
    width: 1px;
    background-color: #707070;
}
.board-paging .nums a:last-child:after {
    display: none;
}
.board-paging .nums a.on {
    color: #001459;
    font-weight: 700;
}
.board-paging img {
	width: 	22px;
	position: relative;
}
.board-paging .doubleArrow {
	margin: 0 10px;
}
.board-paging .doubleArrow.first img {
	transform: rotate(180deg);
}
.table-header-wrap {
    margin-bottom: 18px;
}
.table-header-wrap::after {
	content: "";
	display: block;
	clear: both;
}
.table-header-wrap .con-left {
	float: left;
    display: flex;
    align-items: flex-end;
}
.table-header-wrap .con-left > * {
    margin-right: 10px;
}
.table-header-wrap .con-left > * > * {
    margin-right: auto;
}
.table-header-wrap .con-right {
	float: right;
    display: flex;
    align-items: center;
}
.table-header-wrap .con-right > * {
    margin-left: 10px;
}
.table-header-wrap .con-right > * > * {
    margin-left: auto;
}
.table-header-wrap .con-right .txt {
    color: #585858;
    margin-right: 30px;
}
.table-header-wrap .deletedList {
	margin-left: 24px;
	font-size: 16px;
}
.table-header-wrap .deletedList .checkbox-label label::before {
	width: 18px;
	height: 18px;
}
.board-search-box select {
    width: 200px;
    font-size: 13px;
}
.board-search-box .btn {
    float: right;
    margin-left: 10px;
    padding: 0 16px;
	height: 42px;
	display: flex;
	justify-content: center;
	align-items: center;
    font-size: 15px;
    color: #fff;
/*     background-color: #00196c; */
    background-color: var(--color-primary);
    text-align: center;
    vertical-align: top;
	border-radius: 4px;
}
.table-header-wrap .board-search-box input:not(.datepicker) {
    background-image: url("/static/resource_0.1.0/images/icon-search.png");
    background-position: 95% 50%;
    background-repeat: no-repeat;
    padding-right: 25px;
}
.table-header-wrap.pre-register .con-right select {
    width: 112px;
}
.table-header-wrap.pre-register .con-right .board-search-box input {
    width: 160px;
}
.table-header-wrap > p {
	line-height: 42px;
	font-size: 24px;
	font-weight: 500;
}
.table-slide.on {
    background-color: #e8f0fe;
}
.table-slide-view td {
    padding: 0;
}
.table-slide-view {
    border-bottom: none;
}
.table-slide-view .slide-box {
    text-align: left;
    padding: 30px;
    color: #000;
    display: none;
    border-bottom: 1px solid #cbcbcb;
    background-color: #f3f3f3;
}
.bottom-btns {
    margin-top: 48px;
	display: flex;
	justify-content: center;
	gap: 16px;
	text-align: center;
}
.bottom-btns .btn {
    border-width: 1px;
    border-style: solid;
    font-size: 15px;
    font-weight: 500;
    line-height: 48px;
    padding: 0 25px;
    border-radius: 4px;
	min-width: 140px;
}
.bottom-btns .btn.btn01 {
    border-color: #707070;
}
.bottom-btns .btn.btn02 {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: #fff;
}
.event-add-wrap {
    width: 1112px;
    margin: auto;
}
.event-add-form {
    padding: 0 80px;
    font-size: 16px;
}
.event-add-form table tbody tr {
    border-bottom: none;
    background: none !important;
    cursor: auto;
}
.event-add-form select,
.event-add-form input[type="text"] {
    width: 220px;
}
.event-add-form th,
.event-add-form td {
    padding: 10px;
}
.event-add-form th {
    text-align: right;
    font-weight: 600;
}
.event-add-form th .tac {
    display: inline-block;
    text-align: center;
}
.event-add-form td {
    text-align: left;
}
.event-add-form .flex {
    justify-content: space-between;
    align-items: center;
}
.event-add-form .checkbox-label label:before {
    top: 0;
    transform: translateY(0);
}
.date-input-wrap {
    display: inline-block;
    vertical-align: top;
}

.date-input-wrap input[type="text"] {
    width: 100px;
}
.date-input-wrap a {
    display: inline-block;
    padding: 4px;
    vertical-align: top;
    margin: 0 10px;
    background-color: #00196c;
}
.date-input-wrap select {
    width: 60px;
    margin-right: 10px;
}
.board-write-wrap {
    /*width: 1110px;*/
    margin: auto;
    position: relative;
}
.board-write-wrap .top-tit {
    font-size: 26px;
    color: #222;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid var(--color-primary);
    margin-bottom: 50px;
    padding-bottom: 10px;
}
.board-write-wrap .category select {
    margin-right: 20px;
}
.board-write-wrap .category select:nth-child(1) {
    width: 70px;
}
.board-write-wrap .category select:nth-child(2) {
    width: 160px;
}
.board-write-wrap .board-tit {
    margin-top: 10px;
    margin-bottom: 20px;
}
.board-write-wrap .txt-box {
/*     height: 445px; */
    height: 100%;
}
.board-write-wrap .txt-box textarea {
    height: 100%;
    padding: 20px;
}
.board-write-wrap .utils {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.board-write-wrap #filebox label {
    background-color: #fff;
    color: #707070;
    border: 1px solid #dbdbdb;
}
.board-write-wrap #filebox input {
    width: 250px;
}
.board-write-wrap .utils .prevnext a {
    display: inline-block;
    width: 76px;
    line-height: 37px;
    text-align: center;
    border-radius: 30px;
    background-color: #c1c1c1;
}
.board-write-wrap .utils .btns a {
    display: inline-block;
    width: 58px;
    line-height: 32px;
    color: #585858;
    border: 1px solid #b0b0b0;
    text-align: center;
    margin-right: 5px;
}
.board-write-wrap .utils .btns a.btn01 {
    border: 1px solid #00196c;
    background-color: #00196c;
    color: #fff;
}
.board-write-wrap .utils .btns a.btn02 {
    background-color: #e5e5e5;
}
/* 달력 */
.date-input-wrap .btn-calendar {
    display: inline-block;
    padding: 4px;
    vertical-align: top;
    margin: 0 10px;
    background-color: var(--color-primary);
}
.terms-cate dl {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.terms-cate dl:first-child {
    margin-top: 0;
}
.terms-cate dl dt {
    color: #222;
    font-weight: 600;
    width: 100px;
}
.terms-cate dl dd > select {
    width: 200px;
}
.terms-content {
    color: #222;
    font-weight: 600;
    display: block;
    margin-top: 50px;
    margin-bottom: 10px;
}
.terms-date-writer {
    position: absolute;
    top: 70px;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    width: 270px;
}
.terms-date-writer span {
    width: 50%;
    text-align: right;
}
.metatag-modify-wrap {
    width: 1110px;
    margin: auto;
    position: relative;
}
.metatag-modify dl {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.metatag-modify dl:first-child {
    margin-top: 0;
}
.metatag-modify dl dt {
    width: 140px;
    font-weight: 600;
}
.metatag-modify dl dd {
    width: 100%;
}
.metatag-modify dl dd input {
    height: 60px;
}
.log-wrap {
    margin: auto;
    position: relative;
}
.log-search-box {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.log-search-box .search-box input {
    background-image: url("/static/resource_0.1.0/images/icon-search.png");
    background-position: 95% 50%;
    background-repeat: no-repeat;
    padding-right: 25px;
}
.log-search-box .date-input-wrap input[type="text"] {
    width: 138px;
    margin-right: -3px;
}
.log-search-box .date-input-wrap .btn-calendar {
    margin: 0;
}
.log-search-box .hyphen {
    margin: 0 10px;
}
.log-search-box > select {
    width: 120px;
    margin-left: 10px;
}
.log-search-box .search-box input {
    width: 214px;
    margin-left: 15px;
}
.log-table {
	border-top: 2px solid var(--color-primary);
}
.log-table th {
    background-color: #f7f7f7;
    color: #222;
    font-weight: 600;
}
.log-table .btn {
    display: inline-block;
    width: 88px;
    line-height: 37px;
    text-align: center;
    /* border-radius: 30px; */
    background-color: #efefef;
}
.log-table-header {
    margin-bottom: 50px;
}
.log-table-header th,
.log-table-header td {
    padding: 10px;
}
.table-header-wrap.log .con-right select {
    width: 55px;
}
.account-add-form.view .form-list ul li {
    line-height: 32px;
}
.account-add-form.view .bottom-btns {
    margin-top: 100px;
}
/* 220118 */
.w80 {
    width: 80% !important;
}
.w20 {
    width: 20% !important;
}
.terms-cate {
    padding-top: 10px;
}
.terms-cate dl:nth-child(5) {
    margin-top: 50px;
}
table.non-hv tr {
    cursor: auto;
}
.btn-sm {
    display: inline-block;
    padding: 0 20px;
    background-color: #fff;
    line-height: 40px;
    border: 1px solid var(--border-color);
    margin: 0 2px;
	font-weight: 500;
	border-radius: 8px;
}
.btn-sm.primary {
	background-color: var(--color-primary);
}
.btn-sm.gray {
	background-color: #999;
	color: #fff;
}
.checkbox-label {
    display: inline-block;
}
.board-write-wrap input[type="text"],
.board-write-wrap input[type="password"],
.board-write-wrap select {
    height: 42px;
}
.board-write-wrap .board-contents {
    width: 700px;
    margin: auto;
}
.board-write-wrap .board-contents .comment {
    text-align: right;
}
.board-write-wrap .board-contents dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.board-write-wrap .board-contents dl dt {
    width: 200px;
    color: #222;
    font-weight: 600;
}
.board-write-wrap .board-contents dl dd {
    width: 500px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.board-write-wrap .board-contents dl dd button {
    height: 42px;
}
.board-write-wrap .bottom-btns {
    margin-top: 100px;
}
.board-write-wrap select.w100 {
    background-position: 98% 50%;
}
.small-button-group {
    margin-bottom: 16px;
	display: flex;
	gap: 16px;
}
.small-button-group .btn-sm {
	width: 100%;
	margin: 0;
}
.board-write-wrap .flex {
    justify-items: flex-start;
    justify-content: space-between;
}
.board-write-wrap .category-wrap {
    width: 300px;
}
.board-write-wrap .category-wrap .small-button-group {
	margin-top: 16px;
}
.board-write-wrap .category-wrap .addDep {
	margin-bottom: 16px;
}
.category-wrap ul.dynatree-container {
    border-color: var(--border-color);
}
.board-write-wrap .con-box-wrap {
    flex-grow: 1;
	margin-left: 24px;
}
.board-write-wrap .con-box-wrap .con-box {
    border: 1px solid var(--border-color);
    padding: 45px 30px;
    margin-top: 10px;
	border-radius: 8px;
}
.board-write-wrap .con-box-wrap .con-box:first-child {
    margin-top: 0;
}
.board-write-wrap .con-box-wrap .con-box .tit {
    font-size: 20px;
    color: var(--color-primary);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 20px;
}
.board-write-wrap .con-box-wrap .con-box .tit:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 12px;
    height: 2px;
    background-color: #00196c;
}
.board-write-wrap .con-box-wrap .con-box dl {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
}
.board-write-wrap .con-box-wrap .con-box dl:first-child {
    margin-top: 0;
}
.board-write-wrap .con-box-wrap .con-box dl dt {
    flex: 1 1 20%;
    color: #222;
    font-weight: 500;
}
.board-write-wrap .con-box-wrap .con-box dl dd {
    flex: 1 1 80%;
}
.board-write-wrap .con-box-wrap .con-box .bottom-btns {
    margin-top: 30px;
}
.board-write-wrap .checkbox-label {
    margin-right: 20px;
}
.board-write-wrap .checkbox-label label {
    padding-left: 25px;
}
.board-write-wrap .checkbox-label label:before {
    border-width: 2px;
}
.popup-add-group .inner {
    width: 700px;
}
.popup-add-group .inner dl {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-top: 20px;
}
.popup-add-group .inner dl:first-child {
    margin-top: 0;
}
.popup-add-group .inner dl dt {
    color: #222;
    font-weight: 600;
    flex: 1 1 20%;
}
.popup-add-group .inner dl dd {
    flex: 1 1 80%;
}
.non-flex {
    display: block !important;
}
.popup-add-group .inner dl.non-flex dd {
    margin-top: 10px;
}
#popup.scroll-popup .tit {
    padding: 40px 20px 10px 20px;
    margin-bottom: 0;
}
#popup.scroll-popup .inner {
    padding: 0;
}
#popup.scroll-popup .inner .scroll-box {
    height: 600px;
    overflow: auto;
    padding: 30px;
}
#popup.scroll-popup .bottom-btns {
    margin-top: 0;
    padding: 30px 0;
}
.popup-add-group .small-button-group {
    margin-bottom: 10px;
}
.d-none {
    display: none !important;
}
.d-flex {
    display: flex;
    align-items: center;
}
.d-flex > * {
    margin-right: 8px;
}
.d-flex > *:last-child {
    margin-right: 0;
}
.d-flex.justify-content-start {
    justify-content: flex-start !important;
}
.d-flex.justify-content-center {
    justify-content: center !important;
}
.d-flex.justify-content-between {
    justify-content: space-between !important;
}
.pointer {
    cursor: pointer;
}
.pointer:hover {
    color: #00196c;
    font-weight: 700;
}
.search-select {
    width: 140px;
}
#popup .bottom-btns {
    margin-top: 50px;
}
#popup02 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10;
    display: none;
}
#popup02 .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%);
    border: 2px solid #00196c;
    width: 700px;
    padding: 25px 30px;
	max-height: 90%;
	overflow-y: auto;
}
#popup02 .inner::-webkit-scrollbar {
	border-radius: 0 16px 16px 0;
}
#popup02 .inner .tit {
    font-size: 26px;
    color: #707070;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 50px;
}
#popup02 .inner .tit:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background-color: #00196c;
}
#popup02 .inner .btn-close {
    position: absolute;
    top: 5px;
    right: 10px;
}
.table-header-wrap .breadCrumbs ul li {
    display: inline-block;
    margin-right: 5px;
}

/* 220120 */
.board-view-wrap {
	padding: 20px;
	background-color: #f8f9fa;
}
.board-view-wrap .top-tit {
    font-size: 26px;
    color: #222;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid var(--color-primary);
    margin-bottom: 50px;
    padding-bottom: 10px;
}
.board-view-wrap .board-view {
    border: 1px solid #787878;
    position: relative;
}
.board-view-wrap .board-view .board-tit {
    padding: 29px 50px;
    border-bottom: 2px solid #787878;
    font-size: 20px;
}
.board-view-wrap .board-view .dateWriter {
    position: absolute;
    top: 33px;
    right: 20px;
}
.board-view-wrap .board-view .board-contents {
    padding: 50px;
}
.board-view-wrap .board-view .board-contents #filebox {
    margin-top: 100px;
}
.board-view-wrap .board-view .board-contents #filebox label {
    border: 1px solid #787878;
    background-color: #fff;
    color: #585858;
    margin-right: 15px;
}
.board-view-wrap .board-view .board-contents #filebox label img {
    position: relative;
    top: 10px;
}
.board-view-wrap .utils {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.board-view-wrap .utils .prevnext a {
    display: inline-block;
    width: 76px;
    line-height: 37px;
    text-align: center;
    /* border-radius: 30px; */
    background-color: #c1c1c1;
}
.board-view-wrap .utils .btns a {
    display: inline-block;
    width: 58px;
    line-height: 32px;
    color: #585858;
    border: 1px solid #b0b0b0;
    text-align: center;
    margin-right: 5px;
}
.board-view-wrap .utils .btns a.btn01 {
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary);
    color: #fff;
}
.board-view-wrap .utils .btns a.btn02 {
    background-color: #e5e5e5;
}
.board-view-wrap .boardHeader {
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	border: 1px solid var(--border-color);
}
.board-view-wrap .boardHeader::after {
	content: "";
	display: block;
	clear: both;
}
.board-view-wrap .boardTit {
	display: inline;
	font-size: 24px;
	font-weight: 500;
}.board-view-wrap .boardTit p {
	display: inline;
}
.board-view-wrap .dateWriter {
	float: right;
	padding-top: 14px;
	display: flex;
	gap: 24px;
	font-size: 16px;
}
.board-view-wrap .boardContents {
	padding: 20px;
	margin-top: 20px;
	background-color: #fff;
	border-radius: 8px;
	border: 1px solid var(--border-color);
	min-height: 300px;
}
.table-header-wrap .select-box {
    position: relative;
}
.table-header-wrap .select-box .btn {
    display: block;
    border: 1px solid #bdbdbd;
    padding: 0 10px;
    line-height: 30px;
}
.table-header-wrap .select-box .btn .material-icons {
    font-size: 16px;
    transition: 0.3s;
}
.table-header-wrap .select-box .btn.on .material-icons {
    transform: rotateX(180deg);
}
.table-header-wrap .select-box ul {
    position: absolute;
    top: 32px;
    left: 0;
    width: 148px;
    background-color: #fff;
    padding: 8px 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: none;
}
.table-header-wrap .select-box ul li {
    margin-top: 10px;
}
.table-header-wrap .select-box ul li a {
    display: block;
    line-height: 24px;
    text-align: center;
    border: 1px solid #c1c1c1;
}
.table-header-wrap .select-box ul li a:hover {
    background-color: #e8f0fe;
    color: #00196c;
}
.flex.align-items-center {
	align-items: center;
}
#viewOnlyAdoptBtn {
	width: 15px;
	height: 15px;
	margin-right: 4px;
}

.bottom-btns.mt-36 {margin-top: 36px;}
.board-write-wrap .board-contents.question-category-contents dl dt {width: 90px;}
.board-write-wrap .board-contents.question-category-contents dl dd {width: 600px;}

.d-flex{
	display: flex;
}

.mt-36 {
	margin-top: 36px;
}
.boardEmpty {
	padding: 32px 16px;
}
.downloadListPopup {
	position: absolute;
	right: 0;
	z-index: 1;
	padding: 24px;
	background-color: #fff;
	width: 300px;
	box-shadow: 1px 1px 10px rgba(0,0,0,0.15);
	text-align: left;
	cursor: auto;
	display: none;
}
.downloadListPopup a {
	display: block;
	padding-left: 10px;
	position: relative;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.downloadListPopup a:hover {
	text-decoration: underline;	
}
.downloadListPopup a:before {
	content: "";
	position: absolute;
	top: 11px;
	left: 0;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background-color: #555;
}
.downloadListPopup p {
	font-weight: 500;
	margin-bottom: 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--border-color);
}
.downloadListPopup li + li {
	margin-top: 8px;
}
.downloadListPopup .btnClose {
	position: absolute;
	top: 16px;
	right: 20px;
	padding: 4px;
	
}
.downloadListPopup .btnClose img {
	width: 24px;
}
.tblDual {
	display: flex;
	justify-content: space-between;
}
.tblDual.permiList .tblBox {
	width: calc(50% - 12px);
}
.ck-editor__editable {
    min-height: 400px;
}
.ck.ck-toolbar {
	border: 0;
	border-bottom: 1px solid var(--border-color);
}
.uploadPreviewImg {
	display: flex;
	justify-content: space-between;
}
.uploadPreviewImg .leftBox {
	width: 60%;
}
.uploadPreviewImg .rightBox {
	width: 40%;
	margin-left: 24px;
	background-color: #f8f8f8;
	position: relative;
}
.uploadPreviewImg .rightBox:before {
	content: "Preview Image";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.uploadPreviewImg .rightBox .img-items p {
	padding: 16px;
}
.uploadPreviewImg .rightBox .img-items p a {
	text-decoration: underline;
}
.inputUpload {
	display: block;
	position: relative;
	height: 42px;
	padding-left: 88px;
}
.inputUpload input[type="file"] {
	display: none;
}
.inputUpload .btn {
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #707070;
	border-radius: 4px;
	border: 1px solid var(--border-color);
	cursor: pointer;
}



