#loader {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 40;
  background: rgb(22, 22, 33);
  backdrop-filter: blur(6px);
}
#loader .path {
  stroke-dasharray: 2510;
  stroke-dashoffset: 2510;
  stroke-width: 3;
  stroke-linecap: round;
  -webkit-animation: dash 4s linear infinite;
          animation: dash 4s linear infinite;
  fill-opacity: 0;
  stroke: rgb(255, 255, 255);
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 2110;
    opacity: 0;
    stroke: rgb(255, 255, 255);
  }
  15% {
    opacity: 1;
    stroke: rgb(255, 255, 255);
  }
  70% {
    opacity: 1;
    stroke: rgb(255, 255, 255);
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
    stroke: rgb(255, 255, 255);
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 2110;
    opacity: 0;
    stroke: rgb(255, 255, 255);
  }
  15% {
    opacity: 1;
    stroke: rgb(255, 255, 255);
  }
  70% {
    opacity: 1;
    stroke: rgb(255, 255, 255);
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
    stroke: rgb(255, 255, 255);
  }
}