/* 스크롤바 */
html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
/* 레이아웃 */
#wrap {
    max-width: 1024px;
    min-height: 100vh;
    margin: 0 auto;
}
/* 헤더 */
#header {
    z-index: 100;
    max-width: 1024px;
    width: 100%;
    border-bottom: 2px solid #dcdcdc;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(5px);
    position: fixed;
}
.header_inner {
    width: 90%;
    padding: 4px 0;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.header_inner a {
    width: max-content;
}
.header_inner div {
    display: flex;
}
.header_inner i {
    padding: 10px;
    color: #555;;
    font-size: 2.4rem;
    vertical-align: middle;
    transition: 0.2s;
}
.header_inner i:hover {
    color: #1F5FFF;
}
.header_inner div a.logon i {
    color: #1F5FFF;
}

/* 컨테이너 */
.inner {
    width: 90%;
    margin: auto;
    min-height: 100vh;
    padding-top: 100px;
    /* padding-top: 180px; */
    padding-bottom: 80px;
    position: relative;
}
h2 {position: relative;}
h2 .title {
    text-align: center;
    font-size: 1.3rem;
    padding-bottom: 12px;
    word-break: keep-all;
}
.con {
    padding-bottom: 40px;
}
.con_title {
    font-size: 1.2rem;
}

.ol-control{display:none;}


/* 공통 */
/* 인풋 공통 */
/* 인풋 관련 알림 */
.input_alert {
    text-align: right;
    position: absolute; top: 16px; right: 8px;
}
.input_alert_bottom {
	text-align: right;
    position: absolute; bottom: -15px; right: 8px;
}
.input_alert_pw {
    font-size: 0.9rem;
    text-align: right;
    margin-top: 12px;
}
/* 메모 */
textarea {
    resize: none;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #999;
}
.input_label {
    /* 선택 타이틀 */
    font-size: 1rem;
    display: block;
    line-height: 1.2;
    margin-bottom: 10px;
    position: relative;
}

.input_label span.unit {
    font-size: 0.8rem;
    color: #888;
}
.input_label p {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.5;
}
.input_wrap:not(:last-child) {
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #aaa;
}
.input_wrap>li:not(.image_preview li) {
    position: relative;
    margin: 12px auto;
    padding: 12px 8px;
}
.input_wrap li .input_wrap li {
    padding: 0;
}
.input_wrap li .input_wrap {
    border-bottom: none;
}
.input_wrap input {
    box-sizing: border-box;
    padding: 12px 8px;
    border-radius: 4px;
    border: 1px solid #999;
}
.input_wrap li input[type="text"]::placeholder {
    color: #aaa;
}
.input_wrap li input[type="password"]::placeholder {
    color: #aaa;
}
.input_wrap li select {
    /* line-height: 1; */
    padding: 12px;
    box-sizing: border-box !important;
    border-radius: 4px;
    border: 1px solid #999;
    background-color: #fff !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(/assets/bnz/common/images/common/option_arrow.svg);
    /* background-image: url(/img/option_arrow.svg); */
    background-position: 90% center;
    background-repeat: no-repeat;
}
.input_wrap li.nodata {}

/* 체크박스 공통 */
input[type="checkbox"] {
    accent-color: #555;
    width: 16px; height: 16px;
    margin-right: 4px;
}
.check_label {
    font-size: 1rem;
    margin-right: 16px;
}
.checkbox_wrap li {
    margin: 20px 0;
    padding: 0 8px;
}
.switch {}
.switch div p {
    font-size: 1rem;
    line-height: 44px;
    margin-right: 12px;
}
.switch div {
    display: inline-flex;
}
.switch input[type="checkbox"] {display: none;}
.switch input[type="checkbox"]:checked + label span {
    border-radius: 50px;
    background: #1F5FFF;
    transition: 0.2s;
}
.switch label span {
    background: #dcdcdc;
    border-radius: 50px;
    width: 60px; height: 24px;
    margin-top: 8px;
    display: inline-block;
    position: relative;
}
.switch label span::after {
    content: ""; display: block; clear: both;
    width: 30px; height: 30px;
    border-radius: 50px;
    background: #aaa;
    position: absolute;
    left: 0; top: 50%; transform: translateY(-50%);
    transition: 0.2s;
}
.switch input[type="checkbox"]:checked + label span {
    background: #0db36e;
}
.switch input[type="checkbox"]:checked + label span::after {
    box-shadow: 2px 2px 3px #dcdcdc;
    left: 30px;
    background: #fff;
    border: 1px solid #dcdcdc;
}

/* 툴팁 */
.tooltip {
    float: right;
    cursor: pointer;
}
.tooltip i {
    font-size: 1.2rem;
    color: #666;
}
.tooltip.on i {
    color: #1F5FFF;;
}

.tooltip_wrap {
    display: none;
    border: 1px solid #ddd;
    border-radius: 12px 0 12px 12px;
    background: #f7faff;
    /* background: rgba(255,255,255,0.95); */
    position: absolute; right: 0; top: 22px;
    box-sizing: border-box;
    padding: 12px;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.2);
    z-index: 1;
    max-width: 80%;
}
.tooltip_img_wrap .tooltip_img {
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 30%;
    float: right;
}
.tooltip_img_wrap .tooltip_img img {
    width: 100%;
}
.tooltip_img_wrap .tooltip_img i {
    padding: 8px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-weight: normal;
    border-radius: 4px 0 4px 0;
    font-size: 1.2rem;
    position: absolute; right: 0; bottom: 0;
}
.tooltip_img_wrap p {
    padding: 0 4px;
    float: left;
    width: 68%;
    word-break: break-all;
    line-height: 1.5;
}

.tooltip_txt_wrap p {
    width: 100%;
    line-height: 1.5;
    word-break: break-all;
    font-size: 0.9rem;
}
.tooltip_txt_wrap p.tooltip_main {
    font-weight: bold;
    color: #666;
}
.tooltip_txt_wrap p.tooltip_sub {
    color: #777;
}

/* 버튼 공통 */
.btn_wrap {
    margin-top: 8px;
}
.btn_wrap li:not(:last-child) {
    margin-right: 4px;
}
.btn_wrap li {
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
    font-size: 1rem;
}
.btn_wrap li a {
    display: block;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
    font-size: 1rem;
    width: 100%; height: 100%;
    padding: 12px;
    /* padding: 20px; */
}
/* 버튼 종류별 */
.btn_cancel {
    border: 1px solid #dcdcdc;
    background: #efefef;
}

.btn_cancel:hover {
    border: 1px solid #ccc;
}
.btn_cancel a {
    color: #999 !important;
}
.btn_submit {
    transition: 0.2s;
}
.btn_more {
    margin-top: 100px !important;
    transition: 0.2s;
}
.btn_more:hover {
    background: #efefef;
    border: 1px solid #ccc;
}
.btn_border {
    border: 1px solid #ccc;
    background: #fff;
    transition: 0.2s;
}
.btn_border:hover {
    background: #efefef;
}
/* 타이틀 옆 */
.btn_title_wrap {
    width: 100%;
    position: absolute; top: -60px;
    justify-content: right;
}

.btn_title_wrap li a {
    border: 1px solid #999;
    padding: 12px 16px;
    border-radius: 2px;
    color: #777;
    transition: 0.2s;
}
.btn_title_wrap li a:hover {
    color: #fff;
    background: #333;
    border: 1px solid #333;
}

.btn_border a {
    color: #555 !important;
}
.btn_close {
    cursor: pointer;
}
.tooltip_wrap .btn_close {
    cursor: pointer;
    color: #999;
    margin-left: 20px;
}
/* 지도 버튼 */
.map {
    border: 1px solid #efefef;
    height: 600px;
    position: relative;
    border-radius: 4px;
}
.btn_map {
    display: flex;
    position: absolute;
    z-index: 1;
}
.btn_map li {
    margin: 2px;
    backdrop-filter: blur(2px);
    background: rgba(255,255,255,0.7);
    box-shadow: 0 1px 3px #bbb;
    border-radius: 4px;
    border: 1px solid #ccc;
}
.btn_map li.active {
    background: rgba(255,255,255,0.9);
}
.btn_map li.active a {
    color: #333;
}
.btn_map li a {
    font-size: 0.9rem;
    text-align: center;
    padding: 10px;
    color: #888;
    display: block;
    border-radius: 4px;
    transition: 0.2s;
}

/* 서브버튼 (인풋 옆에 붙는) */
.btn_sub {
    background: #f3f3f5;
    border: 1px solid #aaa;
    color: #53638b;
    /* background: #bec2cf; */
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
    padding: 20px;
    max-width: 25%;
    max-height: 52px;
    font-size: 1rem;
    float: right;
    transition: 0.2s;
}
.btn_sub:hover {
    border: 1px solid #888;
}
.btn_sub:hover {
}
/* 라디오 */
.radio_wrap {
    display: inline-block;
    position: absolute; right: 8px; top: 10px;
}
.radio_wrap label {
    font-size: 1rem;
}
input[type="radio"] {
    accent-color: #333;
    width: 12px; height: 12px;
    vertical-align: sub;
    margin-right: 4px;
}
/* 파일 */
input[type="file"] {
    cursor: pointer;
    padding: 12px;
    position: relative;
    color: transparent;
}
input[type="file"]::file-selector-button {
    cursor: pointer;
    color: #53638b;
    background: #efefef;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    position: absolute; right: 12px; top: 8px;
}

/* 팝업 */
.popup2 {
    display: none;
    min-width: 280px;
    width: 30%;
    max-height: 80%;
    z-index: 104;
    background: #fff;
    border: 1px solid #efefef;
    backdrop-filter: blur(10px);
    position: fixed;
    left: 50%; top: 10%;
    transform: translateX(-50%);
    padding: 30px;
    border-radius: 4px;
}
.bg_popup2 {
    display: none;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    position: fixed; left: 0; top: 0;
    z-index: 103;
}
.bg_popup {
    display: none;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    position: fixed; left: 0; top: 0;
    z-index: 101;
}
.popup {
    display: none;
    /* min-width:  320px; */
    min-width: 280px;
    width: 90%;
    max-height: 90%;
    z-index: 102;
    background: #fff;
    border: 1px solid #efefef;
    backdrop-filter: blur(10px);
    position: fixed;
    left: 50%; top: 5%;
    transform: translateX(-50%);
    padding: 30px;
    border-radius: 4px;
}
.popup_scroll_wrap {
    height: 450px;
    min-height: 550px;
    max-height: 800px;
    overflow-y: auto;
    padding-bottom: 40px;
}
.popup_title {
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dcdcdc;
    font-size: 1.2rem;
}
.popup_title p {
    font-size: 1.3rem;
}

.popup_title strong {
    display: block;
}

.popup_con_wrap {
    font-size: 1.1rem;
    margin: 20px 0;
}
.popup_con_img_wrap {
    position: relative;
    margin-bottom: 20px;
}
.popup_con_img_wrap img {
    width: 100%;
}
.popup_con_map_wrap {
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    width: 100%; height: 100%;
}
.popup h5 {
    margin: 12px 0;
    font-size: 1.1rem;
}

.tooltip_img_popup {
    
}

/* 슬라이드 버튼 */
.slider_wrap {
    display: flex;
    width: 95%;
    justify-content: space-between;
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
}
.btn_slider {
    cursor: pointer;
    border: 1px solid #dcdcdc;
    padding: 16px 20px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(5px);
    border-radius: 150px;
}

/* 첨부파일 미리보기 */
.image_preview {
    overflow-x: auto;
    justify-content: center;
    padding-right: 20px;
}
.image_preview img {
    width: 170px; height: 100%;
    border-radius: 3px;
}
.image_preview li {
    margin-right: 12px;
    position: relative;
}
.image_preview li span {
    position: absolute; right: 0; top: 0;
    cursor: pointer;
    background: rgba(255,255,255,0.8);
    padding: 12px;
}

/* 데이터 없을 때 */
.nodata {
    font-size: 1rem;
    color: #888;
}
.nodata:not(.statistics_usage p.nodata) {
    display: flex;
    justify-content: center;
}


/* 스타일 */
.w100 {width: 100%;}
.w90 {width: 90%;}
.w80 {width: 80%;}
.w70 {width: 70%;}
.w60 {width: 60%;}
.w50 {width: 50%;}
.w40 {width: 40%;}
.w30 {width: calc(100%/3);}
.w20 {width: 20%;}
.w25 {width: 25%;}
.w10 {width: 10%;}

.df {display: flex;}
.juscenter {justify-content: center;}
.juscsb {justify-content: space-between;}
.dn {display: none;}
.db {display: block;}
.dib {display: inline-block;}

.scroll {overflow: scroll;}
.scroll_auto {overflow: auto;}
.noscroll {overflow: hidden}

.red {color: #ce5446}
.red_bg {background: #E74C3C;}
.blue {color:#1F5FFF}
.blue_bg {background: #1F5FFF;}
.green {color: rgb(13, 179, 110);}
.grey {color: #999;}
.grey_bg {background: #efefef;}
.black_bg {background: #333;}

.fff {color: #fff}