﻿
@charset "utf-8";

html {
    /*특정 지도 크기가 필요할 경우 제거*/
    width: 100%;
    height: 100%;
}


body {
    overflow: hidden;

    /*특정 지도 크기가 필요할 경우 제거*/
    width: 100%;
    height: 100%;
}

.statusCircle {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: inline-block;
}


.ol-zoom {
    display: none;
}


/*======== Map Layer Slider ========*/
.custom-slider-handler {
    width: 3em !important;
    height: 1.6em !important;
    top: 50% !important;
    cursor: pointer !important;
    margin-left: -1.5em !important;
    background-color: rgba(255,255,255,1) !important;
    margin-top: -.8em; text-align: center; line-height: 1.6em;
}


/*======== Map Attr Single Popup ========*/

.ol-popup {
    position: absolute;
    background-color: white;
    -webkit-filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
    padding: 0;
    border: 1px solid #cccccc;
    bottom: 12px;
    left: -50px;
    min-width: 340px;
    display: none;
}

.ol-popup:after, .ol-popup:before {
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.ol-popup:after {
    border-top-color: white;
    border-width: 10px;
    left: 48px;
    margin-left: -10px;
}

.ol-popup:before {
    border-top-color: #cccccc;
    border-width: 11px;
    left: 48px;
    margin-left: -11px;
}

.ol-popup-header {
    color: white;
    padding: 0.5rem 1rem;
    background-color: #4893ee;
}

.ol-popup-title {
    font-weight: 400;
}

.ol-popup-closer {
    text-decoration: none;
    position: absolute;
    top: 6px;
    right: 8px;
    color: whitesmoke !important;
    font-family: "Quattrocento Sans", sans-serif;
    font-size: 1.2rem;
}

.ol-popup-content {
    padding: 0.2rem 1rem 1rem 1rem;
    text-align: center;
    background-color: #fff;

}

.ol-popup-closer:after {
    content: "✖";
}



/*======== Map Measuring ========*/

.ol-tooltip {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    color: white;
    padding: 4px 8px;
    opacity: 0.7;
    white-space: nowrap;
    font-size: 12px;
}
.ol-tooltip-measure {
    opacity: 1;
    font-weight: bold;
}
.ol-tooltip-measure-static {
    background-color: #ffcc33;
    color: black;
    border: 1px solid white;
}
.ol-tooltip-measure:before,
.ol-tooltip-measure-static:before {
    border-top: 6px solid rgba(0, 0, 0, 0.5);
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    content: "";
    position: absolute;
    bottom: -6px;
    margin-left: -7px;
    left: 50%;
}
.ol-tooltip-measure-static:before {
    border-top-color: #ffcc33;
}



/*======== Map Clustering ========*/

.clusterPopup {
    background-color:#FFF;
    border: 1px solid #CCC;
    padding: 0.1em 1em 0.5em 0.5em;
}

