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

body {
    background-color: #171A24;
    color: #d0d0d0;
    font-family: Jost, sans-serif;
    font-size: 16px;
    line-height: 1.5;
	margin: 0;
}

a {
    color: inherit;
}

input,
textarea {
    outline: unset;
}

.body__wrapper {
    display: flex;
    padding-right: 24px;
    padding-left: 236px;
    transition: padding-left 0.5s ease 0s;
}

.sidebar {
    position: fixed;
    left: 0;
    margin: 8px;
    padding: 8px;
    background: #202934;
    border-radius: 16px;
    height: calc(-16px + 100dvh);
    transition: width 0.5s ease 0s;
    width: 212px;
    overflow-y: visible;
}

.sidebar.hide {
    width: 62px;
}

.sidebar-logo__full {
    margin-bottom: 40px;
    cursor: pointer;
    display: block;
}
.sidebar-logo__min {
    display: none;
    margin-bottom: 72px;
    cursor: pointer;
}

.sidebar-action {
    width: 100%;
    height: 62px;
    padding-right: 8px;
    padding-left: 77px;
    margin-bottom: 12px;
    position: relative;
    align-items: center;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(90deg, rgb(13, 112, 121) 25.05%, rgb(0, 137, 123) 75%);
    text-decoration: none;
}

.sidebar-action__icon {
    position: absolute;
    top: -4px;
    left: -2px;
    width: 70px;
    height: 70px;
}

.sidebar-action__icon::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    background-image: url(../img/gun.webp);
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    z-index: 1;
}

.sidebar-action__icon::before {
    content: "";
    position: absolute;
    top: -12px;
    left: -15px;
    width: 88px;
    height: 88px;
    background-image: url(../img/wheel.webp), url(../img/gun.webp);
    background-size: contain, 55px;
    background-repeat: no-repeat;
    background-position: center top, center center;
    animation: 9s linear 0s infinite normal none running animation-rotate;
    z-index: 1;
}

@keyframes animation-rotate {
    0% {
        transform: rotate(-360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.sidebar-action__name {
    font-weight: 700;
    color: #f5f7fb;
    line-height: 110%;
    opacity: 1;
    max-width: 200px;
    transition: width 0.5s ease 0s;
}

.sidebar-nav__item {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    max-height: 46px;
    padding: 8px;
    margin-bottom: 2px;
    cursor: pointer;
    border-radius: 11px;
    text-decoration: none;
}

.sidebar-nav__item:hover {
    background-color: rgb(49, 63, 75) !important;
}

.sidebar-item__icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background-color: rgb(49, 63, 75);
    place-content: center;
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    flex-flow: row;
    -webkit-box-pack: center;
    flex-shrink: 0;
}

.sidebar-item__arrow {
    width: 36px;
    height: 36px;
    place-content: center;
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    flex-flow: row;
    -webkit-box-pack: center;
}

.sidebar-item__name {
    color: #f5f7fb;
    white-space: nowrap;
}

.icon-orange {
    background-color: rgb(255, 160, 1);
}

.icon-blue {
    background-color: rgb(0, 136, 204);
}

.sidebar__title {
    line-height: 110%;
    color: rgb(229, 231, 235);
    font-weight: 700;
    margin-top: 12px;
    margin-bottom: 8px;
    max-height: 100px;
    transition: all .3s;
}

.sidebar__separator {
    margin: 4px 0px 0px;
    border: 1px solid rgb(49, 63, 75);
    border-radius: 2px;
}

.hide-sidebar {
    position: absolute;
    margin: auto;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    cursor: pointer;
    top: 77px;
    right: -13px;
}
.hide-sidebar::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 32px;
    background-color: #3e4c59;
    border-radius: 50%;
}

.hide-sidebar svg {
    z-index: 1;
}

.hide-sidebar .btn-shape-prev {
    transform: unset;
    left: unset;
    right: -4px;
}

.sidebar-mini {
    width: 62px;
}

.sidebar-mini .sidebar-logo__full {
    display: none;
}

.sidebar-mini .sidebar-logo__min {
    display: block;
}

.sidebar-mini .sidebar-action {
    background-image: url(../img/wheel.webp);
    width: 100%;
    height: 45px;
    background-size: 46px;
    background-position: left center;
    background-repeat: no-repeat;
    border-radius: 22px;
    padding: 0;
    margin-bottom: 15px;
}

.sidebar-mini .sidebar-action__icon {
    width: 100%;
    height: 45px;
}

.sidebar-mini .sidebar-action__icon::after {
    top: 10px;
    left: 8px;
    width: 35px;
    height: 35px;
    margin: auto;
}

.sidebar-mini .hide-sidebar svg {
    transform: rotate(180deg);
}

.sidebar-mini .sidebar-action__icon::before {
    display: none;
}

.sidebar-mini .sidebar-action__name {
    display: none;
}

.sidebar-mini .sidebar-item__arrow {
    display: none;
}

.sidebar-mini .sidebar-item__name {
    display: none;
}


.sidebar-mini .sidebar__title {
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
}

.sidebar__wrapper {
    overflow-y: auto;
    height: 100%;
}

.sidebar__wrapper::-webkit-scrollbar {
    display: none;
}

.sidebar__close {
    display: none;
}

.header {
    padding: 8px;
    width: 100%;
    max-height: 56px;
    background: rgb(32, 41, 52);
    border-radius: 16px;
    place-content: center space-between;
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    flex-flow: row;
    -webkit-box-pack: justify;
    margin-bottom: 8px;
    margin-top: 8px;
    position: sticky;
    top: 8px;
    z-index: 2;
}

.header__inner {
    gap: 8px;
    display: flex;
    width: 100%;
    -webkit-box-pack: end;
    justify-content: end;
}

.mobile-logo {
    display: none;
}

.header__action {
    display: flex;
    gap: 8px;
}

.btn {
    font-weight: 700;
    padding: 12px 22px;
    font-size: 14px;
    border-radius: 16px;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid #c72827;
    min-width: 150px;
    text-align: center;
    color: #fff;
    display: inline-block;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;

}

.btn:hover {
    color: rgb(245, 247, 251);
    background-color: rgb(199, 40, 39);
    border: 2px solid rgb(199, 40, 39);
}

.btn-fill {
    text-transform: uppercase;
    background-color: #c72827;
    text-transform: uppercase;
}

.btn-fill:hover {
    color: rgb(199, 40, 39);
    background-color: rgb(245, 247, 251);
    border: 2px solid rgb(245, 247, 251);
}

.main__wrapper {
    max-width: 1540px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
}

.banner {
    position: relative;
}

.banner__slider  {
    height: 332px;
}

.banner-slider__item {
    display: flex !important;
    align-items: center;
    overflow: hidden;
    padding: 16px 16px 16px 32px;
    border-radius: 16px;
}

.banner__info {
    position: relative;
    z-index: 1;
}

.banner-info__title {
    color: #f5f7fb;
    line-height: 110%;
    font-size: 36px;
    margin: 0 0 16px;
    font-weight: 900;
}

.banner-info__text {
    line-height: 110%;
    color: #f5f7fb;
    opacity: 0.75;
    font-weight: 700;
    margin: 0;
    max-width: 250px;
}

.banner-info__action {
    margin-top: 16px;
}

.banner__img {
    position: absolute;
    top: 0;
    object-fit: contain;
    left: 0;
}

.banner-slider__btn {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    cursor: pointer;
}

.banner-slider__btn::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 32px;
    background-color: #3e4c59;
    border-radius: 50%;
}

.banner-slider__btn svg {
    z-index: 1;
}

.banner-button-prev {
    left: -17px;
}

.banner-button-next {
    right: -17px;
}

.btn-shape-prev {
    width: 37px;
    height: 75px;
    transform: rotateY(180deg);
    background: rgb(23, 26, 36);
    clip-path: path("M 0 37.7213 C 0 43.7797 2.50647 49.2459 6.52753 53.1162 C 12.8941 59.2442 21 66.1634 21 75 V 0 C 21 8.83656 12.9026 15.8068 6.60245 22.003 C 2.53763 26.0007 0 31.6254 0 37.7213 Z");
    display: block;
    position: absolute;
    left: 0;
    z-index: -1;
}

.btn-shape-next {
    width: 37px;
    height: 75px;
    background: rgb(23, 26, 36);
    clip-path: path("M 0 37.7213 C 0 43.7797 2.50647 49.2459 6.52753 53.1162 C 12.8941 59.2442 21 66.1634 21 75 V 0 C 21 8.83656 12.9026 15.8068 6.60245 22.003 C 2.53763 26.0007 0 31.6254 0 37.7213 Z");
    display: block;
    position: absolute;
    right: 0;
    z-index: -1;
}

.games-action__row {
    position: relative;
    display: flex;
    margin: 16px 0 0;
    padding: 8px;
    border-radius: 16px;
    background: #202934;
    gap: 8px;
    align-items: center;
}

.games-provider__list {
    position: relative;
    width: 200px;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    background-color: #313f4b;
    color: #f5f7fb;
    align-items: center;
    gap: 8px;
    display: flex;
}

.dropdown-icon {
    position: absolute;
    right: 8px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    transform: rotate(0);
    transition: all .3s;
}

.providers__list {
    position: absolute;
    top: 62px;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0;
    z-index: 2;
    background: rgb(32, 41, 52);
    padding: 8px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
    grid-template-rows: auto;
    gap: 8px;
    list-style: none;
    max-height: 0;
    transition: max-height .3s;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

.providers-list__item {
    border-radius: 8px;
    background-color: rgb(49, 63, 75);
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out 0s;
}

.providers-list__item:hover {
    background-color: rgb(82, 96, 109);
}


.providers-item__img {
    height: 100%;
}

.games__types {
    display: flex;
    gap: 8px;
}


.games-types__item:hover {
    color: rgb(245, 247, 251);
    background-color: rgb(82, 96, 109);
    border: 2px solid rgb(82, 96, 109);
}

.games__search {
    display: flex;
    cursor: pointer;
    height: 32px;
    width: 32px;
    align-items: center;
    justify-content: center;
}

.games-types__item {
    height: 32px;
    background-color: #3e4c59;
    border: 2px solid #3e4c59;
    width: 150px;
    white-space: nowrap;
    font-weight: 700;
    color: #f5f7fb;
    padding: 8px 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.games-types__icon {
    display: flex;
    margin-right: 8px;
    margin-left: -4px;
}

.providers-show .dropdown-icon {
    transform: rotate(180deg);
}

.providers-show .providers__list {
    max-height: 600px;
    opacity: 1;
    pointer-events: all;

}

.title__wrap {
    display: flex;
    padding: 10px 0;
}

.section__title {
    font-size: 24px;
    color: #f5f7fb;
    line-height: 110%;
    flex-grow: 1;
}

.title__action {
    display: flex;
    align-items: center;
    gap: 8px;
}

.title-action__btn {
    cursor: pointer;
    box-shadow: none;
    border-radius: 16px;
    line-height: 110%;
    padding: 8px 16px;
    color: #f5f7fb;
    background-color: #3e4c59;
    border: 2px solid #3e4c59;
    font-weight: 700;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    text-decoration: none;
}

.title-action__btn:hover {
    color: rgb(245, 247, 251);
    background-color: rgb(82, 96, 109);
    border: 2px solid rgb(82, 96, 109);
}

.title-action__nav {
    display: flex;
}

.title-action__button {
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    color: #0000008a;
    background-color: transparent;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.title-action__button:hover {
    background-color: rgb(62, 76, 89);
}

.top__list {
    margin-bottom: 10px;
}

.games__item {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    height: 200px;
    max-width: 290px;
    margin-right: 10px;
    overflow: hidden;
    cursor: pointer;
}

.games__item:hover .games-item__overlay {
    opacity: 1;
    pointer-events: all;
}

.games-item__overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000ba;
    opacity: 0;
    pointer-events: none;
    transition: all .4s;
}

.winner__slider {
    display: flex;
    gap: 16px;
    overflow: hidden;
    margin-bottom: 10px;
}

.winner-slider__item {
    height: 90px;
    width: 100%;
    max-width: 290px;
    background-color: #202934;
    padding: 8px;
    border-radius: 16px;
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    cursor: pointer;
    text-decoration: none;
}

.winner-item__img {
    width: 100%;
    max-width: 100px;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    overflow: hidden;
}

.winner-item__img img {
    height: 100%;
    object-fit: contain;
}

.winner-item__info {
    width: 100%;
}

.winner-item__name {
    font-weight: 700;
    color: #f5f7fb;
    line-height: 110%;
    margin-bottom: 8px;
}

.winner-item__gamer {
    line-height: 110%;
    color: rgb(153, 165, 177);
}

.winner-item__btn {
    background: #00897b;
    color: white;
    padding: 0px 8px;
    border-radius: 16px;
    height: 28px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    margin-top: 5px;
}

.footer {
    display: flex;
    padding: 32px;
    border-radius: 16px;
    background: #202934;
    justify-content: space-between;
    margin-top: 80px;
}

.footer__logo {
    display: flex;
    max-width: 400px;
    flex-direction: column;
    gap: 8px;
}

.footer-logo__img {
    display: flex;
    gap: 8px;
}

.footer__description {
    font-size: 12px;
    font-weight: 700;
    line-height: 110%;
    color: #7b8695;
}

.footer__nav {
    width: 40%;
    display: flex;
}

.footer-nav__list {
    padding: 0;
    list-style: none;
    width: 100%;
}

.footer-nav__title {
    color: #f5f7fb;
    line-height: 110%;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-nav__link {
    text-decoration: none;
    color: #7b8695;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 12px;
    line-height: 110%;
}

.footer-nav-blue {
    text-decoration: underline rgba(0, 136, 204, 0.4);
    font-weight: 400;
    text-underline-offset: 3.3px;
    color: #0088cc;
    line-height: 110%;
    font-size: 16px;
}

.body-sidebar {
    padding-left: 84px;
}

.mobile-menu {
    display: none;
}

.page-404  {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-404 .main {
    flex-grow: 1;
    height: 100%;
}

.page-404 .seo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.page-404 .seo__inner {
    text-align: center;
}

.page-404 h1 {
    margin-top: 0;
}

@media (max-width: 768px) {
    .body__wrapper {
        padding: 0;
    }
    .sidebar {
        z-index: 10;
        left: unset;
        right: -100%;
        width: 80%;
        opacity: 0;
        pointer-events: none;
        transition: right .3s;
    }
    .sidebar.active {
        right: 0;
        opacity: 1;
        pointer-events: all;
    } 
    .sidebar.active .sidebar__logo {
        display: none;
    }   
    .sidebar.active .hide-sidebar {
        display: none;
    }

    .sidebar__close {
        display: block;
        height: 32px;
        width: 32px;
        margin-left: auto;
        margin-bottom: 8px;
    }
    .header__inner {
        align-items: center;
        justify-content: space-between;
    }
    .mobile-logo {
        display: flex;
    }
    .header__action .header__btn {
        height: 36px;
        max-height: 36px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100px;
        min-width: unset;
    }
    .header__action .btn-fill {
        display: none;
    }
    .games-action__row {
        display: none;
    }
    .footer {
        flex-direction: column;
        gap: 60px;
        padding: 16px;
        margin-bottom: 96px;
        margin-top: 48px;
    }
    .footer__nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .title-action__nav {
        display: none;
    }

    .games__item {
        height: 110px;
        max-width: 150px;
    }

    .games__item img {
        height: 100%;
        width: 100%;
    }

    .mobile-menu {
        position: fixed;
        height: 52px;
        width: 95%;
        place-content: center space-between;
        -webkit-box-align: center;
        align-items: center;
        display: flex;
        flex-flow: row;
        -webkit-box-pack: justify;
        gap: 16px;
        padding-left: 8px;
        padding-right: 8px;
        background-color: rgb(49, 63, 75);
        border-radius: 26px;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 40px;
    }   

    .mobile-menu .btn-fill {
        width: 86%;
        height: 36px;
        max-height: 36px;
        padding: 8px 16px;
        line-height: 110%;
        display: flex;
        align-items: center;
        justify-content: center;
    } 
    .mobile__burger {
        display: flex;
        margin-right: 5px;
    }

}