/**
 * ---------------------------------------------------------------------------------------------------------------------
 * common.ars.css
 * ---------------------------------------------------------------------------------------------------------------------
 * @VERSION     1.0.0
 * @AUTHOR      JB CORP ITST (CHOI JAE YOUNG)
 * @DESCRIPTION 공통 스타일 시트 파일
 * ---------------------------------------------------------------------------------------------------------------------
 */
@font-face {
    font-family: 'IBMPlexSansKR';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-07@1.0/IBMPlexSansKR-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'IBMPlexSansKR';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-07@1.0/IBMPlexSansKR-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

:root {
    --theme-primary: #2364e6;
    --theme-secondary: #457ae6;
    --theme-third: #7e61e0;
    --theme-accent: #1dd3d3;
    --theme-error: #e83838;
    --theme-info: #003eb5;
    --theme-success: #003eb5;
    --theme-warning: #003eb5;
    --theme-disabled: #f2f2f2;
    --theme-black: #4c4c4c;
    --theme-black01: #666666;
    --theme-gray: #999999;
    --theme-gray01: #e2e2e2;
    --theme-gray02: #f5f6f7;
    --theme-gray03: #EFF4F7;
    --theme-white: #ffffff;

    --theme-letter-spacing: -0.5px;
    --theme-font-size: 13px;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-overflow-scrolling: touch;
}

/**
 * ---------------------------------------------------------------------------------------------------------------------
 * RESET
 * ---------------------------------------------------------------------------------------------------------------------
 */
html, body {
    font-family: 'IBMPlexSansKR', sans-serif;
    font-weight: 400;
    color: var(--theme-black);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

ul,
ol,
dl,
dt,
dd {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

a {
    vertical-align: middle;
    text-decoration: none;
    cursor: pointer;
}

i {
    vertical-align: middle;
}

span {
    vertical-align: middle;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

input,
textarea,
select {
    width: 100%;
    outline: none;
    border-radius: 0;
    vertical-align: middle;
}

input:disabled,
textarea:disabled,
select:disabled {
    background-color: var(--theme-gray02);
    opacity: 1;
}

button {
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0;
    vertical-align: middle;
    cursor: pointer;
}

button:disabled {
    color: #ffffff !important;
    background-color: #aaaaaa;
}

table {
    padding: 0;
    border-spacing: 0;
    border: 0;
    border-collapse: collapse;
}

caption,
legend {
    display: none;
}

fieldset {
    margin: 0;
    padding: 0;
    border: none;
}

h1 {
    font-size: 22px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 16px;
    margin-bottom: 20px;
}

h4 {
    font-size: 14px;
    margin-bottom: 20px;
}

h5 {
    font-size: 13px;
    margin-bottom: 20px;
}

h6 {
    font-size: 12px;
    margin-bottom: 20px;
}

p {
    line-height: 18px;
    text-align: justify;
    word-break: break-all;
}

mark {
    color: inherit;
    background: linear-gradient(to top, yellow 15%, transparent 15%);
}

/**
 * ---------------------------------------------------------------------------------------------------------------------
 * TAGS
 * ---------------------------------------------------------------------------------------------------------------------
 */
/**
 * @COMPONENT > TEXT
 */
input[type='text'] {
    width: 100%;
    padding: 0 10px;
    height: 36px;
    line-height: 36px;
    border: 1px solid var(--theme-gray01);
}

input[type='text']:focus {
    border: 1px solid var(--theme-primary);
}

input[type='text']:read-only {
    pointer-events: none;
}

input[type='text']::placeholder {
    color: var(--theme-black);
    opacity: 1;
}

/**
 * @COMPONENT > NUMBER
 */
input[type='number'] {
    width: 100%;
    padding: 0 10px;
    height: 36px;
    line-height: 36px;
    border: 1px solid var(--theme-gray01);
}

input[type='number']:focus {
    border: 1px solid var(--theme-primary);
}

input[type='number']:read-only {
    pointer-events: none;
}

input[type='number']::placeholder {
    color: var(--theme-black);
    opacity: 1;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/**
 * @COMPONENT > PASSWORD
 */
input[type='password'] {
    width: 100%;
    height: 36px;
    line-height: 36px;
    font-family: dotum;
    padding: 0 10px;
    border: 1px solid var(--theme-gray01);
}

input[type='password']:focus {
    border: 1px solid var(--theme-primary);
}

input[type='password']:read-only {
    pointer-events: none;
}

input[type='password']::placeholder {
    color: var(--theme-black);
    opacity: 1;
}

/**
 * @COMPONENT > TEXTAREA
 */
textarea {
    padding: 10px;
    border: 1px solid var(--theme-gray01);
    resize: none;
}

textarea:focus {
    border: 1px solid var(--theme-primary);
}

/**
 * @COMPONENT > RADIO
 */
input[type="radio"] {
    width: 20px;
    height: 20px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background: url('https://icongr.am/clarity/circle.svg?size=20&color=e2e2e2') center center;
    margin-right: 5px;
    border:none;
}

input[type="radio"]:focus {
    background: url('https://icongr.am/clarity/circle.svg?size=20&color=2364e6') center center;
}

input[type="radio"]:checked {
    background: url('https://icongr.am/clarity/check-circle.svg?size=26&color=2364e6') center center;
}

/**
 * @COMPONENT > CHECKBOX
 */
input[type="checkbox"] {
    width: 20px;
    height: 20px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background: url('https://icongr.am/clarity/circle.svg?size=20&color=e2e2e2') center center;
    margin-right: 5px;
}

input[type="checkbox"]:focus {
    background: url('https://icongr.am/clarity/circle.svg?size=20&color=2364e6') center center;
}

input[type="checkbox"]:checked {
    background: url('https://icongr.am/clarity/check-circle.svg?size=26&color=2364e6') center center;
}

/**
 * @COMPONENT > SELECT
 */
select {
    display: inline-block;
    width: 100%;
    height: 36px;
    padding: 0 10px;
    line-height: 36px;
    border: 1px solid var(--theme-gray01);
    background-color: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    z-index : 10;
}

select:focus {
    border: 1px solid var(--theme-primary);
}

select::-ms-expand {
    display: none;
}

/**
 * @COMPONENT > SELECT > div 
 */

.select_replace {
    display: inline-block;
    width: 100%;
    height: 36px;
    padding: 0 10px;
    text-align: left;
    line-height: 36px;
    border: 1px solid var(--theme-gray01);
    background-color: #ffffff;
    -webkit-appearance: none;
    cursor: pointer;
}

.option_list{
    border-radius: 10px;
    width: 100%;
    line-height: 36px;
    cursor : pointer;
    background-color: var(--theme-black);
    color : var(--theme-white);
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    position : absolute;
    z-index : 10;
    display : none;
}

.option_list li{
    width : 100%;
    height: 36px;
    border-bottom : solid 0.5px var(--theme-gray01);
    padding: 0 10px;
}

.option_list li.option_disabled{
    cursor : default;
    color : var(--theme-black01);
}


.option_list li:last-child{
    border-bottom : none;
}





/**
 * @COMPONENT > TABLE
 */
table {
    width: 100%;
}

/*table th {*/
/*    border-bottom: 1px solid var(--theme-gray01);*/
/*    line-height: 18px !important;*/
/*}*/

/*table td {*/
/*    border-bottom: 1px solid var(--theme-gray01);*/
/*    line-height: 18px !important;*/
/*}*/

/**
 * ---------------------------------------------------------------------------------------------------------------------
 * COMMON
 * ---------------------------------------------------------------------------------------------------------------------
 */
.full {
    width: 100% !important;
}

.block {
    display: block;
}

.text_left {
    text-align: left !important;
}

.text_center {
    text-align: center !important;
}

.text_right {
    text-align: right !important;
}

.left {
    position: absolute;
    left: 0;
}

.right {
    position: absolute;
    right: 0;
}

.no_border {
    border: none !important;
}

.center {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.round_3 {
    position: relative;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    overflow: hidden;
}

.round_5 {
    position: relative;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    overflow: hidden;
}

.round_10 {
    position: relative;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    overflow: hidden;
}

.round_20 {
    position: relative;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    overflow: hidden;
}

.round_30 {
    position: relative;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    overflow: hidden;
}

.round_40 {
    position: relative;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    overflow: hidden;
}

.round_50 {
    position: relative;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    overflow: hidden;
}

.round_60 {
    position: relative;
    border-radius: 60px;
    -moz-border-radius: 60px;
    -webkit-border-radius: 60px;
    overflow: hidden;
}

.round_circle {
    position: relative;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    overflow: hidden;
}

.blur {
    filter: blur(3px);
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
}

.gradient {
    background: rgb(29, 211, 211);
    background: linear-gradient(138deg, rgba(29, 211, 211, 1) 0%, rgba(69, 122, 230, 1) 57%, rgba(35, 100, 230, 1) 100%);
}

.shadow_text {
    text-shadow: 0px 1px 2px rgba(150, 150, 150, 0.1);
}

.shadow_box {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 4px 8px 0 rgba(0, 0, 0, 0.1) !important;
}

/**
 * ---------------------------------------------------------------------------------------------------------------------
 * LAYOUT
 * ---------------------------------------------------------------------------------------------------------------------
 */
.col {
    position: relative;
    float: left;
    width: 100%;
}

.container {
    position: relative;
    width: calc(100% - 40px);
    height: 100%;
    margin: 0 20px;
}

/**
 * ---------------------------------------------------------------------------------------------------------------------
 * COMPONENT
 * ---------------------------------------------------------------------------------------------------------------------
 */
/**
 * @COMPONENT > DIVIDER
 */
.divider {
    border: none;
    height: 1px;
    background-color: var(--theme-gray01);
    margin: 20px -40px;
}

.divider.card {
    background-color: var(--theme-gray02);
    height: 7px;
}

/**
 * @COMPONENT > CHIPS
 */
.chips {
    display: flex;
    flex-direction: column;
}

.chips i {
    font-size: 9px;
    color: var(--theme-white);
    text-align: center;
    background-color: var(--theme-primary);
    border-radius: 3px;
    padding: 3px;
    margin-bottom: 3px;
}

.chips i:first-child {
    margin-top: 0;
}

/**
 * @COMPONENT > BUTTON
 */
.btn {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn_color_1 {
    color: var(--theme-white) !important;
    background-color: var(--theme-primary);
}

.btn_color_2 {
    color: var(--theme-white) !important;
    background-color: var(--theme-accent);
}

.btn_color_3 {
    color: var(--theme-white) !important;
    background-color: var(--theme-black);
}

.btn_color_4 {
    color: var(--theme-white) !important;
    background-color: var(--theme-gray);
}

.btn_color_5 {
    color: var(--theme-primary) !important;
    background-color: var(--theme-white);
}

.btn_color_6 {
    color: var(--theme-accent) !important;
    background-color: var(--theme-white);
}

.btn_sm {
    font-size: 10px;
    padding: 3px 6px;
    line-height: 100%;
}

.btn_sm i {
    font-size: 10px;
    margin-right: 5px;
}

.btn_md {
    font-size: 12px;
    padding: 5px 10px;
    line-height: 100%;
}

.btn_md i {
    font-size: 20px;
    margin-right: 5px;
}

.btn_lg {
    font-size: 16px;
    padding: 0 10px;
    height: 40px;
    line-height: 100%;
}

.btn_lg i {
    font-size: 20px;
    margin-right: 5px;
}

/*.btn.block i {*/
/*    display: block;*/
/*    margin-bottom: 10px;*/
/*}*/

.btn_square {
    flex-direction: column;
}

.btn_square i {
    font-size: 35px;
    margin-bottom: 10px;
}

.btn_arrow {
    justify-content: space-between;
    padding: 15px;
}

.btn_arrow span {
    text-align: left;
    width: calc(100% - 10px);
}

.btn_arrow i {
    width: 10px;
    font-size: 10px;
}

.btn_outline {
    border: 1px solid var(--theme-gray01);
}

.btn_append {
    position: absolute;
    width: auto;
    top: 13px;
    right: 10px;
}

/**
 * ---------------------------------------------------------------------------------------------------------------------
 * HOLDER
 * ---------------------------------------------------------------------------------------------------------------------
 */
/**
 * @COMPONENT > UI HOLDER
 */
.ui_holder {
    position: relative;
    text-align: center;
}

.ui_holder .ui_left {
    position: absolute;
    top: 50%;
    left: 0;

    transform: translateY(-50%);
}

.ui_holder .ui_right {
    position: absolute;
    top: 50%;
    right: 0;

    transform: translateY(-50%);
}

/**
 * @COMPONENT > DATE PICKER
 */
.datepicker_holder {
    margin-bottom: 20px;
}

/**
 * @COMPONENT > PANEL HOLDER
 */
.panel_holder {
    background-color: var(--theme-gray02);
    padding: 20px;
    /*margin-bottom: 20px;*/
}

.panel_holder ul li {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    text-align: justify;
    word-break: break-all;
    line-height: 18px;
    margin-top: 10px;
}

.panel_holder ul li:first-child {
    margin-top: 0;
}

.panel_holder ul li span:first-child {
    font-weight: bolder;
    word-break: keep-all;
    margin-right: 5px;
}

/**
 * @COMPONENT > TERM HOLDER
 */
.term_holder {
    margin-bottom: 20px;
}

.term_holder ol li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 10px;
    line-height: 20px;
    text-align: justify;
}

.term_holder ol li:first-child {
    margin-top: 0;
}

.term_holder ol li span {
    margin-right: 10px;
}

/**
 * @COMPONENT > ACCORDIAN HOLDER
 */
/*.accordion_holder {*/
/*    margin-bottom: 20px;*/
/*    border: 1px solid var(--theme-gray01);*/
/*}*/

/*.accordion_holder .accordion {*/
/*    border-bottom: 1px solid var(--theme-gray01);*/
/*}*/

/*.accordion_holder .accordion:last-child {*/
/*    border-bottom: none;*/
/*}*/

/*.accordion_holder .accordion .ui-accordion-header {*/
/*    font-size: 13px;*/
/*    border-bottom: none;*/
/*    margin-bottom: 0;*/
/*    padding: 10px;*/
/*    outline: none;*/
/*    border-top: 1px solid var(--theme-gray01);*/
/*}*/

/*.accordion_holder .accordion .ui-accordion-header:first-child {*/
/*    border-top: none;*/
/*}*/

/*.accordion_holder .accordion .ui-accordion-header {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*}*/

/*.accordion_holder .accordion .ui-accordion-header .title {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    width: calc(100% - 10px);*/
/*    line-height: 20px;*/
/*    text-align: justify;*/
/*}*/

/*.accordion_holder .accordion .ui-accordion-header .title span {*/
/*    color: var(--theme-black);*/
/*}*/

/*.accordion_holder .accordion .ui-accordion-header .title span:first-child {*/
/*    color: var(--theme-primary);*/
/*}*/

/*.accordion_holder .accordion .ui-accordion-header .btn {*/
/*    !*width: auto;*!*/
/*}*/

/*.accordion_holder .accordion .ui-accordion-header .bullet {*/
/*    width: 10px;*/
/*}*/

/*.accordion_holder .accordion .ui-accordion-header .bullet i {*/
/*    font-size: 10px;*/
/*}*/

/*.accordion_holder .accordion .ui-accordion-content-active {*/
/*    background-color: var(--theme-white);*/
/*}*/

/*.accordion_holder .accordion .ui-accordion-content-full .panel_holder {*/
/*    margin-bottom: 0;*/
/*}*/

/*.accordion_holder .accordion .ui-accordion-content-full .table_holder {*/
/*    margin-bottom: 0;*/
/*}*/

/*.accordion_holder .accordion .ui-accordion-content-full .table_holder tr:last-child th,*/
/*.accordion_holder .accordion .ui-accordion-content-full .table_holder tr:last-child td {*/
/*    border-bottom: none;*/
/*}*/

/*.accordion_holder .accordion .ui-accordion-content-full .table_holder .table_action_holder {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    line-height: 100%;*/
/*    border-top: 1px solid var(--theme-gray01);*/
/*    padding: 10px;*/
/*}*/

/**
 * @COMPONENT > INFO HOLDER
 */
.info_holder {
    padding: 10px;
    background-color: var(--theme-gray02);;
    margin-bottom: 20px;
    font-weight: bold;
}

.info_holder i {
    float: left;
    font-size: 15px;
    margin-right: 5px;
}

.info_holder p {
    float: left;
    width: calc(100% - 20px);
}

/**
 * @COMPONENT > IMG HOLDER
 */
.img_holder {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.img_holder p {
    margin-bottom: 10px;
}

.img_holder img {
    width: 200px;
}

.img_holder img + p {
    margin-top: 10px;
}

/**
 * @COMPONENT > TEXT HOLDER
 */
.text_holder {
    margin-bottom: 20px;
}

.text_holder p:not(only-child) {
    margin-bottom: 10px;
}

/**
 * @COMPONENT > TABLE HOLDER
 */
.table_holder:not(:only-child) {
    margin-bottom: 20px;
}

.table_holder h3 {
    font-size: 14px;
}

/**
 * @COMPONENT > FORM HOLDER
 */
.form_holder {
    /*margin-bottom: 20px;*/
    /*padding-bottom: 20px;*/
}

.form_holder fieldset {
    font-size: 14px;
    margin-bottom: 20px;
}

.form_holder fieldset:last-of-type {
    margin-bottom: 0;
}

/*.form_holder fieldset h4 {*/
/*    font-size: 14px;*/
/*    line-height: 100%;*/
/*    margin-bottom: 0;*/
/*    margin-top: 10px;*/
/*}*/

.form_holder fieldset .row:not(:only-child) {
    margin-bottom: 20px;
}

.form_holder fieldset .row:last-child {
    margin-bottom: 0;
}

.form_holder fieldset .field_label {
    position: relative;
    float: left;
    width: 30%;
    text-align: left;
}

/*.form_holder fieldset .field_label > a {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    right: 0;*/
/*    line-height: 100%;*/
/*    transform: translateY(-50%);*/
/*}*/

.form_holder fieldset .field_label label span {
    color: var(--theme-primary);
}

.form_holder fieldset .field_input {
    position: relative;
    float: left;
    width: 70%;
    font-size: 13px;
}

.form_holder fieldset .field_input.append_icon input {
    padding-right: 34px;
}

.form_holder fieldset .field_input.append_icon i {
    position: absolute;
    top: 1px;
    right: 1px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    font-size: 13px;
}


/*.form_holder fieldset .field_input > a {*/
/*    width: 33.33333333%;*/
/*}*/

/*.form_holder fieldset .field_input > a,*/
/*.form_holder fieldset .field_input .col > a {*/
/*    display: inline-block;*/
/*    padding: 0;*/
/*    height: 38px;*/
/*    line-height: 38px;*/
/*    font-size: 13px;*/
/*}*/

/*.form_holder fieldset .field_input span.line {*/
/*    position: absolute;*/
/*    top: 19px;*/
/*    left: -4%;*/
/*    width: 42%;*/
/*    border-bottom: 1px dashed var(--theme-gray01);*/
/*}*/

/*.form_holder fieldset .field_input span.line {*/
/*    position: absolute;*/
/*    top: 19px;*/
/*    left: -4%;*/
/*    width: 42%;*/
/*    border-bottom: 1px dashed var(--theme-gray01);*/
/*}*/

/*.form_holder fieldset .field_input .email {*/
/*    position: relative;*/
/*    float: right;*/
/*}*/

.form_holder fieldset .field_input .email span {
    position: absolute;
    top: 0;
    left: 5px;
}

.form_holder fieldset .field_input .email input {
    padding: 0px 10px 0px 19px;
}

.form_holder fieldset .field_input .cubic span {
    position: absolute;
    top: 0;
    right: 10px;
}

.form_holder fieldset .field_input .cubic input {
    padding: 0px 36px 0 10px;
}


.form_holder fieldset .field_input .sex a.active {
    color: var(--theme-white);
    background-color: var(--theme-primary);
}

/*.form_holder fieldset .field_explain span {*/
/*    color: var(--theme-primary);*/
/*}*/

/*.form_holder fieldset .field_notice {*/
/*    font-size: 12px;*/
/*    background-color: var(--theme-gray02);;*/
/*    padding: 10px;*/
/*    margin-top: 10px;*/
/*}*/

/*.form_holder fieldset.result {*/
/*    border-top: 1px dashed var(--theme-gray01);*/
/*    border-bottom: 1px solid var(--theme-gray01);*/
/*    padding: 5px 10px;*/
/*}*/

/*.form_holder fieldset.result .field_label {*/
/*    width: 50%;*/
/*}*/

/*.form_holder fieldset.result .field_label span {*/
/*    color: var(--theme-black);*/
/*}*/

/*.form_holder fieldset.result .field_input {*/
/*    width: 50%;*/
/*}*/

/*.form_holder fieldset.result .field_input span {*/
/*    color: var(--theme-primary);*/
/*    font-size: 14px;*/
/*    font-weight: bold;*/
/*}*/

/*.form_holder fieldset.agree {*/
/*    background-color: var(--theme-gray02);;*/
/*    padding: 20px;*/
/*}*/

/*.form_holder fieldset.agree h4 {*/
/*    font-size: 16px;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.form_holder fieldset.agree p {*/
/*    font-size: 13px;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.form_holder fieldset.agree .checkbox {*/
/*    float: right;*/
/*}*/

/*.form_holder fieldset.text {*/
/*    font-size: 13px;*/
/*    line-height: 18px;*/
/*}*/

/*.form_holder fieldset.payment_no {*/
/*    background-color: var(--theme-gray02);*/
/*    margin: -20px -20px 20px -20px;*/
/*    padding: 20px;*/
/*}*/

.form_holder.block fieldset .field_label {
    display: block;
    float: none;
    width: 100%;
    line-height: 100%;
    margin-bottom: 10px;
}

.form_holder.block fieldset .field_input {
    display: block;
    float: none;
    width: 100%;
    font-size: 13px;
}

.form_holder.block fieldset .field_button {
    margin-top: 20px;
}

/**
 * @COMPONENT > PAGING HOLDER
 */
.paging_holder {
    text-align: center;
    margin-bottom: 20px;
}

/**
 * @COMPONENT > BUTTON HOLDER
 */
.btn_holder.bottom {
    position: absolute;
    width: 100%;
    margin: 0 -15px;
    padding: 15px;
    bottom: 0;
}

.btn_holder .row {
    margin-top: 10px;
}

.btn_holder .row:first-child {
    margin-top: 0;
}

/*.btn_holder .message_holder {*/
/*    margin-bottom: 20px;*/
/*}*/

/*.btn_holder .message_holder p {*/
/*    font-size: 14px;*/
/*    text-align: center;*/
/*}*/

/*.btn_holder li {*/
/*    margin-top: 10px;*/
/*}*/

/*.btn_holder li:first-child {*/
/*    margin-top: 0;*/
/*}*/

/**
 * @COMPONENT > AGREE_HOLDER
 */
.agree_group_holder:not(:only-child) {
    margin-bottom: 20px;
} 

.agree_group_holder .accordion .ui-accordion-header {
    border: 1px solid var(--theme-gray01);
    margin-bottom: 0;
    outline: none;
    height: 40px;
    padding: 0 10px;
    line-height: 40px;
}

.agree_group_holder .accordion .ui-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.agree_group_holder .accordion .ui-accordion-header .title {
    display: flex;
    flex-direction: column;
    width: calc(100% - 10px);
    line-height: 20px;
    text-align: justify;
}

.agree_group_holder .accordion .ui-accordion-header .title span {
    color: var(--theme-black);
}

.agree_group_holder .accordion .ui-accordion-header .title span:first-child {
    color: var(--theme-primary);
}

.agree_group_holder .accordion .ui-accordion-header .bullet {
    width: 10px;
}

.agree_group_holder .accordion .ui-accordion-header .bullet i {
    font-size: 10px;
}

.agree_group_holder .accordion .ui-accordion-content .agree_holder {
    border: 1px solid var(--theme-gray01);
    padding: 20px;
    margin-top: 20px;
}

.agree_group_holder .accordion .ui-accordion-content .agree_holder h4 {
    line-height: 100%;
    margin-bottom: 20px;
}

.agree_group_holder .accordion .ui-accordion-content .agree_holder p {
    margin-bottom: 20px;
}

.agree_group_holder .accordion .ui-accordion-content .agree_holder table {
    margin-bottom: 20px;
}

.agree_group_holder .accordion .ui-accordion-content .agree_holder ul {
    margin-bottom: 20px;
}

.agree_group_holder .accordion .ui-accordion-content .agree_holder ul li {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    text-align: justify;
    word-break: break-all;
    line-height: 20px;
    margin-top: 10px;
}

.agree_group_holder .accordion .ui-accordion-content .agree_holder ul li:first-child {
    margin-top: 0;
}

.agree_group_holder .accordion .ui-accordion-content .agree_holder ul li span:first-child {
    font-weight: bolder;
    word-break: keep-all;
    margin-right: 5px;
}

.agree_group_holder .accordion .ui-accordion-content .agree_holder .checkbox_holder {
    display: flex;
    justify-content: flex-end;
}

/**
 * @COMPONENT > RESULT HOLDER
 */
.result_holder {
    margin-bottom: 20px;
}

/*.result_holder {*/
/*    border-top: 1px dashed var(--theme-gray01);*/
/*    border-bottom: 1px solid var(--theme-gray01);*/
/*    padding: 20px 10px;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.result_holder .row {*/
/*    margin-top: 10px;*/
/*    padding-top: 10px;*/
/*    border-top: 1px solid var(--theme-gray01);*/
/*}*/

/*.result_holder .row:first-child {*/
/*    margin-top: 0;*/
/*    padding-top: 0;*/
/*    border-top: none;*/
/*}*/

/*.result_holder h4 {*/
/*    margin-bottom: 0;*/
/*}*/

/*.result_holder p {*/
/*    font-size: 16px;*/
/*}*/

/**
 * @COMPONENT > MAP_HOLDER
 */
.map_holder {
    margin-bottom: 20px;
}

/**
 * @COMPONENT > LIST HOLDER
 */
.list_holder h3 {
    display: flex;
    align-items: center;
    background-color: var(--theme-gray02);;
    border-top: 1px solid var(--theme-gray01);
    border-bottom: 1px solid var(--theme-gray01);
    padding: 15px;
    margin-bottom: 0;
}

.list_holder h3 i {
    margin-right: 5px;
    color: var(--theme-primary);
}

.list_holder li {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--theme-gray01);
}

.list_holder li:first-child {
    border-top: none;
}

.table_list .radio {
    width: 20px;
    margin: 0 auto;
}

/**
 * @COMPONENT > TABLE_LIST
 */
.table_list table {
    font-size: 13px;
    border-top: 2px solid var(--theme-black);
}

.table_list table th {
    border-bottom: 1px solid var(--theme-gray01);
    line-height: 18px !important;
    padding: 10px;
}

.table_list table td {
    border-bottom: 1px solid var(--theme-gray01);
    line-height: 18px !important;
    padding: 10px;
}

/*.table_list table td span {*/
/*    color: var(--theme-primary);*/
/*}*/

.table_list table tr.background {
    background-color:#fafafa;
}

/* 상하형 */
.table_list.tp_1 table th {
    border-right: 1px solid var(--theme-gray01);
}

.table_list.tp_1 table th:last-child {
    border-right: none;
}

.table_list.tp_1 table td {
    border-right: 1px solid var(--theme-gray01);
}

.table_list.tp_1 table td:last-child {
    border-right: none;
}

/* 좌우형 */
.table_list.tp_2 table th {
    font-weight: normal;
    border-right: 1px solid var(--theme-gray01);
}

.table_list.tp_2 table th:last-child {
    border-right: none;
}

.table_list.tp_2 table td {
    border-right: 1px solid var(--theme-gray01);
}

.table_list.tp_2 table td:last-child {
    border-right: none;
}

/**
 * @COMPONENT > SELECT
 */
.select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select i {
    position: absolute;
    width: 10px;
    height: 10px;
    top: 50%;
    right: 10px;
    font-size: 10px;
    transform: translateY(-50%);
}

.select select.readonly {
    pointer-events: none;
}

/**
 * @COMPONENT > CHECKBOX
 */
.checkbox {
    line-height: 20px;
}

/**
/**
 * @COMPONENT > SIGNATURE
 */
.signature {
    position: relative;
    border: 1px solid #eaeaea;
}

.signature canvas {
    width: 100%;
    height: 200px;
}

.signature .guide_line01 {
    position: absolute;
    top: 0;
    left: calc((100% / 3) * 1);
    width: 1px;
    height: 100%;
    background-color: #eaeaea;
}

.signature .guide_line02 {
    position: absolute;
    top: 0;
    left: calc((100% / 3) * 2);
    width: 1px;
    height: 100%;
    background-color: #eaeaea;
}

.signature .signature_action button {
    width: 100%;
    font-size: 11px;
    background-color: #eaeaea;
    border: none;
    outline: none;
}

/*.checkbox input[type="checkbox"] {*/
/*    display: none;*/
/*}*/

/*.checkbox input[type="checkbox"] + label span {*/
/*    position: relative;*/
/*    display: inline-block;*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    vertical-align: middle;*/
/*    border: 1px solid var(--theme-gray01);*/
/*    background-color: #ffffff;*/
/*    margin-right: 5px;*/
/*    cursor: pointer;*/

/*    border-radius: 3px;*/
/*    -moz-border-radius: 3px;*/
/*    -webkit-border-radius: 3px;*/

/*}*/

/*.checkbox input[type="checkbox"] + label small {*/
/*    margin-left: 30px;*/
/*}*/

/*.checkbox input[type="checkbox"] + label span i {*/
/*    display: none;*/
/*}*/

/*.checkbox input[type="checkbox"]:checked + label span {*/
/*    border: 1px solid var(--theme-primary);*/
/*    background-color: var(--theme-primary);*/
/*}*/

/*.checkbox input[type="checkbox"]:checked + label span i {*/
/*    display: block;*/
/*    position: absolute;*/
/*    top: 5px;*/
/*    left: 4px;*/
/*    font-size: 10px;*/
/*    color: #ffffff;*/
/*}*/

/**
 * @COMPONENT > RADIO
 */
.radio {
    line-height: 20px;
    border: none;
}

/**
 * @COMPONENT > LOADER
 */
.loader,
.loader:after {
    border-radius: 50%;
    width: 24px;
    height: 24px;
}

.loader {
    display: none;
    font-size: 10px;
    position: absolute;
    border-top: 3px solid rgba(255, 255, 255, 0.2);
    border-right: 3px solid rgba(255, 255, 255, 0.2);
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    border-left: 3px solid #ffffff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;

}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/**
 * ---------------------------------------------------------------------------------------------------------------------
 * TRANSITION
 * ---------------------------------------------------------------------------------------------------------------------
 */
input,
select {
    -webkit-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
    -moz-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
    -o-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000); /* easeInOutCubic */

    -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
    -o-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000); /* easeInOutCubic */
}

/**
 * ---------------------------------------------------------------------------------------------------------------------
 * HELPER
 * ---------------------------------------------------------------------------------------------------------------------
 */
h1:before,
h1:after,
h2:before,
h2:after,
h3:before,
h3:after,
h4:before,
h4:after,
h5:before,
h5:after,
h6:before,
h6:after,
ul:before,
ul:after,
li:before,
li:after,
dl:before,
dl:after,
dd:before,
dd:after,
fieldset:before,
fieldset:after,
.container:before,
.container:after,
.row:before,
.row:after,
.col_group:before,
.col_group:after,
.clear:before,
.clear:after {
    display: table;
    content: " ";
}

h1:after,
h2:after,
h3:after,
h4:after,
h5:after,
h6:after,
ul:after,
li:after,
dl:after,
dd:after,
fieldset:after,
.container:after,
.row:after,
.col_group:after,
.clear:after {
    clear: both;
}

/**
 * ---------------------------------------------------------------------------------------------------------------------
 * OVERRIDES > AIR DATEPICKER
 * ---------------------------------------------------------------------------------------------------------------------
 */
.datepicker {
    width: calc(100% + 40px);
    border: none;
    border-radius: 0;
    margin: -20px;
}

.datepicker--nav {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--theme-gray01);
    padding: 20px;
}

.datepicker--nav .datepicker--nav-title {
    pointer-events: none;
}

.datepicker--nav .datepicker--nav-title h5 {
    font-size: 16px;
    margin-bottom: 0;
}

.datepicker--nav .datepicker--nav-action {
    border-radius: 50%;
}

.datepicker--content {
    border-bottom: 1px solid var(--theme-gray01);
    padding: 20px;
}

.datepicker--content .datepicker--day-name {
    font-size: 12px;
    color: var(--theme-primary);
}

.datepicker--content .datepicker--cell {
    position: relative;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.datepicker--content .datepicker--cell:hover {
    background: none;
}

.datepicker--content .datepicker--cell:hover:after {
    position: absolute;
    width: 32px;
    height: 32px;
    content: '';
    border: 1px solid var(--theme-primary);
    border-radius: 50%;
    z-index: -1;
}

.datepicker--content .datepicker--cell.-current- {
    color: var(--theme-primary);
    border: none;
    background: none;
}

.datepicker--content .datepicker--cell.-current-:after {
    position: absolute;
    width: 32px;
    height: 32px;
    content: '';
    border: 1px solid var(--theme-primary);
    border-radius: 50%;
    z-index: -1;
}

.datepicker--content .datepicker--cell.-selected- {
    color: var(--theme-white);
    background: none;
}

.datepicker--content .datepicker--cell.-selected-:hover {
    border: none !important;
    background: none !important;
}

.datepicker--content .datepicker--cell.-selected-:after {
    position: absolute;
    width: 32px;
    height: 32px;
    content: '';
    background-color: var(--theme-primary);
    border-radius: 50%;
    z-index: -1;
}

.datepicker--content .datepicker--cell.-selected-.-current- {
    background: none;
}

.datepicker--content .datepicker--cell.-disabled- {
    cursor: default;
    color: var(--theme-gray);
}

.datepicker--content .datepicker--cell-day.-other-month-,
.datepicker--content .datepicker--cell-year.-other-decade- {
    color: var(--theme-gray);
}

.datepicker--time {
    padding: 20px;
    border-top: 1px solid var(--theme-gray01);
}

.datepicker--time .datepicker--time-current {
    margin: 0;
}

.datepicker--time .datepicker--time-current .datepicker--time-current-ampm {
    margin-left: 0;
    margin-right: 5px;
}

.datepicker--time .datepicker--time-current .datepicker--time-current-hours,
.datepicker--time .datepicker--time-current .datepicker--time-current-minutes {
    font-size: 16px;
}

.datepicker--time .datepicker--time-current .datepicker--time-current-hours:after,
.datepicker--time .datepicker--time-current .datepicker--time-current-minutes:after {
    all: initial;
}

.datepicker--time .datepicker--time-sliders {
    flex: 0 1 70%;
    max-width: 70%;
    margin: 0;
}

.datepicker--time .datepicker--time-sliders .datepicker--time-row {
    height: 17px;
}

.datepicker--time .datepicker--time-sliders .datepicker--time-row input[type='range']::-webkit-slider-thumb {
    box-sizing: border-box;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border: none;
    background: var(--theme-primary);
    margin-top: -7px;
}

.datepicker--time .datepicker--time-sliders .datepicker--time-row input[type='range']:focus::-webkit-slider-thumb {
    background: var(--theme-primary);
    border-color: var(--theme-primary);
}

/**
 * ---------------------------------------------------------------------------------------------------------------------
 * OVERRIDES > PAGENATIONJS
 * ---------------------------------------------------------------------------------------------------------------------
 */
.paginationjs {
    position: relative;
    height: 21px;
    margin-top: 20px;
}
.paginationjs .paginationjs-pages {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}
.paginationjs .paginationjs-nav {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
    line-height: 21px;
    z-index: 1;
}
.paginationjs .paginationjs-prev a {
    position: absolute;
    top: 0;
    left:0;
    font-size: 10px;
    color: var(--theme-white);
    background-color: var(--theme-primary);
    padding: 5px;
    border-radius: 3px;
}
.paginationjs .paginationjs-next a {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 10px;
    color: var(--theme-white);
    background-color: var(--theme-primary);
    padding: 5px;
    border-radius: 3px;
}

/**
 * ---------------------------------------------------------------------------------------------------------------------
 * OVERRIDES > SWEETALERT2
 * ---------------------------------------------------------------------------------------------------------------------
 */
.swal2-container.swal2-bottom {
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 0 !important;
    transform: none !important;
}

.swal2-container.swal2-center {
    padding: 40px !important;
}

/**
 * @DIALOG
 */
.swal2-container .swal2-popup {
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 20px !important;
    overflow: hidden;
}

.swal2-container .swal2-popup .swal2-header {
    border-bottom: 1px solid var(--theme-gray01);
    padding: 20px;
}

.swal2-container .swal2-popup .swal2-header .swal2-title {
    font-size: 16px;
    margin: 0;
}

.swal2-container .swal2-popup .swal2-content {
    font-size: 13px;
    padding: 20px;
}

.swal2-container .swal2-popup .swal2-content div:last-child {
    margin-bottom: 0;
}

.swal2-container .swal2-popup .swal2-content table th {
    font-size: 12px;
}

.swal2-container .swal2-popup .swal2-content table td {
    font-size: 12px;
}

.swal2-container .swal2-popup .swal2-actions {
    margin: 0;
    flex-direction: row-reverse;
}

.swal2-container .swal2-popup .swal2-actions button {
    width: 50%;
    height: 40px;
    margin: 0;
    outline: none;
}

.swal2-container .swal2-popup .swal2-styled {
    padding: 0;
    border: none;
}

.swal2-container .swal2-popup .swal2-styled:focus {
    outline: 0;
    box-shadow: none;
}

.swal2-container .swal2-popup .swal2-styled.swal2-confirm {
    font-size: 16px;
    border-radius: 0;
}

.swal2-container .swal2-popup .swal2-styled.swal2-cancel {
    font-size: 16px;
    border-radius: 0;
}

/**
 * @TOAST
 */
.swal2-container .swal2-popup.swal2-toast {
    position: relative;
    background: transparent;
    border-radius: 0 !important;
    box-shadow: none;
}

.swal2-container .swal2-popup.swal2-toast:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    background-color: var(--theme-black);
    opacity: 0.90;
    z-index: -1;
}

.swal2-container .swal2-popup.swal2-toast .swal2-header {
    border-bottom: none;
}

.swal2-container .swal2-popup.swal2-toast .swal2-header .swal2-title {
    font-size: 13px;
    color: var(--theme-white);
}

.swal2-container .swal2-popup.swal2-toast .swal2-content {
    display: none;
}