﻿.loaderModalBackground {
    background: none;
    box-shadow: none;
    border: none;
}

#rotator-load {
    position: relative;
    width: 228px;
    height: 228px;
    background-image: url(../../../img/loaderModal/loader-outer.svg);
    background-repeat: no-repeat;
    animation: rotations 3s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #rotator-load:before {
        position: absolute;
        content: url(../../../img/loaderModal/loader-middle.svg);
        display: block;
        animation: rotations 1s linear infinite;
        animation-direction: reverse;
    }

    #rotator-load:after {
        position: absolute;
        content: url(../../../img/loaderModal/loader-inner.svg);
        display: block;
    }

@keyframes rotations {
    to {
        transform: rotate(360deg)
    }
}