@import url("https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap");
.main__inner-wrapper {
  max-width: 100% !important;
  padding: 0 !important;
}

.scaffoldFooter {
  margin-top: 0 !important;
}

.dataHtmlBlock1 {
  width: 100%;
}

.promo-sammy-mas-2024 {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  animation: general-fade 1s 500ms forwards;
}
.promo-sammy-mas-2024 .snow {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 900px;
  opacity: 0.75;
  z-index: 100;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}
.promo-sammy-mas-2024 .snow span {
  animation: snow-rotate 10s infinite;
  color: #ccc !important;
}
.promo-sammy-mas-2024 .data-loader-custom, .promo-sammy-mas-2024 .swiper-lazy-preloader {
  transform: rotate(0deg);
  width: var(--icon-medium);
  min-width: var(--icon-medium);
  max-width: var(--icon-medium);
  height: var(--icon-medium);
  min-height: var(--icon-medium);
  max-height: var(--icon-medium);
  border: 2px solid var(--color-white);
  border-top: 2px solid transparent;
  margin-bottom: 23px;
  border-radius: 50%;
  display: block;
  animation: data-loader-custom 0.65s linear infinite;
  -webkit-animation: data-loader-custom 0.65s linear infinite;
}
@keyframes data-loader-custom {
  to {
    transform: rotate(360deg);
  }
}
.promo-sammy-mas-2024 .point-styling {
  font-weight: 900;
  font-size: var(--font-size-medium);
  color: var(--color-primary);
}
.promo-sammy-mas-2024 h2 {
  font-size: var(--font-size-xxlarge);
  line-height: calc(var(--font-size-xlarge) + 9px);
  text-align: center;
  width: 100%;
  font-weight: var(--font-weight-700);
  text-transform: uppercase;
  color: rgb(4, 82, 128);
  text-shadow: 0px 2px rgb(27, 14, 36);
  font-family: "Luckiest Guy", cursive;
  letter-spacing: 2px;
  font-weight: 400;
  font-style: normal;
  animation: h2-ani linear;
  animation-timeline: view();
  animation-range: entry 0% cover 25%;
}
.promo-sammy-mas-2024 .points {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 4;
  background-color: rgb(27, 14, 36);
  color: var(--color-white);
}
.promo-sammy-mas-2024 .points .divider {
  display: block;
  width: 100%;
  height: 2px;
  background: rgb(218, 47, 45);
  background: radial-gradient(circle, rgb(218, 47, 45) 0%, rgb(27, 14, 36) 67%);
}
.promo-sammy-mas-2024 .points .data-block {
  max-width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  padding: var(--gutter) var(--gutter-half);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.promo-sammy-mas-2024 .points .data-block .points-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  font-size: var(--font-size-medium);
  font-weight: 600;
}
.promo-sammy-mas-2024 .points .data-block .points-results span:last-child {
  font-size: var(--font-size-xlarge);
  color: white;
}
.promo-sammy-mas-2024 .points .data-block .points-results span:last-child.complete {
  animation: points-complete 1s forwards;
}
@keyframes points-complete {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.5;
    color: #019155;
  }
  100% {
    scale: 1;
  }
}
.promo-sammy-mas-2024 .hero {
  background: rgb(27, 14, 36);
  background: linear-gradient(0deg, rgb(4, 82, 128) 0%, rgb(27, 14, 36) 100%);
  position: relative;
  height: 700px;
  min-height: 700px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .promo-sammy-mas-2024 .hero {
    height: 800px;
    min-height: 800px;
  }
}
@media (min-width: 1280px) {
  .promo-sammy-mas-2024 .hero {
    height: 900px;
    min-height: 900px;
  }
}
.promo-sammy-mas-2024 .hero .moon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(./img/moon.png);
  background-size: 800px;
  background-repeat: no-repeat;
  background-position: center 700px;
  scale: 6;
  opacity: 0;
  animation: moon ease-out 2s 0.2s forwards, moon-flicker 10s 0.2s infinite;
}
@keyframes moon {
  from {
    background-position: center 700px;
    scale: 6;
    opacity: 1;
  }
  to {
    background-position: center 60px;
    scale: 1.1;
    opacity: 0;
  }
}
@keyframes moon-flicker {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.9;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0.95;
  }
  45% {
    opacity: 1;
  }
  70% {
    opacity: 0.9;
  }
  80% {
    opacity: 1;
  }
  85% {
    opacity: 0.85;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0.95;
  }
}
.promo-sammy-mas-2024 .hero .bottom-snow {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  z-index: 10;
  pointer-events: none;
}
.promo-sammy-mas-2024 .hero .bottom-snow svg {
  fill: var(--color-white);
  width: 100%;
  height: 60px;
}
.promo-sammy-mas-2024 .hero .content {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: var(--gutter-half);
  position: relative;
}
.promo-sammy-mas-2024 .hero .content .logos {
  display: flex;
  justify-content: space-between;
  gap: var(--gutter);
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
}
.promo-sammy-mas-2024 .hero .content .logos img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 60px;
  max-width: 80px;
  opacity: 0;
  position: relative;
  animation: general-fade-up 1s forwards;
}
.promo-sammy-mas-2024 .hero .content .logos img:nth-child(1) {
  animation-delay: 0.2s;
}
.promo-sammy-mas-2024 .hero .content .logos img:nth-child(2) {
  animation-delay: 0.4s;
}
.promo-sammy-mas-2024 .hero .content .logos img:nth-child(3) {
  animation-delay: 0.6s;
}
.promo-sammy-mas-2024 .hero .content .logos img:nth-child(4) {
  animation-delay: 0.8s;
}
.promo-sammy-mas-2024 .hero .content .logos img:nth-child(5) {
  animation-delay: 1s;
}
.promo-sammy-mas-2024 .hero .content .title-main {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}
.promo-sammy-mas-2024 .hero .content .title-main .title {
  width: 580px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  rotate: 3deg;
  opacity: 0;
  animation: general-fade 1s 3.1s forwards;
}
.promo-sammy-mas-2024 .hero .content .sammy {
  position: relative;
  top: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.promo-sammy-mas-2024 .hero .content .sammy .sammy {
  animation: sammy-movement 2s ease 1.2s forwards, sammy-rotate 10s 2.5s ease infinite;
  transform-origin: center;
  max-width: 100%;
  width: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  rotate: 0deg;
  transform: translateY(1000px);
}
.promo-sammy-mas-2024 .hero .content .sammy .burst {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  animation: burst 1s 2.9s forwards;
  pointer-events: none;
  transform-origin: center;
  opacity: 0.4;
}
@keyframes burst {
  from {
    transform: translateY(-50%) translateX(-50%) scale(0);
  }
  to {
    transform: translateY(-50%) translateX(-50%) scale(6);
    opacity: 0;
  }
}
@keyframes sammy-movement {
  0% {
    transform: translateY(1000px) rotate(-75deg);
  }
  80% {
    transform: translateY(-100px) rotate(-20deg);
  }
  90% {
    transform: translateY(20px) rotate(10deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
@keyframes sammy-rotate {
  0% {
    rotate: 0deg;
    scale: 1;
  }
  20% {
    rotate: 4deg;
    scale: 1.05;
  }
  40% {
    rotate: -1deg;
    scale: 1;
  }
  60% {
    rotate: 2deg;
    scale: 0.85;
  }
  80% {
    rotate: -2deg;
    scale: 1.1;
  }
  100% {
    rotate: 0deg;
    scale: 1;
  }
}
.promo-sammy-mas-2024 .hero .content .title-secondary {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  top: -110px;
  opacity: 0;
  animation: general-fade 1s 3.3s forwards;
}
.promo-sammy-mas-2024 .hero .content .title-secondary .title-2 {
  width: 700px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  rotate: -4deg;
}
.promo-sammy-mas-2024 .how-it-works {
  margin: var(--gutter) 0;
}
.promo-sammy-mas-2024 .how-it-works .swiper {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}
.promo-sammy-mas-2024 .how-it-works .swiper .swiper-slide {
  animation: how-it-works-slide linear;
  animation-timeline: view();
  animation-range: entry 0% contain 25%;
}
.promo-sammy-mas-2024 .how-it-works .swiper .swiper-slide .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: var(--gutter);
}
.promo-sammy-mas-2024 .how-it-works .swiper .swiper-slide .content img {
  max-width: 100%;
  max-width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.promo-sammy-mas-2024 .how-it-works .swiper .swiper-slide .content h3 {
  text-align: center;
  width: 100%;
}
.promo-sammy-mas-2024 .prizes {
  margin-bottom: var(--gutter);
  padding: var(--gutter-half);
}
.promo-sammy-mas-2024 .prizes .prize-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: var(--gutter-half);
  overflow: hidden;
  transition: max-height 1500ms ease;
  position: relative;
}
.promo-sammy-mas-2024 .prizes .prize-list::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35vh;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  transition: opacity 500ms linear;
  pointer-events: none;
}
.promo-sammy-mas-2024 .prizes .prize-list.expand::before {
  opacity: 0;
}
.promo-sammy-mas-2024 .prizes .prize-list .block {
  width: 100%;
  min-width: 100%;
  padding: var(--gutter-half);
  padding-top: var(--gutter);
  border-radius: var(--gutter-half);
  flex-direction: column;
  gap: var(--gutter-half);
  position: relative;
  overflow: hidden;
  display: flex;
  border: solid 2px var(--color-gray-light);
}
@media (min-width: 768px) {
  .promo-sammy-mas-2024 .prizes .prize-list .block {
    width: 260px;
    min-width: 260px;
  }
}
.promo-sammy-mas-2024 .prizes .prize-list .block.eligible::after, .promo-sammy-mas-2024 .prizes .prize-list .block.not-eligible::after {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  padding: 8px 16px;
  border-bottom-left-radius: var(--gutter-half);
}
.promo-sammy-mas-2024 .prizes .prize-list .block.eligible {
  border: solid 2px #019155;
}
.promo-sammy-mas-2024 .prizes .prize-list .block.eligible::after {
  content: "Eligible";
  background-color: #019155;
  color: var(--color-white);
}
.promo-sammy-mas-2024 .prizes .prize-list .block.not-eligible {
  border: solid 2px var(--color-gray-light);
}
.promo-sammy-mas-2024 .prizes .prize-list .block.not-eligible::after {
  content: attr(points-remaining);
  background-color: var(--color-gray-light);
  font-weight: 600;
  color: var(--color-gray);
}
.promo-sammy-mas-2024 .prizes .prize-list .block:hover::before {
  content: "";
  top: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  animation: shine-block 500ms forwards;
  opacity: 0.6; /* FF3.6+ */ /* Chrome,Safari4+ */ /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#007db9e8",GradientType=1 ); /* IE6-9 */
}
.promo-sammy-mas-2024 .prizes .prize-list .block:hover img {
  scale: 1.15;
}
.promo-sammy-mas-2024 .prizes .prize-list .block .block-img img {
  max-width: 100%;
  min-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 120px;
  min-height: 120px;
  transition: scale 250ms ease;
}
.promo-sammy-mas-2024 .prizes .prize-list .block .block-content h3 {
  padding: 0;
  margin: 0;
  margin-top: 5px;
}
.promo-sammy-mas-2024 .prizes .prize-list-expand {
  margin: 0 auto;
  display: block;
  margin-top: var(--gutter-half);
}
.promo-sammy-mas-2024 .points-model {
  margin-bottom: var(--gutter);
  padding: var(--gutter-half);
}
.promo-sammy-mas-2024 .points-model .point-table {
  display: none;
  flex-direction: column;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  animation: general-fade-up 1s forwards;
}
.promo-sammy-mas-2024 .points-model .point-table.relative {
  display: flex;
}
.promo-sammy-mas-2024 .points-model .point-table.active {
  display: flex;
}
.promo-sammy-mas-2024 .points-model .point-table .heading {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: var(--color-gray-lighter);
  padding: var(--gutter-half);
  margin-bottom: 12px;
  font-weight: var(--font-weight-600);
}
.promo-sammy-mas-2024 .points-model .point-table ul {
  list-style: none;
  padding: 0 var(--gutter-half);
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  max-height: 400px;
  overflow: hidden;
  position: relative;
  transition: max-height 300ms ease;
}
.promo-sammy-mas-2024 .points-model .point-table ul::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35vh;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  transition: opacity 300ms linear;
  pointer-events: none;
  transition: opacity 250ms linear;
}
.promo-sammy-mas-2024 .points-model .point-table ul:hover::before {
  opacity: 0;
}
.promo-sammy-mas-2024 .points-model .point-table ul li {
  display: flex;
  justify-content: space-between;
  text-align: left;
  padding: 8px;
  gap: 20px;
}
.promo-sammy-mas-2024 .points-model .point-table ul li:hover {
  background-color: rgb(240, 246, 248);
}
.promo-sammy-mas-2024 .points-model .point-table .expand-table {
  margin: 0 auto;
  margin-top: var(--gutter-half);
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.promo-sammy-mas-2024 .points-model .point-table.expanded ul {
  max-height: 9000px;
}
.promo-sammy-mas-2024 .points-model .point-table.expanded ul::before {
  opacity: 0;
}
.promo-sammy-mas-2024 .points-model .result-search-model-table {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: var(--gutter-half);
}
.promo-sammy-mas-2024 .points-model .result-search-model-table input {
  max-width: 100%;
  width: 500px;
  margin: 0 auto;
  margin-bottom: var(--gutter-half);
}
.promo-sammy-mas-2024 .points-model .result-search-model-table .heading {
  display: none;
}
.promo-sammy-mas-2024 .points-model .result-search-model-table ul::before {
  display: none !important;
}
.promo-sammy-mas-2024 .points-model .points-table {
  display: flex;
  flex-direction: column;
  gap: var(--gutter-half);
  justify-content: center;
  align-items: center;
}
.promo-sammy-mas-2024 .points-model .points-table-bottom {
  display: flex;
  width: 100%;
}
.promo-sammy-mas-2024 .actions {
  padding-bottom: 6rem;
}
.promo-sammy-mas-2024 .actions .links {
  justify-content: center;
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
}
.promo-sammy-mas-2024 .actions .links a::after {
  filter: invert(100%);
}

@keyframes snow-rotate {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}
@keyframes shine-block {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes how-it-works-slide {
  from {
    rotate: 35deg;
  }
  to {
    rotate: 0deg;
  }
}
@keyframes h2-ani {
  from {
    scale: 0.5;
  }
  to {
    scale: 1;
  }
}/*# sourceMappingURL=style.css.map */