* {
    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
}

body {
    background-image: url('/dimslotistik-pictures/dimslotistik-page-bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
}

.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 2;
}

.bubble {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: rgba(85, 91, 132, 0.8);
    opacity: 0.6;
    animation: floatUp linear infinite;
}

/* Одновременная анимация вверх + вбок */
@keyframes floatUp {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(var(--x-move, 50px), -120vh);
    }
}




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
}

.disck {
    list-style: disc;
}

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: 500;
    font-display: swap;
    src: url(../dimslotistik-components/dimslotistik-Inter-Medium.woff2) format("woff2")
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../dimslotistik-components/dimslotistik-Inter-Regular.woff2) format("woff2")
}

@font-face {
    font-family: LilitaOne;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../dimslotistik-components/dimslotistik-LilitaOne-Regular.woff2) format("woff2")
}

/* moul-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Moul';
    font-style: normal;
    font-weight: 400;
    src: url('../dimslotistik-components/dimslotistik-moul-v28-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
    --font-main: Inter;
    --container-width: 1170px;
    --container-step: 20px;
    --container-step-tablet: 15px;
    --container-step-mobile: 10px;
    --container: calc(var(--container-width) + (var(--container-step) * 2));
    --background-page: #000000;
    --main: #ffffff;
    --black: #000000;
    --white: #ffffff;
    --orange: #ca5127;
    --yellow: #ffe137;
    --red: #ff0000;
    --hover: #272FCA;
    --active: #e4410b
}

.LilitaOne {
    font-family: Moul
}

.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);
}

.main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.main:not(:last-child) {
    margin-bottom: 80px
}

@media (max-width:600px) {
    .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)
}

.tx-50-32 {
    font-weight: 400;
    font-size: 50px;
    line-height: 1.35
}

@media (max-width:1220px) {
    .tx-50-32 {
        font-size: 46px
    }
}

@media (max-width:991px) {
    .tx-50-32 {
        font-size: 38px
    }
}

@media (max-width:600px) {
    .tx-50-32 {
        font-size: 24px
    }
}

.tx-16 {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.35
}

.tx-12 {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.35
}

.tx-main {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35
}

@media (max-width:600px) {
    .tx-main {
        font-size: 12px
    }
}

.tx-40-24 {
    font-weight: 400;
    font-size: 40px;
    line-height: 1.35
}

@media (max-width:1220px) {
    .tx-40-24 {
        font-size: 34px
    }
}

@media (max-width:991px) {
    .tx-40-24 {
        font-size: 28px
    }
}

@media (max-width:600px) {
    .tx-40-24 {
        font-size: 20px
    }
}

.tx-100-50 {
    font-weight: 400;
    font-size: 100px;
    line-height: 100%
}

@media (max-width:1220px) {
    .tx-100-50 {
        font-size: 86px
    }
}

@media (max-width:991px) {
    .tx-100-50 {
        font-size: 64px
    }
}

@media (max-width:600px) {
    .tx-100-50 {
        font-size: 34px
    }
}

.mb-40-20 {
    margin-bottom: 40px;
}

@media(max-width:600px) {
    .mb-40-20 {
        margin-bottom: 20px;
    }
}

.tx-20 {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%
}

.tx-24 {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%
}

.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: 6px 10px;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: var(--white);
    border-radius: 15px;
    background: linear-gradient(90deg, #272FCA 0%, #501364 100%);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 399px;
    width: 100%;
    min-height: 44px;
    -webkit-transition: background-color .3s ease-in-out;
    transition: background-color .3s ease-in-out
}

.but_border {
    background-color: transparent;
    border-radius: 15px;
    border: 1px solid #272FCA;
    font-weight: 400;
    min-width: 114px;
    min-height: 31px;
    background: transparent;
}

@media (max-width:991px) {
    .but_border {
        min-height: 32px
    }
}

@media (max-width:600px) {
    .but_border {
        font-size: 12px;
        min-height: 27px
    }
}

@media (any-hover:hover) {
    .but:hover {
        background-color: #272FCA;
    }
}

.but:focus-visible {
    background-color: var(--hover)
}

.but:active {
    background-color: var(--active);
    -webkit-transition-duration: .1s;
    transition-duration: .1s
}

.tx-30-24 {
    font-weight: 400;
    font-size: 30px;
    line-height: 100%
}

@media (max-width:1220px) {
    .tx-30-24 {
        font-size: 28px
    }
}

@media (max-width:991px) {
    .tx-30-24 {
        font-size: 26px
    }
}

@media (max-width:600px) {
    .tx-30-24 {
        font-size: 24px
    }
}

.input {
    display: block;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 12px;
    padding: 0 20px;
    width: 100%;
    height: 37px;
    font-weight: 400;
    font-size: 14px;
    color: var(--white);
    background-color: transparent;
    -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)
}

.logo {
    display: block;
    width: 125px;
    height: 35px;
    -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-10:not(:last-child) {
    margin-bottom: 10px
}

.mb-20:not(:last-child) {
    margin-bottom: 20px
}

.mb-40-20:not(:last-child) {
    margin-bottom: 40px
}

@media (max-width:991px) {
    .mb-40-20:not(:last-child) {
        margin-bottom: 30px
    }
}

@media (max-width:600px) {
    .mb-40-20:not(:last-child) {
        margin-bottom: 20px
    }
}

.mb-80-60:not(:last-child) {
    margin-bottom: 80px
}

@media (max-width:600px) {
    .mb-80-60:not(:last-child) {
        margin-bottom: 30px
    }
}

.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)
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.dimslotistik-header {
    padding: 15px 0;
    background-color: transparent;
    position: absolute;
    z-index: 999;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.60);
}

.dimslotistik-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:600px) {}

.dimslotistik-header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px 60px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media (max-width:450px) {
    .dimslotistik-header__right {
        width: 100%
    }
}

.dimslotistik-header__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px
}

@media (max-width:600px) {
    .dimslotistik-header__links {
        width: 100%
    }
}

@media (max-width:450px) {
    .dimslotistik-header__links li {
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%
    }
}

@media (max-width:450px) {
    .dimslotistik-header__links li button {
        width: 100%;
        min-width: 0
    }
}

.dimslotistik-header__link {
    -webkit-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out
}

@media (max-width:991px) {
    .dimslotistik-header__link {
        display: none
    }
}

@media (any-hover:hover) {
    .dimslotistik-header__link:hover {
        color: var(--hover)
    }
}

.dimslotistik-header__link:focus-visible {
    color: var(--hover)
}

.dimslotistik-header__link:active {
    color: var(--active);
    -webkit-transition-duration: .1s;
    transition-duration: .1s
}

.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 32px
}

@media (max-width:991px) {
    .nav__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 50px
    }
}

@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 {
    color: #D6E4FF;
    -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: 52px;
    height: 25px;
    background-color: transparent
}

@media (max-width:991px) {
    .burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.burger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #373737;
    border-radius: 8px
}

.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
    }
}

main {
    position: relative;
    z-index: 2
}

.dimslotistik-hero {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative
}

/* .dimslotistik-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(13, 17, 47, 0.8);
    height: 100%;
    z-index: 1
} */

.dimslotistik-hero__container {
    position: relative;
    z-index: 2;
    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;
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 40px
}

@media (max-width:600px) {
    .dimslotistik-hero__container {
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 10px;
    }
}

.dimslotistik-hero__descr {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 771px;
    flex: 0 1 771px;
    width: 100%
}

.dimslotistik-why__top {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto
}

.dimslotistik-why__content {
    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
}

.dimslotistik-lotto-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width:991px) {
    .dimslotistik-why__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.dimslotistik-why__descr {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 675px;
    flex: 0 1 675px;
    width: 100%
}

@media (max-width:991px) {
    .dimslotistik-why__descr {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }
}

.dimslotistik-why__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px
}

.ring {
    width: 24px;
    height: 24px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/dimslotistik-pictures/dimslotistik-ring.webp');
}

.dimslotistik-why__image {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 400px;
    flex: 0 0 400px;
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

@media (max-width:991px) {
    .dimslotistik-why__image {
        max-width: 300px;
        height: 300px;
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }
}

@media (max-width:600px) {
    .dimslotistik-why__image {
        max-width: 300px;
        height: 300px
    }
}

.dimslotistik-why__image_about {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 288px;
    flex: 0 1 288px;
    height: 200px;
}

@media (max-width:991px) {
    .dimslotistik-why__image_about {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        max-width: 288px
    }
}

.dimslotistik-jackpot__content {
    position: relative;
    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: 20px;
    min-height: 500px;
    border-radius: 50px;
    border: 1px solid #CA5127;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

@media (max-width:991px) {
    .dimslotistik-jackpot__content {
        min-height: 424px
    }
}

@media (max-width:600px) {
    .dimslotistik-jackpot__content {
        min-height: 324px;
        padding: 10px
    }
}

.dimslotistik-jackpot__content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: inherit
}

.dimslotistik-lotto-hold {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dimslotistik-lotto-top {
    border-radius: 50px;
    border: 1px solid #272FCA;
    background: rgba(25, 15, 39, 0.50);
    display: flex;
    padding: 20px;
    gap: 20px;
    justify-content: start;
    align-items: start;
    display: flex;
    flex-direction: column;
}

.dimslotistik-lotto-name {
    color: #FFF;
    font-family: Moul;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 100% */
    letter-spacing: -1px;
}

.dimslotistik-lotto-txt {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 500px;
}

@media(max-width:1100px) {
    .dimslotistik-lotto-txt {
        max-width: 450px;
    }
}

@media(max-width:1020px) {
    .dimslotistik-lotto-txt {
        max-width: 400px;
    }
}

.mob-txt {
    display: none;
}

.jack-btn {
    display: flex;
    align-items: center;
    gap: 42px;

    display: none;
}

@media(max-width:991px) {
    .mob-txt {
        display: flex;
    }

    .jack-btn {
        display: flex;
        flex-direction: column;
        gap: 17px;
    }

    .dimslotistik-lotto-txt {
        max-width: 100%;
    }
}

.dimslotistik-lotto-jackpot {
    color: #FFF;
    text-align: center;
    font-family: Moul;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 75% */
    letter-spacing: -1px;
}

.dimslotistik-lotto-top .but {
    max-width: 163px;
}

.dimslotistik-lotto-info {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.dimslotistik-lotto-img {
    height: 120px;
    max-width: 120px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border: none;
}

@media(max-width:600px) {
    .dimslotistik-lotto-top {
        align-items: center;
        padding: 14px 20px;
        gap: 20px;
    }

    .dimslotistik-lotto-img {
        height: 100px;
        max-width: 100px;
    }

    .dimslotistik-lotto-name {
        font-size: 20px;

    }

    .dimslotistik-lotto-txt {
        font-size: 14px;
    }

    .dimslotistik-lotto-jackpot {
        font-size: 20px;
    }

    .jack-btn {
        max-width: 140px;
        width: 100%;
    }
}

.dimslotistik-jackpot__descr {
    position: relative;
    z-index: 2
}

.dimslotistik-jackpot__price {
    background: linear-gradient(90deg, #FF71CB 0%, #FEFE23 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width:991px) {
    .dimslotistik-what__container {
        padding: 0 16px;
    }
}

.dimslotistik-what-table {
    display: block
}

.dimslotistik-what-table__thead {
    display: block;
    margin-bottom: 10px;
}

.dimslotistik-what-table__tr {
    background-color: var(--black);
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 162px 162px 1fr;
    grid-template: auto/162px 162px 1fr;
    margin-bottom: 10px;
}

@media (max-width:1220px) {
    .dimslotistik-what-table__tr {
        -ms-grid-rows: auto;
        -ms-grid-columns: 120px 120px 1fr;
        grid-template: auto/120px 120px 1fr
    }
}

@media (max-width:991px) {
    .dimslotistik-what-table__tr {
        -ms-grid-rows: auto;
        -ms-grid-columns: 100px 100px 1fr;
        grid-template: auto/100px 100px 1fr
    }
}

@media (max-width:600px) {
    .dimslotistik-what-table__tr {
        -ms-grid-rows: auto;
        -ms-grid-columns: 80px 80px 1fr;
        grid-template: auto/80px 80px 1fr
    }
}

.dimslotistik-what-table__tr_background:nth-child(odd) {
    background: linear-gradient(90deg, #FF71CB 0%, #FEFE23 100%), linear-gradient(0deg, #CA5127 0%, #CA5127 100%), #000;
}

.col-b {
    color: #000;
}

.dimslotistik-what-table__tbody {
    display: block
}

.dimslotistik-what-table__th {
    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: 14px 2px
}

.dimslotistik-what-table__td {
    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: 14px 2px
}

.dimslotistik-footer {
    position: relative;
    z-index: 21;
    background-color: var(--black);
    padding-top: 50px;
    padding-bottom: 50px
}

.dimslotistik-footer__top {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.dimslotistik-footer__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width:991px) {
    .dimslotistik-footer__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 20px;
    }
}

.dimslotistik-footer__descr {
    max-width: 575px;
    width: 100%
}

@media (max-width:991px) {
    .dimslotistik-footer__descr {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }
}

.dimslotistik-footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px 50px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width:991px) {
    .dimslotistik-footer__list li {
        height: 50px
    }
}

@media (max-width:600px) {
    .dimslotistik-footer__list li {
        height: 40px
    }
}

.dimslotistik-footer__list li:first-child {
    width: 40px;
    height: 40px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

@media (max-width:991px) {
    .dimslotistik-footer__list li:last-child {
        max-width: 120px
    }
}

.dimslotistik-footer__list a {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

@media (any-hover:hover) {
    .dimslotistik-footer__list a:hover {
        opacity: .5
    }
}

.dimslotistik-footer__list a:focus-visible {
    opacity: .5
}

.dimslotistik-footer__list a:active {
    opacity: .5;
    -webkit-transition-duration: .1s;
    transition-duration: .1s
}

.nav__list_footer {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
}

.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;
    max-width: 420px;
    width: 100%;
    position: relative;
    z-index: 2;
    margin: auto;
    border: 1px solid var(--white);
    border-radius: 30px;
    padding: 30px 60px;
    background-color: var(--black)
}

@media (max-width:991px) {
    .popup__body {
        padding: 30px 20px;
        width: 95%
    }
}

.popup__button {
    min-width: 0;
    width: 100%
}

.popup-cookie {
    border-top: 1px solid var(--hover);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 5;
    right: 0;
    bottom: 0;
    background-color: var(--black)
}

.popup-cookie.disabled {
    display: none
}

.popup-cookie__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px
}

@media (max-width:768px) {
    .popup-cookie__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px
    }
}

.popup-cookie__descr {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width:768px) {
    .popup-cookie__descr {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }
}

.popup-cookie__image {
    width: 70px;
    height: 70px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

@media (max-width:991px) {
    .popup-cookie__image {
        display: none
    }
}

.popup-cookie__texts {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.popup-cookie__links {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 260px;
    flex: 0 0 260px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    width: 100%
}

@media (max-width:768px) {
    .popup-cookie__links {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }
}

.popup-cookie__button {
    min-width: 0;
    width: 100%;
    min-height: 34px;
    font-weight: 500
}

.popup-cookie__link {
    min-width: 0;
    width: 100%;
    border-color: var(--white);
    min-height: 34px;
    font-weight: 500;
    background: transparent;
}

.popupauth {
    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);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
    transition: opacity .3s ease-in-out, visibility .3s ease-in-out
}

.popupauth.active {
    opacity: 1;
    visibility: visible
}

.popupauth__close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.popupauth__content {
    border: 1px solid var(--white);
    padding: 30px;
    width: 420px;
    overflow: auto;
    position: relative;
    z-index: 10;
    margin: auto;
    border-radius: 30px;
    background-color: var(--black)
}

@media (max-width:600px) {
    .popupauth__content {
        padding: 20px;
        width: 95%
    }
}

.popupauth__item {
    display: none
}

.popupauth__item.active {
    display: block
}

.popupauth__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.popupauth__form.error input {
    border-color: var(--red)
}

.popupauth__form.error .popupauth__error {
    display: block
}

.popupauth__error {
    display: none;
    color: var(--red)
}

.popupauth__link {
    border-radius: 20px;
    border: 1px solid #00D9FF;
    background: transparent;
}

.popupauth__link.active {
    border-radius: 20px;
    background: linear-gradient(90deg, #00D9FF 0%, #000DFF 100%);
}

.popupauth__button {
    min-width: 0;
    width: 100%;
    font-size: 16px;
    border: 1px solid var(--white);
    min-height: 48px;
    margin: 0 auto;
}

.popupauth__button-close {
    display: flex;
    padding: 10px 36px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    background: #FFF;
    color: #131215;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    /* 16.8px */
    margin: 0 auto;
}

.wrapper-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.wrapper-checkbox__checkbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    z-index: 1
}

.wrapper-checkbox__checkbox:checked+span::before {
    opacity: 1
}

.wrapper-checkbox span {
    width: 18px;
    height: 18px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border: 1px solid var(--white);
    border-radius: 5px;
    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
}

.wrapper-checkbox span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--white);
    opacity: 0;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

.dimslotistik-why__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.rever {
    transform: scale(-1);
}

.carousel-nav-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.carousel-nav-btn {
    background: transparent;
    border: none;
    cursor: pointer;
}

.carousel-nav-img {
    display: block;
    width: 40px;
    height: 40px;
    background-image: url('/dimslotistik-pictures/arr.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

}

.lotto-img-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.lotto-card {
    display: flex;
    max-width: 328px;
    padding: 20px 14px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 15px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 20px;
}

.bg1 {
    background-image: url('/dimslotistik-pictures/lotto1.webp');
}

.bg2 {
    background-image: url('/dimslotistik-pictures/lotto2.webp');
}

.bg3 {
    background-image: url('/dimslotistik-pictures/lotto3.webp');
}

.bg4 {
    background-image: url('/dimslotistik-pictures/lotto4.webp');
}

.bg5 {
    background-image: url('/dimslotistik-pictures/lotto5.webp');
}

.lotto-name-cost {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.lotto-title {
    color: #FFF;
    font-family: Moul;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 75% */
    letter-spacing: -1px;
}

.lotto-price {
    color: #FFF;
    font-family: Moul;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 75% */
    letter-spacing: -1px;
}

.lotto-img-card {
    width: 100px;
    height: 100px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;

}


.b-fz {
    font-size: 16px;
}

@media(max-width:600px) {
    .b-fz {
        font-size: 12px;
    }
}

@media(max-width:768px) {
    .carousel-nav-btns {
        display: none;
    }

    .dimslotistik-lotto-cards ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        width: 100%;
    }
}

@media(max-width:600px) {
    .mb-80-60:not(:last-child) {
        margin-bottom: 20px;
    }



    .dimslotistik-hero__container {
        padding-bottom: 50px;
        padding-top: 70px;
    }

    .tx-50-32 {
        font-size: 28px;
    }

    .text-mb-h {
        display: none;
    }

    .mb-20:not(:last-child) {
        margin-bottom: 10px;
    }
}

@media(max-width:600px) {
    .lotto-img-info {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }


    .tx-50-32 {
        font-size: 24px;
    }

    .tx-40-24 {
        font-size: 20px;
    }

    .dimslotistik-lotto-cards {
        width: 100%;
    }

    .lotto-card {
        margin-right: 0;
        width: 100%;
    }

    .lotto-card .but {
        width: 100%;
        max-width: 290px;
        min-width: auto;
    }

    .lotto-title {
        font-size: 22px;
    }

    .lotto-price {
        font-size: 22px;
    }

    .lotto-name-cost {
        align-items: start;
    }

    .lotto-card {
        margin-left: unset;
    }

    .dimslotistik-header {
        padding: 10px 0;
        z-index: 21;
    }
}

.login-section {
    padding-top: 90px;
}

@media(max-width:600px) {
    .dimslotistik-hero__container {
        padding-top: 80px;
    }

    .dimslotistik-lotto-cards ul {
        gap: 5px;
    }

    .tx-50-32 {
        font-size: 24px;
    }

    .dimslotistik-hero__descr .but {
        min-height: 44px;
    }

    .tx-40-24 {
        font-size: 20px;
    }

    .dimslotistik-header {
        padding: 5px 0;
    }

}

.mob-burger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    margin-left: auto;
    z-index: 1001;
}

.bt {
    background: transparent;
    border: none;
}

.mob-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100%;
    background-color: #2c2e43;
    z-index: 2;
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.mob-menu.active {
    display: flex;
}

.mob-menu__close {
    font-size: 28px;
    cursor: pointer;
    align-self: flex-start;
    margin-bottom: 20px;
}

.mob-menu__buttons {
    list-style: none;
    padding: 0;
    width: 100%;
}

.mob-menu__buttons li {
    margin-bottom: 15px;
}

@media (max-width: 600px) {
    .dimslotistik-header__right {
        display: none;
    }

    .mob-burger {
        display: inline-block;
    }
}

.mw-100 {
    max-width: 100%;
    font-size: 14px;
}