*::-webkit-scrollbar {
    width: 0.5vw;
  }
  
  *::-webkit-scrollbar-track {
    border-radius: 20px;
    background: #f1f1f1;
  }
  
  *::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: #2f588c;
  }
  
  .scroll-no-bg::-webkit-scrollbar {
    width: 0.5vw;
  }
  
  .scroll-no-bg::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: #2f588c;
  }
  
  #spinner {
    z-index: 100000;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(47, 88, 140, 0.2);
  }
  
  #spinner .spinner-border {
    color: #2f588c;
    width: 4rem;
    height: 4rem;
    border-width: .4em;
  
    position: relative;
    top: 50%;
    margin-top: -50px;
  }