.loading-screen {
    background-color: white;
    width: 100%;
    padding: 150px 20px;
    display: flex;
    justify-content: center;
  }
  
  .loading-screen-sm {
    background-color: white;
    width: 100%;
    display: flex;
    padding: 50px;
    justify-content: center;
  }
  
  .loading-msg {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-variant: normal;
    font-weight: 500;
    line-height: 26.4px;
    color: #555;
    text-align: center;
  }
  
  .loading-msg-container {
    width: 350px;
    display: block;
  }
  
  .spinner {
    height: 6vw;
    font-size: 10px;
    position: relative;
    text-align: center;
  }
  
  .spinner > div {
    background-color: #555;
    height: 100%;
    width: 0.7vw;
    display: inline-block;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
  }
  
  .spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
  }
  
  .spinner .rect3 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
  }
  
  .spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
  }
  
  .spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
  }
  
  @-webkit-keyframes sk-stretchdelay {
    0%,
    40%,
    100% {
      -webkit-transform: scaleY(0.4);
    }
    20% {
      -webkit-transform: scaleY(1);
    }
  }
  
  @keyframes sk-stretchdelay {
    0%,
    40%,
    100% {
      transform: scaleY(0.4);
      -webkit-transform: scaleY(0.4);
    }
    20% {
      transform: scaleY(1);
      -webkit-transform: scaleY(1);
    }
  }
  