@charset "utf-8";
.nf-btn-map{padding-left:35px;
background-image: url(../images/map/map-icon-all.png); 
background-repeat:no-repeat;
background-size:100%;
}
#popup_layer .naver{background-position:-25px -98px}
#popup_layer .kakao{background-position:-25px -33px}
.map_menu_close{display:none}
.cssmenu-single{width:47% !important}
.map-content {
    width: 100%;
    height:100%;
    max-height:100%;
    overflow:hidden
}
.mapcon-box{height:auto !important}
.sidebar{z-index:1000 !important}
.map-inner {
    position: relative;
    height:calc(100vh - 142px);
    overflow: hidden;
}
.map-area {
    /* background: url(../images/map/map-bg.png) no-repeat 50% 0%; */
    width: 100%;
    height: 100%;
    text-align: center;
}

.map-locationarea {
    background-color: #fff;
    height: 75px;
    display: flex;
    justify-content: space-between;
    padding: 0 3%;
    border-bottom:1px #e5e5e5 solid;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.08);
}
.loca-leftarea h2 {
    display: inline-block;
    padding-right:30px;    
}
.loca-listarea {display: inline-block;}
.loca-rightarea {
    position:absolute;
    top:0;
    right:20px;
    padding-top:15px;
    font-size: 16px;
    color:#222;
    z-index:999;
    font-weight: 600;
}

.myloca {
    background: url('../images/map/icon-myplace.png') no-repeat 0% 15px;
    padding:15px 0 0 20px;
    margin-right:20px;
    display: inline-block;
}
.interest-loca {
    background: url('../images/map/icon-interest.png') no-repeat 0% 15px;
    padding:15px 0 0 17px;
    margin-right:20px;
    display: inline-block;
}

.address-form {
    display: flex;
    padding-top:5px;
}
.address-form li {
    vertical-align: top;
    list-style: none;
} 
.address-form li select {
    display: inline-block;
    height:36px;
    line-height:36px;
    padding:0 10px;
    border-radius:10px;
    border:1px #999 solid;
    box-shadow:2px 2px 3px rgba(0, 0, 0, 0.3)
}

/*셀렉트 커스텀*/
/*.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 150px;
    margin: 3rem;
    font-weight: 500;
    font-size: 14px;
    select {display: none;}
    &.open {
      .select-options {display: block;}
    }
  }
  
  .select-styled {
    display: inline-block;
    padding: 10px;
    border: 2px solid #222;
    border-radius: 10px;
    cursor: pointer;
    background-color: #fff;}
    .select-styled span {
    display: inline-block;
    }
    .arrow {
      position: absolute;
      right: 15px;
      top: 50%;
      translate: 0 -50%;
      display: inline-block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 6px 4px 0 4px;
      border-color: #333 transparent transparent transparent;
    }
  }
  .select-options {
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    margin-top: 5px;
    padding: 0;
    list-style: none;
    background-color: #fff;
    border: 2px solid #222;
    border-radius: 10px;
    overflow: hidden;
    li {
    padding: 10px;
    cursor: pointer;
      &:hover {background-color: #1764c4;}
    }
  }
  
  .select_basic {
    width: 130px;
    max-width: 300px;
    padding: 0px 10px;
    height:36px;
    border: 2px solid #222;
    border-radius: 10px;
    font-size: 14px;
    option {
      padding: 10px;
      font-weight: 500;
      &:hover {background-color: #1764c4;}
    }
  }*/

.loca-search {
    width:120px;
    max-width: 100%;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    color:#222;
    font-weight: 500;
    border:2px solid #222;
    border-radius: 10px 0 0 10px;
    margin-left:5px;
    padding-left:10px;
    vertical-align: top;
}
.loca-search::placeholder {
    color:#222
}
.btn-locasearch {
    height: 36px;
    background-color: #222;
    padding:0px 10px 0 10px;
    border-radius: 0 10px 10px 0;
}



/* Trigger Button */
input[id=trigger] {
    display: none;
  }
label[for=trigger] {
	display:none;
/*border: 1px solid red;*/
	width: 26px;
	height: 50px;
	background:#fff url('../images/map/right-arr.png') no-repeat 0 0;
	border-radius: 10px 0 0px 10px;
	box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.12);
	display: block;
	position: absolute;
	cursor: pointer;
	right: 0px;
	top:150px;
	transform: translateY(-50%);
	transition: 0.3s;
}

/* Sidebar */
.sidebar {
    background-color: #fff;
    width: 450px;
    height: 100%;
    position: absolute;
    border-left:0px solid rgba(0, 0, 0, 0.15);
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.12);
    transition: 0.3s;
    top:0px;
    right: -450px;
    transition: 0.3s;
    z-index: 0;
    overflow: auto;
}
.scroller::-webkit-scrollbar {
    width: 7px;
}
.scroller::-webkit-scrollbar-track { 
    background-color: #f3f3f3;
}
.scroller::-webkit-scrollbar-thumb { 
    background-color: #b3c8e3;
    border-radius: 20px;
}
.scroller::-webkit-scrollbar-button {
    display: none;
}

/* hover 효과 */
.scroller::-webkit-scrollbar-thumb:hover {
    background-color: #8db1de;
    transition: all 0.2s; /* 작동 안 됨 */
}
input[id=trigger]:checked ~ .sidebar {
right: 0;
}
input[id=trigger]:checked + label[for=trigger] {
right: 450px;
background-color: #fff;
}
  




.map-navarea {
    background-color: #edeef2;
    width: 105px;
    padding:40px 20px;
    height: 780px;
    box-sizing: border-box;
}
.map-navlist li {
    text-align: center;
    font-size: 14px;
    color:#222;
    font-weight: 600;    
    transition: 0.3s;
    cursor: pointer;
}
.map-navlist li a {
    color:#222;
    display: block;
    padding:38px 0 15px 0;
    border-bottom:1px #d5d5d5 dashed;    
    margin-bottom:15px;
}

.mbtn li a:hover {
    color:#222;
    text-decoration: underline;
}
.mbtn li:nth-child(1) {
    background: url('../images/map/lnb-menu1.png') no-repeat 50% 0%;
}
.mbtn li:nth-child(2) {
    background: url('../images/map/lnb-menu2.png') no-repeat 50% 0%;
}
.mbtn li:nth-child(3) {
    background: url('../images/map/lnb-menu3.png') no-repeat 50% 0%;
}
.mbtn li:nth-child(4) {
    background: url('../images/map/lnb-menu4.png') no-repeat 50% 0%;
}
.mbtn li:nth-child(5) {
    background: url('../images/map/lnb-menu5.png') no-repeat 50% 0%;
}
.mbtn li:nth-child(6) {
    background: url('../images/map/lnb-menu6.png') no-repeat 50% 0%;
}

.mbtn li:nth-child(1):hover {
    background: url('../images/map/lnb-menu1-on.png') no-repeat 50% 0%;
}
.mbtn li:nth-child(2):hover {
    background: url('../images/map/lnb-menu2-on.png') no-repeat 50% 0%;
}
.mbtn li:nth-child(3):hover {
    background: url('../images/map/lnb-menu3-on.png') no-repeat 50% 0%;
}
.mbtn li:nth-child(4):hover {
    background: url('../images/map/lnb-menu4-on.png') no-repeat 50% 0%;
}
.mbtn li:nth-child(5):hover {
    background: url('../images/map/lnb-menu5-on.png') no-repeat 50% 0%;
}
.mbtn li:nth-child(6):hover {
    background: url('../images/map/lnb-menu6-on.png') no-repeat 50% 0%;
}

.pop-layer {
    z-index: 9999
}
section.map-nav {
    position: absolute;
    top:0;
    left:0;
}
#map-leftmenu .tabs h2 a{float:right}
#map-leftmenu .mbtn h2 {font-weight:600;font-size:14px}
.tab-inner {
    background-color: #edeef2;
    width: 105px;
    padding:40px 15px;
    height: 100vh;
    box-sizing: border-box;
    z-index: 0;
    border-right:#ccc 1px solid
}
.mbtn {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
   /*  margin-left: 10px; /0605 han*/
}
.mbtn li {
    text-align: center;
    font-size: 14px;
    color:#222;
    font-weight: 600;    
    transition: 0.3s;
    cursor: pointer;
    display: block;
    padding:38px 0 15px 0;
    border-bottom:1px #d5d5d5 dashed;    
    margin-bottom:15px;
/* border: 1px solid #000; */
}

.mbtn li:hover {
    color:#222;
    text-decoration: underline;
}

  .tabs {
    position: absolute;
    top:0;
    left:105px;    
    border-radius: 20px;
  }
  .tabs div:nth-child(1) {
    top:0;
    left:-1px;
    background: #fff;
    height: 100vh;
    border-left:1px #ddd solid;
    box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.08);
  }
  .tabs div:nth-child(2) {
    top:0px;
    left:-1px;
    background: #fff;
    height: 100vh;
    border-left:1px #ddd solid;
    box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.08);
  }
  .tabs div:nth-child(3) {
    top:0px;
    left:-1px;
    background: #fff;
    height: 100vh;
    border-left:1px #ddd solid;
    box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.08);
  }
  .tabs div:nth-child(4) {
    top:0px;
    left:-1px;
    background: #fff;
    height: 100vh;
    border-left:1px #ddd solid;
    box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.08);
  }
  /* .tabs div:nth-child(5) {
    top:30px;
    left:-20px;
    background: url('../images/map/map-menubg5.png') no-repeat 0 0;
    width: 275px;
    height: 595px;
  }
  .tabs div:nth-child(6) {
    top:30px;
    left:-20px;
    background: url('../images/map/map-menubg6.png') no-repeat 0 0;
  } */
  .tabs div {
    position: absolute;
    min-width: 350px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    display: none;
    overflow: scroll;
    transition: 0.3s    

  }
  .tabs div.active {
    display: block;
    width: 100%;
  }
  
  /* Tab Content */
  .tabs div h2 {
    font-size: 20px;
    font-weight: 700;
    color:#1764c4;
    padding:0 0 15px 0;
    border-bottom:1px #d9d9d9 solid;
    margin:10px 10px 10px 10px;
    line-height:19px
  }
  .tabs div img {
    float: left;
    margin-right: 10px;
  }
  .facil-listarea {
    padding: 5px 10px 0 10px;
  }
  .facil-listarea li {
    display: flex;
    font-size: 16px;
    font-weight: 500;
    color:#666;
    padding-bottom:10px;
  }
  .facil-listarea li label {
    padding-left:7px;
  }

/* lnb menu  > 하위 2depth menu */
#cssmenu ul li {
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#cssmenu,
#cssmenu ul,
#cssmenu ul li a {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#tab3 {
    position: relative; 
}
#cssmenu {
  width: 100%;
  min-width:310px;
  color: #fff;
  position: absolute;
  top: 65px;
  left:20px;
  background:none;
  overflow: hidden;  box-shadow: none;
}
#cssmenu .facil-listarea1 {
    padding: 18px 25px 0 0px;
    width: 90%;
  }
#cssmenu .facil-listarea1 li {
    display: flex;
    font-size: 16px;
    font-weight: 500;
    color:#666;
    padding-bottom:15px;
  }
#cssmenu .facil-listarea1 li label {
    padding-left:7px;
  }
#cssmenu ul ul {
  display: none;
  width: 85%;
}
.align-right {
  float: right;
  
}
#cssmenu > ul > li > a {
  padding: 10px 0px;
  cursor: pointer;
  z-index: 2;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #222;
}
#cssmenu > ul > li.has-sub ul{
    background-color: #f5f5f5;
    padding:8px;
    border-radius: 10px; 
}
#cssmenu > ul > li.has-sub ul li span {
    display: inline-block;
    width: 48%;
}
#cssmenu > ul > li.has-sub ul li span.w100p {
    display: inline-block;
    width: 100%;
}
#cssmenu > ul > li.has-sub > a span{
    background: url('../images/map/map-smenuarr.png') no-repeat 100% 50%;
    padding-right:20px;
    background-position-x: 286px;
    display: block;
}
#cssmenu > ul > li.has-sub label{
    display: inline-block;
    color:#666;
    font-size: 16px;
    padding:5px 0px 5px 5px;    
}
#cssmenu > ul > li > a:hover,
#cssmenu > ul > li.active > a,
#cssmenu > ul > li.open > a {
  color: #222;

}
#cssmenu > ul > li.open > a {
  height:40px;
}
#cssmenu > ul > li:last-child > a,
#cssmenu > ul > li.last > a {
  border-bottom: 0px solid #1c74a2;
}
.holder {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  right: 0;
}
.holder::after,
.holder::before {
  display: block;
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  right: 20px;
  z-index: 10;
}
.holder::after {
  top: 17px;
}

.holder::before {
  top: 18px;
}
#cssmenu ul ul li a {
  cursor: pointer;
  padding: 10px 20px;
  z-index: 1;
  text-decoration: none;
  font-size: 13px;
  color: #222;
}
#cssmenu ul ul li:hover > a,
#cssmenu ul ul li.open > a,
#cssmenu ul ul li.active > a {
  color: #222;
}
#cssmenu ul ul li:first-child > a {
  box-shadow: none;
}

#cssmenu ul ul ul li a {
  padding-left: 30px;
}
#cssmenu > ul > li > ul > li:last-child > a,
#cssmenu > ul > li > ul > li.last > a {
  border-bottom: 0;
}

#cssmenu > ul > li > ul > li.open:last-child > ul > li:last-child > a {
  border-bottom: 0;
}
#cssmenu ul ul li.has-sub > a::after {
  display: block;
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  right: 20px;
  z-index: 10;
  top: 11.5px;
  background: url('../images/map/map-smenuarr.png') no-repeat 100% 50%;
}



/* right-sidebar */
.map-sidebararea {
    padding:30px;
    z-index: 9999;
}
.map-sidetitle {
    border-bottom:1px #d7d7d7 solid;
    padding-bottom:20px;
}
.map-sidetitle h3 {
    display: inline-block;
    font-size: 24px;
    color:#222;
    font-weight: 600;
    padding-right:15px;
}
.map-sidetitle p {
    display: inline-block;
    font-size: 16px;
    color:#222;
    font-weight: 600;
}
.map-sidetitle p span {
    color:#1764c4;
}
.map-sidetitle .form-input-check input[type="radio"]:checked +.on{
    width: 16px;
    height: 16px;
}
.map-sidetitle .form-input-check {
    padding-top:10px;
}
.form-input-check label{
    font-size: 16px;
    color:#666;
    padding-left:20px;
}
.map-sidetitle .on{
    width: 16px;
    height: 16px;
    top:2px
}
.map-sidetitle .on:after {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 3px;
    top: 3px;
}

.map-facillist {
    border-bottom:1px #d9d9d9 dotted;
    padding:25px 0;
}
.map-facillist2 {
    border-bottom:1px #d9d9d9 dotted;
    padding:13px 0;
    
}
.map-facillist2 h4{width:80%;display:inline-block}
.map-facillist2 a{
    background:#222;
    padding:3px 10px;
    color:#fff;
    border-radius:5px;
    display:inline-block
}
.map-facilistarea li:last-child {
    border-bottom:0;
    padding-bottom:0
}
.map-facillist h4 {
    font-size: 17px;
    color:#000;
    padding-bottom:7px;
    overflow: hidden;
    /*white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;*/
}
.map-facilinfo {
    font-size: 15px;
    color:#6e6e6e;
    text-align:left
}
.map-facilinfo span {
    padding-right:0px;
    display:block
}
.map-facilinfo span:nth-child(even) {
    padding-right:0
}
.fac-address {
    background: url('../images//map/icon-loca.png') no-repeat 0 1px;
    padding-left:15px;
}
.icon-min {
    background: url('../images//map/icon-min.png') no-repeat 0 1px;
    padding-left:20px;
}


/* pagination
/* –––––––––––––––––––––––––––––––––––––––––––––––––– */
.fpagination {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 20px 0 0 0; 
    color:#666;
    font-size: 15px;
    background-color: #f3f3f3;
    padding:15px 0;
    border-top:1px #d7d7d7 solid;
    border-radius: 0 0 10px 10px;
}
.fpagination a,
.fpagination button {
    width: 28px; 
    height: 28px; 
    text-align:center; 
    border-style: solid; 
    border-width: 1px; 
    border-color: transparent; 
    line-height: 1; 
    text-decoration: none; 
    cursor: pointer;
    border-radius: 50%; 
    letter-spacing:normal; 
    transition:all 0.1s ease-in;
}
.fpagination > a:hover, .fpagination > button:hover {
    border-color: #1764c4; 
    background-color: #1764c4; 
    color: #fff;
}
.fpagination a + a,
.fpagination button + button {
    margin-left: 7px;
}
.fpagination .btn-page-start {
    background: no-repeat center center / 13px 12px; 
    background-image: url("../images/sub/first.png");
    border:0px
}
.fpagination .btn-page-prev {
    background: no-repeat center center / 8px 12px; 
    background-image: url("../images/sub/pre.png");
    border:0px
}
.fpagination .btn-page-next {
    background: no-repeat center center / 8px 12px; 
    background-image: url("../images/sub/next.png");
    border:0px
}
.fpagination .btn-page-end {
    background: no-repeat center center / 13px 12px; 
    background-image: url("../images/sub/end.png");
    border:0px
}
.fpagination .btn-page-start:hover {
    background: no-repeat center center / 16px 15px; 
    background-image: url("../images/sub/first.png");
    
}
.fpagination .btn-page-prev:hover {
    background: no-repeat center center / 10px 15px; 
    background-image: url("../images/sub/pre.png");
}
.fpagination .btn-page-next:hover {
    background: no-repeat center center / 10px 15px; 
    background-image: url("../images/sub/next.png");
}
.fpagination .btn-page-end:hover {
    background: no-repeat center center / 16px 15px; 
    background-image: url("../images/sub/end.png");
}

.fpagination a.disabled,
.fpagination button:disabled {cursor:default; opacity: 0.5;}
.fpagination a.disabled:hover, .fpagination > button:disabled:hover {
    border-color: transparent; 
    background-color: transparent; 
    color: transparent;
}

.nf-btn:disabled,.nf-btn.disabled {
    cursor:default; 
    border-color: #fff !important; 
    background-color: #fff !important; 
    color: #fff !important;
}

.fpagination .nav {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: auto 7px
}

.fpagination .nav > a:hover, .fpagination .nav > button:hover {
    border-color: #1764c4; 
    background-color: #1764c4; 
    color: #fff;
}
.fpagination .nav > a.active, .fpagination .nav > button.active {
    border-color: #1764c4; 
    background-color: #1764c4; 
    color: #fff; 
    font-weight: bold
}
.fpagination .nav > a.active:hover, .fpagination .nav > button.active:hover {
    border-color: #1764c4; 
    background-color: #1764c4; 
    color: #fff;
}

.fac-checklistarea {margin:15px 0}
.fac-checklist li {
    padding:0px 0;
    margin-bottom:15px;
}
.fac-checklist li h4 {
    font-size: 18px;
    color:#222;
    font-weight: 600;
    padding-left:10px;
    padding-bottom:7px;
    background: url('../images/map/ftit-dot.png') no-repeat 0 8px;
}
.fac-checklist li label {
    font-size: 16px;
    color:#666;
    padding-left:5px;
    padding-right:20px
}
.fac-comment h4 {
    font-size: 18px;
    color:#222;
    font-weight: 700;
}
.fac-comment .fcomment-text {
    font-size: 14px;
    line-height: 1.4;
    padding:10px 15px;
    margin-top:3px;
    background-color: #f3f3f3;
    border:1px #ddd dashed;
    border-radius: 10px;
}
.fcomment-info {
    padding:15px 0
}
.fcomment-info p{
    font-size: 14px;
    color:#909090;
    font-weight: 500;
    display: inline-block;
    padding-right:15px
}
.fcomment-info p span {
    color:#666
}

.fcomment-info2 p{
    font-size: 14px;
    color:#98a6b7;
    font-weight: 500;
    display: inline-block;
    padding-right:15px
}
.fcomment-info2 p span {
    color:#698bb5
}

.fac-detail {
    font-size: 15px;
}
.fac-detail h4 {
    font-size: 18px;
    color:#222;
    font-weight: 700;
}
.statu1 {
    display: inline-block;
    background-color: #1764c4;
    font-size: 12px;
    font-weight: 500;
    padding:3px 5px 0px 5px;
    color:#fff;
    border-radius: 5px;
    margin-right:3px;
}
.datail-other {
    background-color: #e4eefa;
    padding:5px;
    border-radius: 5px;
    padding:10px;
    font-size: 14px;
    margin-top:5px
}



/* map popup */
.map_menu_close{z-index:11;position:fixed;bottom:50px;right:50px}
.map_menu_close button{line-height:25px;color:#222;border:#222 1px dashed;border-radius:15px;padding:10px 40px 10px 20px;
box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.35);
background-image:url('../images/common/pop-close-B.png');background-color:#fff;background-repeat:no-repeat;background-position:right 12px top 15px;background-size:13px;}
.map_position_reset{
	z-index:11;
	position:fixed;
	bottom:50px;
	left:50%;
	transform:translateX(-50%);
	line-height:25px;
	color:#fff;
	border:#fff 1px dashed;
	border-radius:15px;
	padding:10px 35px 10px 20px;
box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.35);
background-image:url('../images/map/reset-w.png');background-color:#0056aa;background-repeat:no-repeat;background-position:right 12px top 15px;background-size:15px;}



/* 정보 popup */
/*popup*/
.popup_layer {
    position:fixed;
    top:0;
    left:0;
    z-index: 10000;
     width: 100%; 
     height: 100%; 
     background-color: rgba(0, 0, 0, 0.4); 
    }
/*팝업 박스*/
.popup_box{
    position: relative;
    top:50%;
    left:50%; 
    overflow: auto; 
    height: 260px;
    width:35%;
    transform:translate(-50%, -50%);
    z-index:1002;
    box-sizing:border-box;
    background:#fff;
    box-shadow: 2px 5px 10px 0px rgba(0,0,0,0.35);
    -webkit-box-shadow: 2px 5px 10px 0px rgba(0,0,0,0.35);
    -moz-box-shadow: 2px 5px 10px 0px rgba(0,0,0,0.35);
}
/*컨텐츠 영역*/
.popup_box{
    border-radius: 20px;
    overflow: hidden;
    font-size:14px; 
    padding:0;
}
.pop-cont {
    padding:0;
}
.layer-titlearea {
    display:flex;
    justify-content: space-between;
    background-color: #fafafa;
    border-bottom:1px #e5e5e5 dashed;
    padding:12px 20px 8px 20px;
}
.layer-titlearea h4 {
    font-size: 18px;
    font-weight: 600;
    color:#000
}
.layer-titlearea .layer-close {
    width:20px;
    height:20px;
    background: url('../images/sub/layer-close.png') no-repeat 50% 50%;
    font-size: 0;
}
.popup_cont {
    text-align:left
}
.content-name {
    font-size: 17px;
    font-weight: 700;
    color:#222
}

/* pop table */
.popTable {
    width: 100%;
    border-top:1px #c5d1e7 solid;
    border-bottom:1px #c5d1e7 solid
}

.popTable table {
    width: 100%;
    border-collapse: collapse;
	border-spacing: 0;
        
}
.baseTable table thead tr th {
   border-bottom:1px #ddd solid;
   border-right:1px #ddd solid;   
   font-size: 18px;
   font-weight: 600;
   color:#222;
   text-align: center;
   padding:10px 0;
}
.popTable table thead tr th:first-child {
    border-left:1px #ddd solid;
}

.popTable table tbody tr th {
   font-size: 14px;
    padding:8px;
    border-bottom:1px #c5d1e7 solid;
    border-right:1px #c5d1e7 solid;
    border-left:1px #c5d1e7 solid;
    text-align: center;
    background-color: #f3f5f9;
    color:#3a5385
}
.popTable table tbody tr:last-child th {
    border-bottom:0px #c5d1e7 solid;
}
.popTable table tbody tr td {
    font-size: 14px;
    padding:8px;
    border-bottom:1px #c5d1e7 solid;
    border-right:1px #c5d1e7 solid;
    background-color: #fff;
}
.popTable table tbody tr:last-child td {
    border-bottom:0px #c5d1e7 solid;
}
.popTable table tbody tr th:first-child,
.popTable table tbody tr td:first-child {
    border-left:1px #c5d1e7 solid;
}

.popTable table tbody tr td.tb-bd {
    border-right:1px #ddd solid;
}
.pop-btnarea {
    padding:10px;
    text-align: center;
}
/*.nf-btn-map { 
    display: inline-block; 
    border-color: #1764c4; 
    background-color: #1764c4; 
    color: #fff; 
    font-size: 14px; 
    font-weight: 500;
    padding:0px 8px;
    height: 26px;
    line-height: 22px;
    text-align: center; 
    text-transform: uppercase; 
    transition: all 300ms ease; 
    white-space: nowrap;
}
.nf-btn-map:hover {
    border-color: #0056aa; 
    background-color: #0056aa; 
    color: #fff;
}*/




@media all and (max-width:1280px) {
    .loca-leftarea {
        padding-top:20px
    }
    /* .loca-rightarea {
	    position:absolute;
	    top:0;
	    right:20px;
	    padding-top:15px;
	    font-size: 16px;
	    color:#222;
	    z-index:999;
	    font-weight: 600;
	} */
    /*팝업 박스*/
    .popup_box{
        height: 270px;
        width:35%;
    }
}
@media all and (max-width:1100px) {
    .map-locationarea {
        background-color: #fff;
        display: block;
        height: 100%;
        padding: 0 3%;
        border-bottom:1px #e5e5e5 solid;
        box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.08);
    }
    .loca-leftarea {
        padding-top:10px
    }
    .loca-leftarea h2 {
        display: inline-block;
        padding-right:20px;    
    }
    /* .loca-rightarea {
	    position:absolute;
	    top:0;
	    right:20px;
	    padding-top:15px;
	    font-size: 16px;
	    color:#222;
	    z-index:999;
	    font-weight: 600;
	} */
    /*.loca-rightarea {
        display: flex;
        text-align: left;
        vertical-align: top;
        padding:10px 0 15px 0;
        font-size: 16px;
        color:#222;
        font-weight: 600;
    }*/
}



@media all and (max-width:1024px) {
	.map_menu_close{top:135px;bottom:auto !important}
    .map-inner {
        position: relative;
    }
    /* .loca-rightarea {
	    position:absolute;
	    top:0;
	    right:20px;
	    padding-top:15px;
	    font-size: 16px;
	    color:#222;
	    z-index:999;
	    font-weight: 600;
	} */
    
    /* 좌측 메뉴 상단에서 보여짐*/
    section.map-nav {
        width: 100%;
    }
    .tab-inner {
        width: 100%;       
        box-sizing: border-box;
        padding:0px 0 0px 0;
        box-sizing: border-box;
        position: absolute;
        top:calc(100vh - 10px);
        left:0;
        background-color: #edeef2;    
        border-top:1px #d5d5d5 solid; 
    }
    .mbtn {
        list-style: none;
        padding: 15px 0 15px 0;
        margin: 0;
        margin-left: 0px;
        display: flex;
        width: 100%;      
        position: relative;
        z-index: 999;
        height:90px;
        box-sizing: border-box;
    }
    .mbtn li {
        text-align: center;
        font-size: 16px;
        color:#222;
        font-weight: 600;    
        transition: 0.3s;
        cursor: pointer;
        width: 25%;
        padding:38px 0 0px 0;
        border-bottom:0px;
        border-right:1px #d5d5d5 dashed;    
        margin-bottom:0px;
        /* border: 1px solid #000; */
    }

    .mbtn li:hover {
        color:#222;
        text-decoration: underline;
    }
    .mbtn li:nth-child(1) {
        background: url('../images/map/lnb-menu1.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(2) {
        background: url('../images/map/lnb-menu2.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(3) {
        background: url('../images/map/lnb-menu3.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(4) {
        background: url('../images/map/lnb-menu4.png') no-repeat 50% 0%;
    }
    /* .mbtn li:nth-child(5) {
        background: url('../images/map/lnb-menu5.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(6) {
        background: url('../images/map/lnb-menu6.png') no-repeat 50% 0%;
    } */

    .mbtn li:nth-child(1):hover,
    .mbtn li:nth-child(1):active,
    .mbtn li:nth-child(1):focus,
    .mbtn li.active:nth-child(1) {
        background: url('../images/map/lnb-menu1-on.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(2):hover,
    .mbtn li:nth-child(2):active,
    .mbtn li:nth-child(2):focus,
    .mbtn li.active:nth-child(2) {
        background: url('../images/map/lnb-menu2-on.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(3):hover,
    .mbtn li:nth-child(3):active,
    .mbtn li:nth-child(3):focus,
    .mbtn li.active:nth-child(3) {
        background: url('../images/map/lnb-menu3-on.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(4):hover,
    .mbtn li:nth-child(4):active,
    .mbtn li:nth-child(4):focus,
    .mbtn li.active:nth-child(4) {
        background: url('../images/map/lnb-menu4-on.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(5):hover,
    .mbtn li:nth-child(5):active,
    .mbtn li:nth-child(5):focus,
    .mbtn li.active:nth-child(5) {
        background: url('../images/map/lnb-menu5-on.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(6):hover,
    .mbtn li:nth-child(6):active,
    .mbtn li:nth-child(6):focus,
    .mbtn li.active:nth-child(6) {
        background: url('../images/map/lnb-menu6-on.png') no-repeat 50% 0%;
    }
  .tabs {
    position: absolute;
    top:-90px;
    left:0%;  
    width: 100%;
    border-radius: 20px;
  }
  .tabs div:nth-child(1) {
    top:-121px;
    left:0%; 
    background: #fff;
    height: 210px;
  }
  .tabs div:nth-child(2) {
    top:-71px;
    left:0%; 
    background: #fff;
    height: 160px;
  }
  .tabs div:nth-child(3) {
    top:-241px;
    left:0%; 
    background: #fff;
     height: 330px;
  }
  .tabs div:nth-child(4) {
    top:-111px;
    left:0%; 
    background: #fff;
    height: 200px;
  }
  /* .tabs div:nth-child(5) {
    top:-126px;
    left:0%; 
    height: 215px;
    background: #fff;
  }
  .tabs div:nth-child(6) {
    top:-131px;
    left:0%; 
    height: 220px;
    background: #fff;
  } */
  .tabs div {
    position: absolute;
    box-sizing: border-box;
    display: none;
    overflow: hidden;
    transition: 0.3s;
    padding:20px 0 0 0px;    
    /* box-shadow: 2px 5px 3px rgba(0, 0, 0, 0.22); */
    border-radius: 20px 20px 0 0;   
    width: 100%;    
    box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.08);
    
  }
  .tabs div.active {
    display: block;
    width: 100%;
    transition: 0.3s;
  }
  
  /* Tab Content */
  .tabs div h2 {
    font-size: 20px;
    font-weight: 700;
    color:#1764c4;
    padding:0 0 15px 0;
    border-bottom:1px #d9d9d9 solid;
    margin:0px 25px 10px 25px;
  }
  .tabs div img {
    float: left;
    margin-right: 10px;
  }
 
  
  .facil-listarea {
    padding: 5px 25px 0 25px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    
  }
  .facil-listarea li {
    width: 24%;
    font-size: 16px;
    font-weight: 500;
    color:#666;
    padding-bottom:15px;
  }
  .facil-listarea li label {
    padding-left:7px;
  }

    /* lnb menu  > 하위 2depth menu */
    #cssmenu,
    #cssmenu ul,
    #cssmenu ul li,
    #cssmenu ul li a {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    
    }
    /* .tabs #tab5 {
        position: relative;
        width: 100%;
        border:1px green solid
    } */
    #cssmenu {
        width: 95%;
        color: #fff;
        position: absolute;
        border-radius:0;
        top: 70px;
        left:25px;
        background:none;
        overflow: hidden;
        box-shadow: none;
        height: 210px; 
        overflow-y: scroll;  
    }
    #cssmenu::-webkit-scrollbar {
        width: 7px; 
    }
    #cssmenu::-webkit-scrollbar-thumb {
        background-color: #dedede;
        border-radius: 50px;
    }
    #cssmenu::-webkit-scrollbar-track {
        background-color: #f6f6f6;
        border:1px #dedede solid;
        border-radius: 50px;
    }
    #cssmenu ul {
        background-color: #fff;     
    }
    #cssmenu ul {
        display: flex;
        flex-wrap: wrap;
        gap:10px;
        padding-bottom:20px
    }
    #cssmenu ul li{
        width: 49%;
    }
    #cssmenu ul ul {
        display: none;
    }
    .align-right {
        float: right;
    }
    #cssmenu > ul > li > a {
        padding: 5px 0px;
        cursor: pointer;
        z-index: 2;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        color: #222;    
    }
    #cssmenu > ul > li.has-sub ul{
        background-color: #f5f5f5;
        padding:10px;
        border-radius: 10px;
        width: 100%;
    }
    #cssmenu > ul > li.has-sub > a span{
        background: url('../images/map/map-smenuarr.png') no-repeat 100% 50%;
        padding-right:20px;
    
    }
   
    #cssmenu > ul > li.has-sub label{
        display: inline-block;
        color:#666;
        font-size: 16px;
        padding:5px 20px 5px 5px;
    }
    #cssmenu > ul > li > a:hover,
    #cssmenu > ul > li.active > a,
    #cssmenu > ul > li.open > a {
        color: #222;
    }
    #cssmenu > ul > li.open > a {
        height:40px;
    }
    #cssmenu > ul > li:last-child > a,
    #cssmenu > ul > li.last > a {
        border-bottom: 0px solid #1c74a2;
    }

    #cssmenu .facil-listarea1 {
        padding: 0px 0px 0 0px;
        width: 100%;
    }
    #cssmenu .facil-listarea1 li {
        display: flex;
        width: 19%;
        font-size: 16px;
        font-weight: 500;
        color:#666;
        padding-bottom:15px;
    }
    #cssmenu .facil-listarea1 li label {
        padding-left:7px;
    }
    
    .holder {
        width: 0;
        height: 0;
        position: absolute;
        top: 0;
        right: 0;
    }
    .holder::after,
    .holder::before {
        display: block;
        position: absolute;
        content: "";
        width: 6px;
        height: 6px;
        right: 20px;
        z-index: 10;
    }
    .holder::after {
        top: 17px;
    }

    .holder::before {
        top: 18px;
    }
    #cssmenu ul ul li a {
        cursor: pointer;
        padding: 10px 20px;
        z-index: 1;
        text-decoration: none;
        font-size: 13px;
        color: #222;
    }
    #cssmenu ul ul li:hover > a,
    #cssmenu ul ul li.open > a,
    #cssmenu ul ul li.active > a {
    color: #222;
    }
    #cssmenu ul ul li:first-child > a {
        box-shadow: none;
    }

    #cssmenu ul ul ul li a {
        padding-left: 30px;
    }
    #cssmenu > ul > li > ul > li:last-child > a,
    #cssmenu > ul > li > ul > li.last > a {
        border-bottom: 0;
    }

    #cssmenu > ul > li > ul > li.open:last-child > ul > li:last-child > a {
        border-bottom: 0;
    }
    #cssmenu ul ul li.has-sub > a::after {
        display: block;
        position: absolute;
        content: "";
        width: 5px;
        height: 5px;
        right: 20px;
        z-index: 10;
        top: 11.5px;
        background: url('../images/map/map-smenuarr.png') no-repeat 100% 50%;
    }
    #cssmenu > ul > li.has-sub {
        display: flex;
        flex-wrap: wrap;
    }
    #cssmenu > ul > li.has-sub li{
        width: 100%;
    }
    #cssmenu > ul > li.has-sub li.has-sub span {
        display: inline-block;        
       width: 48%;
    }

    #cssmenu > ul > li.has-sub ul li span.w100p {
        display: inline-block;
        width: 100%;
    }

    /* Sidebar */
    .sidebar {
        background-color: #fff;
        width: 60%;
        height: 100%;
        position: absolute;
        border-left:0px solid rgba(0, 0, 0, 0.15);
        box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.12);
        transition: 0.3s;
        top:0px;
        right: -60%;
        transition: 0.3s;
        z-index: 0;
        overflow: auto;
    }
    .scroller::-webkit-scrollbar {
        width: 7px;
    }
    .scroller::-webkit-scrollbar-track { 
        background-color: #f3f3f3;
    }
    .scroller::-webkit-scrollbar-thumb { 
        background-color: #b3c8e3;
        border-radius: 20px;
    }
    .scroller::-webkit-scrollbar-button {
        display: none;
    }

    /* hover 효과 */
    .scroller::-webkit-scrollbar-thumb:hover {
        background-color: #8db1de;
        transition: all 0.2s; /* 작동 안 됨 */
    }
    input[id=trigger]:checked ~ .sidebar {
        right: 0;
    }
    input[id=trigger]:checked + label[for=trigger] {
        right: 60%;
        background-color: #fff;
    }
    
    /*팝업 박스*/
    .popup_box{
        height: 300px;
        width:40%;
    }
    

}

@media all and (max-width:780px) {
    .map-inner {
        position: relative;
    }
    
    /* 좌측 메뉴 상단에서 보여짐*/
    section.map-nav {
        width: 100%;
    }
    .tab-inner {
        width: 100%;
        box-sizing: border-box;
        box-sizing: border-box;
        position: absolute;
        left:0;
        background-color: #edeef2;    
        border-top:1px #d5d5d5 solid; 
    }
    .mbtn {
        list-style: none;
        padding: 15px 0 15px 0;
        margin: 0;
        margin-left: 0px;
        display: flex;
        width: 100%;      
        position: relative;
        z-index: 999;
        height:90px;
        box-sizing: border-box;
    }
    .mbtn li {
        font-size: 15px;
        /* border: 1px solid #000; */
    }

    .mbtn li:hover {
        color:#222;
        text-decoration: underline;
    }
    .mbtn li:nth-child(1) {
        background: url('../images/map/lnb-menu1.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(2) {
        background: url('../images/map/lnb-menu2.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(3) {
        background: url('../images/map/lnb-menu3.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(4) {
        background: url('../images/map/lnb-menu4.png') no-repeat 50% 0%;
    }
    /* .mbtn li:nth-child(5) {
        background: url('../images/map/lnb-menu5.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(6) {
        background: url('../images/map/lnb-menu6.png') no-repeat 50% 0%;
    } */

    .mbtn li:nth-child(1):hover,
    .mbtn li:nth-child(1):active,
    .mbtn li:nth-child(1):focus,
    .mbtn li.active:nth-child(1) {
        background: url('../images/map/lnb-menu1-on.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(2):hover,
    .mbtn li:nth-child(2):active,
    .mbtn li:nth-child(2):focus,
    .mbtn li.active:nth-child(2) {
        background: url('../images/map/lnb-menu2-on.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(3):hover,
    .mbtn li:nth-child(3):active,
    .mbtn li:nth-child(3):focus,
    .mbtn li.active:nth-child(3) {
        background: url('../images/map/lnb-menu3-on.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(4):hover,
    .mbtn li:nth-child(4):active,
    .mbtn li:nth-child(4):focus,
    .mbtn li.active:nth-child(4) {
        background: url('../images/map/lnb-menu4-on.png') no-repeat 50% 0%;
    }
    /* .mbtn li:nth-child(5):hover,
    .mbtn li:nth-child(5):active,
    .mbtn li:nth-child(5):focus,
    .mbtn li.active:nth-child(5) {
        background: url('../images/map/lnb-menu5-on.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(6):hover,
    .mbtn li:nth-child(6):active,
    .mbtn li:nth-child(6):focus,
    .mbtn li.active:nth-child(6) {
        background: url('../images/map/lnb-menu6-on.png') no-repeat 50% 0%;
    } */
  .tabs {
    position: absolute;
    top:-90px;
    left:0%;  
    width: 100%;
    border-radius: 20px;
  }
  .tabs div:nth-child(1) {
    top:-111px;
    left:0%; 
    background: #fff;
    height: 200px;
  }
  .tabs div:nth-child(2) {
    top:-71px;
    left:0%; 
    background: #fff;
    height: 160px;
  }
  .tabs div:nth-child(3) {
    top:-261px;
    left:0%; 
    background: #fff;
     height: 350px;
  }
  .tabs div:nth-child(4) {
    top:-111px;
    left:0%; 
    background: #fff;
    height: 200px;
  }
  /* .tabs div:nth-child(5) {
    top:-126px;
    left:0%; 
    height: 215px;
    background: #fff;
  }
  .tabs div:nth-child(6) {
    top:-131px;
    left:0%; 
    height: 220px;
    background: #fff;
  } */
  .tabs div {
    position: absolute;
    box-sizing: border-box;
    display: none;
    overflow: hidden;
    transition: 0.3s;
    padding:20px 0 0 0px;    
    /* box-shadow: 2px 5px 3px rgba(0, 0, 0, 0.22); */
    border-radius: 20px 20px 0 0;   
    width: 100%;    
    box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.08);
    
  }
  .tabs div.active {
    display: block;
    width: 100%;
    transition: 0.3s;
  }
  
  /* Tab Content */
  .tabs div h2 {
    font-size: 20px;
    font-weight: 700;
    color:#1764c4;
    padding:0 0 15px 0;
    border-bottom:1px #d9d9d9 solid;
    margin:0px 25px 10px 25px;
  }
  .tabs div img {
    float: left;
    margin-right: 10px;
  }
 
  .facil-listarea {
    padding: 5px 25px 0 25px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    
  }
  .facil-listarea li {
    width: 24%;
    font-size: 15px;
    font-weight: 500;
    color:#666;
    padding-bottom:15px;
  }
  .facil-listarea li label {
    padding-left:7px;
  }

    /* lnb menu  > 하위 2depth menu */
    #cssmenu,
    #cssmenu ul,
    #cssmenu ul li,
    #cssmenu ul li a {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
    /* .tabs #tab5 {
        position: relative;
        width: 100%;
        border:1px green solid
    } */
    #cssmenu {
        width: 93%;
        color: #fff;
        position: absolute;
        border-radius:0;
        top: 70px;
        left:25px;
        background:none;
        overflow: hidden;
        box-shadow: none;
        height: 70%;
        overflow-y: scroll;
    }
    #cssmenu ul {
        background-color: #fff;     
    }
    #cssmenu ul {
        display: flex;
        padding-bottom:20px;
    }
    #cssmenu ul li{
        width: 33%;
    }
    #cssmenu ul ul {
        display: none;
    }
    .align-right {
        float: right;
    }
    #cssmenu > ul > li > a {
        padding: 5px 0px;
        cursor: pointer;
        z-index: 2;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        color: #222;    
    }
    #cssmenu > ul > li.has-sub ul{
        background-color: #f5f5f5;
        padding:10px;
        border-radius: 10px;
    }
    #cssmenu > ul > li.has-sub > a span{
        background: url('../images/map/map-smenuarr.png') no-repeat 100% 50%;
        padding-right:20px;
    
    }
    #cssmenu > ul > li.has-sub label{
        display: inline-block;
        color:#666;
        font-size: 15px;
        padding:5px 20px 5px 5px;
    }
    #cssmenu > ul > li > a:hover,
    #cssmenu > ul > li.active > a,
    #cssmenu > ul > li.open > a {
        color: #222;
    }
    #cssmenu > ul > li.open > a {
        height:40px;
    }
    #cssmenu > ul > li:last-child > a,
    #cssmenu > ul > li.last > a {
        border-bottom: 0px solid #1c74a2;
    }
    .holder {
        width: 0;
        height: 0;
        position: absolute;
        top: 0;
        right: 0;
    }
    .holder::after,
    .holder::before {
        display: block;
        position: absolute;
        content: "";
        width: 6px;
        height: 6px;
        right: 20px;
        z-index: 10;
    }
    .holder::after {
        top: 17px;
    }

    .holder::before {
        top: 18px;
    }
    #cssmenu ul ul li a {
        cursor: pointer;
        padding: 10px 20px;
        z-index: 1;
        text-decoration: none;
        font-size: 13px;
        color: #222;
    }
    #cssmenu ul ul li:hover > a,
    #cssmenu ul ul li.open > a,
    #cssmenu ul ul li.active > a {
    color: #222;
    }
    #cssmenu ul ul li:first-child > a {
        box-shadow: none;
    }

    #cssmenu ul ul ul li a {
        padding-left: 30px;
    }
    #cssmenu > ul > li > ul > li:last-child > a,
    #cssmenu > ul > li > ul > li.last > a {
        border-bottom: 0;
    }

    #cssmenu > ul > li > ul > li.open:last-child > ul > li:last-child > a {
        border-bottom: 0;
    }
    #cssmenu ul ul li.has-sub > a::after {
        display: block;
        position: absolute;
        content: "";
        width: 5px;
        height: 5px;
        right: 20px;
        z-index: 10;
        top: 11.5px;
        background: url('../images/map/map-smenuarr.png') no-repeat 100% 50%;
    }
    #cssmenu > ul > li.has-sub {
        display: flex;
        flex-wrap: wrap;
        width: 49%;
        gap:0;
    }
    #cssmenu > ul > li.has-sub li{
        width: 100%;
    }
    #cssmenu > ul > li.has-sub li.has-sub span {
        display: inline-block;        
        width: 48%;
    }
    #cssmenu .facil-listarea1 {
        padding-bottom:20px
    }
    #cssmenu .facil-listarea1 li {
        display: flex;
        width: 23%;
        font-size: 16px;
        font-weight: 500;
        color:#666;
        padding-bottom:0px;
    }

    /* Sidebar */
    .sidebar {
        background-color: #fff;
        width: 70%;
        right: -70%;
    }

    input[id=trigger]:checked + label[for=trigger] {
        right: 70%;
        background-color: #fff;
    }
    
    /*팝업 박스*/
    .popup_box{
        height: 300px;
        width:50%;
    }

}


@media all and (max-width:700px) {
    .map_position_reset{
        /* top: 87px; */
        bottom: 100px!important;
        left: 50% !important;
        margin-left: -71px;
        font-size:13px;
        transform: translateX(0%) !important;
        background-position: right 12px top 10px !important;
        padding: 5px 35px 5px 20px !important;
        border-radius: 10px !important;
        }
    /*.map_position_reset{top: 87px;
        bottom: auto !important;
        left: 3% !important;
        font-size:13px;
        transform: translateX(0%) !important;
        background-position: right 12px top 10px !important;
        padding: 5px 35px 5px 20px !important;
        border-radius: 10px !important;
        }*/
    /* .loca-rightarea {
        display: flex;
        flex-wrap: wrap;
        text-align: right;
        vertical-align: top;
        padding-top:5px;
        font-size: 16px;
        color:#222;
        font-weight: 600;
    } */
    .address-form {
        display: flex;
        width: 100%;
        padding-top:10px;
    }
    .address-form li {
        vertical-align: top;
        list-style: none;
    } 
    .address-form li select {
        display: inline-block;
    }
    .map-inner {
        position: relative;
    }
    
    /* 좌측 메뉴 상단에서 보여짐*/
    section.map-nav {
        width: 100%;
        top:-80px;
    }
    .tab-inner {
        width: 100%;
        box-sizing: border-box;
        padding:15px 0;
        box-sizing: border-box;
        position: absolute;
        left:0;
        background-color: #edeef2;    
        border-top:1px #ccc solid; 
        border-right:none
    }
    .mbtn {
        list-style: none;
        padding: 0;
        margin: 0;
        overflow: hidden;
        margin-left: 0px;
        display: flex;
        width: 100%;      
        position: relative;
        z-index: 9999;
    }
    .mbtn li {
        font-size: 15px;
        /* border: 1px solid #000; */
    }
	.mbtn li:last-child{border-right:none}
    .mbtn li:hover {
        color:#222;
        text-decoration: underline;
    }
    .mbtn li:nth-child(1) {
        background: url('../images/map/lnb-menu1.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(2) {
        background: url('../images/map/lnb-menu2.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(3) {
        background: url('../images/map/lnb-menu3.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(4) {
        background: url('../images/map/lnb-menu4.png') no-repeat 50% 0%;
    }
    /* .mbtn li:nth-child(5) {
        background: url('../images/map/lnb-menu5.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(6) {
        background: url('../images/map/lnb-menu6.png') no-repeat 50% 0%;
    } */

    .mbtn li:nth-child(1):hover,
    .mbtn li:nth-child(1):active,
    .mbtn li:nth-child(1):focus,
    .mbtn li.active:nth-child(1) {
        background: url('../images/map/lnb-menu1-on.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(2):hover,
    .mbtn li:nth-child(2):active,
    .mbtn li:nth-child(2):focus,
    .mbtn li.active:nth-child(2) {
        background: url('../images/map/lnb-menu2-on.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(3):hover,
    .mbtn li:nth-child(3):active,
    .mbtn li:nth-child(3):focus,
    .mbtn li.active:nth-child(3) {
        background: url('../images/map/lnb-menu3-on.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(4):hover,
    .mbtn li:nth-child(4):active,
    .mbtn li:nth-child(4):focus,
    .mbtn li.active:nth-child(4) {
        background: url('../images/map/lnb-menu4-on.png') no-repeat 50% 0%;
    }
    /* .mbtn li:nth-child(5):hover,
    .mbtn li:nth-child(5):active,
    .mbtn li:nth-child(5):focus,
    .mbtn li.active:nth-child(5) {
        background: url('../images/map/lnb-menu5-on.png') no-repeat 50% 0%;
    }
    .mbtn li:nth-child(6):hover,
    .mbtn li:nth-child(6):active,
    .mbtn li:nth-child(6):focus,
    .mbtn li.active:nth-child(6) {
        background: url('../images/map/lnb-menu6-on.png') no-repeat 50% 0%;
    } */
  .tabs {
    position: absolute;
    top:-60px;
    left:0%;  
    width: 100%;
    border-radius: 20px;    
  }
  .tabs div:nth-child(1) {
    top:-181px;
    left:0%; 
    background: #fff;
    height: 240px;
  }
  .tabs div:nth-child(2) {
    top:-141px;
    left:0%; 
    background: #fff;
    height: 200px;
  }
  .tabs div:nth-child(3) {
    top:-411px;
    left:0%; 
    background: #fff;
     height: 470px;
  }
  .tabs div:nth-child(4) {
    top:-171px;
    left:0%; 
    background: #fff;
    height: 230px;
  }
  /* .tabs div:nth-child(5) {
    top:-176px;
    left:0%; 
    height: 250px;
    background: #fff;
  }
  .tabs div:nth-child(6) {
    top:-181px;
    left:0%; 
    height: 240px;
    background: #fff;
  } */
  .tabs div {
    position: absolute;
    box-sizing: border-box;
    display: none;
    overflow: hidden;
    transition: 0.3s;
    padding:20px 0 0 0px;    
    /* box-shadow: 2px 5px 3px rgba(0, 0, 0, 0.22); */
    border-radius: 20px 20px 0 0;   
    width: 100%;    
    box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.08);
    
  }
  .tabs div.active {
    display: block;
    width: 100%;
    transition: 0.3s;
  }
  
  /* Tab Content */
  .tabs div h2 {
    font-size: 20px;
    font-weight: 700;
    color:#1764c4;
    padding:0 0 15px 0;
    border-bottom:1px #d9d9d9 solid;
    margin:0px 25px 10px 25px;
  }
  .tabs div img {
    float: left;
    margin-right: 10px;
  }
 
  
  .facil-listarea {
    padding: 5px 25px 0 25px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    
  }
  .facil-listarea li {
    width: 33.3%;
    font-size: 15px;
    font-weight: 500;
    color:#666;
    padding-bottom:15px;
  }
  .facil-listarea li label {
    padding-left:7px;
  }

    /* lnb menu  > 하위 2depth menu */
    #cssmenu,
    #cssmenu ul,
    #cssmenu ul li,
    #cssmenu ul li a {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
    /* .tabs #tab5 {
        position: relative;
        width: 100%;
        border:1px green solid
    } */
    #cssmenu {
        width: 92%;
        color: #fff;
        position: absolute;
        border-radius:0;
        top: 70px;
        left:25px;
        background:none;
        overflow: hidden;
        box-shadow: none;
        height: 75%;    
        overflow-y: scroll;    
    }
    #cssmenu ul {
        background-color: #fff;     
    }
    #cssmenu ul {
        display: flex;
        flex-wrap: wrap;
    }
    #cssmenu ul li{
        width: 100%;
    }
    #cssmenu ul ul {
        display: none;
    }
    .align-right {
        float: right;
    }
    #cssmenu > ul > li > a {
        padding: 5px 0px 0 0;
        cursor: pointer;
        z-index: 2;
        font-size: 17px;
        font-weight: 600;
        text-decoration: none;
        color: #222;    
    }
    #cssmenu > ul {
        margin-bottom:25px
    }
    #cssmenu > ul > li.has-sub ul{
        background-color: #f5f5f5;
        padding:10px;
        border-radius: 10px;
        width: 95%;
    }
    #cssmenu > ul > li.has-sub > a span{
        background: url('../images/map/map-smenuarr.png') no-repeat 100% 50%;
        padding-right:20px;
    
    }
    #cssmenu > ul > li.has-sub label{
        display: inline-block;
        color:#666;
        font-size: 15px;
        padding:5px 20px 5px 5px;
    }
    #cssmenu > ul > li > a:hover,
    #cssmenu > ul > li.active > a,
    #cssmenu > ul > li.open > a {
        color: #222;
    }
    #cssmenu > ul > li.open > a {
        height:40px;
    }
    #cssmenu > ul > li:last-child > a,
    #cssmenu > ul > li.last > a {
        border-bottom: 0px solid #1c74a2;
    }
    .holder {
        width: 0;
        height: 0;
        position: absolute;
        top: 0;
        right: 0;
    }
    .holder::after,
    .holder::before {
        display: block;
        position: absolute;
        content: "";
        width: 6px;
        height: 6px;
        right: 20px;
        z-index: 10;
    }
    .holder::after {
        top: 17px;
    }

    .holder::before {
        top: 18px;
    }
    #cssmenu ul ul li a {
        cursor: pointer;
        padding: 10px 20px;
        z-index: 1;
        text-decoration: none;
        font-size: 13px;
        color: #222;
    }
    #cssmenu ul ul li:hover > a,
    #cssmenu ul ul li.open > a,
    #cssmenu ul ul li.active > a {
    color: #222;
    }
    #cssmenu ul ul li:first-child > a {
        box-shadow: none;
    }

    #cssmenu ul ul ul li a {
        padding-left: 30px;
    }
    #cssmenu > ul > li > ul > li:last-child > a,
    #cssmenu > ul > li > ul > li.last > a {
        border-bottom: 0;
    }

    #cssmenu > ul > li > ul > li.open:last-child > ul > li:last-child > a {
        border-bottom: 0;
    }
    #cssmenu ul ul li.has-sub > a::after {
        display: block;
        position: absolute;
        content: "";
        width: 5px;
        height: 5px;
        right: 20px;
        z-index: 10;
        top: 11.5px;
        background: url('../images/map/map-smenuarr.png') no-repeat 100% 50%;
    }
    #cssmenu > ul > li.has-sub {
        display: flex;
        flex-wrap: wrap;
        width: 100%;    
    }
    #cssmenu > ul > li.has-sub li{
        width: 100%;
    }
    #cssmenu > ul > li.has-sub li.has-sub span {
        display: inline-block;        
        width: 48%;
    }
    #cssmenu .facil-listarea1 {
        padding-bottom:0px
    }
    #cssmenu .facil-listarea1 li {
        width: 32%;
    }

    /* Sidebar */
    .sidebar {
        background-color: #fff;
        width: 70%;
        right: -90%;
        height: calc(100vh - 188px);
        margin-top: 40px;
        border-radius: 10px 0 0 10px;
    }

    input[id=trigger]:checked + label[for=trigger] {
        right: 70%;
        background-color: #fff;
    }
    /*.sidebar {
        background-color: #fff;
        width: 80%;
        right: -80%;
    }

    input[id=trigger]:checked + label[for=trigger] {
        right: 80%;
        background-color: #fff;
    }*/
    /*팝업 박스*/
    .popup_box{
        height: 300px;
        width:60%;
    }
}
@media all and (max-width:540px){
	.map-facillist {padding: 15px 0}
.loca-rightarea{position:absolute;top:0;right:20px;font-size:16px;color:#222;z-index:999;font-weight:600;background:#fafdff;padding: 5px 10px;border:#cfdee5 1px solid;border-radius:0 0 10px 10px;border-top:none;box-shadow:0px 3px 5px 0px rgba(0, 0, 0, 0.08)}
.address-form li select {border:0px;margin:0 5px;background: #fafdff;font-size:13px;
    display: inline-block;
    height: auto;
    line-height: normal;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    width:27%
}

/*	#popup_layer .naver{background-position:-25px -93px}*/
/* 	label[for=trigger] {
	top:auto;
	bottom: 150px;
} */
	.cssmenu-single{margin-top:0px}
	.map-area{height: calc(100vh - 90px)}
	.map-sidebararea{padding: 20px;}
	.map-facilinfo {font-size:14px;text-align:left}
    /*.loca-rightarea {
        display: flex;
        flex-wrap: wrap;
        text-align: right;
        vertical-align: top;
        padding-top:5px;
        font-size: 15px;
        color:#222;
        font-weight: 600;
    }*/
     .loca-rightarea {
        display: flex;
        width:380px;
        flex-wrap: wrap;
        text-align: right;
        vertical-align: top;
        padding-top:5px;
        font-size: 15px;
        color:#222;
        font-weight: 600;
        right:0;
        left:50%;
        margin-left:-190px
    }
    .address-form {
        display: flex;
        width: 100%;
        padding-top:10px;
    }
    .address-form li{vertical-align:top;list-style:none}
.btn-locasearch {vertical-align:top}
    .map-inner {position: relative}
    /* 좌측 메뉴 상단에서 보여짐*/
    section.map-nav {width: 100%;}
    .tab-inner {padding:0;}
    .mbtn {z-index: 9999;padding:15px 0}
    .mbtn li {font-size: 15px;}
    .mbtn li:hover {color:#222;text-decoration: underline;}
    .mbtn li:nth-child(1) {background: url('../images/map/lnb-menu1.png') no-repeat 50% 0%;}
    .mbtn li:nth-child(2) {background: url('../images/map/lnb-menu2.png') no-repeat 50% 0%;}
    .mbtn li:nth-child(3) {background: url('../images/map/lnb-menu3.png') no-repeat 50% 0%;}
    .mbtn li:nth-child(4) {background: url('../images/map/lnb-menu4.png') no-repeat 50% 0%;}
    .mbtn li:nth-child(1):hover,
    .mbtn li:nth-child(1):active,
    .mbtn li:nth-child(1):focus,
    .mbtn li.active:nth-child(1){background: url('../images/map/lnb-menu1-on.png') no-repeat 50% 0%;}
    .mbtn li:nth-child(2):hover,
    .mbtn li:nth-child(2):active,
    .mbtn li:nth-child(2):focus,
    .mbtn li.active:nth-child(2) {background: url('../images/map/lnb-menu2-on.png') no-repeat 50% 0%;}
    .mbtn li:nth-child(3):hover,
    .mbtn li:nth-child(3):active,
    .mbtn li:nth-child(3):focus,
    .mbtn li.active:nth-child(3) {background: url('../images/map/lnb-menu3-on.png') no-repeat 50% 0%;}
    .mbtn li:nth-child(4):hover,
    .mbtn li:nth-child(4):active,
    .mbtn li:nth-child(4):focus,
    .mbtn li.active:nth-child(4) {background: url('../images/map/lnb-menu4-on.png') no-repeat 50% 0%;}
  .tabs {
    position: absolute;
    top:-60px;
    left:0%;  
    width: 100%;
    border-radius: 20px;}
  .tabs div:nth-child(1){
    top:-201px;
    left:0%; 
    background: #fff;
    height: 260px;}
  .tabs div:nth-child(2){
    top:-146px;
    left:0%; 
    background: #fff;
    height: 205px;}
  .tabs div:nth-child(3){
    top:-341px;
    left:0%; 
    background: #fff;
     height: 400px}
  .tabs div:nth-child(4){
    top:-201px;
    left:0%; 
    background: #fff;
    height: 260px;}
  .tabs div:nth-child(5) {
    top:-216px;
    left:0%; 
    height: 275px;
    background: #fff;}
  .tabs div:nth-child(6) {
    top:-201px;
    left:0%; 
    height: 260px;
    background: #fff;}
  .tabs div {
    position: absolute;
    box-sizing: border-box;
    display: none;
    overflow: hidden;
    transition: 0.3s;
    padding:20px 0 0 0px;    
    /* box-shadow: 2px 5px 3px rgba(0, 0, 0, 0.22); */
    border-radius: 20px 20px 0 0;   
    width: 100%;    
    box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.08);}
  .tabs div.active {
    display: block;
    width: 100%;
    transition: 0.3s;}
  /* Tab Content */
  .tabs div h2 {
    font-size: 20px;
    font-weight: 700;
    color:#1764c4;
    padding:0 0 15px 0;
    border-bottom:1px #d9d9d9 solid;
    margin:0px 25px 10px 25px;
  }
  .tabs div img {float: left;margin-right: 10px;}
  .facil-listarea {
    padding: 5px 25px 0 25px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;}
  .facil-listarea li {
    width: 49%;
    font-size: 14px;
    font-weight: 500;
    color:#666;
    padding-bottom:10px;}
  .facil-listarea li label {padding-left:7px;}
    /* lnb menu  > 하위 2depth menu */
    #cssmenu,
    #cssmenu ul,
    #cssmenu ul li,
    #cssmenu ul li a {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;}
    #cssmenu {
        width: 90%;
        color: #fff;
        position: absolute;
        border-radius:0;
        top: 70px;
        left:25px;
        background:none;
        overflow: hidden;
        box-shadow: none;
        height: 77%;      
        overflow-y: scroll;
        padding:5px 0px
        }
    #cssmenu ul {background-color: #fff}
    #cssmenu ul {display:flex;flex-wrap: wrap;margin-bottom:20px}
    #cssmenu ul li{width: 100%;}
    #cssmenu ul ul {display: none;width: 100%;}
    .align-right {float: right;}
    #cssmenu > ul > li > a {
        padding: 0px 0px;
        cursor: pointer;
        z-index: 2;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        color: #222;}
    #cssmenu > ul > li.has-sub ul{
        background-color: #f5f5f5;
        padding:7px 10px;
        border-radius: 10px;
        margin:0}
    #cssmenu > ul > li.has-sub > a span{
        background: url('../images/map/map-smenuarr.png') no-repeat 100% 50%;
        padding-right:20px;}
    #cssmenu > ul > li.has-sub label{
        display: inline-block;
        color:#666;
        font-size: 14px;
        padding:5px 20px 5px 5px;}
    #cssmenu > ul > li > a:hover,
    #cssmenu > ul > li.active > a,
    #cssmenu > ul > li.open > a {color: #222;}
    #cssmenu > ul > li.open > a {height:20px;}
    #cssmenu > ul > li:last-child > a,
    #cssmenu > ul > li.last > a {border-bottom: 0px solid #1c74a2;}
    .holder {
        width: 0;
        height: 0;
        position: absolute;
        top: 0;
        right: 0;}
    .holder::after,
    .holder::before {
        display: block;
        position: absolute;
        content: "";
        width: 6px;
        height: 6px;
        right: 20px;
        z-index: 10;}
    .holder::after { top: 17px;}
    .holder::before {top: 18px;}
    #cssmenu ul ul li a {
        cursor: pointer;
        padding: 10px 20px;
        z-index: 1;
        text-decoration: none;
        font-size: 13px;
        color: #222;}
    #cssmenu ul ul li:hover > a,
    #cssmenu ul ul li.open > a,
    #cssmenu ul ul li.active > a {color: #222;}
    #cssmenu ul ul li:first-child > a {box-shadow: none;}
    #cssmenu ul ul ul li a {padding-left: 30px;}
    #cssmenu > ul > li > ul > li:last-child > a,
    #cssmenu > ul > li > ul > li.last > a {border-bottom: 0;}
    #cssmenu > ul > li > ul > li.open:last-child > ul > li:last-child > a {border-bottom: 0;}
    #cssmenu ul ul li.has-sub > a::after {
        display: block;
        position: absolute;
        content: "";
        width: 5px;
        height: 5px;
        right: 20px;
        z-index: 10;
        top: 11.5px;
        background: url('../images/map/map-smenuarr.png') no-repeat 100% 50%;}
    #cssmenu > ul > li.has-sub {display: flex;flex-wrap: wrap;}
    #cssmenu > ul > li.has-sub li{width: 100%;}
    #cssmenu > ul > li.has-sub li.has-sub span {display: inline-block;width: 48%;}
    #cssmenu .facil-listarea1 li {font-size: 14px;width: 48%;}
    /*팝업 박스*/
.popup_box{height:300px;width:95%}
}
@media all and (max-width:480px) {
     .map-inner {
        position: relative;
    }
     .address-form {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        padding-top:10px;
    }
    .address-form li {
        width: 100%;
        vertical-align: top;
        list-style: none;
        
    } 
    .address-form li select {
        display: inline-block;
        width: 27%;
        margin-bottom:3px;
    }
    .loca-search {
        width: 80%;
    }
    .btn-locasearch {
        width: 17%;
        vertical-align: top;
    }


    /* 좌측 메뉴 상단에서 보여짐*/
    section.map-nav {
        width: 100%;
        position: fixed;
    }
    .tab-inner {
        padding:0;
    }
    .mbtn {
        z-index: 9999;
        padding:15px 0
    }
    .mbtn li {
        font-size: 15px;
        /* border: 1px solid #000; */
    }
  .tabs {
    position: absolute;
    top:-60px;
    left:0%;  
    width: 100%;
    border-radius: 20px;
  }
  .tabs div:nth-child(1) {
    top:-170px;
    left:0%; 
    background: #fff;
    height: 229px;
  }
  .tabs div:nth-child(2) {
    top:-123px;
    left:0%; 
    background: #fff;
    height: 182px;
  }
  .tabs div:nth-child(3) {
    top:-235px;
    left:0%; 
    background: #fff;
    height: 294px;
  }
  .tabs div:nth-child(4) {
    top:-201px;
    left:0%; 
    background: #fff;
    height: 260px;
  }

  .tabs div {
    position: absolute;
    box-sizing: border-box;
    display: none;
    overflow: hidden;
    transition: 0.3s;
    padding:15px 0 0 0px;    
    /* box-shadow: 2px 5px 3px rgba(0, 0, 0, 0.22); */
    border-radius: 15px 15px 0 0;   
    width: 100%;    
    box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.08);
    
  }
  .tabs div.active {
    display: block;
    width: 100%;
    margin: 0;
    transition: 0.3s;
  }
  .tabs div.active a{float:right}
  /* Tab Content */
  .tabs div h2 {
    font-size: 18px;
    font-weight: 700;
    color:#1764c4;
    padding:0 0 15px 15px;
    border-bottom:1px #d9d9d9 solid;
    margin:0px 0px 10px 0px;
  }
  .tabs div img {
    float: left;
    margin-right: 20px;
  }
 
  
  .facil-listarea {
    padding: 5px 25px 0 25px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;}
  .facil-listarea li {
    width: 49%;
    font-size: 14px;
    font-weight: 500;
    color:#666;
    padding-bottom:10px;}
  .facil-listarea li label {padding-left:7px;}
    /* lnb menu  > 하위 2depth menu */
    #cssmenu,
    #cssmenu ul,
    #cssmenu ul li,
    #cssmenu ul li a {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;}
    #cssmenu {
        width: 94%;
        color: #fff;
        position: absolute;
        border-radius:0;
        top: 70px;
        left:15px;
        background:none;
        overflow: hidden;
        box-shadow: none;
        height: 75%;      
        overflow-y: scroll;}
    #cssmenu ul {background-color: #fff}
    #cssmenu ul {display:flex;flex-wrap: wrap;margin-bottom:20px}
    #cssmenu ul li{width: 100%;}
    #cssmenu ul ul {display: none;width: 100%;}
    .align-right {float: right;}
    #cssmenu > ul > li > a {
        padding: 0px 0px;
        cursor: pointer;
        z-index: 2;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        color: #222;}
    #cssmenu > ul > li.has-sub ul{
        background-color: #f5f5f5;
        padding:7px 10px;
        border-radius: 10px;
        margin:0}
    #cssmenu > ul > li.has-sub > a span{
        background: url('../images/map/map-smenuarr.png') no-repeat 100% 50%;
        padding-right:20px;}
    #cssmenu > ul > li.has-sub label{
        display: inline-block;
        color:#666;
        font-size: 14px;
        padding:5px 20px 5px 5px;}
    #cssmenu > ul > li > a:hover,
    #cssmenu > ul > li.active > a,
    #cssmenu > ul > li.open > a {color: #222;}
    #cssmenu > ul > li.open > a {height:20px;}
    #cssmenu > ul > li:last-child > a,
    #cssmenu > ul > li.last > a {border-bottom: 0px solid #1c74a2;}
    .holder {
        width: 0;
        height: 0;
        position: absolute;
        top: 0;
        right: 0;}
    .holder::after,
    .holder::before {
        display: block;
        position: absolute;
        content: "";
        width: 6px;
        height: 6px;
        right: 20px;
        z-index: 10;}
    .holder::after { top: 17px;}
    .holder::before {top: 18px;}
    #cssmenu ul ul li a {
        cursor: pointer;
        padding: 10px 20px;
        z-index: 1;
        text-decoration: none;
        font-size: 13px;
        color: #222;}
    #cssmenu ul ul li:hover > a,
    #cssmenu ul ul li.open > a,
    #cssmenu ul ul li.active > a {color: #222;}
    #cssmenu ul ul li:first-child > a {box-shadow: none;}
    #cssmenu ul ul ul li a {padding-left: 30px;}
    #cssmenu > ul > li > ul > li:last-child > a,
    #cssmenu > ul > li > ul > li.last > a {border-bottom: 0;}
    #cssmenu > ul > li > ul > li.open:last-child > ul > li:last-child > a {border-bottom: 0;}
    #cssmenu ul ul li.has-sub > a::after {
        display: block;
        position: absolute;
        content: "";
        width: 5px;
        height: 5px;
        right: 20px;
        z-index: 10;
        top: 11.5px;
        background: url('../images/map/map-smenuarr.png') no-repeat 100% 50%;}
    #cssmenu > ul > li.has-sub {display: flex;flex-wrap: wrap;}
    #cssmenu > ul > li.has-sub li{width: 100%;}
    #cssmenu > ul > li.has-sub li.has-sub span {display: inline-block;width: 48%;}
    #cssmenu .facil-listarea1 li {font-size: 14px;width: 48%;}

}


@media all and (max-width:400px) {
	.map-inner {
        position: relative;
        height:100vh;
    }
    
	#cssmenu {
        color: #fff;
        position: absolute;
        border-radius:0;
        top: 70px;
        left:15px;
        background:none;
        box-shadow: none;     
        overflow-y: scroll; 
    }
    
    /*팝업 박스*/
    .popup_box{
        height: auto;
        width:95%;
    }
    .layer-titlearea h4 {
        font-size: 18px;
    }
    .content-name {
        font-size: 16px;
    }

    /* pop table */
    .popTable {
        width: 100%;
        border-top:1px #c5d1e7 solid;
        border-bottom:1px #c5d1e7 solid
    }

    .popTable table {
        width: 100%;
        border-collapse: collapse;
        border-spacing: 0;   
    }
 
    .popTable table tbody tr th {
        padding:8px;
    }
    .popTable table tbody tr:last-child th {
        border-bottom:0px #c5d1e7 solid;
    }
    .popTable table tbody tr td {
        padding:8px;
    }
    .map-sidebararea{padding:20px}
    .map-area{height: calc(100vh - 90px)}
	.loca-rightarea{width: 339px;margin-left: -169px;}
    .address-form li select {width:auto}
}
/* map popup */
.map_menu_close{z-index:11;position:absolute;bottom:60px;left:50%;transform:translateX(-50%);text-align:center}
.map_menu_close button{line-height:25px;color:#222;border:#222 1px dashed;border-radius:15px;padding:10px 40px 10px 20px;
box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.35);
background-image:url('../images/common/pop-close-B.png');background-color:#fff;background-repeat:no-repeat;background-position:right 12px top 15px;background-size:13px;}
.map_position_reset{z-index:2;position:absolute;bottom:5px;left:50%;transform:translateX(-50%);line-height:25px;color:#fff;border:#fff 1px dashed;border-radius:15px;padding:10px 35px 10px 20px;
box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.35);
background-image:url('../images/map/reset-w.png');background-color:#0056aa;background-repeat:no-repeat;background-position:right 12px top 15px;background-size:15px;}
#cont-2,#cont-3{padding-top: 30px;border-top: #ddd 2px dashed;margin-top: 30px;}
.cssmenu-single{margin-top:10px}
.map-legend{z-index:20;position:absolute;bottom:10px;right:100px;background:#fff;padding:15px 20px;border-radius:10px;box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.35);font-size:14px}
.map-legend h3{padding-bottom:10px;margin-bottom:10px;border-bottom:#ddd 1px solid}
.legend-basic li{padding-bottom:5px}
.map-legend span{display:inline-block;margin-right:8px;vertical-align:middle;width:15px;height:15px;border-radius:3px;text-indent:-6000px}
.map-legend-close{float: right;margin:3px 0 0 20px;cursor: pointer;width:15px}
.map-legend span.blue{background:blue}
.map-legend span.blue1{background:#7fc8c8}
.map-legend span.blue2{background:#7fc8ff}
.map-legend span.green{background:green}
.map-legend span.green1{background:#0fff7f}
.map-legend span.green2{background:#7fffbf}
.map-legend span.yellow{background:yellow}
.map-legend span.orange{background:orange}
.map-legend span.red{background:red}
.map-legend span.gray{background:gray}
.map-legend span.purple{background:purple}
.legend-year{width:160px}
.legend-year li{float:left;width:50%;padding:5px 0;text-align:center}
.map-legend li.y-color1{background:#ffb3c1}
.map-legend li.y-color2{background:#ff922b}
.map-legend li.y-color3{background:#ffd43b}
.map-legend li.y-color4{background:#51cf66}
.map-legend li.y-color5{background:#20c997}
.map-legend li.y-color6{background:#22bbcf}
.map-legend li.y-color7{background:#5c7cfa}
.map-legend li.y-color8{background:#845ef7}
.map-legend li.y-color9{background:#cc5de8}
.map-legend li.y-color10{background:#f06595}
.map-legend li.y-color11{background:#ff6b6b}
.map-legend span.accident-area-01{background:#ff5500}
.map-legend span.accident-area-02{background:#984ea3}
.map-legend span.accident-area-03{background:#ffaa00}
.map-legend span.accident-area-04{background:#00b200}
.map-legend li.mt-color1{background:#ff0000}
.map-legend li.mt-color2{background:#ffc800}
.map-legend li.mt-color3{background:#b6ff8f}
.map-legend li.mt-color4{background:#33c3ff}
.map-legend li.mt-color5{background:#0101ff;color:#fff}


/*
   오류번호 026
   일자: 2026-02-12, 2026-02-13
   작업자: 최연진
   변경이력: 재난안전시설 - selectbox 레이아웃 최종 수정 (v4)
*/

/* address-form flex 가로 1줄 배치 */
.address-form {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 5px !important;
    width: 100% !important;
}

/* 모든 LI 가로 배치 */
.address-form > li {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* dis-none 강제 표시 (데스크탑에서 도로명검색 보이게) */
.address-form > li.dis-none {
    display: flex !important;
}

/* 첫번째 LI (브이월드+시도+시군구) */
.address-form > li:first-child {
    flex: 1 1 auto !important;
}
.address-form > li:first-child .select_basic {
    flex: 1 1 0 !important;
    min-width: 0 !important;
}

/* 도로명검색 셀렉트 */
.address-form > li:nth-child(2) .select_basic {
    min-width: 0 !important;
}

/* ===== 1024px 이하: 도로명+검색어 숨기고 3개 셀렉트만 1줄 ===== */
@media all and (max-width:1024px) {
    .address-form > li:nth-child(2) {
        display: none !important;
    }
    .address-form > li:nth-child(3) {
        display: none !important;
    }
    .address-form > li:first-child {
        flex: 1 1 100% !important;
    }
    .address-form > li:first-child .select_basic {
        flex: 1 1 0 !important;
    }
}

/***** 변경 내용 끝 *****/


/*
   오류번호 027
   일자: 2026-02-11
   작업자: 최연진
   변경이력: 재난안전시설 - 하단 네비바(map-nav) 사라짐 해결 (max-width: 1024px)
*/

@media all and (max-width:1024px) {
    .map-nav .mbtn {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        background: #fff !important;
        border-top: 1px solid #ddd !important;
        box-shadow: 0 -2px 8px rgba(0,0,0,0.12) !important;
        display: flex !important;
        margin: 0 !important;
        padding: 5px 0 !important;
    }
    .map-nav .mbtn > li {
        flex: 1 !important;
        text-align: center !important;
    }
}
/***** 변경 내용 끝 *****/


/*
   오류번호 029
   일자: 2026-02-11
   작업자: 최연진
   변경이력: 재난안전시설 > 대피시설, 위험지역 - 목록 영역 여백 필요
             sidebar scroller 패딩 및 리스트 아이템 간격 추가
             (max-width: 480px)
*/
@media all and (max-width:480px) {
    .sidebar.scroller {
        padding: 10px;
    }
    .sidebar.scroller .list-item,
    .sidebar.scroller li {
        padding: 10px;
        margin-bottom: 8px;
    }
    .sidebar.scroller .address {
        word-break: keep-all;
        font-size: 13px;
    }
    .pop-layer.map-layer-big,
    .pop-layer.map-layer-middle {
        padding: 10px;
    }

    .tabs div:nth-child(1) {
        top: -186px;
        height: 246px;
    }
	
	#cssmenu ul {
		padding: 5px 0;
	}

}
/***** 변경 내용 끝 *****/
