@charset "utf-8";

/********** 컬러 스타일 **********/
:root {
    --white-color: #fff;
    --white-hover-color: #f8f8f8;
    --white-active-color: #f2f2f2;

    --black-color: #222;
    --black-sub-color: #555;
    --black-light-color: #8e8e8e;

    --gray-color: #aaa;
    --gray-hover-color: #a4a4a4;
    --gray-active-color: #999;

    --gray-middle-color: #ccc;
    --gray-middle-hover-color: #c6c6c6;
    --gray-middle-active-color: #bfbfbf;

    --gray-sub-color: #ddd;
    --gray-light-color: #eee;
    --gray-light-hover-color: #e8e8e8;
    --gray-light-max-color: #f8f8f8;
    --gray-light-blue-color: #dfe4ee;

    --blue-color: #1860e8;
    --blue-hover-color: #1159de;
    --blue-active-color: #024dd8;
    --blue-sub-color: #ecf3ff;
    --blue-sub-hover-color: #e2ecff;
    --blue-sub-active-color: #d9e6ff;
    --blue-light-hover-color: #f0f7ff;
    --blue-light-active-color: #e5f1ff;

    --green-color: #00ad07;
    --green-hover-color: #00a306;
    --green-active-color: #009806;
    --green-sub-color: #e9f5e8;
    --green-sub-hover-color: #dcf2d9;
    --green-sub-active-color: #ceedca;
    --green-light-hover-color: #eef8ee;
    --green-light-active-color: #def5de;

    --red-color: #d33d3d;
    --red-hover-color: #cc2f2f;
    --red-active-color: #c41a1a;
    --red-sub-color: #ffeeee;
    --red-sub-hover-color: #ffe6e6;
    --red-sub-active-color: #ffe0e0;
    --red-light-hover-color: #fff4f4;
    --red-light-active-color: #ffeded;
}

/********** 초기 스타일 **********/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-wrap: break-word;
}

body {
    font-family: "Pretendard Variable", "Noto Sans KR", sans-serif;
    font-size: 16px;
    color: var(--black-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--black-color);
    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: 16px;
    color: var(--black-color);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border: 1px solid var(--blue-color);
}

button:focus {
    outline: none;
}

input,
textarea,
select {
    border: 1px solid var(--gray-light-blue-color);
    background-color: var(--white-color);
    box-sizing: border-box;
    border-radius: 8px;
    font-weight: 500;
    width: 100%;
}

input[type=text],
input[type=password],
input[type=number] {
    padding: 8px 10px;
}

input[type=file] {
    padding: 3px;
}

select {
    padding: 7px;
}

option {
    font-size: 0.98em;
}

input:disabled,
select:disabled {
    border: 1px solid var(--gray-sub-color);
    background-color: var(--gray-light-max-color);
    color: var(--black-light-color);
    opacity: 1;
}

textarea {
    resize: none;
    padding: 8px 10px;
    min-height: 90px;
    line-height: 1.5;
}

input::placeholder,
textarea::placeholder {
    color: var(--gray-color);
    font-weight: 400;
}

button {
    cursor: pointer;
    padding: 0px;
    background: none;
    border: none
}

table {
    border-collapse: collapse;
}

th,
td {
    border: none;
}

textarea::-webkit-scrollbar,
.alarm-list::-webkit-scrollbar,
.text-list-wrap::-webkit-scrollbar,
.modal-contents::-webkit-scrollbar,
.side-view .border::-webkit-scrollbar {
    width: 6px;
}

textarea::-webkit-scrollbar-track,
.alarm-list::-webkit-scrollbar-track,
.text-list-wrap::-webkit-scrollbar-track,
.modal-contents::-webkit-scrollbar-track,
.side-view .border::-webkit-scrollbar-track {
    background: var(--gray-light-color);
    border-radius: 2px;
}

textarea::-webkit-scrollbar-thumb,
.alarm-list::-webkit-scrollbar-thumb,
.text-list-wrap::-webkit-scrollbar-thumb,
.modal-contents::-webkit-scrollbar-thumb,
.side-view .border::-webkit-scrollbar-thumb {
    background-color: var(--gray-sub-color);
    border-radius: 2px;
}

textarea::-webkit-scrollbar-thumb:hover,
.alarm-list::-webkit-scrollbar-thumb:hover,
.text-list-wrap::-webkit-scrollbar-thumb:hover,
.modal-contents::-webkit-scrollbar-thumb:hover,
.side-view .border::-webkit-scrollbar-thumb:hover {
    opacity: 0.8;
}

/********** 공통 스타일 **********/
.wrap {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    min-width: 1600px;
}

main {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-left: 210px;
    padding-bottom: 150px;
}

section {
    width: 100%;
    padding: 0 80px;
}

.contents-section {
    width: 100%;
    float: left;
}

.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: 1000px;
    float: left;
}

.full-contents {
    width: 100%;
}

.hasfilter .contents {
    width: calc(100% - 310px);
}

.contents.side-view {
    width: 480px;
    position: fixed;
    top: 130px;
    right: 80px;
}

.side-view .border {
    width: 480px;
    overflow: hidden;
    overflow-y: auto;
    height: calc(100vh - 200px);
}

.side-view .border .form-btn-wrap {
    width: 100%;
    float: left;
    padding-bottom: 30px;
}

/***** 레이아웃 정렬 *****/
.layout-left {
    float: left;
}

.layout-right {
    float: right;
}

.list-half > li {
    width: 50%;
}

/***** 테두리 영역 *****/
.border-wrap {
    width: 100%;
    float: left;
    margin-bottom: 40px;
}

.border-wrap:last-child {
    margin-bottom: 0;
}

#admin-dashboard-live {
    display: flex;
    justify-content: space-between;
}

.border {
    float: left;
    border: 1px solid var(--gray-light-blue-color);
    border-radius: 12px;
    padding: 25px 30px;
    overflow: hidden;
    background-color: var(--white-color);
}

.border.half {
    width: calc(50% - 20px);
    margin-right: 40px;
}

.border:last-child {
    margin-right: 0;
}

#admin-dashboard-live .border {
    width: calc(25% - 30px);
}

.dashboard .border {
    padding: 30px 35px;
    margin-right: 40px;
}

.dashboard .border:last-child {
    margin-right: 0;
}

#write-preview.border {
    width: calc(100% - 1050px);
    float: right;
}

.border.hasbottom {
    padding-bottom: 25px;
}

#dashboard-live {
    width: calc(100% - 640px);
}

#dashboard-notice {
    width: 600px;
}

#dashboard-mission {
    width: calc(75% - 10px);
}

#dashboard-point,
#dashboard-mission-type {
    width: calc(25% - 30px);
}

.border-top {
    width: 100%;
    float: left;
    padding-bottom: 17px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray-light-color);
}

.border-top .icon {
    margin-right: 6px;
    width: 22px;
    height: 22px;
}

.border-title {
    font-weight: 500;
    font-size: 18px;
    float: left;
}

.side-view .border-title {
    font-size: 20px;
}

.border-sub-title {
    float: left;
    font-size: 15px;
    font-weight: 500;
    color: var(--black-light-color);
    margin-left: 10px;
    margin-top: 3px;
}

.border-txt {
    width: 100%;
    float: left;
    margin-top: 12px;
    color: var(--black-light-color);
    line-height: 1.5;
    font-size: 15px;
}

.border-top .link-btn {
    margin-left: 12px;
    float: left;
    margin-top: 2px;
}

.border-bottom {
    width: 100%;
    float: left;
    margin-top: 5px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light-color);
}

/********** 대시보드 **********/
.border-contents-wrap {
    width: 100%;
    float: left;
    display: flex;
}

#dashboard-live .border-contents {
    margin-right: 80px;
    position: relative;
}

#dashboard-live .border-contents::after {
    content: "";
    width: 1px;
    height: calc(100% - 20px);
    background-color: var(--gray-light-blue-color);
    position: absolute;
    top: 0;
    right: -40px;
}

#dashboard-live .border-contents:last-child {
    margin-right: 0;
}

#dashboard-live .border-contents:last-child::after {
    display: none;
}

.dashboard .border-top {
    border-bottom: none;
    padding-bottom: 0;
}

.dashboard .border-top .border-title {
    font-weight: 600;
    font-size: 19px;
}

/***** 현황 *****/
.board-list > li {
    float: left;
    margin-right: 40px;
    margin-bottom: 20px;
}

.board-list > li:last-child {
    margin-right: 0;
}

.board-title {
    color: var(--black-light-color);
    width: 100%;
    margin-bottom: 10px;
}

.board-title .icon {
    float: inherit;
    margin-bottom: 10px;
    width: 24px;
    height: 24px;
    left: 1px;
}

.board-title p {
    font-weight: 500;
    font-size: 15px;
}

.board-main {
    font-weight: 600;
    font-size: 18px;
}

/***** 리스트 *****/
.dashboard .table td {
    padding: 15px 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-color);
    opacity: 0.75;
}

#dashboard-notice .table .td-main {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/***** 미션별 포인트 *****/
.basic-list {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-light-color);
}

.basic-list:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.basic-list > li {
    width: 100%;
    float: left;
    margin-top: 15px;
    font-size: 15px;
}

.basic-list > li:first-child {
    margin-top: 0;
}

.basic-list-title {
    color: var(--black-sub-color);
    font-weight: 450;
    float: left;
}

.badge {
    display: inline-block;
    background-color: var(--blue-sub-color);
    font-size: 12px;
    padding: 5px 10px;
    margin-left: 5px;
    color: var(--blue-color);
    border-radius: 50px;
    font-weight: 500;
    position: relative;
    top: -1px;
}

.basic-list-txt {
    float: right;
    font-weight: 500;
    margin-bottom: 8px;
}

.basic-list-txt:last-child {
    margin-bottom: 0;
}

.basic-list-txt.blue,
.basic-list-txt.blue span {
    color: var(--blue-color);
}

.basic-list-txt.red {
    color: var(--red-color);
}

.basic-list-txt.wait {
    color: var(--gray-color);
}

.basic-list-txt span {
    color: var(--black-light-color);
}

#write-preview .basic-list-txt {
    width: calc(100% - 100px);
    text-align: right;
}

.basic-list > li.basic-list-bold {
    padding-top: 20px;
    margin-top: 22px;
    border-top: 1px solid var(--gray-light-color);
}

.basic-list-bold p:nth-child(n) {
    font-size: 18px;
}

.basic-list-bold .basic-list-txt {
    font-weight: 600;
}

/********** 월별 리스트 **********/
.contents-slide-list {
    width: 100%;
    float: left;
}

.contents-slide-list.half {
    width: calc(50% - 20px);
}

.contents-slide-list > li {
    width: 100%;
    float: left;
    border-top: 1px solid var(--gray-light-blue-color);
}

.contents-slide-list > li:last-child {
    border-bottom: 1px solid var(--gray-light-blue-color);
}

.contents-slide-list > li:hover {
    background-color: var(--white-hover-color);
}

.contents-slide-list > li.active:hover {
    background-color: var(--white-color);
}

.contents-list-main .basic-list-title {
    font-weight: 500;
    color: var(--black-color)
}

.contents-list-main p:nth-child(n) {
    margin-bottom: 0;
    font-size: 17px;
}

.contents-list-main {
    position: relative;
    width: 100%;
    float: left;
    cursor: pointer;
    padding: 20px 40px 20px 10px;
}

.contents-list-main .icon {
    position: absolute;
    right: 5px;
    color: var(--gray-color);
    width: 18px;
    height: 18px;
}

.contents-slide-list > li.active .icon {
    transform: rotate(180deg);
}

.contents-slide-list .basic-list {
    display: none;
    padding: 22px 40px 22px 25px;
    background-color: var(--white-hover-color);
    border-radius: 12px;
    margin-bottom: 25px;
}

.contents-slide-list .basic-list > li {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-light-blue-color);
}

.contents-slide-list .basic-list > li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.contents-slide-list > li.active .basic-list {
    display: block;
}

/***** 텍스트 리스트 *****/
.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(--black-sub-color);
    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(--gray-color);
    position: absolute;
    top: 9px;
    left: 0;
}

.text-list p.text-list-title {
    font-weight: 500;
    color: var(--black-color);
    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%;
    float: left;
}

.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(--black-sub-color);
    position: relative;
    z-index: 1;
    margin-right: 10px;
}

.page-sub-title:last-child {
    margin-right: 0;
}

.page-title + .page-sub-title {
    margin-left: 15px;
}

.page-sub-title.type {
    margin-top: 0;
    top: -3px;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 8px;
    background-color: var(--gray-light-color);
    color: var(--black-sub-color);
    font-weight: 600;
}

.page-sub-title.type.blue {
    color: var(--blue-color);
    background-color: var(--blue-sub-color);
}

.top-section .write-btn {
    float: left;
    margin-left: 15px;
    top: -3px;
    padding: 8px 16px 7px 16px;
    font-weight: 600;
}

/********** 탭 메뉴 **********/
.tab-menu-section {
    width: 100%;
    float: left;
    margin-top: 30px;
    position: relative;
}

.tab-menu-section::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--gray-light-color);
    position: absolute;
    bottom: 0;
    left: 0;
}

.tab-menu > li {
    float: left;
    margin-right: 5px;
}

.tab-menu > li:last-child {
    margin-right: 0;
}

.tab-menu > li > a,
.tab-menu > li > p {
    display: inline-block;
    padding: 0px 8px 8px 8px;
    font-size: 17px;
    font-weight: 500;
    color: var(--gray-color);
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.tab-menu > li > a:hover,
.tab-menu > li > p:hover {
    color: var(--black-light-color);
}

.tab-menu > li.active > a,
.tab-menu > li.active > p {
    color: var(--blue-color);
    border-bottom: 2px solid var(--blue-color);
    font-weight: 600;
}

/********** 게시물 영역 **********/
.paper-contents-wrap {
    width: 100%;
    float: left;
    margin-bottom: 40px;
}

.paper-contents {
    width: 100%;
    float: left;
    border-top: 1px solid var(--gray-light-blue-color);
    padding: 25px 5px;
}

.paper-contents:last-child {
    border-bottom: 1px solid var(--gray-light-blue-color);
}

/***** 게시물 상단 *****/
.paper-title {
    font-weight: 500;
    font-size: 18px;
    float: left;
}

.paper-sub {
    float: right;
}

.paper-sub > li {
    float: left;
    margin-left: 20px;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--black-light-color);
    letter-spacing: -0.2px;
}

.paper-sub > li::before {
    content: "";
    width: 1px;
    height: 12px;
    background-color: var(--gray-sub-color);
    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(--blue-color);
}

/***** 첨부파일 *****/
.file-list > li {
    float: left;
    margin-right: 10px;
}

#join-section .file-list > li .btn {
    cursor: inherit;
}

#join-section .file-list > li .btn:hover {
    background-color: var(--gray-light-color);
}

.file-list > li:last-child {
    margin-right: 0;
}

.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;
}

/********** 리스트 영역 **********/
/***** 리스트 기능 *****/
.list-action-wrap {
    width: 100%;
    float: left;
    margin-bottom: 25px;
}

.list-action {
    width: 100%;
    float: left;
    margin-bottom: 15px;
}

.list-action:last-child {
    margin-bottom: 0;
}

/*** 리스트 개수 ***/
.list-num {
    float: left;
    margin-top: 10px;
}

.list-num p {
    font-size: 14px;
    font-weight: 500;
}

/*** 리스트 정렬 ***/
.list-num-align {
    float: left;
    position: relative;
    top: -1px;
    margin-left: 20px;
    position: relative;
    margin-top: 10px;
}

.list-num-align::before {
    content: "";
    width: 1px;
    height: 14px;
    background-color: var(--gray-sub-color);
    position: absolute;
    top: 3px;
    left: -8px;
}

.list-num-align select {
    font-size: 14px;
    font-weight: 500;
    border: none;
    padding: 0;
    cursor: pointer;
}

/*** 검색바 ***/
.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;
}

.search-btn {
    position: absolute;
    top: 8px;
    right: 8px;
}

.search-btn .icon {
    color: var(--gray-color);
}

/*** 검색바 ***/
.list-total {
    float: left;
}

.list-total > li {
    float: left;
    padding: 8px 14px 7px 14px;
    font-size: 14px;
    color: var(--blue-color);
    border: 1px solid var(--blue-color);
    border-radius: 6px;
    margin-right: 10px;
    font-weight: 500;
}

.list-total > li:last-child {
    margin-right: 0;
}

/*** 리스트 폼 ***/
.action-form {
    float: left;
}

.action-form-list {
    float: left;
}

.action-form-list > li {
    float: left;
    margin-right: 15px;
    width: 350px;
}

.action-form-list > li:last-child {
    margin-right: 0;
}

.action-form-list label {
    font-size: 14px;
    font-weight: 500;
    color: var(--black-light-color);
    float: left;
    margin-bottom: 8px;
}

.action-form .btn {
    margin-top: 26px;
    margin-left: 15px;
}

/********** 리스트 테이블 **********/
.table-list {
    width: 100%;
    float: left;
}

.table {
    width: 100%;
}

.table th,
.table td {
    font-size: 14px;
    text-align: left;
    letter-spacing: -0.2px;
    max-width: 350px;
    border-top: 1px solid var(--gray-light-blue-color);
    line-height: 1.3;
}

.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(--blue-color);
}

.table th {
    font-weight: 500;
    color: var(--black-light-color);
    padding: 12px 10px;
}

.table td {
    font-weight: 500;
    padding: 22px 10px 20px 10px;
    min-width: 50px;
    word-break: break-all;
}

.table .data-none {
    cursor: inherit;
}

.table .data-none:hover {
    background-color: var(--white-color);
}

.table .data-none td {
    text-align: center;
    color: var(--gray-color);
}

.table tr:last-child td {
    border-bottom: 1px solid var(--gray-light-blue-color);
}

.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(--gray-light-blue-color);
}

.link-table tbody tr {
    cursor: pointer;
}

.fold-tr:hover,
.link-table tbody tr:hover {
    background-color: #fafafa;
}

.fold-tr.active {
    border-bottom: none;
}

.fold-tr.active:hover {
    background-color: var(--white-color);
}

.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: 3px;
    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(--gray-sub-color);
    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 {
    font-weight: 500;
    color: var(--black-light-color);
    position: relative;
}

.td-list .td-sub {
    color: var(--black-color);
    margin-bottom: 8px;
}

.td-sub:last-child {
    margin-bottom: 0;
}

.td-sub .icon {
    width: 16px;
    height: 16px;
    color: var(--gray-color);
    margin-right: 5px;
    top: 1px;
}

.td-list .td-sub .icon {
    color: var(--black-color);
    margin-right: 6px;
}

.td-light {
    color: var(--gray-color);
}

.td-blue {
    color: var(--blue-color);
}

.td-state .state {
    float: left;
    padding: 5px 12px 4px 12px;
    border-radius: 6px;
    line-height: 1.2;
    font-size: 13px;
    margin-right: 8px;
    font-weight: 500;
    background-color: var(--white-hover-color);
    border: 1px solid var(--white-hover-color);
    color: var(--black-sub-color);
    display: inline-block;
    white-space: nowrap;
}

.td-state .state:last-child {
    float: inherit;
}

.td-state .state.blue {
    background-color: var(--blue-sub-color);
    border: 1px solid var(--blue-sub-color);
    color: var(--blue-color);
    font-weight: 600;
}

.td-state .state.red {
    background-color: var(--red-sub-color);
    border: 1px solid var(--red-sub-color);
    color: var(--red-color);
    font-weight: 600;
}

.td-state .state:last-child {
    margin-right: 0;
}

.td-list > li {
    float: left;
    margin-right: 20px;
    margin-bottom: 5px;
    position: relative;
}

.td-list > li:after {
    content: "";
    position: absolute;
    top: 4px;
    right: -10px;
    width: 1px;
    height: 12px;
    background-color: var(--gray-sub-color);
}

.td-list > li:last-child {
    margin-right: 0;
}

.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 {
    display: inline-block;
}

.td-btn .btn {
    padding: 7px 14px 7px 14px;
    margin-right: 8px;
}

.td-btn .btn:last-child {
    margin-right: 0;
}

/***** 서브 테이블 *****/
.sub-tr {
    display: none;
}

.sub-tr > td {
    padding-top: 0;
    border-top: none;
}

.sub-table-section {
    width: 100%;
    background-color: var(--gray-light-max-color);
    padding: 20px 25px;
    border-radius: 8px;
    border: 1px solid var(--gray-light-color);
}

.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(--gray-light-blue-color);
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
    background-color: var(--white-color);
    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(--gray-light-color);
}

.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(--black-sub-color);
    padding: 10px;
    white-space: nowrap;
}

.min-menu > li > a.blue,
.min-menu > li > button.blue {
    color: var(--blue-color);
}

.min-menu > li > a.red,
.min-menu > li > button.red {
    color: var(--red-color);
}

.min-menu > li > a:hover,
.min-menu > li > button:hover {
    background-color: var(--white-hover-color);
}

.min-menu > li > a:active,
.min-menu > li > button:active {
    background-color: var(--white-active-color);
}

/********** 슬라이드 리스트 **********/
.slide-list-section {
    width: 100%;
    float: left;
}

.slide-list {
    width: 100%;
    float: left;
}

.slide-list > li {
    width: 100%;
    float: left;
    padding: 25px 10px 25px 10px;
    border-top: 1px solid var(--gray-light-blue-color);
    cursor: pointer;
    background-color: var(--white-color);
}

.slide-list > li:last-child {
    border-bottom: 1px solid var(--gray-light-blue-color);
}

.slide-main {
    width: 100%;
    float: left;
    position: relative;
}

.slide-main p {
    font-weight: 500;
    font-size: 18px;
    float: left;
    width: calc(100% - 150px);
}

.active .slide-main p,
.slide-list > li.active:hover .slide-main p {
    color: var(--blue-color);
}

.slide-list > li:hover .slide-main p {
    color: var(--black-sub-color);
}

.slide-main .icon {
    float: right;
    margin-top: 1px;
    color: var(--gray-color);
}

.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;
    float: left;
}

.side-filter .border {
    padding: 25px 25px 5px 25px;
    width: 100%;
}

/***** 초기화 버튼 *****/
.filter-cancel-btn {
    float: right;
    color: var(--black-light-color);
    cursor: pointer;
    margin-top: 2px;
}

.filter-cancel-btn:hover {
    color: var(--black-sub-color);
}

.filter-cancel-btn p {
    float: left;
    margin-right: 6px;
    font-weight: 500;
    font-size: 14px;
}

.filter-cancel-btn .icon {
    width: 15px;
    height: 15px;
}

/***** 필터 *****/
.filter {
    width: 100%;
    float: left;
}

.filter > li {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray-light-color);
}

.filter > li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.filter-menu {
    width: 100%;
    float: left;
    cursor: pointer;
    margin-bottom: 16px;
}

.filter-menu p {
    float: left;
    font-weight: 500;
}

.filter-menu .arrow-icon {
    float: right;
    top: 1px;
    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%;
}

.radio-select.list-half > li {
    width: calc(50% - 12px);
    margin-right: 12px;
}

.radio-select > li.radio-select-full {
    width: 100%;
}

/*** 상품별 필터 ***/
.filter-set-list {
    width: 100%;
    float: left
}

.filter-set-list > li {
    width: 100%;
    float: left;
    margin-bottom: 15px;
    position: relative;
}

.filter-set-list > li:last-child {
    margin-bottom: 0;
}

.filter-set-list > li p {
    font-size: 14px;
    width: 50%;
    float: left;
    position: absolute;
    top: 45%;
    transform: translateY(-45%);
    color: var(--black-sub-color);
    line-height: 1.3;
}

.filter-set-list > li input {
    width: calc(50% - 10px);
    float: right;
    margin-left: 10px;
}

/*** 기간 필터 ***/
.date-filter {
    width: 100%;
    float: left;
    margin-top: 15px;
}

.date-filter:first-child {
    margin-top: 0;
}

.date-input-section {
    width: 100%;
    float: left;
    margin-bottom: 10px;
}

.date-input-wrap {
    width: calc(50% - 10px);
    float: left;
    position: relative;
}

.date-input-wrap input {
    padding: 6px 8px;
    font-size: 14px;
}

.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;
}

/********** 라디오 셀렉트 **********/
.radio-select > li {
    float: left;
    margin-bottom: 12px;
}

.radio-select > li:last-child {
    margin-bottom: 0;
}

.radio-select > li input[type=radio] {
    display: none;
}

.radio-select-btn {
    cursor: pointer;
}

.radio-btn {
    border: 1px solid var(--gray-sub-color);
    width: 16px;
    height: 16px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    float: left;
    margin-right: 6px;
    background-color: var(--white-color);
}

.radio-btn span {
    width: 8px;
    height: 8px;
    background-color: var(--white-color);
    border-radius: 50px;
    display: none;
}

.radio-select-btn:hover .radio-btn span {
    background-color: var(--blue-sub-color);
    display: block;
}

.radio-select > li input[type=radio]:checked + .radio-select-btn .radio-btn {
    border: 1px solid var(--blue-color);
}

.radio-select > li input[type=radio]:checked + .radio-select-btn .radio-btn span {
    display: block;
    background-color: var(--blue-color);
}

.radio-select-btn p {
    font-weight: 400;
    font-size: 14px;
    float: left;
    letter-spacing: -0.3px;
}

/********** 체크박스 셀렉트 **********/
.check-select > li {
    float: left;
}

.check-select > li input[type=checkbox] {
    display: none;
}

.check-select-btn {
    cursor: pointer;
    display: inline-block;
}

.check-btn {
    border: 1px solid var(--gray-sub-color);
    width: 20px;
    height: 20px;
    overflow: hidden;
    border-radius: 5px;
    color: var(--white-color);
    float: left;
    margin-right: 10px;
    background-color: var(--white-color);
    position: relative;
}

.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: 12px;
    height: 12px;
    position: absolute;
    top: 3px;
    left: 3px;
}

#join-section .check-btn .icon {
    top: 0;
}

.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 {
    background-color: var(--blue-color);
    border: 1px solid var(--blue-color);
}

.table-check-btn input[type=checkbox]:checked + .check-select-btn .check-btn .icon,
.check-select > li input[type=checkbox]:checked + .check-select-btn .check-btn .icon {
    display: block;
}

.check-select-btn p {
    font-weight: 500;
    font-size: 16px;
    float: left;
}

.check-select-btn p a {
    text-decoration: underline;
}

/********** 박스 라디오 셀렉트 **********/
.box-select {
    width: 100%;
    float: left;
}

.box-select input[type=radio] {
    display: none;
}

.box-select input[type=checkbox] {
    display: none;
}

.box-select > li {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

#join-company .box-select > li {
    width: calc(50% - 8px);
}

.box-select > li:last-child {
    margin-right: 0;
}

.box-select-btn {
    border: 1px solid var(--gray-sub-color);
    display: block;
    padding: 11px 23px 11px 20px;
    border-radius: 10px;
    float: left;
    width: 100%;
    color: var(--black-light-color);
    cursor: pointer;
    text-align: center;
}

.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;
}

.side-form-contents .box-select-btn {
    padding: 8px 16px 7px 16px;
}

.side-form-contents .box-select-btn-contents p {
    font-size: 14px;
}

.box-select-btn:hover {
    border: 1px solid var(--gray-color);
}

.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;
}

.box-select input[type=radio]:checked + .box-select-btn,
.box-select input[type=checkbox]:checked + .box-select-btn {
    border: 1px solid var(--blue-color);
    color: var(--blue-color);
}

/********** 2단 박스 라디오 셀렉트 **********/
.box-select-depth {
    width: 100%;
    float: left;
}

.box-select-depth > li {
    width: 100%;
    float: left;
    margin-top: 10px;
    display: none;
}

.box-select-depth .box-select-btn {
    padding: 9px 16px 8px 16px;
}

.box-select-depth .box-select-btn-contents p {
    margin-left: 0;
    margin-top: 0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.2px;
}

/********** 페이지네이션 **********/
.pagination-wrap {
    width: 100%;
    float: left;
    text-align: center;
    margin-top: 50px;
}

.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(--black-sub-color);
    background-color: var(--white-color);
    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(--white-hover-color);
}

.pagination > a:active {
    background-color: var(--white-active-color);
}

.pagination > a.active,
.pagination > a.active:hover,
.pagination > a.active:active {
    background-color: var(--blue-color);
    color: var(--white-color);
}

.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;
}

/********** 로그인, 회원가입 **********/
#login-section,
#join-section {
    padding: 0;
}

.single-form {
    width: 320px;
    margin: 100px auto 100px auto;
    padding: 0;
}

#login-section .single-form {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    margin: 0;
}

.single-form-top {
    width: 100%;
    float: left;
    text-align: center;
    margin-bottom: 30px;
}

.single-form-top .logo {
    width: 200px;
    display: inline-block;
}

.single-form-top h2 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 20px;
}

.single-form-info {
    width: 100%;
    float: left;
    margin-top: 25px;
    text-align: center;
}

.single-form-info-txt {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
}

.single-form-info-txt p {
    float: left;
    margin-right: 8px;
    color: var(--black-light-color);
}

.single-form-info-txt a {
    float: left;
    display: inline-block;
    color: var(--black-sub-color);
}

.single-form-info-txt a:hover {
    color: var(--black-color);
}

/********** 입력 폼 **********/
.normal-section {
    padding-top: 40px;
    border-top: 1px solid var(--gray-light-blue-color);
}

.form-full-section.normal-section {
    padding-top: 0;
}

.form-list {
    width: 100%;
    float: left;
    margin-bottom: 30px;
}

.form-min-section .form-list,
.single-form-contents .form-list,
.form-section.side-form-contents .form-list {
    margin-bottom: 0;
}

.form-section .form-list {
    margin-bottom: 40px;
    display: none;
}

.paper-form-section .form-list,
.form-full-section .form-list,
.side-form-contents .form-list {
    display: block;
}

.form-list > li {
    width: 100%;
    float: left;
}

.form-section .form-list > li {
    padding-bottom: 40px;
    margin-top: 40px;
    border-bottom: 1px solid var(--gray-light-blue-color);
}

.paper-form-section .form-list {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-top: 1px solid var(--gray-light-blue-color);
    border-bottom: 1px solid var(--gray-light-blue-color);
}

.form-min-section .form-list > li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-light-blue-color);
}

.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;
}

.side-form-contents .form-list > li {
    padding-bottom: 20px;
    margin-top: 20px;
}

#login-section .form-list > li {
    margin-bottom: 20px;
}

.form-top {
    width: 100%;
    float: left;
    margin-bottom: 10px;
}

.large-form-contents .form-top {
    margin-bottom: 20px;
}

.form-top label,
.form-top p {
    font-weight: 500;
    font-size: 15px;
    float: left;
}

.side-form-contents .form-top {
    margin-bottom: 15px;
}

.side-form-contents .form-top p {
    font-size: 16px;
}

.form-min-section .form-top {
    width: 240px;
    margin-bottom: 0;
    margin-top: 10px;
}

.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 {
    margin-bottom: 10px;
}

.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;
    margin-top: 10px;
    color: var(--black-light-color);
    width: 100%;
}

.form-main .form-top-info {
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
    color: var(--black-light-color);
    width: 100%;
}

.form-top .btn {
    font-size: 13px;
    margin-left: 12px;
    padding: 7px 14px;
    top: -5px;
}

.form-main {
    width: 100%;
    float: left;
}

.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-main input {
    padding: 10px 12px;
}

.form-section select {
    padding: 9px 11px;
}

.form-main textarea {
    padding: 10px 12px;
    width: 50%;
    height: 200px;
}

.form-main textarea.full {
    width: 100%;
}

.form-img-wrap {
    width: 100%;
    float: left;
}

.form-img-list > li {
    width: calc(50% - 10px);
    margin-right: 20px;
    float: left;
    margin-bottom: 20px;
}

.form-img-list > li:nth-child(2n) {
    margin-right: 0;
}

.form-img-list > li.form-img-none {
    width: 100%;
    text-align: center;
    color: var(--gray-color);
    font-size: 15px;
    margin-right: 0;
    background-color: var(--white-active-color);
    border-radius: 10px;
    padding: 15px;
    
}

.paper-form-section textarea {
    padding: 10px 12px;
    height: 400px;
    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;
}

#join-section .form-section input,
#join-section .form-section select {
    width: 100%;
}

.form-main-hasunit input {
    padding-right: 30px;
}

.input-unit,
.form-main-hasunit .icon-btn {
    position: absolute;
    top: 11px;
    right: 12px;
    color: var(--black-sub-color);
    font-weight: 500;
}

.form-main-hasunit .icon-btn.pw-hide {
    display: none;
}

.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(--black-light-color);
    margin-right: 12px;
    float: left;
    margin-top: 11px;
}

.form-main-list > li input,
.form-main-list > li select {
    float: left;
}

.form-main input[type=file] {
    display: none;
}

.form-main .datepicker {
    width: 150px;
}

.between {
    display: block;
    float: left;
    font-weight: 500;
    color: var(--black-light-color);
    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(--black-light-color);
    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(--gray-light-blue-color);
    background-color: var(--gray-light-max-color);
    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(--gray-sub-color);
}

.form-main-error input {
    border: 1px solid var(--red-color);
}

.error-txt {
    color: var(--red-color);
    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%;
    float: left;
}

.form-btn-wrap .btn {
    font-size: 15px;
    height: 40px;
}

.form-btn-wrap .btn:last-child {
    margin-right: 0;
}

.form-btn-wrap .btn {
    width: 120px;
    margin-right: 10px;
}

.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% - 130px);
    margin-right: 0;
}

/***** 스탭 바 *****/
.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(--gray-color);
    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(--blue-color);
    font-weight: 600;
}

#form-rewrite .form-step-bar > .form-step-txt > li:nth-child(n) {
    color: var(--blue-color);
    font-weight: 600;
}

.form-step-bar-line {
    width: 100%;
    height: 3px;
    background-color: var(--gray-light-color);
}

.form-step-bar-line span {
    display: block;
    height: 100%;
}

.form-step-bar02 .form-step-bar-line span {
    width: 50%;
    background-color: var(--blue-color);
    transition: all 300ms;
}

.form-step-bar03 .form-step-bar-line span {
    width: 33.33%;
    background-color: var(--blue-color);
    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(--blue-color);
    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%;
}

/***** 스탭별 입력폼 *****/
.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) {
    display: block;
}

/***** 회원가입 스탭별 *****/
#join-section .single-form-title h2,
#join-section .form-btn-wrap .btn {
    display: none;
}

#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;
}

#join-section .form-step01 .form-btn-wrap .btn.next-btn {
    display: block;
    width: 100%;
}

#join-section .form-step02 .form-btn-wrap .btn.back-btn {
    display: block;
}

#join-section .form-step02 .form-btn-wrap .btn.next-btn {
    display: block;
}

#join-section .form-step03 .form-btn-wrap .btn.back-btn,
#join-section .form-step03 .form-btn-wrap .btn.form-btn {
    display: block;
}

/********** 모달 **********/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0003;
    z-index: 30;
    display: none;
}

.modal-box {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white-color);
    padding: 30px 35px;
    border-radius: 15px;
    transition: all 600ms;
    display: none;
    width: 500px;
}

.modal-box.wide {
    width: 600px;
}

.modal-box.wide2 {
    width: 1000px;
}

.modal-box.fadeup {
    top: 50%;
}

#mission-preview.modal-box {
    width: 400px;
}

/***** 기본 모달 *****/
.modal-top {
    width: 100%;
    float: left;
    margin-bottom: 25px;
}

.modal-title {
    font-weight: 600;
    font-size: 20px;
    float: left;
}

.modal-top .icon.icon-btn {
    color: var(--black-light-color);
    float: right;
    width: 22px;
    height: 22px;
    margin-right: 0;
}

.modal-top .icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.modal-top.blue {
    color: var(--blue-color);
}

.modal-contents {
    width: 100%;
    float: left;
    max-height: 70vh;
    overflow: hidden;
    overflow-y: auto;
}

.modal-contents.box {
    border: 1px solid var(--gray-sub-color);
    border-radius: 8px;
    overflow: hidden;
}

.modal-contents iframe {
    width: 100%;
    height: 650px;
}

.modal-text {
    width: 100%;
    float: left;
    margin-bottom: 5px;
}

.modal-text:last-child {
    margin-bottom: 0;
}

.modal-text p {
    font-weight: 500;
    color: var(--black-sub-color);
    line-height: 1.5;
}

.modal-text p .blue {
    font-weight: 500;
    color: var(--blue-color)
}

.modal-info {
    width: 100%;
    float: left;
    padding: 15px 20px;
    background-color: var(--gray-light-max-color);
    border: 1px solid var(--gray-light-color);
    border-radius: 10px;
    margin-bottom: 20px;
}

.modal-info.blue {
    margin-top: 15px;
    border: 1px solid var(--blue-color);
    background-color: var(--blue-color);
}

.modal-info p {
    font-weight: 500;
    color: var(--black-sub-color);
    font-size: 15px;
    width: 100%;
    float: left;
    margin-bottom: 5px;
    line-height: 1.4;
}

.modal-info p:last-child {
    margin-bottom: 0;
}

.modal-info.blue p {
    color: var(--white-color);
    font-weight: 400;
}

.modal-info p.modal-info-title {
    font-size: 16px;
    font-weight: 600;
}

.modal-info p.modal-info-sub {
    font-size: 14px;
    font-weight: 300;
}

.modal-info.blue .modal-info-sub {
    opacity: 0.8;
}

.modal-main-section {
    width: 100%;
    float: left;
}

.modal-main-section textarea {
    width: 100%;
    height: 300px;
}

.wide2 .modal-list {
    width: calc(50% - 20px);
    float: left;
    margin-right: 40px;
}

.modal-list:last-child {
    margin-right: 0;
}

.modal-list > li {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

.modal-list > li:last-child {
    margin-bottom: 0;
}

.modal-list-title {
    font-weight: 500;
    color: var(--black-sub-color);
    float: left;
}

.modal-form .modal-list-title {
    margin-top: 8px;
}

.modal-form .modal-list-main {
    width: calc(100% - 75px);
}

#api-write .modal-form .modal-list-main,
#tax-modal .modal-form .modal-list-main {
    width: calc(100% - 110px);
}

#faq-write-modal .modal-list label,
#faq-edit-modal .modal-list label {
    margin-top: 0;
    width: 100%;
}

#faq-write-modal .modal-list-main,
#faq-edit-modal .modal-list-main {
    width: 100%;
    float: left;
    margin-top: 10px;
}

.modal-list-main {
    width: calc(100% - 120px);
    float: right;
}

.modal-list-main p {
    font-weight: 500;
}

.modal-list-main.hasbtn input {
    width: calc(100% - 70px);
    float: left;
    margin-right: 10px;
}

.modal-list-main.hasbtn .btn {
    padding: 9px 16px;
}

.modal-list-main .radio-select {
    margin-top: 9px;
    float: left;
}

.modal-list-main .radio-select > li {
    margin-right: 15px;
}

.modal-list-main .radio-select > li:last-child {
    margin-right: 0;
}

.modal-list-main .radio-select-btn p {
    font-size: 15px;
}

.modal-list-main .radio-btn {
    width: 18px;
    height: 18px;
}

.modal-list-main input[type="checkbox"] {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    margin-top: 9px;
    cursor: pointer;
}

/***** 모달 테이블 *****/
.modal-table {
    width: 100%;
    float: left;
    margin-top: 30px;
}

.modal-table td {
    padding: 10px 5px;
}

/***** 알림 모달 *****/
.alert-modal {
    text-align: center;
    padding: 30px 30px 25px 30px;
    width: 350px;
}

#join-alert {
    width: 480px;
}

.alert-icon {
    width: 45px;
    height: 45px;
    display: inline-block;
    color: var(--blue-color);
}

.alert-icon.red {
    color: var(--red-color);
}

.alert-icon .icon {
    width: 45px;
    height: 45px;
}

.alert-contents {
    width: 100%;
    float: left;
    margin-top: 10px;
}

.alert-title {
    width: 100%;
    float: left;
}

.alert-title p {
    font-weight: 600;
    font-size: 18px;
}

.alert-txt {
    width: 100%;
    float: left;
    margin-top: 10px;
}

.alert-txt p {
    color: var(--black-light-color);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.3;
}

/***** 모달 버튼 *****/
.modal-btn-wrap {
    width: 100%;
    float: left;
    margin-top: 25px;
}

.modal-btn-wrap .btn {
    font-size: 15px;
    height: 38px;
    width: calc(50% - 5px);
    margin-right: 10px;
}

.modal-btn-wrap .btn:last-child {
    margin-right: 0;
}

.modal-rehide {
    float: left;
    margin-top: 10px;
}

.modal-rehide input {
    float: left;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-top: 1px;
}

.modal-rehide label {
    float: left;
    margin-left: 8px;
    font-size: 15px;
    font-weight: 400;
    color: var(--black-sub-color);
    cursor: pointer;
}

.modal-rehide label:hover {
    color: var(--black-color)
}

.modal-rehide + .btn {
    float: right;
}

/********** 작은 모달 **********/
.min-modal {
    width: 450px;
    position: fixed;
    top: 80px;
    right: 80px;
    background-color: var(--white-color);
    border: 1px solid var(--red-color);
    padding: 24px 30px 24px 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px #0001;
    animation: fadein 400ms 1 linear;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100%;
    }
}

.icon.min-modal-off {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--gray-color);
    float: inherit;
    cursor: pointer;
}

.min-modal-top {
    width: 100%;
    float: left;
    margin-bottom: 12px;
    color: var(--red-color);
    position: relative;
    padding-right: 15px;
}

.min-modal-top .icon {
    float: left;
    margin-right: 6px;
    width: 22px;
    height: 22px;
    top: -1px;
}

.min-modal-title {
    font-weight: 500;
    font-size: 18px;
}

.min-modal-contents {
    width: 100%;
    float: left;
}

.min-modal-contents p {
    line-height: 1.4;
    margin-bottom: 5px;
}

.min-modal-contents p:last-child {
    margin-bottom: 0;
}

.min-modal-contents p .bold {
    font-weight: 600;
}

.min-modal .modal-rehide {
    margin-top: 15px;
}

/********** 컴포넌트 **********/
/***** 아이콘 *****/
.icon {
    display: block;
    width: 20px;
    height: 20px;
    float: left;
    position: relative;
}

.arrow-icon {
    width: 16px;
    color: var(--gray-color);
}

.icon-circle {
    display: block;
    text-align: center;
    font-weight: 700;
    color: var(--white-color);
    width: 20px;
    height: 20px;
    line-height: 20px;
    background-color: var(--blue-color);
    border-radius: 50px;
    float: left;
    font-size: 12px;
    position: relative;
}

/***** 버튼 *****/
.btn-wrap {
    float: left;
}

.btn-wrap .btn {
    float: left;
    margin-right: 8px;
}

.btn-wrap .btn:last-child,
.btn-sec-wrap:last-child {
    margin-right: 0;
}

.btn-sec-wrap {
    float: left;
    margin-right: 8px;
}

.btn {
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    background-color: var(--gray-color);
    border: 1px solid var(--gray-color);
    color: var(--white-color);
    padding: 8px 16px;
    border-radius: 8px;
    text-align: center;
    float: left;
    position: relative;
    white-space: nowrap;
}

.basic-btn {
    padding: 7px 14px;
    border-radius: 6px;
}

.btn.max {
    width: 100%;
}

.btn.half {
    width: calc(50% - 5px);
    margin-right: 10px;
}

.btn:last-child {
    margin-right: 0;
}

.btn:hover {
    background-color: var(--gray-hover-color);
    border: 1px solid var(--gray-hover-color);
}

.btn.blue {
    background-color: var(--blue-color);
    border: 1px solid var(--blue-color);
}

.btn.blue:hover {
    background-color: var(--blue-hover-color);
    border: 1px solid var(--blue-hover-color);
}

.btn.blue:active {
    background-color: var(--blue-active-color);
    border: 1px solid var(--blue-active-color);
}

.btn.red {
    background-color: var(--red-color);
    border: 1px solid var(--red-color);
}

.btn.red:hover {
    background-color: var(--red-hover-color);
    border: 1px solid var(--red-hover-color);
}

.btn.red:active {
    background-color: var(--red-active-color);
    border: 1px solid var(--red-active-color);
}

/*** 서브 버튼 ***/
.btn.sub {
    font-weight: 600;
    background-color: var(--gray-light-color);
    border: 1px solid var(--gray-light-color);
    color: var(--black-light-color);
}

.btn.sub:hover {
    background-color: var(--gray-light-hover-color);
}

.btn.sub:active {
    background-color: var(--gray-sub-color);
}

.btn.blue.sub {
    background-color: var(--blue-sub-color);
    border: 1px solid var(--blue-sub-color);
    color: var(--blue-color);
}

.btn.blue.sub:hover {
    background-color: var(--blue-sub-hover-color);
    border: 1px solid var(--blue-sub-hover-color);
}

.btn.blue.sub:active {
    background-color: var(--blue-sub-active-color);
    border: 1px solid var(--blue-sub-active-color);
}

.btn.red.sub {
    background-color: var(--red-sub-color);
    border: 1px solid var(--red-sub-color);
    color: var(--red-color);
}

.btn.red.sub:hover {
    background-color: var(--red-sub-hover-color);
    border: 1px solid var(--red-sub-hover-color);
}

.btn.red.sub:active {
    background-color: var(--red-sub-active-color);
    border: 1px solid var(--red-sub-active-color);
}

.btn.back-btn {
    background-color: var(--gray-middle-color);
    border: 1px solid var(--gray-middle-color);
}

.btn.back-btn:hover {
    background-color: var(--gray-middle-hover-color);
    border: 1px solid var(--gray-middle-hover-color);
}

.btn.back-btn:active {
    background-color: var(--gray-middle-active-color);
    border: 1px solid var(--gray-middle-active-color);
}

/*** 라인 버튼 ***/
.btn.line {
    background-color: var(--white-color);
    border: 1px solid var(--gray-sub-color);
    color: var(--black-light-color);
    font-weight: 600;
}

.btn.line:hover {
    background-color: var(--white-hover-color);
}

.btn.line:active {
    background-color: var(--white-active-color);
}

.btn.line.blue {
    border: 1px solid var(--blue-color);
    color: var(--blue-color);
}

.btn.line.blue:hover {
    background-color: var(--blue-light-hover-color);
}

.btn.line.blue:active {
    background-color: var(--blue-light-active-color);
}

.btn.line.red {
    border: 1px solid var(--red-color);
    color: var(--red-color);
}

.btn.line.red:hover {
    background-color: var(--red-light-hover-color);
}

.btn.line.red:active {
    background-color: var(--red-light-active-color);
}

/*** 아이콘 텍스트 버튼 ***/
.btn.hasicon {
    padding: 8px 16px 8px 14px;
}

.hasicon .icon {
    float: left;
    margin-right: 5px;
    width: 18px;
    height: 18px;
}

.hasicon p {
    float: left;
    margin-top: 1px;
}

/*** 아이콘 버튼 ***/
.icon.icon-btn {
    display: inline-block;
    cursor: pointer;
    float: inherit;
}

.icon.icon-btn {
    color: var(--gray-color);
}

.icon.icon-btn:hover {
    color: var(--black-light-color);
}

.icon.icon-btn:active {
    color: var(--black-sub-color);
}

/*** 링크 버튼 ***/
.link-btn {
    color: var(--black-light-color);
}

.link-btn:hover {
    color: var(--black-sub-color);
}

.link-btn p {
    float: left;
    margin-right: 5px;
    font-size: 14px;
    font-weight: 500;
}

.link-btn .icon {
    width: 14px;
    height: 14px;
}

/********** 헤더 **********/
#header {
    width: 100%;
    padding: 30px 80px 30px 290px;
    height: 80px;
    background-color: var(--white-color);
}

/***** 알림 *****/
.alarm {
    float: left;
    margin-right: 25px;
    position: relative;
}

.header-btn {
    cursor: pointer;
    position: relative;
    float: left;
}

.header-btn:hover,
.header-btn.active {
    color: var(--blue-color);
}

.alarm-point {
    width: 8px;
    height: 8px;
    background-color: var(--blue-color);
    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-color);
    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(--blue-color);
    border-radius: 50px;
    font-size: 12px;
    color: var(--white-color);
    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(--black-light-color);
    cursor: pointer;
    margin-top: 2px;
}

.alarm-all-check:hover {
    color: var(--gray-color);
}

.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(--gray-light-blue-color);
    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(--blue-color);
    font-weight: 600;
    float: left;
    max-width: 145px;
}

.alarm-list-date {
    color: var(--black-light-color);
    float: right;
    font-size: 13px
}

.alarm-list-content {
    width: 100%;
    float: left;
}

.alarm-list-content p {
    font-weight: 500;
    color: var(--black-sub-color);
    line-height: 1.4;
    text-align: justify;
}

.alarm-list-content p span {
    color: var(--black-color);
}

/***** 내정보 *****/
.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: 250px;
}

.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(--gray-light-color);
    color: var(--black-light-color);
    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(--blue-color);
    background-color: var(--blue-sub-color);
}

.account-modal .account-name {
    float: left;
    padding-top: 0;
    font-size: 18px;
    font-weight: 600;
}

.account-id {
    color: var(--black-light-color);
    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(--gray-light-blue-color);
    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(--gray-light-blue-color);
}

.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(--black-sub-color);
}

.account-menu > li > a:hover {
    color: var(--black-color);
}

.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-color);
    border-right: 1px solid var(--gray-light-blue-color);
    padding: 30px 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-color);
    overflow: hidden;
}

.main-menu:hover,
.active .main-menu,
.sub-menu-txt:hover,
.active > .sub-menu-txt:hover,
.active > .sub-menu-txt {
    color: var(--blue-color);
}

.active > .sub-menu-txt {
    background-color: var(--blue-sub-color);
}

.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;
}

/********** 플로팅 **********/
#floating {
    position: fixed;
    bottom: 60px;
    right: 40px;
}

.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(--white-hover-color);
}

.floating-btn:active {
    background-color: var(--white-active-color);
}

.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(--blue-color);
    border-top: 4px solid var(--gray-light-color);
    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(--black-light-color);
    font-size: 12px;
}