@charset "utf-8";

:root {
    --primary-color: #3B5867;
    --primary-variant-color: #E6ECEB;

    --grey-100: #F8F8F8;
    --grey-200: #EEEEEE;
    --grey-300: #E5E5E5;
    --grey-400: #D7D7D7;
    --grey-500: #CBCBCB;
    --grey-600: #A2A2A2;
    --grey-700: #666666;
    --grey-800: #3A3A3A;
    --grey-900: #191919;

    --red-color: #ff133e;
    --lemon-color: #fdf7e2;
    --orange-color: #f0972d;
}

body {
    width: 100%;
    height: 100vh;
    /* overflow-y: hidden; */
    position: relative;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
b,
table,
th,
tr,
td,
strong,
footer,
div,
input,
button,
select,
textarea,
label,
dd,
dl,
dt {
    font-family: 'Pretendard';
    letter-spacing: -0.5px;
    word-break: keep-all;
    line-height: 1.5;
}

body:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    width: 35px;
    height: 100%;
    z-index: 1000;
}

/* modal */
.modal {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;

    .popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 10px;
        padding: 20px 22px;
        background: #fff;
        box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.25);
        width: 345px;
    }
    .content {
        display: table;
        position: relative;
        color: #000;
        font-size: 17px;
        font-weight: 500;
        padding: 0 0 0 53px;
        width: 100%;
        min-height: 40px;
    }
    .content:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background: url(https://s1.unipware.com/images/ico_logout1.svg) 50% 50% no-repeat #ffcece;
        background-size: 23px auto;
        border-radius: 50%;
        width: 40px;
        height: 40px;
    }
    .cell {
        display: table-cell;
        vertical-align: middle;
    }
    .btn_w {
        text-align: right;
        margin: 42px 0 0;
        justify-content: end;
    }
    .btn_w button{
        padding: 6px 24px;
        border-radius: 4px;
        font-size: 14px;
    }
    .btn_w button.cancel{
        background: var(--grey-300);
    }
    .btn_w button.ok{
        background: var(--primary-color);
        color: var(--grey-100);
    }
    .btn_w button+button{
        margin-left: 5px;
    }
    .close {
        position: absolute;
        top: 12px;
        right: 15px;
        background: url(https://s1.unipware.com/images/ico_close.svg) 50% 50% no-repeat;
        background-size: 13px auto;
        text-indent: -9999px;
        font-size: 0;
        width: 23px;
        height: 23px;
    }
}

.modalBg {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.6;
    width: 100%;
    height: 100%;
    transition: all 0.4s 0s;
}







header {
    margin-left: 35px;
    padding: 0 60px;
    height: 130px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 1230px;

    img {
        height: 40px;
        width: fit-content;
        cursor: pointer;
    }

    .logout_w div {
        font-size: 20px;
        font-weight: 500;
        color: var(--primary-color);
        margin-right: 20px;
    }

    .logout_w span {
        font-weight: 700;
        color: var(--primary-color);
    }

    .logout_w button {
        background: none;
        display: flex;
        align-items: center;
        font-size: 16px;
        color: var(--primary-color);
        position: relative;
        overflow: hidden;
        min-width: 100px;
    }

    .logout_w button:after {
        position: absolute;
        content: "";
        display: block;
        width: 30px;
        height: 30px;
        top: 50%;
        left: 65%;
        transform: translate(-50%, -50%);
        /* 초기 위치: 왼쪽으로 완전히 숨김 */
        background: url(https://s1.unipware.com/GLIPS/images/ico_logout.svg) no-repeat center;
        margin-left: 5px;
        transition: transform 0.5s ease;
        /* 애니메이션 설정 */
    }

    .logout_w button:hover::after {
        transform: translate(0, -50%);
        opacity: 1;
    }
}

.login_bg {
    position: absolute;
    right: 0;
    width: 75%;
    height: 100%;
    overflow: hidden;
    background: url(https://s1.unipware.com/GLIPS/images/img_login_bg.png);
    background-size: cover;
}

.login_area {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    left: 80px;
    height: 100%;
    padding: 40px 0;

    h6 {
        font-size: 16px;
        font-weight: 300;
        color: var(--primary-color);
        margin: 0;
    }

    .login_footer {
        font-size: 14px;
        font-weight: 300;
        color: var(--primary-color);
    }

    img {
        height: 50px;
    }

    input {
        width: 100%;
        border: none;
        border-radius: 30px;
        padding: 12px 18px;
        background: var(--grey-200);
        font-size: 16px;
        font-weight: 500;
    }

    input.error {
        color: var(--red-color);
    }

    button {
        background: var(--primary-color);
        padding: 12px 0;
        color: var(--grey-100);
        font-size: 16px;
        border-radius: 30px;
    }

    .login_w {
        gap: 50px;
        text-align: center;
        padding-left: 70px;
        min-width: 400px;
        max-width: 400px;
    }

    button:hover {
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%), var(--Primary-Color, #3B5867);
    }
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

aside {
    position: absolute;
    left: 0;
    margin-left: 35px;
    padding-left: 60px;
    width: fit-content;

    span {
        position: relative;
        font-size: 23px;
        font-weight: 600;
        color: var(--primary-color);
    }

    span::before {
        content: "";
        position: absolute;
        left: -70px;
        top: 55%;
        display: block;
        margin-top: -4px;
        background: #3B5867;
        width: 59px;
        height: 2px;
    }

    ul {
        margin-top: 10px;
    }

    li {
        font-size: 17px;
        cursor: pointer;
        color: var(--grey-700);
        padding: 0px 5px;
    }

    li+li {
        margin-top: 8px;
    }

    li:hover,
    li.active {
        background: var(--primary-variant-color);
        border-radius: 6px;
        width: fit-content;
        font-weight: 600;
        color: var(--grey-900);
    }
}

.wrap {
    margin-left: 250px;
    width: calc(100% - 250px);
    height: calc(100% - 130px);
    padding: 0 45px;
    min-width: 1230px;
}

.breadcrumb {
    display: flex;
    justify-content: space-between;
    width: fit-content;
    font-size: 16px;
    margin-bottom: 40px;
    color: var(--grey-600);

    img {
        width: 12px;
    }
}

.tap_w {
    button {
        padding: 6px 28px;
        border: 1px solid var(--grey-400);
        color: var(--primary-color);
        font-size: 15px;
        font-weight: 600;
        border-radius: 6px;
        background: none;
    }

    button+button {
        margin-left: 5px;
    }

    button.active {
        background: var(--primary-color);
        color: var(--grey-100);
    }

    button:hover:not(.active) {
        background: var(--primary-variant-color);
    }
}

.search_w {
    position: relative;

    input {
        height: 100%;
        padding: 6px 28px 6px 38px;
        border-radius: 6px;
        border: 1px solid var(--grey-400);
        min-width: 300px;
    }

    input:focus{
        border: 1px solid var(--primary-color);
    }

    img {
        position: absolute;
        transform: translateY(-50%);
    }

    img.ico_search {
        left: 8px;
        top: 50%;
        width: 25px;
    }

    img.ico_search_cancel {
        top: 50%;
        right: 10px;
        width: 15px;
        cursor: pointer;
    }
}

.table_w {
    padding: 20px 0 50px 0;

    h1 {
        color: var(--orange-color);
        font-size: 20px;
        margin-bottom: 15px;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

    h1:before {
        content: "";
        background: url(https://s1.unipware.com/GLIPS/images/ico_circle.svg);
        display: block;
        width: 16px;
        height: 16px;
        margin-right: 7px;
    }

    table {
        width: 100%;
        overflow: hidden;
        border-radius: 5px;
        border: 1px solid var(--grey-400);
        border-collapse: separate;
    }

    thead tr {
        background: var(--primary-variant-color);
    }

    thead th {
        font-weight: 600;
        color: #000;
        font-size: 16px;
        text-align: center;
        padding: 15px 0;
        vertical-align: middle;
    }

    thead th.text_left {
        text-align: left;
    }

    thead th img {
        width: 10px;
        cursor: pointer;
        margin-left: 3px;
        vertical-align: middle;
        transition: all .3s;
    }

    thead th img.active {
        rotate: 180deg;
    }

    tbody td {
        font-weight: 400;
        color: #000;
        font-size: 16px;
        text-align: center;
        padding: 15px 0;
        vertical-align: middle;
    }

    tbody tr.bg {
        background: var(--grey-100);
    }

    tbody td.text_left {
        text-align: left;
    }

    tbody tr:hover td {
        font-weight: 600;
        background: var(--lemon-color);
    }
}

.contact_w.scroll>div>.table_w:last-child {
    padding-right: 20px;
}

.contact_w.scroll {
    max-height: 550px;
    margin-top: 30px;

    .table_w+.table_w {
        margin-left: 50px;
    }

    h1.hide {
        opacity: 0;
    }
}

.table_w.contact {
    width: 100%;

    table thead th,
    table tbody td {
        padding: 10px 0;
    }

    thead th.left_line {
        border-left: 5px solid #fff;
    }

    tbody td.left_line {
        border-left: 5px solid #fff;
    }
}

.table_w.contact.w_50 {
    width: 50%;
}

table.mismatching {
    display: none;
}

.pagination {
    ul {
        display: flex;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

    .init {
        background: url(https://s1.unipware.com/unipware/images/ico_arrow_double_left.svg) no-repeat right;
    }

    .prev {
        background: url(https://s1.unipware.com/unipware/images/ico_arrow_left.svg) no-repeat center;
    }

    .next {
        background: url(https://s1.unipware.com/unipware/images/ico_arrow_left.svg) no-repeat center;
        transform: rotate(180deg);
    }

    .last {
        background: url(https://s1.unipware.com/unipware/images/ico_arrow_double_right.svg) no-repeat left;
    }

    li.is-active {
        border-radius: 100%;
        background: var(--primary-variant-color);
        color: var(--grey-900);
        font-weight: 600;
    }

    li {
        width: 30px;
        height: 30px;
        line-height: 30px;
        padding: 0;
        text-align: center;
        display: inline-block;
        color: var(--grey-600);
        font-weight: 500;
        cursor: pointer;
    }

    li:hover {
        text-decoration: underline;
        color: var(--grey-700);
    }
}
.empty_w{
    text-align: center;
    min-height: 25vw;
    display: flex;
    justify-content: center;
    align-items: center;
    img{
        width: 125px;
    }
    span{
        color: var(--grey-400);
        display: block;
    }
}

/*scroll*/
.scroll {
    margin: 0 2px;
    overflow-y: auto;
}

.scroll::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.scroll::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 5px;
}

.scroll::-webkit-scrollbar-thumb {
    background: #d2d2d2;
    border-radius: 5px;
    height: 10%;
}

.scroll::-webkit-scrollbar-thumb:hover {
    background: #d2d2d2;
}

.s_hover.scroll::-webkit-scrollbar-track,
.s_hover.scroll::-webkit-scrollbar-thumb {
    visibility: hidden;
}

.s_hover.scroll:hover::-webkit-scrollbar-thumb {
    visibility: visible;
}

footer {
    /* position: fixed; */
    font-size: 13px;
    color: var(--grey-600);
    text-align: center;
    width: 100%;
    padding: 0 45px;
    bottom: 20px;
    background: #fff;
    z-index: 10;
    margin-top: 40px;
}

caption,
legend {
    position: absolute;
    top: -9999px;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
}