.spin-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,.4);
}
.spin, .spin:after {
    animation: load8 1.1s infinite linear;;
    border-radius: 50%;
    width: 6.3em;
    height: 6.3em;
    font-size: 8px;
    position: relative;
    text-indent: -9999em;
    border-top: .5em solid var(--orange);
    border-right: .5em solid var(--orange);
    border-bottom: .5em solid var(--orange);
    border-left: .5em solid rgba(240, 240, 240, 0.6);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
@keyframes spin {
    0%   {transform:rotateY(0deg) rotateX(0deg)}
    50%  {transform:rotateY(180deg);}
    100%  {transform:rotateX(180deg);}
}
