.no-scroll {
   overflow: hidden;
}

/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }
  
  /* Transparent Overlay */
  .loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8));
    overflow: hidden;
    /* background: #333; */
    background: -webkit-radial-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8));
  }
  
 
  .containers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

  }
  .loading-label{
    position: absolute;
    color: white;
    right: 130px;
  }
  .item {
    width: 50px;
    height: 50px;
    position: absolute;
  }
  
  .item-1 {
    background-color: #00ba69;
    top: 0;
    left: 0;
    z-index: 1;
    animation: item-1_move 1.8s cubic-bezier(.6,.01,.4,1) infinite;
  }
  
  .item-2 {
    background-color: #631f6f;
    top: 0;
    right: 0;
    animation: item-2_move 1.8s cubic-bezier(.6,.01,.4,1) infinite;
  }
  
  .item-3 {
    background-color: #098d56;
    bottom: 0;
    right: 0;
    z-index: 1;
    animation: item-3_move 1.8s cubic-bezier(.6,.01,.4,1) infinite;
  }
  
  .item-4 {
    background-color: #44217A;
    bottom: 0;
    left: 0;
    animation: item-4_move 1.8s cubic-bezier(.6,.01,.4,1) infinite;
  }
  
  @keyframes item-1_move {
    0%, 100% {transform: translate(0, 0)} 
    25% {transform: translate(0, 50px)} 
    50% {transform: translate(50px, 50px)} 
    75% {transform: translate(50px, 0)} 
  }
  
  @keyframes item-2_move {
    0%, 100% {transform: translate(0, 0)} 
    25% {transform: translate(-50px, 0)} 
    50% {transform: translate(-50px, 50px)} 
    75% {transform: translate(0, 50px)} 
  }
  
  @keyframes item-3_move {
    0%, 100% {transform: translate(0, 0)} 
    25% {transform: translate(0, -50px)} 
    50% {transform: translate(-50px, -50px)} 
    75% {transform: translate(-50px, 0)} 
  }
  
  @keyframes item-4_move {
    0%, 100% {transform: translate(0, 0)} 
    25% {transform: translate(50px, 0)} 
    50% {transform: translate(50px, -50px)} 
    75% {transform: translate(0, -50px)} 
  }