.bg-loading{
  background-image: url("/content/images/spash-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 70vh;
  width: 100vw;
}
.center-div{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
}
.f-loading {
  background-image: url("/content/images/f-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 15vh;
  width: 40vw;
}
.continuous-4 {
  width: 120px;
  height: 22px;
  border-radius: 40px;
  color: #8bc540;
  border: 2px solid;
  position: relative;
  overflow: hidden;
}

.continuous-4::before {
  content: "";
  position: absolute;
  margin: 2px;
  width: 14px;
  top: 0;
  bottom: 0;
  left: -20px;
  border-radius: inherit;
  background: currentColor;
  box-shadow: -10px 0 12px 3px currentColor;
  clip-path: polygon(0 5%, 100% 0,100% 100%,0 95%,-30px 50%);
  animation: ct4 1s infinite linear;
}
@keyframes ct4 {
  100% {left: calc(100% + 20px)}
}
.loader-wrapper {
  position: fixed;
  z-index: 1090;
  height: 100vh;
  width: 100vw;
  background-color: rgba(240, 240, 240, 0.5);
}
