@import "https://use.fontawesome.com/releases/v5.0.10/css/all.css";

:root {
  --swiper-pagination-color: #000;
}

.paid-mode {
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(270deg, #ff6b6b, #ffd93d, #1dd1a1, #ff6b6b);
  border-radius: 3px;
  margin-right: 0;
  padding: 20px 40px;
  font-family: PT Sans, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  background-size: 600% 600%;
  animation: paidModeAnimation 4s ease infinite;
  transition: transform 0.3s ease, background-color .5s cubic-bezier(.789, .159, .25, 1), color .2s cubic-bezier(.789, .159, .25, 1);
}

@keyframes paidModeAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.paid-mode:hover {
  transform: scale(1.05);
}

.paid-mode-fill {
  color: #ffffff;
  background: linear-gradient(270deg, #ff6b6b, #ffd93d, #1dd1a1, #ff6b6b);
  background-size: 600% 600%;
  animation: paidModeAnimation 4s ease infinite;
}

.paid-mode-fill:hover {
  color: #ffffff;
  background: linear-gradient(270deg, #ff6b6b, #ffd93d, #1dd1a1, #ff6b6b);
  background-size: 600% 600%;
}

.login-link-wrapper {
  margin-top: 12px;
  text-align: center;
}

.paid-mode-link {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(270deg, #ff6b6b, #ffd93d, #1dd1a1, #ff6b6b);
  background-size: 600% 600%;
  animation: paidModeAnimation 4s ease infinite;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.paid-mode-link:hover {
  text-decoration: underline;
}
