.ss-loading {
  position: relative;
  &:before {
    content: '';
    position: absolute;
    z-index: 80;
    background: rgba( 0, 0, 0, 0.15 );
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  &:after {
    position: absolute;
    z-index: 90;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    content: " ";
    display: block;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 5px solid $purple;
    border-color: $purple $white $purple $white;
    animation: lds-dual-ring 1.2s linear infinite;
  }
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}