body.fullPageLoader{
    height: 100%;
    overflow: scroll;
}

#fullLoader {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1000;
}

body.fullPageLoader #fullLoader {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


#triangle {
  -webkit-transform-origin: 50% 65%;
          transform-origin: 50% 65%;
}

#triangle polygon {
  stroke-dasharray: 50;
  -webkit-animation: dash 2.5s cubic-bezier(0.35, 0.04, 0.63, 0.95) infinite;
          animation: dash 2.5s cubic-bezier(0.35, 0.04, 0.63, 0.95) infinite;
}

@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 200;
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: 200;
  }
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}






bgloader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 0%;
  padding-top: 0%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 50%;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  animation: delayFill 2.8s ease-in-out infinite;
}

loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5%;
  height: 0;
  padding-top: 5%;
  background: rgba(0, 0, 0, 0.025);
  border-radius: 50%;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  animation: pulse 2.8s ease-in-out infinite;
}
loader:before {
  content: '';
  border-width: 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.035);
  position: absolute;
  opacity: 0;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  border-radius: 50%;
  box-sizing: border-box;
  animation: outerPulse 2.8s linear infinite;
}
loader:after {
  content: '';
  background: rgba(0, 0, 0, 0.03);
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-sizing: border-box;
  animation: innerPulse 2.8s ease-in-out infinite;
}

@keyframes delayFill {
  0%,
  52% {
    width: 0%;
    height: 0%;
    padding-top: 0%;
    border-radius: 50%;
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
  74% {
    width: 160%;
    padding-top: 160%;
    border-radius: 50%;
    opacity: 1;
  }
  90%,
  100% {
    width: 160%;
    padding-top: 160%;
    opacity: 0;
  }
}
@keyframes innerPulse {
  0% {
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
  }
  19%,
  33% {
    top: 28%;
    left: 28%;
    width: 44%;
    height: 44%;
  }
  63%,
  100% {
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
  }
}
@keyframes pulse {
  0% {
    width: 5%;
  }
  23%,
  33% {
    width: 50%;
    padding-top: 50%;
  }
  60% {
    width: 1%;
    padding-top: 1%;
  }
  68%,
  100% {
    width: 4%;
    padding-top: 4%;
  }
}
@keyframes outerPulse {
  0% {
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    opacity: 1;
    border-width: 10px;
  }
  32% {
    border-width: 1px;
    opacity: 1;
  }
  34%,
  100% {
    opacity: 0;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    border-width: 2px;
  }
}
