.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;   
  z-index: 9999;
}

.html,body{
  scroll-behavior: smooth!important;
}

.loading-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  width: 100%;
  height: 100px;
  line-height: 100px;
}
.loading-text span {
  display: inline-block;
  margin: 0 1px;
  color: #fb8f19;
  font-size: 24px;
  font-weight: 700;
  
  
}
.loading-text span:nth-child(1) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 0.5s 0s infinite linear alternate;
          animation: blur-text 0.5s 0s infinite linear alternate;
}
.loading-text span:nth-child(2) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 0.5s  0.2s infinite linear alternate;
          animation: blur-text 0.5s  0.2s infinite linear alternate;
}
.loading-text span:nth-child(3) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 0.5s  0.4s infinite linear alternate;
          animation: blur-text 0.5s 0.4s infinite linear alternate;
}
.loading-text span:nth-child(4) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 0.5s  0.6s infinite linear alternate;
          animation: blur-text 0.5s  0.6s infinite linear alternate;
}
.loading-text span:nth-child(5) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 0.5s 0.8s infinite linear alternate;
          animation: blur-text 0.5s  0.8s infinite linear alternate;
}


@-webkit-keyframes blur-text {
  0% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  100% {
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
}

@keyframes blur-text {
  0% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  100% {
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
}



*:focus {
    outline: none;
}


.add-button {
  position: absolute;
  top: 1px;
  left: 1px;
}