@charset "utf-8";

@font-face {
    font-family: "PretendardRegular";
    src: url(../font/Pretendard-Regular.subset.woff);
}

@font-face {
    font-family: "PretendardMedium";
    src: url(../font/Pretendard-Medium.subset.woff);
}

@font-face {
    font-family: "PretendardSemiBold";
    src: url(../font/Pretendard-SemiBold.subset.woff);
}

@font-face {
    font-family: "PretendardBold";
    src: url(../font/Pretendard-Bold.subset.woff);
}

body,
html {
    width: 100%;
    height: 100%;
}

html,
body,
button,
select,
input[type=text] {
    font-family: "PretendardRegular";
}

body {
    background-color: #131313;
    overflow: hidden;
    overflow-y: auto;
}

* {
    box-sizing: border-box;
    font-size: 0.7vw;
    color: white;
}

input:focus,
select:focus {
    outline: none;
}

.blind {
    position: absolute;
    text-indent: -5208333333.28vw
}

.flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}







#login .login_box {
    width: 19.0104vw;
    height: 20.1042vw;
    background-color: transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#login .login_box > .input_box {
    width: 100%;
    height: 2.0833vw;
    margin-top: 2.4vw;
    border-bottom: 0.0521vw solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    position: relative;
    /* justify-content: flex-start; */
    padding: 0;
}

#login .login_box > .input_box:after {
    content: "";
    display: block;
    width: 100%;
    height: 0.1042vw;
    background-color: #79a342;
    position: absolute;
    bottom: -0.1042vw;
    transform: scale(0);
    transform-origin: left;
    transition: 0.5s;
    left: 0;
    display: none;
}

#login .login_box > .input_box.active:after {
    transform: scale(1);
}

#login .login_box > .input_box > .icon {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    /* margin-left: 0.2604vw; */
    color: #82c81e;
}

/*
#login .login_box>.input_box.id>.icon {
    background-image: url(../img/icon_id.png);
}

#login .login_box>.input_box.pwd>.icon {
    background-image: url(../img/icon_pwd.png);
}
*/
#login .login_box > .input_box > input {
    background-color: transparent;
    border: none;
    outline: 0;
    padding: 0;
    height: 1.8229vw;
    /* margin-left: 0.8333vw; */
    font-size: 0.7292vw;
    color: #fff;
    font-family: "PretendardRegular";
    width: 100%;
    left: 0;
}

#login .login_box > .input_box > input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#login .login_box > .input_box > input:focus::placeholder {
    color: transparent;
}

#login .login_box .bottom_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.3vw;
}

#login .login_box .bottom_box .left {
    display: flex;
    align-items: center;
}

#login .login_box .bottom_box .left .ball_box {
    width: 1.6667vw;
    height: 0.8333vw;
    margin-right: 0.3125vw;
    background-color: #dcdcdc;
    border-radius: 1.0417vw;
    box-shadow: inset 0 0.0521vw 0.2604vw -0.1042vw rgba(0, 0, 0, 0.5);
    position: relative;
}

#login .login_box .bottom_box .left .ball_box > .ball {
    display: block;
    width: 0.6250vw;
    height: 0.6250vw;
    background-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    border: 0.0521vw solid #fff;
    position: absolute;
    top: 0.1042vw;
    left: 0.8854vw;
    transition: 0.3s;
}

#login .login_box .bottom_box .left .ball_box.save > .ball {
    left: 0.1563vw;
    background-color: #79a342;
    border: 0.0521vw solid #79a342;
}

#login .login_box .bottom_box .left > span {
    font-size: 0.7292vw;
    color: #fff;
}

#login .login_box .bottom_box .right {
    font-size: 0.7292vw;
    display: flex;
    align-items: center;
    margin-left: auto;
}

#login .login_box .bottom_box .right > a {
    display: inline-block;
    margin-left: 0.5208vw;
    color: #777;
}

#login .login_box .bottom_box .right > a:hover {
    color: #777;
    text-decoration: underline;
}

#login .login_box .btn_login {
    width: 100%;
    height: 2.5000vw;
    margin-top: 1.3021vw;
    background-color: #000;
    color: #fff;
    font-size: 0.8333vw;
    transition: 0.3s;
    border: 0.0521vw solid #777777;
    color: #777777;
    border-radius: 0.2083vw;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#login .login_box .btn_login:hover {
    background-color: #000;
    /* text-indent: 0.7813vw; */
    /* color: white; */
    /* border: 0.0521vw solid white; */
}

.login_wrap_body {
    display: flex;
    justify-content: center;
    /* flex-grow: 1; */
    height: 26.0417vw;
    margin-top: auto;
}

div#login {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}



/*******************************************************************************
        로그인 페이지
    *******************************************************************************/

.login-form {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
    flex-direction: column;
    /* width: 20.8333vw; */
    /* margin: 0 auto; */
    /* width: 100%; */
    background: url(../img/bg4.jpg) no-repeat;
    background-size: cover;
    opacity: 3;
    background-position: center;
}

.login-form:before {
    background: rgba(0, 0, 0, .2);
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

.login-form-wrap {
    z-index: 2
}

.int-area {
    width: 20.8333vw;
    position: relative;
    margin-top: 1.0417vw;
}

.int-area :first-child {
    margin-top: 0;
}

.int-area input {
    width: 100%;
    padding: 1.0417vw 0.5208vw 0.5208vw;
    background: transparent;
    border: none;
    border-bottom: 0.0521vw solid #ffffff8c;
    font-size: 0.9375vw;
    color: white;
    outline: none;
}

.login-form h1 {
    font-size: 1.6667vw;
    color: white;
    text-align: center;
    margin-bottom: 1.3021vw;
    font-weight: 600;
}

.int-area label {
    position: absolute;
    left: 0.0000vw;
    top: 0.48vw;
    font-size: 0.7292vw;
    color: #fff;
    transition: .5s;
}

.int-area label.warning {
    color: #FF453A !important;
    animation: warning .3s ease;
    animation-iteration-count: 3;
}

@keyframes warning {
    0% {
        transform: translateX(-0.4167vw);
    }

    25% {
        transform: translateX(0.4167vw);
    }

    50% {
        transform: translateX(-0.4167vw);
    }

    75% {
        transform: translateX(0.4167vw);
    }
}

.int-area input:focus + label,
.int-area input:valid + label {
    top: -0.5vw;
    font-size: 0.6771vw;
    color: #fff;
}

.btn-area {
    margin-top: 1.0417vw;
}

.btn-area button {
    width: 100%;
    height: 2.6042vw;
    background: #00000082;
    color: #ffffffeb;
    font-size: 0.8854vw;
    border: none;
    /* border-radius: 1.3021vw; */
    cursor: pointer;
}


.caption {
    margin-top: 1.0417vw;
    text-align: center;
}

.caption a {
    font-size: 0.6771vw;
    color: #ffffff99;
    text-decoration: none;
    transition: .3s;
}

.btn-area button:hover {
    background: #00000069;
}

.caption a:hover {
    color: #ffffffb8;
}

.input_box {
    border: none;
}

.login_wrap_left h1 {
    font-size: 3.1250vw;
    font-family: 'Pretendardsemibold';
    margin-bottom: 0.5208vw;
}

.login_wrap_left p {
    font-size: 0.7292vw;
    margin-bottom: 2.0833vw;
}

.login_wrap_left h4 {
    border: solid 1px #333;
    padding: 0.2vw 0.3vw;
    border-radius: 1vw;
    background-color: #333;
    font-size: 0.8vw;
}

.login_wrap_left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    border-right: 0.0521vw solid #373737;
    padding-right: 6.7708vw;
    margin-right: 5.2083vw;
}

.login_wrap_left button span {
    color: #777;
}



/* 체크박스 */

input[type="checkbox"] {
    display: none;
}

.check_wrap input[type="checkbox"]:checked + label {
    /* border: 0.05vw solid #a1abd3; */
    color: #ffffffc2;
}

.check_wrap input[type="checkbox"]:checked + label:before {
    background: none;
    border: 0.0521vw solid #15B810;
}

.check_wrap input[type="checkbox"]:checked + label:after {
    transform: scale(1);
    color: #15B810;
}

.check_wrap input[type="checkbox"] + label:after {
    content: "\e928";
    font-family: "xeicon";
    font-weight: 900;
    color: white;
    transform: scale(0);
    position: absolute;
    left: 0.13vw;
    top: 0.10vw;
    font-size: 0.63vw;
    transition: .3s;
}

.check_wrap input[type="checkbox"] + label:before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.89vw;
    height: 0.89vw;
    box-sizing: border-box;
    vertical-align: top;
    background: #292d3c;
    cursor: pointer;
    background: none;
    /* border: 0.05vw solid #d5d5d5; */
    content: '';
    border-radius: 0.10vw;
    /* margin-top: 0.05vw; */
    border: 0.0521vw solid #777;
    border-radius: 0.2083vw;
    margin-right: 0.5208vw;
}

.check_wrap {
    /* position: relative; */
    /* z-index: 2; */
    /* display: inline-block; */
    /* width: 0.99vw; */
    /* height: 0.99vw; */
    /* margin-right: 0.42vw; */
    /* display: flex; */
    /* align-items: center; */
}

.check_wrap label {
    position: relative;
    cursor: pointer;
    /* vertical-align: text-bottom; */
    /* padding-bottom: 0.52vw; */
    color: #777;
    transition: .3s;
    font-family: 'PretendardMedium';
}

.check_wrap label span {
    margin-left: 0.3vw;
    color: #BBBBBB;
}

.login_wrap_left button {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-left: 0.2604vw; */
}

.login_wrap_left button svg {
    margin-right: 0.2604vw;
}

.login_wrap_left button span {
    transition: .3s;
}

.login_wrap_left button svg path {

    transition: .3s;
}

.login_wrap_left button:hover span {
    color: #bbb;
}

.login_wrap_left button:hover svg path {
    fill: #bbb;
}

.hide-show {
    cursor: pointer
}

ul.login_wrap_footer {
    display: flex;
    margin-top: auto;
    margin-bottom: 2.0833vw;
}

.login_logo {
	padding-top: 3px;
}

.login_wrap_right {
    display: flex;
    align-items: center;
}

#login .login_box > .input_box.error {
    border-bottom: 0.0521vw solid #FF453A;
}

#login .login_box > .input_box.error.id:before {
    content: '아이디를 입력해주세요';
    padding-left: 1.3021vw;
    background: url(../img/icn_error.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 2.3542vw;
    left: 0;
    display: block;
    /* z-index: 111111; */
    color: #FF453A;
    font-size: 0.6250vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 0.9896vw;
    /* transition: .3s; */
    height: 0.9896vw;
}

#login .login_box > .input_box.error.pwd:before {
    content: '비밀번호를 입력해주세요';
    padding-left: 1.3021vw;
    background: url(../img/icn_error.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 2.3542vw;
    left: 0;
    display: block;
    /* z-index: 111111; */
    color: #FF453A;
    font-size: 0.6250vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 0.9896vw;
    height: 0.9896vw;
}

.login_wrap_footer li {
    margin-right: 2.0833vw;
}

ul.login_wrap_footer img {
    width: 8vw;
}
button#btn {
     transition: .3s;
}
button#btn span {
    font-size: 0.8333vw;
    color: #777;
    position: relative;
    top: 0;
    transition: .3s;
    font-family: 'PretendardMedium';
}

button#btn:hover:not(.disabled) span {
    top: -0.09vw;
    color: #bbb;
}

.btn_login.disabled {
    background: #131313 !important;
}
.btn_login.disabled span {
       color: #777777;
}

.popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.popup .popup_header {
    height: 2.08vw;
    background: #363636;
    border: 0.05vw solid #444;
    align-items: center;
    justify-content: space-between;
    /* padding: 0; */
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    padding-left: 0.78vw;
}

.popup_body {
    background: #242424;
    border: 0.05vw solid #444444;
    border-top: none;
    padding: 0.5vw 1.3vw 1vw;
}

.popup_btn_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    WIDTH: 100%;
}

.popup_btn_wrap button {
    height: 1.9vw;
    width: 10.42vw;
    margin-top: 1.56vw;
    color: #bbb;
    background: #131313;
}

.popup .popup_header_close button {
    font-size: 1.04vw;
    padding: .2vw .5vw .5vw;
    color: #bbb;
}

.admin_btn {
    height: 1.9vw;
    border-radius: 0.2vw;
    border: 0.05vw solid #444444;
    color: #BBBBBB;
    padding: 0 0.7vw;
}

.popup_alert {
	z-index: 11;
	width: 25vw;
	font-family: 'pretendard';
}

.popup_alert .popup_body {
    border-top: 0.05vw solid #444;
    padding-top: 3.13vw;
}

.popup_alert .popup_body p {
    text-align: center;
    padding-bottom: 1.04vw;
}


.popup {
    display: none;
    width: 26.56vw;
}

.popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup.on {
    display: block !important;
    /* z-index: 5; */
}

.popup_bg {
	display: none;
	background: #000000c9;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.popup_bg.on {
    display: block !important;
    z-index: 10;
}

.popup .popup_header {
    height: 2.08vw;
    background: #363636;
    border: 0.05vw solid #444;
    align-items: center;
    justify-content: space-between;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    padding-left: 0.78vw;
}

h3.popup_header_title {
    font-family: 'PretendardMedium';
    color: #bbb;
}

.popup .input_wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    margin-bottom: 0.5vw;
    justify-content: space-between;
}

.popup .input_wrap input[type="text"],
.popup .input_wrap input[type="number"],
.popup .input_wrap input[type="password"] {
    height: 1.98vw;
    background: #131313;
}

.input_wrap input[type="text"],
.input_wrap input[type="number"],
.input_wrap input[type="date"],
.input_wrap input[type="time"],
.input_wrap input[type="password"] {
    height: 2.3vw;
    border: 0.05vw solid #444;
    background: #000;
    border-radius: 0.2vw;
    padding: 0.8vw;
    color: white;
    font-family: 'PretendardRegular';
}

.w_40 {
    width: 40% !important;
}

.w_60 {
    width: 60% !important;
}

/* 에러페이지 */
.error_wrap_body {
    display: flex;
    justify-content: center;
    height: 26.0417vw;
}

.error_wrap_left h1 {
    font-size: 3.1250vw;
    font-family: 'Pretendardsemibold';
    margin-bottom: 0.5208vw;
}

.error_wrap_left p {
    font-size: 0.7292vw;
    margin-bottom: 2.0833vw;
    color: #BBBBBB;
}

.error_wrap_left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    border-right: 0.0521vw solid #373737;
    padding-right: 6.7708vw;
    margin-right: 5.2083vw;
}

.error_wrap_left button span {
    color: #777;
}

.error_wrap_left button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.error_wrap_left button svg {
    margin-right: 0.2604vw;
}

.error_wrap_left button span {
    transition: .3s;
}

.error_wrap_left button svg path {

    transition: .3s;
}

.error_wrap_left button:hover span {
    color: #bbb;
}

.error_wrap_left button:hover svg path {
    fill: #bbb;
}

.error_wrap_right {
    display: flex;
    align-items: center;
}


.error_wrap_right .warn_text img {
    width: 57px;
    margin-bottom: 20px;
}

.error_wrap_right .warn_text h3 {
    font-size: 30px;
    margin-bottom: 20px;
    width: 500px;
    font-family: pretendardmedium;
}

.error_wrap_right .warn_text p {
    font-size: 14px;
    line-height: 1.6;
    color: #BBBBBB;
}

.error_wrap_right .btn_wrap button {
    background: #242424 0% 0% no-repeat padding-box;
    border: 1px solid #444444;
    border-radius: 4px;
    width: 100px;
    height: 40px;
    font-size: 15px;
    color: #BBBBBB;
}

.error_wrap_right .warn_text {
    margin-bottom: 85px;
}

.error_wrap_right .btn_wrap button:last-child {
    background: #131313 0% 0% no-repeat padding-box;
}

.error_wrap_right .btn_wrap {
    display: flex;
    gap: 18px;
}

.error_wrap_right .btn_wrap button:hover {
    border-color: #BBBBBB;
    color: white;
}