html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
#mapid {
    height: 100%;
    width: 100%;
}
.clear-cache-btn {
    width: 34px !important;
    height: 34px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    border: none;
    outline: none;
    font-size: 1.5em;
    cursor: pointer;
    margin: 0;
    padding: 0;
}
.clear-cache-btn i {
    font-size: 1.5em;
    color: #222;
}
.leaflet-fa-marker {
    position: relative;
    width: 30px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    pointer-events: none;
}
.fa-marker-pin {
    width: 30px;
    height: 38px;
    border-radius: 15px 15px 15px 15px / 18px 18px 30px 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.fa-marker-pin i {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    font-size: 1.3em;
    margin-top: 2px;
}
.fa-marker-tip {
    width: 10px;
    height: 10px;
    background: inherit;
    border-radius: 50%;
    border: 3px solid #fff;
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
@media (max-width: 600px) {
    #mapid {
        height: 100vh;
        width: 100vw;
    }
    .fa-marker-pin {
        width: 30px !important;
        height: 38px !important;
    }
    .fa-marker-pin i {
        font-size: 2em !important;
    }
    .leaflet-control {
        font-size: 1.5em !important;
    }
    .leaflet-control-zoom, .leaflet-control-layers {
        min-width: 48px;
        min-height: 48px;
    }
    .leaflet-control-zoom a {
        width: 48px !important;
        height: 48px !important;
        font-size: 2em !important;
        line-height: 48px !important;
    }
    .leaflet-control-layers label {
        font-size: 1.2em !important;
        padding: 8px 12px !important;
    }
    .zoom-label {
        font-size: 1.5em !important;
        padding: 10px 18px !important;
    }
}
