#p_prldr {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 30;
}

.contpre {
  width: 90%;
  max-width: 500px;
  height: 230px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.contpre span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  color: #6c6c6c;
  font-size: 26px;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-family: 'BebasNeue', sans-serif;
}

.loader {
  position: relative;
  max-width: 150px;
  height: fit-content;
  width: 100%;
}

.loader img {
  width: 100%;
}

.loader::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(15px, 0);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background: #9dd103;
  animation-name: blinker;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(1.0, 0, 0, 1.0);
  animation-duration: 1.5s;
  -webkit-animation-name: blinker;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(1.0, 0, 0, 1.0);
  -webkit-animation-duration: 1.5s;
}

@keyframes blinker {
  from {
    opacity: 1.0;
  }

  to {
    opacity: 0.0;
  }
}

@-webkit-keyframes blinker {
  from {
    opacity: 1.0;
  }

  to {
    opacity: 0.0;
  }
}