.leaflet-container {
    font: inherit;
}

.leaflet-control-zoom-in:hover,
.leaflet-control-zoom-in:focus,
.leaflet-control-zoom-out:hover,
.leaflet-control-zoom-out:focus {
    text-decoration: none
}

.btn-marker-map {
    background-color: transparent !important;
    text-transform: unset !important;
    box-shadow: unset !important;
}

.btn-marker-map:focus{
    outline: unset !important;
}

.leaflet_map--module::after {
    content: 'To change map zoom use "Alt key"';
    color: #fff;
    font-size: 24px;
    justify-content:center;
    display: flex;
    align-items: center;
    padding: 15px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    pointer-events:none;
    opacity: 0;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -ms-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}
.leaflet_map--module.map__info::after {
    opacity: 1;
}
.leaflet_map--module a {
    color: initial !important;
}
@media screen
and (max-width: 575px) {
    .leaflet_map--module::after {
        content: 'Use two fingers to move the map';
        font-size: 16px;
    }
}