﻿/* 가로사이즈 800px 이하 일때 아래 CSS 적용 / Mobile 용 */
@media (max-width: 1000px) {
    .mobile-hide {
    display: none;
    }
    .nav {
	position: absolute;
	top: 35px;
	left: 5px;
	height: calc(100% - 150px);
	transition: all 500ms;
	z-index: 120;
	}

    .gnbM > div {
    position: absolute;
    top: 3px;
    right: 3px;
    }
    .gnbM > div > div {
    display: inline-block;
    }
    .gnbBtns {
    position: relative;
    }
    .gnbBtns > div {
    display: inline-block;
    height: 30px;
    border-radius: 17px;
    background-color: rgba(0, 0, 0, 0.3);
    }
    .place {
    display: none;
    }
    /* .mobile-wrap{
    position: fixed;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 900;
    box-sizing: content-box;
    background-color:#eff2f8;
    }
    .mobile-header {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #009ae1;
    }
    .mobile-contents {
    flex: auto;
    height: calc(100% - 120px);
    background-color: #eee;
    }
    .mobile-contents > ul {
    height: 100%;
    }
    .mobile-header> div:first-child {
    flex: 0 0 40px;
    }
    .mobile-header > div:nth-child(2) {
    flex: 1;
    }
    .mobile-header > div:last-child {
    flex: 0 0 90px;
    }

    .mobile-header > div > button {
    width: 40px;
    height: 40px;
    cursor: pointer;
    text-indent: -999em;
    border-radius: 5px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    }
    .mobile-header > div * {
    vertical-align: middle;
    }
    .mobile-header > div > button.back {
    background-image: url(../images/svg/back_bk.svg);
    background-size: 30px auto;
    }
    .mobile-header > div > button.search {
    margin-left: 3px;
    background-image: url(../images/svg/search_wh.svg);
    background-size: 25px auto;
    background-color: #939393;
    }
    .mobile-header > div > button.bookmark{
    border: 1px solid #ccc;
    background-image: url(../images/svg/bookmark_gr.svg);
    background-size: 30px auto;
    }
    .mobile-wrap div > input {
    width: 100%;
    height: 40px;
    padding: 10px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    box-sizing: border-box;
    border: 1px solid #CBCBCB;
    border-radius: 5px;
    box-sizing: border-box;
    } */
    .log-list li {
    padding: 10px 10px 10px 58px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    line-height: 1.1em;
    background-image: url(../images/svg/location_gr.svg);
    background-repeat: no-repeat;
    background-size: 24px auto;
    background-position: 30px center;
    background-color: #fff;
    }
    .local-list {
    overflow-y: scroll;
    padding: 0;
    background-color: #fff;
    }
    .local-list li {
    padding: 8px 8px 8px 30px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #efefef;
    }
    .local-list li span.local-tit {
    display: block;
    margin-bottom: 8px;
    padding: 0;
    font-size: 15px;
    color: #2E75B6;
    }
    .local-list li.more {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 5px;
    color: #000;
    font-size: 12px;
     border-top:1px solid #eee;
    background-color: #fff;
    }
    .local-list li > button.bookmark {
    float: left;
    width: 16px;
    height: 16px;
    margin-right: 5px;
    /* border:1px solid #eee; */
    border-radius: 2px;
    background-image:url(../images/svg/bookmark_gr.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    }
    .local-list li > button.bookmark.on {
    background-image:url(../images/svg/bookmark_on.svg);
    }

    /* 배경지도 */
    .mobileContents > ul {
    width: 100%;
    padding: 0 1.0em;
    box-sizing: border-box;
    }
    .mobileContents > ul:last-child {
    border-top: 1px dotted #ccc;
    }
    .mobileContents > ul li {
    /* font-size: 1.7em; */
    line-height: 2.5em;
    }
    .mobileContents > ul li * {
    vertical-align: middle;
    }
    /* ON/OFF 스위치 첵크박스 */
    .mobileContents > ul li > .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin-right: 10px;
    }

    /* Hide default HTML checkbox */
    .mobileContents > ul li > .switch input {
    opacity: 0;
    width: 0;
    height: 0;
    }

    /* The slider */
    .mobileContents > ul li > .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    }
    .mobileContents .slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    -webkit-transition: .2s;
    transition: .2s;
    }
    .mobileContents > ul li > input:checked+.slider {
    background-color: #2196F3;
    }
    .mobileContents > ul li > input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
    }
    /* Rounded sliders */
    .mobileContents > ul li > .slider.round {
    border-radius: 20px;
    }
    .mobileContents > ul li > .slider.round:before {
    border-radius: 50%;
    }

    /* /// TIMEBAR /// */
    .timebar-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    align-items: center;
    z-index: 100;
    }
    .timebar-wrap > div {
    padding-top: 3px;
/*     text-align: left; */
/*     box-shadow: 1px 1px 1px #999; */
/*     border: 1px solid #ccc; */
/*     box-sizing: border-box; */
    background-color: #fff;
    }
    .timebar-wrap.selected .past-wrap {
    display: block;
    box-sizing: border-box;
    }
    .timebar {
    display: flex;
    align-items: center;
    }
    .timebar>div:first-child {
    flex: 0 0 auto;
    border-right: 1px solid #eee;
    }
    .timebar>div:nth-child(2) {
    flex: 0 0 auto;
    }
    .timebar>div:nth-child(3) {
    flex: 1 1 auto;
    padding: 0 5px;
    }
    .timebar>div:last-child {
    flex: 0 0 60px;
    border-left: 1px solid #eee;
    }
    .timebar * {
    vertical-align: middle;
    }
    .timebar div>span {
    display: block;
    font-size: 0.95em;
    line-height: 1.3em;
    }
    .timebar div>select {
    padding: 3px;
    background-color: #fff;
    }
    .timebar-select {
    width: 77px;
    }
    .timebar .date {
    display: inline-block;
    width: 50px;
    margin-left: 5px;
    }
    .timebar .date-time {
    display: inline-block;
    width: 50px;
    }
    .timebar-select {
    display: inline-block;
    width: 20px;
    }
    .timebar div>span.time {
    font-weight: bold;
    font-size: 1em;
    }
    .timebar input.range {
    width: 100%;
    }
    
    .timebar div > .controlWrap {
    position: relative;
    padding-top: 15px;
    }
    .timebar .controler {
    position: absolute;
    top: 0;
    width: 18px;
    height: 15px;
    text-indent: -999em;
    background: url(../images/ico.png) no-repeat 0 -170px;
    }
    button.interval {
    padding: 3px 10px;
    font-size: 1.0em;
    color: #222;
    border-radius: 2px;
    background-color: #ddd;
    }
    button.interval.on {
    color: #fff;
    background-color: #006fe8;
    }
    
    
    /* 과거자료 검색 */
    .timebar-past > button {
    float: left;
    width: 40px;
    height: 40px;
    margin: -45px 0 0 5px;
    text-indent: -999em;
    background-color: transparent;
    background-image: url(../images/past_bk.svg);
    background-repeat: no-repeat;
    background-position: center center;
/*     box-shadow: 1px 1px 1px #999; */
    border: 1px solid #ccc;
    background-color: #fff;
    }
    button.btn-past {
    width: 30px;
    height: 30px;
    border: 1px sollid #555;
    background: #fff url(../images/svg/past_bk.svg) no-repeat center center;
    }
    .past-wrap {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 80px;
    align-items: center;
    padding: 7px 10px 0 10px;
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.9);
    }
    .past-wrap * {
    vertical-align: middle;
    }
    .past-wrap input {
    padding: 5px 5px 5px 40px;
    width:50%;
    color: #fff;
    font-size: 13px;
    border: none;
    border-bottom: 2px solid #fff;
    background-color: transparent;
    background-image: url(../images/svg/past_wh.svg);
    background-repeat: no-repeat;
    background-position: center -30px center;
    }
    .past-wrap > button {
    width: 30px;
    height: 30px;
    text-indent: -999em;
    border-radius: 5px;
    }
    .past-wrap > button.search {
    background: #555 url(../images/svg/search_wh.svg) no-repeat center center;
    }
    .past-wrap > button.close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent url(../images/svg/close_wh.svg) no-repeat center center;
    }
    .past-wrap p {
    margin-top: 5px;
    font-weight: 100;
    font-size: 12px;
    }
    
    /* intro */
    .introWrap {
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    }
    .introCenterWrap {
    position: absolute;
    z-index: 100;
    bottom: 20%;
    right: 10%;
    }
    .introWrap .introLogo-ko {
    display: none !important;
    width: 170px;
    height: 125px;
    margin: 0 auto;
    text-indent: -999em;
    background: url(../images/intro/intro_logo.png) no-repeat 0 0;
    background-size: 100% auto;
    }
    .introWrap .introLogo-en {
    display: none !important;
    width: 170px;
    height: 125px;
    margin: 0 auto;
    text-indent: -999em;
    background: url(../images/intro_en/intro_logo.png) no-repeat 0 0;
    background-size: 100% auto;
    }
    .introBtn {
    display: flex;
    width: 120px;
    }
    .introBtn > button {
    flex: auto;
    margin: 5px 1px;
    padding: 10px 0;
    font-size: 1.0em;
    font-weight: bold;
    border-radius: 20px;
    text-align: center;
    background-color: #2196F3;
    color: white;
    }
    .introWrap .introLayer-ko {
    position: absolute;
    top: 45px;
    left: 5px;
    width: 360px;
    height: 500px;
    text-indent: -999em;
    background: url(../images/intro/left.png) no-repeat 0 0;
    background-size: 95% auto;
    }
    .introWrap .introLayer-en {
    position: absolute;
    top: 45px;
    left: 5px;
    width: 360px;
    height: 500px;
    text-indent: -999em;
    background: url(../images/intro_en/left.png) no-repeat 0 0;
    background-size: 95% auto;
    }
    .introWrap .introGnb-ko {
    display: none !important;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50%;
    height: 486px;
    text-indent: -999em;
    background: url(../images/intro/right.png) no-repeat 0 0;
    background-size: contain;
    }
    .introWrap .introGnb-en {
    display: none !important;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50%;
    height: 486px;
    text-indent: -999em;
    background: url(../images/intro_en/right.png) no-repeat 0 0;
    background-size: contain;
    }
    .introWrap .introTime-ko {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    width: 100%;
    height: 120px;
    text-indent: -999em;
    background: url(../images/intro/timebar.png) no-repeat 0 0;
    background-size: contain;
    background-position: center;
    }
    .introWrap .introTime-en {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    width: 100%;
    height: 120px;
    text-indent: -999em;
    background: url(../images/intro_en/timebar.png) no-repeat 0 0;
    background-size: contain;
    background-position: center;
    }
    .introWrap .introCtrl-ko {
    display: none !important;
    position: absolute;
    bottom : 5px;
    right: 0px;
    width: 188px;
    height: 150px;
    text-indent: -999em;
    background: url(../images/intro/ctrl.png) no-repeat 0 0;
    background-size: 95% auto;
    }
    .introWrap .introCtrl-en {
    display: none !important;
    position: absolute;
    bottom : 5px;
    right: 5px;
    width: 194px;
    height: 150px;
    text-indent: -999em;
    background: url(../images/intro_en/ctrl.png) no-repeat 0 0;
    background-size: 100% auto;
    }

    .helpWrap {
    position: fixed;
    /* width: 1000px; */
    height: calc(100% - 50px);
    margin: 10px auto;
    color: #fff;
    z-index: 9998;
    }
    .helpContents {
    height: calc(100% - 90px);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px;
    line-height: 1.7em;
    z-index: 9999;
    }
    .help-group {
    margin-bottom: 30px;
    padding: 0 0 30px 0;
    border-bottom: 1px dotted #555;
    }
    .help-group > p {
    margin-bottom: 20px;
    }
    .help-tit {
    }
    .help-tit > button {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 30px;
    height: 30px;
    text-indent: -999em;
    background: url(../images/svg/x_wh.svg) no-repeat center center;
    }
    .help-sys > ul {
    margin-top: 10px;
    }
    .help-tit > ul {
    margin-left: 10px;
    }
    .help-tit > ul li {
    display: inline-block;
    margin: 0 -2px;
    padding: 5px 10px;
    cursor: pointer;
    color: #fff;
    text-align: center;
    border: 1px solid #fff;
    }
    .help-tit > ul li.on {
    color: #333;
    background-color: #fff;
    }

    .help-tab {
    margin: 5px 0 10px;
    }
    .help-tab li {
    display: inline-block;
    /* min-width: 70px; */
    padding: 5px 10px;
    cursor: pointer;
    }
    .help-tab li a {
    padding: 5px 0;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    }

    .h2-help {
    display: inline-block;
    padding: 5px 7px;
    color: #222;
    font-size: 20px;
    margin-bottom: 20px;
    border-radius: 3px;
    background-color: #fff;
    }
    .h3-help {
    display: block;
    margin-bottom: 10px;
    padding: 3px 0 3px 10px;
    font-size: 16px;
    font-weight: 700;
    background: url(../images/help/bullet_h3.png) no-repeat 0 10px;
    }

    .help-list  label {
    display: inline-block;
    margin-right: 12px;
    border-bottom: 1px solid #ddd;
    }
    .help-list {
    margin-bottom: 30px;
    }
    .help-list li {
    padding: 3px 0 3px 10px;
    background: url(../images/help/bullet_a.png) no-repeat 0 13px;
    }
    .help-list-sub {
    margin:0 0 30px 10px;
    }
    .help-list-sub li {
    padding: 3px 0 3px 7px;
    background-image: none;
    background: url(../images/help/bullet_b.png) no-repeat 0 12px;
    }
    .help-list-sub li * {
    vertical-align: middle;
    }

    .img-group {
    overflow: hidden;
    clear: left;
    padding-bottom: 30px;
    }
    .img-left {
    /* float: left;
    margin-right: 20px; */

    }
    .img-left > img {
    width: 100%;
    }
    .img-left > span {
    display: block;
    padding: 3px 7px;
    background-color: #000;
    }

    .help-table {
    width: 100%;
    }
    .help-table * {
    color: #fff;
    }
    .help-table th {
    padding: 3px 10px;
    color: #333;
    background-color: #fff;
    }
    .help-table tbody tr > th {
    color: #fff;
    background-color: transparent;
    }
    .help-table tbody tr > th * {
    vertical-align: middle;
    }
    .help-table th, .help-table td {
    padding: 3px 10px;
    border: 1px solid #fff;
    }

    .help-tag {
    display: inline-block;
    padding: 2px 5px;
    font-size: 12px;
    border-radius: 3px;
    line-height: 1.3em;
    background-color: tomato;
    }
    span.sign {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    }
    span.concern {
    background-color: #0099ff;
    }
    span.care {
    background-color: #ffff00;
    }
    span.warn {
    background-color: #ffcc00;
    }
    span.danger {
    background-color: #ff0000;
    }

    span.fst {
    background-color: #ffff00;
    }
    span.snd {
    background-color: #ffcc00;
    }
    span.trd {
    background-color: #ff6600;
    }

    /* 시계열표 / 모바일 */
    .title {
    overflow-x: auto;
    /* height: 20px; */
    padding: 5px;
    font-family: nsrr;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #e2e2e2;
    background-color: #eef2f7;
    white-space: nowrap;
    }
    .title > button.close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 30px;
    height: 30px;
    text-indent: -999em;
    border-radius: 0;
    background: url(../images/svg/x_bk.svg) no-repeat center;
    background-color: #eef2f7;
    }
    .item-title-sea {
    margin-top: -2px;
    }

    .slide {
    height: fit-content;
    flex: 1 1 auto;
    /* padding: 10px 0px; */
    overflow-x: scroll;
    overflow-y: hidden;
    }
    .slide-data {
    position: relative;
    height: 305px;
    /*padding: 5px 10px;*/
    margin-bottom: 3px;
    user-select: none;
    white-space: nowrap;
    }
    .slide-data.winter {
    height: 325px;
    }
    .slide-data > li {
    float: left;
    }
    .itemWrap {
    display: flex;
    }
    .itemWrap.sea {
    height: 175px;
    }
    .item-sea {
    width: 55px;
    }
    .item-sea div {
    padding: 2px 0px;
    }
    .item-title {
    flex: 0 0 85px;
    padding-right: 1px;
    text-align: right;
    display: inline-block;
    font-size: 0.9em;
    }
    .item-title-sea p {
    margin: 10px 0;
    /*padding: 6px 0px;*/
    }
    .item-title.item-title-sea >  p.WSDtitle {
        margin-top: 40px;
    }
    .item.sea p.vec {
    margin-top: 3px;
    }

    /* 1시간 단기 유의파고 */
    .dfs.time.sea {
        margin-top: 0px;
    }
    .dfs.wav.sea {
        margin: 6px 0px;
    }
    .dfs.vec.sea {
        margin: 5px 0px;
    }


    .item-title-rww p {
    height: 34px;
    margin: -11px 0px;
    }
    .item-title-rww p.blank {
    height: 56px;
    }
    .item-rww div > p {
    height: 22px;
    }
    .item-title-land .WCTtitle {
    margin-bottom: 2px;
    }
    .item-title-land .WSDtitle {
    height: 40px;
    margin-top: 12px;
    }
    .item-title-land .SNOtitle {
    margin: 1px;
    }
    .item-title-land .PCPtitle {
    margin: 1px;
    }
    .item-title-land .PTYtitle {
    height: 40px;
    margin-top: 3px;
    }
    .item-title-land .REHtitle {
    margin-top: 12px;
    }
    /*.item-title-land .POPtitle {*/
    /*    margin-top: 10px;*/
    /*}*/
    .item-land {
    width: 55px;
    }

    .item {
    /* float: left; */
    position: relative;
    display: inline-block;
    /* margin: -12px 0px; */
    text-align: center;
    }
    .elementWrap > div.basic {
    height: 20px;
    /* margin: 5px 0px; */
    }
    .item-title-land .TMPtitle {
    margin-top: 5px;
    }
    .item img {
    width: 30px;
    height: 30px;
    margin: -9px 0px;
    }
    p.vec img {
    margin: 0px;
    }
    .item.land p.vec {
    margin-top: -2px;
    }
    .item.land p.wsd {
    margin-top: 8px;
    }
    .item.land p.reh {
    margin-top: 2px;
    }
    p.sky img {
    width: 25px;
    height: 25px;
    }
    .nbsp {
    margin: 9px;
    }


    /* 가까운 AWS */
    .closestAws {
    display: none;
    }
    .closestAws.mobile {
    display: inline-block;
    margin-left: 10px;
    }
    .title > div {
    overflow: hidden;
    }
    p.VEC img {
    margin: -10px 0px 0px 0px;
    }
    /* 가까운 관측소 */
    .closestAws {
    border-left: 1px solid #e2e2e2;
    padding: 7px;
    flex: 0 0 120px;
    min-width: 130px;
    }
    .closestAws.sea-aws {
    height: 175px;
    }
    /* 공유 버튼 */
    .gnb-share {
    display: none !important;
    }

    /* 지점 / 관측 팝업 */
    #obsPopup {
        position: absolute;
        top: 30%;
        left: 50%;
        margin-left: -90px;
        width: auto;
        min-width: 180px;
        height: auto;
        padding: 10px;
        text-align: left;
        box-shadow: 2px 2px 2px #999;
        border-radius: 5px;
        background-color: #fff;
    }
    #obsPopup div.basic {
        text-align: center;
        padding-top: 5px;
        margin-bottom: 5px;
        padding-bottom: 5px;
        color: #fff;
        background-color: rgba(68,65,65,0.84);
    }
    #obsPopup p.ko {
        padding-left: 20px;
        font-size: 1.4em;
        font-weight: 400;
        font-family: 'nsrr';
    }
    #obsPopup p.coord {
        font-size: 0.8em;
        color: #eee;
    }
    #obsPopup p.tm {
        font-size: 0.8em;
        text-align: left;
        padding: 5px;
        color: #000;
        text-align: center;
    }
    #obsPopup #close {
        float: right;
        width: 20px;
        height: 20px;
        text-indent: -999em;
        background: url(../images/svg/x_wh.svg) no-repeat center center;
        background-size: cover;
    }
    #obsPopup table {
        display: inline-block;
        width: calc(100% - 10px);
        background-color: #e5e5e5;
        padding: 5px 0px 0px 10px;
    }
    #obsPopup tbody {
        overflow-y:scroll;
        float:left;
        width: 100%;
        max-height:190px;
        -webkit-overflow-scrolling: touch;
    }
    #obsPopup th {
        font-size: 0.9em;
        color: #000;
        text-align: left;
        font-weight: normal;
        padding-right: 10px;
    }
    #obsPopup tr td {
        font-size: 0.9em;
        padding: 5px;
        color: #000;
    }
    #obsPopup td {
        color: #000;
    }
    #obsPopup th,td * {
        vertical-align: middle;
    }
    #obsPopup button.obsBtn {
        width: 100%;
        padding: 5px;
        text-align: center;
        color: #fff;
        border-radius: 5px;
        border: none;
        background-color: #db6200;
    }
    /* #obsSlide{
        overflow: auto;
        background-color: #e5e5e5;;
    } */
    /* 스크롤바 스타일 */
    /* width */
    ::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background-color: #F5F5F5;
    }
    /* Track */
    ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
    }
    /* Handle */
    ::-webkit-scrollbar-thumb {
    background: #888;
    }
    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
    background: #333;
    }
    .scroll-x {
    overflow-x: auto;
    overflow-y: hidden;
    }
    .scroll-y {
    overflow-x: hidden;
    overflow-y: auto;
    }

    /* LAYER / 설정 */
    .layer-setup {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0px;
    /* border-radius: 5px; */
    background-color: rgba(255, 255, 255, 1.0);
    /* box-shadow: 1px 1px 1px #000; */
    z-index: 149;
    }
    .layer-setup > ul {
    -ms-user-select: none;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    }
    .layer-setup > ul li {
    padding: 5px;
    font-size: 20px;
    line-height: 1.7em;
    }
    .layer-setup > ul li * {
    vertical-align: middle;
    }
    .layer-setup > ul li > label {
    cursor: pointer;
    }
    .layer-setup > ul.dline {
    margin-top: 7px;
    padding-top: 5px;
    border-top: 1px dotted #ccc;
    }

    .layer-setup .setup-btn {
    display: flex;
    gap: 5px;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    text-align: center;
    box-sizing: border-box;
    }
    .layer-setup .setup-btn > button {
    flex: auto;
    }

/*     button.text-btn { */
/*     display: inline-block; */
/*     padding: 20px; */
/*     line-height: 3px; */
/*     font-size: 15px; */
/*     border-radius: 20px; */
/*     } */
/*     .layer-setup button.close { */
/*     flex: 0 0 100px; */
/*     border-radius: 25px; */
/*     font-size: 15px; */
/*     } */

    .setup-contents {
/*     overflow-y: auto; */
    height: 100%;
    }
    .setup-contents > label {
    display: inline-block;
    margin: 10px;
    font-size: 20px;
    }
    .setup-contents label * {
    vertical-align:middle;
    }
    .setup-contents ul {
    padding-left: 40px;
    background-color: #eee;
    }
    .setup-contents ul li * {
    vertical-align:middle;
    }
    .setup-contents > div {
    height: 100%;
    }
    .setup-scroll {
    overflow-y:scroll;
    height: calc(100% - 140px);
    margin: 20px;
    }
    .setup-contents span {
    display: inline-block;
    margin-bottom:5px;
    }
    .setup-contents span label {
    display: inline-block;
    margin-right:10px;
    width: 90px;
    }
/*     .setup-contents span label.en { */
/*     width: 90px; 바람설정/밀도,두께,길이 영문제목 */
/*     } */
    .setup-contents div h4 {
    margin: 6px 0 16px 0;
/*     padding-bottom: 15px; */
    /* font-size: 20px; */
    font-weight: bold;
    text-align: left;
    }
    /* .setup-contents  div h4::before {
    content: '• ';
    } */
    .setup-contents .setup-scroll button {
    display: inline-block;
    width: 20px;
    height: 20px;
    }
    .setup-contents button.folder-on {
    background-color: #ffc600;
    }
    .setup-section {
    flex: auto;
    overflow-y: auto;
    height: calc( 100% - 140px);
    padding: 15px 8px;
    /* font-size: 23px; */
    }
    .setup-section-lang {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #ccc;
    }
    .setup-section-lang > label {
    /* display: inline-block; */
    min-width: 120px;
    margin-right: 8px;
    }
    .setup-section-ws {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #ccc;
    }
    .setup-section-ws > label {
    /* display: inline-block; */
    min-width: 120px;
    margin-right: 8px;
    }
    .setup-section-wd {
    margin-bottom: 20px;
    }
    .setup-section-wd .btn-reset {
    margin-left: 5px;
    padding: 3px 7px;
    font-size: 14px;
    border: 1px solid #d9d9d9;
    background-color: #fff;
    }
    .setup-section-wd h4 {
    display: inline-block;
    }

    .range-wrap {
    display: flex;
    gap: 10px;
    margin: 0 0 20px;
    }
    .range-wrap > div:first-child {
    flex:  0 0 60px;
    text-align: center;
    }
    .range-wrap > div:last-child {
    flex:  0 0 40px;
    }
    .range-wrap div.input-range {
    flex: 1 1 auto;
    }
    .range-wrap div.input-range > input {
    width: 100%;
    }

    .basic-wrap .setup-btn > button.save {
    /* width: calc(100% - 65px); */
    width: 100%;
    }
    .menu-wrap .setup-btn > button.save {
    width: calc(100% - 150px);
    }
    .menu-wrap .setup-btn > button.default {
    width: 80px;
    }
    .setup-btn > button.close {
    display:inline-block;
    height: 25px;
    min-width: 70px;
    padding: 15px 0;
    line-height: 0em;
    font-size: 1.2em;
    border-radius: 20px;
    color: #888;
    background: #fff;
    border: 1px solid #ccc;
    width: 60px;
    }

    .setup-layer-list li label {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    font-size: 18px;
    cursor: pointer;
    }
    .setup-scroll div > label {
    display: inline-block;
    padding: 7px 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
    }
    .tabs {
    display: flex;
    padding-bottom: 8px;
    color: gray;
    }
    .tabs div {
    flex: 1 1 auto;
    text-align: center;
    border-bottom: 2px solid transparent;
    }
    .tabs div:hover {
    border-bottom: 4px solid black;
    color: black;
    }
    .tabs .active {
    border-bottom: 4px solid black;
    color: black;
    }
    .tabs div label{
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 15px 0px;
    font-size: 20px;
    text-align: center;
    }

    button.text-btn {
    display:inline-block;
    min-width: 70px;
    padding: 15px 0;
    line-height: 0em;
    font-size: 1.2em;
    border-radius: 20px;
    }
    .only-mobile {
    }
    .only-pc {
    display: none;
    }
    .info-tag {
    padding: 3px 5px;
    color: #fff;
    font-size: 11px;
    text-align: left;
    border-radius: 3px;
    background-color: #444;
    z-index: 100;
    }
    .tag-pilot {
    position: absolute;
    left: 53px;
    }
    .tag-sno {
    position: absolute;
    top: 173px;
    left: 88px;
    max-width:250px;
    }
    .tag-pop {
    position: absolute;
    top: 195px;
    left: 88px;
    max-width:250px;
   }
    .tag-pop.winter {
    position: absolute;
    top: 215px;
    left: 88px;
    }
    #information {
    position: absolute;
    transform: translate(-50%, 0%);
    left: 50%;
    min-width: 150px;
    height: auto;
    padding: 10px;
    text-align: left;
    color: #fff;
    font-size: 13px;
    line-height: 25px;
    box-shadow: 2px 2px 2px #222;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.8);
    user-select: none;
    z-index: 130;
    }
    #information.default {	/* 일반문구 */
    white-space: nowrap;
    bottom: 140px;
    }
    #information.long {
        word-break: break-all;
        white-space: pre-wrap;
        width: 85%;
        bottom: 140px;
    }
  
	/* URL 공유하기 모바일 부분 */
	.gnb-exporturl > .share-wrap {
	width: 170px;
	}
	.gnb-exporturl > .share-wrap > input{
	width: 100px;
	}
}
