.loader-type-12 {
  width: 250px;
  height: 150px;
}
.loader-type-12 span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: .5;
  color: #d70947;
  display: block;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.loader-type-12 div {
  width: 150px;
  height: 20px;
  overflow: hidden;
  background: transparent;
  position: relative;
}
.loader-type-12 div:before {
  content: "";
  width: calc(100% - 4px);
  height: 20px;
  position: absolute;
  top: 1px;
  left: 2px;
  background: #d70947;
  transform: translateX(-100%);
  animation: loader-type-12_anim 3s linear infinite;
}
.loader-type-12 div:after {
  content: "";
  width: calc(100% - 4px);
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #d70947;
}

@keyframes loader-type-12_anim {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

/*# sourceMappingURL=loader_type_12.css.map */
