:root {
  --font-family: "Gilroy", sans-serif;
  --content-width: 930px;
  --content-width-full: 1215px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --container-fluid-width: calc(var(--content-width-full) + (var(--container-offset) * 2));
  --light-color: #ffffff;
  --dropbtn-bg: #F5F5F5;
  --dark-color: #000000;
  --gray-color: #646464;
  --checkbox-color: #E2E2E2;
  --orange-color: #E35728;
  --orange-color-hover: #b34926;
  --blue-color: #0095F6;
  --input-gray-color: #C6C6C6;
  --red-color: #C62400;
  --green-color: #00DDCE;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */ /* stylelint-disable */
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/../fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/../fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/../fonts/Gilroy-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/../fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
  color: var(--light-color);
  background-color: var(--dark-color);
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}

b, strong {
  font-weight: 700;
}

a:hover, a:active, a:focus {
  color: inherit;
  text-decoration: none;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a, li, button {
  outline: none !important;
}

.site-container {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
}
.site-container::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 1280px;
  top: 0;
  background-image: url(../img/main-bg.jpg);
  z-index: -1;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .site-container::after {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#000000), to(rgba(0, 0, 0, 0))), url(../img/main-bg.jpg);
    background-image: -o-linear-gradient(top, #000000 0%, rgba(0, 0, 0, 0) 100%), url(../img/main-bg.jpg);
    background-image: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%), url(../img/main-bg.jpg);
  }
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.container-fluid {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-fluid-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.btn {
  position: relative;
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: var(--light-color);
  background-color: var(--orange-color);
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  padding: 13px;
  min-width: 220px;
  border-radius: 100px;
}
.btn:hover {
  background-color: var(--orange-color-hover);
  color: var(--light-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 12px;
  background-image: url(../img/arrow-btn.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 21px;
}

.btn:disabled {
  background-color: var(--input-gray-color);
  cursor: not-allowed;
}
.btn:disabled:hover {
  background-color: var(--input-gray-color);
}

.header {
  padding: 30px 0 70px;
}
@media (max-width: 768px) {
  .header {
    padding: 15px 0 30px;
  }
}

.logo {
  text-align: center;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .logo {
    padding-top: 0;
  }
}

.dropdown {
  position: relative;
  display: inline-block;
  z-index: 10;
  background-color: var(--dropbtn-bg);
  color: var(--gray-color);
  border-radius: 16px;
}
@media (max-width: 768px) {
  .dropdown {
    bottom: -30px;
  }
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  top: 30px;
  background-color: var(--dropbtn-bg);
  width: 65px;
  border-radius: 12px;
  padding: 8px;
  left: 0;
}

.dropdown-content.active {
  display: block;
}

.dropbtn {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  padding: 3px 18px 3px 28px;
  cursor: pointer;
  border-radius: 12px;
  width: 65px;
}

.dropbtn::after {
  background: rgba(0, 0, 0, 0) url("../img/arrow-dropbtn.svg") no-repeat scroll center center;
  content: "";
  height: 2px;
  position: absolute;
  right: 9px;
  width: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.dropbtn-en {
  background: url("../img/en.png") no-repeat left center;
  background-size: 16px 16px;
  background-position: 8px center;
}

.dropbtn-pt {
  background: url("../img/pt.png") no-repeat left center;
  background-size: 16px 16px;
  background-position: 8px center;
}

.dropbtn-es {
  background: url("../img/es.png") no-repeat left center;
  background-size: 16px 16px;
  background-position: 8px center;
}

.dropdown-link:last-child {
  margin-bottom: 0;
}

.dropdown-link-en {
  background: url("../img/en.png") no-repeat left center;
  background-size: 16px 16px;
}

.dropdown-link-pt {
  background: url("../img/pt.png") no-repeat left center;
  background-size: 16px 16px;
}

.dropdown-link-es {
  background: url("../img/es.png") no-repeat left center;
  background-size: 16px 16px;
}

/* Links inside the dropdown */
.dropdown-link {
  padding-left: 20px;
  text-decoration: none;
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: var(--gray-color);
  margin-bottom: 8px;
}

.site-game.site-container::after {
  opacity: 0.2;
}

.site-game .header {
  padding: 30px 0;
}

.heading {
  font-weight: 700;
  font-size: 54px;
  line-height: 120%;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .heading {
    font-size: 35px;
    line-height: 120%;
    position: relative;
    z-index: 2;
  }
}
@media (max-width: 768px) and (max-width: 576px) {
  .heading::after {
    position: absolute;
    content: "";
    width: 350px;
    height: 350px;
    background: -o-radial-gradient(50% 50%, 50% 50%, #E35728 0%, rgba(227, 87, 40, 0) 100%);
    background: radial-gradient(50% 50% at 50% 50%, #E35728 0%, rgba(227, 87, 40, 0) 100%);
    left: 50%;
    top: -80px;
    z-index: -1;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0.7;
  }
}

.registration-form {
  position: relative;
  z-index: 2;
  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;
}

.checkbox {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: var(--checkbox-color);
}
.checkbox-link {
  color: var(--checkbox-color);
  text-decoration: underline;
}

.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox + label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.custom-checkbox + label::before {
  position: relative;
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  background: var(--orange-color);
  border: 2px solid var(--checkbox-color);
  border-radius: 2px;
  margin-right: 4px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  cursor: pointer;
  top: 2px;
}

.custom-checkbox:not(:disabled):not(:checked) + label:hover::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(227, 87, 40, 0.2);
  box-shadow: 0 0 0 0.2rem rgba(227, 87, 40, 0.2);
}

.custom-checkbox:not(:disabled):active + label::before {
  background: var(--orange-color);
  border: 2px solid var(--checkbox-color);
}

.custom-checkbox:focus + label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(227, 87, 40, 0.2);
  box-shadow: 0 0 0 0.2rem rgba(227, 87, 40, 0.2);
}

.custom-checkbox:focus:not(:checked) + label::before {
  border: 2px solid var(--checkbox-color);
}

.custom-checkbox:checked + label::before {
  background: var(--orange-color);
  border: 2px solid var(--checkbox-color);
  background-image: url("../img/check.svg");
}

.form {
  position: relative;
  margin-bottom: 8px;
  width: 100%;
  max-width: 500px;
}
@media (max-width: 768px) {
  .form {
    text-align: center;
  }
}
.form .email {
  width: 100%;
  max-width: 500px;
}
@media (max-width: 768px) {
  .form .email {
    margin-bottom: 12px;
  }
}
.form .btn {
  position: absolute;
  right: 2px;
  top: 2px;
}
@media (max-width: 768px) {
  .form .btn {
    position: relative;
    margin-bottom: 10px;
  }
}

.email {
  border-radius: 100px;
  padding: 14px 0 13px 24px;
  border: 1px solid #D9D9D9;
}

.email::-webkit-input-placeholder {
  color: var(--gray-color);
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
}

.email::-moz-placeholder {
  color: var(--gray-color);
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
}

.email:-ms-input-placeholder {
  color: var(--gray-color);
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
}

.email::-ms-input-placeholder {
  color: var(--gray-color);
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
}

.email::placeholder {
  color: var(--gray-color);
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
}

.rules-img__wrap {
  position: relative;
  text-align: center;
}

.mobile {
  position: relative;
  margin-top: -200px;
  z-index: 0;
}
@media (max-width: 576px) {
  .mobile {
    margin-top: -100px;
  }
}

.prize-left, .prize-right {
  position: absolute;
}
@media (max-width: 768px) {
  .prize-left, .prize-right {
    display: none;
  }
}

.prize-left {
  left: -50px;
  top: 100px;
}

.prize-right {
  right: 0;
  bottom: 20px;
}

.rules-stages {
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .rules-stages {
    padding-top: 40px;
  }
}
@media (max-width: 576px) {
  .rules-stages {
    padding-top: 60px;
  }
}

.rules-stages__wrap {
  position: relative;
  display: -ms-grid;
  display: grid;
  gap: 55px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 270px));
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .rules-stages__wrap {
    gap: 15px;
  }
}

.rules__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  background: -o-linear-gradient(27.58deg, rgba(255, 255, 255, 0.1) 20.61%, rgba(255, 255, 255, 0) 82.27%);
  background: linear-gradient(62.42deg, rgba(255, 255, 255, 0.1) 20.61%, rgba(255, 255, 255, 0) 82.27%);
  -webkit-filter: drop-shadow(2.35455px 4.70909px 35.3182px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(2.35455px 4.70909px 35.3182px rgba(0, 0, 0, 0.1));
  -webkit-backdrop-filter: blur(41.2045px);
  backdrop-filter: blur(41.2045px);
  border-radius: 16px 0px 16px 16px;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 28px 28px 20px;
  border: 1px solid transparent;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #161616)) padding-box, -webkit-gradient(linear, right top, left top, from(rgba(227, 87, 40, 0.5)), to(rgba(255, 255, 255, 0))) border-box;
  background: -o-linear-gradient(#161616 0 0) padding-box, -o-linear-gradient(right, rgba(227, 87, 40, 0.5), rgba(255, 255, 255, 0)) border-box;
  background: linear-gradient(#161616 0 0) padding-box, linear-gradient(to left, rgba(227, 87, 40, 0.5), rgba(255, 255, 255, 0)) border-box;
}
.rules__item:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/sepia.png);
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  border-radius: 16px;
  z-index: -1;
}
.rules__item::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 28px;
  top: -1px;
  right: -1px;
  background-image: url(../img/triangle-mini.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.rules__heading {
  font-weight: 600;
  font-size: 33px;
  line-height: 39px;
  margin-bottom: 10px;
}

.rules__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 23px;
}

.rules__img {
  position: absolute;
  right: 23px;
  bottom: -5px;
}
@media (max-width: 768px) {
  .rules__img {
    bottom: -5px;
    width: 95px;
  }
}

.rules__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#E35728), to(rgba(227, 87, 40, 0)));
  background: -o-linear-gradient(top, #E35728 0%, rgba(227, 87, 40, 0) 100%);
  background: linear-gradient(180deg, #E35728 0%, rgba(227, 87, 40, 0) 100%);
  font-weight: 800;
  font-size: 33px;
  line-height: 40px;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  margin-top: auto;
}

@media (max-width: 768px) {
  .rules-section .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .rules-section .container .heading {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .rules-section .container .rules-img {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .rules-section .container .registration-form {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

.email-signup {
  margin-bottom: 60px;
}
.email-signup__wrap {
  position: relative;
  -webkit-filter: drop-shadow(0px -1px 10px rgba(235, 0, 27, 0.4));
  filter: drop-shadow(0px -1px 10px rgba(235, 0, 27, 0.4));
  background: -o-linear-gradient(27.58deg, rgba(255, 255, 255, 0.1) 20.61%, rgba(255, 255, 255, 0) 82.27%);
  background: linear-gradient(62.42deg, rgba(255, 255, 255, 0.1) 20.61%, rgba(255, 255, 255, 0) 82.27%);
  -webkit-filter: drop-shadow(2.35455px 4.70909px 35.3182px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(2.35455px 4.70909px 35.3182px rgba(0, 0, 0, 0.1));
  -webkit-backdrop-filter: blur(41.2045px);
  backdrop-filter: blur(41.2045px);
  border-radius: 16px 0px 16px 16px;
  background-image: url(../img/email-signup-bg.png);
  padding: 40px 15px 140px;
  background-repeat: no-repeat;
  background-position: top right;
}
@media (max-width: 768px) {
  .email-signup__wrap {
    padding: 90px 15px 90px;
    background-size: cover;
  }
}

.email-signup__img {
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .email-signup__img {
    margin-bottom: 0;
  }
}

.email-signup__title {
  font-weight: 700;
  font-size: 42px;
  line-height: 51px;
  text-align: center;
  letter-spacing: 0.025em;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .email-signup__title {
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 25px;
  }
}

.email-signup__img-top {
  position: absolute;
  top: 0;
  left: 20px;
}
@media (max-width: 768px) {
  .email-signup__img-top {
    max-width: 200px;
  }
}

.email-signup__img-bot {
  position: absolute;
  bottom: 0;
  right: 30px;
}
@media (max-width: 768px) {
  .email-signup__img-bot {
    max-width: 110px;
    bottom: -4px;
  }
}

.prize-mob-bot {
  position: absolute;
  display: none;
}
@media (max-width: 576px) {
  .prize-mob-bot {
    display: block;
    z-index: 0;
    width: 130px;
    left: -60px;
    bottom: 100px;
  }
}

.prize-mob-top {
  position: absolute;
  display: none;
}
@media (max-width: 576px) {
  .prize-mob-top {
    display: block;
    z-index: 0;
    width: 130px;
    right: -50px;
    top: -50px;
  }
}

.hidden {
  display: none;
}

.registration-txt-error, .registration-email-error {
  display: none;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--dropbtn-bg);
  padding-left: 20px;
  padding-top: 5px;
}
@media (max-width: 768px) {
  .registration-txt-error, .registration-email-error {
    padding-left: 0;
  }
}

.registration-email-error.email-error {
  display: block;
}

.registration-txt-error.txt-error {
  display: block;
}

.game__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 435px;
  margin: auto;
  margin-bottom: 50px;
  gap: 4px;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.memory-card {
  position: relative;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  width: 24%;
  cursor: pointer;
  height: 140px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .memory-card {
    height: 116px;
  }
}

.memory-card:active {
  -webkit-transform: scale(0.97);
  -ms-transform: scale(0.97);
  transform: scale(0.97);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.memory-card.flip {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.memory-card.flip .back-face {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  opacity: 0;
}

.memory-card.flip .front-face {
  z-index: 5;
}

.front-face,
.back-face {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 8px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.front-face {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.matches-time-block {
  max-width: 420px;
  margin: auto;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.game__name {
  text-align: center;
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  text-align: center;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 4px;
}

.matches .time {
  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;
}

.time__count,
.matches__count-wrap {
  font-weight: 700;
  font-size: 26px;
  line-height: 120%;
  text-align: center;
  letter-spacing: -0.01em;
  border-radius: 100px;
  padding: 2px;
  width: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: -o-linear-gradient(27.58deg, rgba(255, 255, 255, 0.1) 20.61%, rgba(255, 255, 255, 0) 82.27%), url(../img/sepia-mini.png);
  background: linear-gradient(62.42deg, rgba(255, 255, 255, 0.1) 20.61%, rgba(255, 255, 255, 0) 82.27%), url(../img/sepia-mini.png);
  -webkit-filter: drop-shadow(0.914219px 1.82844px 13.7133px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0.914219px 1.82844px 13.7133px rgba(0, 0, 0, 0.1));
  -webkit-backdrop-filter: blur(15.9988px);
  backdrop-filter: blur(15.9988px);
  background-repeat: no-repeat;
  background-size: cover;
}

.txt__orange {
  color: var(--orange-color);
}

.congratulations {
  margin-bottom: 50px;
}
.congratulations__wrap {
  position: relative;
  max-width: 550px;
  margin: auto;
  padding: 44px 50px 30px;
  text-align: center;
  -webkit-backdrop-filter: blur(58.8636px);
  backdrop-filter: blur(58.8636px);
  background-image: url(../img/sepia.png);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 16px;
  -webkit-filter: drop-shadow(2.35455px 4.70909px 35.3182px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(2.35455px 4.70909px 35.3182px rgba(0, 0, 0, 0.1));
  -webkit-backdrop-filter: blur(41.2045px);
  backdrop-filter: blur(41.2045px);
  border: 1px solid transparent;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #161616)) padding-box, -webkit-gradient(linear, right top, left top, from(rgba(227, 87, 40, 0.5)), to(rgba(255, 255, 255, 0))) border-box;
  background: -o-linear-gradient(#161616 0 0) padding-box, -o-linear-gradient(right, rgba(227, 87, 40, 0.5), rgba(255, 255, 255, 0)) border-box;
  background: linear-gradient(#161616 0 0) padding-box, linear-gradient(to left, rgba(227, 87, 40, 0.5), rgba(255, 255, 255, 0)) border-box;
}
.congratulations__wrap:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/sepia.png);
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  border-radius: 16px;
  z-index: -1;
}
@media (max-width: 768px) {
  .congratulations__wrap {
    padding: 30px 25px 15px;
  }
}
.congratulations__title {
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .congratulations__title {
    font-size: 28px;
    line-height: 120%;
    margin-bottom: 12px;
  }
}
.congratulations__text {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .congratulations__text {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

.text__triangle {
  font-weight: 500;
  font-size: 20px;
  padding-left: 20px;
  line-height: 140%;
  margin-bottom: 12px;
  background-image: url(../img/triangle.svg);
  background-repeat: no-repeat;
  background-position: left 3px top 9px;
  background-size: 17px 16px;
}
.text__triangle span {
  color: var(--light-color);
}

.congratulations__link {
  color: var(--blue-color);
  text-decoration: underline;
}

.link-orange {
  text-decoration: underline;
  color: var(--orange-color);
}

.link-input {
  margin-bottom: 25px;
}
.link-input p {
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  margin-bottom: 8px;
}

.congratulations__or {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  margin: 0 0 15px;
  color: #707070;
}

.input__post {
  border: 0.75px solid #e2e2e2;
  background-color: transparent;
  border-radius: 0;
  padding: 10px 14px;
  color: var(--input-gray-color);
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  width: 100%;
  max-width: 290px;
}

.input__post::-webkit-input-placeholder {
  color: var(--input-gray-color);
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
}

.input__post::-moz-placeholder {
  color: var(--input-gray-color);
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
}

.input__post:-ms-input-placeholder {
  color: var(--input-gray-color);
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
}

.input__post::-ms-input-placeholder {
  color: var(--input-gray-color);
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
}

.input__post::placeholder {
  color: var(--input-gray-color);
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
}

.form-txt-error {
  display: none;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  text-align: left;
  max-width: 290px;
  margin: auto;
  margin-top: 5px;
}

.link-input.error .form-txt-error {
  display: block;
}
.link-input.error .input__post {
  border: 0.75px solid var(--red-color);
}

.wrapper__block {
  position: relative;
  max-width: 550px;
  margin: auto;
  padding: 44px 0 0;
  text-align: center;
  -webkit-backdrop-filter: blur(58.8636px);
  backdrop-filter: blur(58.8636px);
  background-image: url(../img/sepia.png);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 16px;
  margin-bottom: 30px;
  -webkit-filter: drop-shadow(2.35455px 4.70909px 35.3182px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(2.35455px 4.70909px 35.3182px rgba(0, 0, 0, 0.1));
  -webkit-backdrop-filter: blur(41.2045px);
  backdrop-filter: blur(41.2045px);
  border: 1px solid transparent;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #161616)) padding-box, -webkit-gradient(linear, right top, left top, from(rgba(227, 87, 40, 0.5)), to(rgba(255, 255, 255, 0))) border-box;
  background: -o-linear-gradient(#161616 0 0) padding-box, -o-linear-gradient(right, rgba(227, 87, 40, 0.5), rgba(255, 255, 255, 0)) border-box;
  background: linear-gradient(#161616 0 0) padding-box, linear-gradient(to left, rgba(227, 87, 40, 0.5), rgba(255, 255, 255, 0)) border-box;
}
.wrapper__block:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/sepia.png);
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  border-radius: 16px;
  z-index: -1;
}
.wrapper__block .congratulations__text {
  max-width: 70%;
  margin: auto;
  margin-bottom: 30px;
}

.gratitude__wrap .congratulations__title {
  max-width: 90%;
  margin: auto;
  margin-bottom: 20px;
}

.share__orang {
  background-color: var(--orange-color);
  padding: 30px 24px;
  border-radius: 0 0 16px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0px -2px 2px rgba(171, 171, 171, 0.4);
  box-shadow: 0px -2px 2px rgba(171, 171, 171, 0.4);
}
@media (max-width: 768px) {
  .share__orang {
    padding: 13px 20px;
  }
}

.share__text {
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  margin-right: 12px;
  text-align: left;
}
@media (max-width: 768px) {
  .share__text {
    font-size: 20px;
    line-height: 117%;
  }
}

.link-green {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 117%;
  text-decoration: underline;
  color: var(--green-color);
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .link-green {
    font-size: 20px;
    line-height: 117%;
  }
}

.share__link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.share__link {
  width: 40px;
  height: 40px;
  background-color: var(--light-color);
  border-radius: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.share__link:not(:last-child) {
  margin-right: 12px;
}
.share__link-fa {
  background-image: url(../img/fa.png);
}
.share__link-inst {
  background-image: url(../img/inst.png);
}
.share__link-whatsapp {
  background-image: url(../img/whatsapp.png);
}
@media (max-width: 768px) {
  .share__link {
    width: 32px;
    height: 32px;
    background-size: 16px 16px;
  }
}

.share__link.share__link-whatsapp {
  background-color: #25D366;
}

.gratitude__img {
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}

.wrapper__block.try-again__wrap {
  padding: 44px 30px 30px;
}
@media (max-width: 768px) {
  .wrapper__block.try-again__wrap {
    padding: 45px 15px 60px;
  }
}

.wrapper__block.try-again__wrap .congratulations__text {
  max-width: 325px;
  margin: auto;
  margin-bottom: 30px;
}

.game {
  display: block;
}

.congratulations {
  display: none;
}

.try-again {
  display: none;
}

.wrapper__block.not-available__wrap {
  padding: 60px 40px;
}
@media (max-width: 768px) {
  .wrapper__block.not-available__wrap {
    padding: 50px 15px;
  }
}

.not-available__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  max-width: 450px;
  margin: auto;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .not-available__title {
    font-size: 28px;
    line-height: 120%;
  }
}

.not-available__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  letter-spacing: -0.01em;
  max-width: 375px;
  margin: auto;
  margin-bottom: 35px;
}

.link-green-mini {
  font-size: 14px;
  line-height: 117%;
}
/*# sourceMappingURL=main.css.map */