@charset "utf-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

@font-face {
    font-family: 'ChosunGs';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@1.0/ChosunGs.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root
{
	--primary-color: #649CEB;
    --primary-hover-color: #538BDA;
    --secondary-color:#6B7A8E;
    --secondary-hover-color:#546478;
    --primary-bg-color:#D9E9FF;
    --primary-bg-hover-color:#C1DBFF;
}

:hover{
    transition: all 0.25s ease;
}

html, body {
    height: 100%;
}

body {
    text-align: left;
    font-size: 16px;
    color: #333;
    line-height: 1;
    font-family: "Pretendard", sans-serif;
    font-weight: 400;
    letter-spacing: -0.02em;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, span, form, fieldset, p, button, address, table, tbody, tfoot, thead, th, tr, td, video, tt, header, article, aside, canvas, details, figcaption, figure, footer, hgroup, menu, main, nav, section, summary, mark, time {
    box-sizing: border-box;
}

input, button, textarea, select {
    background-color: #fff;
    border-radius: 0;
    box-sizing: border-box;
}

/*-webkit-appearance: none*/

button, textarea {
    -webkit-appearance: none;
}

img, fieldset, iframe {
    border: 0 none;
}

li {
    list-style: none;
}

pre {
    white-space: pre-wrap;
    font-family: "Pretendard", sans-serif;
    line-height: 1.4;
}

img, input, select, button, textarea {
    vertical-align: middle;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

em, address, optgroup {
    font-style: normal;
}

label, button {
    cursor: pointer;
}

label {
    position: relative;
}

button {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
}

a {
    box-sizing: border-box;
    color: inherit;
    cursor: pointer;
}

a:link {
    text-decoration: none;
}

a:visited {
    color: inherit;
}

hr {
    display: none;
}

legend, caption {
    font-size: 0;
    width: 0;
    height: 0;
    line-height: 0;
    overflow: hidden;
    text-indent: -9999px;
}

p {
    text-align: left;
    font-weight: 400;
    word-break: keep-all;
}

table {
    width: 100%;
    font-weight: 400;
    border-spacing: 0;
}

.wrap {
    position: relative;
    width: 100%;
    min-height: 100%;
    height: 100%;
}

.hidden {
    overflow: hidden;
    border: 0;
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
}

input, textarea {
    padding: 0 12px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #ddd;
}

select:focus, input:focus, textarea:focus {
    outline: 0;
    border: 1px solid var(--primary-color);
    transition: all 250ms ease;
    box-shadow: 4px 4px 4px rgb(0 0 0 / 5%);
}

select.error, input.error, textarea.error {
    border: 1px solid #ff9e9e;
    transition: all 250ms ease;
    box-shadow: 4px 4px 4px rgb(255 158 158 / 20%);
}

input::placeholder, textarea::placeholder {
    color: rgba(51, 51, 51, 0.3);
}

textarea {
    width: 100%;
    padding: 12px;
    line-height: 1.5;
    resize: none;
    color: #333;
}

input:disabled, textarea:disabled, input.disabled, textarea.disabled {
    background: #f5f5f5;
    color: #888;
}

select {
    min-width: 130px;
    padding: 0 30px 0 12px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #ddd;
    background: #fff url('/mysite/img/common/select_arw.svg') right 8px center no-repeat;
    color: #333;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select:disabled {
    background: #f7f8f9 url('/mysite/img/common/select_arw_disabled.svg') right 8px center no-repeat;
    color: #888;
}

select::-ms-expand {
    display: none;
}

select.none {
    display: none;
}

.checkbox>input, .radio>input {
    display: none;
}

.checkbox>input+label, .radio>input+label {
    position: relative;
    padding-left: 25px;
    line-height: 1.3;
}

.checkbox>input+label::before, .radio>input+label::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 20px;
    height: 20px;
}

.checkbox>input+label::before {
    background: url('/mysite/img/common/checkbox_off.svg');
}

.radio>input+label::before {
    background: url('/mysite/img/common/radio_off.svg');
}

.checkbox input:checked+label:before {
    background: url('/mysite/img/common/checkbox_on.svg');
}

.radio input:checked+label:before {
    background: url('/mysite/img/common/radio_on.svg');
}

.checkbox input:disabled+label,
.radio input:disabled+label {
    color: #888;
    cursor: default;
}

.checkbox input:disabled+label::before {
    background: url('/mysite/img/common/checkbox_disabled.svg');
}

.radio input:disabled+label::before {
    background: url('/mysite/img/common/radio_disabled.svg');
}

.checkbox input:checked:disabled+label::before {
    background: url('/mysite/img/common/checkbox_on.svg');
    opacity: 0.6;
}

.radio input:checked:disabled+label::before {
    background: url('/mysite/img/common/radio_on.svg');
    opacity: 0.6;
}

/* skip navigation */

#skipNavi {
    position: absolute;
    top: 0;
    height: 0px;
    width: 100%;
    z-index: 1000;
}

#skipNavi a {
    display: block;
    height: 1px;
    width: 1px;
    margin-bottom: -1px;
    overflow: hidden;
    text-align: center;
    color: #fff;
    white-space: nowrap;
}

#skipNavi a:focus, #skipNavi a:active {
    display: block;
    top: 0;
    width: 100%;
    height: 45px;
    padding: 10px 0;
    background: #021b87;
}

/* layout */

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    padding: 0 40px;
    background: #fff;
}

header .logo {
    max-width: 250px;
}

header nav {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

header ul.link-list {
    display: flex;
    align-items: center;
}

header ul.link-list>li {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 15px;
}

header ul.link-list>li:not(:last-of-type)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 10px;
    margin: 0 12px;
    background: #D9D9D9;
}

header nav .user-profile {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

header nav .user-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .sub-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 180px;
    background: url('/mysite/img/common/img_banner.png') center center no-repeat;
    background-size: cover;
}

.sub-banner>p {
    margin-bottom: 12px;
    color: #ccc;
    font-size: 20px;
}

.sub-banner>h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
} */
.pc-txt {
    padding: 10px 0;
    background: var(--primary-color);
    text-align: center;
    color: #fff;
    font-size: 15px;
}

footer {
    width: 100%;
    height: 95px;
    padding: 40px 0;
    background: #4D535A;
}

footer p.copyright {
    text-align: center;
    color: #A6A9AC;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
}

.mysite {
    display: flex;
    width: 100%;
    min-width: 1440px;
    min-height: calc(100vh - 115px);
}

.sidebar {
    width: 15.62vw;
    max-width: 300px;
    min-width: 230px;
}

.sidebar .profile-container {
    padding: 30px 30px 20px 30px;
}

.sidebar .profile-container .user-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 12px;
}

.sidebar .profile-container .user-info .profile-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.sidebar .profile-container .user-info .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar .profile-container .user-info dl {
    width: calc(100% - 99px);
}

.sidebar .profile-container .user-info dl dt {
    color: #44474F;
    font-weight: 600;
}

.sidebar .profile-container .user-info dl dd {
    margin-top: 8px;
    color: #8A94A3;
    font-size: 15px;
    font-weight: 500;
}

.sidebar .profile-container .user-info .edit {
    width: 30px;
    height: 30px;
    background: #EFF1F5;
    border-radius: 4px;
    text-align: center;
    color: #778496;
    font-size: 12px;
    line-height: 30px;
}

.sidebar .profile-container .user-info .edit:hover {
    background: #E1E5ED;
}

.sidebar .profile-container .btn-wrap {
    margin-top: 20px;
    column-gap: 5px;
}

.sidebar .profile-container .btn-wrap .btn {
    width: calc((100% - 5px)/2);
    height: 34px;
    padding: 0 10px;
    color: #778496;
    font-size: 14px;
    line-height: 32px;
}

.sidebar .profile-container .btn-wrap .btn>i {
    margin-right: 8px;
    color: #9CA8B9;
    font-size: 15px;
}

.sidebar .side-menu  {
    padding: 30px 15px 70px 15px;
}

.sidebar .side-menu>li:not(.group-title),
.sidebar .side-menu>li:not(.divider) {
    margin-bottom: 1px;
}

.sidebar .side-menu>li>a {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    padding: 16px 24px;
    border: 1px solid #fff;
    border-radius: 4px;
    color: #44474F;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.sidebar .side-menu>li>a i {
    width: 20px;
    margin-right: 10px;
    text-align: center;
    color: #8993A7;
    font-size: 16px;
}

.sidebar .side-menu>li.depth-menu>a::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    width: 7px;
    height: 11px;
    background: url('/mysite/img/common/depth_arw.svg') center center no-repeat;
    transition: all 0.2s ease;
}

.sidebar .side-menu>li>a:hover {
    background: #F0F6FD;
    border: 1px solid var(--primary-color);
}

.sidebar .side-menu>li.on>a {
    background: #F0F6FD;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0px 4px 15px rgba(100, 156, 235, 0.2);
}

.sidebar .side-menu>li.on>a i {
    color: var(--primary-color);
}

.sidebar .side-menu>li.depth-menu>a.open::after,
.sidebar .side-menu .depth-menu .depth-menu>a.open::after {
    transform: translateY(-50%) rotate(90deg);
}

.sidebar .side-menu .depth-menu>ul {
    display: none;
    padding: 12px 0;
}

.sidebar .side-menu .depth-menu>ul>li a {
    display: flex;
    align-items: center;
    height: 35px;
    padding-left: 39px;
    color: #69747D;
    font-size: 15px;
    font-weight: 500;
    line-height: 35px;
    transition: all 0.2s ease;
}

.sidebar .side-menu .depth-menu>ul>li a::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 10px;
    border-radius: 50%;
    background: #BDC8D1;
}

.sidebar .side-menu .depth-menu>ul>li a:hover {
    color: var(--primary-color);
}

.sidebar .side-menu .depth-menu>ul>li.on > a {
    color: var(--primary-color);
    font-weight: 700;
}

.sidebar .side-menu .depth-menu>ul>li.on > a::before {
    background: var(--primary-color);
}

.sidebar .side-menu>li.depth-menu>a.alert span {
    position: relative;
}

.sidebar .side-menu>li.depth-menu>a.alert span::after {
    content: "";
    position: absolute;
    top: -3px;
    right: -12px;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF6767;
}

.sidebar .side-menu .depth-menu .depth-menu>ul {
    margin-bottom: 10px;
    background-color: #f9f9f9;
}
.sidebar .side-menu .depth-menu .depth-menu>ul>li a {
    padding-left: 59px;
}
.sidebar .side-menu .depth-menu .depth-menu>a::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 11px;
    margin-left: 55px;
    margin-top: 8px;
    transform: translateY(-30%);
    background: url('/mysite/img/common/depth_arw.svg') center center no-repeat;
    transition: all 0.2s ease;
}

.sidebar .side-menu .group-title {
    width: 100%;
    height: 40px;
    padding: 0px 10px;
    font-size: 15px;
    font-weight: 700;
    line-height: 40px;
    color: #44474F;
}

.sidebar .side-menu .divider {
    padding: 0px 10px;
    width: 100%;
}

.sidebar .side-menu .divider::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    margin: 20px 0px;
    background: #ddd;
}

.container {
    width: calc(100% - 15.62vw);
    max-width: calc(100% - 230px);
    min-width: calc(100% - 300px);
    padding: 40px 40px 60px 40px;
    background: #F6FAFC;
}

@media (max-width: 1200px) {
    .sub-banner {
        height: 140px;
    }
    .sidebar .side-menu {
        padding: 20px 10px 40px 10px;
    }
    .sidebar .side-menu>li>a {
        padding: 16px;
    }
    .sidebar .side-menu>li.depth-menu>a::after {
        right: 16px;
    }
    .container {
        padding: 30px 25px 40px 25px;
    }
}

/* size classes */

.btn-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 4px;
    row-gap: 2px;
}
.btn-wrap.between{
    justify-content: space-between;
}

.btn-list-more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 0 20px;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}

.btn i {
    margin-right: 5px;
}

.size-xs {
    height: 28px;
    font-size: 15px;
    line-height: 28px;
}

.size-s {
    height: 32px;
    line-height: 32px;
}

.size-m {
    height: 36px;
    line-height: 36px;
}

.size-l {
    height: 42px;
    line-height: 42px;
}

.size-xl {
    height: 48px;
    line-height: 48px;
}

.btn.size-xs {
    padding: 0 10px;
}

table .btn.size-xs {
    white-space: nowrap;
}

.btn.size-s,
.btn.size-m {
    min-width: 90px;
}

.btn.size-l {
    min-width: 100px;
}

.btn.size-xl {
    min-width: 120px;
}

.btn-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: #FF5A5A;
}

.btn-remove .fa-circle-xmark {
    font-weight: 400;
}

input.size-xs,
select.size-xs {
    line-height: 26px;
}

input.size-s,
select.size-s {
    line-height: 30px;
}

input.size-m,
select.size-m {
    line-height: 34px;
}

input.size-l,
select.size-l {
    line-height: 40px;
}

input.size-xl,
select.size-xl {
    line-height: 46px;
}

.btn.type01 {
    border: 0;
    background: var(--primary-color);
    color: #fff;
}

.btn.type01:hover {
    background: var(--primary-hover-color);
}

.btn.type02 {
    border: 0;
    background: var(--secondary-color);
    color: #fff;
}

.btn.type02:hover {
    background: var(--secondary-hover-color);
}

.btn.type03 {
    border: 0;
    background: var(--primary-bg-color);
    color: var(--primary-color);
}

.btn.type03:hover {
    background: var(--primary-bg-hover-color);
}

.btn.line {
    border: 1px solid #ddd;
    background: #fff;
    color: #555;
    font-weight: 400;
}

.btn.line:hover {
    border: 1px solid #777;
}

.btn.confirm {
    background: #EBFBF3;
    border: 1px solid #B2E1CB;
    color: #19BE6F;
    font-weight: 400;
}

.btn.confirm:hover {
    background: #D8F9E8;
    border: 1px solid #19BE6F;
    color: #029A51;
}

.btn.type04 {
    background: #FFF0F0;
    border: 1px solid #FFB6B6;
    color: #FF6060;
}

.btn.type04:hover {
    background: #ffe0e0;
    border: 1px solid #FF6060;
    color: #fe5050;
}

.btn.del {
    background: #ffe9e9;
    color: #FF6060;
    font-weight: 400;
}

.btn.del:hover {
    background: #ffe0e0;
    color: #fe5050;
}

.btn.del-line {
    border: 1px solid #FF6060;
    background: #fff;
    color: #FF6060;
    font-weight: 400;
}

.btn.del-line:hover {
    background: #FFF0F0;
}

.btn.disabled {
    border: 1px solid #ccc !important;
    background: #f2f2f2 !important;
    color: #999 !important;
    font-weight: 400 !important;
    cursor: default;
    pointer-events: none;
}

.btn-exit {
    width: 100%;
    text-align: center;
    color: #888;
    text-decoration: underline;
}

.btn-excel-down {
    background: #58C68F;
    color: #fff;
}

.btn-excel-down:visited {
    color: #fff;
}

.btn-excel-down:hover {
    background: #4DBD85;
}

.width180 {
    width: 180px !important;
}

.width160 {
    width: 160px !important;
}

.width130 {
    width: 130px !important;
}

.width100 {
    width: 100px !important;
    min-width: 100px;
}

.mb-20 {
    margin-bottom: 20px;
}

.toggle {
    display: flex;
    align-items: center;
}

.toggle input[type="checkbox"]{
    position: absolute;
    width: 0px;
    height: 0px;
    overflow: hidden;
}

.toggle label{
    padding-left: 52px;
    line-height: 24px;
    font-size: 16px;
}

.toggle label::after{
    position:absolute;
    top:3px;
    left:4px;
    content:'';
    width: 18px;
    height: 18px;
    background: #CACCCE;
    border-radius: 100%;
    transition: all 0.3s
}

.toggle label::before{
    position:absolute;
    top:0;
    left:0;
    content:'';
    width: 46px;
    height: 24px;
    border:1px solid #CACCCE;
    border-radius: 20px;
    background: #EDF0F3;
    box-sizing: border-box;
}

.toggle input[type="checkbox"]:checked + label::after {
    transform: translateX(21px);
    background: #FFF;
}

.toggle input[type="checkbox"]:checked + label::before {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: 0 2px 4px 0 rgb(100 156 235 / 0.2);
}

.toggle input[type="checkbox"]:disabled + label {
    color: #AFB0B1;
}

/* component */

.datepicker input[type="text"] {
    padding: 0 10px;
    background: #fff url('/mysite/img/common/ico_calendar.svg') center right 8px no-repeat;
    cursor: pointer;
    color: #333;
}

input[type="text"].won-sign {
    padding: 0 30px 0 12px;
    background: #fff url('/mysite/img/common/ico_wonsign.svg') center right 8px no-repeat;
}

input[type="text"].percent-sign {
    padding: 0 30px 0 12px;
    background: #fff url('/mysite/img/common/ico_percentsign.svg') center right 8px no-repeat;
}

input[type="text"].timepicker {
    padding: 0 10px;
    background: #fff url('/mysite/img/common/ico_clock.svg') center right 8px no-repeat;
    color: #333;
}

.input-wrap .person-sign,
.input-wrap .percent-mark {
    position: relative;
}

.input-wrap .person-sign input[type="text"],
.input-wrap .percent-mark input[type="text"] {
    padding: 0 30px 0 12px;
}

.input-wrap .person-sign::after {
    content: '명';
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
}

.input-wrap .percent-mark::after {
    content: '%';
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
}

.guide-box {
    width: 100%;
    padding: 20px 15px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #E2EAEE;
}

.mysite .guide-box.color-gray {
    background: #F9F9F9;
}

.mysite .guide-box>p.tit {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
}

.mysite .guide-box>p.tit::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background: url('/mysite/img/common/ico_info.svg') center center no-repeat;
}

.guide-box>ul {
    padding: 0 16px;
}

.guide-box>ul>li {
    margin-bottom: 3px;
    line-height: 1.5;
    padding-left: 0.9em;
    text-indent: -0.9em;
    word-break: keep-all;
}

.guide-box ul li:last-of-type {
    margin-bottom: 0;
}

.guide-box>ul>li:before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: -4px 8px 0 0;
    background: var(--primary-color);
    border-radius: 50%;
    vertical-align: middle;
}

.guide-box>ul>li.doc-list {
    padding: 0;
}

.guide-box>ul>li.doc-list:before {
    display: none;
}

.guide-box>ul>li>a {
    color: var(--primary-color);
    text-decoration: underline;
}

.guide-box .doc-box {
    margin-top: 12px;
    padding: 15px 25px;
    border-radius: 8px;
    background: #f7f8f9;
    text-indent: 0;
}

.guide-box .doc-box span.tit {
    display: inline-block;
    height: 26px;
    margin-bottom: 8px;
    padding: 0 12px;
    background: var(--primary-color);
    border-radius: 13px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
}

.guide-box .doc-box ul>li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 4px;
}

.guide-box .doc-box ul>li:last-of-type {
    margin-bottom: 0;
}

.guide-box .doc-box ul>li::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 17px;
    background: url('/mysite/img/common/ico_img.png') center center no-repeat;
}

.guide-box .doc-box ul>li a {
    text-decoration: underline;
}

.guide-box ul>li span.sub-txt {
    display: block;
    font-size: 15px;
    color: #888;
    padding-left: 0.9em;
    text-indent: -0.9em;
}

.con-box {
    width: 100%;
    padding: 30px 25px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #E2EAEE;
}

.guide-box + .con-box {
    margin-top: 20px;
}

.popup-wrap .guide-box {
    padding: 20px 10px;
    border-radius: 4px;
    background: #F9F9F9;
    border: 1px solid #EAECED;
}

.tab-menu ~ article .con-box {
    border-radius: 0 8px 8px 8px;
}

.con-box p.tit,
.content-wrap p.tit,
.input-container p.tit,
.table-wrap p.tit {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 700;
}

.con-box p.tit ~ p.tit,
.input-container p.tit ~ p.tit {
    margin-top: 50px;
}

.con-box p.tit::before,
.content-wrap p.tit::before,
.input-container p.tit::before,
.table-wrap p.tit::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background: url('/mysite/img/common/ico_title.svg') center center no-repeat;
    background-size: cover;
}

.con-box p.tit span.sub-txt {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding-left: 28px;
    color: #888;
    font-size: 15px;
    font-weight: 400;
}

.con-box p.sub-tit {
    display: flex;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 16px;
}

.con-box p.sub-tit::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 3px;
    background: url('/mysite/img/common/ico_circle.png') center center no-repeat;
}

.page-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}

.page-title>h3 {
    font-size: 24px;
    color: #222;
    font-weight: 700;
}

.page-title ul.breadcrumb {
    display: flex;
    align-items: center;
}

.page-title ul.breadcrumb>li {
    display: flex;
    align-items: center;
    color: #888;
}

.page-title ul.breadcrumb>li i {
    margin-right: 6px;
    font-size: 14px;
}

.page-title ul.breadcrumb>li:not(:last-of-type)::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 5px;
    background: url('/mysite/img/common/breadcrumb_arw.svg') center center no-repeat;
}

.input-container table {
    border: 0;
}

.align-right {
    text-align: right;
}

.none {
    display: none;
}

table th {
    padding: 10px 5px;
    background: #EBEFF5;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    text-align: center;
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 1.2;
    vertical-align: middle;
}

table thead th span{
    font-size: 13px;
    font-weight: 400;
}

table thead th.th-divider {
    background: #EBEFF5 url('/mysite/img/common/th-line.svg') center center no-repeat;
    background-size: cover;
}

table thead th.th-divider p {
    padding: 0 10px;
}

table thead th.th-divider p:first-of-type {
    text-align: right;
}

table tbody tr {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

table tbody tr td {
    padding: 11px 8px;
    border-right: 1px solid #ddd;
    text-align: center;
    line-height: 1.4;
    vertical-align: middle;
    position: relative;
}

table tbody tr td.border {
    border-right: 1px solid #ddd !important;
}

.table-wrap > table tbody tr:hover {
    background-color: #f6fafc;
}

table tbody tr td:last-of-type {
    border-right: 0;
}

table thead tr td.align-left,
table thead tr th.align-left,
table tbody tr td.align-left,
table tbody tr th.align-left {
    padding: 11px 15px;
    text-align: left;
}

table tbody tr td.align-right,
table tbody tr th.align-right {
    padding: 11px 15px;
}

table .checkbox label,
table .radio label {
    padding-left: 20px;
}
table .checkbox.reset label,
table .radio.reset label {
    padding-left: 25px;
}

table tbody .btn-list {
    display: flex;
    justify-content: center;
    column-gap: 4px;
}

table select {
    min-width: 75px;
}

table.no-thead tr:first-of-type td {
    border-top: 1px solid #DDD;
}

table.no-thead tbody tr td {
    border-right: none;
}

table.list-form {
    border-top: 1px solid #444;
}

table.list-form tr {
    border-bottom: 1px solid #DDD;
}

table.list-form th {
    padding: 18px;
    background: #FFF;
    border-bottom: 0;
    border-right: 0;
    text-align: left;
    color: #777;
    font-weight: 500;
}

table.list-form td {
    padding: 18px;
    text-align: left;
}

table.list-form .radio label,
table.list-form .checkbox label {
    padding-left: 25px;
}

.mysite table th .th-arw {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.mysite table th .th-arw span {
    font-size: 16px;
    font-weight: 600;
}

.mysite table th .th-arw a {
    width: 10px;
    height: 15px;
    margin: -4px 0 0 2px;
}

.mysite table th .th-arw a.sort-deactivation {
    background: url('/mysite/img/common/sort_deactivation.svg') center center no-repeat;
    background-size: contain;
}

.mysite table th .th-arw a.sort-up {
    background: url('/mysite/img/common/sort_up.svg') center center no-repeat;
    background-size: contain;
}

.mysite table th .th-arw a.sort-down {
    background: url('/mysite/img/common/sort_down.svg') center center no-repeat;
    background-size: contain;
}

table thead th .fa-sort {
    font-size: 15px;
}

table.list-form ~ .btn-wrap {
    margin-top: 40px;
}

.table-wrap td.check-wrap {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 2px;
    margin-top: 30px;
}

.pagination a {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    text-align: center;
    color: #8993A7;
    font-size: 12px;
    line-height: 30px;
}

.pagination a.page {
    color: #555;
    font-size: 16px;
}

.pagination a.page.active {
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
}

.popup-wrap {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 99;
}

.popup-wrap:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
}

.popup-wrap.bg-blur:before {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.popup-wrap .popup {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 450px;
    max-width: 1200px;
    max-height: 90vh;
    padding: 30px 25px;
    border-radius: 8px;
    background: #fff;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.popup-wrap.info-popup-wrap .popup {
    max-width: fit-content;
    padding: 0;
}

.popup-wrap.confirm-popup-wrap .popup,
.popup-wrap.popup-error .popup{
    max-width: 450px;
    width: 100%;
}

.page-performance .popup-wrap.popup-closer .popup {
    max-width: 450px;
    width: 100%;
}

.popup-wrap .popup .pop-close {
    position: absolute;
    top: 34px;
    right: 25px;
}

.popup-wrap .popup .popup-tit {
    width: 100%;
    margin-bottom: 20px;
    padding-right: 28px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.popup-wrap .popup-content .gray-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f8f9;
    border: 1px solid #EAECED;
    margin-bottom: 20px;
    padding: 20px 30px;
    border-radius: 4px;
    line-height: 1.5;
    column-gap: 4px;
}

.popup-wrap .popup-content .gray-box .search-wrap p {
    font-weight: 500;
    margin-bottom: 10px;
}
select option{
    border-radius: 0;
}

.popup-wrap .popup-content .gray-box.between {
    justify-content: space-between;
    align-items: flex-end;
}

.popup-wrap .popup-content .gray-box.between .select-wrap {
    display: flex;
    column-gap: 5px;
}

.popup-wrap .popup-content .gray-box.label-input {
    align-items: flex-end;
    column-gap: 8px;
}

.popup-wrap .popup-content .gray-box.label-input .input-wrap {
    text-align: left;
}

.popup-wrap .popup-content .gray-box.label-input .input {
    display: flex;
    column-gap: 4px;
    margin-top: 4px;
}

.popup-wrap .popup-content .confirm-txt {
    text-align: center;
    line-height: 1.5;
}

.popup-wrap .popup-content .confirm-txt>span {
    color: var(--primary-color);
    font-weight: 700;
}

.popup-wrap .popup-content .table-wrap {
    max-height: 410px;
    overflow-y: auto;
}

.popup-wrap .popup .btn-wrap {
    margin-top: 30px;
}

.popup-wrap .popup hr.divider {
    display: block;
    width: 100%;
    height: 0;
    margin: 20px 0;
    border: 1px dashed #ddd;
}

.popup-wrap .popup.width500 {
    max-width: 500px;
}

.popup-wrap .popup.width760 {
    max-width: 760px;
}

.popup-wrap .popup.width960 {
    max-width: 960px;
}

.popup-wrap .popup.width1200 {
    max-width: 1200px;
}

.popup-wrap .popup.width1400 {
    max-width: 1400px;
}

/* S : 회원 검색 공통 팝업 */
.popup-wrap.search-prof .popup{
    max-width: 960px;
}
.popup-wrap.search-prof .user{
    display: none;
}
.popup-wrap.search-user .prof{
    display: none;
}
.popup-wrap.search-prof .table-wrap,
.popup-wrap.search-user .table-wrap {
    overflow: auto;
    height: 50vh;
}
/* E : 회원 검색 공통 팝업 */


.popup-loading .popup {
    max-width: 450px;
    padding: 50px 25px;
    text-align: center;
}

.popup-loading .popup .tit-txt {
    margin-bottom: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.popup-loading .popup .des-txt {
    text-align: center;
    line-height: 1.5;
}

.popup-loading .popup svg {
    width: 3.25em;
    margin-bottom: 20px;
    transform-origin: center;
    animation: loading-rotate 2s linear infinite;
}

.popup-loading .popup svg circle {
    fill: none;
    stroke: hsl(214, 97%, 59%);
    stroke-width: 2.5;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: loading-dash 1.5s ease-in-out infinite;
}

@keyframes loading-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loading-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dashoffset: -125px;
    }
}

ol.step-list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    column-gap: 10px;
    counter-reset: step;
    margin-bottom: 60px;
}

ol.step-list>li {
    position: relative;
    width: 150px;
    text-align: center;
    color: #bbb;
    font-size: 14px;
}

ol.step-list>li::before {
    counter-increment: step;
    content: '0' counter(step);
}

ol.step-list>li::after {
    content: "";
    display: block;
    position: absolute;
    top: 30px;
    right: 50%;
    z-index: 0;
    width: 100%;
    height: 0;
    border: 1px dashed #ccc;
}

ol.step-list>li:first-of-type::after {
    display: none;
}

ol.step-list>li p::before {
    content: "";
    position: relative;
    z-index: 1;
    display: block;
    width: 18px;
    height: 18px;
    margin: 8px auto 12px auto;
    border-radius: 50%;
    background: #ccc;
    border: 4px solid #f1f1f1;
    box-sizing: border-box;
}

ol.step-list>li p {
    text-align: center;
    color: #aaa;
    font-size: 16px;
    line-height: 1.4;
}

ol.step-list>li.active {
    color: var(--primary-color);
    font-weight: 700;
}

ol.step-list>li.active::after {
    border: 1px dashed var(--primary-color);
}

ol.step-list>li.active p {
    color: var(--primary-color);
    font-weight: 700;
}

ol.step-list>li.active p::before {
    background: var(--primary-color);
    border: 4px solid var(--primary-bg-color);
}

ol.step-list>li.completed {
    color: var(--primary-color);
}

ol.step-list>li.completed::after {
    border: 1px dashed var(--primary-color);
}

ol.step-list>li.completed p {
    color: var(--primary-color);
}

ol.step-list>li.completed p::before {
    background: var(--primary-color);
    border: 4px solid var(--primary-bg-color);
}

ul.tab-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 4px;
    overflow-x: auto;
    overflow-y: hidden;
}

ul.tab-menu li {
    min-width: 200px;
    height: 54px;
    padding: 0 10px;
    border-radius: 4px 4px 0 0;
    border: 1px solid #E2EAEE;
    border-bottom: 0;
    background: #EBEFF5;
    text-align: center;
    color: #6B7A8E;
    line-height: 54px;
    box-shadow: 0 1px 1px #fff;
}

ul.tab-menu li.active {
    background: #fff;
    border-top: 4px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 50px;
}

ul.tab-menu li a {
    display: block;
    width: 100%;
    height: 100%;
}
ul.tab-menu li img {
    margin: -4px 10px 0 0;
}

.ui-widget.ui-widget-content {
    padding: 8px 10px 5px 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 10px 15px rgb(0 0 0 / 15%);
    font-family: "Pretendard", sans-serif;
    font-size: 14px;
}

.ui-widget-header {
    margin-bottom: 4px;
    background: #fff;
    border: 0;
}

/* .ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
    width: 12px;
    height: 12px;
    margin: 0;
    background: url('/mysite/img/common/chevron-right-solid.svg') center center no-repeat;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.ui-datepicker .ui-datepicker-prev  {
    transform: rotate(180deg);
} */

.ui-datepicker table {
    border: 0;
}

.ui-datepicker table tr {
    border: 0;
}

.ui-datepicker table tr th {
    padding: 7px 0;
    background: #fff;
}

.ui-widget-content .ui-state-default {
    padding: 6px 2px;
    border: 0;
    border-radius: 3px;
    background: #fff;
    text-align: center;
    transition: all 0.25s ease;
}

/* .ui-widget-content .ui-state-default:hover {
    background: #E0EEFF;
    color: var(--primary-color);
}

.ui-widget-content .ui-state-default.ui-state-active {
    background: var(--primary-color);
    color: #fff;
    background: #E0EEFF;
    color: var(--primary-color);
    font-weight: 700;
    border: 1px solid var(--primary-color);
    box-shadow: 0px 4px 10px rgba(100, 156, 235, 0.15);
} */

.ui-widget-content .ui-state-default:hover {
    background: #f2f2f2;
    color: var(--primary-color);
}

.ui-widget-content .ui-state-default.ui-state-active {
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    box-shadow: 0px 4px 10px rgba(100, 156, 235, 0.15);
}

.mysite .upload-wrap {
    display: flex;
    align-items: center;
    column-gap: 10px;
    width: 100%;
    margin-top: 10px;
}

.mysite .upload-wrap span.guide {
    margin: 0;
    padding: 0;
}

.mysite .upload-wrap label {
    display: inline-block;
    line-height: 36px;
    box-sizing: border-box;
    padding: 0;
    margin-left: 10px;
}

.mysite .register-container .input-container .form-wrap.label-upload .upload-wrap label {
    line-height: 34px;
}

.mysite .upload-wrap input[type="file"] {
    position: absolute;
    width: 1px !important;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.mysite .file-list {
    width: 100%;
    background: #F7F8F9;
    padding: 10px 25px;
}

.mysite .upload-wrap ~ .file-list {
    margin-top: 10px;
}

.mysite .file-list>li {
    display: flex;
    align-items: center;
    margin: 10px 0;
    column-gap: 8px;
    text-decoration: underline;
    line-height: 1.2;
}

.mysite .file-list>li::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url('/mysite/img/common/ico_img.png') center center no-repeat;
}

.mysite .file-list>li .btn-delete {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url('/mysite/img/common/ico_close.png') center center no-repeat;
    background-size: cover;
}

.mysite .popup-wrap .popup .upload-wrap {
    margin-top: 0;
}

.mysite .toggle-tab {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 6px;
    border: 1px solid var(--primary-color);
}

.mysite .toggle-tab > li {
    position: relative;
    width: 50%;
    padding: 12px;
    text-align: center;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
}

.mysite .toggle-tab > li:not(:last-of-type)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 1px;
    height: calc(100% - 20px);
    background: #ddd;
}

.mysite .toggle-tab > li:first-of-type {
    border-radius: 4px 0 0 4px;
}

.mysite .toggle-tab > li:last-of-type {
    border-radius: 0 4px 4px 0;
}

.mysite .toggle-tab > li.select {
    background: var(--primary-color);
    color: #FFF;
}

.mysite .toggle-tab > li.select::after {
    display: none;
}

.ui-timepicker-container {
    overflow: unset !important;
}

.ui-timepicker-standard {
    border-radius: 8px;
    border: 0 !important;
}

.ui-timepicker-viewport::-webkit-scrollbar {
    width: 4px;
}

.ui-timepicker-viewport::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.ui-timepicker-viewport::-webkit-scrollbar-track {
    background: none;
}

.ui-timepicker-standard a {
    padding: 0.4em !important;
    border-radius: 0 !important;
}

.ui-timepicker-standard .ui-state-hover {
    background-color: #f2f2f2 !important;
    border: 1px solid #f2f2f2 !important;
    color: var(--primary-color) !important;
}

/* 테이블 스크롤 */

.overflow-table::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

.overflow-table::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    transition: all 0.25s;
}

.overflow-table::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

.overflow-table::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.25s;
}

.overflow-table ~ .pagination {
    margin-top: 10px;
}

/* 사이트관리자 페이지 */

.sub-banner.admin-banner {
    background: url('/admin/img/common/img_banner.png') center center no-repeat;
    background-size: cover;
}

[v-cloak] {
    display:none;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip i {
    color: var(--primary-color);
    cursor: pointer;
}

.tooltip span {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: -14px;
    z-index: 9;
    width: 300px;
    padding: 6px 15px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.65);
    text-align: left;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    word-break: keep-all;
}

.tooltip span::before {
    content: "";
    display: block;
    position: absolute;
    top: -10px;
    left: 15px;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-top-width: 0;
    border-bottom-width: 10px;
    border-bottom-color: rgba(0, 0, 0, 0.65);
    /* transform: rotate(45deg); */
}

.tooltip:hover span {
    display: block;
}

.tooltip.right span {
    left: unset;
    right: -14px;
}

.tooltip.right span::before {
    left: unset;
    right: 15px;
}
