@charset "UTF-8";

/*=================================================================================
 * Common
 =================================================================================*/
 body {
	font-family:'NanumSquareNeo',sans-serif;
	font-weight: 400;
	font-size:15px;
	color:#000;
	line-height: 1.3;
	letter-spacing: 0px;
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
}
a {color:#333; word-wrap:break-word; outline:none; cursor:pointer;}
h1 {font-size: 32px; font-weight: 900;}
h2 {font-size: 26px; font-weight: 800;}
h3 {font-size: 22px; font-weight: 700;}
h4 {font-size: 18px; font-weight: 700;}
h5 {font-size: 17px; font-weight: 600;}

button:focus,
input:focus,
textarea:focus,
select:focus,
body:focus {outline: 1px  solid #151516;}
body input[type="text"]:-webkit-autofill, 
body input[type="text"]:-webkit-autofill:hover, 
body input[type="text"]:-webkit-autofill:focus, 
body input[type="text"]:-webkit-autofill:active, 
body input[type="text"]:-webkit-autofill:focus-within, 
body input[type="text"]:-webkit-autofill:visited {
	/* -webkit-box-shadow:0 0 0 1000px #3069B3 inset !important;  */
	-webkit-text-fill-color:#151516 !important;
}
input[type="checkbox"]:focus, input[type="radio"]:focus {outline: none;}

/* Scroll */
::-webkit-scrollbar {width:5px; height: 8px;}
::-webkit-scrollbar-track {background-color: #E2EDFF;}
::-webkit-scrollbar-thumb {border-radius: 10px; background-color: #BAC5D9;}


/*=================================================================================
 * UI Style
 =================================================================================*/
/* Input */
input,
select,
textarea {
    font-family: 'NanumSquareNeo',sans-serif;
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 16px 16px;
    background-color: #fff;
    border: 1px solid #E5E8EF;
    font-size: 15px;
    font-weight: 500;
    color: #1d1d1d;
    border-radius: 10px;
    vertical-align: middle;
    -moz-appearance: none;
    -webkit-appearance: none;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input[readonly],
select[readonly],
textarea[readonly] {
    background-color: #F4F5F9 !important;
    border: 1px solid #E5E8EF !important;
    color: #333333 !important;
    cursor: not-allowed;
}

input[type="text"]:disabled,
input[type="search"]:disabled,
input[type="password"]:disabled,
input[type="tel"]:disabled,
input[type="email"]:disabled,
input[type="number"]:disabled,
input[type="date"]:disabled {
    background-color: #f5f5f5;
}

input[type="text"]::placeholder,
input[type="search"]::placeholder,
input[type="password"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
    color: #7F7F8C;
    font-size: 15px;
    font-weight: 400;
}

input[type="number"] {padding-right: 0;}

textarea {
    width: 100%;
    height: 120px;
    line-height: 1.3;
    padding: 10px;
    border-radius: 10px;
    color: #454545;
    vertical-align: baseline;
    -moz-appearance: none;
    -webkit-appearance: none;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    resize: none;
}
.textarea-box {
    position: relative;
}
.textarea-box .text-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 14px;
}

/* Input Text Clear */
.input-btnbox {
    display: flex;
    align-items: center;
    width: 100%;
}
.input-btnbox .input-clear {
    width: 100%;
}
.input-clear {
    position: relative;
    display: inline;
    width: 100%;
}
.btn-clear {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    display: none;
    width: 16px;
    height: 16px;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    background-color: #768391;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
}
/* Password Show/hide */
.password-showhide {
    position: relative;
    display: inline;
}
.btn-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
}


/* Select*/
select {
    width: 100%;
    background: url("../images/icon/ico-select.svg") calc(100% - 16px) 50% no-repeat #fff;
}

.select-open {
    border: 1px solid #0481F9;
}

/* Radio Style */
.radio-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
}
.radio-box li {
    display: flex;
    align-items: center;
    padding: 10px 0;
}
.radio-box label {
    margin-left: 10px;
    white-space: nowrap;
    line-height: 1;
}
input[type="radio"] {
    padding: 0;
    border: none;
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    padding-left: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
input[type="radio"]:before {
    content: '';
    position: absolute;
    background-color: #fff;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    text-align: center;
    border: 1px solid #E5E8EF;
    border-radius: 100%;
}
input[type="radio"]:checked:before {
    border: 1px solid #7A31F6;
}
input[type="radio"]:checked:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    background: #7A31F6;
    border: 1px solid #7A31F6;
    border-radius: 100%;
}
input[type="radio"]:disabled:checked:before {
    border: 1px solid #ccc;
    background-color: #F5F6F8;
}
input[type="radio"]:disabled:checked:after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    background: #888;
    border-color: #888;
    border-radius: 100%;
}


/* Checkbox Style */
.check-box {
    position: relative;
    display: inline-flex;
    flex-flow: row wrap;
    align-items: center;
}
.check-box li {
    display: flex;
    align-items: center;
}
.check-box label {
    margin-left: 10px;
    margin-right: 20px;
    white-space: nowrap;
    line-height: 1;
}
input[type="checkbox"] {
    padding: 0 !important;
    border: none;
    width: auto;
    height: 24px;
    display: flex;
    background-color: inherit;
    align-items: center;
}
input[type="checkbox"]:before {
    /* 가짜 체크박스 */
    content: ' ';
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #E5E8EF;
    border-radius: 4px;
    vertical-align: text-bottom;
}

input[type="checkbox"]:checked:before {
    /* 체크박스를 체크했을때 */
    content: ' ';
    color: #fff;
    background: url('../images/icon/ico-chk.svg')#7A31F6 no-repeat center;
    border-color: #7A31F6;
}
input[type="checkbox"]:disabled:before {
    background: #E6E6E6;
    border-color: #c6c6c6;
}
input[type="checkbox"]:disabled:checked:before {
    color: #ACAEB7;
    background: url('../images/icon/ico-chk.svg')#C6C6C6 no-repeat center;
}

/* Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 22px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #858585;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #0481F9;
}

/* Move the slider to the right */
input:checked + .slider:before {
    transform: translateX(26px);
}

/* Date */
.date-input {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.input-date,
input[type=date],
input[type=datetime-local],
input[type=month].input-date,
input[type=text].input-date {
    position: relative;
    min-width: 150px;
    background: url("../images/icon/ico-calendar.svg")no-repeat right 10px center;
    z-index: 1;
}

/* Input - charge */
.charge-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.charge-box input {
    position: relative;
    width: 100%;
}
.charge-box .btn {
    position: absolute;
    right: 8px;
    top: 8px;
    height: 34px;
    border-radius: 6px;
    background-color: #151516;
    z-index: 9;
}

/* Input - search */
.srch-input {position: relative;}
.srch-input a {position: absolute; top: 10px; right: 10px}


/*=================================================================================
 * Button
 =================================================================================*/
.btn-wrap {display: flex; justify-content: center; align-items: center; gap: 8px;}
.btn-wrap .btn, .btn-wrap button {width: 100%; margin-top: 24px; margin-bottom: 16px;}
button, .btn {display: inline-flex; align-items: center; justify-content: center; height: 46px; padding: 6px 24px; line-height: 36px; background-color: #fff; font-weight: 500; color: #007AFD; background-color: #7A31F6; border-radius: 12px; font-weight: 700; white-space: nowrap; color: #fff; transition: all .2s; opacity: 1; gap: 8px;}
button:disabled, .btn.disabled {background-color: #E5E8EF; border: 1px solid #E5E8EF; color: #7F7F8C; cursor: default;}

.btn-line {background-color: #fff; border: 1px solid #7F7F8C; color: #7F7F8C;}

.btn-center-wrap {display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 24px;}
button.l, .btn.l {padding: 10px 42px; height: 56px; font-size: 18px;}
.swal2-confirm { padding: 6px 24px; }

/*=================================================================================
 * List
 =================================================================================*/
.list {display: flex; align-items: center; flex-flow: row wrap; gap: 8px 24px;}
.list li {display: flex; align-items: center; gap: 8px;}
 .list-dot li {position: relative; font-size: 14px; padding-left: 20px; color: #7F7F8C;}
.list-dot li::before {content: ''; position: absolute; left: 8px; top: 6px; display: block; width: 5px; height: 5px; background-color: #7F7F8C; border-radius: 50%;}


/*=================================================================================
 * Status Style
 =================================================================================*/
.sta-green {background: #E4F4EE; color:#14BF58; border-radius: 5px; text-align: center; display: inline-block; font-weight: 600; padding: 0px 16px; line-height: 32px; font-size: 15px;}
.sta-blue {background: #E8F0FC; color:#3273E4; border-radius: 5px; text-align: center; display: inline-block; font-weight: 600; padding: 0px 16px; line-height: 32px; font-size: 15px;}
.sta-orange {background: #FBF7E7; color:#FFAB04; border-radius: 5px; text-align: center; display: inline-block; font-weight: 600; padding: 0px 16px; line-height: 32px; font-size: 15px;}
.sta-red {background: #FDE7EA; color:#F14D68; border-radius: 5px; text-align: center; display: inline-block; font-weight: 600; padding: 0px 16px; line-height: 32px; font-size: 15px;}
.sta-gray {background: #EAEDF0; color:#656E7E; border-radius: 5px; text-align: center; display: inline-block; font-weight: 600; padding: 0px 16px; line-height: 32px; font-size: 15px;}
