@charset "utf-8";

/* 초기화 */
body {
    margin: 0;
    padding: 0;
    font-size: 0.75em;
    font-family: "Pretendard", dotum, sans-serif;
    background: #fff;
}
html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
    margin: 0;
    padding: 0;
    border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1em;
    font-family: "Pretendard", dotum, sans-serif;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ul,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
    list-style: none;
}
legend {
    position: absolute;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    text-indent: -9999em;
    overflow: hidden;
}
label,
input,
button,
select,
img {
    vertical-align: middle;
    font-size: 1.3rem;
}
input,
button,
figure {
    margin: 0;
    padding: 0;
    font-family: "Pretendard", dotum, sans-serif;
    font-size: 1em;
}
input[type="submit"] {
    cursor: pointer;
}
button {
    cursor: pointer;
}

textarea,
select {
    font-family: "Pretendard", dotum, sans-serif;
    font-size: 1em;
}
select {
    margin: 0;
}
p {
    margin: 0;
    padding: 0;
    word-break: break-all;
}
hr {
    display: none;
}
pre {
    overflow-x: scroll;
    font-size: 1.1em;
}
a {
    color: #000;
    text-decoration: none;
}

button:hover {
    transition: 0.3s;
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
input[type="text"],
input[type="password"],
textarea {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    outline: none;
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    -webkit-box-shadow: 0 0 5px #9ed4ff;
    -moz-box-shadow: 0 0 5px #9ed4ff;
    box-shadow: 0 0 5px #9ed4ff;
    border: 1px solid #558ab7;
}
.placeholdersjs {
    color: #aaa !important;
}
:root {
    /* [font-family 설정] -----------------------------*/
    --k-ff1: "Pretendard";
    --k-ff2: "SCDream"; /* 영문 종류 사용: font - 폰트명 */
    --e-ff1: "Montserrat"; /*------------------------------------------------*/
}
/*=============================================
=                   input                   =
=============================================*/
/* readonly */
input[readonly="readonly"],
textarea[readonly="readonly"] {
    color: #a8adbb;
    cursor: not-allowed;
    background-color: #f7f8fa;
}
/* 타겟 이동 : 스크롤 부드럽게 */
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--e-ff1), var(--k-ff1), var(--k-ff2), san-serif;
}
#wrap {
    min-width: 140rem;
    width: 100%;
    height: 100%;
}
.container {
    min-width: 32rem;
    max-width: 100%;
    margin: 0 auto;
}
.container.sub {
    max-width: 140rem;
}
/* input [type='text'] */
input,
select,
textarea {
    height: 4rem;
    padding: 0.4rem 1rem;
    border: 1px solid #bcbecf;
    border-radius: 5px;
    font-size: 1.6rem;
    color: #424756;
}
select {
    min-width: 13rem;
    border: 1px solid #bababa;
    background: url("../img/select_icon.svg") no-repeat right 1.6rem center;
    background-color: #fff;
}
table input {
    height: 4rem;
    font-size: 1.5rem;
    font-weight: 400;
}
table input.w--100 {
    width: 100%;
}
table input.w--50 {
    width: 50%;
}
table input.w--30 {
    width: 30%;
}
table input.w--10 {
    width: 10%;
}
input.bg__input {
    width: -webkit-fill-available;
    background-color: #f3f3fa;
    border: 1px solid #9da9ba;
}
/* input[type='date'] */
input[type="date"] {
    position: relative;
    width: 20rem;
    background: #fff url(../img/sub/icon_date.svg) no-repeat right 2rem
        center/15px auto;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    color: transparent;
    cursor: pointer;
}
input[type="date"]:before {
    width: 100%;
    height: 100%;
}
input[type="date"]:valid:before {
    display: none;
}
.date__choice {
    display: flex;
    align-items: center;
    gap: 1rem;
}
/* readonly */
input[readonly="readonly"],
textarea[readonly="readonly"] {
    color: #a8adbb;
    cursor: not-allowed;
    background-color: #f7f8fa;
}
/* txt_only */
.txt_only {
    background-color: #ffffff;
    border: 0 !important;
    padding: 0 !important;
    outline: none;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    pointer-events: none;
}
/*=====       End of input       ======*/
/*=============================================
=       checkbox, radio 공통       =
=============================================*/
fieldset,
hr {
    display: block;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0 none;
}
.input--checkbox__wrap,
.input--radio__wrap {
    display: flex;
    flex-wrap: wrap;
}
.input--checkbox__wrap {
    gap: 1rem;
}
.input--radio__wrap {
    gap: 2rem;
}
.input--radio__wrap label {
    display: flex;
    align-items: center;
}
.input--radio__wrap label span {
    font-size: 1.5rem;
}
.input--checkbox__wrap label:hover,
.input--radio__wrap label:hover {
    cursor: pointer;
}
/*===== End of checkbox, radio 공통 ======*/
/*=============================================
=        선택 : checkbox         =
=============================================*/
.chkbox-type-01 {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 1.7rem;
    color: #424756;
}
.chkbox-type-01 input[type="checkbox"] {
    visibility: visible;
    position: relative;
    width: 18px;
    height: 18px;
    margin-right: 9px;
    padding: 0;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    cursor: pointer;
    opacity: 1;
    background-color: #fff;
    -webkit-appearance: none;
    box-sizing: border-box;
    vertical-align: middle;
}
.chkbox-type-01.hidden input[type="checkbox"] {
    visibility: hidden;
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.chkbox-type-01 input[type="checkbox"]::before {
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    line-height: 1;
    content: "✓";
    transform: scale(0) translate(-50%, -50%);
}
.chkbox-type-01 input[type="checkbox"]:checked {
    color: white;
    background-color: #4379ff !important;
    border-color: #4379ff !important;
}
.chkbox-type-01 input[type="checkbox"]:checked::before {
    border-radius: 4px;
    transform: scale(1) translate(-50%, -50%);
}
/*=====     End of 선택 : checkbox     ======*/
/*=============================================
=          선택 : radio          =
=============================================*/
.input--radio__wrap .item {
    display: flex;
    align-items: center;
    line-height: 1;
}
[type="radio"] {
    line-height: 1;
    vertical-align: middle;
    padding: 5px;
}
[type="radio"] {
    width: 18px;
    height: 18px;
    border: 6px solid #d2d2d2;
    border-radius: 50%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
[type="radio"] + span,
[type="radio"] + label {
    margin-left: 7px;
    font-size: 13px;
}
[type="radio"]:checked {
    border: 6px solid #4379ff;
}
[type="radio"]:hover {
    cursor: pointer;
}
input:disabled {
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.5;
}
/*=====       End of 선택 : radio       ======*/
/* content common */
.flex {
    display: flex;
}
.flex-column {
    display: flex;
    flex-direction: column;
}
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.gap1 {
    gap: 1rem;
}
.gap2 {
    gap: 2rem;
}
.gap3 {
    gap: 3rem;
}
.gap4 {
    gap: 4rem;
}
.gap5 {
    gap: 5rem;
}
.grid {
    display: grid;
    gap: 2rem;
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}
.grid-6 {
    grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1024px) {
    .grid-2 {
        grid-template-columns: repeat(1, 1fr);
    }
}
.font_b {
    font-weight: 600 !important;
}
.main_tit_wrap {
    gap: 4rem;
}
.main_tit_wrap .p_tit__area h2 {
    margin-top: 0.85rem;
    font-size: 22px;
    font-weight: 600;
    color: #327454;
}
.main_tit_wrap .b_tit__area .tit {
    display: flex;
    flex-direction: column;
    font-size: 44px;
    font-weight: 300;
    color: #1c1d1d;
}
.main_tit_wrap .b_tit__area .txt {
    margin-top: 3rem;
    font-size: 18px;
    font-weight: 300;
    color: #6c6c6c;
}
/* section01 */
.arrow_btn {
    margin-top: 20px;
}
.arrow {
    width: 56px;
    height: 56px;
    background: #f3f3f3;
    border: none;
    padding: 10px 14px;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 50px;
}
.arrow:hover {
    background-color: #000000;
    transition: 0.2s;
}
.cont_left {
    display: flex;
    width: 16%;
    margin-right: 4%;
    flex-direction: column;
    justify-content: space-between;
}
.slider-container {
    width: 100%;
    position: absolute;
    top: 0;
    right: -20%;
    overflow: hidden;
}
/* 스크롤바 스타일 */
.slider-container::-webkit-scrollbar {
    height: 6px;
}
.slider-container::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 3px;
}
.slider-container::-webkit-scrollbar-track {
    background-color: #eee;
}
/* ==================================
animation area
================================== */
/* Scroll Down(Animation) - arrow */
@keyframes scrollIcon {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(60%);
    }
    100% {
        transform: translateY(0);
    }
}
/* 흐르는 배경 */
@keyframes flowAni {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* 초기 상태 */
.back-to-position {
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    will-change: transform, opacity;
}
/* 방향: 모두 translate(x, y)로 통일 */
.back-to-position.to-right {
    transform: translate(-150px, 0);
}
.back-to-position.to-left {
    transform: translate(150px, 0);
}
.back-to-position.to-top {
    transform: translate(0, 150px);
}
.back-to-position.to-btm {
    transform: translate(0, -150px);
}
/* show가 붙으면 원위치 + 보이기 */
.show .back-to-position {
    opacity: 1;
    transform: translate(0, 0);
}
/* 지연 */
.show .back-to-position.delay-0 {
    transition-delay: 0s;
}
.show .back-to-position.delay-1 {
    transition-delay: 0.5s;
}
.show .back-to-position.delay-2 {
    transition-delay: 1s;
}
.show .back-to-position.delay-3 {
    transition-delay: 1.3s;
}
.show .back-to-position.delay-4 {
    transition-delay: 1.6s;
}
.show .back-to-position.delay-5 {
    transition-delay: 1.6s;
}
.show .back-to-position.delay-6 {
    transition-delay: 1.8s;
}
/* ==================================
animation area : end
================================== */
.top__btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 3;
}
.top__btn a {
    width: 64px;
    height: 64px;
    background-color: #638ef9;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top__btn a:hover {
    background-color: #06367b;
    transition: 0.3s;
}
/* ==================================
footer
================================== */
.footer {
    background-color: #1e2534;
}
.f_top {
    width: 100%;
    padding: 2rem 0;
    border-bottom: 1px solid #3d4860;
}
.f_top ul {
    width: 80%;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
}
.f_top li a {
    display: block;
    font-size: 1.5rem;
    color: #ffffff;
    position: relative;
}
.f_top li:last-child a::after {
    display: none;
}
.f_top li a::after {
    content: "";
    position: absolute;
    right: -3rem;
    top: 1rem;
    width: 2px;
    height: 2px;
    background-color: #ffffff;
}
.footer .inner {
    width: 80%;
    margin: 0 auto;
    padding: 7rem 0;
    color: #b5bbc8;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}
.footer .inner .f_logo {
    width: 216px;
}
.footer .inner .f_logo img {
    width: 100%;
}
.footer .inner .f_content {
    width: 80%;
    display: flex;
    justify-content: space-between;
}
.footer .inner .f_content p {
    font-size: 1.6rem;
    line-height: 180%;
    display: flex;
}
.footer .inner .f_content p span {
    width: 30px;
    display: flex;
    flex-direction: row;
    position: relative;
}
.footer .inner .f_content p span:after {
    content: "";
    background-color: #b5bbc8;
    width: 1px;
    height: 1.6rem;
    position: absolute;
    left: 50%;
    top: 8px;
}
.footer .inner .f_content .copy {
    font-size: 1.6rem;
    margin-top: 5rem;
    color: #b5bbc8;
}
.footer .inner .f_content a {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
}
@media (max-width: 1400px) {
    .footer .inner {
        flex-direction: column;
    }
}
@media (max-width: 1200px) {
}
@media (max-width: 1024px) {
    .footer .inner .f_content {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 780px) {
    .footer .inner .f_logo {
        width: 40%;
        margin: 0 auto;
    }
    .footer .inner .f_content p {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer .inner .f_content;
}
/* ==================================
footer : end
================================== */
/*
 * 스크롤 플러그인 커스텀
 */
/* body { -ms-overflow-style: none; } */
/* ::-webkit-scrollbar { display: none; } */
/*특정 부분 스크롤바 없애기*/
/* .scroll { -ms-overflow-style: none; } */
/* .scroll::-webkit-scrollbar { display: none; } */
.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent !important;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 0.6rem;
    background-color: #95a1b8 !important;
}
.mCSB_scrollTools .mCSB_draggerContainer {
    width: 0.6rem;
    border-radius: 0.3rem;
    background-color: #d7dbe4 !important;
}
.health-map .content__area .loca-result__list ul {
    border-radius: 0;
}
.mCSB_container {
    overflow: visible !important;
}
.mCSB_scrollTools .mCSB_draggerRail {
    display: none;
}
.info--i {
    display: inline-block;
    background: url("../images/main/box-info_i.png") top 2px center/contain
        no-repeat;
}
/* 가로 스크롤 */
.scroll-x .mCSB_draggerContainer {
    width: auto !important;
}
.scroll-x
    .mCSB_scrollTools.mCSB_scrollTools_horizontal
    .mCSB_dragger
    .mCSB_dragger_bar {
    height: 100%;
    margin: auto;
}
.scroll-x .mCSB_scrollTools .mCSB_draggerContainer {
    height: 0.6rem !important;
}
/* X(닫기 버튼) - icon */
.close--i {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.close--i:before,
.close--i:after {
    display: inline-block;
    position: absolute;
    width: 2px;
    height: 12px;
    content: "";
    background-color: #fff;
}
.close--i:before {
    transform: rotate(45deg);
}
.close--i:after {
    transform: rotate(-45deg);
}
/*
 * 말줄임(... 처리)
 */
.txt-overflow {
    display: inline-block;
    overflow: hidden;
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.txt-clamp {
    display: -webkit-box;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
/*=====     End of 통합검색 - modal     ======*/
/*=============================================
=                    HEADER                   =
=============================================*/

/* 메인 메뉴 - 기본상태 */
header {
    position: fixed;
    z-index: 60;
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0);
    transition: 0.5s;
}
.header__gnb__right button svg .cls-1,
.header__gnb__right button svg .cls-2 {
    fill: var(--fc-bold) !important;
}
.header__gnb__right button svg .cls-1 {
    isolation: isolate;
}
.header__gnb {
    width: 100%;
    font-family: var(--k-ff1);
}
.header__gnb__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8rem;
    height: 9rem;
}
.header__gnb__logo {
    position: relative;
    z-index: 100;
}
.header__gnb__logo img {
    height: 3.7rem;
}
.header__gnb__pc {
    position: fixed;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 9rem;
    text-align: center;
    box-sizing: border-box;
}
.header__gnb__wrap.scrolled {
    background-color: #ffffff;
    transition: background-color 0.3s ease;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}
.header__gnb__wrap.scrolled .header__gnb__pc .depth1 a {
    color: #212121;
}
.header__gnb__wrap.scrolled .btn--login_pc #btnLogin {
    color: #333333;
}
.header__gnb__wrap .item {
    display: flex;
    position: absolute;
    left: 0;
    width: 100%;
    border-top: 1px solid #e5e5e5;
    background-color: #fff;
}
.header__gnb__pc .item .inner {
    display: flex;
    margin: 0 8rem;
}
.header__gnb__pc .header__gnb__left {
    position: relative;
    z-index: 1;
    min-width: 31.5rem;
    padding: 8.8rem 0 8rem;
    border-right: 1px solid #e5e5e5;
    text-align: left;
}
.header__gnb__pc .header__gnb__left:after {
    position: absolute;
    bottom: 0;
    z-index: -1;
    width: 30rem;
    height: 18.8rem;
    background: url("../images/common/gnb_bg.jpg") bottom right/cover no-repeat;
    content: "";
}
.header__gnb__pc .header__gnb__left span {
    display: inline-block;
    margin-bottom: 2.5rem;
    font-family: var(--e-ff1);
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.025em;
    color: #2a3242;
}
.header__gnb__pc .header__gnb__left p {
    font-size: 1.6rem;
    color: #757a87;
}
.header__gnb__pc .header__gnb__menu {
    display: flex;
    justify-content: flex-end;
    margin-top: -1px;
    transition: 0.3s;
    padding-right: 30rem;
}
.header__gnb__pc .header__gnb__menu > li {
    width: 12rem;
    margin: 0;
}
.header__gnb__pc .header__gnb__menu > li:hover .item {
    display: block;
}
.header__gnb__pc .header__gnb__menu > li .item {
    display: none;
    box-shadow: 0.5rem 0.5rem 0.8rem rgba(100, 110, 144, 0.1);
}
.header__gnb__pc .depth1 a {
    display: inline-block;
    position: relative;
    height: 9rem;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 9rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.header__gnb__wrap.scrolled .header__gnb__pc .depth1 a:hover {
    color: #1a66cc;
}
.header__gnb__pc .depth1 a.active:after {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    content: "";
}
.header__gnb__pc .depth2 {
    display: flex;
    flex-wrap: wrap;
    margin-left: 6rem;
    padding: 4rem 0 5rem;
    text-align: left;
    gap: 4rem;
}
.header__gnb__pc .depth2 h3 a {
    display: inline-block;
    display: flex;
    align-items: center;
    position: relative;
    width: 24rem;
    height: 5rem;
    padding-left: 2.5rem;
    border: 1px solid var(--bd-basic2);
    border-radius: 0.8rem;
    font-size: 1.7rem;
    font-weight: 500;
    color: #3e4556;
    box-sizing: border-box;
    background-color: #f7f8fa;
}
.header__gnb__pc .depth2 h3 a:after {
    position: absolute;
    right: 0;
    width: 12px;
    height: 7px;
    margin-right: 2.5rem;
    background: url("../images/common/arrow3_i.png") center/contain no-repeat;
    content: "";
}
.header__gnb__pc .depth3 {
    display: flex;
    flex-direction: column;
    margin-top: 2.5rem;
    gap: 2rem;
}
.header__gnb__pc .depth3 > li {
    position: relative;
    padding-left: 1.5rem;
}
.header__gnb__pc .depth3 > li:after {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    content: "";
    background-color: var(--primary);
    transform: translateY(-50%);
}
.header__gnb__pc .depth3 h4 a {
    font-size: 1.6rem;
    font-weight: 500;
    color: #757a87;
}
.header__gnb__pc .depth3 h4 a:hover {
    font-weight: 600;
    color: var(--main);
}
.header__gnb__right {
    display: flex;
    align-items: center;
    z-index: 20;
}
.header__gnb__right button svg .cls-1 {
    isolation: isolate;
}
.header__gnb__right button svg .cls-2 {
    fill: #fff;
    stroke-width: 0px;
}
#btnSearchOpen {
    width: 2.6rem;
    height: 2.6rem;
    margin-right: 4.5rem;
}
#btnSiteMap,
#btnMobileMenu {
    width: 2.5rem;
    height: 2rem;
}
#mobileMenu {
    display: none;
}
.btn--login_pc {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 1.4rem;
    font-weight: 600;
}
.btn--login_pc #btnLogin {
    color: #ffffff;
}
.lang-select {
    position: relative;
    width: 80px;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    user-select: none;
}
.lang-select .selected {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background: #fff;
}
.lang-select .options {
    display: none;
    position: absolute;
    top: 120%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 20;
}
.lang-select .options li {
    padding: 6px 10px;
}
.lang-select .options li:hover {
    background: #f0f0f0;
}
.lang-select.open .options {
    display: block;
}
.header__gnb__mo {
    display: none;
}

/* width(노트북 1200px 기준) => xl */
@media (max-width: 1200px) {
    .header__gnb__wrap .header__gnb__menu > li {
        width: 15rem;
    }
}
@media (max-width: 1024px) {
    header {
        min-width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .header__gnb {
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
    }
    .header__gnb__wrap {
        padding: 0 3rem;
    }
    .header__gnb__pc {
        display: none;
    }
    #mobileMenu {
        position: fixed !important;
        top: 0;
        z-index: 9990;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }
    #mobileMenu .modal-btn--close:hover {
        background-color: inherit;
    }
    #mobileMenu.active {
        display: block !important;
    }
    #mobileMenu.active .header__mo__menu {
        display: flex;
        flex-direction: column;
        top: 0;
        z-index: 9999;
        width: 100%;
        height: 100%;
        background: #fff;
        overflow-y: auto;
        gap: 1rem;
    }
    #mobileMenu.active .header__mo__menu .item:not(:last-child),
    #mobileMenu.active
        .header__mo__menu
        .header__mo__menu
        .item:not(:last-child) {
        padding-bottom: 0;
    }
    #mobileMenu.active .header__mo__top {
        border-bottom: 1px solid #c8c8c8;
    }
    #mobileMenu.active .header__mo__top .inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 9rem;
        padding: 0 3rem;
    }
    #mobileMenu.active .header__mo__top .modal-btn--close {
        position: static !important;
        width: 20px;
        height: 20px;
    }
    #mobileMenu.active .header__mo__top .modal-btn--close .close--i:before,
    #mobileMenu.active .header__mo__top .modal-btn--close .close--i:after {
        height: 20px;
        background-color: #424756;
    }
    #mobileMenu.active .header__mo__btm {
        padding: 0 3rem 3rem;
    }
    #mobileMenu.active .header__mo__btm .header__mo__btn {
        display: flex;
        padding: 2.5rem 0;
        gap: 2rem;
    }
    #mobileMenu.active .header__mo__btm .header__mo__btn li {
        flex-grow: 1;
    }
    #mobileMenu.active .header__mo__btm .header__mo__btn li.btn--login a {
        background-color: #3b5bc6;
    }
    #mobileMenu.active .header__mo__btm .header__mo__btn li a {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 2.4rem 0;
        border-radius: 0.7rem;
        font-size: 2rem;
        font-weight: 600;
        line-height: 1;
        text-align: center;
        color: #fff;
    }
    #mobileMenu.active .header__mo__btm .header__mo__btn li a i {
        position: relative;
        width: 1.8rem;
        height: 1.9rem;
        margin-right: 1rem;
    }
    #mobileMenu.active .header__mo__btm .header__mo__btn li a i:before {
        display: inline-block;
        position: absolute;
        left: 0;
        width: 1.8rem;
        height: 1.9rem;
        content: "";
    }
    #siteMap .depth1 {
        flex-wrap: wrap;
        width: auto;
        gap: 15rem;
    }
    #siteMap .depth2 > li {
        padding-bottom: 2.5rem;
    }
    #btnSiteModal {
        display: block;
        position: relative;
        padding-right: 2.2rem;
        color: #fff;
    }
    #btnSiteModal:after {
        display: inline-block;
        position: absolute;
        top: 50%;
        right: 0;
        width: 0;
        height: 0;
        border-top: 5px solid #fff;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
        content: "";
        transform: translateY(-2px);
    }
    #btnSiteMap {
        display: none;
    }
    .login--before .inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border: 1px solid var(--bd-basic2);
        text-align: center;
        gap: 3rem;
    }
    .login--before p,
    .login--before .btn__list {
        width: 80%;
    }
    .login--before .btn__list li a {
        width: auto !important;
        padding: 0 1rem;
    }
}
.accordion,
.header__mo__menu {
    font-family: var(--k-ff1);
    color: #424756;
}
.accordion .item .depth1,
.accordion .item .inner-accordion-header > a,
.header__mo__menu .item .depth1,
.header__mo__menu .item .inner-accordion-header > a {
    padding-left: 3.5rem;
}
.accordion .item.active .depth1,
.header__mo__menu .item.active .depth1 {
    border: 1px solid var(--primary);
    border-radius: 0.7rem 0.7rem 0 0 !important;
    color: #fff;
    background-color: var(--primary);
}
.accordion .item.active .arrow--i,
.header__mo__menu .item.active .arrow--i {
    transform: rotate(315deg);
}
.accordion .item.active .depth2 .inner-accordion.active .plus--i:before,
.header__mo__menu .item.active .depth2 .inner-accordion.active .plus--i:before {
    transform: rotate(0deg);
}
.accordion .item.active .depth2 .inner-accordion-header,
.header__mo__menu .item.active .depth2 .inner-accordion-header {
    position: relative;
}
.accordion .item.active .depth2 .inner-accordion-header a,
.header__mo__menu .item.active .depth2 .inner-accordion-header a {
    display: block;
    width: 100%;
    height: 100%;
}
.accordion .item.active .depth2 .inner-accordion-header .plus--i,
.header__mo__menu .item.active .depth2 .inner-accordion-header .plus--i {
    position: absolute;
    top: 50%;
    right: 4rem;
    width: 13px;
    height: 13px;
    transform: translateY(-50%);
}
.accordion .item.active .depth2 .inner-accordion-header .plus--i:before,
.accordion .item.active .depth2 .inner-accordion-header .plus--i:after,
.header__mo__menu .item.active .depth2 .inner-accordion-header .plus--i:before,
.header__mo__menu .item.active .depth2 .inner-accordion-header .plus--i:after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 13px;
    height: 2px;
    content: "";
    transition: 0.3s;
    background-color: #424756;
}
.accordion .item.active .depth2 .inner-accordion-header .plus--i:before,
.header__mo__menu .item.active .depth2 .inner-accordion-header .plus--i:before {
    transform: rotate(90deg);
}
.accordion .depth1,
.header__mo__menu .depth1 {
    position: relative;
    padding-left: 0 !important;
    border: 1px solid var(--bd-basic2);
    border-radius: 0.7rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 6.5rem;
    box-sizing: border-box;
}
.accordion .depth1:hover,
.header__mo__menu .depth1:hover {
    cursor: pointer;
}
.accordion .depth1 a,
.header__mo__menu .depth1 a {
    display: block;
    padding-left: 3.5rem;
    background-color: #f8f8f8;
    border-radius: 5px;
}
.accordion .depth1 .arrow--i,
.header__mo__menu .depth1 .arrow--i {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 4rem;
    width: 10px;
    height: 10px;
    border-top: 3px solid #969faf;
    border-right: 3px solid #969faf;
    transition: 0.5s;
    transform: translateY(-50%) rotate(135deg);
}
.accordion .depth1.active,
.header__mo__menu .depth1.active {
    border: 1px solid var(--primary);
    border-radius: 0.7rem 0.7rem 0 0;
    color: #fff;
    background-color: var(--primary);
}
.accordion .depth1.active .arrow--i,
.header__mo__menu .depth1.active .arrow--i {
    transform: rotate(315deg);
}
.accordion .depth2,
.header__mo__menu .depth2 {
    font-size: 1.6rem;
    font-weight: 600;
}
.accordion .depth2 > li,
.header__mo__menu .depth2 > li {
    margin-top: -1px;
}
.accordion .depth2 > li h3,
.header__mo__menu .depth2 > li h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--bd-basic2);
    line-height: 5.8rem;
}
.accordion .depth3,
.header__mo__menu .depth3 {
    padding: 2rem 0;
    border: 1px solid var(--bd-basic2);
    border-top: none;
}
.accordion .depth3 a,
.header__mo__menu .depth3 a {
    position: relative;
    margin-left: 3.5rem;
    padding-left: 1.2rem;
    font-size: 1.6rem;
    line-height: 4.5rem;
}
.accordion .depth3 a:before,
.header__mo__menu .depth3 a:before {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    content: "";
    transform: translateY(-50%);
    background-color: #3b5bc6;
}

.pc_no {
    display: none;
}

/* width(모바일 576px 기준) => sm */
@media (max-width: 576px) {
    #mobileMenu.active .header__mo__btm .header__mo__btn {
        gap: 1rem;
    }
}
/* width(모바일 768px 기준) => md */
@media (max-width: 768px) {
    #linkAll.modal.active .site-modal__tit strong {
        margin-top: 1rem;
        font-size: 2.5rem;
    }
    #btnSiteModal {
        font-size: 1.2rem;
    }
    #mobileMenu.active .header__mo__btm .header__mo__btn {
        gap: 1rem;
    }
    .pc_no {
        display: block;
    }
    .btn-wrap.center {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 1rem;
    }
}

/*=============================================
=                   modal                   =
=============================================*/

/* modal */
.modal--active {
    overflow: hidden;
    position: absolute;
    height: 100%;
}

/* background */
.modal {
    display: none;
}
.modal.active {
    display: block;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
}
.modal.active .site-modal__wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
}
.modal.active .site-modal__wrap.pop-sm {
    max-width: 60rem;
}
.modal.active .site-modal__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 32rem;
    width: 140rem;
    height: auto;
}

/* 닫기 - btn */
.modal-btn--close {
    display: inline-block;
    transition: 0.2s ease;
    background-color: transparent;
    border: 0;
}
.modal-wrap {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
}
.modal-wrap.active {
    display: flex;
}
.modal-wrap.active .modal {
    min-width: 350px;
    max-width: 350px;
    width: 100%;
    padding: 2rem;
    border: 1px solid var(--bd-basic2);
    border-radius: 2rem;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    animation: over-ani 0.4s ease-out;
    background-color: #fff;
}
.modal-wrap .modal .modal-cont {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}
.modal-wrap .modal .modal-cont p {
    font-size: 1.6rem;
    text-align: center;
    color: #333;
}
.modal-wrap .modal .modal-btn {
    display: flex;
    justify-content: center;
}
.modal-wrap .modal .modal-btn a {
    height: 50px;
    line-height: 50px;
}
.modal-wrap .modal .modal-btn02 {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/*=============================================
=            사이트맵 - modal            =
=============================================*/
#siteMap {
    font-family: var(--k-ff1);
}
#siteMap .modal-btn--close {
    width: 36px;
    height: 36px;
    background-color: #05367b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}
#siteMap .site-modal__gnb {
    width: 80%;
    overflow: auto;
    margin-top: 7rem;
    line-height: 1;
    color: #000000;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
#siteMap.modal.active .site-modal__inner {
    width: 100%;
    height: 100%;
}
.site-modal__top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8rem;
    height: 9rem;
}
.site-modal__top .modal_logo {
    width: 186px;
}
.site-modal__top .modal_logo img {
    width: 100%;
}

/* 사이트맵 메뉴 */
.modal__gnb_inner {
    display: flex;
    width: 100%;
}
.modal__visual {
    width: 50%;
    height: 315px;
    background-image: url(../img/sub/all_menu_visual.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.depth_area {
    display: flex;
}
.modal_section01.depth_area {
    width: 50%;
}
.modal_section01.depth_area .depth1 {
    width: 50%;
    padding: 0 5rem;
}
.modal_section02.depth_area {
    width: 100%;
}
.modal_section02.depth_area .depth1 {
    width: 25%;
    padding: 0 5rem;
}

.modal_section02.depth_area .depth1:nth-child(1) {
    padding-left: 0;
}
.depth_area .depth1 {
    border-right: 1px solid #cecece;
}
.depth_area .depth1:last-child {
    border: 0;
}
.depth_area .depth1 h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 2rem;
}
.depth_area .depth2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.depth_area .depth2 li {
    line-height: 300%;
}
.depth_area .depth2 li a {
    display: block;
    font-size: 1.8rem;
    color: #6a6f7d;
}
.depth_area .depth2 li a:hover {
    color: #4369cc;
}

/* 사이트맵 스크롤 커스텀 */
#siteMap .mCustomScrollBox {
    height: 100%;
}
#siteMap .mCSB_inside > .mCSB_container ul.scroll__inner {
    display: flex;
    flex-wrap: wrap;
    min-width: 102.4rem;
    margin-left: 10rem;
    gap: 6rem 0;
}
#siteMap .mCSB_inside > .mCSB_container ul.scroll__inner > li {
    width: 25rem;
}
#siteMap .mCSB_inside > .mCSB_container a {
    text-align: left;
}
#siteMap .mCSB_inside > .mCSB_container a:hover {
    text-decoration: underline;
    opacity: 1;
}
#siteMap .mCSB_scrollTools .mCSB_draggerRail {
    display: none;
}
#siteMap .mCSB_scrollTools .mCSB_draggerContainer {
    background-color: rgba(0, 0, 0, 0.3) !important;
}

/* 상단 */
.header {
    position: fixed;
    top: 0;
    z-index: 9;
    width: 100%;
    transition: box-shadow 0.3s ease;
}
.header .depth1 > li > a > span,
.header .lang span {
    transition: color 0.3s ease;
}
.header .inner {
    width: 100%;
}
.header .b_header {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
}
.header .b_header .logo {
    width: 186px;
}
.header .b_header .logo img {
    width: 100%;
}
.header .b_header .nav {
    width: 40%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.header .b_header .nav .depth1 {
    display: flex;
    width: 100%;
    height: 100%;
}
.header .b_header .nav .depth1 > li {
    width: 20%;
    height: 100%;
    font-size: 18px;
    font-weight: 500;
}
.header .b_header .nav .depth1 > li > a {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}
.header .depth2 {
    overflow: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 20px;
    padding: 1rem 2rem;
    margin: 0;
    z-index: 10;
    list-style: none;
}
.depth1 > li {
    position: relative;
}
.header .depth2.show {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    padding: 12px 0;
}
.header .depth2 > li {
    width: auto;
}
.header .depth2 > li > a {
    display: block;
    width: 100%;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    color: #595959;
}
.header .depth2 > li > a:hover {
    color: #327454;
}
.header .depth2 > li > a span {
    display: block;
    width: 100%;
}

.header.dark .nav a span {
    color: #212121;
}
.header.dark .lang span {
    color: #fff;
}
.header .right_wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.header .right_wrap .lang span {
    padding: 0.4rem 0.8rem;
    border: 1px solid #ffffff;
    font-size: 0.75rem;
    color: #ffffff;
}
.header .right_wrap .modal-btn--open {
    background-color: transparent;
    border: 0;
}
.sr-only {
    display: none;
}

/* 전체메뉴 */
.fullscreen_menu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}
.menu_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -82px 0 0 -35px;
}
.close_btn {
    text-align: right;
}
.close_btn a {
    display: inline-block;
    color: #fff;
    margin: 10px;
}

/*
 * 탭메뉴(공통)
 */
.tab_wrap {
    width: 100%;
    padding: 2rem 0;
}
.tab_wrap .content_area {
    display: none;
}
.tab_wrap .content_area.active {
    display: block;
}
.tab_wrap *[data-depth="1"] {
    background: #f4f4f4;
}
.tab {
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
    height: auto;
}
.tab li {
    display: flex;
    flex-grow: 1;
    align-items: center;
    background-color: #fbfbfb;
    border: 1px solid #e9e9e9;
    border-right: 0;
    border-bottom: 2px solid #2260d4;
}
.tab li:last-child {
    border-right: 1px solid #e9e9e9;
}
.tab li.active {
    border: 2px solid #2260d4;
    border-bottom: 2px solid #ffffff !important;
}
.tab li.active,
.tab li.active a,
.tab li.tab_link:hover a {
    color: #2260d4;
    background-color: #fff;
}
.tab a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 5rem;
    font-family: var(--k-ff1);
    font-size: 1.7rem;
    font-weight: 600;
    text-align: center;
    color: #91939b;
}

.tab-menu.type-02 {
    display: flex;
    flex-wrap: wrap;
    margin: 2.5rem 0 5rem;
    gap: 0.8rem;
}
.tab-menu.type-02 li.active a {
    border: 1px solid #f1f1f1;
    font-weight: 700;
    color: #212121;
}
.tab-menu.type-02 a {
    display: inline-block;
    padding: 1.5rem 3rem;
    border: 1px solid #f1f1f1;
    border-radius: 0.7rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: #f1f1f1;
    box-sizing: border-box;
}
.tab-menu.type-02 a:hover,
.tab-menu.type-02 a:active {
    border: 1px solid #f1f1f1;
    font-weight: 700;
    color: #f1f1f1;
}

/*
 * 탭메뉴(공통) : type2
 */
.tab__area.type-02 {
    padding: 0;
}
.tab__area.type-02 .tab_wrap {
    padding: 0;
}
.tab__area.type-02 .tab__menu {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}
.tab__area.type-02 .tab__menu li {
    flex-grow: 1;
    position: relative;
    padding: 2rem 0;
    height: 54px;
    border: 1px solid #c6c6c6;
    border-radius: 5px;
    background-color: #ffffff;
    overflow: hidden;
}
.tab__area.type-02 .tab__menu li.active {
    height: 54px;
    background: #ffffff;
    border: 1px solid #425abe;
    box-shadow: 2px 2px 0px #425abe;
    border-radius: 5px;
}
.tab__area.type-02 .tab__menu li a {
    font-size: 1.6rem;
    font-weight: 600;
}

.scroll-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    border-bottom: 1px solid #f1f1f1;
    background-color: #fff;
}
.scroll-fixed .tab__menu {
    max-width: 110rem;
    margin: 0 auto !important;
}
.scroll-fixed .tab__menu li {
    border-bottom: 0 !important;
}

/*
 * modal
 */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

/* 모달 창 */
.modal-window {
    position: relative;
    width: 600px;
    max-width: 90%;
    margin: 80px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.4s ease-in-out;
    transition: all 0.3s ease;
}
.modal-window:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* 닫기 버튼 */
.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    transition: color 0.2s ease;
}
.close-modal:hover {
    color: #333;
}

/* 텍스트 스타일 */
.modal-window h2#modalName {
    font-size: 2.2rem;
    color: #333;
    border-bottom: 3px solid #007bff;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.modal-window h3 {
    font-size: 1.8rem;
    color: #555;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #007bff;
    padding-left: 10px;
}
.modal-window p {
    font-size: 1.8rem;
}
.modal-window strong {
    color: #007bff;
}

/* 프로필 사진 */
.modal-photo {
    text-align: center;
    margin: 20px 0;
}
.modal-photo img#modalImg {
    border-radius: 50%;
    border: 5px solid #f0f0f0;
    transition: transform 0.3s ease;
    max-width: 180px;
    height: auto;
}
.modal-photo img#modalImg:hover {
    transform: scale(1.05);
}

/* 리스트 스타일 */
ul#modalCareer,
ul#modalPapers,
ul#modalBooks {
    list-style-type: none;
    padding: 0;
}
ul#modalCareer li,
ul#modalPapers li,
ul#modalBooks li {
    background: #f9f9f9;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 5px solid #e9ecef;
    font-size: 1.5rem;
    color: #444;
    transition: background-color 0.2s ease;
}
ul#modalCareer li:hover,
ul#modalPapers li:hover,
ul#modalBooks li:hover {
    background: #e9ecef;
}

.modal-content {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 15px;
}

/* 모달 표시 애니메이션 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lynkto_wrap table {
    width: 100% !important;
}
.lynkto_wrap table td {
    width: 100% !important;
    max-width: 100% !important;
}
.pro-intro > ul > .item .const .record {
    height: 250px !important;
}
.pro-intro > ul > .item:last-child {
    margin-bottom: 90px !important;
}

.dsc-btn {
    cursor: pointer !important;
}

.tui-grid-wrapper {
    width: 100%;
}

.tui-grid .tui-grid-header {
    border-bottom: 1px solid #e6e6e6 !important;
    box-shadow: none !important;
}

.tui-grid .tui-grid-header .tui-grid-header-area {
    background: #fafafa !important;
}

/* action button style */
.tui-btn-view {
    padding: 6px 14px;
    background: #4caf50; /* modern green */
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tui-btn-view:hover {
    background: #45a049; /* slightly darker green on hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.tui-btn-view:active {
    background: #3e8e41; /* even darker on click */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

.tui-grid-show-lside-area
    .tui-grid-lside-area
    .tui-grid-header-area
    .tui-grid-table {
    border-right-style: none !important;
}

.tui-grid-header-area .tui-grid-table {
    border-top-style: none !important;
}
