/*
===============================================================================================================================================================================
------------------------------------------------------------------------>>> :psp Loader: <<<-----------------------------------------------------------------------------------
===============================================================================================================================================================================
*/
.loadingbox {
  width: 63px;
  height: 60px;
  background: #1c277f;
}

.loadingtxt {
  font-size: 28px;
  font-family: "Tahoma", sans-serif;
  font-weight: 900;
  text-align: center;
  padding-top: 7px;
}
.loadingtxt span {
  display: inline-block;
  margin: 0 0.05em;
  position: relative;
  color: rgba(238, 238, 238, 0.25);
}
.loadingtxt span::after {
  position: absolute;
  top: 0;
  left: 0;
  content: attr(data-text);
  color: #fff;
  opacity: 0;
  transform: scale(1.5);
  -webkit-animation: loadingtxt 3s infinite;
          animation: loadingtxt 3s infinite;
}
.loadingtxt span:nth-child(2)::after {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.loadingtxt span:nth-child(3)::after {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.loadingtxt span:nth-child(4)::after {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.loadingtxt span:nth-child(5)::after {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.loadingtxt span:nth-child(6)::after {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.loadingtxt span:nth-child(7)::after {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

@-webkit-keyframes loadingtxt {
  0%, 75%, 100% {
    transform: scale(1.8);
    opacity: 0;
  }
  25%, 50% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes loadingtxt {
  0%, 75%, 100% {
    transform: scale(1.8);
    opacity: 0;
  }
  25%, 50% {
    transform: scale(1);
    opacity: 1;
  }
}/*# sourceMappingURL=pspscreenscss.css.map */