@charset "UTF-8";

.lp_wrap .esthetic .emblem {
  position: absolute;
  top: 4.4%;
  left: 9.3%;
  width: 28%;
  overflow: hidden;
  border-radius: 41%;
}
.lp_wrap .esthetic .emblem::before {
  content: '';
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shine 3s ease-in-out infinite;
  position: absolute;
  top: -180px;
  left: 0;
  opacity: 0;
  transform: rotate(45deg);
}
@keyframes shine {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% { 
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}