#section-map {
    width: 100%;
    height: 100vh;
    position: absolute;
}

#map-container {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
}

.map-container {
    cursor: grab;
}

.cursor_grab {
    cursor: grab;
}

.cursor_grabbing {
    cursor: grabbing;
}


.ol-zoom {
    /* background-color: red !important; */
    /* display: none; */
    left: unset;
    top: unset;
    bottom: 25px !important;
    right: 1rem !important;
    position: fixed;

}

.ol-control {
    background-color: rgba(0, 0, 0, 0);
}

.ol-control button {
    transition: 0.3s;
    width: 40px;
    height: 40px;
    border-radius: var(--button-radius) !important;
    background: var(--background-linear);
    backdrop-filter: blur(var(--blur-strength));
    -webkit-backdrop-filter: blur(var(--blur-strength));
    color: var(--blue-color);
    font-size: 1.2rem !important;
}

.ol-control button:hover {
    outline: none;
    color: var(--blue-color);;
    background-color: var(--green-color);
}




/* -------- CUSTOM --------*/
.map-controller {
    position: fixed;
    bottom: calc(25px + 100px);
    right: 1rem;
}

.btn_map_controller {
    background: var(--background-linear);
    backdrop-filter: blur(var(--blur-strength));
    -webkit-backdrop-filter: blur(var(--blur-strength));
    height: 40px;
    width: 40px;
    border-radius: var(--button-radius);
    transition: 0.3s;
}

.btn_current_location:hover {
    background-color: var(--green-color);
}

.btn_current_location .bx {
    color: var(--blue-color);
    font-size: 1.2rem !important;
}

#mouse-coordinate {
    z-index: 102 !important;
    position: fixed;
    bottom: 32px;
    right: 6rem;
    color: var(--dark-blue-color-rgba) !important;
    font-size: 1rem;
    font-weight: 800;
    text-shadow: 0px 0px 0.5px rgba(225, 225, 225, 0.5);
}

/* COPYROGHT OPENSTREET MAP */
.ol-attribution:not(.ol-collapsed) {
    background-color: rgba(225, 225, 225, 0.5) !important;
}


.marker-grayscale{
    filter: grayscale(100%);
}



/* POPUP MARKER */
.ol-popup {
    position: absolute;
    background: var(--background-linear);
    /* --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)); */
    box-shadow: var(--box-shadow);
    padding: 15px;
    padding-bottom: 0px;
    border-radius: 10px;
    /* border: 1px solid #cccccc; */
    bottom: 40px;
    left: -90px;
    min-width: 180px;
    max-width: 300px;
    backdrop-filter: blur(var(--blur-strength));
    -webkit-backdrop-filter: blur(var(--blur-strength));
}

/* popup-content */
.ol-popup pre {
    color: var(--blue-color) !important;
    font-size: 0.75rem;
}

/* Title */
.ol-popup pre>:nth-child(1)>div {
    font-size: 0.8rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* border: solid red 1px; */
}

/* Footer Detail */
.ol-popup pre>:nth-child(4) {
    /* border: 1px solid red; */
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

/* Footer Detail / Div */
.ol-popup pre>:nth-child(4) div {
    text-align: center;
}

.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: var(--dark-blue-color-rgba);
    border-width: 10px;
    left: 50%;
    margin-left: -10px;
}

.ol-popup:before {
    border-top-color: var(--dark-blue-color-rgba);
    border-width: 11px;
    left: 50%;
    margin-left: -11px;
}

.break-long-words {
    overflow-wrap: break-word;
    word-wrap: break-word;

    -ms-word-break: break-all;
    /* This is the dangerous one in WebKit, as it breaks things wherever */
    word-break: break-all;
    /* Instead use this non-standard one: */
    word-break: break-word;

    /* Adds a hyphen where the word breaks, if supported (No Blink) */
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
    word-break: break-all;
    white-space: normal;
}