.spinner-container {
    width: 100px;
    height: 100px;
    position: relative;
    overflow: hidden;
    display: block;
}

.spinner-image {
    width: 50%;
    height: 50%;
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spinner-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    position: absolute;
    border: solid white 50px;
    border-radius: 50%;
    margin: auto;
    box-sizing: border-box;
    border-color: white transparent white white;
    /*            background: white;*/
    /*            clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 50%, 50% 50%, 50% 0%);*/
    /*             border-radius: 50%; */
}


.spinner-overlay1 {
    animation: rotate1 1s linear infinite;

}

.spinner-overlay2 {
    animation: rotate2 1s linear infinite;
}


@keyframes rotate1 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate2 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
