@charset "UTF-8";

/*
    기본 tag, layout, 부분 block 관련 style을 여기에 정의합니다.
    이 파일은 all.css에서 import되어 사용됩니다.

    header / aside 
*/

body {
    --body-width: 1600px; /* 1520 + 80 */

    font-family: var(--base-font-family);
    font-size: var(--base-font-size);
    font-weight: 400;
    line-height: var(--base-line-height);
    letter-spacing: var(--base-letter-spacing);

    color: var(--base-body-color);
    background-color: var(--base-body-bg-color);

    min-width: var(--body-width);
}
body.body-1320 {
    min-width: 1320px; /* 1200 + 120 */
}

body * {
    overscroll-behavior: contain;
}

footer {
    width: 100%;
}

label {
    font-weight: 600;
}

a {
    color: unset;
    text-decoration: unset;
}

:focus-visible {
    outline: solid 3px rgba(67, 67, 67, 0.5);
}

/* 웹접근성 항목11-2: 부트스트랩(_bootstrap_custom.css)이 .btn 포커스에서 outline:0 처리하여
   box-shadow만 남아 개체색=초점색일 때 키보드 포커스링이 보이지 않음.
   전 버튼에 가시 outline 복원(키보드 포커스 시에만, 마우스/평상시 디자인 불변, box-shadow는 유지). */
.btn:focus-visible,
.btn-check:focus-visible + .btn {
    outline: 3px solid #1d6fff;
    outline-offset: 2px;
}

/* 웹접근성 항목6-2: 활성/비활성 상태를 색뿐 아니라 글자 굵기로도 구분(토글 라디오·탭 공통).
   회원구분·성별 등 텍스트 토글의 active를 색 외 패턴으로 식별 가능하게 함. */
.btn-check:checked + .btn,
.nav-tabs .btn.active,
.nav-tabs .nav-link.active,
.nav-pills .btn.active,
.nav-pills .nav-link.active {
    font-weight: 700;
}

/* 웹접근성 항목5: 필수 입력(*) 지시를 시각 기호에만 의존하지 않도록 폼 상단에 텍스트 범례 제공 */
.required-legend {
    margin-bottom: 16px;
    font-size: 14px;
    color: #595959;
}

h2 {
    font-size: 36px;
    line-height: 42px;
    font-weight: var(--weight-semi-bold);
}
h3 {
    line-height: 40px;
}
h4 {
    line-height: 32px;
}
h5 {
    line-height: 30px;
}

ul.list-style-disc {
    list-style: disc;
    margin-bottom: 0;
    padding-left: 24px;
}
ul.list-style-dash {
    list-style: none;
    margin-bottom: 0;
    padding-left: 24px;
}
ul.list-style-dash > li {
    position: relative;
}
ul.list-style-dash > li::after {
    content: "-";
    display: inline-block;
    min-width: 24px;
    margin-left: -24px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}
ol.list-style-parentheses {
    counter-reset: item;
    list-style: none;
    margin-bottom: 0;
    padding-left: 24px;
}
ol.list-style-parentheses > li {
    counter-increment: item;
    position: relative;
}
ol.list-style-parentheses > li:before {
    content: counter(item) ")";
    display: inline-block;
    min-width: 24px;
    margin-left: -24px;
    position: absolute;
    top: 0;
    left: 0;
}
ol.list-style-parentheses > li > ul {
    min-width: 100%;
}

mark {
    padding: 0 0.25rem;
    font-weight: 600;
    color: var(--bs-info) !important;
    background-color: transparent !important;
}

select option:disabled {
    color: var(--base-text3-color);
    background-color: var(--base-bg1-color);
}

textarea,
.textarea,
textarea.form-control {
    min-height: 300px !important;
    line-height: 30px;
    padding: 20px;
    border-radius: 8px;
    resize: none; /* 크기 변경 불가 */
    color: var(--bs-dark);
    box-sizing: border-box;
}

pre,
.pre {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 32px;
    white-space: pre-wrap;
}

i.khi::before {
    margin: 0;
}

.container {
    max-width: 1520px;
    padding: 0;
}
.container-1200 {
    max-width: 1200px;
}

.modal-daialog {
    min-width: 1520px !important;
}

body.zoom.modal-open > .modal-backdrop {
    width: 100% !important;
    height: 100% !important;
}

.layout-center {
    text-align: center;
}
.layout-space-between {
    display: flex;
    justify-content: space-between;
}
.grid-wrap {
    display: grid;
    gap: 40px;
}

.aspect-ratio--16-9-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 비율을 유지하기 위한 패딩 */
}
.aspect-ratio--16-9-box .video-wrap {
    width: 100%;
    height: 100%;
    background-color: #343434;
    background-image: url(../../../img/icon_2/video-wrap-bg.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15% 15%;
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.item-divider {
    padding: 0 9px;
    color: #cccccc;
    font-size: 8px;
}

.thin-scrollbar::-webkit-scrollbar {
    width: 1rem;
    height: 1rem;
    background: white;
    border-radius: 1rem;
}
.thin-scrollbar::-webkit-scrollbar-track {
    /* border: solid 0.3126rem white; */
    border-radius: 1rem;
}
.thin-scrollbar::-webkit-scrollbar-thumb {
    background: var(--bs-border-color);
    border-radius: 1rem;
    border: solid 0.3126rem white;
}
.thin-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--bs-border-color);
}
.thin-scrollbar:read-only:not(.bg-white)::-webkit-scrollbar-track {
    background-color: var(--base-bg1-color);
}
.thin-scrollbar:read-only:not(.bg-white)::-webkit-scrollbar-thumb {
    border-color: var(--base-bg1-color);
}

/*-- z-index 정리 ----------------------------------------------------------------------------------*/
/* 모달은 1055 부터 시작 / .modal-backdrop : 1050 */
/* .modal-message : 1065 */
/* bootstrap-datepicker : 10 */
/* 메인 상단 Visual(swpier), 사용자카드, 메인메뉴 간 z-index 정리 */
main.PC-MAIN-A01 .swiper-visual .swiper {
    z-index: 1 !important;
}
main.PC-MAIN-A01 .visual-wrap .container > .user-card-wrap {
    z-index: 2 !important;
}
header nav ul.header-menu .header-submenu-layer {
    z-index: 3 !important;
}
header .search-layer {
    z-index: 4 !important;
}
.modal-message {
    z-index: 10000;
    background-color: rgba(34, 34, 34, 0.4);
}

/*--v HEADER -------------------------------------------------------------------------------------*/
header .topbar {
    border-bottom: solid 1px var(--base-line2-color);
    background-color: var(--base-bg1-color);
}
header .topbar ul.login-wrap {
    height: 56px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: var(--weight-medium);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
header .topbar .screen-zoom {
    display: flex;
    align-items: center;
    gap: 4px;
}
header .topbar .screen-zoom .label {
    margin-right: 10px;
}
header .topbar .screen-zoom .mag {
    font-size: 16px;
}
header .topbar .screen-zoom button {
    margin-top: -2px;
    line-height: 1;
    /* 웹접근성(항목12): 컨트롤 최소 크기 17x17px 보장 (아이콘 시각 유지, 클릭영역만 확대)
       .btn-icon-full의 min-width:0 !important 를 덮기 위해 !important 사용 */
    min-width: 17px !important;
    min-height: 17px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

header nav {
    height: 80px;
    padding: 0;
    border-bottom: solid 1px var(--base-line2-color);
}
header nav .gnb-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header nav h1 {
    padding: 16px 0;
    font-size: 0;
    line-height: 1;
}
header nav h1 img {
    height: 48px;
}
header nav .gnb-right-wrap {
    display: flex;
    align-items: center;
}
header nav ul.header-menu {
    height: 80px;
    margin-bottom: 0;
    margin-right: 36px;
    display: flex;
    align-items: center;
}
header nav ul.header-menu > li {
    height: 100%;
    padding: 0;
}
header nav ul.header-menu a.main-gnb {
    height: 100%;
    width: 100%;
    padding: 0 50px;
    color: var(--bs-dark);
    display: block;
    font-size: 20px;
    line-height: 30px;
    font-weight: var(--weight-semi-bold);
    cursor: pointer;
}
header nav ul.header-menu a.main-gnb > span {
    height: 100%;
    display: flex;
    align-items: center;
}
header:not(.header-assist) nav ul.header-menu > li.active .main-gnb > span {
    border-top: solid 2px transparent;
    border-bottom: solid 2px var(--bs-primary);
}
header nav ul.header-menu > li.active > .header-submenu-layer {
    display: block;
}
/* header nav ul.header-menu li { position: relative; } */
header nav ul.header-menu .header-submenu-layer {
    width: 100%;
    background: linear-gradient(to right, var(--bs-primary) 50%, white 50%);
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 5%);
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 3;
}
header nav ul.header-menu .header-submenu-layer::after {
    content: "";
    width: 50%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 123px;
    border-top: solid 1px rgba(255, 255, 255, 40%);
}
header nav ul.header-menu .header-submenu-wrap {
    display: flex;
    align-items: flex-start;
    background-color: white;
}
header nav ul.header-menu .header-submenu-wrap .title-wrap {
    width: 300px;
    min-height: 361px;
    padding: 60px 0 0 0;
    border-radius: 0 0 100px 0;
    background-color: var(--bs-primary);
    text-align: right;
}
header nav ul.header-menu .header-submenu-wrap .title-wrap h2 {
    padding-right: 50px;
    font-weight: 700;
    color: white;
}
header nav ul.header-menu .header-submenu-wrap .title-wrap .overview {
    margin-top: 20px;
    padding-top: 20px;
    padding-right: 50px;
    line-height: 30px;
    color: white;
    /* border-top: solid 1px rgba(255, 255, 255, 40%); */
}
header nav ul.header-menu ul.header-menu-d2 {
    width: 800px;
    padding: 40px 0 40px 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px 20px;
}
header nav ul.header-menu ul.header-menu-d2 > li {
    width: 170px;
}
header nav ul.header-menu ul.header-menu-d2 .link {
    border-bottom-width: 0;
    cursor: pointer;
}
header nav ul.header-menu ul.header-menu-d2 .link:hover {
    border-bottom-width: 1px;
}
header nav ul.header-menu ul.header-menu-d3 {
    padding-top: 15px;
    padding-left: 0;
}
header nav ul.header-menu ul.header-menu-d3 li {
    padding: 5px 0;
    font-size: 16px;
}
header nav ul.header-menu ul.header-menu-d2 li a {
    cursor: pointer;
}
header nav ul.header-menu ul.header-menu-d3 li a:hover {
    border-bottom: solid 1px currentColor;
}

header .family-site-wrap {
    width: 260px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}
/* 웹접근성(항목26): #header .family-site(global.css, width200·margin0 30px) 우선순위를 넘어 flex 배치 적용 */
#header .family-site-wrap .family-site {
    flex: 1;
    min-width: 0;
    width: auto;
    margin: 0;
    padding: 6px 28px 6px 12px;
    height: 46px;
    font-size: 16px;
    font-weight: 500;
}
#header .family-site-wrap .family-site-go {
    flex: none;
    min-width: 0;
    height: 46px;
    padding: 0 12px;
    white-space: nowrap;
}
header nav .search-menu-button-wrap {
    display: flex;
}
/* 웹접근성 항목4: search-layer를 wrap 안(검색버튼 직후)으로 옮김에 따라,
   80×80 규칙이 레이어 내부 검색버튼에 새지 않도록 직접자식(> button)으로 한정 */
header nav .search-menu-button-wrap > button {
    width: 80px;
    height: 80px;
    min-width: 0;
    padding: 0;
}
header nav ul.header-menu .khi-link-ext {
    margin-left: 4px;
    font-size: 16px;
}

header {
    position: relative;
}

header .search-layer {
    width: 100%;
    height: 216px;
    padding: 40px 40px 50px 40px;
    text-align: center;
    background-color: white;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 5%);
    display: none;
    position: absolute;
    top: 100%;
    /* 웹접근성 항목4: 검색레이어를 nav 내부(검색버튼 직후)로 이동하면서 left 미지정 시
       정적 위치(좌측 908px)에서 펼쳐져 가로 오버플로우 → header(position:relative) 기준 left:0 고정 */
    left: 0;
    z-index: 1;
}
header .search-layer.ON {
    display: block;
}
header .search-layer .search-form-wrap {
    display: flex;
    justify-content: center;
}

.search-form-wrap .search-form {
    min-width: 640px;
    position: relative;
}
.search-form-wrap .input-keyword {
    height: 70px;
    border-color: var(--bs-dark);
    border-radius: 10px;
    padding: 0.375rem 95px 0.375rem 30px;
    font-size: 20px;
}
.search-form-wrap .btn-search {
    width: 52px;
    height: 52px;
    position: absolute;
    top: 10px;
    right: 15px;
}
.search-form-wrap .hash-wrap {
    margin-top: 20px;
}
.search-form-wrap .hash-wrap .btn-hash {
    height: 36px;
    border: 0;
    font-size: 16px;
    background-color: var(--base-bg1-color);
}
/*--^ HEADER -------------------------------------------------------------------------------------*/

/*--v HEADER.header-assist --------------------------------------------------------------------------*/
header.header-assist {
    --header-height: 80px;

    height: var(--header-height);
    border-bottom: solid 1px var(--base-line2-color);
}
header.header-assist .container {
    font-size: 18px;
}
header.header-assist nav {
    display: flex;
    align-items: center;
}
header.header-assist nav h1 {
    padding: 16px 0;
    font-size: 0;
    line-height: 1;
}
header.header-assist nav h1 img {
    height: 48px;
}
header.header-assist nav ul.header-menu .item-divider {
    font-size: 12px !important;
    padding: 28px 0;
}
header.header-assist nav ul.header-menu {
    height: var(--header-height);
    margin-left: 52px;
    margin-right: 0;
    margin-bottom: 0;
    padding: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
}
header.header-assist nav ul.header-menu > li {
    height: calc(100% - 8px);
}
header.header-assist nav ul.header-menu a.main-gnb {
    padding: 4px 40px;
    border-radius: 0;
    font-weight: 500;
    color: var(--bs-dark);
    display: flex;
}
header.header-assist nav ul.header-menu a.btn:focus-visible {
    outline: solid 3px rgba(67, 67, 67, 0.5);
}
header.header-assist nav .btn-share {
    width: 80px;
    height: calc(var(--header-height) - 6px);
    margin-left: auto;
    border-color: var(--base-line2-color);
    border-width: 0 1px;
    border-style: solid;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .user-login-menu a {
    /* 웹접근성(항목8): #f5f5f5 topbar 배경에서 4.5:1 충족 (#576dd8 4.2 -> #4a5cc4 5.3) */
    color: #4a5cc4 !important;
}

/*--^ HEADER.header-assist --------------------------------------------------------------------------*/

/*--v ASIDE --------------------------------------------------------------------------------------*/
aside.quickmenu,
aside.contents-nav-box,
aside.attendance,
aside.mypage {
    position: absolute;
    top: max(760px, calc(var(--viewport-height) / 2 + var(--page-y-offset)));
    transform: translateY(-50%);
    transition: top ease-in-out 0.5s;
    z-index: 9998;
}

aside.quickmenu {
    width: 128px;
    top: max(910px, calc(var(--viewport-height) / 2 + var(--page-y-offset)));
    right: calc(50% + 800px);
}
aside.quickmenu .quickmenu-inner {
    border: solid 1px var(--bs-info);
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 10%);
    overflow: hidden;
}
aside.quickmenu h3 {
    height: 40px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: white;
    background-color: var(--bs-info);
    display: flex;
    align-items: center;
    justify-content: center;
}
aside.quickmenu ul {
    padding: 10px 7px;
    text-align: center;
    margin-bottom: 0;
}
aside.quickmenu li {
    margin: 10px 0;
    font-size: 16px;
    display: flex;
    flex-direction: column;
}
aside.quickmenu li a {
    border-bottom: unset;
    color: var(--dark-grey);
    font-weight: var(--weight-medium);
}
aside.quickmenu li a:active,
aside.quickmenu li a:hover {
    font-weight: var(--weight-semi-bold);
    color: var(--bs-dark);
}
aside.quickmenu li:not(:last-child)::after {
    content: "·";
    color: #cccccc;
    font-weight: bold;
}
aside.quickmenu .link-top {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* 콘텐츠 scrollspy & 추천자료 */
aside.contents-nav-box {
    width: 126px;
    /* left: calc(50% + 640px); */
    left: max(1440px, calc(50% + 640px));
}
aside.contents-nav-box .contents-scrollspy {
    width: 100%;
    border-radius: 10px !important;
    background-color: white;
    /* box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 10%); */
}
aside.contents-nav-box .contents-scrollspy .list-group-item:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
aside.contents-nav-box .contents-scrollspy .list-group-item:last-child {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
aside.contents-nav-box .contents-scrollspy .list-group-item {
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    word-break: keep-all;
    overflow-wrap: break-word; /* 긴 문자열도 줄바꿈 */
    word-wrap: break-word; /* 구형브라우저 대응 */
    line-break: auto;
}
aside.contents-nav-box .contents-scrollspy .list-group-item.active {
    font-weight: 600;
    color: white;
    background-color: var(--bs-dark);
    border-color: var(--bs-dark);
}

aside.contents-nav-box .recommended {
    width: 100%;
    margin-top: 20px;
    border-radius: 10px;
    background-color: white;
    /* box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 10%); */
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
aside.contents-nav-box .recommended h3 {
    border-radius: 10px 10px 0 0;
    padding: 10px 0 6px 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: white;
    background-color: var(--bs-info);
    display: flex;
    align-items: center;
    justify-content: center;
}
aside.contents-nav-box .recommended ul {
    padding: 10px 10px 0 10px;
    border-style: solid;
    border-width: 0 1px;
    border-color: var(--bs-border-color);
    text-align: center;
    margin-bottom: 0;
}
aside.contents-nav-box .recommended li {
    margin-bottom: 20px;
    font-size: 14px;
}
aside.contents-nav-box .recommended li .thumb-box {
    width: 100px;
    height: 60px;
    border-radius: 4px;
    background-color: var(--base-bg1-color);
    background-image: url(../../../img/logo/footer-logo.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60px;
    overflow: hidden;
}
aside.contents-nav-box .recommended li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
aside.contents-nav-box .recommended li a .title {
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-top: 10px;
}
aside.contents-nav-box .recommended li a:active,
aside.contents-nav-box .recommended li a:hover {
    font-weight: 600;
    color: var(--bs-dark);
}
aside.contents-nav-box .recommended .footer {
    padding: 0 10px 10px 10px;
    border-style: solid;
    border-width: 0 1px 1px 1px;
    border-color: var(--bs-border-color);
    border-radius: 0 0 10px 10px;
}
aside.contents-nav-box .recommended .btn-more {
    width: 100%;
    height: 30px;
    border: solid 1px var(--bs-border-color);
    border-radius: 4px;
    background-color: var(--base-bg1-color);
    font-size: 12px;
    font-weight: 600;
    gap: 5px;
}
aside.contents-nav-box .recommended .btn-more i {
    line-height: 9px;
}

/* 오눌 출석부 */
aside.attendance {
    width: 120px;
    /* left: calc(50% + 640px); */
    left: max(1440px, calc(50% + 640px));
}
aside.attendance .attendance-inner {
    width: 100%;
    border: solid 1px var(--bs-info);
    border-radius: 10px;
    background-color: white;
    overflow: hidden;
}
aside.attendance h3 {
    height: 40px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    background-color: var(--bs-info);
    display: flex;
    align-items: center;
    justify-content: center;
}
aside.attendance .list-wrap {
    padding: 10px 8px 8px 10px;
}
aside.attendance h4 {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: var(--bs-info);
}
aside.attendance h4:not(:first-of-type) {
    margin-top: 20px;
    padding-top: 10px;
    border-top: solid 1px var(--base-line2-color);
}
aside.attendance ul {
    margin-bottom: 0;
    padding: 0;
}
aside.attendance li {
    margin: 5px 0;
    font-size: 14px;
    font-weight: 500;
    justify-content: flex-start;
}
aside.attendance li .icon-level-circle {
    width: 24px;
    height: 24px;
    min-width: 24px;
}
aside.attendance .attendance-list-wrap {
    padding: 10px 0;
    position: relative;
}
aside.attendance ul.attendance-list {
    max-height: 145px;
    overflow: auto;
}
aside.attendance ul.attendance-list::-webkit-scrollbar {
    width: 0.25rem;
    height: 0.25rem;
    background: white;
    border-radius: 0.25rem;
}
aside.attendance ul.attendance-list::-webkit-scrollbar-track {
    /* border: solid 0.3126rem white; */
    border-radius: 0.25rem;
}
aside.attendance ul.attendance-list::-webkit-scrollbar-thumb {
    background: var(--bs-border-color);
    border-radius: 0.25rem;
    border: solid 1px white;
}
aside.attendance ul.attendance-list::-webkit-scrollbar-thumb:hover {
    background: var(--bs-border-color);
}

/* My Page */
aside.mypage {
    width: 120px;
    /* left: calc(50% + 640px); */
    left: max(1440px, calc(50% + 640px));
}
aside.mypage .mypage-inner {
    width: 100%;
    border: solid 1px var(--bs-info);
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 10%);
    overflow: hidden;
}
aside.mypage h3 {
    height: 40px;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: white;
    background-color: var(--bs-info);
    display: flex;
    align-items: center;
    justify-content: center;
}
aside.mypage ul {
    margin-bottom: 0;
    padding: 20px 20px 8px 20px;
    text-align: center;
}
aside.mypage li {
    margin-bottom: 22px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    word-break: keep-all;
}
aside.mypage li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
aside.mypage li a:active,
aside.mypage li a:hover {
    font-weight: 600;
    color: var(--bs-dark);
}
/*--v ASIDE --------------------------------------------------------------------------------------*/

/*--v FOOTER -------------------------------------------------------------------------------------*/

/* 금연을 하고 싶다면? */
.non-smoking-promotion-container {
    margin-bottom: 120px;
}
.non-smoking-promotion-container .title {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.non-smoking-promotion-container .text-box {
    font-size: 20px;
    font-weight: 500;
    position: relative;
}
.non-smoking-promotion-container .text-box .link {
    font-weight: 600;
    margin-left: 6px;
    margin-right: 10px;
}
.non-smoking-promotion-container .text-box .none-smoking-icon {
    width: 120px;
    height: 120px;
    position: absolute;
    right: 79px;
    bottom: 0;
}

/* footer */
section.footer-top {
    width: 100%;
    height: 80px;
    background-color: #222222;
    color: #cccccc;

    display: flex;
    justify-content: center;
    align-items: center;
}
section.footer-top > .container {
    display: flex;
    justify-content: space-between;
}

ul.footer-link-list {
    padding: 0;
    display: flex;
    align-items: center;
}
ul.footer-link-list li.divider {
    display: flex;
    align-items: center;
}
ul.footer-link-list li.divider::after {
    content: "";
    height: 12px;
    margin-top: 1px;
    margin-right: 10px;
    padding-left: 9px;
    border-right: solid 1px #cccccc;
}
ul.footer-link-list a.link {
    border-bottom: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: var(--weight-regular);
    padding: 8px 0;
}
ul.footer-link-list a.link.privacy {
    color: var(--bs-primary);
    font-weight: var(--weight-semi-bold);
}
ul.footer-link-list a.link.about-this {
    max-height: 20px;
    margin-right: 24px;
    border-bottom: solid 1.5px white;
    color: white;
    font-weight: var(--weight-semi-bold);
    padding: 0;
}

.footer-site-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}
ul.footer-sns-list {
    display: flex;
    align-items: center;
    gap: 10px;
}
ul.footer-sns-list .sns-logo {
    width: 40px;
    height: 40px;
}
.footer-site-wrap .related-site {
    height: 46px;
}
.footer-site-wrap .related-site button {
    width: 240px;
    height: 46px;
    line-height: 1;
    padding: 0 20px;
    border: solid 1px var(--base-border-color);
    border-radius: 10px;
    color: #cccccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}
.footer-site-wrap .related-site .dropdown-menu {
    width: 240px;
}
.footer-site-wrap .related-site .dropdown-menu li a{
    font-size: 18px;
    z-index: 100;
}

section.footer-bottom {
    width: 100%;
    height: 200px;
    background-color: var(--bs-light);
}
section.footer-bottom > .container {
    padding-top: 40px;

    display: flex;
    align-items: flex-start;
    gap: 20px;
}
section.footer-bottom .homepage-logo {
    height: 48px;
}
section.footer-bottom .homepage-info {
    padding: 0 10px;
    font-size: 16px;
    line-height: 20px;
}
section.footer-bottom .contact-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
section.footer-bottom .contact-wrap .contact-search {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--bs-warning);
}
section.footer-bottom .contact-wrap .contact-search > a {
    font-weight: 600;
    line-height: 20px;
}
section.footer-bottom .contact-wrap .label {
    font-weight: 600;
    color: var(--bs-dark);
}
section.footer-bottom .homepage-info .address {
    margin-top: 20px;
}
section.footer-bottom .homepage-info .copyright {
    margin-top: 40px;
}

/* 웹접근성: 푸터/금연 프로모션 영역 키보드 포커스 표시 */
/* 평상시 디자인/배경/hover 는 변경하지 않고, 키보드 포커스 상태에서만 식별 가능한 outline 적용 */
footer a:focus-visible,
footer a:focus,
footer button:focus-visible,
footer button:focus,
.non-smoking-promotion-container a:focus-visible,
.non-smoking-promotion-container a:focus {
    outline: 2px solid #1d6fff;
    outline-offset: 2px;
    border-radius: 2px;
}
/* 웹접근성: 관련사이트 등 푸터 .btn은 부트스트랩 .btn:focus-visible{outline:0}(0,0,2,0)에 가려지므로 우선순위 보강 */
footer button.btn:focus-visible,
footer button.btn:focus {
    outline: 2px solid #1d6fff;
    outline-offset: 2px;
    border-radius: 2px;
}
/*--^ FOOTER -------------------------------------------------------------------------------------*/

/*--v Sub page Title -----------------------------------------------------------------------------*/
main > .page-title-wrap {
    background-color: var(--base-bg1-color);
    position: relative;
}
main > .page-title-wrap > .container {
    height: 300px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
}
main > .page-title-wrap .sub-title {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 24px;
    color: var(--bs-primary);
}

/* Sub page BreadCrumb */
main > .page-title-wrap .breadcrumb-wrap {
    width: calc(50% + 540px); /* = 100% - (50% - 600px) - 60px) */
    height: 60px;
    margin-left: 60px;
    background-color: white;
    border-top: solid 1px var(--base-line2-color);
    border-bottom: solid 1px var(--base-line2-color);
    /* overflow: hidden; */
    position: absolute;
    bottom: 0;
    left: calc(50% - 600px);
}
main > .page-title-wrap .breadcrumb-wrap .container-1200 {
    width: calc(1200px - 60px); /* home 배치용 margin 60px 차감 */
    display: flex;
    align-items: center;
}
main > .page-title-wrap .breadcrumb-wrap a.btn-home {
    width: 60px;
    height: 60px;
    position: absolute;
    left: -60px;
    top: -1px;
}
main > .page-title-wrap .breadcrumb-wrap nav {
    --bs-breadcrumb-divider: "";
    flex: 1;
}
main > .page-title-wrap .breadcrumb-wrap ol.breadcrumb {
    flex-wrap: nowrap;
}
main > .page-title-wrap .breadcrumb-wrap li.breadcrumb-item {
    width: 255px;
    height: 58px;
    padding: 0;
    border-right: solid 1px var(--base-line2-color);
    font-size: 16px;
    /* background-color: white; */
}
main > .page-title-wrap .breadcrumb-wrap li.breadcrumb-item.active .form-select {
    color: var(--bs-dark);
}
main > .page-title-wrap .breadcrumb-wrap .breadcrumb-item + .breadcrumb-item::before {
    padding-right: 0;
}
main > .page-title-wrap .breadcrumb-wrap li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
main > .page-title-wrap .breadcrumb-wrap li div {
    padding: 0 18px;
}
main > .page-title-wrap .breadcrumb-wrap li .form-select {
    flex: 1;
    min-width: 0;
    height: 58px;
    margin: 0 2px;
    border: 0;
    border-radius: 0;
    font-size: 16px;
}
main > .page-title-wrap .breadcrumb-wrap li .BREADCRUMB_GO {
    flex: none;
    min-width: 0;
    height: 34px;
    margin-right: 8px;
    padding: 0 12px;
    white-space: nowrap;
}
main > .page-title-wrap .breadcrumb-wrap .print-share-wrap {
    margin-left: auto;
    border-right: solid 1px var(--base-line2-color);
    display: flex;
}
main > .page-title-wrap .breadcrumb-wrap .print-share-wrap a {
    width: 60px;
    height: 58px;
    border-left: solid 1px var(--base-line2-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
/*--^ Sub page Title -----------------------------------------------------------------------------*/

/*--v Sub page Section ---------------------------------------------------------------------------*/
main section {
    padding-bottom: 120px;
}
main section:first-of-type {
    margin-top: 40px;
}

main section hr {
    margin: 40px 0 0 0;
    border-color: var(--base-line2-color);
    opacity: 1;
}

/* 게시글 등 기본 콘텐츠 상세(조회) 영역 */
section.contents-wrap {
    word-break: keep-all;  /* 한글/영문 ‘단어’ 사이에서만 줄바꿈 */
    overflow-wrap: break-word; /* 긴 문자열도 줄바꿈 */
    word-wrap: break-word; /* 구형브라우저 대응 */
    line-break: auto
}
section.contents-wrap .contents {
    /* margin-top: 40px; */
}
section.contents-wrap article {
    padding-top: 60px;
    border-top: solid 1px var(--base-line2-color);
    color: #555556;
}
section.contents-wrap article:first-child {
    padding-top: 0;
    border-top: 0;
}
section.contents-wrap article h4 {
    margin-bottom: 40px;
    padding: 0 26px;
    font-size: 24px;
    line-height: 32px;
    position: relative;
}
section.contents-wrap article h4::before {
    content: " ";
    width: 16px;
    height: 16px;
    color: var(--bs-primary);
    background: url(../../../img/icon_2/blt-article-title.png) no-repeat center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
section.contents-wrap .contents .text,
section.contents-wrap article .text {
    width: 100%;
    margin-bottom: 0;
    font-family: var(--base-font-family);
    font-size: var(--base-font-size);
    line-height: 30px;
    letter-spacing: var(--base-letter-spacing);

    overflow: hidden;
    white-space: wrap;
}
section.contents-wrap strong {
    font-weight: 600;
    color: var(--bs-dark);
}

.text-box-wrap {
    margin-top: 40px;
}
.text-box {
    min-height: 80px;
    padding: 20px 40px;
    border: solid 1px var(--bs-border-color);
    border-radius: 10px;
    background-color: var(--base-bg1-color);
    word-break: keep-all;
    overflow-wrap: break-word; /* 긴 문자열도 줄바꿈 */
    word-wrap: break-word; /* 구형브라우저 대응 */
    line-break: auto;

    display: flex;
    align-items: center;
}

.text-box .has-button-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prev-next-box {
    margin-top: 80px;
}
.prev-next-box.bordered {
    padding-top: 80px;
    border-top: solid 1px var(--base-line1-color);
}
.prev-next-box .button-block-wrap {
    margin-top: 40px;
}
.prev-next-box .button-block-wrap .btn {
    min-width: 180px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.contents-viewer ul {
    list-style: disc;
}

.contents-viewer ol {
    list-style: decimal;
}

.contents-viewer + .contents-viewer {
    margin-top: 60px;
}
section.contents-wrap article h4 ~ .table-wrap {
    margin-top: 40px;
    margin-bottom: 60px;
}

.contents-viewer .table-foot .button-block-wrap {
    padding-top: 22px;
    border-top: 0;
}
.contents-viewer div.textarea {
    padding: 0 0 60px 0;
}
.contents-viewer .attach-files {
    margin-top: 60px;
}
.contents-viewer .attach-files + .table-foot {
    padding: 0;
}
.contents-viewer .attach-files + .table-foot .download-period {
    margin-left: 50px;
}

/* 
  주로 화면 상단에 안내 문구 노출 시 사용됨
  구성 : 아이콘 + h5 + 내용
*/
.text-box.type-1 {
    padding: 20px 30px;
}
.text-box.type-1 .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 10%);
}
.text-box.type-1 h5 {
    margin-left: 10px;
    word-break: keep-all;
    overflow-wrap: break-word; /* 긴 문자열도 줄바꿈 */
    word-wrap: break-word; /* 구형브라우저 대응 */
    line-break: auto;
}
.text-box.type-1 .text {
    margin-left: 30px;
    line-height: 26px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/*
  자가진단 상단 안내 문구
*/
.text-box.type-2 {
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}
.text-box.type-2 .title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.text-box.type-2 h4 {
    font-weight: 700;
}
.text-box.type-2 .text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 24px;
}

/*
  금연지도 상단 안내 문구
*/
.text-box.type-3 {
    padding: 0;
    border: solid 1px var(--bs-info);
    border-radius: 10px 10px 0 10px;
    background-color: white;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 10%);
    overflow: hidden;
    display: block;
}
.text-box.type-3 .title {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: white;
    background-color: var(--bs-info);
}
.text-box.type-3 .title .icon {
}
.text-box.type-3 .text {
    padding: 20px 0;
    line-height: 24px;
    text-align: center;
}

/*
  회원가입, 로그인 섹션 내에 콘텐츠 박스로 사용됨
*/
.contents-box {
    flex: 1 1 100%;
    min-height: 400px;
    padding: 60px;
    border: solid 1px var(--bs-border-color);
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
}
.contents-box h4 {
    margin-top: 20px;
    line-height: 36px;
}
.contents-box .overview {
    margin-top: 20px;
    text-align: center;
    line-height: 30px;
}
.contents-box .btn-accept {
    width: 240px;
    margin-top: 60px;
    font-weight: 600;
    border-color: var(--bs-dark);
    color: var(--bs-dark);
}
.contents-box.box-shadow {
    border: 0;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 10%);
}

/*
  contents-header, contents-body로 구성된 박스
  금연지도에서 사용
*/
.type-map.contents-box {
    min-height: 0;
    padding: 0;
    display: block;
}
.type-map.contents-box .contents-header {
    min-height: 90px;
    padding: 0;
    border-bottom: solid 1px var(--bs-border-color);
}
.type-map.contents-box .contents-header h4 {
    width: 100%;
    height: 89px;
    margin-top: 0;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 2px;
}
.type-map.contents-box .contents-body {
    padding: 30px;
}
/* 목록 조회 화면 */
.type-map.contents-box.comments-wrap {
}
/* 글쓰기 */

/*
  게시판 상단 검색 박스
*/
.search-box {
    margin-top: 40px;
    padding: 30px 125px;
    border: solid 1px var(--bs-dark);
    border-radius: 10px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 10%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.search-box.align-top {
    align-items: flex-start;
}
.search-box select {
    /* min-width: 200px; */
    flex: 1 0 200px;
}
.search-box button {
    font-size: 16px;
    line-height: 24px;
    font-weight: var(--weight-semi-bold);
}
.search-box button.btn-search {
    margin-left: 10px !important;
}
.search-box .form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.search-box .filter-title {
    width: 180px;
    height: 30px;
    line-height: 30px;
    text-align: right;
    font-weight: 500;
    position: absolute;
    left: -210px;
}

/*
  게시글 상단 제목 박스
*/
.content-title-box {
    min-height: 136px;
    margin-top: 60px;
    padding: 30px 30px 28px 30px;
    border: solid 1px var(--bs-dark);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 10%);
}
.content-title-box .title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.content-title-box .title-wrap h2,
.content-title-box .title-wrap h3 {
    font-size: 30px;
    line-height: 40px;
}
.content-title-box .title-wrap .badge.text {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}
.content-title-box .summary-wrap {
    margin-top: 10px;
    font-size: 16px;
    display: flex;
    align-items: flex-end;
}
.content-title-box .summary-wrap .summary-row {
    margin-top: 10px;
    display: flex;
    align-items: center;
}
.content-title-box .summary-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.content-title-box .summary-item .label {
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}
.content-title-box .summary-item .value a.link {
    padding-top: 1px;
    font-weight: 400;
    line-height: 1.2;
    display: inline-block;
}
.content-title-box .summary-item .value {
    min-height: 24px;
    display: flex;
    align-items: center;
}
.content-title-box .summary-item .value .dropdown-item {
    font-size: 16px;
}
.content-title-box .summary-item.attach-files .value {
    flex-wrap: wrap;
    gap: 10px 16px;
}
.content-title-box .summary-item .value img.icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}
.content-title-box .summary-item img {
    vertical-align: text-bottom;
}

/*
  페이지 하단 등 버튼 박스
*/
.button-block-wrap {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.button-block-wrap .btn {
    min-width: 240px;
    font-weight: 600;
}
.button-block-wrap .btn.btn-sm {
    min-width: 0;
    font-weight: 600;
}
.button-block-wrap.button-120 > .btn {
    width: 120px;
}

article.contents .button-block-wrap {
    padding-top: 30px;
    border-top: solid 1px var(--bs-border-color);
}

/* 조회(상세)성 화면 */
.contents-viewer .button-block-wrap {
    margin-top: 0;
    padding-top: 30px;
    border-top: solid 1px var(--bs-border-color);
}
.contents-viewer .button-block-wrap.button-180 .btn {
    min-width: 180px;
    font-weight: 500;
}

/* 조회(상세)성 화면 하단 댓글 영역 */
.comments-wrap h5 {
    height: 50px;
    border-bottom: solid 1px var(--bs-border-color);
}
.comments-wrap .comment-form {
    margin-top: 30px;
    position: relative;
    display: flex;
    gap: 10px;
}
.comments-wrap .comment-form .textarea {
    min-height: 120px !important;
}
.comments-wrap .comment-form .btn-addnew,
.comments-wrap .comment-form .btn-update {
    width: 240px;
    height: 120px;
    flex: 1 0 240px;
}
.comments-wrap .comment-form .textLen {
    font-size: 16px;
    opacity: 0.5;
    position: absolute;
    bottom: 20px;
    right: 270px;
}
.comments-wrap .no-data {
    height: 140px;
    margin-top: 40px;
    line-height: 30px;
    text-align: center;
    color: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.comments-wrap .comment-list {
    margin-top: 40px;
    margin-bottom: 0;
    padding-left: 0;
}
.comments-wrap .comment-item {
    width: 100%;
    margin-top: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
    background-color: var(--base-bg1-color);
}
.comments-wrap .comment-item .BTN_CLOSE {
    font-size: 18px !important;
    line-height: 18px;
    padding-bottom: 2px !important;
    position: absolute;
    top: 20px;
    right: -4px;
}
.comments-wrap .comment-header {
    padding: 20px 30px 0 30px;
    display: flex;
    align-items: center;
}
.comments-wrap .writer {
    line-height: 24px;
}
.comments-wrap .dropdown-menu {
    line-height: 24px;
}
.comments-wrap .nickname {
    color: var(--bs-dark);
}
.comments-wrap .my-comment {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--bs-info);
}
.comments-wrap .datetime {
    margin-left: 10px;
    font-size: 16px;
}
.comments-wrap .btn-ts {
    height: 24px;
    margin-left: 10px;
    padding: 0 11px;
    font-size: 14px;
    font-weight: 500;
}
.comments-wrap .btn-ts[class*="btn-outline-"] {
    background-color: white;
}
.comments-wrap .btn-ts[class*="btn-outline-"]:hover {
    color: var(--bs-dark);
}
.comments-wrap .btn-ts.btn-modify {
    border-color: var(--bs-secondary);
    margin-left: auto;
}
.comments-wrap .comment-body {
    padding: 20px 30px;
}
.comments-wrap .comment-body pre {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
    word-break: break-word;
    overflow-wrap: break-word; /* 긴 문자열도 줄바꿈 */
    word-wrap: break-word; /* 구형브라우저 대응 */
    line-break: auto;
}
.comments-wrap .comment-update .comment-form {
    margin-top: 0;
}
.comments-wrap .comment-update .btn-update {
    width: 210px;
    flex: 1 0 210px;
}
/*---- 대댓글 리스트 */
.comments-wrap .comment-item > .comment-list.children {
    margin-top: 0;
    padding: 0 30px;
}
.comments-wrap .comment-list.children .comment-item {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-top: solid 1px var(--bs-border-color);
    border-radius: 0;
    position: relative;
}
.comments-wrap .comment-list.children .comment-item::before {
    content: "\E819"; /* khi-arrow-turn-down-right */
    font-family: "khepi-icons";
    font-size: 20px;
    color: var(--bs-dark);
    letter-spacing: 0;
    /* width: 20px; */
    position: absolute;
    top: 15px;
}
.comments-wrap .comment-list.children .comment-header,
.comments-wrap .comment-list.children .comment-body {
    padding-right: 0;
}
.comments-wrap .comment-list.children .comment-form {
    margin-top: 0;
}
.comments-wrap .comment-list.children .comment-form .btn-addnew {
    width: 210px;
    flex: 1 0 210px;
}
.comments-wrap .comment-list.children .comment-form .textLen {
    right: 240px;
}

/*
  공공누리
*/
.KOGL-box {
    margin-top: 40px;
    padding: 40px;
    border-radius: 10px;
    background-color: var(--base-bg2-color);
    display: flex;
    align-items: center;
    gap: 20px;
}
.KOGL-box img.logo {
    height: 60px;
}
.KOGL-box .title {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}
.KOGL-box .text {
    margin-top: 4px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

/*
  마이페이지, 금연시계 금연 대시보드
*/
.my-qs-dashboard {
    margin-top: 80px;
    /* padding-bottom: 0; */
}
.my-qs-dashboard .contents-box {
    height: 360px;
    min-height: 0;
    /* margin-bottom: 40px; */
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
}
.my-qs-dashboard .contents-box h4 {
    font-weight: 400;
}
.my-qs-dashboard .contents-box .divider {
    height: 100%;
    border-left: solid 1px var(--bs-border-color);
}
.my-qs-dashboard .contents-box .info-box {
    padding: 15px 84px 0 85px;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word; /* 긴 문자열도 줄바꿈 */
    word-wrap: break-word; /* 구형브라우저 대응 */
    line-break: auto;
}
.my-qs-dashboard .contents-box .info-box .value {
    color: var(--bs-primary);
    font-weight: 600;
}
.my-qs-dashboard .contents-box .info-box .sub-text {
    margin-top: 10px;
}

.contents-box.type-info {
    min-height: 0;
    padding: 50px 60px 70px 60px;
    border: 0;
    color: var(--bs-dark);
    background-color: #edf0ff;
    display: block;
    text-align: left;
}

/* 글등록 editor css */
.ck-source-editing-area,
.ck-editor__editable {
    min-height: 500px;
}
.ck-source-editing-area > textarea {
    overflow: auto !important;
}

/* 내용 하단 버튼(신고하기 ~ 목록) 영역 */
.contents-viewer .textarea + .button-block-wrap {
    gap: 10px;
}


/* 마이 페이지 수료증 POPUP */
/* 온라인금연프로그램 6단계 팝업창 */
.popup {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
.popup-inner {
    position: absolute;
    width: 80%;
    max-width: 500px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    box-sizing: border-box;
    background: #fff;
}
.popup-inner .popup-title > h4 {
    margin-bottom: 18px;
    padding-left: 28px;
    background: url(../../../img/program/sub/h4_dot.gif) 0 1px no-repeat;
    font-family: "NSB";
    font-size: 15px;
}
.popup-inner p {
    margin-bottom: 4px;
    font-size: 15px;
    color: #555;
    line-height: 20px;
}
.popup-inner .sign1 {
    font-size: 16px;
    line-height: 16px;
}
.popup .popup-btn {
    margin-top: 20px;
    text-align: center;
}
.popup .popup-btn a {
    display: inline-block;
    margin: 0 10px;
    font-size: 14px;
    padding: 9px 15px 8px;
    border: 1px solid #666;
    color: #666;
    border-radius: 4px;
    box-sizing: border-box;
}
.popup .popup-btn a.btn1:hover {
    background-color: #f66a0d;
    border: 1px solid #f66a0d;
    color: #fff;
}
.popup .popup-btn a.popup-close:hover {
    background-color: #646464;
    border: 1px solid #646464;
    color: #fff;
}
#popLayer .quest {
    width: 25px;
    height: 25px;
    background-image: url(../../../img/program/sub/quest_ico02.png);
    margin: 0 6px 0 0;
    vertical-align: middle;
}
#popLayer .popup-inner {
    min-height: 200px;
    height: auto;
    padding: 30px 35px;
    border-radius: 10px;
}
#popLayer .popTitle {
    margin-bottom: 25px;
}
#f66a0d #popLayer #popTitle {
    font-style: normal;
    font-size: 20px;
    line-height: normal;
}
#popLayer #popTitle.v1 {
    color: #70625c;
    vertical-align: middle;
}
#popLayer #popTitle.v2 {
    color: #f66a0d;
}
#popLayer #popContents {
    text-align: left;
    font-size: 14px;
    line-height: 18px;
    color: #333;
}
#popLayer .close {
    position: absolute;
    right: 34px;
    top: 24px;
    font-size: 22px;
    color: #7e7e7e;
}
.business-guides ul{
    list-style: unset !important;
}
.business-guides *{
    margin-bottom: 0 !important;
}