/* SET HEIGHT */
body .perksBanner{
  height: 48px;
}
@media screen and (max-width: 990px) {
  body .perksBanner{
    height: 74px;
  }
}
/* SET BG-COLOR GENERIC */
body .perksBanner-content.o21_bg4 {
  background: #f5db00;
}
/* SET BG-COLOR US */
body.country-us .perksBanner-content.o21_bg4,
body.country-us .perksBanner.o21_bg4 {
  background: #5433FF !important;
  background: -webkit-linear-gradient(to right, #A5FECB, #20BDFF, #5433FF) !important;
  background: linear-gradient(to right, #A5FECB, #20BDFF, #5433FF) !important;
  background-size: 400% 400% !important;
  animation: gradient 8s ease infinite;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* LINK IN PERKS NOT CLICKABLE */
.ct_perks_not_clickable a{
  cursor: default;
  pointer-events: none;
}
/* FIX FONT-SIZE TITLE IN PERKS */
.perksBanner-link-container .o21_text6{
  font-size: 14px;
}