/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* Minimal CSS reset */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

img {
  max-width: 100%;
  height: auto;
}

strong {
  font-weight: 700;
}

button {
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: 'Proxima Nova';
}
/* --- */

/* Variables */
:root {
  --mm-white: #ffffff;
  --mm-orange: #eb6d21;
  --mm-red: #ff0000;
  --mm-black: #000000;
}
/* --- */

@font-face {
  font-family: 'Proxima Nova';
  src: url('fonts/ProximaNova/Mark-Simonson-Proxima-Nova-Light.otf')
    format('opentype');
  font-weight: 300;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('fonts/ProximaNova/Mark-Simonson-Proxima-Nova-Regular.otf')
    format('opentype');
  font-weight: 400;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('fonts/ProximaNova/Mark-Simonson-Proxima-Nova-Bold.otf')
    format('opentype');
  font-weight: 700;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('fonts/ProximaNova/Mark-Simonson-Proxima-Nova-Black.otf')
    format('opentype');
  font-weight: 900;
}

body {
  font-family: 'Proxima Nova';
  color: var(--mm-white);
}

/* Header */
.header {
  max-width: 1168px;
  margin: 0 auto;
}

.header-title {
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  color: var(--mm-white);
  text-align: center;
  text-transform: uppercase;
}

.header-subtitle {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  color: var(--mm-white);
  text-align: center;
  text-transform: uppercase;
  margin-top: 16px;
}

.header-description {
  font-size: 16px;
  font-weight: 400;
  color: var(--mm-white);
  text-align: center;
  line-height: 1.7;
  margin-top: 16px;
}
/* --- */

.gradient-section {
  background: -o-linear-gradient(
      194deg,
      #f7a800 0%,
      #ee9001 19%,
      #d95306 58%,
      #c00b0c 100%
    ),
    var(--mm-white);
  background: linear-gradient(
      256deg,
      #f7a800 0%,
      #ee9001 19%,
      #d95306 58%,
      #c00b0c 100%
    ),
    var(--mm-white);
}

/* Section hero */
.section-hero {
  width: 100%;
}

.section-hero > picture > img {
  width: 100%;
  max-width: unset;
}
/* --- */

/* Section mix introduction */
.section-mix-introduction {
  max-width: calc(1175px + 80px);
  margin: 0 auto;
  padding: 0 40px;
}

.intro-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.intro-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 36px 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  border-radius: 20px;
  border: 3px solid var(--mm-white);
  background: rgba(224, 35, 33, 0.4);
  margin-top: 48px;
  text-align: center;
}

.intro-box-content > p {
  color: var(--mm-white);
  text-align: center;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 147.059% */
}

.intro-box-content > p > span {
  text-decoration: underline;
}

.intro-box-content > img {
  max-height: 46px;
  margin: 16px 0;
}

.intro-box-content > p > a {
  color: var(--mm-white);
  text-decoration: underline;
}

.intro-box > svg {
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 76px;
  height: 76px;
}

.intro-boxes-text {
  color: var(--mm-white);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  margin-top: 16px;
}

.intro-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
}

.intro-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 32px 0;
  color: var(--mm-white);
  background-color: transparent;
  border: 4px solid var(--mm-white);
  border-radius: 8px;
  width: 100%;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.intro-icon-background {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  border: 3px solid var(--mm-white);
  border-radius: 50%;
  padding: 10px;
  height: 56px;
  width: 56px;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.intro-icon-background.second {
  background-color: var(--mm-orange);
  border-color: var(--mm-orange);
}

.intro-icon-background > svg {
  width: 34px;
  height: 28px;
}

@media (hover: hover) {
  .intro-button:hover {
    background-color: var(--mm-white);
    color: var(--mm-orange);
  }

  .intro-button:hover .intro-icon-background {
    background-color: var(--mm-orange);
    border-color: var(--mm-orange);
  }
}

.intro-button img {
  height: 56px;
}

.intro-button span {
  font-size: 28px;
  text-align: center;
  font-weight: 900;
  line-height: 1.1;
  margin-top: 12px;
  text-transform: uppercase;
}
/* --- */

/* Section mix */

.section-mix {
  margin: 0 auto;
  margin-top: 72px;
  padding: 0 40px;
}

.mixing-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mixing-stage.hidden {
  display: none;
}

.shuffle-stage {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  max-width: 570px;
  margin: 0 auto;
  margin-top: 40px;
}

.shuffle-element {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}

.shuffle-image-placeholder {
  visibility: hidden;
  pointer-events: none;
}

.shuffle-image-placeholder > img {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
}

.shuffle-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.shuffle-image > img {
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.shuffle-loader {
  visibility: hidden;
  position: absolute !important;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
}

.shuffle-loader.visible {
  visibility: visible;
}

.shuffle-image.visible {
  visibility: visible;
}

.shuffle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: var(--mm-white);
  border: 4px solid var(--mm-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 324px;
  padding: 10px;
  border-radius: 8px;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  z-index: 10;
  gap: 12px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  -moz-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.shuffle-icon-background {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 3px solid var(--mm-orange);
  background-color: var(--mm-orange);
  border-radius: 50%;
  padding: 6px;
  height: 44px;
  width: 44px;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

@media (hover: hover) {
  .shuffle-button:hover {
    background-color: var(--mm-orange);
  }

  .shuffle-button:hover span {
    color: var(--mm-white);
  }

  .shuffle-button:hover .shuffle-icon-background {
    border-color: var(--mm-white);
  }
}

.shuffle-icon-background > svg {
  height: 28px;
  width: 34px;
}

.shuffle-button span {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--mm-orange);
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.mix-button {
  display: block;
  background-color: var(--mm-white);
  border-radius: 2px;
  text-align: center;
  padding: 4px 26px;
  color: var(--mm-black);
  font-size: 20px;
  font-weight: 700;
  line-height: 2.1;
  margin: 0 auto;
  margin-top: 40px;
  white-space: nowrap;
  text-transform: uppercase;
  width: 100%;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  max-width: 530px;
}

@media (hover: hover) {
  .mix-button:hover {
    background-color: var(--mm-red);
    color: var(--mm-white);
  }
}

/* Mix result */
.mix-result {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mix-result.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mix-result-image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--mm-white);
  padding: 10px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}

.mix-result-image-container > picture {
  position: relative;
}

.mix-result-image-container > picture.first::before {
  content: '';
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 4%;
  height: 60px;
  width: 50px;
  background-image: url(assets/1st-icon.png);
}

.mix-result-image-container img {
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  max-height: 398px;
}

.mix-result .header {
  margin-top: 32px;
}

.mix-result-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  width: 100%;
}

.mix-result-button {
  display: block;
  border-radius: 2px;
  text-align: center;
  padding: 4px 26px;
  font-size: 20px;
  font-weight: 700;
  line-height: 2.1;
  margin: 0 auto;
  white-space: nowrap;
  text-transform: uppercase;
  width: 100%;
  border: 2px solid var(--mm-white);
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.mix-result-button:first-child {
  color: var(--mm-black);
  background-color: var(--mm-white);
}

.mix-result-button:nth-child(2) {
  background-color: transparent;
  color: var(--mm-white);
}

@media (hover: hover) {
  .mix-result-button:first-child:hover,
  .mix-result-button:nth-child(2):hover {
    background-color: var(--mm-red);
    border-color: var(--mm-red);
    color: var(--mm-white);
  }
}
/* --- */

/* Section vote */
.section-vote {
  position: relative;
  margin-top: 72px;
  padding: 0 40px;
  padding-bottom: 72px;
}

.vote-gallery-container {
  overflow: hidden;
}

.vote-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  margin-top: 40px;
  max-width: 1188px;
  -webkit-transition: margin-bottom 0.3s ease-in-out;
  -o-transition: margin-bottom 0.3s ease-in-out;
  transition: margin-bottom 0.3s ease-in-out;
}

.vote-gallery-container .vote-gallery {
  margin-bottom: 0;
}

.vote-gallery::after {
  content: '';
  -ms-flex-preferred-size: calc(50% - 9px);
  flex-basis: calc(50% - 9px);
}

.gallery-item {
  position: relative;
  -ms-flex-preferred-size: calc(50% - 9px);
  flex-basis: calc(50% - 9px);
  cursor: pointer;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.gallery-loader {
  display: none;
  margin: 80px auto;
}

.gallery-loader.visible {
  display: block;
}

.gallery-reloader {
  visibility: hidden;
  position: absolute !important;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
}

.gallery-reloader.visible {
  visibility: visible;
}

.gallery-item:not(.voted):after {
  content: '';
  background: url(assets/vote-plus-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 4%;
  right: 3%;
  height: 28px;
  width: 28px;
}

.gallery-item.voted::after {
  content: '';
  background: url(assets/voted-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 4%;
  right: 3%;
  height: 28px;
  width: 28px;
}

.gallery-item.first::before,
.gallery-item.second::before,
.gallery-item.third::before,
.gallery-item.fourth::before,
.gallery-item.fifth::before,
.gallery-item.sixth::before {
  content: '';
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 4%;
  height: 42px;
  width: 32px;
}

.gallery-item.first::before {
  background-image: url(assets/1st-icon.png);
}

.gallery-item.second::before {
  background-image: url(assets/2nd-icon.png);
}

.gallery-item.third::before {
  background-image: url(assets/3rd-icon.png);
}

.gallery-item.fourth::before {
  background-image: url(assets/4th-icon.png);
}

.gallery-item.fifth::before {
  background-image: url(assets/5th-icon.png);
}

.gallery-item.sixth::before {
  background-image: url(assets/6th-icon.png);
}

.gallery-img {
  pointer-events: none;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
}

.vote-buttons {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  gap: 16px;
  margin-top: 40px;
}

.vote-button {
  z-index: 2;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  height: 50px;
  border-radius: 2px;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

@media (hover: hover) {
  .vote-button:hover {
    background-color: var(--mm-red) !important;
    color: var(--mm-white) !important;
  }
}

.vote-button:first-child {
  background-color: var(--mm-black);
  color: var(--mm-white);
}

.vote-button:last-child {
  background-color: var(--mm-white);
  color: var(--mm-black);
}

.vote-button:last-child.disabled {
  opacity: 0.4;
  cursor: none;
  pointer-events: none;
}

.recaptcha-info {
  margin-top: 40px;
  color: var(--mm-white);
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  line-height: 17px; /* 141.667% */
}

.recaptcha-info > a {
  color: var(--mm-white);
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
}

/* --- */

.white-section {
  border-radius: 20px 20px 0px 0px;
  background-color: var(--mm-white);
  padding: 80px 0 40px 0;
  margin-top: -20px;
}

/* Years section */
.years-section {
  max-width: calc(946px + 80px);
  margin: 0 auto;
  padding: 0 40px;
}

.years-header {
  font-size: 42px;
  color: var(--mm-black);
  text-align: center;
  font-weight: 900;
  line-height: 1;
}

.years-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 64px;
  gap: 48px;
}

.years-banner img {
  width: 100%;
}

.years-banner-content {
  width: 100%;
  color: var(--mm-black);
}

.years-banner-content h4 {
  color: var(--mm-black);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.years-banner-content p {
  color: var(--mm-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 16px;
}

.years-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 48px;
  border-radius: 2px;
  background: var(--mm-black);
  color: var(--mm-white);
  text-align: center;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  width: 100%;
  height: 50px;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

@media (hover: hover) {
  .years-button:hover {
    background-color: var(--mm-red);
    color: var(--mm-white);
  }
}
/* --- */

/* Section product */
.section-product {
  margin: 0 auto;
  margin-top: 64px;
  width: 100%;
  max-width: calc(946px + 80px);
  padding: 0 40px;
}

.video-wrapper {
  position: relative;
}

.product-banner {
  cursor: pointer;
  aspect-ratio: 16 / 9;
}

.product-banner.hidden {
  pointer-events: none;
  opacity: 0;
}

@media (hover: hover) {
  .product-banner:hover .video-play-button {
    scale: 1.1;
  }
}

@media (hover: hover) {
  .product-banner:hover .video-play-button svg {
    color: #d9d9d9;
  }
}

.video-play-button {
  position: absolute;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.video-play-button svg {
  color: var(--mm-white);
  width: 64px;
  height: 64px;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.video-yt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 10px;
}
/* --- */

/* Section promotions */
.section-promotions {
  max-width: calc(980px + 80px);
  margin: 0 auto;
  margin-top: 40px;
  padding: 0 40px;
}

.promotions-header {
  color: var(--mm-black);
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.promotions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 42px;
  gap: 32px;
}

.promotion-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  width: 100%;
}

.promotion-content {
  margin-top: 16px;
  max-width: 65%;
}

.promotion-content h4 {
  color: var(--mm-black);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.222;
}

.promotion-content p {
  color: #98989b;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 6px;
}
/* --- */

/* Modal */
.modal-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.92);
  padding: 0 38px;
}

.modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  overflow-y: auto;
  position: relative;
  width: 100%;
  max-width: 574px;
  background-color: var(--mm-white);
  border-radius: 12px;
  max-height: 95%;
}

.modal-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  padding: 14px;
  background-color: transparent;
  cursor: pointer;
}

.modal-close img {
  height: 30px;
  width: 30px;
}

.modal-header {
  position: relative;
  /* max-height: 40vh; */
}

.modal-header > picture > img {
  width: 100%;
}

.modal-content {
  background-color: var(--mm-white);
  padding: 4% 6%;
}

.modal-title {
  color: var(--mm-black);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
}

.modal-description {
  color: var(--mm-black);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.1;
  margin-top: 8px;
}

.modal-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 320px;
  width: 100%;
  padding: 16px 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  margin-top: 30px;
}

.pin-code {
  color: var(--mm-black);
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.modal-button {
  border-radius: 10px;
  background-color: var(--mm-black);
  color: var(--mm-white);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 14px 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}
/* --- */

/* Media small mobile */

@media only screen and (max-width: 400px) {
  .modal-button {
    font-size: 18px;
  }
}

/* Media Desktop */
@media only screen and (min-width: 768px) {
  .header-title {
    font-size: 56px;
    line-height: 1.1;
  }

  .header-subtitle {
    font-size: 26px;
  }

  .header-description {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.33;
    margin-top: 24px;
  }

  .intro-boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: initial;
    -ms-flex-align: initial;
    align-items: initial;
    padding: 28px 0;
  }

  .intro-box-content > p {
    font-size: 19px;
  }

  .intro-boxes-text {
    font-size: 24px;
    margin-top: 0;
  }

  .intro-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 56px;
    margin-top: 104px;
  }

  .intro-button {
    max-width: 400px;
  }

  .section-mix {
    margin-top: 120px;
  }

  .shuffle-stage {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 56px;
    max-width: 1230px;
  }

  .shuffle-icon-background {
    padding: 10px;
    height: 56px;
    width: 56px;
  }

  .shuffle-button {
    padding: 14px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .shuffle-button img {
    height: 56px;
  }

  .shuffle-button span {
    font-size: 26px;
  }

  .mix-button {
    font-size: 38px;
    line-height: 1.6;
    width: auto;
  }

  .mix-result .header {
    margin-top: 56px;
  }

  .mix-result-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 22px;
    max-width: 768px;
  }

  .mix-result-button {
    font-size: 38px;
    line-height: 1.6;
    cursor: pointer;
  }

  .mix-result-image-container {
    padding: 20px;
  }

  .mix-result-image-container > picture.first::before {
    height: 94px;
    width: 80px;
  }

  .section-vote {
    margin-top: 120px;
    padding-bottom: calc(120px + 20px);
  }

  .vote-gallery {
    gap: 24px;
    margin-top: 64px;
  }

  .vote-gallery::after {
    -ms-flex-preferred-size: calc(33.333333% - 16px);
    flex-basis: calc(33.333333% - 16px);
  }

  .gallery-item {
    -ms-flex-preferred-size: calc(33.333333% - 16px);
    flex-basis: calc(33.333333% - 16px);
  }

  .gallery-item:not(.voted):after,
  .gallery-item.voted::after {
    height: 38px;
    width: 38px;
  }

  .gallery-item.first::before,
  .gallery-item.second::before,
  .gallery-item.third::before,
  .gallery-item.fourth::before,
  .gallery-item.fifth::before,
  .gallery-item.sixth::before {
    height: 58px;
    width: 44px;
  }

  .vote-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 54px;
  }

  .vote-button {
    font-size: 26px;
    max-width: 240px;
  }

  .recaptcha-info {
    margin-top: 56px;
    line-height: 32px; /* 266.667% */
  }

  .recaptcha-info > a {
    line-height: 32px;
  }

  .years-header {
    font-size: 56px;
    line-height: 1.1;
  }

  .years-banner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 48px;
  }

  .years-banner img {
    width: 50%;
    aspect-ratio: 1 / 1;
  }

  .years-banner-content {
    width: 50%;
  }

  .years-banner-content h4 {
    font-size: 26px;
    line-height: 1.2;
  }

  .years-banner-content p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    margin-top: 8px;
  }

  .years-button {
    font-size: 26px;
    max-width: 284px;
  }

  .section-promotions {
    margin-top: 48px;
  }

  .promotions-header {
    font-size: 26px;
    line-height: 1.2;
  }

  .promotions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 32px;
    gap: 10px;
  }

  .promotion-banner {
    height: 340px;
    border: none;
    padding-bottom: 0;
  }

  .promotion-content {
    padding: 0 20px;
    max-width: none;
  }

  .promotion-content p {
    color: var(--mm-black);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.41;
    margin-top: 8px;
  }
}

@media only screen and (min-width: 992px) {
  .mix-result-image-container img {
    max-height: 580px;
  }
}

@media only screen and (min-width: 1536px) {
  .mix-result-image-container img {
    max-height: 720px;
  }
}

@media only screen and (min-width: 768px) and (min-height: 1080px) {
  .modal {
    max-width: 724px;
  }

  .modal-close img {
    height: 38px;
    width: 38px;
  }

  .modal-title {
    font-size: 36px;
  }

  .modal-description {
    font-size: 26px;
    line-height: 1.2;
    margin-top: 12px;
  }

  .modal-code {
    padding: 22px 24px;
    max-width: 405px;
    margin-top: 38px;
  }

  .pin-code {
    font-size: 28px;
  }

  .modal-button {
    font-size: 26px;
    padding: 22px 32px;
    margin-top: 38px;
    border-radius: 12px;
  }
}

@media only screen and (max-width: 650px) {
  .modal-content {
    padding: 16px 14px;
  }
}
/* --- */

/* Loader */
.loader {
  position: relative;
  width: 64px;
  height: 64px;
}
.loader::after,
.loader::before {
  content: '';
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 4px solid var(--mm-red);
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: animloader 2s linear infinite;
  animation: animloader 2s linear infinite;
}
.loader::after {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes animloader {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes animloader {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

/* Recaptcha badge */
.grecaptcha-badge {
  visibility: hidden;
}
/* --- */

/* Final version */
.final-version .section-mix {
  margin-top: 72px;
}

.final-version .section-vote {
  margin-top: 72px;
}

.final-version .gallery-item {
  pointer-events: none;
}

.final-version .gallery-item::after {
  display: none;
}

@media only screen and (min-width: 768px) {
  .final-version .section-mix {
    margin-top: 56px;
  }

  .final-version .section-vote {
    margin-top: 56px;
  }
}
/* --- */
