/* IE 10, 11의 네이티브 화살표 숨기기 */
.gdi select {
    -webkit-appearance: none; /* 네이티브 외형 감추기 */
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    border-radius: 0;
    background: #ffffff url("/images/new/btn_select.png") no-repeat calc(100% - 10px) center; /* 화살표 모양의 이미지 */
    border: 1px solid #dbdbdb;
    font-family: "Noto Sans KR", dotum, sans-serif;
    padding-right: 30px !important;
}
.gdi input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {-webkit-appearance: none;margin: 0;}
/* Firefox */
.gdi input[type="number"] {-moz-appearance: textfield;text-align: right;}
.gdi select::-ms-expand {display: none;}
.gdi select:focus::-ms-value {background-color: #ffffff;color: #252525;}
.gdi p {margin: 0;padding: 0;word-break: break-all;}
.gdi a {text-decoration: none;vertical-align: middle;}
.gdi input[type="text"], .gdi input[type="password"], .gdi input[type="number"], .gdi textarea {outline: none;}
.gdi input[type="text"], .gdi input[type="password"], .gdi input[type="number"], .gdi select, .gdi button {vertical-align: top;border: 1px solid #c8c8c8;padding: 0 14px;line-height: 35px;height: 35px;color: #000;font-size: 14px;font-weight: 100;/*letter-spacing: -1px;*/ outline: none !important;}
.gdi a.smart_edit_a_btn {background-color: rgb(239, 239, 239); vertical-align: top;border: 1px solid #c8c8c8;padding: 0 14px;line-height: 35px;height: 35px;color: #000;font-size: 14px;font-weight: 100;/*letter-spacing: -1px;*/ outline: none !important;}
/*.gdi button {padding: 0;}*/
.gdi input[type="text"].type1, .gdi input[type="password"].type1, .gdi select.type1 {color: #555555;line-height: 30px;height: 32px;padding: 0 10px;}
.gdi textarea {color: #858585;font-size: 14px;border: 1px solid #dbdbdb;padding: 0 14px;resize: none;line-height: 43px;}
@media (max-width: 768px) {
    .gdi input[type="text"],
    .gdi input[type="password"],
    .gdi select {
        line-height: 36px;height: 36px;padding: 0 10px;
    }
 }
.gdi table {border-spacing: 0;border-collapse: collapse;}
.gdi hr {border: 0;margin: 0;}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*체크박스*/
.gdi input[type="checkbox"] {
    /* 실제 체크박스는 화면에서 숨김 */
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.gdi input[type="checkbox"] + label {
    text-align: left;
    display: inline-block;
    position: relative;
    padding-left: 20px; /* 글자와 체크박스 사이의 간격을 변경 */
    cursor: pointer;
    margin:0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    margin-left: 0;
}
.gdi input[type="checkbox"] + label:before {
    /* 가짜 체크박스 */
    content: "";
    position: absolute;
    left: 0;
    top: 50%; /* 이 값을 변경해서 글자와의 정렬 */
    width: 18px; /* 체크박스의 너비를 지정 */
    height: 18px; /* 체크박스의 높이를 지정 */
    line-height: 14px; /* 세로정렬을 위해 높이값과 일치 */
    margin-top: -8px;
    text-align: center;
    /*background: #d3d3d3;*/
    border: 2px solid #d3d3d3;
}
.gdi input[type="checkbox"] + label.chk_center {
    padding-left: 0;
    vertical-align: super;
}
.gdi input[type="checkbox"] + label.chk_center:before {
    left: 50%;
    margin-left: -7px;
}
.gdi input[type="checkbox"] + label:active:before,
.gdi input[type="checkbox"]:checked + label:active:before {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
.gdi input[type="checkbox"]:checked + label:before {
    /* 체크박스를 체크했을때 */
    content: ""; /* 체크표시 유니코드 사용 */
    font-size: 13px;
    line-height: 0.9em;
    color: #99a1a7;
    text-shadow: 1px 1px #fff;
    background: #e9ecee url("/images/new/check.gif") no-repeat center;
    border: none;
}
.gdi input[type="checkbox"]:checked + label.chk_red:before {
    /* 체크박스를 체크했을때 */
    content: ""; /* 체크표시 유니코드 사용 */
    font-size: 13px;
    line-height: 0.9em;
    color: #99a1a7;
    text-shadow: 1px 1px #fff;
    background: #e9ecee url("/images/new/chk_bg_red.png") no-repeat center;
    border-color: #adb8c0;
}

/*라디오버튼 커스텀*/.gdi input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
/*page-8, page-10, page-12*/
.gdi input[type="radio"] + label {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    font-size: 14px;
    line-height: 18px;
	margin-right: 30px;
	margin-left: 0;

}
.gdi input[type="radio"] + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    text-align: center;
    background: #d3d3d3;
    border-radius: 100%;
    /*box-shadow: 0px 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);*/
}
.gdi input[type="radio"]:checked + label:before {
    background: url("/images/new/checkRadio.gif") no-repeat;
}
.gdi input[type="radio"] + label:active:before,
.gdi input[type="radio"]:checked + label:active:before {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
/*input[type="radio"]:checked + label:before{border-color: #555555; }*/.gdi input[type="radio"] + label:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 4px;
    width: 8px;
    height: 8px;
    background: #909090;
    border-radius: 100%;
    display: none;
}
/*input[type="radio"]:checked + label:after{background: #555555;display: block;}*/
.gdi #top_btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    line-height: 36px;
    border: 2px solid #333;
    background: rgba(255, 255, 255, 0.5);
    color: #333;
    text-align: center;
    font-size: 15px;
    z-index: 99;
}
.gdi #top_btn:hover {
    border-color: #034b9c;
    background: #034b9c;
    color: #fff;
}
.gdi .font_number {
    font-family: "NanumSquareRound", dotum, sans-serif;
    font-weight: 800;
    text-shadow: 0.5px 0px 1px;
}
.gdi .divider {
    margin: 25px 0;
    border-bottom: 1px solid #f1f1f1;
}
.gdi .divider.sm {
    margin: 12px 0;
    border-bottom: 1px solid #ccc;
}
.gdi .divider.m-0 {
    margin: 0;
    border-bottom: 1px solid #ccc;
}
.gdi .divider.dark {
    border-bottom-color: #676767;
    margin: 50px 0 0;
}
.gdi .hr_10 {
    height: 10px;
}
.gdi .hr_20 {
    height: 20px;
}
.gdi .hr_30 {
    height: 30px;
}
.gdi .hr_40 {
    height: 40px;
}
.gdi .hr_45 {
    height: 45px;
}
.gdi .hr_50 {
    height: 50px;
}
.gdi .hr_80 {
    height: 80px;
}

/*---------------------------------------------------------------------------*/
/*Lee 기본설정*/
.gdi .align_left {
    text-align: left !important;
}
.gdi .align_right {
    text-align: right !important;
}
.gdi .container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .gdi .container {
        padding: 0 10px;
    }
}
.gdi .ul_hz {
    overflow: hidden;
}
.gdi .ul_hz li {
    float: left;
}
.gdi .blet_20 {
    padding-left: 16px;
    position: relative;
}
.gdi .blet_20:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 30px;
    background-color: #ffffff;
    border: 3px solid #024a9c;
    margin-top: -5.5px;
}
.gdi .blet_30 {
    padding-left: 10px;
    padding-right: 15px;
    position: relative;
    font-size: 19px;
    color: #252525;
    line-height: 1;
}
.gdi .blet_30:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: #0266c8;
    margin-top: -2px;
}
.gdi .blet_31 {
    padding-left: 13px;
    padding-right: 15px;
    position: relative;
    font-size: 16px;
    color: #444444;
    line-height: 1;
    font-weight: bold;
}
.gdi .blet_31:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: #0266c8;
    margin-top: -2px;
}
.gdi .blet_40 {
    padding-left: 10px;
    padding-right: 15px;
    position: relative;
    font-size: 17px;
    color: #0367c8;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 20px;
}
.gdi .blet_40:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: #0266c8;
    margin-top: -2px;
}

@media (max-width: 768px) {
    .gdi .btn_box2.top .cnt_lay {
        font-size: 14px;
    }
    .gdi .blet_40 {
        font-size: 15px;
    }
}
.gdi .btn_box2.top .col_left .blet_30 {
    font-size: 15px;
}
.gdi .br_l {
    display: block;
}
.gdi .br_lm {
    display: block;
}
.gdi .br_m {
    display: inline-block;
}
.gdi .br_ms {
    display: inline-block;
}
.gdi .br_s {
    display: inline-block;
}
.gdi .show_l {
    display: block !important;
}
.gdi .show_lm {
    display: block !important;
}
.gdi .show_m {
    display: none !important;
}
.gdi .show_s {
    display: none !important;
}
.gdi .show_inline_l {
    display: inline-block !important;
}
.gdi .show_inline_lm {
    display: inline-block !important;
}
.gdi .show_inline_m {
    display: none !important;
}
.gdi .show_inline_ms {
    display: none !important;
}
.gdi .show_inline_s {
    display: none !important;
}
.gdi .show_table_l {
    display: table;
}
.gdi .show_table_lm {
    display: table;
}
.gdi .show_table_m {
    display: none;
}
.gdi .show_table_ms {
    display: none;
}
.gdi .show_table_s {
    display: none;
}
.gdi .show_td_l {
    display: table-cell;
}
.gdi .show_td_lm {
    display: table-cell;
}
.gdi .show_td_m {
    display: none;
}
.gdi .show_td_ms {
    display: none;
}
.gdi .show_td_s {
    display: none;
}
.gdi .show_td_ms {
    display: table-cell;
}

.gdi .text-left-s {
    text-align: inherit;
}
@media (max-width: 1240px) {.gdi .br_l {
        display: inline-block !important;
    }
    .gdi .br_lm {
        display: block !important;
    }
    .gdi .br_m {
        display: block !important;
    }
    .gdi .br_ms {
        display: block !important;
    }
    .gdi .br_s {
        display: inline-block !important;
    }
    .gdi .show_l {
        display: none !important;
    }
    .gdi .show_lm {
        display: block !important;
    }
    .gdi .show_m {
        display: block !important;
    }
    .gdi .show_s {
        display: none !important;
    }
    .gdi .show_inline_l {
        display: none !important;
    }
    .gdi .show_inline_lm {
        display: inline-block !important;
    }
    .gdi .show_inline_m {
        display: inline-block !important;
    }
    .gdi .show_inline_ms {
        display: inline-block !important;
    }
    .gdi .show_inline_s {
        display: none !important;
    }
    .gdi .show_table_l {
        display: none;
    }
    .gdi .show_table_m {
        display: table;
    }
    .gdi .show_table_ms {
        display: table;
    }
    .gdi .show_td_l {
        display: none;
    }
    .gdi .show_td_m {
        display: table-cell;
    }
}

@media (max-width: 768px) {.gdi .br_l {
        display: inline-block !important;
    }
    .gdi .br_lm {
        display: inline-block !important;
    }
    .gdi .br_ms {
        display: block !important;
    }
    .gdi .br_s {
        display: block !important;
    }
    .gdi .show_l {
        display: none !important;
    }
    .gdi .show_lm {
        display: none !important;
    }
    .gdi .show_m {
        display: none !important;
    }
    .gdi .show_s {
        display: block !important;
    }
    .gdi .show_inline_l {
        display: none !important;
    }
    .gdi .show_inline_lm {
        display: none !important;
    }
    .gdi .show_inline_m {
        display: none !important;
    }
    .gdi .show_inline_ms {
        display: inline-block !important;
    }
    .gdi .show_inline_s {
        display: inline-block !important;
    }
    .gdi .show_table_lm {
        display: none;
    }
    .gdi .show_table_m {
        display: none;
    }
    .gdi .show_table_s {
        display: table;
    }
    .gdi .show_td_l {
        display: none;
    }
    .gdi .show_td_lm {
        display: none;
    }
    .gdi .show_td_m {
        display: none;
    }
    .gdi .show_td_s {
        display: table-cell;
    }
    .gdi .br_m {
        display: inline-block !important;
    }
    .gdi .text-left-s {
        text-align: left !important;
    }
}
/*---------------------------------------------------------------------------*/

/*리스트*/.gdi .type_l {
    width: 100%;
}
.gdi .type_lm {
    width: 88% !important;
}
.gdi .type_m {
    width: 50%;
}
.gdi .type_ms {
    width: 33.333%;
}
.gdi .type_ms_x {
    width: calc(66.666% - 3px);
    margin-left: 3px;
}
.gdi .type_s {
    width: 22.6%;
}
.gdi .type_ss {
    width: 16.666%;
}
.gdi .type_address {
    margin-top: 5px;
}
.gdi .w_90 {
    width: 90px !important;
}
.gdi .w_190 {
    width: 190px !important;
}
.gdi .mw_190 {
    max-width: 190px;
}
.gdi .type_tel {
    width: 130px;
}
.gdi .type_tel::-webkit-outer-spin-button,
.gdi .type_tel::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.gdi .type_tel- {
    font-size: 13px;
    padding: 0 2.5px;
    display: inline-block;
    text-align: center;
    width: 10px;
    position: relative;
    top: 2px;
    vertical-align: sub;
}
.gdi .type_email {
    width: 170px;
}
.gdi .type_email- {
    font-size: 13px;
    padding: 0 2.5px;
    display: inline-block;
    text-align: center;
    position: relative;
    top: 2px;
    vertical-align: sub;
}
.gdi .type_email- {
    font-size: 13px;
    padding: 0 2.5px;
    display: inline-block;
    text-align: center;
    position: relative;
    top: 2px;
}
.gdi .frm_info2 {
    display: block;
    color: #898989;
    font-size: 15px;
    margin: 10px 0 5px;
}

/*버튼*/
.gdi .btn_reg {
    display: inline-block;
    width: 100px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: #363636;
    font-size: 15px;
    color: #ffffff;
    vertical-align: middle;
    margin-left: 5px;
}
.gdi .btn_default {
    display: inline-block;
    width: 100px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: #ffffff;
    font-size: 15px;
    color: #363636;
    vertical-align: middle;
    margin-left: 5px;
    border: 1px solid #363636;
}
.gdi .list_box {
    position: relative;
}
.gdi .list_box .cnt_lay {
    margin-bottom: 20px;
    padding-top: 8px;
}
.gdi .list_box .cnt_lay.type1 {
    font-size: 15px;
    color: #555555;
    line-height: 1;
}
.gdi .list_box .cnt_lay span {
    color: #0072bc;
}
.gdi .list_lay {
    border-top: 2px solid #252525;
    width: 100%;
}
.gdi .list_lay th {
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #2e2e2e;
    background-color: #f6f5f5;
	font-weight:400;
}
.gdi .list_lay th.th_left {
    text-align: left;
    padding-left: 10% !important;
}
.gdi .list_lay td {
    text-align: center;
    color: #444444;
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 0;
}
/*type1*/.gdi .list_lay.type1 th,
.gdi .list_lay.type1 td {
    border: 1px solid #dbdbdb;
}
.gdi .list_lay.type1 td .td_link_box {
    display: inline-block;
}
.gdi .list_lay.type1 td .td_link_box a {
    float: left;
    display: block;
}
.gdi .list_lay.type1 th {
    min-width: 10px;
    padding: 18px 0;
    color: #252525;
    background-color: #f3f4fa;
}
.gdi .list_lay.type1 td {
    color: #555555;
    padding: 7px 5px;
}
/*type2*/.gdi .list_lay.type2 th,
.gdi .list_lay.type2 td {
    border: 1px solid #dbdbdb;
}
.gdi .list_lay.type2 td .td_link_box {
    display: inline-block;
}
.gdi .list_lay.type2 td .td_link_box a {
    float: left;
    display: block;
}
.gdi .list_lay.type2 th {
    min-width: 10px;
    padding: 16px 0;
    font-size: 14px;
    color: #252525;
    background-color: #f7f7f7;
    text-align: center;
}
.gdi .list_lay.type2 td {
    color: #000;
    padding: 0;
    font-weight: 300;
    height: 50px;
}
.gdi .list_lay.type2 td * {
    font-size: 14px;
}
.gdi .list_lay td.td_left {
    padding-left: 20px;
    text-align: left;
}
.gdi .list_lay td.td_left2 {
    padding-left: 10px;
    text-align: left;
}
.gdi .list_lay td.td_right {
    padding-right: 10px;
    text-align: right;
}
.gdi .list_lay tr:hover td {
    background-color: #fafafa;
}
.gdi .list_lay .color_1 {
    color: #0012ff;
}
.gdi .list_lay .color_2 {
    color: #ff0000;
}
.gdi .list_lay .color_3 {
    color: #dbdbdb;
}
.gdi .list_lay .span_deny {
    text-decoration: line-through;
    color: #ed1c24;
}

@media (max-width: 768px) {
}
.gdi .list_lay .btn_1,
.gdi .list_lay .btn_2,
.gdi .list_lay .btn_3,
.gdi .list_lay .btn_4 {
    display: inline-block;
    width: 52px;
    text-align: center;
    line-height: 24px;
    height: 24px;
    color: #ffffff;
    font-size: 13px;
}
.gdi .list_lay.type1 .btn_1,
.gdi .list_lay.type1 .btn_2,
.gdi .list_lay.type1 .btn_3,
.gdi .list_lay.type1 .btn_4 {
    width: 70px;
    line-height: 30px;
    height: 30px;
    font-size: 15px;
    margin: 0 3px;
}
.gdi .list_lay.type2 .btn_1,
.gdi .list_lay.type2 .btn_2,
.gdi .list_lay.type2 .btn_3,
.gdi .list_lay.type2 .btn_4 {
    width: 70px;
    line-height: 30px;
    height: 30px;
    font-size: 15px;
    margin: 0 3px;
}
.gdi .list_lay .btn_1 {
    background-color: #0072bc;
}
.gdi .list_lay .btn_2 {
    background-color: #dbdbdb;
}
.gdi .list_lay .btn_3 {
    background-color: #ed1c24;
}
.gdi .list_lay.type1 .btn_1 {
    background-color: #ececec;
}
.gdi .list_lay.type1 .btn_2 {
    background-color: #ececec;
    border: 1px solid #dbdbdb;
    color: #555555;
}
.gdi .list_lay.type1 .btn_3 {
    background-color: #707070;
}
.gdi .list_lay.type1 .btn_4 {
    background-color: #ececec;
    border: 1px solid #dbdbdb;
    color: #ed1c24;
}
.gdi .list_lay.type2 .btn_1 {
    background-color: #ececec;
}
.gdi .list_lay.type2 .btn_2 {
    background-color: #ececec;
    border: 1px solid #dbdbdb;
    color: #555555;
}
.gdi .list_lay.type2 .btn_3 {
    background-color: #707070;
}
.gdi .list_lay.type2 .btn_4 {
    background-color: #ececec;
    border: 1px solid #dbdbdb;
    color: #ed1c24;
}
.gdi .list_lay .link_a {
    color: #0096ff;
}
.gdi .list_lay a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {.gdi .list_lay.type1 .btn_1,
    .gdi .list_lay.type1 .btn_2,
    .gdi .list_lay.type1 .btn_3,
    .gdi .list_lay.type1 .btn_4 {
        font-size: 14px;
    }
    .gdi .list_lay.type2 .btn_1,
    .gdi .list_lay.type2 .btn_2,
    .gdi .list_lay.type2 .btn_3,
    .gdi .list_lay.type2 .btn_4 {
            font-size: 14px;
    }
}
.gdi #bo_sort_li {
    overflow: hidden;
    float: right;
}
.gdi #bo_sort_li li {
    float: left;
    padding: 0 9px;
    border-left: 1px solid #dbdbdb;
}
.gdi #bo_sort_li li:first-child {
    border-left: 0;
}
.gdi #bo_sort_li li a {
    color: #636363;
    font-size: 13px;
    position: relative;
    top: -1px;
}

/* 페이징 */
.gdi .pg_wrap {
    clear: both;
    text-align: center;
}
.gdi .pg_wrap:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: "";
}
.gdi .pg {
}
.gdi .pg_page,
.gdi .pg_current {
    display: inline-block;
    vertical-align: middle;
}
.gdi .pg a:focus,
.gdi .pg a:hover {
    text-decoration: none;
}
.gdi .pg_page {
    color: #999;
    height: 30px;
    line-height: 28px;
    padding: 0 5px;
    min-width: 30px;
    text-decoration: none;
}
.gdi .pg_page:hover {
    background-color: #f3f3f3;
}
.gdi .pg_start {
    overflow: hidden;
    padding: 0;
    border: 1px solid #bbb;
}
.gdi .pg_prev {
    overflow: hidden;
    padding: 0;
    border: 1px solid #bbb;
}
.gdi .pg_end {
    overflow: hidden;
    padding: 0;
    border: 1px solid #bbb;
}
.gdi .pg_next {
    overflow: hidden;
    padding: 0;
    border: 1px solid #bbb;
}
.gdi .pg_start:hover,
.gdi .pg_prev:hover,
.gdi .pg_end:hover,
.gdi .pg_next:hover {
    background-color: #fafafa;
}
.gdi .pg_current {
    display: inline-block;
    color: #0367c8;
    font-weight: bold;
    height: 30px;
    line-height: 28px;
    min-width: 30px;
    border: 1px solid #0367c8;
}

/*-------------------
    *커스텀 검색창
    *sch_typeBig
-------------------*/
.gdi .sch_typeBig {
    padding: 0 0 30px;
}
.gdi .sch_typeBig .content_box {
    background: #ececec;
    border: 1px solid #dbdbdb;
    padding: 15px 0;
    text-align: center;
}
.gdi .sch_typeBig .content_box .row_10 {
    display: inline-block;
}
.gdi .sch_typeBig .sch_selectbox {
    display: inline-block;
}
.gdi .sch_typeBig .sch_selectbox select {
    width: 120px;
    height: 50px;
    font-size: 14px;
    padding: 0 10px;
    border: 1px solid #dbdbdb;
}
.gdi .sch_typeBig .sch_selectbox select.type1 {
    width: 210px;
}
.gdi .sch_typeBig .sch_input {
    width: 390px;
    height: 50px;
    padding: 0 10px;
    font-size: 14px;
}
.gdi .sch_typeBig .btn_sch {
    width: 50px;
    height: 50px;
    background: #252525;
    color: #ffffff;
    border: 0;
    vertical-align: top;
}
.gdi .sch_typeBig .span_1 {
    line-height: 1;
    vertical-align: middle;
    margin-right: 30px;
}

@media (max-width: 768px) {
    .gdi .sch_typeBig {
        padding: 0 0 20px;
    }
    .gdi .sch_typeBig .content_box {
        padding: 7px 3px;
    }
    .gdi .sch_typeBig .sch_selectbox select,
    .gdi .sch_typeBig .sch_input {
        height: 35px;
        font-size: 12px;
        line-height: 35px;
    }
    .gdi .sch_typeBig .sch_selectbox select {
        width: 80px;
        padding: 0 10px;
        font-size: 12px;
    }
    .gdi .sch_typeBig .sch_input {
        width: calc(100% - 130px);
    }
    .gdi .sch_typeBig .btn_sch {
        width: 35px;
        height: 35px;
    }
    .gdi .sch_typeBig .btn_sch img {
        max-width: 90%;
        vertical-align: sub;
    }
}
.gdi .sch_box {
    background-color: #f4f4f4;
    padding: 10px 20px;
    font-size: 0;
    margin-bottom: 30px;
    border: 1px solid #dbdbdb;
}
.gdi .sch_box .stx {
    width: 266px;
    margin-right: 11px;
}
.gdi .sch_box .sfl {
    width: 210px;
    margin: 0 11px;
}
.gdi .sch_box .btn_sch {
    line-height: 44px;
    height: 44px;
    width: 113px;
    background-color: #444444;
    color: #ffffff;
    font-size: 14px;
}
.gdi .sch_box .type_calendar {
    background: #ffffff url("/images/new/calendar.png") no-repeat center right 10px;
    padding-right: 40px;
    cursor: pointer;
    width: 210px;
    margin: 0 11px;
}
.gdi .sch_box span {
    font-size: 14px;
}
.gdi .sch_box2 {
    overflow: hidden;
    background-color: #f4f9fe;
    padding:20px;
    margin-bottom: 30px;
    border: 1px solid #b4cee8;
    text-align: center;
    line-height: 2.4em;
}
.gdi .sch_box2 .col_10 {
    float: left;
    font-size: 0;
}
.gdi .sch_box2 .span_10 {
    margin-right: 10px;
    vertical-align: middle;
    font-size: 16px;
}
.gdi .sch_box2 .span_20 {
    vertical-align: middle;
    font-size: 15px;
}
.gdi .sch_box2 .col_10 select {
    width: 210px;
    font-size: 15px;
    color: #636363;
}
.gdi .sch_box2 .col_20 {
    float: right;
    font-size: 0;
}
.gdi .sch_box2 .col_30 {
    display: inline-block;
}
.gdi .sch_box2 .type_calendar {
    background: #ffffff url("/images/new/calendar.png") no-repeat center right 10px;
    padding-right: 40px;
    cursor: pointer;
    width: 210px;
    margin: 0 11px;
}


.sch_box_responsive {
    overflow: hidden;
    background-color: #f4f9fe;
    padding:20px;
    margin-bottom: 30px;
    border: 1px solid #b4cee8;
    text-align: center;
    line-height: 2.4em;
}
.sch_box_responsive .col_10 {
    float: left;
    font-size: 0;
}
.sch_box_responsive .span_10 {
    margin-right: 10px;
    vertical-align: middle;
    font-size: 16px;
}
.sch_box_responsive .span_20 {
    vertical-align: middle;
    font-size: 15px;
}
.sch_box_responsive .col_10 select {
    width: 210px;
    font-size: 15px;
    color: #636363;
}
.sch_box_responsive .col_20 {
    float: right;
    font-size: 0;
}
.sch_box_responsive .col_30 {
    display: inline-block;
}
.sch_box_responsive .type_calendar {
    background: #ffffff url("/images/new/calendar.png") no-repeat center right 10px;
    padding-right: 40px;
    cursor: pointer;
    width: 210px;
    margin: 0 11px;
}

.gdi .sch_box2 .sfl {
    width: 90px;
    color: #252525;
    font-size: 14px;
    margin-right: 2px;
    height: 34px;
    line-height: 34px;
}
.sch_box_responsive .sfl {
    width: 90px;
    color: #252525;
    font-size: 14px;
    margin-right: 2px;
    height: 34px;
    line-height: 34px;
}
/*page-32*/
.gdi .sch_box2 .sfl.type2 {
    width: 120px;
}
.sch_box_responsive .sfl.type2 {
    width: 120px;
}
.gdi .sch_box2 .sch_input {
    width: 290px;
    color: #252525;
    font-size: 15px;
    margin-right: 5px;
    height: 34px;
    line-height: 34px;
}
.sch_box_responsive .sch_input {
    width: 290px;
    color: #252525;
    font-size: 15px;
    margin-right: 5px;
    height: 34px;
    line-height: 34px;
}
.gdi .sch_box2 .btn_sch {
    width: 75px;
    background-color: #868687;
    color: #ffffff;
    font-size: 14px;
    height: 34px;
    line-height: 34px;
    border: none;
}
.sch_box_responsive .btn_sch {
    width: 75px;
    background-color: #868687;
    color: #ffffff;
    font-size: 14px;
    height: 34px;
    line-height: 34px;
    border: none;
    margin-left: -3px;
}
/*img text*/
.gdi .sch_box2 .btn_sch:before {
    content: "";
    display: inline-block;
    position: relative;
    top: 3px;
    margin-right: 3px;
    width: 17px;
    height: 17px;
    background-image: url("/images/user/magnifier.gif");
    background-position: center center;
    background-repeat: no-repeat;
}
.sch_box_responsive .btn_sch:before {
    content: "";
    display: inline-block;
    position: relative;
    top: 3px;
    margin-right: 3px;
    width: 17px;
    height: 17px;
    background-image: url("/images/user/magnifier.gif");
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .gdi .sch_box2 {
        margin-bottom: 5px;
        padding: 10px;
    }
    .gdi .sch_box2 .col_10 select {
        font-size: 14px;
    }
    .gdi .sch_box2 .sfl {
        font-size: 14px;
        width: 100px;
       
    }
    .gdi .sch_box2 .sch_input {
        width: calc(100% - 170px);
        margin-right: 3px;
    }
    .gdi .sch_box2 .btn_sch {
        line-height: 34px;
        height: 36px;
        font-size: 14px;
        width: 50px;
        margin-right: 0;
    }
    .gdi .sch_box2 .btn_sch > span {
        display: none;
    }
    .gdi .sch_box2 .btn_sch:before {
        margin: 0;
    }
    .sch_box_responsive {
        margin-bottom: 5px;
        padding: 10px;
    }
    .sch_box_responsive .col_10 select {
        font-size: 14px;
    }
    .sch_box_responsive .sfl {
        font-size: 14px;
        width: 100px;

    }
    .sch_box_responsive .sch_input {
        width: calc(100% - 170px);
        margin-right: 3px;
    }
    .sch_box_responsive .btn_sch {
        line-height: 34px;
        height: 34px;
        font-size: 14px;
        width: 50px;
        margin-left: -3px;
    }
    .sch_box_responsive .btn_sch > span {
        display: none;
    }
    .sch_box_responsive .btn_sch:before {
        margin: 0;
    }
}

/*-------------------
    *게시판 뷰페이지
-------------------*/
.gdi #bo_v {
    margin-bottom: 20px;
    background: #fff;
    box-sizing: border-box;
    border-top: 2px solid #363636;
}
.gdi #bo_v_title {
    padding: 20px 20px 0;
    font-size: 20px;
    line-height: 25px;
}
.gdi #bo_v_title .bo_v_tit {
    word-break: break-all;
}
.gdi #bo_v_info {
    padding: 15px 20px 15px;
    margin: 0;
    border-bottom: 1px solid #d7d7d7;
    color: #636363;
    font-size: 14px;
}
.gdi #bo_v_info:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: "";
}
.gdi #bo_v_info h2 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}
.gdi #bo_v_info strong {
    display: inline-block;
    margin: 0 20px 0 0;
    font-weight: normal;
}
.gdi #bo_v_info strong span {
    font-weight: 200 !important;
}
.gdi #bo_v_info .sv_member,
.gdi #bo_v_info .profile_img img {
    border-radius: 50%;
}
.gdi #bo_v_info .sv_member {
    color: #000;
}
.gdi #bo_v_con {
    margin: 0;
    padding: 20px 20px 100px;
    width: 100%;
    line-height: 1.7em;
    min-height: 200px;
    word-break: break-all;
    overflow: hidden;
    font-size: 14.5px;
    font-family: "Noto Sans KR", dotum, sans-serif;
}
.gdi #bo_v_con a {
    color: #000;
    text-decoration: underline;
}
.gdi #bo_v_con img {
    max-width: 100%;
    height: auto;
}
.gdi .view_v_nb {
    overflow: hidden;
    font-size: 15px;
    width: 100%;
}
.gdi .view_v_nb li {
    border: 1px solid #cdcdcd;
    float: left;
    width: calc(50% - 30px);
    position: relative;
    line-height: 58px;
    height: 60px;
}
.gdi .view_v_nb li a {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    color: #444444;
}
.gdi .view_v_nb .btn_prv {
    padding-left: 30px;
    padding-right: 95px;
    text-align: right;
}
.gdi .view_v_nb .btn_prv i {
    background: url("/images/new/v_prev.png") no-repeat center center;
    background-size: 55px 13px;
    width: 55px;
    height: 13px;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -7px;
}
.gdi .view_v_nb .btn_next {
    padding-right: 30px;
    padding-left: 95px;
    text-align: left;
}
.gdi .view_v_nb .btn_next i {
    background: url("/images/new/v_next.png") no-repeat center center;
    background-size: 55px 13px;
    width: 55px;
    height: 13px;
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -7px;
}
.gdi .view_v_nb .btn_list {
    border-left: 0;
    border-right: 0;
    width: 60px;
    text-align: center;
}
.gdi .view_v_nb .btn_list a {
    width: 100%;
    font-weight: bold;
    color: #ffffff;
    font-size: 1em;
    background-color: #363636;
}
.gdi .view_v_nb .btn_list a img {
    vertical-align: sub;
}

@media (max-width: 768px) {
.gdi #bo_v_title {
        padding: 10px 10px 0;
        font-size: 16px;
    }
.gdi #bo_v_info {
        font-size: 12px;
        padding: 5px 10px 10px;
    }
.gdi #bo_v_con {
        padding: 10px;
    }
.gdi #bo_v_con img {
        max-width: 100%;
    }
.gdi .view_v_nb {
        font-size: 13px;
    }
.gdi .view_v_nb li {
        height: 45px;
        line-height: 38px;
        width: 40%;
        padding: 0 !important;
    }
.gdi .view_v_nb li a {
        line-height: 43px;
    }
.gdi .view_v_nb li span {
        display: none;
    }
.gdi .view_v_nb .btn_list {
        width: 20%;
    }
.gdi .bo_view .file_lay {
        padding: 5px 10px;
    }
.gdi .bo_view .file_lay td {
        font-size: 12px;
        padding: 0;
    }
.gdi .bo_view .file_lay td img {
        height: 12px;
    }
.gdi .bo_view .file_lay a {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 5px;
    }
.gdi .bo_view .file_lay a:last-child {
        margin-bottom: 0;
    }
}

/*-------------------
    *게시판 글쓰기
-------------------*/.gdi .write_box {
    border-top: 2px solid #363636;
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
}
.gdi .write_box th,
.gdi .write_box td {
    border-bottom: 1px solid #e2e2e2;
    font-size: 15px;
    color: #252525;
    padding: 10px 0;
}
.gdi .write_box td .row_lay {
    font-size: 0;
    margin-bottom: 10px;
}
.gdi .write_box td .row_lay:last-child {
    margin-bottom: 0;
}
.gdi .write_box td .font_10 {
    font-size: 15px;
    color: #898989;
}
.gdi .write_box th,
chk_lay {
    width: 17%;
    padding: 22px 0 22px 30px;
    text-align: left;
}
.gdi .write_box .content_td {
    padding: 10px 0;
}
.gdi .wr_input {
    border: 1px solid #cccccc;
    width: 100%;
    font-size: 15px;
    line-height: 39px;
    height: 39px;
    padding-left: 10px;
}
.gdi .bo_write .file_lay {
    display: inline-block;
    border: 1px solid #cccccc;
    text-align: left;
    line-height: 43px;
    margin-right: 15px;
}
.gdi .bo_write .file_lay label {
    padding: 0 20px;
    background: #e2e2e2;
    color: #252525;
    font-size: 15px;
    display: inline-block;
    float: right;
}
.gdi .bo_write .file_lay label input {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}
.gdi .bo_write .file_lay input[type="text"] {
    font-size: 15px;
    padding: 0 10px;
    border: 0;
    position: relative;
    z-index: -1;
}
.gdi #captcha #captcha_key {
    border-radius: 0;
}

@media (max-width: 768px) {.gdi .write_box {
    }
.gdi .write_box th,
.gdi .write_box td {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 13px;
    }
.gdi .write_box th {
        border: 0;
        padding: 10px 5px 5px;
    }
.gdi .write_box td {
        padding: 5px 0;
    }
.gdi .write_box td .row_lay {
        margin-bottom: 5px;
    }
.gdi .write_box td .font_10 {
        font-size: 13px;
        line-height: 20px;
    }
.gdi .write_box .chk_lay {
        padding: 10px;
    }
.gdi .wr_input {
        font-size: 13px;
        line-height: 38px;
        height: 40px;
        width: 100%;
    }
.gdi .bo_write .file_lay {
        width: 100%;
        line-height: 38px;
        margin-right: 0;
    }
.gdi .bo_write .file_lay label {
        line-height: 38px;
        font-size: 13px;
    }
.gdi .bo_write .file_lay input[type="text"] {
        width: 66%;
        font-size: 13px;
    }
.gdi .file_del label {
        padding: 10px 0;
    }
.gdi .td_captcha {
        text-align: center !important;
        padding: 10px 0 20px !important;
    }
.gdi #captcha.m_captcha #captcha_img {
        margin: 5px auto 3px;
    }
.gdi #captcha.m_captcha #captcha_reload {
        width: 29px;
        height: 29px;
        background-position: -5px -46px;
    }
.gdi #captcha.m_captcha #captcha_info {
        margin: 10px 0 0;
    }
}

/*-------------------
    *form페이지
-------------------*/
.gdi .info_box3 {
    border-top: 2px solid #363636;
    width: 100%;
    margin-bottom: 20px;
}
.gdi .info_box3 th,
.gdi .info_box3 td {
    border: 1px solid #dbdbdb;
}
.gdi .info_box3 th {
    width: 200px;
    padding: 0 20px;
    text-align: left;
    color: #252525;
    background-color: #f4f4f4;
    font-size: 16px;
}
.gdi .info_box3 td {
    padding: 5px 20px;
    font-size: 0;
    height: 49px;
    font-weight: 300;
}
.gdi .info_box3 input[type="text"],
.gdi .info_box3 input[type="password"],
.gdi .info_box3 select {
    line-height: 38px;
    height: 38px;
    font-size: 15px;
    color: #555555;
}
.gdi .info_box3 textarea {
    height: 120px;
    margin: 5px 0;
    resize: none;
    padding: 14px;
    font-size: 15px;
    line-height: 22px;
}
.gdi .info_box4 {
    border-top: 1px solid #363636;
    width: 100%;
    margin-bottom: 20px;
}
.gdi .info_box4 th,
.gdi .info_box4 td {
    border-bottom: 1px solid #dbdbdb;
}
.gdi .info_box4 th {
    width: 200px;
    padding: 0 20px;
    text-align: left;
    color: #464646;
    background-color: #f3f4fa;
    font-size: 15px;
}
.gdi .info_box4 td {
    padding: 7px 12px;
    font-size: 0;
    height: 49px;
    font-weight: 300;
}
.gdi .info_box4 input[type="text"],
.gdi .info_box4 input[type="password"],
.gdi .info_box4 select {
    line-height: 45px;
    height: 45px;
    font-size: 15px;
    color: #555555;
}
.gdi .info_box4 textarea {
    height: 120px;
    margin: 5px 0;
    resize: none;
    padding: 14px;
    font-size: 15px;
    line-height: 22px;
}
.gdi .info_box5 {
    width: 100%;
    margin-bottom: 30px;
}
/*page-30*/.gdi .info_box5 .top {
    border-top: 2px solid #363636;
}
.gdi .info_box5 th,
.gdi .info_box5 td {
    border: 1px solid #dbdbdb;
}
.gdi .info_box5 th {
    width: 200px;
    padding: 0 15px 0 30px;
    text-align: left;
    color: #464646;
    background-color: #f7f7f7;
    font-weight:400;
}
/*page-17, page-30*/
.gdi .info_box5 td {
    padding: 10px 20px;
    height: 54px;
    font-weight: 300;
    font-size: 14px;
    line-height: 35px;
}
.gdi .info_box5 td * {
    font-size: 14px;
}
.gdi .info_box5 button,
.gdi .info_box5 input[type="text"],
.gdi .info_box5 input[type="password"],
.gdi .info_box5 select {
    line-height: 35px;
    height: 35px;
    font-size: 13px;
    min-width: 50px;
    border-radius: 0;
}
.gdi select {
    outline: none !important;
}
/*page-33*/
/*page-30*/
.gdi .info_box5 textarea {
    height: 120px;
    resize: none;
    padding: 14px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -0.7px;
}
.gdi .info_box6 {
    width: 100%;
    margin-bottom: 30px;
}
.gdi .info_box6 .top {
    border-top: 2px solid #363636;
}
.gdi .info_box6 th,
.gdi .info_box6 td {
    border: 1px solid #dbdbdb;
}
/*page-17*/
.gdi .info_box6 th {
    padding: 15px 0;
    color: #464646;
    background-color: #f7f7f7;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
}
/*page-32*/.gdi .info_box6 td {
    padding: 10px 20px;
    text-align: center;
    overflow: hidden;
    height: 44px;
}
.gdi .info_box6 button,
.gdi .info_box6 input[type="text"],
.gdi .info_box6 input[type="password"],
.gdi .info_box6 select {
    line-height: 35px;
    height: 35px;
    font-size: 14px;
    color: #555555;
    letter-spacing: -1px;
    width: 100%;
    min-width: 48px;
}
.gdi .info_box6 .img_con {
    padding-left: 30px;
    padding-right: 30px;
}
/*.info_box6 textarea{height: 120px;margin: 5px 0;resize: none;padding: 14px;font-size: 15px;line-height: 22px;}*/
.gdi .info_box7 {
    width: 100%;
    margin-bottom: 30px;
}
.gdi .info_box7 .top {
    border-top: 2px solid #363636;
}
.gdi .info_box7 th,
.gdi .info_box7 td {
    border: 1px solid #dbdbdb;
}
/*page-17*/.gdi .info_box7 th {
    padding: 15px 0;
    color: #464646;
    background-color: #f7f7f7;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
}
/*page-32*/.gdi .info_box7 td {
    padding: 5px;
    text-align: center;
    overflow: hidden;
    height: 44px;
}
.gdi .info_box7 button,
.gdi .info_box7 input[type="text"],
.gdi .info_box7 input[type="password"],
.gdi .info_box7 select {
    line-height: 35px;
    height: 35px;
    font-size: 14px;
    color: #555555;
    letter-spacing: -1px;
    width: 100%;
    min-width: 48px;
}
.gdi .info_box7 .img_con {
    padding-left: 30px;
    padding-right: 30px;
}

/*우편번호검색*/
.gdi #layer {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}
.gdi #layer > div {
    position: absolute !important;
    top: 50%;
    left: 50%;
    max-width: 500px;
    max-height: 600px;
    width: 90% !important;
    height: 80% !important;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/*-------------------
    *버튼
-------------------*/.gdi .btn_ul {
    font-size: 0;
    overflow: hidden;
}
.gdi .btn_ul li {
    float: left;
}
.gdi .btn_box2 .btn {
    width: 110px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
    font-size: 15px;
    margin: 0 0 0 10px;
    color: #464646;
    cursor: pointer;
}
.gdi .btn_box2 .btn_excel {
    border: 1px solid #dbdbdb;
    background-color: #ececec;
    font-size: 14px;
    letter-spacing: -0.5px;
    line-height: 38px;
}
.gdi .btn_box2 .btn_excel img {
    margin-right: 5px;
    position: relative;
    top: 4px;
}
.gdi .btn_box2 .btn_1 {
    min-width: 70px;
    width: auto;
    color: #464646;
    margin-left: 0;
    margin-right: 10px;
    background-color: #e2e2e2;
    border: 1px solid #c2c2c2;
    font-size: 14px;
    line-height: 38px;
    padding: 0 9px;
}
.gdi .btn_box2 .btn_2 {
    color: #ffffff;
    background-color: #0266c8;
}
.gdi .btn_box2 .btn_3 {
    color: #ffffff;
    background-color: #00aef0;
}
.gdi .btn_box2 {
    overflow: hidden;
}
.gdi .btn_box2 .col_left {
    float: left;
    font-size: 0;
}
.gdi .btn_box2 .col_left.type1 {
    margin-top: 10px;
}
.gdi .btn_box2 .col_left > div {
    display: inline-block;
}
.gdi .btn_box2 .col_right {
    float: right;
}
.gdi .btn_box2.top {
    margin-bottom: 20px;
    padding: 0;
}
.gdi .btn_box2.top .col_left .blet_30 {
    vertical-align: bottom;
}
.gdi .btn_box2.bottom {
    margin-top: 20px;
}
.gdi .btn_box2.top .cnt_lay {
    margin-bottom: 0;
    padding-top: 0;
    font-size: 15px;
    line-height: 1;
    color: #555555;
}
.gdi .btn_box {
    font-size: 0;
    text-align: center;
    padding: 10px 0 40px;
}
.gdi .bri_btn {
    /*width: 110px;*/
    line-height: 40px;
    height: 40px;
    display: inline-block;
    color: #ffffff;
    font-size: 14px !important;
    text-align: center;
    margin: 0 2px;
    cursor: pointer;
    padding: 0 25px;
}
.gdi .btn_0 {
    background-color: #e34b4b;
    border: 1px solid #e34b4b;
    color: #ffffff !important;
}
.gdi .mobile_container .order-basket_count .btn_red {height: 32px !important; line-height: 32px; !important;}
.gdi .btn_10 {
    background-color: #7f7f7f;
    border: 1px solid #7f7f7f;
    color: #ffffff !important;
}
.gdi .btn_20 {
    background-color: #252525;
    border: 1px solid #252525;
    color: #ffffff !important;
}
.gdi .btn_30 {
    background-color: #0367c8;
    border: 1px solid #0367c8;
}
.gdi .btn_40 {
    background-color: #00aef0;
    border: 1px solid #00aef0;
}
.gdi .btn_50 {
    background-color: #00a99d;
    border: 1px solid #00a99d;
}
.gdi .btn_60 {
    background-color: #dbdbdb;
    border: 1px solid #dbdbdb;
}
.gdi .btn_70 {
    background-color: #707070;
    border: 1px solid #707070;
    color: #ffffff !important;
}
.gdi .btn_80 {
    background-color: #363636;
    border: 1px solid #363636;
    color: #ffffff !important;
}
.gdi .btn_90 {
    background-color: #003471;
    border: 1px solid #003471;
}
.gdi .btn_100 {
    background-color: #999999;
    border: 1px solid #999999;
    color: #ffffff !important;
}
.gdi .btn_110 {
    background-color: #ec4b4b;
    border: 1px solid #ec4b4b;
    color: #ffffff !important;
}
.gdi .btn_120 {
    background-color: #9b94ee;
    border: 1px solid #9b94ee;
    color: #ffffff !important;
}
.gdi .btn_130 {
    background-color: #ed9a7d;
    border: 1px solid #ed9a7d;
    color: #ffffff !important;
}
.gdi .btn_140 {
    background-color: #ffffff;
    border: 1px solid #aeaeae;
}
.gdi .btn_150 {
    background-color: #f78810;
    border: 1px solid #f78810;
    color: #ffffff !important;
}
.gdi .btn_160 {
    background-color: #fae100;
    border: 1px solid #fae100;
    color: #000 !important;
}
.gdi .btn_170 {
    background-color: #f8fcff;
    border: 1px solid #0367c8;
    color: #000 !important;
}
.gdi .btn_180 {
    background-color: #666;
    border: 1px solid #666;
    color: #fff !important;
}
.gdi .btn_0_ol {
    color: #e34b4b;
    background-color: #fff;
    border: 1px solid #e34b4b;
    color: #e34b4b !important;
}
.gdi .btn_10_ol {
    color: #969696;
    background-color: #fff;
    border: 1px solid #969696;
}
.gdi .btn_20_ol {
    color: #252525;
    background-color: #fff;
    border: 1px solid #252525;
}
.gdi .btn_30_ol {
    color: #0367c8;
    background-color: #fff;
    border: 1px solid #0367c8;
}
.gdi .btn_40_ol {
    color: #00aef0;
    background-color: #fff;
    border: 1px solid #00aef0;
}
.gdi .btn_50_ol {
    color: #00a99d;
    background-color: #fff;
    border: 1px solid #00a99d;
}
.gdi .btn_60_ol {
    color: #dbdbdb;
    background-color: #fff;
    border: 1px solid #dbdbdb;
}
.gdi .btn_70_ol {
    color: #707070;
    background-color: #fff;
    border: 1px solid #707070;
}
.gdi .btn_80_ol {
    color: #363636;
    background-color: #fff;
    border: 1px solid #363636;
}
.gdi .btn_90_ol {
    color: #003471;
    background-color: #fff;
    border: 1px solid #003471;
}
.gdi .btn_100_ol {
    color: #999999;
    background-color: #fff;
    border: 1px solid #999999;
}
.gdi .btn_110_ol {
    color: #ec4b4b;
    background-color: #fff;
    border: 1px solid #ec4b4b;
}
.gdi .btn_120_ol {
    color: #9b94ee;
    background-color: #fff;
    border: 1px solid #9b94ee;
}
.gdi .btn_130_ol {
    color: #ed9a7d;
    background-color: #fff;
    border: 1px solid #ed9a7d;
}
.gdi .btn_140_ol {
    color: #000000;
    background-color: #aeaeae;
    border: 1px solid #ffffff;
}
.gdi .btn_150_ol {
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #f78810;
}
.gdi .btn_160_ol {
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #fae100;
}
.gdi .btn_big {
    line-height: 50px;
    height: 50px;
    font-size: 15px !important;
    padding-left: 40px;
    padding-right: 40px;
    font-weight: 400;
}
.gdi .btn_big.type_2 {
    line-height: 60px;
    height: 60px;
    width: 158px;
    padding: 0;
}
.gdi .btn_big.type_3 {
    line-height: 52px;
    height: 52px;
    padding: 0 30px;
}
.gdi .before_save {
    display: inline-block;
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #252525;
    color: #ffffff;
    font-size: 17px;
}
.gdi .before_save img {
    position: relative;
    top: 5px;
    margin-right: 10px;
}

/*shine*/.gdi .s_red {
    color: #ed1c24 !important;
}
.gdi .s_green {
    color: #609209 !important;
}
.gdi .s_blue {
    color: #4280d3 !important;
}
.gdi .s_silver {
    color: #686868 !important;
}
.gdi .s_violet {
    color: #dde9fe !important;
}
.gdi .btn_none {
    padding: 7px;
    appearance: auto;
    height: auto;
}
.gdi .btn_view {
    color: #707070;
    background-color: #fff;
    border: 1px solid #707070;
    padding: 4px 6px;
    appearance: auto;
    height: auto;
    vertical-align: middle;
    font-size: 12px !important;
	border-radius:2px;
    cursor: pointer;
}

.gdi .btn_view_blue {
    color: #fff;
    background-color: #5eadf9;
    border: 1px solid #5eadf9;
    padding: 4px 6px;
    appearance: auto;
    height: auto;
    vertical-align: middle;
    font-size: 12px !important;
    border-radius:2px;
    cursor: pointer;
}
.gdi .btn_view_custom_red {
    color: #fff;
    background-color: #ed1c24;
    border: 1px solid #ed1c24;
    padding: 4px 6px;
    appearance: auto;
    height: auto;
    vertical-align: middle;
    font-size: 12px !important;
    border-radius:2px;
    cursor: pointer;
}

.gdi .btn_view_red {
    color: #ed1c24;
    background-color: #fff;
    border: 1px solid #ed1c24;
    font: 400 12px Arial;
    padding: 4px 6px;
    appearance: auto;
    height: auto;
    vertical-align: middle;
    font-size: 12px !important;
    cursor: pointer;
}
/*.btn_edit {*/
/*    color: #ed1c24 !important;*/
/*    background-color: #fff;*/
/*    border: 1px solid #ed1c24;*/
/*    font: 400 12px Arial;*/
/*    padding: 4px 6px;*/
/*    appearance: auto;*/
/*    height: auto;*/
/*    vertical-align: middle;*/
/*    font-size: 12px !important;*/
/*    width: initial;*/
/*}*/
.gdi .btn_send,
.gdi .btn_select {
    background-color: #888;
    color: #ffffff !important;
	padding:0 8px;
    height:26px;
	line-height:26px;
    appearance: auto;
    vertical-align: baseline;
    font-size: 12px !important;
	border-radius:2px;
    cursor: pointer;
}
.gdi .btn_file {
    background-color: #f5f5f5;
    font-size: 14px;
    appearance: auto;
    cursor: pointer;
    padding: 0 25px;
    width: auto;
}
.gdi .btn_crop {
    background-color: #868688;
    color: #ffffff !important;
    font-size: 14px;
    padding: 0px 20px;
    appearance: auto;
    vertical-align: middle;
    cursor: pointer;
}
.gdi .msg-manager .btn_view,
.gdi .msg-manager .btn_view_red,
.gdi .msg-manager .btn_view_custom_red,
.gdi .msg-manager .btn_view_blue,
.gdi .msg-manager .btn_send {
    padding: 0 6px;
}
.gdi .bg-violet {
    background-color: #dde9fe;
}
.gdi .table_footer:hover td {
    background-color: #dde9fe !important;
}
.gdi .table_footer:hover td:nth-child(2) {
    background-color: #ffffff !important;
}
.gdi .required:after {
    content: "*";
    position: absolute;
    width: 4px;
    height: 4px;
    color: red;
    margin-top: -2px;
}
.gdi .cpointer {
    cursor: pointer;
}
.gdi .it_num {
    text-align: right !important;
}
.gdi .font400 {
    font-weight: 400;
}
.gdi .mt20 {
    margin-top: 20px;
}
.gdi .border-l-0 {
    border-left: none !important;
}
.gdi .border-r-0 {
    border-right: none !important;
}
.gdi .upload-img_wrap {
    width: 90px;
    height: 90px;
    position: relative;
    float: left;
    padding-top: 10px;
}
.gdi .upload-img_wrap a.close {
    position: absolute;
    background: white;
    color: red;
    right: 0px;
    margin: 3px;
    text-align: center;
    padding: 2px 6px;
    font-size: 12px;
    line-height: normal;
}
.gdi .upload-img_wrap img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
}

/* popup */
/*.gdi .popup_wrap {*/
/*    !*display: none;*!*/
/*    position: fixed;*/
/*    left: 0px;*/
/*    top: 0px;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: rgba(0, 0, 0, 0.7);*/
/*    z-index: 10000;*/
/*}*/
/*.gdi .popup_wrap.show {*/
/*    display: block;*/
/*}*/
.gdi .popup_wrap .popup_layer {
    height: 100%;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.gdi .popup_wrap .pp_top .btn_close_popup {
    position: absolute;
    right: 0px;
    top: 0px;
    display: block;
    width: 58px;
    height: 58px;
    overflow: hidden;
    text-indent: -9999px;
}
.gdi .popup_wrap .pp_top .btn_close_popup:before {
    content: "";
    position: absolute;
    left: 19px;
    right: 19px;
    top: 20px;
    height: 2px;
    background: #fff;
    transform: translate3D(0, 8px, 0) rotate(-45deg);
}
.gdi .popup_wrap .pp_top .btn_close_popup:after {
    content: "";
    position: absolute;
    left: 19px;
    right: 19px;
    bottom: 20px;
    height: 2px;
    background: #fff;
    transform: translate3D(0, -8px, 0) rotate(45deg);
}
.gdi .popup_wrap .popup_layer .popup_window {
    width: 100%;
    max-height: 1000px;
    margin: 0px auto;
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}
.gdi .popup_wrap .popup_layer .popup_window_sm {
    max-width: 550px;
}
.gdi .popup_wrap .popup_layer .popup_window_md {
    max-width: 750px;
}
.gdi .popup_wrap .popup_layer .popup_window_lg {
    max-width: 830px;
}
.gdi .popup_wrap .popup_layer .popup_window.show {
    display: block;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_top {
    position: relative;
    display: block;
    height: 18px;
    padding: 20px 60px 35px 20px;
    margin: 0px auto;
    background: #0367c8;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    font-family: "NanumSquare", sans-serif;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content {
    padding: 20px;
    min-height: 100px;
    max-height: 900px;
    font-weight: 300;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    font-size: 14px;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_bottom {
    padding-bottom: 40px;
    text-align: center;
}
.gdi .popup_wrap .popup_layer .popup_window .pg_wrap {
    padding-bottom: 40px;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_bottom .btn_reg,
.gdi .popup_wrap .popup_layer .popup_window .pp_bottom .btn_default {
    height: 35px;
    line-height: 35px;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content input[type="text"],
.gdi .popup_wrap .popup_layer .popup_window .pp_content input[type="password"],
.gdi .popup_wrap .popup_layer .popup_window .pp_content input[type="number"],
.gdi .popup_wrap .popup_layer .popup_window .pp_content select,
.gdi .popup_wrap .popup_layer .popup_window .pp_content button {
    line-height: 35px !important;
    height: 35px !important;
    letter-spacing: -1px;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content table {
    width: 100%;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content table button > span {
    font-size: 14px;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content th {
    min-width: 10px;
    padding: 15px 0;
    color: #252525;
    background-color: #f7f7f7;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content td {
    padding: 9px;
    text-align: center;
    color: #444444;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
/*.gdi .popup_wrap .popup_layer .popup_window .pp_content th, .gdi .popup_wrap .popup_layer .popup_window .pp_content td {*/
/*    border: 1px solid #dbdbdb;*/
/*}*/
.gdi .popup_wrap .popup_layer .popup_window .pp_content td.td_left {
    padding-left: 20px;
    text-align: left;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content td.td_right {
    padding-right: 20px;
    text-align: right;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content tr:hover td {
    background-color: #f7f7f7;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content td:nth-child(1) {
    max-width: 320px;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content td:nth-child(2) {
    max-width: 220px;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content td > a > span {
    padding: 4px;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .photo_con .photo_box {
    width: calc((100% - 0px) / 4);
    margin-right: 0;
    padding: 20px;
    border: 1px solid #dbdbdb;
    border-right: 0;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .photo_con .file-input .btn_file,
.gdi .popup_wrap .popup_layer .popup_window .pp_content .photo_con .file-input .btn_crop {
    vertical-align: inherit;
    padding: 0 5px;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .photo_con .file-input input {
    width: 69%;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .photo_con .popup_desc {
    text-align: left;
    padding-left: 30px;
    font-size: 13px;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .photo_con .popup_desc:hover {
    background-color: #ffffff;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .photo_con .popup_desc ul li {
    font-size: 13px;
    line-height: 23px;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .photo_con .info_box5 {
    margin-bottom: 0;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .photo_con .info_box5 th {
    width: 21%;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .popup_desc {
    padding: 10px;
    line-height: 22px;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .popup_desc .square_blue:before {
    margin-top: 10px;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .file-input_con {
    text-align: center;
    padding: 10px 0;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .file-input_con .file-input {
    padding: 5px;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .file-input_con .file-input input[type="text"] {
    width: 50%;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .file-input_con .file-input button {
    width: 19%;
    padding: 0;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .file-input_con .file-input input,
.gdi .popup_wrap .popup_layer .popup_window .pp_content .file-input_con .file-input button span,
.gdi .popup_wrap .popup_layer .popup_window .pp_content .info_box5 .file-input input[type="text"],
.gdi .popup_wrap .popup_layer .popup_window .pp_content .info_box5 .file-input button > span {
    font-size: 13px;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .card > p {
    text-align: center;
    padding-top: 10px;
    font-size: 13px;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .card button,
.gdi .popup_wrap .popup_layer .popup_window .pp_content .card button > span,
.gdi .popup_wrap .popup_layer .popup_window .pp_content .btn_box2 button,
.gdi .popup_wrap .popup_layer .popup_window .pp_content .sch_box2 button > span {
    font-size: 13px;
    font-weight: 400;
}
.sch_box_responsive button > span {
    font-size: 13px;
    font-weight: 400;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .sch_box2 {
    padding: 16px 20px;
}
.sch_box_responsive {
    padding: 16px 20px;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .tab_wrap .tabs a {
    width: 130px;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .btn_box2 button {
    width: 65px;
    border-radius: 5px;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .sch_box2 .sch_input,
.gdi .popup_wrap .popup_layer .popup_window .pp_content .card-vertical .card-detail p {
    font-size: 14px;
}
.sch_box_responsive .sch_input {
    font-size: 14px;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .description_con .description_title:before {
    content: "\2022";
    margin-right: 10px;
    color: #0367c8;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .description_con .description_text textarea {
    width: 100%;
    height: 200px;
    resize: none;
    scroll: auto;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .tab_wrap {
    margin-bottom: 0;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .tab_wrap .tabs a {
    font-size: 15px;
    line-height: 47px;
}
.gdi .popup_wrap .popup_layer .popup_window .pp_content .img-list_con {
    padding: 15px 0;
}
/*popup end*/

/*login*/.gdi .lg_con {
    max-width: 700px;
    margin: 0 auto;
}
.gdi .lg_con .lg_header {
    margin-bottom: 65px;
}
.gdi .lg_con .lg_header,
.gdi .lg_con .lg_content,
.gdi .lg_con .lg_footer {
    text-align: center;
}
.gdi .lg_con .lg_header h1 {
    font-size: 32px;
    padding: 80px 0 20px 0;
}
.gdi .lg_con .lg_header p {
    color: #555;
    font-weight: 100;
    font-size: 18px;
}
.gdi .lg_con .lg_content {
    padding: 50px 70px;
}
.gdi .lg_con .lg_content .lg_logo {
    padding: 30px 0;
}
.gdi .lg_con .lg_content .lg_form {
    padding-left: 70px;
}
.gdi .lg_con .lg_content .lg_form input {
    height: 60px;
    padding-left: 15px;
    margin-bottom: 15px;
}
.gdi .lg_con .lg_content .lg_form .btn_submit {
    width: 100%;
    height: 60px;
    border: none;
    background-color: #f78810;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
    cursor: pointer;
}
.disabled {
    pointer-events: none;
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}
.gdi .lg_con .lg_footer .lg_desc p {
    margin: 35px;
    font-size: 14px;
    color: #444444;
    line-height: 25px;
}
.gdi .lg_con .lg_footer .lg_desc p span {
    color: #0367c8;
    font-size: 14px;
}
.gdi .lg_con .lg_footer button {
    font-size: 13px;
    color: #000000;
    cursor: pointer;
}

@media (max-width: 768px) {.gdi .lg_con .lg_header {
        margin-bottom: 0;
    }
.gdi .lg_con .lg_header h1 {
        font-size: 20px;
        padding: 40px 0 20px 0;
    }
.gdi .lg_con .lg_header p {
        font-size: 14px;
    }
.gdi .lg_con .lg_content img {
        width: 55px;
    }
.gdi .lg_con .lg_content {
        padding: 35px 20px;
    }
.gdi .lg_con .lg_content .lg_logo,
.gdi .lg_con .lg_content .lg_form {
        padding: 0;
    }
.gdi .lg_con .lg_content .lg_form input {
        height: 40px;
        margin-bottom: 5px;
    }
.gdi .lg_con .lg_content .lg_form .btn_submit {
        height: 45px;
        margin-top: 0;
    }
}
/*login end*/

/*mobile order*/.gdi .mobile_header {
    background: #15b943;
    color: white;
}
.gdi .mobile_header .btn_menu .btn_icon,
.gdi .mobile_header .btn_menu .btn_icon:after,
.gdi .mobile_header .btn_menu .btn_icon:before {
    background-color: white;
}
.gdi .mobile_header .brand .brand_title {
    color: white;
    font-size: 34px;
    font-weight: 600;
    line-height: 105px;
}
.gdi .mobile_container input[type="radio"]:checked + label:before {
    background: url(/images/new/chk_green.png) no-repeat;
}
.gdi .mobile_container .w80 {
    margin: 0 auto;
    padding: 0 20px;
}
.gdi .mobile_container .info_box5 {
    margin: 0;
}
.gdi .mobile_container .info_box5 td {
    font-weight: lighter;
    padding: 0 20px;
    line-height: 40px;
}
.gdi .mobile_container .info_box5 td.td_right {
    text-align: right;
}
.gdi .mobile_container .info_box5 td.td_center {
    text-align: center;
}
.gdi .mobile_container .info_box5 td .btn {
    line-height: 55px;
    height: 55px;
    width: 55px;
}
.gdi .mobile_container .info_box5 th {
    padding: 10px 0;
    text-align: center;
}
.gdi .mobile_container .info_box5 .bcred,
.gdi .bcred > th,
.gdi .bcred > td {
    background-color: #f9ebeb;
}
.gdi .mobile_container .info_box5 .bcred > th {
    border-right: 0;
    font-weight: 400;
    text-align: left;
    padding: 0 0 0 25px;
}
.gdi .mobile_container .info_box5 .bcred > td {
    border-left: 0;
    text-align: right;
}
.gdi .mobile_container .order-basket_subtitle {
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: 600;
}
.gdi .mobile_container .order-basket_subtitle.p60 {
    padding-top: 60px;
}
.gdi .mobile_container .order-basket_count {
    text-align: right;
    padding: 25px 0 0 0;
    line-height: 30px;
}
.gdi .mobile_container .order-basket_count .order-basket_txt {
    display: inline-block;
}
.gdi .mobile_container .order-basket_count .order-basket_txt .basket_count {
    display: inline-block;
    width: 55px;
    border: 1px solid #dbdbdb;
    text-align: center;
}
.gdi .mobile_container .order-basket_count .order-basket_txt .basket_total {
    display: inline-block;
    width: 100px;
    border: 1px solid #dbdbdb;
    margin-left: 5px;
    padding-right: 20px;
    color: #e55d5d;
}
.gdi .mobile_container .order-basket_count .order-basket_btn {
    display: inline-block;
    margin-left: 5px;
}
.gdi .mobile_container .order-basket_count .order-basket_btn button {
    padding: 0 5px;
}
.gdi .mobile_container .order-amount_con {
    background: #f5f5f5;
    padding: 5px 0;
}
.gdi .mobile_container .order-amount_con .order-amount_desc {
    line-height: 30px;
}
.gdi .mobile_container .order-amount_con .order-amount_date {
    font-weight: 400;
}
.gdi .mobile_container .order-amount_con .order-amount_total,
.gdi .mobile_container .order-amount_con .order-amount_total > span {
    font-weight: 300;
}
.gdi .mobile_container .order-searchbox_con {
    text-align: center;
    margin: 15px 0;
}
.gdi .mobile_container .order-searchbox_con input {
    width: 100%;
    position: relative;
}
.gdi .mobile_container .order-searchbox_con .order-searchbox_btn {
    position: absolute;
    margin-left: -64px;
    cursor: pointer;
    border: none;
    background:none;
}
.gdi .mobile_container .order-searchbox_con .order-searchbox_btn:before {
    content: "";
    display: inline-block;
    position: relative;
    top: 0px;
    width: 50px;
    height: 50px;
    background-image: url("/images/new/search.png");
    background-size: contain;
}
.gdi .mobile_container .order-amount_con.center_desc {
    text-align: center;
    margin: 30px 0;
    line-height: 38px;
}
.gdi .mobile_container .ver_input {
    text-align: center;
    padding: 105px 65px 85px 65px;
}
.gdi .mobile_container .ver_desc {
    text-align: center;
    font-size: 24px;
}
.gdi .mobile_container .basket_desc {
    margin-top: 30px;
    font-size: 24px;
}
.gdi .mobile_container .order_feature_con .order_feature_header {
    color: white;
    text-align: left;
    padding: 26px 40px;
    font-weight: 400;
}
.gdi .mobile_container .order_feature_con .order_feature_header.primary_header {
    background-color: #3268b0;
}
.gdi .mobile_container .order_feature_con .order_feature_header.yellow_header {
    background-color: #e9911e;
}
.gdi .mobile_container .order_feature_con .order_feature_header.violet_header {
    background-color: #914ed5;
}
.gdi .mobile_container .order_feature_con .info_box5 td > button {
    margin-bottom: 5px;
    line-height: 40px;
    height: 40px;
    width: 60px;
}
.gdi .mobile_container .order_feature_con .info_box5 td {
    padding: 10px 40px;
}
.gdi .mobile_container .order_feature_con .info_box5 td > .order-feature_amount {
    float: right;
    font-weight: 400;
}
.gdi .mobile_container .order_feature_con .order_feature_cardbox {
    padding: 15px;
}
.gdi .mobile_container .order_feature_con .order_feature_cardbox .row .card {
    width: calc((100% - 26px) / 2);
    display: inline-grid;
    margin-right: 20px;
    padding: 0;
    /*background: #ffffff;*/
    margin-top: 10px;
}
/*.gdi .mobile_container .order_feature_con .order_feature_cardbox .row .card:nth-child(2) {*/
/*    margin-right: 0;*/
/*}*/
.gdi .mobile_container .order_feature_con .order_feature_cardbox .row .card .card-img {
    background: #f1f1f1;
}
.gdi .mobile_container .order_feature_con .order_feature_cardbox .row .card .card-detail {
    padding: 30px 0;
    text-align: center;
}
.gdi .mobile_container .order_feature_con .order_feature_cardbox .row .card .card-detail p:nth-child(2),
.gdi .mobile_container .order_feature_con .order_feature_cardbox .row .card .card-detail p:nth-child(3) {
    margin-top: 15px;
}
.gdi .mobile_container .order_feature_con .order_feature_cardbox .row .card .card-detail button {
    font-size: 16px;
    width: 60px;
    height: 40px;
    line-height: 30px;
    margin-top: 20px;
}

.f_s_16 {
    font-size: 16px !important;
    font-weight: 300 !important;
}
.f_s_16 td {
    font-size: 16px !important;
    font-weight: 300 !important;
}
.f_s_16 td span {
    font-size: 16px !important;
}
.f_s_16 td select {
    font-size: 16px !important;
}
.order-basket_subtitle {
    font-size: 20px !important;
}
.responsive_box {
    font-size: 20px !important;
}
.responsive_box label {
    font-size: 20px !important;
}

.gdi .responsive_box {
    width: 100%;
}
.gdi .responsive_box .top {
    border-top: 2px solid #363636;
}
.gdi .responsive_box th,
.gdi .responsive_box td {
    border: 1px solid #dbdbdb;
}
.gdi .responsive_box th {
    text-align: left;
    color: #464646;
    background-color: #f7f7f7;
    font-weight: 500;
    padding: 10px;
}
.gdi .responsive_box td {
    overflow: hidden;
    line-height: 37px;
}
.gdi .responsive_box td > p {
    line-height: 33px;
    margin-top: 3px;
}
.gdi .responsive_box button,
.gdi .responsive_box input[type="text"],
.gdi .responsive_box input[type="password"],
.gdi .responsive_box select {
    line-height: 35px;
    height: 35px;
    color: #555555;
    width: 100%;
}
.gdi .responsive_box .required:after {
    margin-left: 5px;
}
.gdi .responsive_box input[type="radio"] + label {
    line-height: 47px;
    padding-left: 47px;
}
.gdi .responsive_box input[type="radio"] + label {
    display: inline-block;
    width: 100%;
    background: none !important
}
.gdi .responsive_box input[type="radio"] + label:before {
    width: 35px;
    height: 35px;
    top: 7px;
}
.gdi .responsive_box.has_input td {
    padding: 15px 25px;
}
.gdi .responsive_box.has_input textarea {
    height: 250px;
}
/*mobile order*/

/*shine*/.gdi .square_blue:before {
    content: "";
    width: 4px;
    height: 4px;
    background-color: #0367c8;
    position: absolute;
    margin-top: 13px;
    margin-left: -10px;
}

@media (max-width: 768px) {.gdi .bri_btn {
        font-size: 14px;
        line-height: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
.gdi .btn_box2 .btn {
        height: 34px;
        line-height: 34px;
        font-size: 13px;
        margin-right: 5px;
        margin-left: 0;
        width: auto;
        padding: 0 15px;
    }
}

canvas {
    max-width: 100%;
    max-height: 100%;
}

/*-----------------------------------------*/
/* 복사할 원본 */
/*-----------------------------------------*/.gdi .clone_li {
    display: none;
}

/*-----------------------------------------*/
/*gb_tyle*/
/*-----------------------------------------*/.gdi .gb_sub_title {
    font-size: 20px;
    line-height: 1;
    color: #555555;
    margin-bottom: 30px;
}

@media (max-width: 768px) {.gdi .gb_sub_title {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/*---------------------------------------------------------------------------*/

/*약관*/.gdi .agree_content_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 99999;
    display: none;
}
.gdi .agree_content {
    position: fixed;
    width: 90%;
    max-width: 1200px;
    top: 50%;
    left: 50%;
    background-color: #f5f5f5;
    padding: 50px;
    box-shadow: 5px 5px 10px;
    display: none;
    z-index: 999999;
    height: 80vh;
    margin-top: calc(80vh / 2 * -1);
    margin-left: -600px;
}
.gdi .agree_content .block {
    height: 100%;
}
.gdi .agree_content .icon_img {
    margin-right: 10px;
    vertical-align: sub;
}
.gdi .agree_content .close_btn {
    float: right;
    cursor: pointer;
    color: red;
}
.gdi .agree_content .row_10 {
    font-size: 25px;
    color: #252525;
    margin-bottom: 35px;
}
.gdi .agree_content .row_20 {
    border: 1px solid #dbdbdb;
    background-color: #ffffff;
    padding: 30px;
    font-size: 15px;
    line-height: 24px;
    overflow-y: scroll;
    color: #252525;
    height: calc(100% - 72px);
    white-space: pre-line;
}

@media (max-width: 1200px) {.gdi .agree_content {
        margin-left: calc(90% / 2 * -1);
    }
}

@media (max-width: 768px) {.gdi .agree_content {
        padding: 20px;
    }
.gdi .agree_content .row_10 {
        font-size: 18px;
        margin-bottom: 15px;
    }
.gdi .agree_content .icon_img,
.gdi .agree_content .close_btn img {
        height: 20px;
    }
.gdi .agree_content .row_20 {
        height: calc(100% - 36px);
        padding: 10px;
        font-size: 13px;
        line-height: 20px;
    }
}
.gdi .inline-block {
    display: inline-block;
}
.gdi .float_left {
    float: left;
}

/*******************************************************/.gdi .tab_wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-bottom: 40px;
}
.gdi .tab_wrap:after {
    content: "";
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid #0367c8;
}
.gdi .tab_wrap .tabs {
    float: left;
}
.gdi .tab_wrap .tabs:nth-child(n + 2) {
    margin-left: -1px;
}
.gdi .tab_wrap .tabs a {
    display: block;
    width: 160px;
    border-right: 1px solid #d7d7d7;
    border-top: 1px solid #d7d7d7;
    border-left: 1px solid #d7d7d7;
    text-align: center;
    font-size: 15px;
    color: #636363;
    line-height: 47px;
    position: relative;
    z-index: 2;
    letter-spacing: -1px;
    font-weight: 300;
}
.gdi .tab_wrap.sm .tabs a {
    width: 130px;
    line-height: 46px;
    font-size: 15px;
    font-weight: 200;
}
.gdi .tab_wrap .tabs a.on {
    border: 1px solid #0367c8;
    background: #ffffff;
    color: #2974cc;
    border-bottom: 0;
    z-index: 3;
    font-weight: 400;
    font-size: 15px;
}
.gdi #menu-select {
    display: none;
    width: 100%;
}
@media (max-width: 1200px) {.gdi .tab_wrap.col_2 li {
        width: 50%;
    }
    .gdi .tab_wrap.col_3 li {
        width: 33.333%;
    }
.gdi .tab_wrap.col_4 li {
        width: 25%;
    }
    /*.tab_wrap .tabs a{width: 100%;}*/.gdi .tab_wrap .tabs:nth-child(n + 2) {
        margin-left: 0;
    }
}

@media (max-width: 768px) {.gdi .tab_wrap {
        margin-bottom: 20px;
        background: transparent;
    }
.gdi .tab_wrap .tabs {
        display: none;
    }
.gdi #menu-select {
        display: block;
        z-index: 999;
    }
}


/*mobile order*/
.mobile_header {background: #15b943; color: white}
.mobile_header .btn_menu .btn_icon,
.mobile_header .btn_menu .btn_icon:after,
.mobile_header .btn_menu .btn_icon:before {background-color: white}
.mobile_header .brand .brand_title {color: white; font-size: 30px; font-weight: 600; line-height: 105px;}

.mobile_container input[type="radio"]:checked + label:before {background: url(/images/new/chk_green.png) no-repeat;}
.mobile_container .w80 {margin: 0 auto;padding: 0 20px;}
.mobile_container .info_box5 {margin: 0}
.mobile_container .info_box5 td{font-weight: lighter;padding: 25px;}
.mobile_container .info_box5 td.td_right{text-align: right}
.mobile_container .info_box5 td.td_center{text-align: center}
.mobile_container .info_box5 td .btn{line-height: 55px;height: 55px;width: 55px;}
.mobile_container .info_box5 th{padding: 25px 0;text-align: center}
.mobile_container .info_box5 .bcred, .bcred>th, .bcred>td {background-color: #f9ebeb}
.mobile_container .info_box5 .bcred>th {border-right: 0; font-weight: 400;text-align: left; padding: 25px}
.mobile_container .info_box5 .bcred>td {border-left: 0; text-align: right}
.mobile_container .order-basket_subtitle {padding-top: 40px; padding-bottom: 20px;font-weight: 600;}
.mobile_container .order-basket_subtitle.p60 {padding-top: 60px;}
.mobile_container .order-basket_count {text-align: right; padding: 40px 0;line-height: 65px;}
.gdi .mobile_container .order-basket_count btn_red {height: 40px; line-height: 40px;}
.mobile_container .order-basket_count .order-basket_txt{ display: inline-block;}
.mobile_container .order-basket_count .order-basket_txt .basket_count{display: inline-block; width: 65px; border: 1px solid #dbdbdb; text-align: center;}
.mobile_container .order-basket_count .order-basket_txt .basket_total{display: inline-block; width: 150px; border: 1px solid #dbdbdb; margin-left: 5px; padding-right: 20px; color:#e55d5d;}
.mobile_container .order-basket_count .order-basket_btn{ display: inline-block; margin-left: 5px;}
.mobile_container .order-basket_count .order-basket_btn button{ padding: 0 5px;margin-bottom:5px;height: 53px}
.mobile_container .order-amount_con {background: #f5f5f5;padding: 30px 0;}
.mobile_container .order-amount_con .order-amount_desc {line-height: 37px;}
.mobile_container .order-amount_con .order-amount_date {font-weight: 400}
.mobile_container .order-amount_con .order-amount_total,
.mobile_container .order-amount_con .order-amount_total>span {font-weight: 300}
.mobile_container .order-searchbox_con {text-align: center; margin: 30px 0}
.mobile_container .order-searchbox_con input {width: 100%; position: relative;}
.mobile_container .order-searchbox_con .order-searchbox_btn {position: absolute; margin-left: -67px; cursor: pointer;border: none !important;}
.mobile_container .order-searchbox_con .order-searchbox_btn:before {content:""; display: inline-block;position: relative; top: 0px;width: 66px; height: 65px;background-image: url("/images/new/search.png");}
.mobile_container .order-amount_con.center_desc {text-align: center; margin: 30px 0;line-height: 38px}
.mobile_container .ver_input {text-align: center;padding: 105px 65px 85px 65px;}
.mobile_container .ver_desc {text-align: center;font-size: 24px}
.mobile_container .basket_desc {margin-top: 30px;font-size: 24px}
.mobile_container .order_feature_con .order_feature_header {color: white;text-align: left;padding: 26px 40px;font-weight: 400;}
.mobile_container .order_feature_con .order_feature_header.primary_header {background-color: #3268b0}
.mobile_container .order_feature_con .order_feature_header.yellow_header {background-color: #e9911e}
.mobile_container .order_feature_con .order_feature_header.violet_header {background-color: #914ed5}
.mobile_container .order_feature_con .info_box5 td>button {margin-bottom: 5px;line-height: 45px;height: 56px;width: 76px;}
.mobile_container .order_feature_con .info_box5 td {padding: 20px 40px}
.mobile_container .order_feature_con .info_box5 td>.order-feature_amount {float: right;font-weight: 400}
.mobile_container .order_feature_con .order_feature_cardbox { padding: 25px 40px;}
.mobile_container .order_feature_con .order_feature_cardbox .row .card {width:calc((100% - 26px) / 2);display: inline-block;margin-right: 20px;padding: 0;/*background: #ffffff;*/}
/*.mobile_container .order_feature_con .order_feature_cardbox .row .card:nth-child(2) {margin-right: 0;}*/
.mobile_container .order_feature_con .order_feature_cardbox .row .card .card-img {background: #f1f1f1;}
.mobile_container .order_feature_con .order_feature_cardbox .row .card .card-detail {padding: 30px 0; text-align: center}
.mobile_container .order_feature_con .order_feature_cardbox .row .card .card-detail p:nth-child(2),
.mobile_container .order_feature_con .order_feature_cardbox .row .card .card-detail p:nth-child(3){margin-top: 15px}
.mobile_container .order_feature_con .order_feature_cardbox .row .card .card-detail button {font-size:27px;width: 76px;height: 55px;line-height: 45px; margin-top: 30px}



.responsive_box{width: 100%;}
.responsive_box .top{border-top: 2px solid #363636;}
.responsive_box th,.responsive_box td{border: 1px solid #dbdbdb;}
.responsive_box th{text-align: left;color: #464646;background-color: #f7f7f7;font-weight: 500}
.responsive_box td{overflow: hidden; line-height: 37px;}
.responsive_box td > p {line-height: 33px;margin-top: 3px;}
.responsive_box button,
.responsive_box input[type=text],
.responsive_box input[type=password],
.responsive_box select{line-height: 65px;height: 35px;color: #555555; width: 100%;}
.responsive_box .required:after{margin-left: 5px;}
.responsive_box input[type="radio"] + label { line-height: 47px;padding-left: 47px;}
.responsive_box input[type="radio"] + label {display: inline-block;width: 100%;}
.responsive_box input[type="radio"] + label:before {width: 35px; height: 35px; top: 7px;}
.responsive_box.has_input td { padding: 15px 25px;}
.responsive_box.has_input textarea { height: 250px}
/*mobile order*/

/* smart view page css Start*/
.smart {
    margin: auto;
    padding: 10px;
    border: 0;
    outline: 0;
    max-width: 750px;
    color: #000000;
}
.smart .desc {text-align: center;margin: 10px 0;line-height: 20px;background: #f5f5f5;padding: 15px 0; border: 1px solid #ddd; }
.smart .desc p.date {font-weight: bold;}
.smart .c_head {
    color: white;
    text-align: left;
    padding: 15px 40px;
    font-weight: 400;
}
.smart .info_box td {padding: 10px 20px}
.smart .info_box td>.order-feature_amount {float: right;font-weight: 400}
.smart .info_box td {
    border: none !important;
}
.smart .info_box td.t_gray {
    background-color: #e9e9e94d;
}
.smart .info_box td.t_blue {
    background-color: #33bfca3b;
}
.smart .smart_box {
    padding: 25px 40px;
}
.smart .row .card {
    width: calc((100% - 26px) / 4);
    display: inline-grid;
    /*margin-right: 20px;*/
    padding: 8px;
    background: #ffffff;
    /*text-align:center;*/
}
/*.smart .row .card:nth-child(1)*/
/*.smart .row .card:nth-child(5)*/
/*.smart .row .card:nth-child(9) {*/
/*    margin-left: 10px !important;*/
/*}*/

.w4_1 {
    width: calc(100%/ 4) !important;
}
.w4W_1 {
    width: calc(100% / 4) !important;
}
.w2_1 {
    width: calc(100% / 2) !important;
}
.w2W_1 {
    width: calc(100% / 2) !important;
}
.w1_1 {
    width: 100% !important;
}
.w1W_1 {
    width: 50% !important;
}
.w3_1 {
    width: calc(100% / 3 ) !important;
}
.w3_2 {
    width: calc(100% / 3 * 2) !important;
}
.w3W_1 {
    width: calc(100% / 3) !important;
}

.w4_order {
    width: calc((100% - 30px)/ 4) !important;
    margin-right: 10px !important;

}
.w4_order p{
    font-size: 12px !important;
}
.line_middle{
    content:"\00a0\00a0\00a0\00a0\00a0";
    text-decoration:line-through;
}
.w4W_order {
    width: calc((100% - 30px)/ 4) !important;
    margin-right: 10px !important;
}
.w2_order {
    width: calc((100% - 20px)/ 2) !important;
}
.w2W_order {
    width: calc((100% - 20px)/ 2) !important;
}
.w2W_order:last-child{
    margin-right: 0 !important;
}
.w2_order:last-child{
    margin-right: 0 !important;
}
.w1_order {
    width: 100% !important;
}
.w1W_order {
    width: 100% !important;
}
.w3_order {
    width: calc((100% - 40px)/ 3) !important;
}
.w3W_order {
    width: calc((100% - 40px) / 3) !important;
}
.w4W_order:last-child{
    margin-right: 0 !important;
}
.w4_order:last-child{
    margin-right: 0 !important;
}
.w3W_order:last-child{
    margin-right: 0 !important;
}
.w3_order:last-child{
    margin-right: 0 !important;
}
.w2_order:last-child{
    margin-right: 0 !important;
}
.w1_order:last-child {
    margin-right: 0 !important;
}
.w1_order:last-child {
    margin-right: 0 !important;
}
.smart .row .card .card-img {
    background: #f1f1f1;
    
}
.smart_edit_textarea {
    font-weight: 400;
    font-size: 16px !important;
    color: #000 !important;
}


.smart .row .card .card-detail {
    padding: 30px 0;
    text-align: center;
}

/* smart view page css End*/
.search_box {
    display: none;
    position: absolute;
    width: 372px;
    height: 300px;
    background-color: #fff;
    z-index: 99;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid #ddd;
    overflow-Y: scroll;
}
.m_span {
    text-align: left;
    padding: 0 20px;
    width: 100%;
    cursor: pointer;
}
.m_span label {
    cursor: pointer;
}
.m_span:hover {
    background: #f5f5f5;
}
.acv_span {
    background: #dddddd;
}
.f_right {
    float: right;
}


/*  smart request page css start */
.custom_table {
    margin-top: 20px;
    text-align: center;
}
.custom_table thead > tr > th{
    background-color: unset !important;
    text-align: center;
    border-bottom: 1px solid #ccc;
}
table.custom_table tr > td{
    border-bottom: 1px solid #ccc;
}
.item6_txt {
    width: 515px;
}

.item6_txt_btn {
    height: 34px;
    line-height: 26px;
    width: 50px;
    margin: 10px 0px 0px;
    align-self: flex-end;
    cursor: pointer;
}

.image_request .lst_box {
	display: flex;
	flex-wrap : wrap;
	margin: 0 -10px;
}
.image_request .lst_box > div {
	flex: 0 0 25%;
	margin: 0 10px 20px 10px;
}

.image_request .top-img {
	margin: 20px 0;
}

.image_request .top-img .ttl {
	margin-bottom: 10px;
}

.image_request .goods_card {
	display: flex;
	margin:10px 10px 10px -10px;
}

.image_request .goods_card>div {
	margin: 0 10px;
	min-height: 200px;
	width: 20%;
}

.image_request .goods_card>div:last-child {
	margin-right: -10px;
}

.image_request .goods_card .goods_img {
	border: 1px solid #c8c8c8;
	max-width: 250px;
}

.image_request .goods_detail {
	width: 100%;
	margin: 10px 0;
}

.image_request .goods_detail input {
	width: 100%;
	display: block;
	margin-bottom: 5px;
}

.image_request .goods_detail .btn_clear {
	width: 100%;
	margin: 0;
	display: block;
	padding: 10px 0;
	text-align: center;
}

.image_request .goods_cont {
	clear: both;
	padding: 20px 0;
}
/*  smart request page css end */	


.scroll-x {
	overflow-x: auto;
}

footer .hr_40 {
    margin-top: 20px; 
    margin-bottom: 20px; 
    border: 0; 
    border-top: 1px solid #eee;
    height: auto !important;
}

.sch_priod .btn_calender {
	margin-top: -2px;
	
}
.sch_priod .sch_input {
	margin-right: 0 !important;
}

.sch_box2 .dt_symbol {
	margin: 0 1px;
}
.sch_box_responsive .dt_symbol {
	margin: 0 1px;
}

.btn_s_grey.lrg {
	width: 46px;
	height: 44px;
	line-height: 20px;
}

.t-left {
	text-align: left !important;
}

.inline {
	display: inline-block !important;
}

.sms_frm .b_cnt {
	width: calc(100% - 142px);	
	display: flex;
	justify-content: space-between;
}

.sms_frm .b_cnt > div {
	flex: 1 ;
}

.sms_frm .b_cnt .rc_div {
	margin-left: 0;
	max-width: 120px;
	text-align: right;
}

.sms_frm .rc_cnt {
	margin-left: 0;
	max-width: 120px;
}

#divCaptcha > div {
	margin: auto;
}

.pr10 {
	padding-right: 10px !important;
}

.csh_cnt .t1{ 
	width: 135px;
}

.fl_del {
	height: 34px;
	padding: 0 5px;
	display: inline-block;
}
.gdi .file-name {
    max-width: 300px; width: 100%;
}

@media (max-width: 768px) {
	/* 	smart brochure */
	.smart .row .card {
		margin: 5px 0;
		width: 100%;
	}
	
   .gdi .sch_box2 .sfl.type2, .sch_box2 select, .srch_select {
   		width: 100% !important;
   		display: block;
   		margin-bottom: 10px;
   }
   .gdi .sch_box2 .sch_input, .srch_input {
   		width: calc(100% - 56px) !important;
   	}

    .sch_box_responsive .sfl.type2, .sch_box_responsive select, .srch_select {
        width: 100% !important;
        display: block;
        margin-bottom: 10px;
    }
    .sch_box_responsive .sch_input, .srch_input {
        width: calc(100% - 56px) !important;
    }
   	
   	.info_box5 select {
   		width: 100%;
   		margin-bottom: 5px;
   	}
    .gdi .info_box5 select {
        width: 40%;
        margin-bottom: 5px;
    }
    .gdi .file-name {
        width: 50%;
    }
   	
   	.gdi .info_box5 th {
   		padding: 0 5px 0 5px;
        min-width: 54px;
   	}
   	
   	.gdi .info_box5 td {
   		padding: 5px 10px;
   	}
   	
   	.sch_box2 .dt_symbol {
		display: none;	
	}

    .sch_box_responsive .dt_symbol {
		display: none;
	}
	
	.sch_priod .btn_sch {
		float: right;
		display: block;
		margin-right: 8px;
	}
	.mb-block {
		display: block !important;
	}
   	.mb-t-left {
   		text-align: left !important;
   	}
   	.mb-mw-full {
   		max-width: none !important;
   	}
}	

@media (max-width: 500px) { 
	
	.gdi .info_box5 th {
		width: 120px;
	}
}


