@font-face {
    font-family: "Rubik";
    src: local("Rubik"),url(../fonts/rubik-regular.woff2) format("woff2");
    font-weight: 400
}

@font-face {
    font-family: "Rubik";
    src: local("Rubik"),url(../fonts/rubik-600.woff2) format("woff2");
    font-weight: 600
}

@font-face {
    font-family: "Rubik";
    src: local("Rubik"),url(../fonts/rubik-700.woff2) format("woff2");
    font-weight: 700
}

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

body {
    color: #fff;
    font-family: Rubik,sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    background: linear-gradient(180deg,#18040d 0%,#250714 100%),#18040d
}

a {
    color: inherit
}

input,textarea {
    outline: unset
}

.page__wrapper {
    background: url(../img/bg_left.png) left top no-repeat,url(../img/bg_right.png) right top 370px no-repeat
}

.sidebar {
    position: fixed;
    top: 0;
    max-width: 230px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 5
}

.sidebar a {
    text-decoration: none
}

.sidebar__wrapper {
    position: sticky;
    top: 0;
    background-color: #1b000c
}

.sidebar__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: unset;
    padding: 10px 15px;
    align-items: center
}

.hidden-sidebar .sidebar__header {
    padding: 10px 5px;
    justify-content: center
}

.sidebar__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-grow: 1
}

.sidebar__burger {
    width: 30px;
    height: 30px;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    cursor: pointer;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out,-webkit-transform 0.2s ease-in-out
}

.sidebar__burger svg {
    fill: #74123a;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s
}

.sidebar__burger:hover svg {
    fill: #fff
}

.siderbar__list {
    margin-top: 25px;
    padding: 0 10px;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    scroll-behavior: smooth;
    height: 100vh;
    padding-bottom: 90px
}

.siderbar__list::-webkit-scrollbar {
    width: 5px
}

.siderbar__list::-webkit-scrollbar-track {
    margin: 5px;
    background: #1a1500;
    border-radius: 10px
}

.siderbar__list::-webkit-scrollbar-thumb {
    background: #262000;
    border-radius: 10px
}

.sidebar-list__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #28121b;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px;
    min-height: 40px;
    border-left: 2px solid #fff0;
    border-radius: 10px;
    color: #fff;
    margin-bottom: 5px;
    cursor: pointer
}

.sidebar-list__item:hover {
    background: #854c6366
}

.sidebar-item__icon {
    margin-right: 10px;
    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: 24px;
    height: 24px;
    margin-left: -8px;
    border-radius: 4px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.sidebar-item__icon svg {
    width: 16px;
    height: 16px;
    fill: #fff
}

.sidebar-item__name {
    font-size: 14px;
    line-height: 1.45;
    white-space: nowrap
}

.sidebar-dropdown {
    position: absolute;
    right: 15px;
    top: 8px
}

.sidebar-list__children {
    max-height: 0;
    overflow: hidden
}

.sidebar-seporator {
    height: 20px
}

.sidebar__contacts {
    display: flex;
    justify-content: center
}

.lang-icon svg {
    border-radius: 50%
}

.sidebar-contacts__item {
    background: #262000;
    border-radius: 8px;
    width: 30px;
    height: 30px;
    display: block
}

.sidebar-contacts__item svg {
    width: 30px;
    height: 30px
}

.sidebar-contacts__item rect {
    fill: #262000
}

.sidebar-contacts__item:hover {
    background: #4d4000
}

.sidebar-contacts__item:hover rect {
    fill: #4d4000
}

.sidebar-parrent.active {
    margin-bottom: 0;
    border-radius: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: #250714
}

.sidebar-parrent.active .sidebar-dropdown {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.sidebar-parrent.active+.sidebar-list__children {
    max-height: 550px
}

.sidebar-parrent.active+.sidebar-list__children .sidebar-list__item {
    margin-bottom: 0;
    border-radius: 0;
    background-color: #250714
}

.sidebar-parrent.active+.sidebar-list__children .sidebar-list__item:hover {
    background: #4d4000;
    border-radius: 10px
}

.sidebar-parrent.active+.sidebar-list__children .sidebar-list__item:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-bottom: 5px
}

.no-icon-list .sidebar-item__icon {
    display: none
}

.sidebar-list__children .sidebar-item__name {
    white-space: normal
}

.container {
    max-width: 1170px;
    width: 100%;
    margin: auto
}

.hidden-sidebar {
    max-width: 48px
}

.hidden-sidebar .sidebar__logo {
    display: none
}

.hidden-sidebar .siderbar__list>.sidebar-list__item>.sidebar-item__name {
    position: absolute;
    right: 0;
    opacity: 0;
    pointer-events: none
}

.hidden-sidebar .sidebar-dropdown {
    display: none
}

.hidden-sidebar .sidebar__burger {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}

.hidden-sidebar .siderbar__list {
    padding: 0;
    overflow: visible;
    margin-top: 0
}

.hidden-sidebar .siderbar__list>.sidebar-list__item {
    background-color: unset;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.hidden-sidebar .siderbar__list>.sidebar-list__item>.sidebar-item__icon {
    margin: 0
}

.hidden-sidebar .sidebar-list__children {
    position: absolute;
    height: auto;
    max-height: unset;
    margin-top: -47px;
    margin-left: 39px;
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    padding-left: 20px
}

.hidden-sidebar .sidebar-list__children .sidebar-list__item {
    margin-bottom: 0;
    border-radius: 0;
    padding-top: 10px;
    padding-bottom: 10px
}

.hidden-sidebar .sidebar-list__item:hover+.sidebar-list__children {
    opacity: 1;
    pointer-events: all
}

.hidden-sidebar .sidebar-list__children:hover {
    opacity: 1;
    pointer-events: all
}

.main__wrapper {
    padding-left: 48px
}

.header {
    position: sticky;
    top: 0;
    z-index: 4;
    border-radius: 0 0 12px 12px;
    background: #18040d
}

.container {
    max-width: 1170px;
    width: 100%;
    margin: auto
}

.header__wrapper {
    position: relative;
    min-height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 37px
}

.header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1
}

.header__action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%
}

.header__search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: relative;
    margin: 0 10px
}

.search-input {
    width: 100%;
    padding: 3px 5px 3px 12px;
    color: #fff;
    background: #251119;
    border-radius: 10px;
    border: 0;
    font-size: 16px;
    font-family: Rubik
}

.search-input::-webkit-input-placeholder {
    color: #864c64
}

.search-input::-moz-placeholder {
    color: #864c64
}

.search-input:-ms-input-placeholder {
    color: #864c64
}

.search-input::-ms-input-placeholder {
    color: #864c64
}

.search-input::placeholder {
    color: #864c64
}

.search-button {
    width: 33px;
    height: 33px;
    padding: 8px;
    border: 1px solid #f06;
    border-radius: 6px;
    position: absolute;
    right: 6px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: unset;
    cursor: pointer
}

.search-button svg {
    fill: #fff
}

.header__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    margin: 0 10px
}

.btn {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    -webkit-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
    transition: color 0.3s linear;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    padding: 5px 20px;
    height: 40px;
    width: 128px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #f06;
    background: #fff0;
    transform: skew(-10deg,0);
    border-radius: 3px
}

.fill-btn {
    background: linear-gradient(265deg,#00f0ff 0%,#6100ff 100%);
    border: 0;
    overflow: hidden
}

.fill-btn:before {
    content: "";
    position: absolute;
    top: 0;
    display: block!important;
    width: 100%!important;
    height: 100%!important;
    background: -o-linear-gradient(330deg,transparent,rgb(255 255 255 / .5),transparent)!important;
    background: linear-gradient(120deg,transparent,rgb(255 255 255 / .5),transparent)!important;
    animation: blick 2.5s infinite
}

@-webkit-keyframes blick {
    0% {
        left: -100%
    }

    25% {
        left: 100%
    }

    50% {
        left: 100%
    }

    75% {
        left: -100%
    }

    100% {
        left: -100%
    }
}

@keyframes blick {
    0% {
        left: -100%
    }

    25% {
        left: 100%
    }

    50% {
        left: 100%
    }

    75% {
        left: -100%
    }

    100% {
        left: -100%
    }
}

.banner__header {
    height: 250px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px
}

.banner-item__slide {
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background-position: center;
    min-height: 140px;
    padding: 55px 20px 10px;
    background-size: cover
}

.main__title {
    font-size: 33px;
    font-weight: 500;
    margin-top: 13px;
    line-height: 1.1;
}

.main__title span {
    color: #ff9dc4;
    font-size: 39px;
    font-weight: bold;
}

.banner-slide__label {
    position: absolute;
    top: 0;
    left: -15px;
    z-index: 3;
    height: 35px;
    padding: 0 20px 0 30px;
    font-weight: 600;
    line-height: 35px;
    background: #f06;
    transform: skew(-30deg,0);
    border-right: 2px solid #19040d;
    border-bottom: 2px solid #19040d;
    border-radius: 0 4px 4px 0;
    text-transform: uppercase;
    font-size: 14px
}

.banner-slide__label span {
    display: block;
    transform: skew(30deg,0)
}

.banner__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px
}

.banner__slider {
    width: 100%
}

.banner__slider .banner-item__slide {
    background-position: right
}

.banner-slide__text {
    position: relative;
    z-index: 1;
    max-width: 280px;
    font-weight: 700;
    font-size: 24px;
    font-style: italic;
    line-height: 1.15;
    text-transform: uppercase
}

.banner-slide__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    height: 100%
}

.banner-slide__img img {
    margin-left: 20%;
    height: 100%
}

.slider__navigation {
    position: absolute;
    bottom: 25px;
    right: 25px;
    display: flex;
    z-index: 1;
    transform: skew(-10deg,0);
    gap: 5px
}

.slider__btn {
    transition: background 0.3s linear;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    background: #ffffff1a;
    outline: none;
    border-radius: 2px;
    cursor: pointer
}

.slider__btn:hover {
    background: #fff3
}

.slide-prev {
    transform: rotate(90deg)
}

.slide-next {
    transform: rotate(-90deg)
}

.slots-filters {
    padding: 40px 0
}

.slots-filters__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #fff
}

.filters-games__all {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 5px 0 0;
    font-size: 14px;
    border-radius: 3px;
    padding: 0 15px;
    height: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    background: #f06;
    transform: skew(-10deg,0)
}

.filters-games__icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px 0 0
}

.filters-games__icon path {
    fill: #fff
}

.filter-games__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 110px;
    padding: 0 5px
}

.filter-games__title span {
    transform: skew(10deg,0)
}

.filters__slots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    overflow: hidden
}

.filters-slots__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-right: 1px solid #fff0;
    border-image: linear-gradient(0deg,#fff0 0%,#fff0 0%,rgb(255 255 255 / .3) 0%,#fff0 0%,rgb(255 255 255 / .3) 50%,#fff0 100%);
    border-image-slice: 1;
    font-size: 14px;
    padding: 0 15px;
    height: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    transform: skew(-10deg,0);
    border-right: 2px solid #fff0
}

.filters-slots__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    transform: skew(10deg,0)
}

.filters-slots__icon svg {
    width: 20px;
    height: 20px;
    fill: #fff
}

.filters-slots__name {
    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: 0;
    height: 100%;
    padding: 0;
    text-align: center;
    text-wrap: wrap;
    opacity: 0;
    overflow: hidden;
    scale: 0;
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
    color: #fff;
    transform: skew(10deg,0)
}

.filters-slots__item:hover .filters-slots__name {
    width: 110px;
    padding: 0 5px;
    opacity: 1;
    scale: 1;
    -webkit-transition: scale 0.3s 0.1s;
    -o-transition: scale 0.3s 0.1s;
    transition: scale 0.3s 0.1s
}

.filters__action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45;
    white-space: nowrap
}

.filters-action__search,.filters-action__providers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    height: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-right: 1px solid #fff0;
    border-image: linear-gradient(0deg,#fff0 0%,#fff0 0%,rgb(255 255 255 / .3) 0%,#fff0 0%,rgb(255 255 255 / .3) 50%,#fff0 100%);
    border-image-slice: 1;
    padding-right: 20px;
    padding-left: 20px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    cursor: pointer;
    text-decoration: none;
    transform: skew(-10deg,0);
    border-right: 2px solid #fff0
}

.filters-action__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    transform: skew(10deg,0)
}

.filters__action svg {
    width: 20px;
    height: 20px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear
}

.filters-action__providers {
    border-right: 0;
    cursor: pointer
}

.filters-action__providers svg {
    stroke: #fff;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear
}

.slots {
    color: #fff;
    margin-top: 25px
}

.filters-action__search:hover,.filters-action__providers:hover {
    color: #ffd600
}

.filters-action__search:hover svg,.filters-action__providers:hover svg {
    fill: #ffd600
}

.filters-action__providers:hover svg {
    stroke: #ffd600
}

.slots__inner {
    position: relative
}

.slots__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px
}

.slots-header__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1.4;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    -webkit-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
    transition: color 0.3s linear;
    text-decoration: none;
    font-style: italic
}

.slots-header__title:hover {
    color: #f06
}

.slots-title__icon {
    height: 20px
}

.slots-title__icon svg {
    width: 20px;
    height: 20px;
    -webkit-transition: fill 0.3s linear;
    -o-transition: fill 0.3s linear;
    transition: fill 0.3s linear
}

.slots-header__link {
    color: #f06;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.45;
    -webkit-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
    transition: color 0.3s linear;
    cursor: pointer;
    text-decoration: none
}

.slots-header__link:hover {
    color: #fff
}

.slots-slider {
    margin-top: 25px
}

.slots__slide {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(6,1fr);
    gap: 10px
}

.slot__item {
    overflow: hidden;
    position: relative
}

.slot__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 140px;
    overflow: hidden;
    border-radius: 6px
}

.slot__img img {
    max-width: 100%;
    min-width: 100%
}

.slot__info {
    padding: 10px 0 0
}

.slot__title {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.45;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.slot__provider {
    color: #fff9;
    line-height: 1.45;
    font-size: 14px
}

.slot__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 140px;
    margin-top: 0;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear
}

.slot__item:hover .slot__overlay {
    opacity: 1
}

.slot__overlay::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
    content: "";
    z-index: 1;
    background: linear-gradient(180deg,#fff0 0%,#ff0068 84.27%);
    pointer-events: none;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    border-radius: 6px
}

.slot__item:hover .slot__overlay::before {
    opacity: 1
}

.slot__btn {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.45;
    background: #ffde33;
    padding: 5px 10px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 0 15px #fff;
    background-color: #fff;
    transform: skew(-10deg,0);
    border-radius: 3px;
    color: #f06;
    min-width: 115px;
    margin-bottom: 16px
}

.slot-overlay__action {
    z-index: 1;
    cursor: pointer
}

.slot__demo {
    font-size: 14px
}

.slot__demo:hover {
    text-decoration: underline
}

.slots-slider__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    gap: 5px
}

.slots-slider-prev {
    -webkit-transition: background 0.3s linear;
    -o-transition: background 0.3s linear;
    transition: background 0.3s linear;
    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: 40px;
    height: 40px;
    color: #fff;
    background: #ffd6001a;
    outline: none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: skew(-10deg,0);
    background-color: rgb(255 255 255 / .1);
    border-radius: 2px
}

.slots-slider-prev svg {
    transform: rotate(90deg)
}

.slots-slider-next {
    -webkit-transition: background 0.3s linear;
    -o-transition: background 0.3s linear;
    transition: background 0.3s linear;
    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: 40px;
    height: 40px;
    color: #fff;
    background: #ffd6001a;
    outline: none;
    border-radius: 10px;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transform: skew(-10deg,0);
    background-color: rgb(255 255 255 / .1);
    border-radius: 2px
}

.slots-slider-next svg {
    transform: rotate(-90deg)
}

.slots-slider__navigation>div:hover {
    color: #fff;
    background: #fff3
}

.winner {
    padding: 40px 0
}

.winner__wrapper {
    display: flex;
    gap: 25px;
    justify-content: center;
    padding: calc(25px / 2)
}

.winner__block {
    width: 41.6666666667%;
    background: url(../img/wins_bg.webp) right top no-repeat;
    border-radius: 10px
}

.winner-block__title {
    position: relative;
    display: inline-flex;
    font-size: 14px;
    font-weight: 600;
    line-height: 35px;
    transform: skew(-30deg,0);
    background: #f06;
    border-radius: 0 4px 4px 0;
    padding: 0 18px 0 9px;
    gap: 10px
}

.winner-block__title:after {
    content: "";
    position: absolute;
    top: 0;
    left: -11px;
    z-index: 2;
    width: 20px;
    height: 35px;
    background: #f06;
    transform: skew(30deg,0);
    border-top-left-radius: 10px
}

.winner-block__icon {
    transform: skew(30deg,0);
    display: flex;
    align-items: center
}

.winner-block__icon svg {
    width: 20px;
    height: 20px
}

.winner-block__title span {
    transform: skew(30deg,0)
}

.winner__list {
    margin: 30px 25px 25px;
    margin-left: -12.5px;
    height: 400px
}

.winner-list__item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ffffff1a
}

.winner-item__img {
    position: relative;
    width: 100%;
    height: 55px;
    border-radius: 10px;
    max-width: 55px;
    overflow: hidden;
    flex-shrink: 0
}

.winner-item__img img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.winner-item__info {
    width: 100%
}

.winner-item__slot {
    font-weight: 700;
    line-height: 1.45;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 185px
}

.winner-item__name {
    display: flex;
    align-items: center
}

.winner__flag {
    flex: 0 0 auto;
    object-fit: cover;
    object-position: center;
    width: 24px;
    height: 18px;
    margin-right: 10px
}

.winner-flag-ru {
    background-image: url(../img/ru.svg);
    background-size: cover
}

.winner-user__name {
    line-height: 1.45
}

.winner-item__price {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    white-space: nowrap
}

.winner-item__action {
    position: relative;
    width: 100%;
    max-width: 24px;
    height: 24px;
    display: block;
    border-radius: 4px
}

.winner-item__action::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../img/arrow.svg);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-size: cover
}

.tournament__block {
    width: 58.3333333333%
}

.tournament__title {
    font-weight: 700;
    line-height: 1.45;
    padding: 10px;
    min-width: 140px;
    text-align: center;
    background: #f06;
    border-radius: 10px 0 10px 0;
    display: inline-block
}

.tournament__inner {
    padding: 35px 35px 40px;
    display: flex;
    flex-direction: column;
    height: 88%
}

.tournament-inner__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.45
}

.tournament-inner__subtitle {
    margin: 20px 0 0 0;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.45;
    flex-grow: 1
}

.tournament-btn {
    height: 40px;
    display: grid;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    padding: 5px 10px;
    border-radius: 3px;
    background: #f06;
    transform: skew(-10deg,0);
    border: 0
}

.seo {
    padding-bottom: 40px
}

.providers {
    color: #fff;
    padding-bottom: 60px
}

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

.providers-header__all {
    color: #f06;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.45;
    -webkit-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
    transition: color 0.3s linear;
    cursor: pointer;
    text-decoration: none
}

.providers-header__all:hover {
    color: #fff
}

.providers__wrapper {
    margin-top: 15px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
    grid-template-columns: repeat(6,1fr);
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px
}

.providers__item {
    padding: 8px 15px;
    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: 100%;
    height: 85px;
    position: relative;
    -o-transition: transform 0.2s,box-shadow 2s;
    background: radial-gradient(84.9% 88.98% at 50% 110.8%,#4e0f28 0%,#200611 100%);
    border-radius: 6px;
    transition: transform 0.2s,box-shadow 2s
}

.providers__item:hover {
    box-shadow: 0 1px 5px var(--mc-bg100);
    transform: translate3d(0,-3px,0);
    transition: transform 0.2s,box-shadow 0.1s
}

.providers__item img {
    width: 125px;
    height: 40px
}

.payments {
    padding-bottom: 40px
}

.payments__wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: space-between
}

.payments__item {
    max-height: 35px
}

.payments__item svg {
    height: 100%;
    width: 76%;
    max-height: 35px;
    fill: rgb(255 255 255 / .2)
}

.payments__item path {
    fill: rgb(255 255 255 / .2)
}

.chat-widget {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 60px;
    height: 60px;
    box-shadow: rgb(0 0 0 / .125) 0 .362176px .941657px -1px,rgb(0 0 0 / .18) 0 3px 7.8px -2px;
    border-radius: 50%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    color: #FFF;
    background-color: #8A0A3E;
    position: fixed;
    bottom: 15px;
    right: 15px;
    align-items: center;
    cursor: pointer;
    z-index: 4
}

.chat-widget svg {
    width: 32px;
    height: 32px
}

.footer {
    padding-bottom: 30px;
    padding-left: 48px
}

.footer__wrapper {
    border-top: 1px solid #262000;
    padding-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px
}

.footer-left__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px
}

.footer__logo svg {
    width: 184px
}

.footer__btn {
    height: 40px;
    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-width: 128px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.45;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    border-radius: 3px;
    background: #f06;
    border: 1px solid #fff0;
    transform: skew(-10deg,0)
}

.footer-icon__item {
    border-right: 2px solid #fff0;
    border-image: linear-gradient(0deg,#fff0 0%,#fff0 0%,rgb(255 255 255 / .3) 0%,#fff0 0%,rgb(255 255 255 / .3) 50%,#fff0 100%);
    border-image-slice: 1;
    padding: 0 40px;
    height: 32px;
    transform: skew(-10deg,0)
}

.footer-icon__item:last-child {
    border-right: 0
}

.footer-icon__item:first-child {
    padding-left: 0
}

.footer-left__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px
}

.footer-icon__item svg {
    height: 33px;
    fill: #fff;
    transform: skew(10deg,0)
}

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

.footer-nav__list {
    list-style: none;
    text-align: left;
    margin-top: 5px;
    padding-left: 30px
}

.footer-nav__item {
    -webkit-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
    transition: color 0.3s linear;
    color: #fff;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 12px;
    white-space: nowrap
}

.footer-nav__item a {
    text-decoration: none
}

.footer__description {
    color: #7a7a7a;
    font-weight: 400;
    font-size: 10px;
    line-height: 1.45
}

@media (max-width: 1024px) {
    .main__wrapper {
        padding-left:0
    }

    .banner__header {
        display: flex
    }

    .header-slide-min {
        display: none
    }

    .header-slide-big {
        width: 100%;
        background-image: url(../img/banner_header_1_mob.webp)!important
    }

    .banner-slide__label {
        height: 35px;
        padding: 0 20px 0 30px;
        font-weight: 600;
        line-height: 35px;
        font-size: 12px
    }

    .banner-slide__img img {
        position: absolute;
        right: -35px;
        margin: 0;
        width: 190px;
        height: auto;
        bottom: 0
    }

    .filters-games__all {
        margin-left: 7px
    }

    .filters__action {
        display: none
    }

    .container {
        padding: 0 10px
    }

    .sidebar {
        display: none
    }

    .header__search {
        display: none
    }

    .header__wrapper {
        gap: 0;
        margin: 0;
        width: 100%;
        min-height: 60px
    }

    .header__action {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: end
    }

    .header__buttons {
        margin-right: 0
    }

    .btn {
        padding: 5px 10px;
        width: auto
    }

    .fill-btn {
        padding: 5px 10px;
        background: #f06
    }

    .banner__inner {
        display: flex
    }

    .banner-slider-2 {
        display: none
    }

    .slots-filters {
        position: relative;
        overflow: hidden;
        padding: 35px 0 0
    }

    .slots-filters__wrapper {
        overflow: scroll
    }

    .slots-filters__wrapper::-webkit-scrollbar {
        width: 0
    }

    .slots-filters__wrapper {
        -ms-overflow-style: none
    }

    .filters__slots {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        overflow: visible
    }

    .filters-slots__name {
        scale: 1;
        opacity: 1;
        width: auto;
        margin-left: 5px;
        white-space: nowrap
    }

    .filters__action {
        font-size: 14px;
        position: absolute;
        bottom: -10px;
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .filter-games__title {
        width: auto;
        white-space: nowrap
    }

    .slots {
        margin-top: 40px
    }

    .slots__header {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .slots__slide {
        -ms-grid-columns: (1fr) [2];
        grid-template-columns: repeat(2,1fr)
    }

    .slots-slider__navigation {
        display: none
    }

    .winner {
        padding-bottom: 0
    }

    .winner__wrapper {
        flex-direction: column;
        padding: 0
    }

    .winner-block__title {
        margin-left: 14px
    }

    .winner__list {
        margin-left: 0
    }

    .winner__block {
        width: 100%
    }

    .winner-item__info {
        max-width: 29%
    }

    .tournament__block {
        width: 100%
    }

    .tournament__inner {
        padding: 25px 21px 40px
    }

    .tournament-btn {
        margin-top: 40px;
        display: inline-flex;
        width: 150px
    }

    .payments {
        display: none
    }

    .providers {
        display: none
    }

    .footer {
        padding-left: 0
    }

    .footer__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .footer-left__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 35px
    }

    .footer__btn {
        width: 100%
    }

    .footer-left__footer {
        margin-top: 40px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .footer-icon__item {
        padding: 0 20px
    }

    .footer__nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 40px
    }

    .footer-nav__list {
        padding: 0;
        margin: 0
    }

    .footer-payments {
        display: none
    }
}
