:root {
    --font-main: "Prompt", sans-serif;
    --container-width: 1280px;
    --container-step: 20px;
    --container-step-tablet: 15px;
    --container-step-mobile: 10px;
    --container: calc(var(--container-width) + (var(--container-step) * 2));
    --background-page: linear-gradient(180deg, #000103 0%, #07212a 100%);
    --main: #ffffff;
    --black: #000000;
    --white: #ffffff;
    --toxic: #d6ff39;
    --green: #007e3c;
    --box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    --border: 3px solid #007e3c;
    --hover: #0fd86d;
    --active: #0fd86d
}
:root {
    --toxic: #BB86FC; 
    --green: #3C1874; 
    --hover: #CF9FFF; 
    --active: #AC73FF;
}
* {
    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: Inter;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/Inter-Regular.woff2") format("woff2")
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/Inter-Bold.woff2") format("woff2")
}

@font-face {
    font-family: Prompt;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/Prompt-Regular.woff2") format("woff2")
}

@font-face {
    font-family: Prompt;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/Prompt-SemiBold.woff2") format("woff2")
}

.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: 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)
}

.pagination {
    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;
    gap: 20px;
    position: static
}

.pagination .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    opacity: 1;
    border-radius: 50%;
    border: 2px solid var(--black);
    margin: 0 !important;
    background-color: transparent
}

.pagination .swiper-pagination-bullet-active {
    background-color: var(--toxic);
    border-color: transparent
}

.tx-64-32 {
    font-weight: 400;
    font-size: 64px;
    line-height: 100%
}

@media (max-width: 1220px) {
    .tx-64-32 {
        font-size: 54px
    }
}

@media (max-width: 991px) {
    .tx-64-32 {
        font-size: 40px
    }
}

@media (max-width: 600px) {
    .tx-64-32 {
        font-size: 32px
    }
}

.tx-10 {
    font-weight: 400;
    font-size: 10px;
    line-height: 120%;
    letter-spacing: .04em
}

.tx-20 {
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: .04em
}

.circle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px
}

.circle::before {
    content: "";
    height: 4px;
    width: 4px;
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: var(--black)
}

.circle_white::before {
    background-color: var(--white)
}

.tx-24-20 {
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: .04em
}

@media (max-width: 991px) {
    .tx-24-20 {
        font-size: 22px
    }
}

@media (max-width: 600px) {
    .tx-24-20 {
        font-size: 20px
    }
}

.tx-20-16 {
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: .04em
}

@media (max-width: 991px) {
    .tx-20-16 {
        font-size: 18px
    }
}

@media (max-width: 600px) {
    .tx-20-16 {
        font-size: 16px
    }
}

.tx-46-32 {
    font-weight: 400;
    font-size: 46px;
    line-height: 1;
    letter-spacing: .1em
}

@media (max-width: 1220px) {
    .tx-46-32 {
        font-size: 42px
    }
}

@media (max-width: 991px) {
    .tx-46-32 {
        font-size: 38px
    }
}

@media (max-width: 600px) {
    .tx-46-32 {
        font-size: 32px
    }
}

.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;
    gap: 10px;
    padding: 10px 36px;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    color: var(--green);
    background-color: var(--toxic);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 20px;
    min-width: 101px;
    min-height: 36px;
    -webkit-transition: background-color .3s ease-in-out;
    transition: background-color .3s ease-in-out
}

.but_white {
    color: var(--black);
    background-color: var(--white);
    min-height: 54px
}

@media (max-width: 600px) {
    .but_white {
        min-height: 48px;
        font-size: 14px
    }
}

.but_border {
    color: var(--white);
    border: 1px solid var(--white);
    background-color: transparent;
    min-height: 54px
}

@media (max-width: 600px) {
    .but_border {
        min-height: 48px;
        font-size: 14px
    }
}

.but span {
    width: 12px;
    height: 12px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

@media (any-hover: hover) {
    .but:hover {
        background-color: var(--hover)
    }
}

.but:focus-visible {
    background-color: var(--hover)
}

.but:active {
    background-color: var(--active);
    -webkit-transition-duration: .1s;
    transition-duration: .1s
}

.color-toxic {
    color: var(--toxic)
}

.color-black {
    color: var(--black)
}

.mb-50:not(:last-child) {
    margin-bottom: 50px
}

.ptb-80-20 {
    padding-top: 80px;
    padding-bottom: 80px
}

@media (max-width: 1220px) {
    .ptb-80-20 {
        padding-top: 60px;
        padding-bottom: 60px
    }
}

@media (max-width: 991px) {
    .ptb-80-20 {
        padding-top: 40px;
        padding-bottom: 40px
    }
}

@media (max-width: 600px) {
    .ptb-80-20 {
        padding-top: 20px;
        padding-bottom: 20px
    }
}

.input {
    display: block;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 20px;
    padding: 0 20px;
    width: 100%;
    height: 41px;
    background: rgba(255, 255, 255, .3);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .04em;
    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)
}

.tx-16 {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: .04em
}

.tx-32-24 {
    font-weight: 400;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: .04em
}

@media (max-width: 991px) {
    .tx-32-24 {
        font-size: 28px
    }
}

@media (max-width: 600px) {
    .tx-32-24 {
        font-size: 24px
    }
}

.tx-32 {
    font-weight: 400;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: .04em
}

.Inter {
    font-family: Inter
}

.tx-main {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2
}

.mb-10:not(:last-child) {
    margin-bottom: 10px
}

.logo {
    display: block;
    width: 100px;
    height: 100px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

@media (any-hover: hover) {
    .logo:hover {
        opacity: .5
    }
}

.logo:focus-visible {
    opacity: .5
}

.logo:active {
    opacity: .5;
    -webkit-transition-duration: .1s;
    transition-duration: .1s
}

.mb-50-20:not(:last-child) {
    margin-bottom: 50px
}

@media (max-width: 991px) {
    .mb-50-20:not(:last-child) {
        margin-bottom: 35px
    }
}

@media (max-width: 600px) {
    .mb-50-20:not(:last-child) {
        margin-bottom: 20px
    }
}

.mb-34-10:not(:last-child) {
    margin-bottom: 34px
}

@media (max-width: 1220px) {
    .mb-34-10:not(:last-child) {
        margin-bottom: 24px
    }
}

@media (max-width: 991px) {
    .mb-34-10:not(:last-child) {
        margin-bottom: 16px
    }
}

@media (max-width: 600px) {
    .mb-34-10:not(:last-child) {
        margin-bottom: 10px
    }
}

.mb-32:not(:last-child) {
    margin-bottom: 32px
}

.mb-16:not(:last-child) {
    margin-bottom: 16px
}

.mb-20:not(:last-child) {
    margin-bottom: 20px
}

.mb-160-40:not(:last-child) {
    margin-bottom: 160px
}

@media (max-width: 1220px) {
    .mb-160-40:not(:last-child) {
        margin-bottom: 120px
    }
}

@media (max-width: 991px) {
    .mb-160-40:not(:last-child) {
        margin-bottom: 80px
    }
}

@media (max-width: 600px) {
    .mb-160-40:not(:last-child) {
        margin-bottom: 40px
    }
}

.mb-80-20:not(:last-child) {
    margin-bottom: 80px
}

@media (max-width: 1220px) {
    .mb-80-20:not(:last-child) {
        margin-bottom: 60px
    }
}

@media (max-width: 991px) {
    .mb-80-20:not(:last-child) {
        margin-bottom: 40px
    }
}

@media (max-width: 600px) {
    .mb-80-20:not(:last-child) {
        margin-bottom: 20px
    }
}

.mb-section:not(:last-child) {
    margin-bottom: 80px
}

@media (max-width: 991px) {
    .mb-section:not(:last-child) {
        margin-bottom: 60px
    }
}

@media (max-width: 600px) {
    .mb-section:not(:last-child) {
        margin-bottom: 40px
    }
}

.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: 150px;
    padding-bottom: 60px
}

.terms h1 {
    font-size: 42px;
    line-height: 1.3;
    color: var(--main);
    font-weight: 700
}

@media (max-width: 991px) {
    .terms h1 {
        font-size: 32px
    }
}

@media (max-width: 600px) {
    .terms h1 {
        font-size: 16px
    }
}

.terms h1:not(:last-child) {
    margin-bottom: 30px
}

@media (max-width: 991px) {
    .terms h1:not(:last-child) {
        margin-bottom: 20px
    }
}

@media (max-width: 600px) {
    .terms h1:not(:last-child) {
        margin-bottom: 15px
    }
}

.terms h2 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--main);
    font-weight: 700
}

@media (max-width: 991px) {
    .terms h2 {
        font-size: 25px
    }
}

@media (max-width: 600px) {
    .terms h2 {
        font-size: 14px
    }
}

.terms h2:not(:last-child) {
    margin-bottom: 30px
}

@media (max-width: 991px) {
    .terms h2:not(:last-child) {
        margin-bottom: 20px
    }
}

@media (max-width: 600px) {
    .terms h2:not(:last-child) {
        margin-bottom: 15px
    }
}

.terms p {
    font-size: 20px;
    line-height: 1.3;
    color: var(--main);
    font-weight: 400
}

@media (max-width: 991px) {
    .terms p {
        font-size: 18px
    }
}

@media (max-width: 600px) {
    .terms p {
        font-size: 12px
    }
}

.terms p:not(:last-child) {
    margin-bottom: 30px
}

@media (max-width: 991px) {
    .terms p:not(:last-child) {
        margin-bottom: 20px
    }
}

@media (max-width: 600px) {
    .terms p:not(:last-child) {
        margin-bottom: 15px
    }
}

.terms ul:not(:last-child) {
    margin-bottom: 30px
}

@media (max-width: 991px) {
    .terms ul:not(:last-child) {
        margin-bottom: 20px
    }
}

@media (max-width: 600px) {
    .terms ul:not(:last-child) {
        margin-bottom: 15px
    }
}

.terms li {
    font-size: 18px;
    line-height: 1.3;
    color: var(--main);
    font-weight: 400
}

@media (max-width: 991px) {
    .terms li {
        font-size: 16px
    }
}

@media (max-width: 600px) {
    .terms li {
        font-size: 12px
    }
}

.terms li:not(:last-child) {
    margin-bottom: 30px
}

@media (max-width: 991px) {
    .terms li:not(:last-child) {
        margin-bottom: 20px
    }
}

@media (max-width: 600px) {
    .terms li:not(:last-child) {
        margin-bottom: 15px
    }
}

.lottoflashau-header {
    padding: 5px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 4
}

.lottoflashau-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: 20px
}

@media (max-width: 768px) {
    .lottoflashau-header__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.lottoflashau-header__menu {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

@media (max-width: 991px) {
    .lottoflashau-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;
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        height: 100vh;
        background-color: var(--black);
        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) {
    .lottoflashau-header__menu {
        padding: 80px 30px 30px 30px
    }
}

.lottoflashau-header__menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: visible
}

.lottoflashau-header__exit-menu {
    display: none;
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: transparent
}

@media (max-width: 991px) {
    .lottoflashau-header__exit-menu {
        display: block;
        top: 30px;
        right: 30px
    }
}

@media (max-width: 600px) {
    .lottoflashau-header__exit-menu {
        top: 15px;
        right: 15px
    }
}

.lottoflashau-header__exit-menu::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.lottoflashau-header__exit-menu::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.lottoflashau-header__leffer {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px
}

@media (max-width: 991px) {
    .lottoflashau-header__leffer {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }
}

@media (max-width: 768px) {
    .lottoflashau-header__leffer {
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.lottoflashau-header__left {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 271px;
    flex: 0 1 271px
}

@media (max-width: 991px) {
    .lottoflashau-header__left {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }
}

.lottoflashau-header__links {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media (max-width: 768px) {
    .lottoflashau-header__links {
        width: 100%;
        -ms-flex-negative: 1;
        flex-shrink: 1;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.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 24px
}

@media (max-width: 991px) {
    .nav__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px
    }
}

.nav__list_footer {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 20px 50px
}

@media (max-width: 991px) {
    .nav__list_footer {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 20px 50px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.nav__link {
    -webkit-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out
}

.nav__link.active {
    font-size: 16px
}

@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
}

.lottoflashau-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: 22px;
    height: 14px;
    background-color: transparent
}

@media (max-width: 991px) {
    .lottoflashau-burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.lottoflashau-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 8px
}

.lottoflashau-hero {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 135px;
    padding-bottom: 80px;
    position: relative;
}

.lottoflashau-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 0;
}
.lottoflashau-hero .container {
    position: relative;
    z-index: 1
}
@media (max-width: 1220px) {
    .lottoflashau-hero {
        padding-bottom: 60px
    }
}

@media (max-width: 991px) {
    .lottoflashau-hero {
        padding-top: 150px;
        padding-bottom: 40px
    }
}

@media (max-width: 600px) {
    .lottoflashau-hero {
        padding-bottom: 20px
    }
}

.lottoflashau-hero__text {
    max-width: 600px;
    width: 100%
}

.lottoflashau-hero__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;
    gap: 10px 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.lottoflashau-hero__links_start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.wrapper-timer {
    border-radius: 30px;
    padding: 32px 20px;
    max-width: 600px;
    width: 100%;
    background-color: var(--black);
    margin-left: auto;
    margin-right: auto
}

@media (max-width: 991px) {
    .wrapper-timer {
        padding: 32px 15px
    }
}

@media (max-width: 600px) {
    .wrapper-timer {
        padding: 32px 10px;
        max-width: 400px
    }
}

.wrapper-timer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 4px
}

.wrapper-timer__item {
    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;
    border-radius: 20px;
    padding: 5px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 98px;
    flex: 0 1 98px;
    min-height: 117px;
    background-color: #fbfbfb
}

@media (max-width: 600px) {
    .wrapper-timer__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 74px;
        flex: 0 1 74px;
        min-height: 99px
    }
}

.lottoflashau-block {
    background-color: var(--white)
}

.lottoflashau-block__top {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template:auto/repeat(2, 1fr);
    gap: 20px
}

@media (max-width: 991px) {
    .lottoflashau-block__top {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr
    }
}

.lottoflashau-block__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template:auto/repeat(2, 1fr);
    gap: 20px
}

@media (max-width: 991px) {
    .lottoflashau-block__list {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr
    }
}

.lottoflashau-block__item {
    border-radius: 20px;
    padding: 20px;
    background-color: var(--toxic)
}

.whys {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template:auto/repeat(3, 1fr);
    gap: 20px
}

@media (max-width: 991px) {
    .whys {
        -ms-grid-rows: auto;
        -ms-grid-columns:(1fr) [ 2 ];
        grid-template:auto/repeat(2, 1fr)
    }
}

@media (max-width: 600px) {
    .whys {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr
    }
}

.whys__item {
    border-radius: 20px;
    padding: 20px;
    background-color: var(--green);
    border: var(--border)
}

.whys__item:nth-child(even) {
    background-color: var(--black)
}

.whys__icon {
    width: 44px;
    height: 44px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

.lottoflashau-footer {
    background-color: var(--black)
}

.lottoflashau-footer__icon {
    width: 60px;
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

.lottoflashau-footer__icon_18 {
    width: 54px;
    height: 54px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.lottoflashau-footer__bottom {
    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: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.lottoflashau-footer__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media (max-width: 991px) {
    .lottoflashau-footer__links {
        gap: 20px
    }
}

.lottoflashau-footer__links a {
    height: 60px;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

@media (any-hover: hover) {
    .lottoflashau-footer__links a:hover {
        opacity: .5
    }
}

.lottoflashau-footer__links a:focus-visible {
    opacity: .5
}

.lottoflashau-footer__links a:active {
    opacity: .5;
    -webkit-transition-duration: .1s;
    transition-duration: .1s
}

.lottoflashau-footer__top-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px
}

@media (max-width: 991px) {
    .lottoflashau-footer__top-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.lottoflashau-footer__title {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 500px;
    flex: 0 1 500px
}

@media (max-width: 991px) {
    .lottoflashau-footer__title {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }
}

.lottoflashau-footer__texts {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 730px;
    flex: 0 1 730px
}

@media (max-width: 991px) {
    .lottoflashau-footer__texts {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }
}

.lottoflashau-footer__middle {
    padding-bottom: 80px;
    border-bottom: 1px solid var(--white)
}

@media (max-width: 1220px) {
    .lottoflashau-footer__middle {
        padding-bottom: 60px
    }
}

@media (max-width: 991px) {
    .lottoflashau-footer__middle {
        padding-bottom: 40px
    }
}

@media (max-width: 600px) {
    .lottoflashau-footer__middle {
        padding-bottom: 20px
    }
}

.lottoflashau-popup-cookie {
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 8;
    background-color: var(--black)
}

.lottoflashau-popup-cookie.disabled {
    display: none
}

.lottoflashau-popup-cookie__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media (max-width: 768px) {
    .lottoflashau-popup-cookie__container {
        -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
    }
}

.lottoflashau-popup-cookie__descr {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 820px;
    flex: 0 1 820px
}

@media (max-width: 768px) {
    .lottoflashau-popup-cookie__descr {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }
}

.lottoflashau-popup-cookie__buttons {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 282px;
    flex: 0 0 282px;
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template:auto/repeat(2, 1fr);
    gap: 10px
}

@media (max-width: 768px) {
    .lottoflashau-popup-cookie__buttons {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr
    }
}

.lottoflashau-popup-cookie__button {
    min-width: 0;
    width: 100%;
    font-size: 16px;
    padding: 10px
}

.lottoflashau-popup-cookie__link {
    min-width: 0;
    width: 100%;
    font-size: 16px;
    padding: 10px
}

.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(0, 0, 0, .4)
}

.popup__close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.popup__body {
    overflow: auto;
    width: 420px;
    position: relative;
    z-index: 2;
    margin: auto;
    padding: 30px;
    border: 1px solid #fbfbfb;
    border-radius: 20px;
    background-color: var(--black)
}

@media (max-width: 600px) {
    .popup__body {
        width: 95%
    }
}

.popup__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;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.sendler {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    overflow: auto;
    background-color: rgba(0, 0, 0, .4)
}

.sendler.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.sendler__close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.sendler__content {
    overflow: auto;
    width: 450px;
    position: relative;
    z-index: 2;
    margin: auto
}

@media (max-width: 600px) {
    .sendler__content {
        width: 95%
    }
}

.sendler__body {
    border-radius: 20px;
    padding: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.promise__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template:auto/repeat(2, 1fr);
    gap: 50px;
    max-width: 1050px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    grid-template-areas:"item1 item2" "item1 item3"
}

@media (max-width: 991px) {
    .promise__list {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr;
        -ms-grid-rows: auto 20px auto 20px auto;
        grid-template-areas:"item1" "item2" "item3";
        gap: 20px
    }
}

.promise__item {
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 20px;
    padding: 20px;
    background-color: var(--green)
}

.promise__item:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
    grid-area: item1
}

.promise__item:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: item2
}

.promise__item:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
    grid-area: item3
}

@media (max-width: 991px) {
    .promise__item:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1
    }

    .promise__item:nth-child(2) {
        -ms-grid-row: 3;
        -ms-grid-column: 1
    }

    .promise__item:nth-child(3) {
        -ms-grid-row: 5;
        -ms-grid-column: 1
    }
}

.promise__item:last-child {
    background-color: var(--black)
}

.promise__icon {
    width: 44px;
    height: 44px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

.winners-slider__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template:auto/repeat(3, 1fr);
    gap: 20px
}

@media (max-width: 991px) {
    .winners-slider__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 0
    }
}

.winners-slider__slide {
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    background-color: var(--black)
}

@media (max-width: 991px) {
    .winners-slider__slide {
        width: 407px;
        height: auto
    }
}

@media (max-width: 600px) {
    .winners-slider__slide {
        width: 100%
    }
}

.winners-slider__stars {
    width: 100%;
    max-width: 168px;
    height: 40px;
    margin-left: auto;
    margin-right: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

.winners-slider__pagination {
    margin-top: 50px;
    display: none
}

@media (max-width: 991px) {
    .winners-slider__pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.logiins {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: var(--green)
}

.logiins__link {
    -webkit-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out
}

@media (any-hover: hover) {
    .logiins__link:hover {
        color: var(--hover)
    }
}

.logiins__link:focus-visible {
    color: var(--hover)
}

.logiins__link:active {
    color: var(--active);
    -webkit-transition-duration: .1s;
    transition-duration: .1s
}

.logiins-form {
    max-width: 760px;
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

.logiins-form__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
    position: relative
}

.logiins-form__input::-webkit-calendar-picker-indicator {
    opacity: 0
}

.logiins-form__labels {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template:auto/repeat(2, 1fr);
    gap: 10px
}

.logiins-form__eye {
    position: absolute;
    bottom: 10px;
    right: 22px;
    z-index: 1;
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

.logiins-form__eye.active {
    opacity: .3
}

@media (any-hover: hover) {
    .logiins-form__eye:hover {
        opacity: .5
    }
}

.logiins-form__eye:focus-visible {
    opacity: .5
}

.logiins-form__eye:active {
    opacity: .5;
    -webkit-transition-duration: .1s;
    transition-duration: .1s
}

.logiins-form__button {
    min-width: 300px
}

@media (max-width: 400px) {
    .logiins-form__button {
        min-width: 0;
        width: 100%
    }
}

.logiins-form__button_toxic {
    color: var(--green);
    min-width: 129px;
    background-color: var(--toxic)
}

.wrapper-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    position: relative
}

.wrapper-checkbox__checkbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    cursor: pointer
}

.wrapper-checkbox__checkbox:checked + .wrapper-checkbox__icon::before {
    display: block
}

@media (any-hover: hover) {
    .wrapper-checkbox__checkbox:hover + .wrapper-checkbox__icon {
        border-color: var(--hover)
    }
}

.wrapper-checkbox__checkbox:focus-visible + .wrapper-checkbox__icon {
    border-color: var(--hover)
}

.wrapper-checkbox__icon {
    border: 2px solid #999397;
    border-radius: 5px;
    width: 32px;
    height: 32px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    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;
    -webkit-transition: border-color .3s ease-in-out;
    transition: border-color .3s ease-in-out
}

.wrapper-checkbox__icon::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--white);
    display: none
}