* {
    line-height: 1.5;
}
body {
    background-color: var(--color-gray-3);
}
textarea {
    resize: none;
}
input[readonly] {
    cursor: default;
    background-color: var(--color-gray-3);
}

.leading-none {
    line-height: 1;
}

#wrap {
    min-width: 1900px;
}
#sidebar {
    overflow: hidden;
    z-index: 9000;
    position: sticky;
    top: 0px;
    left: 0px;
    width: 480px;
    min-width: 480px;
    height: 100vh;
    box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.02);
    border-radius: 0px 32px 32px 0px;
    padding: 40px 56px 88px;
    background-color: #fff;
}
caption {
    display: none;
}
input:not(:checked) + label {
    color: var(--color-gray-6);
}
input:checked + label {
    font-weight: 700;
}

swiper-container::part(bullet),
swiper-container::part(bullet-active) {
    opacity: 0.5;
    width: 16px;
    height: 16px;
    margin: 0px 8px;
    background-color: white;
}
swiper-container::part(bullet-active) {
    opacity: 1;
}

.radio-item .checked-item {
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: bold;
    color: #bfbfbf;
}
.radio-item .radio-icon {
    width: 24px;
    height: 24px;
    border: 2px solid #bfbfbf;
    border-radius: 50%;
    display: block;
    position: relative;
}
.radio-item .radio-icon::after {
    content: "";
    position: absolute;
    display: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-blue-2);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.form-radio:checked + .checked-item {
    color: var(--color-blue-2);
}
.form-radio:checked + .checked-item .radio-icon {
    border: 2px solid var(--color-blue-2);
}
.form-radio:checked + .checked-item .radio-icon::after {
    display: block;
}

.side-bar-menu-item {
    border-radius: 16px;
}
.side-bar-menu-item.on {
    border: 2px solid var(--color-primary);
}
.side-bar-menu-item:not(.on) {
    background-color: var(--color-gray-3);
}

.page-1 .contents-wrap {
    transition: all 0.3s ease-in-out;
}
.page-1 .contents-wrap.open {
    grid-template-columns: repeat(2, 1fr);
}

.page-1 .contents-wrap.open .status-wrap {
    display: block;
}

.table-el.type-1 .t-head,
.table-el.type-1 .t-body .td {
    /* min-height: 48px; */
    height: auto;
    border-radius: 8px;
}
.table-el.type-1 .t-head {
    display: flex;
    background-color: rgba(0, 0, 0, 0.5);
}
.table-el.type-1 .t-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}
.table-el.type-1 .t-body .tr.error-item {
    background-color: var(--color-red-3);
}
.table-el.type-1 .t-body .tr.remove-req-item {
    background-color: var(--color-purple-2);
}
.table-el.type-1 .t-body .tr.register-req-item {
    background-color: var(--color-sky-2);
}
.table-el.type-1 .t-head .th {
    color: #fff;
}
.table-el.type-1 .t-head .tr,
.table-el.type-1 .t-body .tr {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 8px;
    padding: 16px 24px;
    color: #fff;
}
.table-el.type-1 .t-head .item-1,
.table-el.type-1 .t-body .item-1,
.table-el.type-1 .t-head .item-3,
.table-el.type-1 .t-body .item-3 {
    width: 200px;
}
.table-el.type-1 .t-head .item-2,
.table-el.type-1 .t-body .item-2 {
    width: 240px;
}
.table-el.type-1 .t-head .item-5,
.table-el.type-1 .t-body .item-5 {
    width: 120px;
    margin-left: auto;
}
.table-el.type-1 .t-body .management-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.table-el.type-1 .t-body .management-item > .btn {
    opacity: 0.5;
    text-decoration: underline;
}
.table-el.type-1 .t-body .management-item > .btn.btn-approve {
    opacity: 1;
    color: var(--color-red-4);
}
.table-el.type-1 .t-body .management-item > .btn-edit {
    opacity: 1;
    color: var(--color-blue-2);
}
.table-el.type-1 .t-body .management-item > .btn:not(:last-child)::after {
    content: "";
    display: inline-block;
    clear: both;
    width: 1px;
    height: 16px;
    margin-left: 8px;
    background-color: var(--color-gray-6);
}
.table-el.type-1 .t-body .tr {
    display: flex;
    justify-content: flex-start;
    background-color: var(--color-gray-3);
}
/* .table-el.type-1 .t-body .td *:not(.text-white) {
    color: var(--color-black);
} */

/* page2 detail */
.legend-container {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}
.legend-container .legend-item {
    opacity: 0.3;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}
.legend-container .legend-item.on {
    opacity: 1;
    font-weight: 700;
}
.legend-container .legend-item .legend-item-box {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background-color: var(--color-gray-6);
}

.page-3 .table-el.type-1 .t-body .tr {
    align-items: stretch;
}
.page-3 .table-el.type-1 .t-head .tr,
.page-3 .table-el.type-1 .t-body .tr {
    min-width: 100%;
    width: max-content;
    padding: 0px;
}
.page-3 .table-el.type-1 .t-head .tr > .th,
.page-3 .table-el.type-1 .t-body .tr > .td {
    height: auto;
    padding: 16px 20px;
}
.page-3 .table-el.type-1 .t-head .item-1,
.page-3 .table-el.type-1 .t-body .item-1 {
    position: sticky;
    left: 0px;
    border-radius: 8px 0px 0px 8px;
}
.page-3 .table-el.type-1 .t-head .item-1 {
    background-color: var(--color-black-2);
}
.page-3 .table-el.type-1 .tr > .item-1 {
    width: 160px;
}
.page-3 .table-el.type-1 .t-body .tr > .item-1 {
    background-color: var(--color-gray-2);
    border-right: 2px solid white;
}
.page-3 .table-el.type-1 .t-body .error-item > .item-1 {
    background-color: var(--color-red-5);
}
.page-3 .table-el.type-1 .t-body .remove-req-item > .item-1 {
    background-color: var(--color-purple-3);
}
.page-3 .table-el.type-1 .t-body .register-req-item > .item-1 {
    background-color: var(--color-blue-4);
}

/* 페이지네이션 */
#pagination button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
}
#pagination .btn-page-number.on {
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
}