@charset "utf-8";

/********** 스타일 변수 **********/
:root {
    /***** 컬러 *****/
    --white: #ffffff;
    --black: #222222;

    --gray2: #fbfbfb;
    --gray3: #f8f8f8;
    --gray5: #f4f5f6;
    --gray10: #f0f0f0;
    --gray15: #e9e9eb;
    --gray20: #e1e2e5;
    --gray25: #d7d9dd;
    --gray30: #cdd1d5;
    --gray40: #b1b8be;
    --gray43: #a8afb6;
    --gray45: #9ea6ae;
    --gray50: #8a949e;
    --gray55: #7c8690;
    --gray60: #6d7882;
    --gray70: #58616a;
    --gray80: #464c53;
    --gray90: #33363d;

    --lightblue5: #f1f7ff;
    --lightblue10: #eaf3ff;
    --lightblue20: #dcecff;
    --lightblue30: #cde3fc;
    --lightblue40: #bad5f4;
    --lightblue50: #a7cbf5;
    --lightblue60: #93baee;
    --lightblue70: #7fb0eb;
    --lightblue80: #70a5e8;
    --lightblue90: #5597e8;

    --blue5: #5aa0ef;
    --blue10: #4a8fe8;
    --blue20: #3b84e8;
    --blue30: #2c78e8;
    --blue40: #1f6ce8;
    --blue50: #1860e8;
    --blue60: #155cce;
    --blue70: #144fc0;
    --blue80: #0047af;
    --blue90: #00409e;

    --green5: #f0f8ef;
    --green10: #e9f5e8;
    --green20: #dcf2d9;
    --green30: #ceedca;
    --green40: #b3ddac;
    --green50: #37b24d;
    --green60: #29a83b;
    --green70: #1da034;
    --green80: #1c932d;
    --green90: #158c26;

    --red5: #fff5f5;
    --red10: #ffeded;
    --red20: #ffe3e3;
    --red30: #ffdcdc;
    --red40: #ffcaca;
    --red50: #e52929;
    --red60: #db2323;
    --red70: #d11c1c;
    --red80: #c61717;
    --red90: #bc0f0f;
}

/********** 초기 스타일 **********/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-wrap: break-word;
}

body {
    font-family: "Pretendard Variable", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", "Nanum Gothic", "나눔고딕", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}

a {
    text-decoration: none;
    color: var(--black);
    cursor: pointer;
}

li {
    list-style: none;
}

img {
    vertical-align: top;
    width: 100%;
}

input,
textarea,
button,
select,
option {
    border: none;
    font-family: "Pretendard Variable", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", "Nanum Gothic", "나눔고딕", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}

input,
textarea,
select {
    border: 1px solid var(--gray20);
    background-color: var(--white);
    box-sizing: border-box;
    border-radius: 8px;
    font-weight: 400;
    width: 100%;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border: 1px solid var(--blue50);
}

input:disabled,
textarea:disabled,
select:disabled,
input.lock,
textarea.lock,
select.lock {
    border: 1px solid var(--gray20);
    background-color: var(--gray10);
    color: var(--gray50);
    opacity: 1;
}

input[type=text],
input[type=password],
input[type=number],
input[type=tel],
input[type=email] {
    padding: 10px 14px;
    height: 40px;
}

input[type=file] {
    border: none;
    border-radius: 0;
}

select {
    padding: 8px 10px;
    height: 40px;
}

textarea {
    resize: none;
    padding: 10px 14px;
    min-height: 68px;
    line-height: 1.5;
}

input::placeholder,
textarea::placeholder {
    color: var(--gray50);
}

button {
    appearance: none;
    cursor: pointer;
    padding: 0px;
    background: none;
    border: none;
    line-height: normal;
}

button:focus {
    outline: none;
}

button:disabled {
    cursor: inherit;
    opacity: 0.7;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th,
td {
    border: none;
}

textarea::-webkit-scrollbar,
.border::-webkit-scrollbar,
.alarm-list::-webkit-scrollbar,
.text-list-wrap::-webkit-scrollbar,
.modal-contents::-webkit-scrollbar,
.table-list::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

textarea::-webkit-scrollbar-track,
.border::-webkit-scrollbar-track,
.alarm-list::-webkit-scrollbar-track,
.text-list-wrap::-webkit-scrollbar-track,
.modal-contents::-webkit-scrollbar-track,
.table-list::-webkit-scrollbar-track {
    background: var(--gray15);
    border-radius: 6px;
}

textarea::-webkit-scrollbar-thumb,
.border::-webkit-scrollbar-thumb,
.alarm-list::-webkit-scrollbar-thumb,
.text-list-wrap::-webkit-scrollbar-thumb,
.modal-contents::-webkit-scrollbar-thumb,
.table-list::-webkit-scrollbar-thumb {
    background-color: var(--gray30);
    border-radius: 6px;
}

textarea::-webkit-scrollbar-thumb:hover,
.border::-webkit-scrollbar-thumb:hover,
.alarm-list::-webkit-scrollbar-thumb:hover,
.text-list-wrap::-webkit-scrollbar-thumb:hover,
.modal-contents::-webkit-scrollbar-thumb:hover,
.table-list::-webkit-scrollbar-thumb:hover {
    background-color: var(--gray40);
}

/********** 공통 스타일 **********/
.wrap {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    min-width: 1300px;
}

main {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-left: 210px;
    padding-bottom: 150px;
}

section,
.section {
    width: 100%;
    padding: 0 80px;
    display: flex;
    flex-wrap: wrap;
}

.contents-section {
    width: 100%;
}

.hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contents {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: 60px;
    position: relative;
}

.hasfilter .contents {
    width: calc(100% - 310px);
}

/***** 레이아웃 정렬 *****/
.layout-left {
    float: left;
}

.layout-right {
    float: right;
}

.list-half > li {
    width: 50%;
}

/***** 테두리 영역 *****/
.border-wrap {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
}

.border-wrap:last-child {
    margin-bottom: 0;
}

.border-contents-wrap {
    width: 100%;
    display: flex;
}

.border-contents {
    display: flex;
    flex-direction: column;
}

#dashboard-live .border-contents {
    margin-right: 80px;
    position: relative;
}

#dashboard-live .border-contents::after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--gray20);
    position: absolute;
    top: 0;
    right: -40px;
}

#dashboard-live .border-contents:last-child {
    margin-right: 0;
}

#dashboard-live .border-contents:last-child::after {
    display: none;
}

.border {
    border: 1px solid var(--gray20);
    border-radius: 15px;
    padding: 25px 30px;
    overflow: hidden;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    width: 100%;
    float: left;
}

.contents.w70 {
    width: calc(70% - 60px);
}

.contents.fix {
    width: calc(30% - 120px);
    margin-left: 60px;
    position: fixed;
    right: 80px;
}

.contents.fix .border {
    max-height: calc(100vh - 300px);
    overflow-y: auto;
}

.border-blue:nth-child(n) {
    border: 1px solid var(--blue50);
}

#admin-dashboard-live .border {
    width: calc(25% - 20px);
}

#dashboard-live {
    width: 60%;
}

#dashboard-notice {
    width: calc(40% - 30px);
}

#dashboard-mission {
    width: 75%;
}

#dashboard-point,
#dashboard-mission-type {
    width: calc(25% - 20px);
    align-self: flex-start;
}

.border-top {
    width: 100%;
    padding-bottom: 17px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray15);
    display: flex;
    gap: 10px;
    align-items: center;
}

.dashboard .border-top,
.border-top.normal {
    border-bottom: none;
    padding-bottom: 0;
}

.side-filter .border-top {
    justify-content: space-between;
}

.border-top .icon {
    width: 22px;
    height: 22px;
}

.border-title {
    font-weight: 500;
    font-size: 18px;
}

.border-title + .tag {
    padding: 5px 8px;
    font-size: 13px;
}

.border-sub-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray50);
    margin-top: 3px;
}

.border-txt {
    width: 100%;
    float: left;
    margin-top: 12px;
    color: var(--gray50);
    line-height: 1.5;
    font-size: 15px;
}

.border-top .link-btn {
    margin-left: 12px;
    float: left;
    margin-top: 2px;
}

.border-bottom {
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray15);
}

/***** 현황 *****/
.board-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    column-gap: 40px;
}

.board-list > li {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.board-title {
    color: var(--gray50);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.board-title .icon {
    float: inherit;
    width: 24px;
    height: 24px;
    left: 1px;
}

.board-title p {
    font-weight: 500;
    font-size: 15px;
}

.board-main {
    font-weight: 500;
    font-size: 17px;
}

/***** 대시보드 테이블 리스트 *****/
.dashboard .table td {
    padding: 13px 8px;
}

.dashboard .depth-table td {
    padding: 20px 8px;
}

.dashboard .table tr:last-child td {
    border-bottom: none;
    padding-bottom: 0px;
}

.dashboard .link-table tr:hover {
    background-color: var(--white);
    opacity: 0.75;
}

#dashboard-notice .table .td-main {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/***** 미션별 포인트 *****/
.basic-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.basic-list > li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.basic-list > li:first-child {
    margin-top: 0;
}

.basic-list-title {
    color: var(--gray70);
    font-weight: 450;
}

.basic-list-txt {
    font-weight: 500;
}

.basic-list-txt:last-child {
    margin-bottom: 0;
}

.basic-list-txt.blue,
.basic-list-txt.blue span {
    color: var(--blue50);
}

.basic-list-txt.red {
    color: var(--red50);
}

.basic-list-txt.wait {
    color: var(--gray45);
}

.basic-list-txt span {
    color: var(--gray50);
}

/********** 텍스트 리스트 **********/
.info-txt-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.info-txt-list > li {
    width: 100%;
    line-height: 1.5;
    position: relative;
    padding-left: 14px;
    color: var(--gray80);
    font-size: 15px;
}

.info-txt-list > li:last-child {
    margin-bottom: 0;
}

.info-txt-list > li::before {
    content: "";
    width: 6px;
    height: 1px;
    position: absolute;
    top: 9px;
    left: 0;
    background-color: var(--gray45);
}

.info-txt-list > li .bold {
    font-weight: 500;
    color: var(--black);
}

/********** 스탭 안내 리스트 **********/
.info-step-list {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.info-step-list > li {
    margin-right: 40px;
    text-align: center;
    padding: 25px;
    border: 1px solid var(--gray20);
    border-radius: 15px;
    position: relative;
}

.info-step-list.step03 > li {
    width: calc(100%/3);
}

.info-step-list.step04 > li {
    width: calc(100%/4);
}

.info-step-list.step05 > li {
    width: calc(100%/5);
}

.info-step-list.step06 > li {
    width: calc(100%/6);
}

.info-step-list > li:last-child {
    margin-right: 0;
}

.info-step-list > li::after {
    content: "";
    width: 15px;
    height: 15px;
    border-right: 2px solid var(--gray20);
    border-top: 2px solid var(--gray20);
    position: absolute;
    top: 50%;
    right: -24px;
    transform: translateY(-50%) rotate(45deg);
}

.info-step-list > li:last-child::after {
    display: none;
}

.info-step-tag {
    background-color: var(--blue50);
    color: var(--white);
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    position: absolute;
    top: 0px;
    left: 0px;
    border-top-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 1;
}

.step-icon {
    display: inline-block;
    background-color: var(--lightblue10);
    text-align: center;
    position: relative;
    width: 55px;
    height: 53px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.step-icon .icon {
    width: 28px;
    height: 28px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--blue50);
}

.step-title {
    font-weight: 600;
    line-height: 1.5;
    font-size: 17px;
}

.step-title.blue {
    color: var(--blue50);
}

.step-contents {
    margin-top: 16px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--gray20);
}

.step-contents > li {
    width: 100%;
    margin-bottom: 8px;
    line-height: 1.3;
    padding-left: 10px;
    position: relative;
    font-weight: 400;
    color: var(--gray70);
    font-size: 15px;
}

.step-contents > li:last-child {
    margin-bottom: 0;
}

.step-contents > li::before {
    content: "";
    width: 5px;
    height: 1px;
    background-color: var(--gray45);
    position: absolute;
    top: 8px;
    left: 0;
}

/********** 월별 리스트 **********/
.contents-slide-list {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contents-slide-list.half {
    width: calc(50% - 20px);
}

.contents-slide-list > li {
    width: 100%;
    border-top: 1px solid var(--gray20);
}

.contents-slide-list > li:last-child {
    border-bottom: 1px solid var(--gray20);
}

.contents-slide-list > li:hover {
    background-color: var(--gray3);
}

.contents-slide-list > li.active:hover {
    background-color: var(--white);
}

.contents-list-main {
    position: relative;
    width: 100%;
    cursor: pointer;
    padding: 20px 40px 20px 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contents-list-main .basic-list-title {
    font-weight: 500;
    color: var(--black);
}

.contents-list-main p:nth-child(n) {
    margin-bottom: 0;
    font-size: 16px;
}

.contents-list-main .icon {
    position: absolute;
    top: 30px;
    right: 5px;
    color: var(--gray45);
    width: 18px;
    height: 18px;
}

.contents-slide-list > li.active .icon {
    transform: rotate(180deg);
}

.contents-slide-list .basic-list {
    display: none;
    padding: 20px 25px;
    background-color: var(--gray3);
    border-radius: 12px;
    margin-bottom: 25px;
    gap: 12px;
}

.contents-slide-list .basic-list > li {
    border-bottom: 1px solid var(--gray20);
    padding-bottom: 12px;
}

.contents-slide-list .basic-list > li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.contents-slide-list > li.active .basic-list {
    display: flex;
}

.contents-slide-list .basic-list-title .badge {
    padding: 5px 10px;
    font-size: 13px;
    background-color: var(--lightblue10);
    color: var(--blue50);
    top: -1px;
    margin-left: 3px;
}

/***** 텍스트 리스트 *****/
.text-list-wrap {
    width: 100%;
    max-height: calc(80vh - 300px);
    overflow: hidden;
    overflow-y: auto;
    padding-right: 10px;
    margin-top: 10px;
    float: left;
}

.text-list {
    width: 100%;
    float: left;
    margin-bottom: 24px;
}

.text-list:last-child {
    margin-bottom: 0;
}

.text-list p {
    width: 100%;
    float: left;
    font-size: 15px;
    margin-bottom: 6px;
    line-height: 1.4;
    padding-left: 12px;
    color: var(--gray70);
    position: relative;
    font-weight: 450;
}

.text-list p:last-child {
    margin-bottom: 0;
}

.text-list p::before {
    content: "";
    width: 6px;
    height: 1px;
    background-color: var(--gray45);
    position: absolute;
    top: 9px;
    left: 0;
}

.text-list p.text-list-title {
    font-weight: 500;
    color: var(--black);
    padding-left: 0;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 8px;
}

.text-list p.text-list-title::before {
    display: none;
}

/********** 상단 영역 **********/
.top-section {
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
}

.home-title {
    font-weight: 600;
    line-height: 1.4;
    font-size: 24px;
}

.page-title {
    font-weight: 600;
    font-size: 24px;
    float: left;
}

.page-sub-title {
    float: left;
    font-weight: 500;
    font-size: 18px;
    margin-top: 4px;
    color: var(--gray70);
    position: relative;
    z-index: 1;
}

.page-sub-title:last-child {
    margin-right: 0;
}

.page-sub-title.type {
    margin-top: 0;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 8px;
    background-color: var(--gray15);
    color: var(--gray70);
    font-weight: 600;
}

.page-sub-title.type.blue {
    color: var(--blue50);
    background-color: var(--lightblue10);
}

.page-info {
    float: right;
    font-size: 14px;
    font-weight: 500;
    text-align: right;
    line-height: 1.4;
    position: absolute;
    right: 80px;
}

.page-info.blue {
    color: var(--gray50);
}

.top-section .write-btn {
    padding: 8px 14px;
}

/********** 탭 메뉴 **********/
.tab-menu-section {
    width: 100%;
    display: flex;
    position: relative;
    margin-top: 30px;
    float: left;
}

.tab-menu-section::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--gray15);
    position: absolute;
    bottom: 0;
    left: 0;
}

.tab-menu {
    display: flex;
    gap: 5px;
}

.tab-menu > li > a,
.tab-menu > li > p {
    display: inline-block;
    padding: 0px 8px 8px 8px;
    font-size: 17px;
    font-weight: 400;
    color: var(--gray45);
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.tab-menu > li > a:hover,
.tab-menu > li > p:hover {
    color: var(--gray50);
}

.tab-menu > li.active > a,
.tab-menu > li.active > p {
    color: var(--blue50);
    border-bottom: 1px solid var(--blue50);
    font-weight: 500;
}

/********** 게시물 영역 **********/
.paper-contents-wrap {
    width: 100%;
    margin-bottom: 40px;
}

.paper-contents {
    width: 100%;
    border-top: 1px solid var(--gray20);
    padding: 25px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.paper-contents:last-child {
    border-bottom: 1px solid var(--gray20);
}

/***** 게시물 상단 *****/
.paper-title {
    font-weight: 500;
    font-size: 18px;
    float: left;
}

.paper-sub {
    display: flex;
    gap: 20px;
}

.paper-sub > li {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray50);
    letter-spacing: -0.2px;
}

.paper-sub > li::before {
    content: "";
    width: 1px;
    height: 12px;
    background-color: var(--gray30);
    position: absolute;
    top: 2px;
    left: -10px;
}

.paper-sub > li:first-child::before {
    display: none;
}

/***** 게시물 내용 *****/
.paper-main {
    width: 100%;
}

.paper-main p {
    font-size: 15px;
    line-height: 1.5;
}

.paper-main a {
    text-decoration: underline;
}

.paper-main a:hover {
    color: var(--blue50);
}

/***** 첨부파일 *****/
.file-list {
    display: flex;
    gap: 10px;
}

#join-section .file-list > li .btn {
    cursor: inherit;
}

#join-section .file-list > li .btn:hover {
    background-color: var(--gray15);
}

.file-btn + .file-list {
    margin-left: 10px;
    float: left;
}

.file-list + .file-btn {
    margin-left: 10px;
}

#join-section .file-list > li p {
    max-width: 169px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/********** 첨부파일 **********/
.file-form {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.file-input {
    display: none;
}

.file-list {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.file-list > li {
    width: 100%;
    overflow: hidden;
}

.file-list > li .btn {
    cursor: inherit;
    padding: 9px 16px;
    max-width: 100%;
    text-align: left;
}

.file-list > li .btn p {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-list > li .btn:hover {
    background-color: var(--gray15);
}

/***** 이미지 미리보기 *****/
.img-preview {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.img-preview img {
    width: calc(50% - 10px);
}

.img-preview img:nth-child(2n) {
    margin-right: 0;
}

.img-preview-info {
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: var(--gray10);
    border-radius: 10px;
    color: var(--gray45);
}

.img-preview-info .icon {
    float: inherit;
    display: inline-block;
}

.img-preview-info p {
    font-size: 14px;
}

.img-preview + .file-form {
    margin-top: 20px;
}

/********** 리스트 영역 **********/
/***** 리스트 기능 *****/
.list-action-wrap {
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.list-action {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*** 리스트 개수 ***/
.list-num {
    float: left;
}

.list-num p {
    font-size: 14px;
    font-weight: 500;
}

/*** 리스트 정렬 ***/
.list-num-align {
    float: left;
    position: relative;
    top: -2px;
    margin-left: 20px;
    position: relative;
}

.list-num-align::before {
    content: "";
    width: 1px;
    height: 14px;
    background-color: var(--gray30);
    position: absolute;
    top: 3px;
    left: -8px;
}

.list-num-align select {
    font-size: 14px;
    font-weight: 500;
    border: none;
    padding: 0;
    cursor: pointer;
    height: auto;
}

/*** 검색바 ***/
.list-search {
    float: left;
    margin-right: 15px;
}

.list-search:last-child {
    margin-right: 0;
}

.search-bar {
    width: 300px;
    position: relative;
}

.search-bar input {
    font-size: 15px;
    height: 36px;
    padding: 10px 12px;
}

.search-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    color: var(--gray45);
}

.search-btn:hover {
    color: var(--blue50);
}

.list-total {
    float: left;
}

.list-total > li {
    float: left;
    padding: 8px 14px 7px 14px;
    font-size: 14px;
    color: var(--blue50);
    border: 1px solid var(--blue50);
    border-radius: 6px;
    margin-right: 10px;
    font-weight: 500;
}

.list-total > li:last-child {
    margin-right: 0;
}

/*** 테이블 폼 ***/
.action-form {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.action-form-list {
    display: flex;
    gap: 20px;
}

.action-form-list > li {
    width: 250px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.action-form-list label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray60);
}

.action-form-list input {
    padding: 8px 12px;
    height: auto;
    font-size: 15px;
}

.action-form .btn {
    height: 36px;
    padding: 8px 14px;
}

/********** 리스트 테이블 **********/
.table-list {
    width: 100%;
    float: left;
    overflow-x: auto;
}

.table {
    width: 100%;
}

.table th,
.table td {
    font-size: 15px;
    text-align: left;
    letter-spacing: -0.2px;
    max-width: 350px;
    border-top: 1px solid var(--gray20);
    line-height: 1.3;
    font-weight: 400;
    word-break: keep-all;
}

.table th.center,
.table td.center {
    text-align: center;
}

.table th.right,
.table td.right {
    text-align: right;
}

.table th.blue,
.table td.blue {
    color: var(--blue50);
}

.table th.red,
.table td.red {
    color: var(--red50);
}

.table th.gray,
.table td.gray {
    color: var(--gray50);
}

.table th.bold,
.table td.bold {
    font-weight: 600;
}

.table th.nowrap,
.table td.nowrap {
    white-space: nowrap;
}

.table th {
    color: var(--gray50);
    padding: 12px 10px;
    white-space: nowrap;
    font-weight: 500;
    font-size: 14px;
}

.table td {
    padding: 15px 10px 14px 10px;
    min-width: 50px;
    line-height: 1.4;
}

.table .data-none {
    cursor: inherit;
}

.table .data-none:hover {
    background-color: var(--white);
}

.table .data-none td {
    text-align: center;
    color: var(--gray45);
}

.table tr:last-child td {
    border-bottom: 1px solid var(--gray20);
}

.simple-table th,
.simple-table td {
    padding: 14px 10px;
}

.table-checkbox input[type=checkbox] {
    width: 15px;
    height: 15px;
}

.table-checkbox .table-check-btn input[type=checkbox] {
    display: none;
}

.fold-tr {
    cursor: pointer;
    border-bottom: 1px solid var(--gray20);
}

.link-table tbody tr {
    cursor: pointer;
}

.fold-tr:hover,
.link-table tbody tr:hover {
    background-color: var(--gray3);
}

.fold-tr.active {
    border-bottom: none;
}

.fold-tr.active:hover {
    background-color: var(--white);
}

.td-min {
    width: 60px;
}

.td-state {
    display: inline-block;
}

.td-main {
    font-weight: 500;
    font-size: 16px;
}

.td-state + .td-main {
    margin-top: 12px;
}

.td-main + .td-sub-list {
    margin-top: 6px;
}

.td-sub-list {
    margin-top: 2px;
    width: 100%;
    float: left;
}

.td-sub-list .td-sub:last-child {
    margin-right: 0;
}

.td-sub-list .td-sub::after {
    content: "";
    width: 1px;
    height: 14px;
    background-color: var(--gray30);
    position: absolute;
    top: 2px;
    right: -10px;
}

.td-sub-list .td-sub:last-child::after {
    display: none;
}

.td-sub-list .td-sub {
    float: left;
    width: auto;
    margin-right: 20px;
    margin-bottom: 0;
}

.td-sub {
    color: var(--gray60);
    position: relative;
}

.td-list .td-sub {
    color: var(--black);
    margin-bottom: 8px;
}

.td-sub:last-child {
    margin-bottom: 0;
}

.td-sub .icon {
    width: 15px;
    height: 15px;
    color: var(--gray45);
    margin-right: 5px;
    top: 1px;
}

.td-list .td-sub .icon {
    color: var(--black);
    margin-right: 6px;
}

.td-light {
    color: var(--gray45);
}

.td-blue {
    color: var(--blue50);
}

.td-state {
    display: flex;
    gap: 8px;
}

.td-state .state {
    padding: 5px 10px;
    border-radius: 7px;
    line-height: 1.2;
    font-size: 13px;
    font-weight: 500;
    background-color: var(--gray5);
    border: 1px solid var(--gray5);
    color: var(--gray70);
    display: inline-block;
    white-space: nowrap;
}

.td-state .state.blue {
    background-color: var(--lightblue10);
    border: 1px solid var(--lightblue10);
    color: var(--blue50);
}

.td-state .state.red {
    background-color: var(--red10);
    border: 1px solid var(--red10);
    color: var(--red50);
}

.td-list {
    display: flex;
    gap: 10px;
    column-gap: 20px;
    flex-wrap: wrap;
}

.td-list > li {
    position: relative;
}

.td-list > li:after {
    content: "";
    position: absolute;
    top: 4px;
    right: -10px;
    width: 1px;
    height: 12px;
    background-color: var(--gray30);
}

.td-list > li:last-child:after {
    display: none;
}

.input-trans {
    width: 180px;
}

.input-trans input {
    font-size: 14px;
}

.center.input-trans input {
    text-align: center;
}

.td-btn .btn,
td .btn {
    padding: 6px 12px;
    font-size: 13px
}

.total-tr td {
    background-color: var(--lightblue5);
}

/***** 서브 테이블 *****/
.sub-tr {
    display: none;
}

.sub-tr > td {
    padding-top: 0;
    border-top: none;
}

.sub-table-section {
    width: 100%;
    background-color: var(--gray3);
    padding: 20px 25px;
    border-radius: 10px;
    border: 1px solid var(--gray10);
}

.sub-table-section .table th {
    padding-top: 0;
    border-top: none;
}

.sub-table-section .table tr:last-child td {
    padding-bottom: 0;
    border-bottom: none;
}

/***** 테이블 메뉴 *****/
.min-menu-section {
    display: inline-block;
    position: relative;
}

.min-menu {
    width: 88px;
    border: 1px solid var(--gray20);
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
    background-color: var(--white);
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    box-shadow: 0 0 15px #0001;
    z-index: 10;
}

.min-menu > li {
    width: 100%;
    border-bottom: 1px solid var(--gray15);
}

.min-menu > li:last-child {
    border-bottom: none;
}

.min-menu > li > a,
.min-menu > li > button {
    width: 100%;
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray70);
    padding: 10px;
    white-space: nowrap;
}

.min-menu > li > a.blue,
.min-menu > li > button.blue {
    color: var(--blue50);
}

.min-menu > li > a.red,
.min-menu > li > button.red {
    color: var(--red50);
}

.min-menu > li > a:hover,
.min-menu > li > button:hover {
    background-color: var(--gray3);
}

.min-menu > li > a:active,
.min-menu > li > button:active {
    background-color: var(--gray10);
}

/********** 슬라이드 리스트 **********/
.slide-list-section {
    width: 100%;
}

.slide-list {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.slide-list > li {
    width: 100%;
    padding: 25px 10px 25px 10px;
    border-top: 1px solid var(--gray20);
    cursor: pointer;
    background-color: var(--white);
}

.slide-list > li:last-child {
    border-bottom: 1px solid var(--gray20);
}

.slide-main {
    width: 100%;
    float: left;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slide-main p {
    font-weight: 500;
    font-size: 18px;
    width: calc(100% - 150px);
}

.active .slide-main p,
.slide-list > li.active:hover .slide-main p {
    color: var(--blue50);
}

.slide-list > li:hover .slide-main p {
    color: var(--gray70);
}

.slide-main .icon {
    float: right;
    color: var(--gray45);
}

.active .slide-main .icon {
    transform: rotate(180deg);
}

.slide-contents {
    display: none;
    margin-top: 18px;
    width: 100%;
    float: left;
}

.slide-contents p {
    font-weight: 400;
    line-height: 1.5;
}

.slide-edit {
    position: absolute;
    top: -3px;
    right: 35px;
}

.slide-edit .btn {
    padding: 6px 13px;
    font-size: 13px;
}

/********** 사이드 필터 **********/
.side-filter {
    width: 270px;
    margin-right: 40px;
}

.side-filter .border {
    padding: 25px 25px 5px 25px;
    width: 270px;
}

/***** 초기화 버튼 *****/
.cancel-btn,
.filter-cancel-btn {
    color: var(--gray50);
    cursor: pointer;
    margin-top: 2px;
    margin-left: 15px;
    float: right;
}

.cancel-btn:hover,
.filter-cancel-btn:hover {
    color: var(--gray70);
}

.cancel-btn p,
.filter-cancel-btn p {
    float: left;
    margin-right: 6px;
    font-weight: 500;
    font-size: 14px;
}

.cancel-btn .icon,
.filter-cancel-btn .icon {
    width: 15px;
    height: 15px;
}

/***** 필터 *****/
.filter {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter > li {
    width: 100%;
    border-bottom: 1px solid var(--gray15);
    display: flex;
    flex-direction: column;
}

.filter > li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.filter-menu {
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.filter-menu p {
    font-weight: 500;
}

.filter-menu .arrow-icon {
    transform: rotate(0deg);
}

.active .filter-menu .arrow-icon {
    transform: rotate(180deg);
    top: -3px;
}

.filter-contents {
    width: 100%;
    float: left;
    display: none;
    margin-bottom: 20px;
}

.active .filter-contents {
    display: block;
}

.filter-contents .radio-select > li {
    width: 100%;
    flex-direction: column;
}

.radio-select.list-half > li {
    flex-direction: row;
    width: calc(50% - 12px);
}

/*** 상품별 필터 ***/
.filter-set-list-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.filter-set-list-wrap:last-child {
    margin-bottom: 0;
}

.filter-set-list-title {
    width: 100%;
    font-size: 14px;
    color: var(--gray45);
    font-weight: 500;
}

.filter-set-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 16px;
}

.filter-set-list-title + .filter-set-list {
    padding-left: 16px;
}

.filter-set-list-title + .radio-select {
    padding-left: 12px;
    position: relative;
}

.filter-set-list-title + .filter-set-list::before,
.filter-set-list-title + .radio-select::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--gray20);
    position: absolute;
    top: 0;
    left: 0;
}

.filter-set-list > li {
    width: 100%;
    float: left;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-set-list > li p {
    font-size: 14px;
    float: left;
    color: var(--gray70);
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.filter-set-list > li input {
    padding: 6px 8px;
    font-size: 14px;
    border-radius: 7px;
}

.filter input {
    height: auto;
}

/*** 기간 필터 ***/
.date-filter {
    width: 100%;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.date-filter:first-child {
    margin-top: 0;
}

.date-input-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.date-input-wrap {
    width: calc(50% - 10px);
}

.filter .date-input-wrap input {
    padding: 6px 8px;
    font-size: 14px;
    height: auto;
}

.date-input-section span {
    display: block;
    width: 20px;
    line-height: 30px;
    float: left;
    text-align: center;
}

.date-filter-btn .btn {
    padding: 6px;
    border-radius: 6px;
}

/********** 라디오 셀렉트 **********/
.form-list .radio-select {
    margin-top: 9px;
}

.radio-select {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    column-gap: 20px;
}

.radio-select > li input[type=radio] {
    display: none;
}

.radio-select-btn {
    cursor: pointer;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.radio-btn {
    border: 1px solid var(--gray30);
    min-width: 16px;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background-color: var(--white);
    margin-top: 1px;
}

.radio-btn span {
    width: 8px;
    height: 8px;
    background-color: var(--white);
    border-radius: 50px;
    display: none;
}

.radio-select-btn:hover .radio-btn span {
    background-color: var(--lightblue10);
    display: block;
}

.radio-select > li input[type=radio]:checked + .radio-select-btn .radio-btn {
    border: 1px solid var(--blue50);
}

.radio-select > li input[type=radio]:checked + .radio-select-btn .radio-btn span {
    display: block;
    background-color: var(--blue50);
}

.radio-select-btn p {
    font-weight: 400;
    font-size: 14px;
    float: left;
    letter-spacing: -0.3px;
    line-height: 1.4;
}

.form-list .radio-select-btn p {
    font-size: 15px;
}

/********** 체크박스 셀렉트 **********/
.check-select {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    column-gap: 20px;
}

.check-select > li input[type=checkbox],
.check-select > li input[type=radio] {
    display: none;
}

.check-select-btn {
    cursor: pointer;
    display: flex;
    gap: 8px;
    align-items: center;
}

.check-btn {
    border: 1px solid var(--gray30);
    width: 18px;
    height: 18px;
    overflow: hidden;
    border-radius: 5px;
    color: var(--white);
    background-color: var(--white);
    position: relative;
}

.check-select-btn:hover .check-btn {
    background-color: var(--lightblue10);
}

.table-checkbox {
    width: 20px;
}

.table-check-btn {
    display: inline-block;
    width: fit-content;
}

.table-check-btn .check-btn {
    margin-right: 0;
    width: 18px;
    height: 18px;
}

.check-btn .icon {
    width: 10px;
    height: 10px;
    position: absolute;
    top: -2px;
    left: 3px;
}

.table-check-btn .check-btn .icon {
    left: 2px;
}

.table-check-btn input[type=checkbox]:checked + .check-select-btn .check-btn,
.check-select > li input[type=checkbox]:checked + .check-select-btn .check-btn,
.check-select > li input[type=radio]:checked + .check-select-btn .check-btn {
    background-color: var(--blue50);
    border: 1px solid var(--blue50);
}

.check-select-btn p {
    font-weight: 500;
    font-size: 15px;
}

.check-select-btn:hover p {
    color: var(--gray70);
}

/********** 박스 셀렉트 **********/
.box-select {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
}

.grid02 > li,
#join-company .box-select > li {
    width: calc(50% - 6px);
}

.box-select input[type=radio],
.box-select input[type=checkbox] {
    display: none;
}

.box-select input[type=radio]:checked + .box-select-btn,
.box-select input[type=checkbox]:checked + .box-select-btn {
    border: 1px solid var(--blue50);
    color: var(--blue50);
}

.box-select-btn {
    width: 100%;
    padding: 12px 18px;
    display: inline-block;
    border: 1px solid var(--gray30);
    color: var(--gray45);
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
}

.form-full-section .box-select-min .box-select-btn-contents p {
    font-size: 15px;
}

.box-select-min .box-select-btn {
    padding: 10px 20px 9px 20px;
}

.form-full-section .box-select-min .box-select-btn {
    padding: 9px 16px 8px 16px;
}

.box-select-btn p {
    font-weight: 500;
}

.box-select-btn:hover {
    border: 1px solid var(--gray40);
    color: var(--gray50);
}

.box-select-btn-contents .icon {
    width: 22px;
    height: 22px;
    margin-right: 8px;
}

.box-select-btn-contents p {
    float: left;
    font-weight: 500;
    font-size: 16px;
}

.box-select-btn-contents .icon + p {
    padding-top: 2px;
}

.box-select-min .box-select-btn-contents p {
    margin-top: 0;
}

/********** 페이지네이션 **********/
.pagination-wrap {
    width: 100%;
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: inline-block;
    display: flex;
    gap: 5px;
}

.pagination > a,
.paging-dot {
    display: block;
    width: 30px;
    height: 28px;
    line-height: 28px;
    font-size: 14px;
    font-weight: 400;
    color: var(--gray70);
    background-color: var(--white);
    text-align: center;
    border-radius: 6px;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.pagination > a:hover {
    background-color: var(--gray5);
}

.pagination > a:active {
    background-color: var(--gray10);
}

.pagination > a.active,
.pagination > a.active:hover,
.pagination > a.active:active {
    background-color: var(--lightblue10);
    color: var(--blue50);
    font-weight: 600;
}

.paging-dot {
    line-height: 20px;
    width: 15px;
    letter-spacing: 0.5px;
    color: var(--gray50);
}

.pagination > a.paging-prev,
.pagination > a.paging-next {
    min-width: 12px;
    line-height: inherit;
    display: flex;
    align-items: center;
}

.pagination > a.paging-prev:hover,
.pagination > a.paging-next:hover {
    background-color: var(--white);
}

.pagination > a.paging-prev {
    margin-right: 5px;
}

.pagination > a.paging-next {
    margin-left: 5px;
}

.paging-prev p,
.paging-next p {
    float: left;
    line-height: 28px;
    display: none;
}

.paging-prev p {
    margin-left: 5px;
}

.paging-next p {
    margin-right: 5px;
}

.pagination > a .icon {
    width: 16px;
    height: 16px;
}

/********** 로그인, 회원가입 **********/
#login-section,
#join-section {
    padding: 0;
}

.single-form {
    width: 320px;
    margin: 50px auto 100px auto;
    padding: 0;
    flex-direction: column;
}

#login-section .single-form {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    margin: 0;
}

.single-form-top {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.single-form-top .logo {
    width: 200px;
    display: inline-block;
}

.single-form-top h2 {
    font-size: 22px;
    font-weight: 600;
}

.single-form-contents {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.single-form-info {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.single-form-info-txt {
    font-size: 15px;
    font-weight: 400;
    display: flex;
    gap: 8px;
    color: var(--gray60);
}

.single-form-info-txt a {
    color: var(--gray70);
    font-weight: 500;
    text-decoration: underline;
}

.single-form-info-txt a:hover {
    color: var(--blue50);
}

.single-form .form-btn-wrap .btn {
    font-size: 15px;
    height: 40px;
}

.single-form .form-btn-wrap .back-btn {
    width: 100px;
}

.single-form .form-btn-wrap .next-btn,
.single-form .form-btn-wrap .form-btn {
    width: calc(100% - 110px);
}

/********** 입력 폼 **********/
.normal-section {
    padding-top: 40px;
    border-top: 1px solid var(--gray20);
}

.form-full-section.normal-section {
    padding-top: 0;
}

.form-contents {
    margin-bottom: 35px;
}

.form-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

#login-section .form-list,
.modal .form-list {
    gap: 20px;
}

.form-list-wrap02,
.form-list-wrap03 {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.form-list-wrap02 .form-list {
    width: calc(50% - 30px);
    margin-right: 60px;
    flex-direction: column;
}

.form-list-wrap03 .form-list {
    width: calc(33.33% - 30px);
    margin-right: 60px;
    flex-direction: column;
}

.form-section .form-list {
    margin-bottom: 40px;
    display: none;
}

.paper-form-section .form-list,
.form-full-section .form-list {
    display: block;
}

.form-list:last-child {
    margin-right: 0;
}

.form-list > li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
}

.large-form-contents .form-list > li,
.form-full-section .form-list > li {
    gap: 15px;
}

#join-section .form-list > li {
    margin-bottom: 30px;
}

.form-list > li.half {
    width: calc(50% - 15px);
    margin-right: 30px;
}

.form-list > li.mr0 {
    margin-right: 0;
}

.form-list > li:last-child,
.form-list > li.half:nth-child(2n) {
    margin-bottom: 0;
    margin-right: 0;
}

.form-section .form-list > li {
    padding-bottom: 40px;
    margin-top: 40px;
    border-bottom: 1px solid var(--gray20);
}

.paper-form-section .form-list {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-top: 1px solid var(--gray20);
    border-bottom: 1px solid var(--gray20);
}

.form-min-section .form-list > li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray20);
}

.paper-form-section .form-list > li {
    margin-bottom: 30px;
}

.paper-form-section .form-list > li:last-child {
    margin-bottom: 0;
}

#join-section .form-section .form-list > li {
    margin-top: 0;
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 30px;
}

#join-section .form-section .form-list > li:last-child {
    margin-bottom: 0;
}

.form-section .form-list > li:first-child {
    margin-top: 0;
}

.form-full-section .form-list:first-child > li:first-child {
    margin-top: 40px;
}

form-list-top,
.form-list-main,
.form-list-bottom,
.form-top,
.form-main,
.form-bottom {
    width: 100%;
}

.form-top,
.form-list-top {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.form-min-section .form-top {
    width: 240px;
    margin-top: 10px;
}

.form-top label,
.form-top p,
.form-list-title {
    font-weight: 500;
    font-size: 15px
}

.form-min-section .form-top label:nth-child(n),
.form-min-section .form-top p:nth-child(n) {
    font-size: 16px;
}

.large-form-contents .form-top label,
.large-form-contents .form-top p {
    font-weight: 500;
    font-size: 19px;
}

.paper-form-section .form-top label,
.paper-form-section .form-top p {
    font-size: 16px;
    font-weight: 500;
}

.form-top p.form-top-info {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray50);
    width: 100%;
}

.form-list-top .btn,
.form-top .btn {
    font-size: 13px;
    padding: 7px 12px;
    margin-left: 0;
}

.form-main,
.form-list-main {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.form-min-section .form-main {
    width: calc(100% - 240px);
}

.form-main.w350 {
    width: 350px;
}

.form-main-hasunit {
    position: relative;
    float: left;
    width: 350px;
}

.form-main-hasunit.w200,
.form-main-hasunit.w200 input {
    width: 200px;
}

.form-main-hasunit.w450,
.form-main-hasunit.w450 input {
    width: 450px;
}

.form-main-hasunit.align {
    margin-right: 10px;
    margin-bottom: 10px;
}

.form-main-hasunit:last-child {
    margin-right: 0;
    margin-bottom: 0;
}

.form-main-hasunit-auto {
    width: auto;
    margin-bottom: 0;
    margin-right: 0;
}

.form-list-main.hasbtn04 input {
    width: calc(100% - 90px);
}

.form-main .form-top-info {
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
    color: var(--gray50);
    width: 100%;
}

.essential {
    color: var(--blue50);
    margin-left: 3px;
}

.form-list > li textarea {
    height: 240px;
}

.paper-form-section textarea {
    padding: 10px 12px;
    height: 400px;
    width: 100%;
}

.form-list-input-wrap {
    position: relative;
    width: 100%;
}

.form-section input,
.form-section select,
.form-min-section input,
.form-min-section select {
    width: 350px;
}

.form-section input.w200,
.form-section select.w200 {
    width: 200px;
}

.form-section input.w400,
.form-section select.w400 {
    width: 400px;
}

.form-section input.w500,
.form-section select.w500 {
    width: 500px;
}

.form-main-hasunit input {
    padding-right: 30px;
}

.input-unit,
.form-main-hasunit .icon-btn {
    position: absolute;
    top: 11px;
    right: 12px;
    color: var(--gray70);
    font-weight: 500;
}

.form-main-hasunit .icon-btn.pw-hide {
    display: none;
}

.form-list-input-wrap .unit {
    color: var(--gray45);
    position: absolute;
    top: 9px;
    right: 10px;
}

.form-list-input-wrap .unit.icon {
    cursor: pointer;
}

.form-list-input-wrap .unit.icon:hover {
    color: var(--blue50);
}

.input-to {
    width: 100px;
    float: left;
    position: relative;
    margin-right: 25px;
}

.input-to::after {
    content: "~";
    position: absolute;
    top: 5px;
    right: -18px;
    font-size: 20px;
    font-weight: 300;
}

.input-to:last-child {
    margin-right: 0;
}

.input-to:last-child::after {
    display: none;
}

.input-short {
    width: calc(33.33% - 10px);
}

.input-short:nth-child(3n) {
    margin-right: 0;
}

.form-list-info {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.info-contents + .form-list-info {
    margin-top: 20px;
}

.form-list-info > li {
    width: 100%;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 5px;
    color: var(--gray60);
    padding-left: 12px;
    position: relative;
    word-break: break-all;
}

.form-list-info > li:last-child {
    margin-bottom: 0;
}

.form-list-info > li::before {
    content: "";
    width: 5px;
    height: 1px;
    background-color: var(--gray50);
    position: absolute;
    top: 9px;
    left: 0;
}

.info-contents {
    background-color: var(--gray3);
    padding: 16px 20px;
    margin-bottom: 10px;
    width: 100%;
    border-radius: 10px;
    margin-top: 5px;
}

.info-contents p {
    font-size: 15px;
    line-height: 1.4;
    color: var(--gray70);
}

.info-contents p.info-title {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--black);
}

.form-sub-list-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.form-sub-list-wrap:last-child {
    margin-bottom: 0;
}

.form-sub-list-top {
    font-size: 15px;
    color: var(--gray55);
}

.form-sub-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-sub-list-top + .form-sub-list {
    padding-left: 20px;
}

.form-sub-list-top + .form-sub-list::before {
    content: "";
    width: 1px;
    height: calc(100% - 8px);
    background-color: var(--gray20);
    position: absolute;
    top: 0;
    left: 0;
}

.form-sub-list > li {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-sub-list-title {
    float: left;
    font-size: 15px;
    color: var(--gray70);
    font-weight: 500;
    line-height: 1.4;
}

.form-main-list > li {
    margin-bottom: 15px;
    width: 100%;
    float: left;
}

.form-main-list > li:last-child {
    margin-bottom: 0;
}

.form-main-list > li > label,
.form-main-list > li > p {
    font-weight: 500;
    font-size: 16px;
    color: var(--gray50);
    margin-right: 12px;
    float: left;
    margin-top: 11px;
}

.form-main-list > li input,
.form-main-list > li select {
    float: left;
}

.form-list-main.hasbtn input {
    width: calc(100% - 65px);
}

.form-main input[type=file] {
    display: none;
}

.form-main .datepicker {
    width: 150px;
}

.between {
    display: block;
    float: left;
    font-weight: 500;
    color: var(--gray50);
    font-size: 20px;
    margin: 7px;
}

.form-main .timepicker {
    width: 115px;
}

.form-main-input-list {
    width: 100%;
    float: left;
    margin-top: 10px;
}

.form-main-input-list > li {
    float: left;
    width: 200px;
    margin-bottom: 25px;
    margin-right: 40px;
}

.form-main-input-list > li .form-main-hasunit {
    width: 100%;
}

.form-main-input-list > li label {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 15px;
    color: var(--gray50);
    margin-bottom: 8px;
}

.form-main-input-list > li input {
    width: 100%;
}

.form-main-info {
    padding: 14px 18px;
    display: inline-block;
    float: left;
    border: 1px solid var(--gray20);
    background-color: var(--gray5);
    border-radius: 10px;
}

.form-main-info p {
    font-weight: 500;
    line-height: 1;
}

.form-main-info p span {
    margin-right: 10px;
    padding-right: 10px;
    display: inline-block;
    border-right: 1px solid var(--gray30);
}

.form-main-error input {
    border: 1px solid var(--red50);
}

.error-txt {
    color: var(--red50);
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    width: 100%;
    float: left;
    display: none;
}

.form-main-error .error-txt {
    display: block;
}

#login-section .form-btn-wrap {
    width: 100%;
    float: left;
    margin-top: 10px;
}

.form-full-section .form-btn-wrap {
    margin-top: 10px;
    width: 100%;
}

.form-btn-wrap {
    display: flex;
    gap: 10px;
}

.form-btn-wrap .btn {
    font-size: 15px;
    height: 40px;
    width: 100%;
}

.form-btn-wrap .btn:last-child {
    margin-right: 0;
}

.form-btn-wrap .btn {
    width: 120px;
}

.form-btn-wrap .form-btn,
.form-btn-wrap .next-btn {
    width: 200px;
}

#join-section .form-btn-wrap .form-btn,
#join-section .form-btn-wrap .next-btn {
    width: calc(100% - 110px);
}

#join-section .form-step01 .next-btn {
    width: 100%;
}

/***** 스탭 바 *****/
.form-step-bar {
    width: 100%;
    float: left;
    margin-bottom: 30px;
}

.form-section .form-step-bar {
    margin-bottom: 40px;
}

.form-step-txt {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 12px;
}

.form-step-txt > li {
    cursor: pointer;
    font-weight: 500;
    color: var(--gray45);
    font-size: 17px;
}

.form-step-bar02 .form-step-txt > li {
    width: 50%;
}

.form-step-bar03 .form-step-txt > li {
    width: 33.33%;
}

.form-step-bar04 .form-step-txt > li {
    width: 25%;
}

.form-step01 .form-step-txt > li:nth-child(1),
.form-step02 .form-step-txt > li:nth-child(1),
.form-step02 .form-step-txt > li:nth-child(2),
.form-step03 .form-step-txt > li:nth-child(1),
.form-step03 .form-step-txt > li:nth-child(2),
.form-step03 .form-step-txt > li:nth-child(3),
.form-step04 .form-step-txt > li:nth-child(1),
.form-step04 .form-step-txt > li:nth-child(2),
.form-step04 .form-step-txt > li:nth-child(3),
.form-step04 .form-step-txt > li:nth-child(4),
.form-step05 .form-step-txt > li:nth-child(1),
.form-step05 .form-step-txt > li:nth-child(2),
.form-step05 .form-step-txt > li:nth-child(3),
.form-step05 .form-step-txt > li:nth-child(4),
.form-step05 .form-step-txt > li:nth-child(5) {
    color: var(--blue50);
    font-weight: 600;
}

#form-rewrite .form-step-bar > .form-step-txt > li:nth-child(n) {
    color: var(--blue50);
    font-weight: 600;
}

.form-step-bar-line {
    width: 100%;
    height: 3px;
    background-color: var(--gray15);
}

.form-step-bar-line span {
    display: block;
    height: 100%;
}

.form-step-bar02 .form-step-bar-line span {
    width: 50%;
    background-color: var(--blue50);
    transition: all 300ms;
}

.form-step-bar03 .form-step-bar-line span {
    width: 33.33%;
    background-color: var(--blue50);
    transition: all 300ms;
}

.form-step02 .form-step-bar03 .form-step-bar-line span {
    width: 66.66%;
}

.form-step-bar04 .form-step-bar-line span {
    width: 25%;
    background-color: var(--blue50);
    transition: all 300ms;
}

.form-step02 .form-step-bar04 .form-step-bar-line span {
    width: 50%;
}

.form-step03 .form-step-bar04 .form-step-bar-line span {
    width: 75%;
}

.form-step02 .form-step-bar02 .form-step-bar-line span,
.form-step03 .form-step-bar03 .form-step-bar-line span,
.form-step04 .form-step-bar04 .form-step-bar-line span {
    width: 100%;
}

/***** 스탭별 입력폼 *****/
.single-form-step .form-list,
.single-form-step .single-form-title h2,
.single-form-step .form-btn-wrap .btn,
#join-section .single-form-title h2,
#join-section .form-btn-wrap .btn {
    display: none;
}

.form-step01 .form-list:nth-child(1),
.form-step02 .form-list:nth-child(2),
.form-step03 .form-list:nth-child(3),
.form-step04 .form-list:nth-child(4),
.single-form-step.form-step01 .form-btn-wrap .btn.next-btn,
.single-form-step.form-step02 .form-btn-wrap .btn.back-btn,
.single-form-step.form-step02 .form-btn-wrap .btn.next-btn,
.single-form-step.form-step03 .form-btn-wrap .btn.back-btn,
.single-form-step.form-step03 .form-btn-wrap .btn.form-btn,
#join-section .form-step01 .form-btn-wrap .btn.next-btn,
#join-section .form-step02 .form-btn-wrap .btn.back-btn,
#join-section .form-step02 .form-btn-wrap .btn.next-btn,
#join-section .form-step03 .form-btn-wrap .btn.back-btn,
#join-section .form-step03 .form-btn-wrap .btn.form-btn {
    display: flex;
}

.single-form-step.form-step01 .single-form-title h2:nth-child(1),
.single-form-step.form-step02 .single-form-title h2:nth-child(2),
.single-form-step.form-step03 .single-form-title h2:nth-child(3),
#join-section .form-step01 .single-form-title h2:nth-child(1),
#join-section .form-step02 .single-form-title h2:nth-child(2),
#join-section .form-step03 .single-form-title h2:nth-child(3) {
    display: block;
}

.single-form-step.form-step01 .form-btn-wrap .btn.next-btn {
    width: 100%;
    margin-left: 0;
}

/********** 모달 **********/
.modal-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0003;
    z-index: 30;
    display: none;
}

.modal {
    position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    padding: 30px 35px;
    border-radius: 15px;
    transition: all 400ms;
    display: none;
    width: 550px;
    flex-direction: column;
}

.modal.fadeup {
    top: 50%;
}

.modal.wide {
    width: 600px;
}

.modal.wide2 {
    width: 1000px;
}

.modal.fadeup {
    top: 50%;
}

#mission-preview.modal-box {
    width: 400px;
}

.modal form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.modal-top,
.modal-contents,
.modal-bottom {
    width: 100%;
    margin-bottom: 30px;
}

.modal-top:last-child,
.modal-contents:last-child,
.modal-bottom:last-child {
    margin-bottom: 0;
}

/***** 모달 상단 *****/
.modal-title {
    font-size: 20px;
    font-weight: 600;
    float: left;
}

.icon.modal-off {
    float: right;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.modal-off:hover {
    color: var(--gray70);
}

.modal-contents {
    max-height: 65vh;
    overflow: hidden;
    overflow-y: auto;
    padding-right: 5px;
}

/***** 모달 테이블 *****/
.modal-table {
    margin-top: 30px;
}

/********** 컴포넌트 **********/
/***** 아이콘 *****/
.icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    float: left;
    position: relative;
}

.arrow-icon {
    width: 16px;
    color: var(--gray45);
}

.icon.blue {
    color: var(--blue50);
}

.icon.gray {
    color: var(--gray45);
}

.icon-circle {
    display: block;
    text-align: center;
    font-weight: 700;
    color: var(--white);
    width: 20px;
    height: 20px;
    line-height: 20px;
    background-color: var(--blue50);
    border-radius: 50px;
    float: left;
    font-size: 12px;
    position: relative;
}

.icon svg {
    position: relative;
}

/***** 배지 *****/
.badge-wrap {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.badge {
    display: inline-block;
    border-radius: 8px;
    white-space: nowrap;
    text-align: center;
    line-height: 1.2;
    position: relative;
}

.badge {
    display: inline-block;
    padding: 7px 13px;
    font-size: 14px;
    font-weight: 500;
    background-color: var(--gray10);
    color: var(--gray60);
}

.badge.blue {
    background-color: var(--lightblue10);
    color: var(--blue50);
}

.badge.red {
    background-color: var(--red10);
    color: var(--red50);
}

.badge.green {
    background-color: var(--green10);
    color: var(--green60);
}

/***** 버튼 *****/
.btn-wrap {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-wrap.max {
    width: 100%;
}

.form-btn-section {
    width: 100%;
    display: flex;
    gap: 10px;
}

.border .form-btn-section {
    margin-top: 30px;
}

.form-btn-section.center {
    justify-content: center;
}

.form-btn-section.right {
    justify-content: flex-end;
}

.form-btn-section .btn {
    width: 120px;
    padding: 10px 16px;
    font-size: 15px;
}

.btn {
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    background-color: var(--gray45);
    border: 1px solid var(--gray45);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 8px;
    text-align: center;
    float: left;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn.max {
    width: 100%;
}

.btn.half {
    width: calc(50% - 5px);
    margin-right: 10px;
}

.btn.disab-btn {
    cursor: inherit;
}

.btn.large {
    height: 40px;
    font-size: 15px;
}

.btn:hover {
    background-color: var(--gray50);
    border: 1px solid var(--gray50);
}

.btn.blue,
.btn.disab-btn.blue:hover {
    background-color: var(--blue50);
    border: 1px solid var(--blue50);
}

.btn.blue:hover {
    background-color: var(--blue60);
    border: 1px solid var(--blue60);
}

.btn.blue:active {
    background-color: var(--blue70);
    border: 1px solid var(--blue70);
}

.btn.red,
.btn.disab-btn.red:hover {
    background-color: var(--red50);
    border: 1px solid var(--red50);
}

.btn.red:hover {
    background-color: var(--red60);
    border: 1px solid var(--red60);
}

.btn.red:active {
    background-color: var(--red70);
    border: 1px solid var(--red70);
}

/*** 서브 버튼 ***/
button.btn:disabled:nth-child(n),
button.btn:nth-child(n):disabled:hover,
.btn.sub {
    background-color: var(--gray15);
    border: 1px solid var(--gray15);
    color: var(--gray70);
    font-weight: 500;
}

.btn.sub:hover {
    background-color: var(--gray20);
}

.btn.sub:active {
    background-color: var(--gray30);
}

.btn.blue.sub,
.btn.disab-btn.blue.sub:hover {
    background-color: var(--lightblue10);
    border: 1px solid var(--lightblue10);
    color: var(--blue50);
}

.btn.blue.sub:hover {
    background-color: var(--lightblue20);
    border: 1px solid var(--lightblue20);
}

.btn.blue.sub:active {
    background-color: var(--lightblue30);
    border: 1px solid var(--lightblue30);
}

.btn.red.sub,
.btn.disab-btn.red.sub:hover {
    background-color: var(--red10);
    border: 1px solid var(--red10);
    color: var(--red50);
}

.btn.red.sub:hover {
    background-color: var(--red20);
    border: 1px solid var(--red20);
}

.btn.red.sub:active {
    background-color: var(--red30);
    border: 1px solid var(--red30);
}

/*** 라인 버튼 ***/
.btn.line {
    background-color: var(--white);
    border: 1px solid var(--gray30);
    color: var(--gray50);
    font-weight: 500;
}

.btn.line:hover {
    background-color: var(--gray3);
}

.btn.line:active {
    background-color: var(--gray10);
}

.btn.line.blue {
    border: 1px solid var(--blue50);
    color: var(--blue50);
}

.btn.line.blue:hover {
    background-color: var(--lightblue5);
}

.btn.line.blue:active {
    background-color: var(--lightblue10);
}

.btn.line.red {
    border: 1px solid var(--red50);
    color: var(--red50);
}

.btn.line.red:hover {
    background-color: var(--red5);
}

.btn.line.red:active {
    background-color: var(--red10);
}

/*** 아이콘 텍스트 버튼 ***/
.btn.hasicon {
    display: flex;
    gap: 6px;
    align-items: center;
}

.hasicon .icon {
    float: left;
    width: 17px;
    height: 17px;
}

.hasicon p {
    float: left;
}

/*** 아이콘 버튼 ***/
.icon.icon-btn {
    display: inline-block;
    cursor: pointer;
    float: inherit;
}

.icon.icon-btn {
    color: var(--gray45);
}

.icon.icon-btn:hover {
    color: var(--gray50);
}

.icon.icon-btn:active {
    color: var(--gray70);
}

/*** 링크 버튼 ***/
.link-btn {
    color: var(--gray50);
}

.link-btn:hover {
    color: var(--gray70);
}

.link-btn p {
    float: left;
    margin-right: 5px;
    font-size: 14px;
    font-weight: 500;
}

.link-btn .icon {
    width: 14px;
    height: 14px;
}

/*** 태그 ***/
.tag {
    display: inline-block;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    white-space: nowrap;
    border: 1px solid var(--blue50);
    color: var(--blue50);
    font-size: 14px;
}

/********** 헤더 **********/
#header {
    width: 100%;
    padding: 30px 80px 30px 290px;
    height: 80px;
    background-color: var(--white);
}

/***** 알림 *****/
.alarm {
    float: left;
    margin-right: 25px;
    position: relative;
}

.header-btn {
    cursor: pointer;
    position: relative;
    float: left;
}

.header-btn:hover,
.header-btn.active {
    color: var(--blue50);
}

.alarm-point {
    width: 8px;
    height: 8px;
    background-color: var(--blue50);
    border-radius: 50px;
    position: absolute;
    top: -1px;
    right: 1px;
}

/*** 알림 모달 ***/
.alarm-modal {
    width: 320px;
}

.header-modal {
    position: fixed;
    top: 65px;
    right: 75px;
    padding: 25px 30px;
    box-shadow: 0 0 20px #0001;
    background-color: var(--white);
    display: none;
    z-index: 20;
}

.alarm-modal-top {
    width: 100%;
    float: left;
}

.alarm-modal-title {
    float: left;
}

.alarm-modal-title p {
    float: left;
    font-weight: 600;
    margin-right: 6px;
    font-size: 17px;
}

.alarm-modal-title span {
    display: inline-block;
    float: left;
    background-color: var(--blue50);
    border-radius: 50px;
    font-size: 12px;
    color: var(--white);
    position: relative;
    font-weight: 600;
    padding: 0 6px;
    text-align: center;
    width: auto;
    min-width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.alarm-all-check {
    float: right;
    color: var(--gray50);
    cursor: pointer;
    margin-top: 2px;
}

.alarm-all-check:hover {
    color: var(--gray45);
}

.alarm-all-check .icon {
    width: 14px;
    height: 14px;
    top: -1px;
}

.alarm-all-check p {
    float: left;
    font-size: 13px;
    font-weight: 500;
    margin-left: 4px;
}

.alarm-list {
    width: 100%;
    float: left;
    margin-top: 18px;
    max-height: 70vh;
    overflow: hidden;
    overflow-y: auto;
}

.alarm-list > li {
    width: 100%;
    float: left;
    padding: 20px 10px 16px 0;
    border-top: 1px solid var(--gray20);
    font-size: 14px;
}

.alarm-list > li:last-child {
    padding-bottom: 0;
}

.alarm-check {
    opacity: 0.5;
    filter: grayscale();
}

.alarm-list-top {
    width: 100%;
    float: left;
    margin-bottom: 8px;
}

.alarm-list-title {
    color: var(--blue50);
    font-weight: 600;
    float: left;
    max-width: 145px;
}

.alarm-list-date {
    color: var(--gray50);
    float: right;
    font-size: 13px
}

.alarm-list-content {
    width: 100%;
    float: left;
}

.alarm-list-content p {
    font-weight: 500;
    color: var(--gray70);
    line-height: 1.4;
    text-align: justify;
}

.alarm-list-content p span {
    color: var(--black);
}

/***** 포인트 *****/
.point {
    float: left;
    margin-right: 25px;
    position: relative;
    cursor: pointer;
}

.point .icon-circle {
    float: left;
    margin-right: 8px;
}

.point-txt {
    float: left;
    font-weight: 500;
    font-size: 15px;
    padding-top: 1px;
}

.point .btn {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 105px;
    width: 100%;
    padding: 10px;
    display: none;
}

.point:hover {
    padding-bottom: 20px;
}

.point:hover .btn {
    display: block;
    margin-left: 0;
}

/***** 내정보 *****/
.account {
    float: left;
    position: relative;
}

.account-btn .icon {
    margin-right: 5px;
}

.account-name {
    float: left;
    font-weight: 500;
    font-size: 15px;
    padding-top: 1px;
}

/*** 내정보 모달 ***/
.account-modal {
    width: 280px;
}

.account-main {
    width: 100%;
    float: left;
    position: relative;
    margin-bottom: 20px;
}

.account-type {
    float: left;
    margin-bottom: 12px;
    position: relative;
    top: -3px;
    width: 100%;
}

.account-type p {
    padding: 8px 14px 8px 14px;
    border-radius: 7px;
    background-color: var(--gray10);
    color: var(--gray50);
    font-weight: 600;
    font-size: 13px;
    line-height: 1;
    float: left;
    margin-right: 7px;
}

.account-type p:last-child {
    margin-right: 0;
}

.account-type p.blue {
    color: var(--blue50);
    background-color: var(--lightblue10);
}

.account-modal .account-name {
    float: left;
    padding-top: 0;
    font-size: 18px;
    font-weight: 600;
}

.account-id {
    color: var(--gray50);
    width: 100%;
    float: left;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 500;
}

.account-info {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

.account-info-list {
    width: 100%;
    float: left;
    padding: 10px 10px;
    border: 1px solid var(--gray20);
    border-radius: 8px;
}

.account-info-txt {
    float: right;
    font-weight: 600;
}

.account-info-btn {
    width: 100%;
    float: left;
    margin-top: 10px;
}

.account-menu {
    width: 100%;
    float: left;
    padding-top: 20px;
    border-top: 1px solid var(--gray20);
}

.account-menu > li {
    width: 100%;
    float: left;
    margin-bottom: 18px;
}

.account-menu > li:last-child {
    margin-bottom: 0;
}

.account-menu > li > a {
    display: block;
    color: var(--gray70);
}

.account-menu > li > a:hover {
    color: var(--black);
}

.account-menu > li > a .icon {
    width: 22px;
    height: 22px;
}

.account-menu > li > a > p {
    font-weight: 500;
    font-size: 15px;
    margin-left: 8px;
    float: left;
    margin-top: 2px;
}

/********** 사이드바 **********/
#side-bar {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--white);
    border-right: 1px solid var(--gray20);
    padding: 30px 25px 80px 25px;
    height: 100vh;
    z-index: 20;
    width: 210px;
}

/***** 로고 *****/
.logo {
    width: 160px;
}

/***** 메뉴 *****/
.side-menu {
    margin-top: 25px;
    width: 100%;
}

.menu > li {
    margin-bottom: 30px;
    width: 100%;
    float: left;
    overflow: hidden;
}

.main-menu {
    width: 100%;
    float: left;
    cursor: pointer;
    color: var(--black);
    overflow: hidden;
}

.main-menu:hover,
.active .main-menu,
.sub-menu-txt:hover,
.active > .sub-menu-txt:hover,
.active > .sub-menu-txt {
    color: var(--blue50);
}

.active > .sub-menu-txt {
    background-color: var(--lightblue10);
}

.main-menu .icon {
    margin-right: 12px;
}

.main-menu-txt {
    font-weight: 500;
    float: left;
    margin-top: 1px;
}

.main-menu .arrow-icon {
    float: right;
    margin-right: 0;
    top: 2px;
    transform: rotate(0deg);
}

.active .main-menu .arrow-icon {
    transform: rotate(180deg);
    top: -1px;
}

.menu > li:last-child {
    margin-bottom: 0;
}

/*** 서브메뉴 ***/
.menu > li.active .sub-menu {
    display: block;
}

.sub-menu {
    width: 100%;
    margin-top: 10px;
    display: none;
    float: left;
}

.sub-menu > li {
    width: 100%;
    float: left;
}

.sub-menu-txt {
    display: block;
    width: 100%;
    float: left;
    padding: 8px 8px 8px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

/***** 사이트 정보 *****/
.header-info {
    position: absolute;
    bottom: 30px;
    left: 25px;
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    color: var(--gray50);
}

/********** 플로팅 **********/
#floating {
    position: fixed;
    bottom: 60px;
    right: 40px;
    z-index: 99;
}

.floating-btn {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 8px;
    color: #8e8e8e;
    box-shadow: 0 0 15px #3331;
    cursor: pointer;
    position: relative;
}

.floating-btn:hover {
    background-color: var(--gray3);
}

.floating-btn:active {
    background-color: var(--gray10);
}

.floating-btn .icon {
    width: 26px;
    height: 26px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#top-btn {
    display: none;
}

#top-btn .icon {
    width: 22px;
    height: 22px;
}

/********** 로딩 애니 **********/
.loader-sec {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #fff9;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.loader span {
    display: inline-block;
    border: 4px solid var(--blue50);
    border-top: 4px solid var(--gray15);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 700ms linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader p {
    font-weight: 500;
    margin-top: 20px;
    font-size: 16px;
}

/********** 푸터 **********/
#footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px 80px 30px 290px;
}

.footer-contents {
    width: 100%;
    float: left;
}

.footer-contents.center {
    text-align: center;
}

#footer small {
    font-weight: 500;
    color: var(--gray50);
    font-size: 12px;
}

/********** 유틸리티 **********/
/***** 반응형 *****/
.hidden,
.pc:nth-child(n),
.pcFlex:nth-child(n),
.hp01 .pf01-dp,
.pf01 .hp01-dp {
    display: none !important;
}

.mob:nth-child(n) {
    display: block !important;
}

.mobFlex:nth-child(n) {
    display: flex !important;
}

/***** 넓이 *****/
.full:nth-child(n) {
    width: 100% !important;
}

.half:nth-child(n) {
    width: 50% !important;
}

.third:nth-child(n) {
    width: 33.33% !important;
}

.quarter:nth-child(n) {
    width: 25% !important;
}

.w40 {
    width: 40% !important;
}

.w60 {
    width: 60% !important;
}

.w100 {
    width: 100px !important;
}

.w150 {
    width: 150px !important;
}

.w200 {
    width: 200px !important;
}

.w250 {
    width: 250px !important;
}

.w300 {
    width: 300px !important;
}

.w400 {
    width: 400px !important;
}

.w500 {
    width: 500px !important;
}

/***** 높이 *****/
.h80 {
    height: 80px !important;
}

.h100 {
    height: 100px !important;
}

.h150 {
    height: 150px !important;
}

.h200 {
    height: 200px !important;
}

.h250 {
    height: 250px !important;
}

.h300 {
    height: 300px !important;
}

/***** 정렬 *****/
.align-column:nth-child(n) {
    flex-direction: column !important;
}

.align-row:nth-child(n) {
    flex-direction: row !important;
}

/***** 장식 *****/
.underline {
    text-decoration: underline;
}

@media all and (max-width: 500px) {
    main {
        padding-left: 150px;
    }

    section,
    .section {
        padding: 0 40px;
    }

    #side-bar {
        width: 150px;
        padding: 20px 15px 80px 15px;
    }

    #side-bar .logo {
        width: 100%;
        height: 17px;
    }

    .menu > li {
        margin-bottom: 25px;
    }

    .main-menu .icon {
        margin-right: 5px;
        width: 16px;
        height: 16px;
    }

    .main-menu-txt {
        font-size: 14px;
    }

    .side-menu {
        margin-top: 15px;
    }

    .sub-menu-txt {
        font-size: 13px;
        padding-left: 18px;
    }

    .header-info {
        left: 15px;
        font-size: 10px;
    }
}
