
.spinner {
    width: 40px;
    height: 40px;
    display: block;
    color: black;

    position: fixed;
    z-index: 999;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

}

.spinner:after {
    content: "";
    width: 100%;
    height: 100%;
    display: inline-block;
    border: 3px solid currentColor;
    border-bottom-color: transparent;
    border-radius: 100%;
    background: transparent;

    animation: ball-clip-rotate .75s linear infinite;
}

@keyframes ball-clip-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.spiner1-div{

    width: 100px;
    height: 100px;

    border: 1px solid currentColor;
}