.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.ease-linear {
    transition-timing-function: linear;
}

.logoLoginSmall {
    background-image: url(../img/Logo.png);
    background-repeat: no-repeat;
    width: 120px;
    height: 90px;
    background-size: contain;
}

.cont {
    width: calc(100% - 288px);
    height: 100vh;
    margin-left: 288px;
}

#map {
    height: 100%;
    width: 100%;
}

.leaflet-bottom .leaflet-right {
    display: none;
}

.echo-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: red;
    border-radius: 50%;
    opacity: 0.8;
    pointer-events: none;
}

.echo-animation {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: red;
    border-radius: 50%;
    animation: echo-animation 1.5s infinite;
    pointer-events: none;
}

@keyframes echo-animation {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

input {
    padding: 10px;
}

.MarkerMe {
    background-color: red;
    width: 2px;
    height: 2px;
}
