/* css/licence_button_animations.css */
#get_liscence.option1 {
  animation: licenceOption1Scale 1.4s ease-in-out infinite;
  transform-origin: center;
}

#get_liscence.option1:hover {
  animation: none;
  transform: scale(1.084);
}

#get_liscence.option2 {
  animation: licenceOption2Move 3s ease-in-out infinite;
  transform-origin: center;
}

#get_liscence.option2:hover {
  animation-play-state: paused;
}

#get_liscence.option3 {
  z-index: 0;
  isolation: isolate;
  background: transparent;
  animation: licenceOption3Scale 1.4s ease-in-out infinite;
  transform-origin: center;
  transition: transform 0.6s ease;
}

#get_liscence.option3::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 10px;
  background: linear-gradient(to bottom, #dce8c8, #c7d7a7);
  animation: licenceOption3Shadow 1.4s ease-in-out infinite;
  transition: box-shadow 0.6s ease, transform 0.6s ease;
}

#get_liscence.option3:hover {
  animation: none;
  transform: scale(1.084);
}

#get_liscence.option3:hover::before {
  animation: none;
  box-shadow: 0 0 18px rgba(120, 145, 67, 0.55);
  transform: scale(1);
}

#get_liscence.option4,
#get_liscence.option5 {
  z-index: 0;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  border: 2px solid transparent;
}

#get_liscence.option4::before,
#get_liscence.option5::before {
  content: "";
  position: absolute;
  inset: -70%;
  z-index: -2;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 245deg,
    #c99518 278deg,
    #c99518 305deg,
    #c99518 340deg,
    transparent 360deg
  );
  animation: licenceOption4GoldBorder 1.6s linear infinite;
}

#get_liscence.option4::after,
#get_liscence.option5::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(to bottom, #dce8c8, #c7d7a7);
}

#get_liscence.option5 {
  animation: licenceOption1Scale 1.4s ease-in-out infinite;
  transform-origin: center;
}

#get_liscence.option5:hover {
  animation: none;
  transform: scale(1.084);
}

@keyframes licenceOption1Scale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

@keyframes licenceOption2Move {
  0%, 33.33%, 100% {
    transform: translateX(0);
  }
  8.33% {
    transform: translateX(-6px);
  }
  16.66% {
    transform: translateX(6px);
  }
  25% {
    transform: translateX(-3.6px);
  }
}

@keyframes licenceOption3Scale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.084);
  }
}

@keyframes licenceOption3Shadow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(120, 145, 67, 0);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 18px rgba(120, 145, 67, 0.55);
    transform: scale(1);
  }
}

@keyframes licenceOption4GoldBorder {
  to {
    transform: rotate(360deg);
  }
}
