@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;700;900&display=swap");

/**********************************************************
                         common
***********************************************************/
html,
body {
    position: relative;
    width: 100%;
}

body {
    margin: 0 auto;
    font-size: 14px;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: normal;
    letter-spacing: -0.5px;
    color: #000;
    background-color: #fff;
    line-height: 1.2;
}

body.active {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body::after {
    content: '';
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

body.active::after {
    display: block;
    z-index: 10;
}

select,
input {
    font-family: "Noto Sans KR";
    box-sizing: border-box;
}

.header,
.nav,
.section,
.footer {
    width: 100%;
}

.hidden {
    display: none !important;
}

.text-right {
    text-align: right;
}

.frm_input {
    border: 1px solid #e4eaec;
    padding: 5px 5px;
    background: #f7f7f7;
    color: #000;
    vertical-align: middle;
    line-height: 2em
}

/**********************************************************
                       common_class
***********************************************************/
:root {
    --font-2xl: 40px;
    --font-xl: 26px;
    --font-sm: 14px;
    --col-main: #0d3b84;
    --col-green: #67cc3a;
    --col-green-h: #32c12e;
    --col-gray: #dddddd;
    --col-gray2: #6c757d;
    --col-black: #231916;
    --col-skyblue: #b5d2ff;
    --col-pink: #f9267f;
}

.bg-green {
    background-color: var(--col-green);
}

.bg-green:hover {
    background-color: var(--col-green-h);
}

.bg-skyblue {
    background-color: var(--col-skyblue);
}

.bg-skyblue:hover {
    background-color: var(--col-pink);
}

.font-bold {
    font-weight: bold;
}

.w-full {
    width: 100%;
}

/* scroll */
*::-webkit-scrollbar {
    width: 15px;
    height: 15px;
}

*::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: #f4f4f5;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

/* mg/pd */
.mb-10 {
    margin-bottom: 10px;
}

/* input */
.input-box input {
    border-radius: 24px;
    padding: 12px;
    border: 1px solid var(--col-gray);
    outline-color: var(--col-main);
}

.input-box input::placeholder {
    color: var(--col-gray);
}

/* number */
/* check */
.input-box.check input {
    display: none;
}

.input-box.check input+label {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: text-bottom;
}

.input-box.check input+label::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid var(--col-gray);
}

.input-box.check input:checked+label::before {
    background-color: var(--col-black);
}

.input-box.check input:checked+label::after {
    content: '\f00c';
    font-family: 'fontawesome';
    font-size: 12px;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    width: 100%;
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.input-box.check span {
    display: inline-block;
    margin-left: 8px;
    font-size: 13px;
    color: var(--col-gray2);
}

.input-box .search-select {
    border-radius: 24px;
    padding: 12px;
    border: 1px solid var(--col-gray);
    outline-color: var(--col-main);
}

.search-box {
    position: relative;
    max-width: 100%;
    width: 290px;
}

.search-box input {
    width: 100%;
}

.search-box button {
    border: 0;
    outline: 0;
    top: 8px;
    right: 16px;
    width: 24px;
    height: 24px;
    font-size: 20px;
    color: var(--col-gray2);
    cursor: pointer;
    position: absolute;
    display: inline-block;
    background-color: transparent;
}

.select-box {
    position: relative;
}

.select-box::after {
    content: '\f0d7';
    font-family: 'fontawesome';
    font-size: 18px;
    right: 15px;
    top: 12px;
    position: absolute;
    display: inline-block;
    color: var(--col-gray2);
}

.select-box.active::after {
    content: '\f0d8';
}

.select-box input:disabled {
    cursor: pointer;
    background-color: #fff;
    width: 140px;
    color: var(--col-black);
}

.select-dummy {
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    border: 1px solid var(--col-gray);
    border-radius: 12px;
    position: absolute;
    background-color: #fff;
}

.select-dummy>li {
    font-size: 13px;
    cursor: pointer;
    padding: 12px 12px 0 12px;
}

.select-dummy>li:hover {
    color: var(--col-main);
    font-weight: bold;
}

.select-dummy>li:last-of-type {
    padding-bottom: 12px;
}

.datepic-box {
    position: relative;
}

.datepic-box::after {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url(./images/calendar.svg);
    background-size: contain;
    right: 15px;
    top: 12px;
    position: absolute;
    display: inline-block;
}

.datepic-box>input {
    cursor: pointer;
}

.datepic-box>input:focus {
    color: transparent;
    outline: none;
}

/* btns */
.btns {
    transition: 0.3s;
    cursor: pointer;
    border-radius: 24px;
    padding: 12px;
    color: #fff;
    font-size: 14px;
    border: 0;
    stroke: 0;
    outline: 0;
}

.btns2 {
    transition: 0.3s;
    cursor: pointer;
    border-radius: 24px;
    padding: 6px;
    color: #fff;
    font-size: 14px;
    border: 0;
    stroke: 0;
    outline: 0;
}

/* pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.pagination>li>a {
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    color: var(--col-gray2);
}

.pagination>li.active>a {
    border: 1px solid var(--col-green);
    color: var(--col-green);
    font-weight: bold;
    border-radius: 50%;
}

.my_page_sub {
    font-size: 16px;
    font-weight: bold;
    padding: 20px 0;
    border-bottom: 1px solid #f3f3f3;
}

.my_page_form {
    padding: 50px 0;
    margin-left: 80px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.my_page_form .input_form {
    flex-direction: row;
    align-items: center;
}

.input_form.w100 {
    width: 100% !important;
}

.input_form {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.my_page_form .input_form label {
    font-size: 14px;
    width: 140px;
    margin-bottom: 0;
}

.my_page_form .input_form input,
.my_page_form .input_form select,
.my_page_form .input_form textarea {
    font-size: 14px;
    width: calc(100% - 140px);
    padding: 10px 15px;
    border-radius: 2px;
    border: solid 1px #ddd;
}

.input_form input[type=text],
.input_form input[type=password],
.input_form select {
    height: 41px;
    border: 0px;
    padding: 10px 0;
    stroke: none;
    outline: none;
    border-bottom: 1px solid #f3f3f3;
}

.input_form textarea {
    border: 1px solid #f3f3f3;
    resize: none;
    width: 100%;
    min-height: 120px;
}

.mb_10 {
    margin-bottom: 10px !important;
}

.mt_10 {
    margin-top: 10px !important;
}

.mg_t50 {
    margin-top: 50px;
}

.mr_20 {
    margin-right: 20px !important;
}

.mg0 {
    margin: 0 !important;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.my_page_form .flex.flex_start {
    width: calc(100% - 140px);
}

.flex_start {
    justify-content: flex-start !important;
}

.a_flex_start {
    align-items: flex-start !important;
}

.input_form.w33 {
    display: inline-flex;
    width: calc(33.333% - 10px);
}

.input_form.w50 {
    display: inline-flex;
    width: calc(50% - 10px);
}

.input_form.w80 {
    display: inline-flex;
    width: calc(80% - 10px);
}

.input_form.formradio {
    display: contents;
}

.small_btn {
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    border-radius: 3px;
    border: solid 1px transparent;
    font-size: 14px;
    height: 41px;
}

.col_white {
    color: #fff !important;
}

.bg_gray3 {
    background: #aaa;
}

.sound_only {
    display: inline-block !important;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 !important;
    padding: 0 !important;
    width: 1px !important;
    height: 1px !important;
    font-size: 0;
    line-height: 0;
    border: 0 !important;
    overflow: hidden !important;
}

.caption {
    font-size: 12px;
}

.col_gray {
    color: #ccc !important;
}

.check_big input,
.checkbox input {
    /*    display: none;*/
}

.check_big input+label,
.checkbox input+label {
    margin-right: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

/*.checkbox input+label::before {
    vertical-align: middle;
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 3px;
}*/

.w_auto {
    width: auto !important;
}

a.btn_frmline {
    display: inline-block;
    background: #9eacc6;
    color: #fff;
    height: 35px;
    line-height: 33px;
    border-radius: 5px;
    padding: 0 10px;
    margin: 0 5px;
    text-decoration: none !important;
}

.anchor {
    margin: 10px 0;
    padding: 0;
    zoom: 1;
}

.anchor:after {
    clear: both;
    display: block;
    content: "";
}

.anchor li {
    width: 14.285%;
    min-width: 100px;
    max-width: 140px;
    float: left;
    margin-left: -1px;
    list-style: none;
}


.anchor li a {
    text-align: center;
    display: block;
    font-size: 11px;
    letter-spacing: -1px;
}

.anchor a {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #c8ced1;
    background: #d6dde1;
    text-decoration: none;
}

/* dev.jin : btn_approve 추가 */
button.btn_app {
    padding: 5px 10px;
}

button.btn_approve {
    color: #fff !important;
    border-image: none !important;
    background-image: none !important;
    border: 1px solid rgb(0, 110, 160);
    background-color: rgb(0, 125, 180);
}

.btn.small,
.btn-two.small,
.btn-gradient.small,
.btn-effect.small {
    padding: 8px 18px;
    font-size: 14px;
}

.btn.mini,
.btn-two.mini,
.btn-gradient.mini,
.btn-effect.mini {
    padding: 4px 12px;
    font-size: 12px;
}

.btn.block,
.btn-two.block,
.btn-gradient.block,
.btn-effect.block {
    display: block;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.btn-gradient.large {
    padding: 15px 45px;
    font-size: 22px;
}

/* Colors for .btn and .btn-two */
.btn.blue,
.btn-two.blue {
    background-color: #7fb1bf;
}

.btn.green,
.btn-two.green {
    background-color: #9abf7f;
}

.btn.red,
.btn-two.red {
    background-color: #fa5a5a;
}

.btn.purple,
.btn-two.purple {
    background-color: #cb99c5;
}

.btn.cyan,
.btn-two.cyan {
    background-color: #7fccde;
}

.btn.yellow,
.btn-two.yellow {
    background-color: #f0d264;
}

.rounded {
    border-radius: 10px;
}

/* Gradient buttons */
.btn-gradient {
    text-decoration: none;
    color: white;
    padding: 10px 30px;
    display: inline-block;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.21);
    border-bottom: 4px solid rgba(0, 0, 0, 0.21);
    border-radius: 4px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}

/* Gradient - ugly css is ugly */
.btn-gradient.cyan {
    background: rgba(27, 188, 194, 1);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(27, 188, 194, 1)), to(rgba(24, 163, 168, 1)));
    background: -webkit-linear-gradient(rgba(27, 188, 194, 1) 0%, rgba(24, 163, 168, 1) 100%);
    background: -moz-linear-gradient(rgba(27, 188, 194, 1) 0%, rgba(24, 163, 168, 1) 100%);
    background: -o-linear-gradient(rgba(27, 188, 194, 1) 0%, rgba(24, 163, 168, 1) 100%);
    background: linear-gradient(rgba(27, 188, 194, 1) 0%, rgba(24, 163, 168, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1bbcc2', endColorstr='#18a3a8', GradientType=0);
}

.btn-gradient.red {
    background: rgba(250, 90, 90, 1);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(250, 90, 90, 1)), to(rgba(232, 81, 81, 1)));
    background: -webkit-linear-gradient(rgba(250, 90, 90, 1) 0%, rgba(232, 81, 81, 1) 100%);
    background: -moz-linear-gradient(rgba(250, 90, 90, 1) 0%, rgba(232, 81, 81, 1) 100%);
    background: -o-linear-gradient(rgba(250, 90, 90, 1) 0%, rgba(232, 81, 81, 1) 100%);
    background: linear-gradient(rgba(250, 90, 90, 1) 0%, rgba(232, 81, 81, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fa5a5a', endColorstr='#e85151', GradientType=0);
}

.btn-gradient.orange {
    background: rgba(255, 105, 30, 1);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(255, 105, 30, 1)), to(rgba(230, 95, 28, 1)));
    background: -webkit-linear-gradient(rgba(255, 105, 30, 1) 0%, rgba(230, 95, 28, 1) 100%);
    background: -moz-linear-gradient(rgba(255, 105, 30, 1) 0%, rgba(230, 95, 28, 1) 100%);
    background: -o-linear-gradient(rgba(255, 105, 30, 1) 0%, rgba(230, 95, 28, 1) 100%);
    background: linear-gradient(rgba(255, 105, 30, 1) 0%, rgba(230, 95, 28, 1) 100%);
}

.btn-gradient.blue {
    background: rgba(102, 152, 203, 1);
    background: -moz-linear-gradient(top, rgba(102, 152, 203, 1) 0%, rgba(92, 138, 184, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(102, 152, 203, 1)), color-stop(100%, rgba(92, 138, 184, 1)));
    background: -webkit-linear-gradient(top, rgba(102, 152, 203, 1) 0%, rgba(92, 138, 184, 1) 100%);
    background: -o-linear-gradient(top, rgba(102, 152, 203, 1) 0%, rgba(92, 138, 184, 1) 100%);
    background: -ms-linear-gradient(top, rgba(102, 152, 203, 1) 0%, rgba(92, 138, 184, 1) 100%);
    background: linear-gradient(to bottom, rgba(102, 152, 203, 1) 0%, rgba(92, 138, 184, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6698cb', endColorstr='#5c8ab8', GradientType=0);
}

.btn-gradient.purple {
    background: rgba(203, 153, 197, 1);
    background: -moz-linear-gradient(top, rgba(203, 153, 197, 1) 0%, rgba(181, 134, 176, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(203, 153, 197, 1)), color-stop(100%, rgba(181, 134, 176, 1)));
    background: -webkit-linear-gradient(top, rgba(203, 153, 197, 1) 0%, rgba(181, 134, 176, 1) 100%);
    background: -o-linear-gradient(top, rgba(203, 153, 197, 1) 0%, rgba(181, 134, 176, 1) 100%);
    background: -ms-linear-gradient(top, rgba(203, 153, 197, 1) 0%, rgba(181, 134, 176, 1) 100%);
    background: linear-gradient(to bottom, rgba(203, 153, 197, 1) 0%, rgba(181, 134, 176, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cb99c5', endColorstr='#b586b0', GradientType=0);
}

.btn-gradient.yellow {
    background: rgba(240, 210, 100, 1);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(240, 210, 100, 1)), to(rgba(229, 201, 96, 1)));
    background: -webkit-linear-gradient(rgba(240, 210, 100, 1) 0%, rgba(229, 201, 96, 1) 100%);
    background: -moz-linear-gradient(rgba(240, 210, 100, 1) 0%, rgba(229, 201, 96, 1) 100%);
    background: -o-linear-gradient(rgba(240, 210, 100, 1) 0%, rgba(229, 201, 96, 1) 100%);
    background: linear-gradient(rgba(240, 210, 100, 1) 0%, rgba(229, 201, 96, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f0d264', endColorstr='#e5c960', GradientType=0);
}

.btn-gradient.green {
    background: rgba(130, 200, 160, 1);
    background: -moz-linear-gradient(top, rgba(130, 200, 160, 1) 0%, rgba(130, 199, 158, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(130, 200, 160, 1)), color-stop(100%, rgba(130, 199, 158, 1)));
    background: -webkit-linear-gradient(top, rgba(130, 200, 160, 1) 0%, rgba(130, 199, 158, 1) 100%);
    background: -o-linear-gradient(top, rgba(130, 200, 160, 1) 0%, rgba(130, 199, 158, 1) 100%);
    background: -ms-linear-gradient(top, rgba(130, 200, 160, 1) 0%, rgba(130, 199, 158, 1) 100%);
    background: linear-gradient(to bottom, rgba(130, 200, 160, 1) 0%, rgba(124, 185, 149, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#82c8a0', endColorstr='#82c79e', GradientType=0);
}

.btn-gradient.red:active {
    background: #E35252;
}

.btn-gradient.orange:active {
    background: #E8601B;
}

.btn-gradient.cyan:active {
    background: #169499;
}

.btn-gradient.blue:active {
    background: #608FBF;
}

.btn-gradient.purple:active {
    background: #BD8EB7;
}

.btn-gradient.yellow:active {
    background: #DBC05B;
}

.btn-gradient.green:active {
    background: #72B08E;
}

.local_sch01 .frm_input {
    height: 30px;
    border: 1px solid #dcdcdc;
    padding: 0 5px;
}

.local_sch01 .btn_submit {
    width: 30px;
    height: 30px;
    border: 0;
    padding: 0;
    background: url('../../img/sch_btn.png') no-repeat 50% 50% #eee;
    border: 1px solid #dcdcdc;
    text-indent: -999px;
    overflow: hidden
}

/**********************************************************
                        table
***********************************************************/
.notice-table th.num,
.notice-table td.num {
    width: 6%;
}


/**********************************************************
                        responsive
***********************************************************/
@media screen and (max-width: 1023px) {
    :root {
        --font-2xl: 22px;
        --font-xl: 18px;
        --font-sm: 12px;
    }

    /* input */
    .input-box input {
        padding: 8px;
    }

    .search-box button {
        top: 5px;
        right: 10px;
    }

    .select-box::after {
        top: 9px;
        right: 10px;
    }

    .select-dummy {
        top: calc(100% + 2px);
    }

    .select-dummy>li {
        padding: 8px 8px 0 8px;
    }

    .select-dummy>li:last-of-type {
        padding-bottom: 8px;
    }
}

@media screen and (max-width: 799px) {
    .my_page_form {
        margin-left: 10px;    
    }

    .input_form.w50 {
        width: calc(90% - 10px);
    }
}

@media screen and (max-width: 639px) {

    /* pagination */
    .pagination>li>a {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

@media screen and (max-width: 499px) {}

@media screen and (max-width: 399px) {}