/* ----------------------------------------------
 * Generated by Animista on 2022-12-12 18:17:49
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation scale-in-center
 * ----------------------------------------
 */
@-webkit-keyframes scale-in-center {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scale-in-center {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

/* #map{
    background-color: var(--secondary);
} */
.scale-in-center {
    -webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


.clean-filter-container {
    margin-top: 25px;
    margin-left: 20px;
    color: var(--purple);
}

.clean-filter-container button {
    background-color: transparent;
    border: none;
}

.leaflet-popup-content {
    text-align: center;
    font-size: 20px;
}
.leaflet-popup-content .title {
    color: var(--purple);
}


.leaflet-popup-content .popup-image {
    border-radius: 10px;
}

.leaflet-container a.leaflet-popup-close-button{
    width: 30px;
    font: 35px/30px Tahoma, Verdana, sans-serif;
    color: var(--secondary);
}

