* {
    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: 600;
    font-display: swap;
    src: url(../fonts/Inter-SemiBold.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: Inter;
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(../fonts/Inter-Black.woff2) format("woff2")
}

:root {
    --font-main: "Inter", sans-serif;
    --container-width: 1140px;
    --container-step: 20px;
    --container-step-tablet: 15px;
    --container-step-mobile: 10px;
    --container: calc(var(--container-width) + (var(--container-step) * 2));
    --background-page: #fdfdff;
    --main: #000000;
    --black: #000000;
    --white: #ffffff;
    --l-blue: #4BA2B3;
    --gradient: linear-gradient(90deg, #4ba2b3 0%, #b91fec 100%);
    --dark: #1E1E1E;
    --blue: #a7cff3;
    --hover: #1b879c;
    --active: #1b879c
}

.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:not(:last-child) {
    margin-bottom: 60px
}

.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)
}

.color-white {
    color: var(--white)
}

.color-l-blue {
    color: var(--black)
}

.tx-32 {
    font-weight: 400;
    font-size: 32px;
    line-height: 1.3
}

.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 12px;
    color: var(--l-blue);
    line-height: 1;
    -webkit-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out
}

.logo span {
    width: 39px;
    height: 31px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

@media (any-hover:hover) {
    .logo:hover {
        color: var(--hover)
    }
}

.logo:focus-visible {
    color: var(--hover)
}

.logo:active {
    color: var(--active);
    -webkit-transition-duration: .1s;
    transition-duration: .1s
}

.tx-main {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3
}

.tx-24 {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3
}

.tx-20 {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3
}

.input {
    display: block;
    border: 1px solid #c2c2c2;
    border-radius: 15px;
    padding: 0 16px;
    width: 100%;
    height: 42px;
    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)
}

.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;
    font-size: 16px;
    line-height: 1;
    font-weight: 900;
    color: var(--white);
    background: var(--gradient);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border: 1px solid var(--white);
    border-radius: 100px;
    min-width: 205px;
    min-height: 44px;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

.but span {
    width: 24px;
    height: 24px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

.but_border {
    min-height: 39px;
    border: 2px solid transparent;
    color: var(--black);
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) padding-box, var(--gradient) border-box;
    background: linear-gradient(#fff, #fff) padding-box, var(--gradient) border-box
}

.but_lgreen {
    border-radius: 5px;
    background: 0 0;
    border: #ffdead;
    background-color: var(--l-blue)
}

@media (any-hover:hover) {
    .but:hover {
        opacity: .5
    }
}

.but:focus-visible {
    opacity: .5
}

.but:active {
    opacity: .5;
    -webkit-transition-duration: .1s;
    transition-duration: .1s
}

.mb-section:not(:last-child) {
    margin-bottom: 60px
}

.mb-32-10:not(:last-child) {
    margin-bottom: 32px
}

@media (max-width:1220px) {
    .mb-32-10:not(:last-child) {
        margin-bottom: 24px
    }
}

@media (max-width:991px) {
    .mb-32-10:not(:last-child) {
        margin-bottom: 16px
    }
}

@media (max-width:600px) {
    .mb-32-10:not(:last-child) {
        margin-bottom: 10px
    }
}

.pt-60 {
    padding-top: 60px
}

.mb-20:not(:last-child) {
    margin-bottom: 20px
}

.mb-10:not(:last-child) {
    margin-bottom: 10px
}

.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)
}

.aussielottowin-header {
    padding: 10px 0;
    background-color: transparent;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25)
}

.aussielottowin-header__container {
    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
}

.terms {
    padding: 80px 0 0 0
}

.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
    }
}

.aussielottowin-hero {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(/img/hero.webp);
    padding-top: 70px;
    padding-bottom: 70px;
    margin-top: 60px
}

@media (max-width:600px) {
    .aussielottowin-hero {
        background-image: url(/img/hero-mob.webp)
    }
}

.aussielottowin-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
    z-index: 1
}

.aussielottowin-hero__title {
    max-width: 725px
}

.aussielottowin-hero__text {
    max-width: 1000px
}

.aussielottowin-hero__container {
    position: relative;
    z-index: 2
}

.aussielottowin-blochik__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px
}

@media (max-width:991px) {
    .aussielottowin-blochik__top {
        text-align: center
    }
}

@media (max-width:991px) {
    .aussielottowin-blochik__link {
        display: none
    }
}

.aussielottowin-blochik__list {
    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) {
    .aussielottowin-blochik__list {
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[2];
        grid-template: auto/repeat(2, 1fr)
    }
}

@media (max-width:600px) {
    .aussielottowin-blochik__list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr
    }
}

.aussielottowin-blochik__item {
    border-radius: 30px;
    padding: 20px;
    background-color: var(--l-blue)
}

.aussielottowin-blochik__image {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.aussielottowin-winners {
    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) {
    .aussielottowin-winners {
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[2];
        grid-template: auto/repeat(2, 1fr)
    }
}

@media (max-width:600px) {
    .aussielottowin-winners {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr
    }
}

.aussielottowin-winners__item {
    border-radius: 30px;
    padding: 20px;
    position: relative;
    min-height: 162px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.aussielottowin-winners__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
    z-index: 1;
    border-radius: inherit
}

.aussielottowin-winners__item-descr {
    position: relative;
    z-index: 2
}

.aussielottowin-plyk {
    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) {
    .aussielottowin-plyk {
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[2];
        grid-template: auto/repeat(2, 1fr)
    }
}

@media (max-width:600px) {
    .aussielottowin-plyk {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr
    }
}

.aussielottowin-plyk__item {
    border-radius: 30px;
    padding: 20px;
    background-color: var(--l-blue)
}

.aussielottowin-plyk__icon {
    width: 120px;
    height: 120px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

.aussielottowin-faq__item {
    border: 1px solid var(--l-blue);
    border-radius: 30px;
    padding: 20px;
    position: relative
}

.aussielottowin-faq__item.active .aussielottowin-faq__button span {
    -webkit-transform: rotate(0);
    transform: rotate(0)
}

.aussielottowin-faq__item-top {
    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
}

.aussielottowin-faq__button {
    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: 20px;
    height: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

.aussielottowin-faq__button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.aussielottowin-faq__button span {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    -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
}

@media (any-hover:hover) {
    .aussielottowin-faq__button:hover {
        opacity: .5
    }
}

.aussielottowin-faq__button:focus-visible {
    opacity: .5
}

.aussielottowin-faq__button:active {
    opacity: .5;
    -webkit-transition-duration: .1s;
    transition-duration: .1s
}

.aussielottowin-faq__bottom {
    -webkit-transition: height .3s ease-in-out;
    transition: height .3s ease-in-out;
    height: 0;
    overflow: hidden
}

.aussielottowin-faq__texts {
    padding-top: 10px
}

.aussielottowin-contacts__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px
}

@media (max-width:991px) {
    .aussielottowin-contacts__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.aussielottowin-contacts__image {
    border-radius: 30px;
    padding: 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 559px;
    flex: 0 1 559px;
    height: 429px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

@media (max-width:991px) {
    .aussielottowin-contacts__image {
        height: 301px;
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }
}

.form {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 561px;
    flex: 0 1 561px
}

@media (max-width:991px) {
    .form {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }
}

.form__button {
    min-width: 0;
    width: 100%
}

.aussielottowin-res {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: var(--blue)
}

.aussielottowin-res__content {
    position: relative;
    border-radius: 30px;
    padding: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.aussielottowin-res__content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(75, 162, 179, .8);
    z-index: 1;
    border-radius: inherit
}

.aussielottowin-res__content-item {
    position: relative;
    z-index: 2
}

.aussielottowin-footer {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: var(--dark)
}

.aussielottowin-footer__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px 50px
}

.aussielottowin-footer__links a {
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

@media (any-hover:hover) {
    .aussielottowin-footer__links a:hover {
        opacity: .5
    }
}

.aussielottowin-footer__links a:focus-visible {
    opacity: .5
}

.aussielottowin-footer__links a:active {
    opacity: .5;
    -webkit-transition-duration: .1s;
    transition-duration: .1s
}

@media (max-width:768px) {
    .aussielottowin-footer__links {
        gap: 20px
    }
}

.aussielottowin-footer__war {
    width: 40px;
    height: 40px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

.nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width:991px) {
    .nav__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.nav__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -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
}

.nav__link .icon {
    width: 12px;
    height: 12px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

.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: 450px;
    position: relative;
    z-index: 2;
    margin: auto;
    padding: 24px;
    background-color: var(--dark)
}

@media (max-width:600px) {
    .popup__body {
        width: 95%
    }
}

.popup__button {
    min-width: 0;
    width: 100%
}

.aussielottowin-popup-cookie {
    position: fixed;
    bottom: 0;
    z-index: 8;
    right: 0;
    width: 450px;
    padding: 24px;
    background-color: var(--dark)
}

@media (max-width:600px) {
    .aussielottowin-popup-cookie {
        width: 100%
    }
}

.aussielottowin-popup-cookie.disabled {
    display: none
}

.aussielottowin-popup-cookie__button {
    font-weight: 700;
    min-width: 0;
    width: 100%
}

.aussielottowin-popup-cookie__link {
    font-weight: 700;
    min-width: 0;
    width: 100%;
    background-color: transparent;
    border: 2px solid var(--l-blue)
}

.popupsend {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    overflow: auto;
    background-color: rgba(0, 0, 0, .4)
}

.popupsend.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.popupsend__close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2
}

.popupsend__content {
    overflow: auto;
    width: 450px;
    position: relative;
    z-index: 2;
    margin: auto;
    background-color: var(--dark);
    padding: 20px
}

@media (max-width:600px) {
    .popupsend__content {
        width: 95%
    }
}

.popupsend__exit {
    min-width: 0;
    width: 100%
}

.popupsend-auth {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    overflow: auto;
    background-color: rgba(0, 0, 0, .4)
}

.popupsend-auth.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.popupsend-auth__close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2
}

.popupsend-auth__content {
    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-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: auto;
    width: 450px;
    position: relative;
    z-index: 2;
    margin: auto;
    background-color: var(--dark);
    padding: 20px;
    min-height: 263px
}

@media (max-width:600px) {
    .popupsend-auth__content {
        width: 95%
    }
}

.popupsend-auth__exit {
    min-width: 0;
    width: 100%
}

.aussielottowin-auth .form {
    max-width: 820px;
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

.aussielottowin-auth .form__input {
    font-weight: 600;
    font-size: 16px;
    border-radius: 100px;
    height: 55px;
    background-color: #e4e4e4
}

.aussielottowin-auth__text a {
    background: -webkit-gradient(linear, left top, right top, from(#4ba2b3), to(#b91fec));
    background: linear-gradient(90deg, #4ba2b3 0, #b91fec 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

@media (any-hover:hover) {
    .aussielottowin-auth__text a:hover {
        opacity: .5
    }
}

.aussielottowin-auth__text a:focus-visible {
    opacity: .5
}

.aussielottowin-auth__text a:active {
    opacity: .5;
    -webkit-transition-duration: .1s;
    transition-duration: .1s
}