.leaflet-control-locate a {
    cursor: pointer;
}

.leaflet-control-locate a .leaflet-control-locate-location-arrow {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 7px;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="black" d="M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z"/></svg>');
}

.leaflet-control-locate a .leaflet-control-locate-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 7px;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="black" d="M304 48a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48 368a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm208-208a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM96 256a48 48 0 1 0-96 0 48 48 0 0 0 96 0zm13 99a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm294 0a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM109 61a48 48 0 1 0 0 96 48 48 0 0 0 0-96z"/></svg>');
    animation: leaflet-control-locate-spin 2s linear infinite;
}

.leaflet-control-locate.active a .leaflet-control-locate-location-arrow {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="rgb(32, 116, 182)" d="M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z"/></svg>');
}

.leaflet-control-locate.following a .leaflet-control-locate-location-arrow {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="rgb(252, 132, 40)" d="M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z"/></svg>');
}

.leaflet-touch .leaflet-bar .leaflet-locate-text-active {
    width: 100%;
    max-width: 200px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 10px;
}

.leaflet-touch .leaflet-bar .leaflet-locate-text-active .leaflet-locate-icon {
    padding: 0 5px 0 0;
}

.leaflet-control-locate-location circle {
    stroke-width: 6;
    transform: scale(1);
    stroke-opacity: 0.5;
    animation: leaflet-control-locate-throb 3.2s ease infinite;
    transition: all 200ms;
}

.leaflet-control-locate-location {
    position: relative;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leaflet-control-map-360 circle {
    animation: leaflet-control-locate-throb-sm 3.2s ease infinite;
}

.schema-edge {
    width: 100px;
    height: 100px;
    background-color: rgb(var(--rgb-first-light),0.15);
    border: 0.5px solid rgb(var(--rgb-lightest),0.1);
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 100;
    &::before {
        content: "";
        position: absolute;
        width: 76px;
        height: 76px;
        right: 0;
        top: 50%;
        transform: translate(-14%, -114%) rotate(-45deg);
        background: rgb(0,0,0);
        background: linear-gradient(48deg, rgba(var(--rgb-first-light),0.6) 8%, rgba(255,255,255,0) 50%);
    }
}

@keyframes leaflet-control-locate-throb {
    0% {
        stroke-width: 6;
        transform: scale(1);
        stroke-opacity: 0.5;
    }

    50% {
        stroke-width: 0;
        transform: scale(0.7);
        stroke-opacity: 1;
    }

    100% {
        stroke-width: 6;
        transform: scale(1);
        stroke-opacity: 0.5;
    }
}

@keyframes leaflet-control-locate-throb-sm {
    0% {
        stroke-width: 6;
        transform: scale(1);
        stroke-opacity: 0.5;
    }

    50% {
        stroke-width: 4;
        transform: scale(0.9);
    }

    100% {
        stroke-width: 6;
        transform: scale(1);
        stroke-opacity: 0.5;
    }
}

@keyframes leaflet-control-locate-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*# sourceMappingURL=L.Control.Locate.min.css.map */