@charset "utf-8";
/* CSS Document */

.ol-scale-line{display: none;} 

#loading  {
    z-index: 1000;
    border: none;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: rgb(0, 0, 0); 
    opacity: 0.6;
    cursor: wait;
    position: fixed;
    text-align: center;
}

#loading .loadText {
    color: floralwhite;
    top: 48.5%;
    position: relative;
    font-size: 18px;
}


#loading .loader {
z-index : 1001;
  border: 16px solid #f3f3f3;
  border-top: 16px solid #3498db;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* #loading div { margin-top: 260px; font-family: 'notokr-bold'; font-size: 20px; color: #0054a6; } */


.zoomPart div{
	position: absolute;
    width: 6px;
    height: 10px;
    margin-top: -10px;
    cursor: pointer;
    border-bottom: 1px solid darkgray;
}

.zoomText {
	margin: 20px 0px 0px -30px;
	background-size: 515px 26px;
	width: 30px;
	height: 126px;
}

.zoomText div {
	position: absolute;
	width: 29px;
	left: 0px;
	height: 15px;
	margin: -6px 0px 0px;

}








.tooltip {
  position: relative;
  background: rgba(0, 0, 0, 1);
  border-radius: 4px;
  color: white;
  font-size: 9pt;
  font-family: auto;
  font-weight: bold;
  text-align: left;
  padding: 4px 8px;
  opacity: 0.6;
  white-space: nowrap;
}
.tooltip-measure {
/*   opacity: 1; */
  background-color: #ff0101; /* #ffcc33 */
/*   color: black; */
  color: white;
  font-size: 9pt;
  font-family: auto;
  font-weight: bold;
  border: 1px solid white;
  opacity: 0.7;
}
.tooltip-static {
  background-color: #ff0101; /* #ffcc33 */
/*   color: black; */
  color: white;
  font-size: 9pt;
  font-family: auto;
  border: 1px solid white;
  opacity: 0.7;
}
.tooltip-static-blue {
  background-color: blue;
/*   color: black; */
  color: white;
  font-size: 9pt;
  font-family: auto;
  border: 1px solid white;
  opacity: 0.7;
}
.tooltip-measure:before,
.tooltip-static:before,
.tooltip-static-blue:before {
  border-top: 6px solid rgba(0, 0, 0, 1);
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  content: "";
  position: absolute;
  bottom: -6px;
  margin-left: -7px;
  left: 50%;
}
.tooltip-static:before {
  border-top-color: #ff0101; /* #ffcc33 */
}
.tooltip-static-blue:before {
  border-top-color: blue; /* #ffcc33 */
}

.tooltip-static button{cursor:pointer; position:absolute; width:20px; height:20px; border:1px solid #fff; background:url(../images/icon_close_gray.png) no-repeat center #848b95; right:-14px; top:4px; border-radius:20px;}




.leaflet-control-buttongroup-geolocate-marker {
    background: none;
}

.leaflet-control-buttongroup-geolocate-marker-circle {
    background-color: #00f;
    border-radius: 9999rem;
    height: .9375rem;
    position: relative;
    width: .9375rem;
}

.leaflet-control-buttongroup-geolocate-marker-pulse {
    -webkit-animation: utilGeolocateMarkerPulse 1.2s ease-in-out infinite;
    animation: utilGeolocateMarkerPulse 1.2s ease-in-out infinite;
    background-color: #9ef;
    background-image: radial-gradient(#9ef,#09f);
    border-radius: 9999rem;
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
}

@-webkit-keyframes utilGeolocateMarkerPulse {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: scale(4)
    }
}

@keyframes utilGeolocateMarkerPulse {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: scale(4)
    }
}
	
 /* 로딩 그룹 */
.loading-container {
    display: none; /* 기본적으로 숨김 */
    position: fixed; /* 화면 전체에 고정 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 어두운 배경 */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 999999; /* 다른 요소 위에 오도록 설정 */
}

/* 로딩 원 */
.loader {
    border: 8px solid #f0f0f0; /* 배경색 */
    border-top: 8px solid #246beb; /* 애니메이션을 위한 색 */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

.mooSeach{ background: none !important; z-index: 9999999;}

/* 애니메이션 정의 */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 텍스트 스타일 */
.loading-text {
    margin-top: 20px;
    font-size: 20px;
    color: white;
    font-weight: bold;
}

/* 스크린샷 관련 css */
#screenshot_mask {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    display: block;
    opacity: 0.3;
    text-align: center;
    box-sizing: border-box;
    z-index: 999998;
    border-color: black;
    border-style: solid;
}

#screenshot_focus:before,
#screenshot_focus:after {
    border: none !important;
    content: "" !important;
    height: 100% !important;
    position: absolute !important;
    width: 100% !important
}

#screenshot_focus:before {
    border-right: 1px solid white !important;
    border-bottom: 1px solid white !important;
    left: -100% !important;
    top: -100% !important
}

#screenshot_focus:after {
    border-top: 1px solid white !important;
    border-left: 1px solid white !important;
    left: 0 !important;
    top: 0 !important
}

#screenshot_focus {
    height: 100% !important;
    position: fixed !important;
    width: 100% !important;
    z-index: 999999 !important
}

/* 스크린샷 관련 css */