@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes diagonal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(15px);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@-moz-keyframes diagonal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(15px);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@-o-keyframes diagonal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(15px);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@keyframes diagonal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(15px);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.c-cta-discount {
  background: url("/wp-content/themes/gougo/img/cta-discount-background.svg") center center no-repeat;
  min-height: 410px;
  position: relative;
  overflow: hidden;
  margin: 30px 0;
  background-size: cover;
  border-radius: 5px;
}
.c-cta-discount__left-column {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: 15px 30px;
}
.c-cta-discount__top-title {
  font-size: 1em;
  text-transform: uppercase;
  width: 100%;
  color: #ffffff;
  font-family: "Quicksand", sans-serif;
  text-align: center;
}
@media (max-width: 575px) {
  .c-cta-discount__top-title {
    font-size: 0.875em;
  }
}
.c-cta-discount__title {
  font-size: 2em;
  width: 100%;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  text-wrap: balance;
}
@media (max-width: 575px) {
  .c-cta-discount__title {
    font-size: 1.5em;
  }
}
.c-cta-discount__subtitle {
  line-height: 1.4;
  font-size: 0.9375em;
  color: white;
  text-align: center;
  margin-top: 7px;
  font-family: "Roboto", sans-serif;
  text-wrap: balance;
}
@media (max-width: 575px) {
  .c-cta-discount__subtitle {
    font-size: 0.875em;
  }
}
.c-cta-discount__banner {
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 100%;
  pointer-events: none;
}
.c-cta-discount__banner img {
  max-width: 55%;
}
@media (max-width: 1200px) {
  .c-cta-discount__banner img {
    max-width: 50%;
  }
}
.c-cta-discount__box {
  background-image: linear-gradient(54deg, #780010 -12%, #a21521 84%, #a31622 84%);
  width: 350px;
  padding: 18px 25px 16px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  float: right;
  margin: 10px 30px 20px 30px;
}
@media (max-width: 767px) {
  .c-cta-discount__box {
    width: calc(100% - 60px);
    margin: 10px 30px 150px 30px;
  }
}
.c-cta-discount__box-title {
  color: white;
  text-wrap: balance;
  text-align: center;
}
.c-cta-discount__quantity {
  color: white;
  font-size: 4.625em;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-cta-discount__quantity {
    font-size: 3em;
  }
}
.c-cta-discount__box-subtitle {
  color: white;
}
.c-cta-discount__button {
  background-color: #ffe75c;
  color: #ff4438;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0;
}
.c-cta-discount__info {
  color: #ffe75c;
  display: flex;
  gap: 5px;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
}
.c-cta-discount__link-icon {
  display: block;
  line-height: 120%;
}
.c-cta-discount__link-icon svg {
  width: 14px;
  height: 14px;
}
.c-cta-discount__link-text {
  font-size: 0.8125em;
  text-decoration: underline;
  cursor: pointer;
}