.spinnerAddAnim{
    display: unset;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

#spinner{
    margin: auto;
}

#spinner::before {
    animation: 1s linear infinite spinner;
    animation-play-state: inherit;
    border: solid 10px var(--accent-color-second);
    border-bottom-color: var(--accent-color);
    border-radius: 50%;
    content: "";
    height: 8em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 8em;
    will-change: transform;
    z-index: 100;
}

@keyframes spinner {
    0% {
        transform: translate3d(-50%, -50%, 0) rotate(0deg);
    }
    100% {
        transform: translate3d(-50%, -50%, 0) rotate(360deg);
    }
}
