@charset "utf-8";

.map {
    width: 100%;
    height: 100vh;
}

.leaflet-popup-pane {
    display: none !important;
}

.btn_map {
    display: block;
    width: 120px;
    position: absolute;
    top: -70px;
    right: 0;
    left: 0;
    border-radius: 35px;
    margin: auto;
    text-align: center;
    background: #50cb93;
    color: #eeeeee;
    padding: 10px 0;
    cursor: pointer;
}

.btn_map:hover {
    background: #88deb7;
}

.close_map {
    display: inline-block;
    position: absolute;
    width: 45px;
    height: 45px;
    top: calc(-100vh + -5px);
    right: 15px;
    padding: 2px;
    font-size: 25px;
    text-align: center;
    background: #f0f0f0;
    color: #9a85b7;
    border-radius: 50%;
    box-sizing: border-box;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
}

.close_map:hover {
    background: #ffffff;
}

.alert_map_box {
    max-width: calc(100% - 26px);
    width: 100%;
    height: calc(100vh - 26px);
    border-radius: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    background: #ecf0f1;
    display: none;
    position: fixed;
    top: 13px;
    right: 0;
    left: 0;
    z-index: 99999999;
    padding: 0;
    opacity: 0.0;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
}

.alert_map_box iframe {
    width: 100%;
    height: 100%;
}