#cta-button-shine-2 {
  margin-top: 20px;
  margin-bottom: 5px;
  text-align: center;
}

#cta-button-shine-2 .cta-button-2 {
  background-color: transparent !important;
}

#cta-button-shine-2 .cta-button-2 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 97%;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  border: none;
  border-radius: 0;
  text-decoration: none;
  position: relative;
  z-index: 5;
  overflow: hidden;
  box-sizing: border-box;
  animation: pop_out 5s linear 1s normal infinite;
}

#cta-button-shine-2 .button-terms {
  font-size: 9px;
    color: #918e8e;
    line-height: 15px;
}

#cta-button-shine-2 .cta-button-2 a::before {
  content: "";
  position: absolute;
  left: 5%;
  top: 0;
  width: 20%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transform: skew(-20deg, 0deg);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.3);
}

#cta-button-shine-2 .cta-button-2 a:hover::before {
  opacity: 0.4;
  left: 88%;
  box-shadow: -15px 0 0 rgba(255, 255, 255, 0.3);
}

#cta-button-shine-2 .cta-button-2 a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  background: rgba(255, 255, 255, 0.3);
  width: 15%;
  height: 100%;
  transform: skew(-20deg, 0deg);
  animation: shine-sweep 3s infinite 1s;
  z-index: 6;
}

#cta-button-shine-2 .cta-button-2 a strong {
  color: inherit;
  font-weight: inherit;
}

@keyframes shine-sweep {
  0%   { left: -30%; }
  50%  { left: 130%; }
  100% { left: 130%; }
}

@keyframes pop_out {
  3%   { transform: scale(1.05); }
  6%   { transform: scale(1); }
  9%   { transform: scale(1.05); }
  12%, 100% { transform: scale(1); }
}