* {
  padding: 0;
  margin: 0;
  border: 0
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

:active,
:focus {
  outline: 0
}

a:active,
a:focus {
  outline: 0
}

aside,
footer,
header,
nav {
  display: block
}

body,
html {
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable
}

button,
input,
textarea {
  font-family: inherit
}

input::-ms-clear {
  display: none
}

input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: inherit
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: inherit
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: inherit
}

input::placeholder,
textarea::placeholder {
  color: inherit
}

textarea {
  resize: none
}

button {
  cursor: pointer;
  background-color: transparent
}

button::-moz-focus-inner {
  padding: 0;
  border: 0
}

a {
  display: inline-block;
  color: inherit
}

a,
a:visited {
  text-decoration: none
}

a:hover {
  text-decoration: none
}

ul li {
  list-style: none
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  vertical-align: top
}

svg {
  display: block;
  width: 100%;
  height: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit
}

picture {
  display: block;
  width: 100%;
  height: 100%
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0
}

input[type=number] {
  -moz-appearance: textfield
}

@font-face {
  font-family: CormorantGaramond;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/CormorantGaramond-Regular.woff2) format("woff2")
}

@font-face {
  font-family: CormorantGaramond;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/CormorantGaramond-Bold.woff2) format("woff2")
}

@font-face {
  font-family: CormorantGaramond;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/CormorantGaramond-SemiBold.woff2) format("woff2")
}

@font-face {
  font-family: Cinzel;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/Cinzel-Regular.woff2) format("woff2")
}

@font-face {
  font-family: Cinzel;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/Cinzel-Bold.woff2) format("woff2")
}

:root {
  --font-main: "Cinzel", sans-serif;
  --container-width: 1240px;
  --container-step: 20px;
  --container-step-tablet: 15px;
  --container-step-mobile: 10px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
  --background-page: #1d1d1d;
  --main: #ffffff;
  --black: #000000;
  --white: #ffffff;
  --orange: #f79e1b;
  --l-orange: #ee5e01;
  --gradient: linear-gradient(270deg, #ee5e01 0%, #f79e1b 100%);
  --green: #236f71;
  --l-green: #1ca976;
  --dark: #1d1d1d;
  --hover: #a76503;
  --active: #a76503
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-step)
}

@media (max-width:991px) {
  .container {
    padding: 0 var(--container-step-tablet)
  }
}

@media (max-width:600px) {
  .container {
    padding: 0 var(--container-step-mobile)
  }
}

.rd-transfer {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: var(--font-main);
  min-height: 100vh;
  overflow: hidden;
  color: var(--main);
  background-color: var(--background-page)
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}

.main_no-margin:not(:last-child) {
  margin-bottom: 0
}

a,
button {
  color: var(--main)
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0)
}

.tx-14 {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%
}

.logo {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; 
  -webkit-box-align: center; 
      -ms-flex-align: center; 
          align-items: center;
  gap: 10px;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

.logo img {
 width: 40px;
  height: 40px;
}

@media (any-hover:hover) {
  .logo:hover {
    opacity: .5
  }
}

.logo:focus-visible {
  opacity: .5
}

.logo:active {
  opacity: .5;
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.CormorantGaramond {
  font-family: CormorantGaramond
}

.tx-16 {
  font-weight: 400;
  font-size: 16px;
  line-height: 1
}

.but {
  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;
  padding: 10px 24px;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--white);
  background-color: var(--l-orange);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 55px;
  min-width: 160px;
  min-height: 50px;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

.but_gradient {
  background: var(--gradient)
}

@media (max-width:600px) {
  .but {
    font-size: 14px
  }
}

@media (any-hover:hover) {
  .but:hover {
    opacity: .5
  }
}

.but:focus-visible {
  opacity: .5
}

.but:active {
  opacity: .5
}

.circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px
}

.circle::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: var(--white);
  margin-top: 9px
}

.tx-40-16 {
  font-weight: 400;
  font-size: 40px;
  line-height: 120%
}

@media (max-width:1220px) {
  .tx-40-16 {
    font-size: 32px
  }
}

@media (max-width:991px) {
  .tx-40-16 {
    font-size: 24px
  }
}

@media (max-width:600px) {
  .tx-40-16 {
    font-size: 16px
  }
}

.tx-main {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%
}

@media (max-width:1220px) {
  .tx-main {
    font-size: 18px
  }
}

@media (max-width:991px) {
  .tx-main {
    font-size: 16px
  }
}

@media (max-width:600px) {
  .tx-main {
    font-size: 14px
  }
}

.tx-20 {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%
}

.tx-20-16 {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%
}

@media (max-width:991px) {
  .tx-20-16 {
    font-size: 18px
  }
}

@media (max-width:600px) {
  .tx-20-16 {
    font-size: 16px
  }
}

.tx-40-20 {
  font-weight: 400;
  font-size: 40px;
  line-height: 1
}

@media (max-width:991px) {
  .tx-40-20 {
    font-size: 30px
  }
}

@media (max-width:600px) {
  .tx-40-20 {
    font-size: 20px
  }
}

.color-l-orange {
  color: var(--l-orange)
}

.color-orange {
  color: var(--orange)
}

.time {
  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;
  border-radius: 13px;
  padding: 16px;
  min-width: 140px;
  min-height: 140px;
  background-color: var(--l-green)
}

@media (max-width:1220px) {
  .time {
    min-width: 100px;
    min-height: 100px
  }
}

@media (max-width:991px) {
  .time {
    min-width: 80px;
    min-height: 80px
  }
}

@media (max-width:600px) {
  .time {
    min-width: 50px;
    min-height: 50px
  }
}

.num {
  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;
  border-radius: 50px;
  padding: 10px;
  width: 100px;
  height: 100px;
  background-color: var(--l-orange)
}

@media (max-width:600px) {
  .num {
    width: 80px;
    height: 80px
  }
}

.p-40-20 {
  padding-top: 40px;
  padding-bottom: 40px
}

@media (max-width:991px) {
  .p-40-20 {
    padding-top: 30px;
    padding-bottom: 30px
  }
}

@media (max-width:600px) {
  .p-40-20 {
    padding-top: 20px;
    padding-bottom: 20px
  }
}

.mb-30:not(:last-child) {
  margin-bottom: 30px
}

.input {
  display: block;
  border-radius: 16px;
  padding: 0 24px;
  width: 100%;
  height: 55px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #181818;
  font-family: CormorantGaramond;
  border: 2px solid transparent;
  background-color: var(--white);
  -webkit-transition: border-color .3s ease-in-out;
  transition: border-color .3s ease-in-out
}

@media (any-hover:hover) {
  .input:hover {
    border-color: var(--hover)
  }
}

.input:focus-visible {
  border-color: var(--hover)
}

.faq-btn {
  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;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--l-orange);
  -webkit-transition: color .3s ease-in-out, background-color .3s ease-in-out;
  transition: color .3s ease-in-out, background-color .3s ease-in-out
}

.faq-btn svg {
  width: 16px;
  height: 16px;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out
}

.faq-btn.active {
  background-color: var(--white);
  color: var(--orange)
}

.faq-btn.active svg {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}

@media (any-hover:hover) {
  .faq-btn:hover {
    color: var(--hover)
  }
}

.faq-btn:focus-visible {
  color: var(--hover)
}

.faq-btn:active {
  color: var(--active);
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.mb-16:not(:last-child) {
  margin-bottom: 16px
}

.mb-8:not(:last-child) {
  margin-bottom: 8px
}

.mb-30-10:not(:last-child) {
  margin-bottom: 30px
}

@media (max-width:991px) {
  .mb-30-10:not(:last-child) {
    margin-bottom: 20px
  }
}

@media (max-width:600px) {
  .mb-30-10:not(:last-child) {
    margin-bottom: 10px
  }
}

.mb-40-10:not(:last-child) {
  margin-bottom: 40px
}

@media (max-width:1220px) {
  .mb-40-10:not(:last-child) {
    margin-bottom: 30px
  }
}

@media (max-width:991px) {
  .mb-40-10:not(:last-child) {
    margin-bottom: 20px
  }
}

@media (max-width:600px) {
  .mb-40-10:not(:last-child) {
    margin-bottom: 10px
  }
}

.mb-4:not(:last-child) {
  margin-bottom: 4px
}

.mb-50-10:not(:last-child) {
  margin-bottom: 50px
}

@media (max-width:1220px) {
  .mb-50-10:not(:last-child) {
    margin-bottom: 30px
  }
}

@media (max-width:991px) {
  .mb-50-10:not(:last-child) {
    margin-bottom: 20px
  }
}

@media (max-width:600px) {
  .mb-50-10:not(:last-child) {
    margin-bottom: 10px
  }
}

.mb-20:not(:last-child) {
  margin-bottom: 20px
}

.mb-16-10:not(:last-child) {
  margin-bottom: 16px
}

@media (max-width:600px) {
  .mb-16-10:not(:last-child) {
    margin-bottom: 10px
  }
}

.w100 {
  min-width: 0;
  width: 100%
}

.relative-z2 {
  position: relative;
  z-index: 2
}

.word-break {
  word-break: break-all
}

.m-auto {
  margin-left: auto;
  margin-right: auto
}

.img-contain {
  -o-object-fit: contain;
  object-fit: contain
}

.img-cover {
  -o-object-fit: cover;
  object-fit: cover
}

.underline {
  text-decoration: underline
}

.text-center {
  text-align: center
}

.text-right {
  text-align: right
}

.uppercase {
  text-transform: uppercase
}

.lowercase {
  text-transform: lowercase
}

.fw-100 {
  font-weight: 100
}

.fw-200 {
  font-weight: 200
}

.fw-300 {
  font-weight: 300
}

.fw-400 {
  font-weight: 400
}

.fw-500 {
  font-weight: 500
}

.fw-600 {
  font-weight: 600
}

.fw-700 {
  font-weight: 700
}

.fw-800 {
  font-weight: 800
}

.fw-900 {
  font-weight: 900
}

.rd-upload img {
  opacity: 0;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

.rd-load img {
  opacity: 1
}

.scroll {
  padding-bottom: 10px;
  overflow: auto
}

.scroll::-webkit-scrollbar {
  height: 4px;
  background-color: var(--white)
}

.scroll::-webkit-scrollbar-thumb {
  background-color: var(--brown)
}

.terms {
  padding-top: 90px;
  padding-bottom: 40px;
  position: relative;
  background-image: url(/img/hero.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover
}

@media (max-width:991px) {
  .terms {
    padding-bottom: 30px
  }
}

@media (max-width:600px) {
  .terms {
    padding-bottom: 20px;
    background-image: url(/img/hero-mob.webp)
  }
}

.terms::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(.63%, rgba(29, 29, 29, 0)), color-stop(16.83%, rgba(29, 29, 29, .27)), color-stop(42.31%, rgba(29, 29, 29, .6))), rgba(0, 0, 0, .4);
  background: linear-gradient(90deg, rgba(29, 29, 29, 0) .63%, rgba(29, 29, 29, .27) 16.83%, rgba(29, 29, 29, .6) 42.31%), rgba(0, 0, 0, .4);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  z-index: 1
}

.terms h1 {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700
}

@media (max-width:991px) {
  .terms h1 {
    font-size: 30px
  }
}

@media (max-width:600px) {
  .terms h1 {
    font-size: 20px
  }
}

.terms h1:not(:last-child) {
  margin-bottom: 24px
}

.terms h2 {
  font-size: 20px;
  line-height: 1.3;
  color: var(--main);
  font-weight: 700
}

.terms h2:not(:last-child) {
  margin-bottom: 24px
}

.terms p {
  font-family: CormorantGaramond;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400
}

.terms p:not(:last-child) {
  margin-bottom: 24px
}

.terms ul:not(:last-child) {
  margin-bottom: 24px
}

.terms li {
  font-family: CormorantGaramond;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400
}

.terms li:not(:last-child) {
  margin-bottom: 24px
}

.lottovictoriaau-header {
  padding: 17px 0
}

@media (max-width:991px) {
  .lottovictoriaau-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5
  }
}

.lottovictoriaau-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px
}

@media (max-width:991px) {
  .lottovictoriaau-header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--white);
    z-index: 100;
    padding: 100px 30px 30px 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: auto;
    -webkit-transition: opacity .2s ease-in-out, visibility .2s ease-in-out, pointer-events .2s ease-in-out;
    transition: opacity .2s ease-in-out, visibility .2s ease-in-out, pointer-events .2s ease-in-out
  }
}

@media (max-width:600px) {
  .lottovictoriaau-header__menu {
    padding: 80px 30px 30px 30px
  }
}

.lottovictoriaau-header__menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: visible
}

.lottovictoriaau-header__exit-menu {
  display: none;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: transparent
}

@media (max-width:991px) {
  .lottovictoriaau-header__exit-menu {
    display: block;
    top: 30px;
    right: 30px
  }
}

@media (max-width:600px) {
  .lottovictoriaau-header__exit-menu {
    top: 15px;
    right: 15px
  }
}

.lottovictoriaau-header__exit-menu::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--l-orange);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}

.lottovictoriaau-header__exit-menu::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: var(--l-orange);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

.nav__list {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 30px
}

@media (max-width:991px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px
  }
}

@media (max-width:991px) {
  .nav__list_footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px 32px
  }
}

.nav__link {
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out
}

@media (any-hover:hover) {
  .nav__link:hover {
    color: var(--hover)
  }
}

.nav__link:focus-visible {
  color: var(--hover)
}

.nav__link:active {
  color: var(--active);
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  width: 24px;
  height: 18px;
  background-color: transparent
}

@media (max-width:991px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 8px
}

.lottovictoriaau-hero__head {
  padding-top: 90px;
  padding-bottom: 40px;
  position: relative;
  background-image: url(/img/hero.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover
}

@media (max-width:991px) {
  .lottovictoriaau-hero__head {
    padding-bottom: 30px
  }
}

@media (max-width:600px) {
  .lottovictoriaau-hero__head {
    padding-bottom: 20px;
    background-image: url(/img/hero-mob.webp)
  }
}

.lottovictoriaau-hero__head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(.63%, rgba(29, 29, 29, 0)), color-stop(16.83%, rgba(29, 29, 29, .27)), color-stop(42.31%, rgba(29, 29, 29, .6))), rgba(0, 0, 0, .4);
  background: linear-gradient(90deg, rgba(29, 29, 29, 0) .63%, rgba(29, 29, 29, .27) 16.83%, rgba(29, 29, 29, .6) 42.31%), rgba(0, 0, 0, .4);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  z-index: 1
}

.lottovictoriaau-hero__top {
  max-width: 772px;
  width: 100%
}

@media (max-width:600px) {
  .lottovictoriaau-hero__link {
    min-width: 260px;
    margin-left: auto;
    margin-right: auto;
    min-height: 40px;
    font-size: 14px
  }
}

.lottovictoriaau-timer {
  max-width: 772px;
  width: 100%;
  border-radius: 35px;
  padding: 32px 50px;
  background-color: var(--green)
}

@media (max-width:1220px) {
  .lottovictoriaau-timer {
    max-width: 550px
  }
}

@media (max-width:991px) {
  .lottovictoriaau-timer {
    max-width: 450px
  }
}

@media (max-width:600px) {
  .lottovictoriaau-timer {
    padding: 32px 24px;
    margin-left: auto;
    margin-right: auto;
    max-width: 360px
  }
}

@media (max-width:359px) {
  .lottovictoriaau-timer {
    padding: 32px 16px
  }
}

.lottovictoriaau-timer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px
}

.popup-auth-send {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  overflow: auto;
  background-color: rgba(0, 0, 0, .4)
}

.popup-auth-send.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.popup-auth-send__close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.popup-auth-send__content {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: auto;
  max-width: 737px;
  width: 100%;
  position: relative;
  z-index: 2;
  margin: auto;
  border-radius: 30px;
  padding: 32px;
  background-color: var(--dark)
}

@media (max-width:991px) {
  .popup-auth-send__content {
    padding: 24px 16px
  }
}

.popup {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  overflow: auto;
  background-color: rgba(26, 41, 28, .7)
}

.popup__close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.popup__body {
  overflow: auto;
  max-width: 675px;
  width: 100%;
  position: relative;
  z-index: 2;
  margin: auto;
  border-radius: 10px;
  padding: 32px;
  background-color: var(--dark)
}

@media (max-width:991px) {
  .popup__body {
    width: 95%;
    padding: 24px 16px
  }
}

.popup__form-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.popup-cookie {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 4;
  border-radius: 10px;
  padding: 32px;
  width: 500px;
  background-color: var(--dark)
}

@media (max-width:991px) {
  .popup-cookie {
    padding: 24px 16px
  }
}

@media (max-width:600px) {
  .popup-cookie {
    width: 100%
  }
}

.popup-cookie.disabled {
  display: none
}

.popup-cookie__buttons {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template: auto/repeat(2, 1fr);
  gap: 16px 10px
}

@media (max-width:600px) {
  .popup-cookie__buttons {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr
  }
}

.lottovictoriaau-age {
  padding: 6px 0;
  background-color: var(--l-orange)
}

.lottovictoriaau-age__content {
  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;
  gap: 10px
}

.lottovictoriaau-age__span {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain
}

.lottovictoriaau-dare {
  background-color: var(--orange)
}

.lottovictoriaau-dare__icon {
  width: 100%;
  max-width: 300px;
  height: 197px;
  margin-left: auto;
  margin-right: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain
}

.lottovictoriaau-fortune {
  position: relative;
  background-image: url(/img/fortune-background.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover
}

.lottovictoriaau-fortune::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  z-index: 1
}

.lottovictoriaau-fortune__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 100px
}

@media (max-width:1220px) {
  .lottovictoriaau-fortune__list {
    gap: 60px
  }
}

@media (max-width:991px) {
  .lottovictoriaau-fortune__list {
    gap: 40px
  }
}

@media (max-width:600px) {
  .lottovictoriaau-fortune__list {
    gap: 20px
  }
}

.lottovictoriaau-fortune__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 300px;
  flex: 0 1 300px;
  width: 100%
}

@media (max-width:600px) {
  .lottovictoriaau-fortune__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%
  }
}

.lottovictoriaau-fortune__icon {
  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;
  border: 2px solid var(--l-orange);
  border-radius: 547px;
  padding: 10px;
  width: 200px;
  height: 200px;
  background: var(--gradient);
  margin-left: auto;
  margin-right: auto
}

@media (max-width:1220px) {
  .lottovictoriaau-fortune__icon {
    width: 160px;
    height: 160px
  }
}

@media (max-width:991px) {
  .lottovictoriaau-fortune__icon {
    width: 120px;
    height: 120px
  }
}

@media (max-width:600px) {
  .lottovictoriaau-fortune__icon {
    width: 64px;
    height: 64px
  }
}

.lottovictoriaau-fortune__icon span {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 50%;
  height: 50%
}

.lottovictoriaau-how {
  background-color: var(--orange)
}

.lottovictoriaau-how__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 77px
}

@media (max-width:1220px) {
  .lottovictoriaau-how__list {
    gap: 20px 40px
  }
}

@media (max-width:991px) {
  .lottovictoriaau-how__list {
    gap: 20px
  }
}

@media (max-width:600px) {
  .lottovictoriaau-how__list {
    gap: 10px
  }
}

.lottovictoriaau-how__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 300px;
  flex: 0 1 300px;
  width: 100%
}

.lottovictoriaau-faq {
  background-color: var(--orange)
}

.lottovictoriaau-faq__list {
  max-width: 900px;
  width: 100%
}

.lottovictoriaau-faq__item {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--white)
}

.lottovictoriaau-faq__top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.lottovictoriaau-faq__button {
  -ms-flex-negative: 0;
  flex-shrink: 0
}

.lottovictoriaau-faq__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.lottovictoriaau-faq__bottom {
  height: 0;
  overflow: hidden;
  -webkit-transition: height .3s ease-in-out;
  transition: height .3s ease-in-out
}

.lottovictoriaau-faq__texts {
  padding-top: 10px
}

.lottovictoriaau-footer {
  padding-top: 60px;
  padding-bottom: 40px
}

@media (max-width:991px) {
  .lottovictoriaau-footer {
    padding-top: 40px
  }
}

.lottovictoriaau-footer__links {
  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;
      flex-wrap: wrap;
  gap: 20px 45px
}

.lottovictoriaau-footer__links a {
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

@media (any-hover:hover) {
  .lottovictoriaau-footer__links a:hover {
    opacity: .5
  }
}

.lottovictoriaau-footer__links a:focus-visible {
  opacity: .5
}

.lottovictoriaau-footer__links a:active {
  opacity: .5;
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.lottovictoriaau-footer__links li:first-child {
  width: 44px;
  height: 44px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain
}

.lottovictoriaau-lo {
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
  background-image: url(/img/hero.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover
}

@media (max-width:991px) {
  .lottovictoriaau-lo {
    padding-top: 80px;
    padding-bottom: 60px
  }
}

@media (max-width:600px) {
  .lottovictoriaau-lo {
    padding-bottom: 40px;
    background-image: url(/img/hero-mob.webp)
  }
}

.lottovictoriaau-lo__item {
  border-radius: 40px;
  padding: 50px 40px;
  background-color: var(--orange)
}

@media (max-width:1220px) {
  .lottovictoriaau-lo__item {
    padding: 32px 16px
  }
}

@media (max-width:991px) {
  .lottovictoriaau-lo__item {
    padding: 24px 16px;
    border-radius: 30px
  }
}

@media (max-width:600px) {
  .lottovictoriaau-lo__item {
    padding: 16px;
    border-radius: 20px
  }
}

.lottovictoriaau-lo__item_flex {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: minmax(0, 562px) 40px minmax(0, 503px);
  grid-template: auto/minmax(0, 562px) minmax(0, 503px);
  gap: 20px 40px
}

@media (max-width:991px) {
  .lottovictoriaau-lo__item_flex {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr
  }
}

.lottovictoriaau-lo__el {
  max-width: 800px;
  width: 100%
}

.form__button {
  border-radius: 16px
}