.map-loader{
    display: none;
}

.map-loader.loader-active
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    background: #a4a4a4b3;
    background: inherit;
    backdrop-filter: blur(2px);
    animation: ease-in-out .5s alternate loader;
}

@keyframes loader{
    0%
    {
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.map-loader img
{
   width:65px;
    height: 65px;

}
.map-loader.loader-align-left img
{
    margin-right: 42%;
    margin-bottom: 11%;
}