@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;

    /***** 사이즈 *****/
    --header-height: 60px;
    --footer-height: 840px;
    --side-padding: 0 24px;
}

/********** 초기 스타일 **********/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-wrap: break-word;
}

body {
    font-family: "Pretendard Variable", "Noto Sans KR", sans-serif;
    font-size: 14px;
    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", sans-serif;
    font-size: 14px;
    color: var(--black);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border: 1px solid var(--blue50);
}

input,
textarea,
select {
    border: 1px solid var(--gray25);
    background-color: var(--white);
    box-sizing: border-box;
    border-radius: 8px;
    font-weight: 500;
    width: 100%;
}

input[type=text],
input[type=password],
input[type=number],
textarea {
    padding: 8px 10px;
    resize: none;
}

select {
    padding: 7px 6px;
}

option {
    font-size: 1em;
}

input[type=file] {
    padding: 5px;
}

input::placeholder,
textarea::placeholder {
    color: var(--gray45);
    font-weight: 400;
}

button {
    cursor: pointer;
    font-weight: 500;
    padding: 5px 12px;
    white-space: nowrap;
}

button:focus {
    outline: none;
}

table {
    border-collapse: collapse;
}

th,
td {
    border: none;
}

iframe {
    width: 100%;
    height: 100%;
}

/********** 공통 스타일 **********/
html {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.wrap {
    width: 100%;
    min-width: 1600px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
    padding-top: 70px;
    padding-bottom: 130px;
}

/********** 영역 **********/
main {
    width: 100%;
    overflow: hidden;
    padding: 40px 60px 100px 270px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-self: flex-start;
    gap: 30px;
}

.content#mypage-content {
    gap: 15px;
}

.box {
    width: 100%;
    border: 1px solid var(--gray20);
    border-radius: 10px;
    padding: 27px 30px;
    overflow: hidden;
}

.cont-sec {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

/***** 대시보드 *****/
.dashboard-section {
    gap: 30px;
}

.dashboard-section .content {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.dashboard-section .box {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    flex: 1;
    overflow: inherit;
}

.cont-date-wrap {
    margin-left: auto;
}

.txt-blue {
    color: var(--blue50);
    font-weight: 600;
}

/***** 추후 삭제 *****/
.dashboard-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.dashboard-content.part2 .box {
    width: calc(50% - 20px);
    margin-bottom: 0;
}

.dashboard-content.part2 .box .cont-top {
    margin-bottom: 20px;
}

/********** 막대 차트 **********/
.barChart-wrap {
    width: 100%;
    height: 250px;
    position: relative;
    margin-top: 10px;
}

.barChart-wrap.barChart-min {
    height: 120px;
    margin-top: 0;
}

/***** Y축 *****/
.barChart-lineY {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    padding-bottom: 22px;
}

.barChart-lineY-txt {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.barChart-lineY-txt > li {
    width: 100%;
    position: relative;
}

.barChart-lineY-txt > li span {
    display: inline-block;
    width: 85px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray60);
    letter-spacing: -0.3px;
    white-space: nowrap;
    text-align: right;
}

.barChart-lineY-txt > li::after {
    content: "";
    width: calc(100% - 100px);
    height: 1px;
    background: var(--gray20);
    position: absolute;
    top: 45%;
    left: 100px;
}

/***** 바 영역 *****/
.barChart-section {
    width: 100%;
    height: 100%;
    padding-left: 10px;
    position: relative;
    display: flex;
    gap: 10%;
    justify-content: center;
}

.barChart-contents {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.barChart-min .barChart-contents {
    gap: 8px;
}

.barChart-bar-wrap,
.barChart {
    height: 100%;
}

.barChart-bar-wrap {
    display: flex;
    gap: 15px;
}

.barChart {
    display: flex;
    align-items: flex-end;
    position: relative;
}

.barChart-bar {
    width: 25px;
    height: calc(100% - 6px);
    overflow: hidden;
    position: relative;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    overflow: hidden;
}

.barChart-min .barChart-bar {
    width: 20px;
}

.barChart-bar-back,
.barChart-bar-fill {
    width: 100%;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    transition: all 500ms;
}

.barChart-bar-back,
.barChart-bar-fill {
    height: 0%;
}

.barChart-bar-back {
    background-color: var(--gray20);
}

.barChart-bar-back:hover,
.tooltip-dot.back {
    background-color: var(--gray30);
}

.barChart-bar-fill,
.tooltip-dot.fill {
    background-color: var(--blue50);
}

.barChart-bar-fill:hover {
    background-color: var(--blue30);
}

.tooltip-dot.sub {
    background-color: var(--lightblue50);
}

/***** 툴팁 *****/
.tooltip {
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    padding: 15px 20px 18px 20px;
    border-radius: 10px;
    border: 1px solid var(--gray20);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    display: none;
}

.tooltip-top {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
}

.tooltip p {
    white-space: nowrap;
}

.tooltip-main-title {
    font-weight: 500;
    font-size: 15px;
}

.tooltip-tag {
    display: inline-block;
    font-size: 12px;
    padding: 3px 6px;
    background-color: var(--gray10);
    color: var(--gray70);
    border-radius: 6px;
    font-weight: 500;
}

.tooltip-bottom {
    margin-top: 3px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tooltip-bottom .tooltip-tag {
    padding: 5px 10px;
}

.tooltip-tag.blue {
    background-color: var(--lightblue10);
    color: var(--blue50);
}

.tooltip-tag.red {
    background-color: var(--red10);
    color: var(--red50);
}

.tooltip-content {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
}

.tooltip-content:last-child {
    margin-bottom: 0;
}

.tooltip-dot {
    display: inline-block;
    width: 10px;
    min-width: 10px;
    height: 10px;
    border-radius: 3px;
}

.tooltip-title {
    color: var(--gray60);
    font-weight: 500;
}

.tooltip-value {
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.3px;
}

/***** X축 *****/
.barChart-lineX-txt {
    font-weight: 500;
    white-space: nowrap;
}

/********** 진행율 차트 **********/
.progressChart-wrap {
    width: 100%;
}

.progressChart-section {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.progressChart-contents {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

/***** 값 *****/
.progressChart-info-wrap {
    display: flex;
    position: relative;
    gap: 25px;
    flex-wrap: wrap;
}

.progressChart-info {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    justify-content: center;
    flex-direction: column;
    border-right: 1px solid var(--gray15);
    padding-right: 25px;
}

.progressChart-info:last-child {
    padding-right: 0;
    border-right: none;
}

.progressChart-txt {
    color: var(--gray60);
    font-weight: 500;
    white-space: nowrap;
    font-size: 15px;
}

.progressChart-txt .tooltip-dot {
    margin-right: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50px;
}

.progressChart-info .txt-value {
    letter-spacing: -0.4px;
    font-weight: 600;
    font-size: 20px;
    white-space: nowrap;
}

/***** 차트 *****/
.progressChart {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progressChart-bar {
    width: 100%;
    height: 20px;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.progressChart-bar-back,
.progressChart-bar-fill,
.progressChart-bar-sub {
    height: 100%;
    border-radius: 50px;
    transition: all 800ms;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    width: 0;
}

.progressChart-bar-back {
    background-color: var(--gray20);
}

.progressChart-bar-sub {
    background-color: var(--lightblue50);
}

.progressChart-bar-fill {
    background-color: var(--blue50);
}

/********** 현황 **********/
.num-list-wrap {
    width: 100%;
    display: flex;
    gap: 40px;
}

.num-list-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-right: 1px solid var(--gray15);
    padding-right: 30px;
}

.num-list-section:last-child {
    border-right: none;
}

.num-list-link {
    display: flex;
    gap: 6px;
    background-color: var(--lightblue10);
    padding: 8px 26px 8px 12px;
    color: var(--blue50);
    border-radius: 8px;
    width: fit-content;
    position: relative;
    transition: all 200ms;
    white-space: nowrap;
}

.num-list-link:hover {
    background-color: var(--lightblue20);
    padding-right: 35px;
}

.num-list-link::after {
    content: "";
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--blue10);
    border-right: 1px solid var(--blue10);
    transform: rotate(45deg);
    position: absolute;
    top: 13px;
    right: 14px;
}

.num-list-top .icon {
    width: 16px;
    height: 16px;
}

.num-list-title {
    font-weight: 600;
    font-size: 14px;
}

.num-list {
    display: flex;
    gap: 30px;
}

.num-list > li {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.num-list-name {
    font-weight: 400;
    color: var(--gray60);
    white-space: nowrap;
}

.num-list-num {
    font-weight: 600;
    font-size: 18px;
    white-space: nowrap;
}

/***** 영역 상단 *****/
.top-sec {
    width: 100%;
}

.page-title {
    font-size: 24px;
    font-weight: 600;
    float: left;
}

.page-sub-title {
    font-size: 18px;
    float: left;
    margin-top: 5px;
    margin-left: 8px;
    color: var(--gray43);
    font-weight: 500;
}

.sub-title-sec {
    float: left;
    color: var(--blue50);
    background-color: var(--lightblue5);
    padding: 10px 16px 10px 14px;
    border-radius: 8px;
}

.sub-title-sec .icon {
    float: left;
    margin-right: 8px;
    width: 18px;
    height: 18px;
}

.sub-title {
    float: left;
    font-weight: 600;
    font-size: 15px;
    margin-top: 1px;
}

/*** 등록 버튼 ***/
.add-btn {
    float: left;
    margin-left: 15px;
    background-color: var(--blue50);
    color: var(--white);
    border-radius: 8px;
    padding: 9px 16px 9px 16px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.top-sec .add-btn {
    padding: 8px 16px 8px 16px;
    font-size: 13px;
    top: -1px;
}

.add-btn:hover {
    background-color: var(--blue60);
}

.cont-sec .add-btn {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 25px;
}

.top-sec .line-btn {
    border-radius: 8px;
    padding: 8px 16px 8px 16px;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    top: -2px;
}

/*** 페이지 네비게이션 ***/
.page-nav-sec {
    float: right;
}

.page-nav > li {
    float: left;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid var(--gray25);
    position: relative;
}

.page-nav > li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.page-nav > li,
.page-nav > li > a {
    color: var(--gray50);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}

.page-nav > li > a:hover {
    color: var(--gray50);
}

.page-nav > li.page-nav-top {
    border-right: none;
    margin-right: 12px;
    padding-right: 12px;
}

.page-nav-top::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 1px solid var(--gray45);
    border-right: 1px solid var(--gray45);
    transform: rotate(45deg);
    position: absolute;
    top: 3px;
    right: -1px;
}

/***** 페이지 서브 메뉴 *****/
.page-sub-nav {
    width: 100%;
    float: left;
}

.page-sub-menu {
    width: 100%;
    position: relative;
    float: left;
}

.page-sub-menu::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--gray20);
    position: absolute;
    bottom: 0;
    left: 0;
}

.page-sub-menu > li {
    float: left;
    position: relative;
    z-index: 1;
    margin-right: 10px;
}

.page-sub-menu > li:last-child {
    margin-right: 0;
}

.page-sub-menu > li > a {
    display: block;
    font-size: 17px;
    font-weight: 400;
    color: var(--gray45);
    padding: 0 5px 8px 5px;
}

.page-sub-menu > li > a:hover {
    color: var(--gray50);
}

.page-sub-menu > li.active {
    border-bottom: 2px solid var(--blue50);
}

.page-sub-menu > li.active > a {
    color: var(--blue50);
    font-weight: 600;
}

.page-sub-menu > li.active:hover > a {
    color: var(--blue50);
}

/********** 컴포넌트 **********/
/***** 숨김 *****/
.hide {
    display: none;
}

#alarm-btn .dot.hide {
    display: none;
}

/***** 아이콘 *****/
.icon {
    display: block;
    width: 18px;
    height: 18px;
    position: relative;
}


/***** 즐겨찾기 *****/
.bookmark {
    display: inline-block;
    height: 22px;
}

.bookmark input[type=checkbox] {
    display: none;
}

.bookmark-icon {
    color: var(--gray25);
    cursor: pointer;
}

.bookmark-icon:hover {
    color: var(--gray40);
}

.bookmark-icon .icon {
    width: 22px;
    height: 22px;
}

.bookmark input[type=checkbox]:checked + .bookmark-icon {
    color: var(--blue50);
}

/***** 버튼 *****/
.solid-btn,
.line-btn {
    text-decoration: none !important;
}

.solid-btn .icon,
.solid-btn p,
.line-btn .icon,
.line-btn p {
    float: left;
}

.solid-btn .icon,
.line-btn .icon {
    width: 16px;
    height: 16px;
}

/* 배경색 버튼 */
.solid-btn {
    border-radius: 8px;
    padding: 8px 16px 8px 16px;
    color: var(--white);
    font-weight: 400;
    font-size: 13px;
    background-color: var(--gray40);
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.solid-btn:hover {
    background-color: var(--gray43);
}

.solid-btn.submit-btn,
.solid-btn.edit-btn,
.solid-btn.blue-btn {
    background-color: var(--blue50);
    color: var(--white);
}

.solid-btn.submit-btn:hover,
.solid-btn.edit-btn:hover,
.solid-btn.blue-btn:hover {
    background-color: var(--blue60);
}

.solid-btn.delete-btn,
.solid-btn.red-btn {
    background-color: var(--red50);
}

.solid-btn.delete-btn:hover,
.solid-btn.red-btn:hover {
    background-color: var(--red60);
}

.solid-btn.wide {
    width: 150px;
}

.modal .solid-btn,
.cont-bottom .solid-btn {
    width: 65px;
    margin-left: 5px;
}

/* 라인 버튼 */
.line-btn {
    border-radius: 8px;
    padding: 7px 16px 7px 16px;
    color: var(--gray50);
    font-weight: 600;
    font-size: 13px;
    background-color: var(--white);
    border: 1px solid var(--gray40);
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.line-btn:hover {
    background-color: var(--gray3);
}

.line-btn.submit-btn,
.line-btn.blue-btn {
    border: 1px solid var(--blue50);
    color: var(--blue50);
}

.line-btn.submit-btn:hover,
.line-btn.blue-btn:hover {
    background-color: var(--lightblue5);
}

.line-btn.delete-btn,
.line-btn.red-btn {
    border: 1px solid var(--red50);
    color: var(--red50);
}

.line-btn.delete-btn:hover,
.line-btn.red-btn:hover {
    background-color: var(--red5);
}

/* 라운드 버튼 */
.round-btn {
    border-radius: 50px;
}

/***** 아이콘 미니 버튼 *****/
.min-btn {
    width: 25px;
    height: 25px;
    padding: 4px;
    border: 1px solid var(--gray43);
    border-radius: 6px;
    background-color: var(--white);
    display: inline-block;
}

.min-btn .icon {
    width: 16px;
    height: 16px;
}

.min-btn .icon svg {
    width: 16px;
    height: 16px;
}

.min-btn.edit-btn {
    border: 1px solid var(--gray43);
    color: var(--gray43);
}

.min-btn.edit-btn:hover {
    background-color: var(--gray3);
}

.min-btn.delete-btn {
    border: 1px solid var(--red50);
    color: var(--red50);
}

.min-btn.delete-btn:hover {
    background-color: var(--gray3);
}

.min-btn.edit-btn.save-btn {
    border: 1px solid var(--blue50);
    color: var(--blue50);
}

/***** 파일 버튼 *****/
.file-btn {
    border: 1px solid var(--gray25);
    background-color: var(--gray3);
    border-radius: 6px;
    color: var(--gray50);
    padding: 8px 14px 8px 12px;
    cursor: pointer;
    display: inline-block;
}

.file-btn:hover {
    background-color: var(--gray20);
}

.file-btn .icon {
    float: left;
    margin-right: 7px;
    width: 17px;
    height: 16px;
}

.file-btn p {
    float: left;
    font-size: 14px;
    font-weight: 500;
}

.down-btn .icon {
    margin-right: 0;
}

/***** X 버튼 *****/
.off-btn {
    display: block;
    width: 16px;
    height: 16px;
    position: relative;
    cursor: pointer;
    float: right;
}

.off-btn > span {
    display: block;
    width: 16px;
    height: 2px;
    background-color: var(--gray43);
    position: absolute;
    top: 7px;
}

.off-btn > span:first-child {
    transform: rotate(45deg);
}

.off-btn > span:last-child {
    transform: rotate(135deg);
}

/********** 토글 리스트 **********/
.toggle-list {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.toggle-list > li {
    width: 100%;
    border-top: 1px solid var(--gray20);
    padding: 20px 5px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
}

.toggle-list > li:last-child {
    border-bottom: 1px solid var(--gray20);
}

.toggle-list > li:hover {
    background-color: var(--gray3);
}

.toggle-list > li.active:hover {
    background-color: var(--white);
}

.toggle-top {
    width: 100%;
    position: relative;
    padding-right: 25px;
}

.toggle-top::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--gray45);
    border-right: 1px solid var(--gray45);
    position: absolute;
    top: 3px;
    right: 5px;
    transform: rotate(135deg);
    transition: all 200ms;
}

.toggle-list > li.active .toggle-top::after {
    transform: rotate(-45deg);
    top: 7px;
}

.toggle-list > li.data-none .toggle-top::after {
    display: none;
}

.toggle-top p {
    font-weight: 500;
    font-size: 17px;
    line-height: 1.4;
}

.toggle-main {
    display: none;
    padding-right: 25px;
}

.toggle-list > li.active .toggle-main {
    display: flex;
}

.toggle-main p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--gray70);
}

.toggle-list > li.data-none {
    cursor: auto;
}

.toggle-list > li.data-none:hover {
    background-color: var(--white);
}

.toggle-list > li.data-none .toggle-top p {
    text-align: center;
    font-size: 15px;
    color: var(--gray43);
    font-weight: 400;
}

/********** 리스트 **********/
/***** 리스트 상단 *****/
.list-top {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/*** 리스트 정보 ***/
.list-info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.list-number {
    font-weight: 500;
    float: left;
}

.list-select {
    width: auto;
    padding: 5px;
    font-size: 13px;
}

.list-sub-select {
    float: left;
}

.list-top-btn {
    display: flex;
    gap: 10px;
}

.list-top-btn button {
    font-size: 14px;
    height: 34px;
}

.list-info .check-list {
    float: left;
    margin-left: 15px;
}

.list-info .check-list > li {
    margin-top: 1px;
}

/*** 리스트 필터 ***/
.list-filter-wrap {
    width: 100%;
}

.list-filter {
    float: left;
    position: relative;
    display: flex;
    gap: 8px;
    padding-left: 15px;
    flex-wrap: wrap;
    column-gap: 5px;
}

.list-filter::after {
    content: "";
    width: 1px;
    height: 22px;
    background-color: var(--gray20);
    position: absolute;
    top: 3px;
    left: 0;
}

.list-filter:first-child {
    padding-left: 0;
}

.list-filter:last-child::before {
    display: none;
}

.list-filter > li button {
    background-color: var(--white);
    border: 1px solid var(--gray25);
    color: var(--gray43);
    border-radius: 50px;
    font-size: 13px;
    padding: 6px 12px 5px 12px;
}

.list-filter > li.active button {
    color: var(--blue50);
    border: 1px solid var(--blue50);
    font-weight: 600;
}

.list-filter > li:hover button {
    border: 1px solid var(--gray40);
}

.list-filter > li.active:hover button {
    color: var(--blue50);
    border: 1px solid var(--blue50);
    font-weight: 600;
}

/*** 리스트 검색 ***/
.list-search {
    width: 300px;
    position: relative;
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.list-search.hasSelect {
    width: 430px;
}

.list-search .select2 {
    width: 180px !important;
    float: left;
}

.list-search input {
    font-size: 14px;
    padding-right: 30px;
}

.search-btn {
    position: absolute;
    top: 0px;
    right: 2px;
    padding: 0px;
    background-color: transparent;
    height: 100%;
    width: 25px;
}

.search-btn .icon {
    width: 18px;
    color: var(--gray43);
    top: 0px;
}

.search-btn:hover .icon {
    color: var(--gray50);
}

/***** 리스트 콘텐츠 *****/
.list-cont {
    width: 250px;
    float: left;
    align-self: flex-start;
}

.list-cont-top {
    width: 100%;
    float: left;
    margin-bottom: 15px;
}

.list-cont-title {
    font-weight: 500;
    font-size: 17px;
}

.select-list {
    width: 100%;
    float: left;
}

.select-list > li {
    width: 100%;
    float: left;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray70);
    cursor: pointer;
    border-radius: 8px;
    position: relative;
}

.select-list > li:last-child {
    margin-bottom: 0;
}

.select-list > li::before {
    content: "";
    width: 7px;
    height: 2px;
    background-color: var(--gray25);
    position: absolute;
    top: 18px;
    left: 0;
}

.select-list > li:hover {
    color: var(--black);
}

.select-list > li.active {
    color: var(--black);
    border: 1px solid var(--gray25);
    padding: 14px 15px 14px 15px;
    margin: 7px 0;
}

.select-list > li p {
    width: 100%;
    float: left;
    padding-right: 20px;
    position: relative;
}

.select-list > li p .icon {
    width: 15px;
    height: 15px;
    color: var(--gray43);
    top: 1px;
    display: none;
    position: absolute;
    right: 0;
}

.select-list > li.active::before {
    display: none;
}

.select-list > li.active .select-list-btn,
.select-list > li.active p .icon {
    display: block;
}

.select-list-btn {
    width: 100%;
    float: left;
    margin-top: 15px;
    display: none;
}

.select-list-btn button {
    width: calc(50% - 5px);
    padding: 6px;
    font-size: 13px;
}

/***** 리스트 메인 *****/
.table {
    width: 100%;
    position: relative;
}

.list-top + .table {
    top: -5px;
}

.set-table {
    width: calc(100% - 290px);
    float: right;
}

.table tbody > tr {
    border-bottom: 1px solid var(--gray15);
}

.table tbody tr.subactive {
    border-bottom: none;
    background-color: var(--lightblue5);
}

.table tbody tr.subactive:hover td {
    background-color: var(--lightblue5);
}

.min-table tbody tr {
    border-top: 1px solid var(--gray15);
}

.table-cont tbody tr,
.sub-table-wrap > .table.table-cont tbody tr td {
    cursor: pointer;
}

.table-cont tr:hover,
.sub-table-wrap > .table.table-cont tbody tr:hover td {
    background-color: var(--gray2);
}

.table-cont .data-none {
    cursor: inherit;
}

.table-cont .data-none:hover {
    background-color: var(--white);
}

.table th,
.table td {
    font-size: 14px;
    text-align: center;
    color: var(--gray70);
    letter-spacing: -0.2px;
    max-width: 350px;
    line-height: 1.5;
}

td input[type=checkbox] {
    width: 16px;
    height: 16px;
    display: inline-block;
    position: relative;
    top: 2px;
}

.state {
    background-color: var(--gray2);
    padding: 6px 12px;
    border-radius: 6px;
    color: var(--gray60);
    display: inline-block;
}

.state.blue {
    background-color: var(--lightblue5);
    color: var(--blue50);
}

.state.red {
    background-color: var(--red5);
    color: var(--red50);
}

.table th.no-wrap,
.table td.no-wrap {
    white-space: nowrap;
}

.table th:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.table th:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.table th:nth-child(n) {
    background-color: var(--gray3);
    color: var(--gray50);
    font-weight: 500;
    padding: 10px;
    position: relative;
    white-space: nowrap;
}

.table th.th-bold {
    font-size: 15px;
    width: 120px;
    border-top: 1px solid var(--gray20);
    border-right: 1px solid var(--gray20);
    line-height: 1.8;
}

.table th.th-bold > a {
    font-size: 14px;
    color: var(--gray43);
}

.table td {
    font-weight: 500;
    padding: 15px;
}

.table td > .icon {
    display: inline-block;
    color: var(--gray50);
    top: 2px;
}

.table td.blue,
.table td p.blue {
    color: var(--blue50);
}

.table td.red,
.table td p.red {
    color: var(--red50);
}

.table td.align-left {
    text-align: left;
}

.table td a {
    color: var(--gray70);
    text-decoration: underline;
}

.table td a:hover {
    color: var(--blue50);
}

.table td .check-label {
    margin-bottom: 10px;
    margin-right: 10px;
    float: left;
}

.sub-tr td input {
    width: 170px;
}

.td-large {
    width: 50%;
}

.td-wide {
    width: 60%;
}

.td-icon .icon {
    display: inline-block;
    width: 16px;
    color: var(--blue50);
    top: 2px;
}

.td-list {
    display: inline-block;
}

.td-list > li {
    float: left;
    margin-right: 8px;
    padding-right: 8px;
    border-right: 1px solid var(--gray30);
    line-height: 1;
}

.td-list > li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.td-btn {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
}

.td-btn-sec {
    width: 150px;
}

.td-btn-sec.min {
    width: 100px;
}

.td-btn button,
.td-btn .solid-btn,
.td-btn .line-btn {
    padding: 6px 12px 6px 12px;
    font-size: 13px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.td-btn .min-btn {
    width: auto;
    height: auto;
    padding: 6px 7px;
    background-color: var(--gray5);
    border: 1px solid var(--gray20);
}

.td-btn .min-btn .icon {
    width: 15px;
    height: 15px;
}

.edit-input {
    width: 170px;
}

.edit-input input {
    width: 140px;
    text-align: center;
}

.table td input[type=text] {
    max-width: 200px;
}

.table td input[type=number] {
    max-width: 120px;
}

/* 2단 테이블 */
.sub-tr {
    display: none;
}

.sub-tr.active {
    display: contents;
}

.sub-tr > td {
    padding: 0;
}

.sub-table-wrap {
    width: 100%;
    padding: 25px;
    border: 1px solid var(--gray15);
    border-radius: 10px;
}

.sub-table-wrap > .table {
    width: 100%;
    margin-bottom: 25px;
}

.sub-table-wrap > .table:last-child {
    margin-bottom: 0;
}

.sub-table-wrap > .table tr {
    cursor: auto;
}

.table-cont .sub-tr:hover td {
    background-color: var(--white);
}

.table .cont-file-list {
    display: inline-block;
    float: inherit;
}

.table .cont-file-list > li {
    margin-bottom: 10px;
}

/* 리스트 데이터 없음 */
.data-none td {
    color: var(--gray40);
    padding: 20px;
}

/* 테이블 버튼 */
.btn-wrap.full {
    width: 100%;
    display: flex;
    margin-bottom: 20px;
}

.btn-wrap.full .blue-btn {
    font-size: 14px;
    padding: 10px;
}

/********** 페이지네이션 **********/
.pagination-wrap {
    width: 100%;
    float: left;
    text-align: center;
}

.pagination {
    display: inline-block;
}

.pagination > a,
.paging-dot {
    float: left;
    display: block;
    width: 30px;
    height: 28px;
    margin-right: 5px;
    line-height: 28px;
    font-size: 14px;
    font-weight: 400;
    color: var(--gray60);
    background-color: var(--white);
    text-align: center;
    border-radius: 6px;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.pagination > a:last-child {
    margin-right: 0;
}

.pagination > a:hover {
    background-color: var(--gray3);
}

.pagination > a:active {
    background-color: var(--gray5);
}

.pagination > a.active,
.pagination > a.active:hover,
.pagination > a.active:active {
    background-color: var(--lightblue10);
    color: var(--blue50);
    font-weight: 500;
}

.paging-dot {
    line-height: 20px;
    width: 16px;
    letter-spacing: 0.5px;
}

.pagination > a.paging-prev,
.pagination > a.paging-next {
    width: auto;
    line-height: inherit;
}

.pagination > a.paging-prev:hover,
.pagination > a.paging-next:hover {
    background-color: var(--white--color);
}

.pagination > a.paging-prev {
    margin-right: 10px;
}

.pagination > a.paging-next {
    margin-left: 10px;
}

.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: 15px;
    height: 18px;
    padding-top: 6px;
}

/********** 기본 리스트 **********/
.basic-list {
    width: 100%;
    padding: 0;
}

.basic-list > li {
    width: 100%;
    float: left;
    border-bottom: 1px solid var(--gray15);
    padding: 20px;
    position: relative;
}

.basic-list > li:first-child > a {
    padding-top: 0;
}

.basic-list > li:last-child {
    border-bottom: none;
}

/*** 기본 리스트 링크 ***/
.basic-list.link > li {
    padding: 0;
    border: none;
    position: relative;
}

.basic-list.link > li::after {
    content: "";
    width: calc(100% - 40px);
    height: 1px;
    background-color: var(--gray15);
    position: absolute;
    bottom: 0;
    left: 20px;
}

.basic-list.link > li:last-child::after {
    display: none;
}

.basic-list.link > li > a {
    display: block;
    width: 100%;
    float: left;
    padding: 23px 25px;
    position: relative;
}

.basic-list.link > li > a::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    right: 30px;
    border-top: 1px solid var(--gray40);
    border-right: 1px solid var(--gray40);
    transform: rotate(45deg) translateY(-50%);
}

.basic-list.link > li > a:hover {
    background-color: var(--gray3);
}

.basic-list .data-none {
    text-align: center;
    width: 100%;
    padding: 20px;
    color: var(--gray43);
}

/***** 기본 리스트 내용 *****/
.main-txt {
    width: 100%;
    float: left;
    margin-bottom: 12px;
}

.main-txt > p {
    width: calc(100% - 60px);
    font-weight: 500;
    font-size: 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.basic-list .main-txt > p {
    width: calc(100% - 70px);
}

.basic-list.link .main-txt > p {
    width: calc(100% - 20px);
}

.list-btn-wrap {
    position: absolute;
    top: 17px;
    right: 20px;
}

.body-txt {
    width: 100%;
    float: left;
    margin-bottom: 12px;
}

.body-txt textarea {
    font-weight: 400;
    line-height: 1.25;
}

.body-txt p {
    color: var(--gray80);
    font-weight: 400;
    text-align: justify;
    font-size: 14px;
    line-height: 1.3;
}

.body-txt textarea {
    padding: 8px;
    height: 100px;
}

.sub-txt {
    float: left;
}

.sub-txt > li {
    float: left;
    margin-right: 8px;
    padding-right: 8px;
    border-right: 1px solid var(--gray25);
    font-size: 13px;
    font-weight: 400;
    color: var(--gray50);
    line-height: 0.9;
}

.sub-txt > li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/********** 게시물 **********/
/***** 게시물 상단 *****/
.cont-top {
    width: 100%;
    display: flex;
    gap: 20px;
}

.cont-top.board {
    padding: 20px 0;
    border-top: 1px solid var(--gray15);
    border-bottom: 1px solid var(--gray15);
    margin-bottom: 0;
}

.cont-title {
    font-weight: 500;
    font-size: 20px;
    float: left;
}

.cont-top.board .cont-title {
    font-size: 18px;
}

.cont-tag {
    display: inline-block;
    padding: 6px 10px;
    background-color: var(--gray10);
    color: var(--gray70);
    font-weight: 500;
    border-radius: 8px;
    font-size: 13px;
    margin-left: -5px;
    margin-top: -1px;
}

#mypage-content .cont-title {
    color: var(--blue50);
}

#schedule-list .cont-title {
    font-weight: 600;
}

#mypage-content .cont-sub-title {
    float: left;
    margin-top: 4px;
    margin-left: 6px;
    font-size: 18px;
}

.cont-link {
    font-weight: 500;
    color: var(--gray50);
    margin-top: 3px;
    font-size: 13px;
    padding-right: 12px;
    position: relative;
    margin-left: auto;
}

.cont-link::after {
    content: "";
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--gray50);
    border-right: 1px solid var(--gray50);
    transform: rotate(45deg);
    position: absolute;
    top: 4px;
    right: 0;
}

.cont-link:hover {
    color: var(--gray60);
}

.cont-info {
    margin-top: 5px;
    margin-left: auto;
}

.cont-info > li {
    float: left;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid var(--gray30);
    font-weight: 500;
    font-size: 13px;
    color: var(--gray60);
    line-height: 1;
}

.cont-info > li:first-child {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
}

.box-top {
    width: 100%;
    float: left;
    margin-bottom: 15px;
    position: relative;
    top: -2px;
}

.box-title {
    font-weight: 500;
    font-size: 18px;
}

.box-num-wrap {
    float: left;
    padding: 10px 14px 10px 13px;
    border-radius: 6px;
    background-color: var(--lightblue5);
    display: inline-block;
}

.box-num-wrap .icon {
    float: left;
    color: var(--blue50);
    width: 16px;
    height: 16px;
}

.box-sub-title {
    float: left;
    font-weight: 600;
    color: var(--blue50);
    margin-left: 3px;
}

.cont-btn-wrap {
    float: left;
    display: flex;
    gap: 10px;
}

.box-top .cont-btn-wrap {
    float: right;
}

.box-top .cont-btn-wrap .icon {
    width: 14px;
    height: 14px;
    margin-right: 3px;
}

.cont-btn-wrap button {
    padding: 5px 10px;
    position: relative;
}

.box-top .cont-btn-wrap button {
    padding: 6px 13px;
}

.cont-btn-wrap .prev-month {
    padding-left: 20px;
}

.cont-btn-wrap .prev-month::before {
    content: "";
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--gray50);
    border-right: 1px solid var(--gray50);
    position: absolute;
    top: 9px;
    left: 10px;
    transform: rotate(-135deg);
}

.cont-btn-wrap .next-month {
    padding-right: 20px;
}

.cont-btn-wrap .next-month::before {
    content: "";
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--gray50);
    border-right: 1px solid var(--gray50);
    position: absolute;
    top: 9px;
    right: 10px;
    transform: rotate(45deg);
}

/***** 게시물 내용 *****/
.cont-main {
    width: 100%;
    float: left;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray15);
    line-height: 1.5;
}

.cont-main p {
    font-weight: 400;
    line-height: 1.5;
    white-space: pre-line;
    font-size: 15px;
}

.cont-main iframe {
    width: 60%;
    height: auto;
    border: none;
    aspect-ratio: 16 / 9;
    margin: 20px 0;
}

.cont-wrap {
    width: 100%;
    display: flex;
    gap: 30px;
}

#mypage-content .cont-wrap {
    padding: 25px 0 25px 0;
    border-top: 1px solid var(--gray25);
    border-bottom: 1px solid var(--gray25);
    gap: 60px;
}

.cont-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.part2 .cont-list {
    width: calc(50% - 20px);
}

.part3 .cont-list {
    width: calc(33.33% - 27px);
}

.cont-list > li {
    display: flex;
    gap: 20px;
}

.work-fix-deposit {
    display: none;
}

.cont-list-title {
    font-weight: 400;
    color: var(--gray60);
}

.cont-list-4w .cont-list-title {
    width: 50px;
}

.cont-list-5w .cont-list-title {
    width: 65px;
}

.cont-list-6w .cont-list-title {
    width: 80px;
}

.cont-list-6w .cont-list-title {
    width: 80px;
}

#work-content .cont-list-title {
    width: 56px;
}

#work-content .cont-list-title3 {
    width: 38px;
}

.cont-list-contents {
    float: left;
}

#work-content .cont-list-contents {
    width: calc(100% - 71px);
}

#work-content .cont-list-3w .cont-list-contents {
    width: calc(100% - 53px);
}

.cont-list-txt {
    font-weight: 400;
    display: block;
}

p.cont-list-txt.blue {
    color: var(--blue50);
}

.cont-list-area {
    white-space: pre-line;
    line-height: 1.4;
    font-weight: 400;
    border: 1px solid var(--gray20);
    border-radius: 8px;
    padding: 12px 15px;
    height: 350px;
    overflow-y: auto;
    margin-bottom: 0;
}

.cont-list-area.lock {
    background-color: var(--gray3);
}

.call-cont {
    width: 100%;
    float: left;
    margin-bottom: 10px;
}

.call-bar {
    width: calc(100% - 90px);
    float: left;
}

.call-bar audio {
    width: 100%;
    height: 35px;
}

.call-cont button {
    float: right;
    height: 34px;
}

.mt3 {
    margin-top: 3px;
}

.mt6 {
    margin-top: 6px;
}

/***** 게시물 첨부파일 *****/
.cont-file {
    width: 100%;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray15);
    display: flex;
    align-items: center;
    gap: 15px;
}

.cont-file-list {
    display: flex;
    gap: 10px;
}

.cont-file .cont-list-title {
    position: relative;
    top: -2px;
}

.cont-file-list > li > a {
    display: inline-block;
    padding: 8px 14px;
    background-color: var(--gray5);
    border: 1px solid var(--gray20);
    border-radius: 8px;
}

.cont-file-list > li > a:hover {
    background-color: var(--gray10);
}

.cont-file-name {
    float: left;
    color: var(--gray70);
    font-weight: 500;
    font-size: 13px;
    margin-right: 5px;
}

.cont-file-list > li .icon {
    float: left;
    width: 15px;
    height: 15px;
    color: var(--gray70);
}

/***** 게시물 하단 *****/
.cont-bottom {
    width: 100%;
    float: left;
}

#mypage-content .cont-bottom {
    margin-top: 20px;
}

.cont-bottom-left {
    float: left;
}

.cont-bottom-right {
    float: right;
}

.cont-info-txt {
    float: right;
    color: var(--gray60);
    font-weight: 400;
    font-size: 13px;
}

/***** 게시물 댓글 *****/
.cont-comment-sec {
    width: 100%;
    float: left;
    margin-top: 30px;
    margin-bottom: 0;
}

.cont-sub-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
}

.cont-sub-title span {
    font-size: 13px;
    letter-spacing: -0.5px;
    position: relative;
    top: -1px;
    color: var(--gray50);
    font-weight: 500;
}

.comment {
    margin-top: 15px;
}

.comment > li {
    width: 100%;
    float: left;
    padding: 15px 0;
    border-top: 1px solid var(--gray20);
    position: relative;
}

.comment-cont {
    float: left;
    width: calc(100% - 70px);
}

.comment-cont p {
    margin-bottom: 5px;
    font-weight: 400;
    color: var(--gray70);
}

.comment-cont p:last-child {
    margin-bottom: 0;
}

.comment-cont textarea {
    padding: 8px;
    height: 60px;
}

.comment-cont p.comment-name {
    font-weight: 500;
    color: var(--black);
}

.comment-btn {
    position: absolute;
    bottom: 20px;
    right: 0;
    display: flex;
    gap: 8px;
}

/*** 게시물 댓글 등록 ***/
.comment-add {
    width: 100%;
    float: left;
    margin-top: 20px;
    position: relative;
}

.comment-add textarea {
    padding: 10px;
    height: 60px;
    float: left;
    border: 1px solid var(--gray20);
    width: calc(100% - 60px);
}

.comment-add .line-btn {
    padding: 0px;
    float: right;
    height: 60px;
    width: 50px;
}

/********** 견적서 **********/
.set-paper .list-cont-top {
    margin-bottom: 20px;
}

.set-paper .input-list {
    width: 100%;
    float: left;
}

.set-paper .input-list > li {
    margin-right: 20px;
    margin-bottom: 0;
    width: auto;
    min-width: 150px;
}

.set-paper .input-list > li.hasnum {
    width: 100px;
}

.set-paper .input-list.no-auto > li {
    width: 240px;
}

.set-paper .input-list > li {
    margin-top: 0;
}

.set-paper .input-list > li:last-child {
    margin-right: 0;
}

.set-paper .input-list > li.auto {
    min-width: inherit;
}

.paper-url .input-list-top {
    width: auto;
    float: left;
    margin-bottom: 0;
    margin-right: 15px;
    margin-top: 8px;
}

.input-sum-txt {
    position: absolute;
    bottom: -48px;
    height: 33px;
    padding: 8px 12px;
    right: 0;
    font-weight: 600;
    font-size: 14px;
    color: var(--blue50);
    text-align: center;
    width: 100%;
    background-color: var(--lightblue5);
    border-radius: 8px;
}

.paper-url .input-list-main {
    width: auto;
    float: left;
}

.paper-url .input-list-main input {
    width: 400px;
    float: left;
    background-color: var(--gray5);
    margin-right: 10px;
}

.paper-url .input-list-main .input-btn {
    display: flex;
    gap: 10px;
}

.paper-url .input-list-main .input-btn a,
.paper-url .input-list-main .input-btn button {
    height: 34px;
    display: flex;
    align-items: center;
}

.paper-url .input-btn .icon {
    margin-right: 3px;
    width: 14px;
    height: 14px;
}

.paper-preview .box {
    height: 1000px;
}

/********** 스케줄 **********/
/***** 캘린더 영역 *****/
#schedule-calender {
    width: calc(100% - 350px);
    gap: 20px;
}

#schedule-list .cont-top {
    gap: 10px;
}

#schedule-calender .cont-top {
    gap: 0;
}

#schedule-calender .cont-top .add-btn {
    float: right;
    position: relative;
    margin-left: auto;
}

.grid-wrap {
    width: 100%;
}

/*** 년월 선택 ***/
.calender-date-select {
    margin-right: 20px;
    float: left;
}

.dashboard-section .calender-date-select {
    margin-top: 2px;
    margin-right: 15px;
}

.calender-date-select select {
    width: auto;
    border: none;
    padding: 0;
    font-size: 20px;
    font-weight: 500;
    float: left;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-align: center;
    letter-spacing: -0.25px;
}

.calender-date-select select:hover {
    color: var(--blue50);
}

.calender-date-select select:hover + .calender-unit {
    color: var(--blue50);
}

.calender-year + .calender-unit {
    margin-right: 5px;
}

.calender-unit {
    float: left;
    font-size: 20px;
    font-weight: 600;
    font-size: 19px;
    margin-top: 1px;
}

.dashboard-section .calender-date-select select,
.dashboard-section .calender-unit {
    font-size: 17px;
}

.calender-date-select option {
    font-size: 14px;
}

.calender-date-bar {
    display: block;
    float: left;
    font-size: 24px;
    font-weight: 700;
    margin: 0 3px;
    line-height: 1.2;
}

/*** 캘린더 ***/
.grid,
.week {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.grid > li,
.week > li {
    width: 14.28%;
    border: 1px solid var(--gray25);
    border-right: none;
    border-bottom: none;
    height: 185px;
    padding: 10px;
    position: relative;
}

.grid > li {
    cursor: pointer;
}

.grid:last-child > li {
    border-bottom: 1px solid var(--gray25);
}

.grid > li.active::after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: var(--blue50);
    position: absolute;
    bottom: 0;
    left: 0;
}

.week > li:last-child,
.grid > li:last-child {
    border-right: 1px solid var(--gray25);
}

.week > li {
    text-align: center;
    padding: 8px;
    background-color: var(--gray3);
    font-weight: 500;
    color: var(--gray70);
    height: auto;
    font-size: 14px;
}

.week > li:first-child,
.grid > li:first-child .calender-date {
    color: var(--red50);
}

.week > li:last-child,
.grid > li:last-child .calender-date {
    color: var(--blue50);
}

.grid-top {
    width: 100%;
    float: left;
}

.calender-date {
    font-weight: 500;
}

.schedule-min {
    width: 100%;
    float: left;
    margin-top: 10px;
}

.schedule-min > li {
    width: 100%;
    padding: 8px;
    background-color: var(--lightblue5);
    border-radius: 6px;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--blue90);
    font-size: 13px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.schedule-min > li:last-child {
    margin-bottom: 0;
}

.schedule-min > li.schedule-more {
    text-align: center;
    background-color: var(--gray10);
    padding: 0;
    width: 100%;
}

.schedule-more span {
    position: relative;
    top: -3px;
    color: var(--gray60);
}

/* 타 일자 */
.other .calender-date,
.grid > li.other .calender-date {
    color: var(--gray43);
}

.other .schedule-min > li {
    background-color: var(--gray5);
    color: var(--gray50);
    font-weight: 500;
}

/***** 스케줄 리스트 *****/
#schedule-list {
    width: 320px;
    gap: 20px;
}

#schedule-list .basic-list {
    overflow-y: auto;
    max-height: 65vh;
}

#schedule-list .cont-sub-title {
    color: var(--gray50);
    font-weight: 500;
    letter-spacing: -0.5px;
    margin-top: 5px;
    float: left;
    margin-left: 8px;
}

#schedule-list .min-btn {
    width: 23px;
    height: 23px;
    padding: 3px;
}

#schedule-list .min-btn .icon svg {
    width: 15px;
    height: 15px;
}

/********** 플로팅 **********/
#floating {
    position: fixed;
    bottom: 80px;
    right: 40px;
    z-index: 10;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: var(--white);
    border: 1px solid var(--gray25);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: var(--gray43);
    margin-top: 10px;
    position: relative;
}

.floating-btn:first-child {
    margin-top: 0;
}

.floating-btn .icon {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#top-btn {
    display: none;
}

/********** 모달 **********/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 20;
    display: none;
}

.modal-sec {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 35px 40px;
    background-color: var(--white);
    border-radius: 15px;
    width: 400px;
    max-height: 85vh;
    display: none;
}

.modal-sec.board {
    width: 850px;
}

.modal-sec.wide2 {
    width: 700px;
}

.modal-sec.wide3 {
    width: 1000px;
}

.modal-sec.wide4 {
    width: 1200px;
}

/***** 모달 상단 *****/
.modal-top {
    width: 100%;
    float: left;
    margin-bottom: 30px;
}

.modal-title {
    float: left;
    line-height: 1;
    font-size: 20px;
    font-weight: 600;
}

.modal-top .off-btn {
    width: 20px;
    height: 20px;
}

.modal-top .off-btn > span {
    width: 20px;
    top: 9px;
}

/***** 모달 콘텐츠 *****/
.modal-cont {
    width: 100%;
    max-height: calc(85vh - 150px);
    overflow: hidden;
    overflow-y: auto;
}

.wide2 .input-list {
    width: calc(50% - 15px);
    float: left;
    margin-right: 30px;
}

.wide3 .input-list {
    width: calc(33.3% - 20px);
    float: left;
    margin-right: 30px;
}

.wide4 .input-list {
    width: calc(25% - 23px);
    float: left;
    margin-right: 30px;
}

.input-list:last-child {
    margin-right: 0;
}

.input-list > li {
    width: 100%;
    float: left;
    margin-top: 25px;
    position: relative;
}

.input-list > li:first-child {
    margin-top: 0;
}

.input-list-half {
    width: calc(50% - 10px);
    float: left;
    margin-right: 20px;
}

.input-list-half:last-child {
    margin-right: 0;
}

.input-list-top {
    margin-bottom: 10px;
}

.input-list-title {
    font-weight: 500;
    color: var(--gray70);
    font-size: 14px;
}

.input-list-main {
    width: 100%;
    float: left;
    position: relative;
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
}

.input-list-main:last-child {
    margin-bottom: 0;
}

.input-list-main.date {
    width: 150px;
}

.input-list-main.max {
    width: 400px;
}

.input-list-main.min {
    width: 100px;
}

.input-list-main textarea {
    height: 300px;
}

.input-list > li.hasbtn .input-list-main {
    width: calc(100% - 66px);
    margin-right: 8px;
}

.input-list > li.hasbtn .input-list-btn {
    width: 58px;
    float: left;
}

.input-list button {
    height: 34px;
}

.input-list-btn-wrap button {
    width: calc(50% - 5px);
}

.input-list-set input {
    width: calc(100% - 82px);
    float: left;
    margin-right: 8px;
}

.input-list-set .min-btn {
    width: 34px;
    height: 34px;
    margin-right: 5px;
}

.input-list-set .min-btn:last-child {
    margin-right: 0;
}

.input-list-set .min-btn .icon {
    top: 2px;
    left: -2px;
    display: inline-block;
}

.input-list-set .min-btn .icon svg {
    width: 20px;
    height: 20px;
}

.input-list-sub {
    width: 100%;
    padding: 12px 15px 5px 15px;
    margin-top: 10px;
    float: left;
    background-color: var(--gray5);
    border: 1px solid var(--gray15);
    border-radius: 4px;
    display: none;
}

.input-list-sub input {
    width: 100%;
}

.input-list-sub .list-filter {
    margin-left: 0;
    padding-left: 0;
}

.input-list-sub .list-filter::before {
    display: none;
}

.input-list-sub .list-filter > li {
    margin-bottom: 5px;
}

.input-list-sub .list-filter > li button {
    padding: 5px 12px;
}

.input-list-set .input-list-main {
    margin-bottom: 8px;
    float: left;
}

.input-list-set .cont-input-btn {
    width: 100%;
    margin-top: 2px;
}

.input-list-set .input-add-btn {
    width: 100%;
}

.input-unit {
    position: absolute;
    top: 9px;
    right: 10px;
    font-weight: 500;
    color: var(--gray50);
}

.input-info {
    width: 100%;
    float: left;
}

.input-info p {
    font-weight: 500;
    color: var(--gray60);
    font-size: 12px;
}

.cont-input-sec {
    width: 100%;
    float: left;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray25);
    overflow-y: auto;
    position: relative;
}

.cont-input-sec:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cont-input-btn {
    float: left;
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.cont-input-sec.hastable .cont-input-btn {
    position: absolute;
    bottom: 32px;
    left: 0;
}

.cont-input-sec .input-list {
    display: flex;
    justify-content: flex-start;
}

.align-list {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.align-list > li {
    display: flex;
    gap: 10px;
    align-items: center;
}

.align-list > li p {
    font-size: 17px;
    font-weight: 500;
}

.align-list > li p.align-list-title {
    font-size: 15px;
    color: var(--gray50);
    font-weight: 400;
}

/*** 파일 선택 ***/
.cont-file-input {
    display: none;
}

.file-list-wrap {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.file-list {
    padding: 8px 12px 8px 12px;
    border-radius: 50px;
    border: 1px solid var(--blue50);
    display: inline-block;
}

.file-name {
    float: left;
    color: var(--blue50);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.5px;
    margin-right: 8px;
    max-width: 200px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.input-list .file-name {
    max-width: 130px;
}

.member-set-modal .file-name {
    max-width: 95px;
}

.file-list .off-btn {
    width: 13px;
    height: 13px;
    top: 0px;
}

.file-list .off-btn span {
    width: 13px;
    height: 1px;
    background-color: var(--blue50);
}

/*** 날짜 선택 ***/
input.datepick {
    padding-right: 30px;
}

.calender-label {
    position: absolute;
    top: 8px;
    right: 10px;
    color: var(--blue50);
    cursor: pointer;
}

.input-list-bank input:first-child {
    width: 80px;
    float: left;
    margin-right: 5px;
}

.input-list-bank input:nth-child(2) {
    width: calc(100% - 85px);
    float: left;
}

/*** 체크 ***/
.cont-input-sec .check-list {
    margin-top: 5px;
}

.check-list > li {
    float: left;
    margin-right: 15px;
    margin-top: 3px;
    overflow: hidden;
}

.check-input {
    display: none;
}

.check-label {
    display: block;
    cursor: pointer;
}

.check-label .icon {
    width: 20px;
    height: 20px;
    float: left;
    color: var(--gray30);
    top: -2px;
}

.check-input:checked + .check-label .icon {
    color: var(--blue50);
}

.check-label p {
    float: left;
    font-weight: 500;
    margin-left: 3px;
    color: var(--black);
}

/*** 모달 리스트 ***/
.modal-cont-title {
    font-weight: 500;
    font-size: 16px;
}

.modal-basic-list {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    max-height: 300px;
    overflow: hidden;
    overflow-y: auto;
    border: 1px solid var(--gray25);
    border-radius: 10px;
    padding: 2px 12px;
}

.modal-basic-list > li {
    width: 100%;
    float: left;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray20);
}

.modal-basic-list > li:last-child {
    border-bottom: none;
}

.modal-basic-list > li p {
    font-weight: 500;
}

/***** 모달 하단 *****/
.modal-bottom {
    width: 100%;
    float: left;
    margin-top: 30px;
}

.modal-info {
    float: left;
}

.modal-info p {
    font-weight: 500;
    font-size: 13px;
    color: var(--gray50);
    padding-top: 10px;
}

.modal-cont-btn {
    float: right;
}

/***** 입력 폼 테이블 *****/
.input-table {
    width: 100%;
    float: left;
}

.input-table th {
    font-weight: 500;
    color: var(--gray70);
    font-size: 14px;
    padding-right: 20px;
    padding-bottom: 10px;
}

.input-table td {
    padding-right: 20px;
    padding-bottom: 10px;
}

.input-table td:last-child {
    padding-right: 0;
}

.input-table tr:last-child td {
    padding-bottom: 0;
}

.input-table-tag p {
    height: 33px;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 14px;
    color: var(--blue50);
    text-align: center;
    background-color: var(--lightblue5);
    border-radius: 8px;
    margin-top: 15px;
}

/********** 로딩 애니 **********/
.loader-sec {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.5);
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader span {
    display: block;
    border: 4px solid var(--blue50);
    border-top: 4px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 800ms linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/********** header **********/
#header {
    width: 100%;
    height: 70px;
    padding: 25px 60px 0px 270px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    border-bottom: 1px solid var(--gray15);
    background-color: var(--white);
    min-width: 1600px;
}

#header-wrap {
    width: 210px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--white);
    border-right: 1px solid var(--gray15);
    z-index: 15;
    padding: 30px 25px;
}

/***** 로고 *****/
.logo {
    width: 160px;
    height: 25px;
    float: left;
}

/***** 메뉴 *****/
#menu {
    width: 100%;
    float: left;
    margin-top: 30px;
}

#gnb > li {
    width: 100%;
    float: left;
    margin-bottom: 30px;
}

.active .gnb-txt,
#gnb > li:hover .gnb-txt {
    color: var(--blue50);
}

.gnb-txt {
    font-weight: 500;
    font-size: 16px;
    float: left;
    width: 100%;
    cursor: pointer;
}

.gnb-txt .icon {
    float: left;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    top: -1px;
}

.arrow-icon {
    display: block;
    width: 16px;
    height: 16px;
    float: right;
    color: var(--gray40);
    margin-top: 1px;
}

.active .arrow-icon {
    transform: rotate(180deg);
}

.lnb {
    width: 100%;
    float: left;
    margin-top: 12px;
    display: none;
}

.active .lnb {
    display: block;
}

.lnb > li {
    width: 100%;
    float: left;
    margin-bottom: 5px;
}

.lnb > li a {
    display: block;
    width: 100%;
    font-weight: 500;
    font-size: 15px;
    padding: 9px 8px 8px 29px;
    color: var(--gray60);
    border-radius: 8px;
}

.lnb > li a:hover {
    color: var(--blue50);
}

.lnb > li.active a {
    color: var(--blue50);
    background-color: var(--lightblue5);
}

#gnb > li:last-child,
.lnb > li:last-child {
    margin-bottom: 0;
}

/***** 계정 관리 *****/
#member {
    float: right;
}

#member > li {
    float: left;
    height: 45px;
    margin-right: 30px;
    cursor: pointer;
    position: relative;
    font-weight: 500;
}

#member > li:last-child {
    margin-right: 0;
}

#alarm-btn:hover,
#alarm-btn.active {
    color: var(--blue50);
}

#alarm-btn .dot {
    display: block;
    width: 8px;
    height: 8px;
    background-color: var(--blue50);
    border-radius: 50px;
    position: absolute;
    top: 0px;
    right: 2px;
}

#alarm-btn .icon {
    width: 22px;
    height: 22px;
}

#mypage > p {
    padding-top: 2px;
    font-weight: 600;
}

#mypage:hover > p {
    color: var(--blue50);
}

#mypage:hover .sub-menu {
    display: block;
}

.sub-menu {
    text-align: center;
    position: absolute;
    top: 44px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid var(--gray15);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 9;
}

.sub-menu > li {
    white-space: nowrap;
    border-bottom: 1px solid var(--gray15);
    background-color: var(--white);
    overflow: hidden;
}

.sub-menu > li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.sub-menu > li:hover a {
    background-color: var(--gray2);
}

.sub-menu > li > a {
    overflow: hidden;
    padding: 13px 20px 12px 20px;
    display: flex;
    gap: 5px;
    justify-content: center;
    color: var(--gray70);
}

.sub-menu > li #logout {
    color: var(--gray43);
}

#logout .icon {
    width: 15px;
    top: 1px;
    left: 2px;
}

/***** 알림창 *****/
#alarm {
    position: fixed;
    top: 70px;
    right: -380px;
    width: 350px;
    height: calc(100vh - 70px);
    padding: 20px 40px 20px 25px;
    border-left: 1px solid var(--gray15);
    transition: all 300ms;
    z-index: 8;
    background-color: var(--white);
    box-shadow: -20px 20px 30px rgba(0, 0, 0, 0.02);
}

#alarm.slide {
    right: 0;
}

#alarm-top {
    width: 100%;
    float: left;
}

.alarm-top-title {
    font-size: 16px;
    font-weight: 600;
    float: left;
    line-height: 1;
}

.alarm-top-sub {
    font-weight: 400;
    color: var(--gray50);
    float: left;
    position: relative;
    padding-left: 10px;
    margin-left: 10px;
    margin-top: 1px;
    font-size: 13px;
    line-height: 1;
}

.alarm-top-sub::before {
    content: "";
    width: 1px;
    height: 12px;
    background-color: var(--gray25);
    position: absolute;
    top: 1px;
    left: 0;
}

.alarm-menu {
    width: 100%;
    float: left;
    margin-top: 20px;
    border-bottom: 1px solid var(--gray25);
}

.alarm-menu > li {
    float: left;
    color: var(--gray43);
    padding: 0 6px 7px 6px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
}

.alarm-menu > li:hover {
    color: var(--gray50);
}

.alarm-menu > li:last-child {
    margin-right: 0;
}

.alarm-menu > li.active {
    color: var(--blue50);
}

.alarm-menu > li.active::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--blue50);
    position: absolute;
    bottom: -1px;
    left: 0;
}

.alarm-menu > li.active p {
    font-weight: 600;
}

.alarm-menu p {
    float: left;
    font-weight: 500;
    font-size: 15px;
}

.alarm-menu span {
    float: left;
    margin-left: 5px;
    padding: 3px 7px 3px 7px;
    font-size: 11px;
    font-weight: 500;
    background-color: var(--gray45);
    border-radius: 50px;
    position: relative;
    top: -1px;
    color: var(--white);
}

.alarm-menu > li:hover span {
    background-color: var(--gray43);
}

.alarm-menu > li.active span {
    background-color: var(--blue50);
}

#alarm-list {
    width: 100%;
    float: left;
    max-height: calc(100% - 50px);
    overflow: hidden;
    overflow-y: auto;
    margin-top: 5px;
}

#alarm-list > li {
    border-top: 1px solid var(--gray25);
    width: 100%;
    float: left;
    padding-right: 10px;
}

#alarm-list > li:first-child {
    border-top: none;
}

#alarm-list > li.check {
    opacity: 0.5;
    filter: grayscale();
}

#alarm-list > li > a {
    display: block;
    padding: 18px 0;
    overflow: hidden;
}

.alarm-list-top {
    width: 100%;
    float: left;
    margin-bottom: 10px;
}

.alarm-title {
    font-weight: 500;
    color: var(--blue50);
    font-size: 14px;
    float: left;
}

.alarm-moment {
    float: right;
    font-size: 13px;
    font-weight: 400;
    color: var(--gray50);
}

.alarm-cont {
    width: 100%;
    float: left;
}

.alarm-cont p {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.4;
    color: var(--gray90);
}

.alarm-cont p span {
    font-weight: 600;
}

#alarm-list .data-none {
    text-align: center;
    width: 100%;
    padding: 20px;
    color: var(--gray43);
}

/********** footer **********/
#footer {
    width: 100%;
    height: 130px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: 1px solid var(--gray15);
    padding: 0px 60px 0px 270px;
    min-width: 1600px;
}

#footer-wrap {
    width: 100%;
}

.footer-cont {
    float: left;
    margin-top: 30px;
}

#footer .logo {
    filter: grayscale();
    opacity: 0.4;
    float: none;
    margin-bottom: 10px;
}

.footer-cont small {
    font-weight: 500;
    color: var(--gray50);
}

.fnb {
    float: left;
    margin-left: 60px;
}

.fnb > li {
    float: left;
    margin-right: 40px;
    position: relative;
    cursor: pointer;
    padding-top: 30px;
}

.fnb > li:last-child {
    margin-right: 0;
}

.fnb > li:hover .sub-menu {
    display: block;
}

.fnb-title {
    font-weight: 700;
    color: var(--gray50);
}

.fnb > li:hover .fnb-title {
    color: var(--gray70);
}

#footer .sub-menu {
    bottom: 46px;
    top: inherit;
    box-shadow: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    text-align: left;
}

#footer .sub-menu a {
    justify-content: flex-start;
    color: var(--gray50);
    padding: 13px 13px 11px 15px;
}

#footer .sub-menu p {
    font-weight: 700;
    font-size: 13px;
    float: left;
}

#footer .sub-menu .icon {
    width: 14px;
}

/********** 로그인 (ver1) **********/
#login {
    width: 300px;
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#login-logo {
    width: 100%;
    text-align: center;
}

#login-logo img {
    width: 200px;
    display: inline-block;
}

#login-title {
    font-weight: 600;
    font-size: 22px;
    margin-top: 10px;
}

.login-sec {
    margin-top: 35px;
}

input.login-input {
    border: none;
    border-bottom: 1px solid var(--gray25);
    margin-bottom: 25px;
    font-weight: 600;
    padding: 10px 2px;
    background-color: transparent;
    border-radius: 0;
}

.login-input:last-child {
    margin-bottom: 0;
}

input.login-input:focus {
    border-bottom: 1px solid var(--blue50);
}

#login-btn {
    width: 100%;
    padding: 11px;
    background-color: var(--blue50);
    color: var(--white);
    font-weight: 500;
    border-radius: 8px;
    margin-top: 30px;
}

#login-btn:hover,
#login-btn:active {
    background-color: var(--blue60);
}

/********** 로그인 **********/
.auto-wrap {
    min-width: inherit;
}

#login-section {
    padding: 0;
}

.single-form {
    width: 320px;
    margin: 50px auto 100px auto;
    padding: 0;
    flex-direction: column;
    display: flex;
}

#login-section .single-form {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    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;
    height: 38px;
    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 .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);
}

/********** 입력 폼 **********/
.form-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

#login-section .form-list {
    gap: 20px;
}

.form-list > li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
}

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-top label,
.form-top p,
.form-list-title {
    font-weight: 500;
    font-size: 15px
}

.form-main,
.form-list-main {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#login-section .form-btn-wrap {
    width: 100%;
    float: left;
    margin-top: 10px;
}

.form-btn-wrap {
    display: flex;
    gap: 10px;
}

.form-btn-wrap .solid-btn {
    width: 100%;
    font-size: 15px;
    height: 40px;
    width: 100%;
}

.form-list input {
    padding: 10px 14px;
    height: 40px;
}

.form-list input::placeholder {
    font-size: 16px;
    color: var(--gray50);
}

/********** 스크롤바 **********/
.wrap *::-webkit-scrollbar {
    width: 8px;
    height: 6px;
}

.wrap *::-webkit-scrollbar-track {
    background: var(--gray10);
    border-radius: 2px;
}

.wrap *::-webkit-scrollbar-thumb {
    background-color: var(--gray25);
    border-radius: 2px;
}

.wrap *::-webkit-scrollbar-thumb:hover {
    background-color: var(--gray30);
}

/********** 유틸리티 **********/
/***** 반응형 *****/
.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;
}

.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;
}

/***** 높이 *****/
.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;
}