@keyframes delay {
  0%, 40%, 100% {
    transform: scaleY(0.05);
    -webkit-transform: scaleY(0.05);
 }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
 }
}
.loading-overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.5);
}
.loading-div {
  width: 150px;
  height: 150px;
  border-radius: 15px;
  background-color: rgba( 17,25,88, 0.6 );
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader {
  margin: 0 auto;
  width: 60px;
  height: 50px;
  text-align: center;
  font-size: 10px;
}
.loader > div {
  height: 100%;
  width: 8px;
  display: inline-block;
  float: left;
  margin-left: 2px;
  animation: delay 0.8s infinite ease-in-out;
}
.loader .bar1 {
  background-color: #4d84ff;
}
.loader .bar2 {
  background-color: #6977ff;
  animation-delay: -0.7s;
}
.loader .bar3 {
  background-color: #7970ff;
  animation-delay: -0.6s;
}
.loader .bar4 {
  background-color: #8c68ff;
  animation-delay: -0.5s;
}
.loader .bar5 {
  background-color: #a85cff;
  animation-delay: -0.4s;
}
.loader .bar6 {
  background-color: #c150ff;
  animation-delay: -0.3s;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}