:root {
    --header-bg-color: #0F1014;
    --main-bg-color: #16171C;
    --footer-bg-color: #0F1014;
    --main-text-color: #FFFFFF;
    --link-text-color: #E9B01A;
    --button-text-color: #FFFFFF;
    --button-bg-color: #B28614;
    --button-second-bg-color: #173F2C;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-size-adjust: none;
}

html, body {
    margin: 0;
    padding: 0;
}

html {
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    font-family: AR One Sans, sans-serif;
    line-height: 1.6;
    color: var(--main-text-color);
}

button {
    font-family: AR One Sans, sans-serif;
    cursor: pointer;
}

a {
    color: var(--link-text-color);
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
    color: var(--link-text-color);
    opacity: 70%;
}

a:active {
    opacity: 30%;
}

h1, h2, h3, h4 {
    color: var(--main-text-color);
}

h1 {
    font-size: 50px;
    font-weight: 900;
    line-height: 45px;
    margin-bottom: 30px;
    text-align: center;
}
@media screen and (max-width: 992px) {
    h1 {
        font-size: 30px;
        line-height: 42px;
    }
}

h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 54px;
    margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
    h2 {
        font-size: 30px;
        line-height: 44px;
    }
}

h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 44px;
    margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
    h3 {
        font-size: 24px;
        line-height: 32px;
    }
}

p {
    font-size: 15px;
    letter-spacing: normal;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 24px;
}
@media screen and (max-width: 992px) {
    p {
        font-size: 14px;
        line-height: 29px;
    }
}

strong {
    font-weight: 600;
}
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    white-space: nowrap;
    display: block;
    overflow-x: auto;
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

table p {
    margin: 0;
}

tbody {
    width: calc(100% - 2px);
    display: table;
}

th {
    background: var(--footer-bg-color);
}

th, td {
    border: 1px solid var(--main-text-color);
    padding: 8px;
    box-sizing: border-box;
}

th:first-child {
    border-top-left-radius: 10px;
}

th:last-child {
    border-top-right-radius: 10px;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

tr:first-child td:first-child {
    border-top-left-radius: 10px;
}

tr:first-child td:last-child {
    border-top-right-radius: 10px;
}

table::-webkit-scrollbar {
    height: 8px;
}

table::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

table::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

footer, header, nav, section, main {
    display: block;
    position: relative;
}

main {
    flex: 1 0 auto;
    background-color: var(--main-bg-color);
    position: relative;
}

section {
    padding: 30px 0;
}

@media screen and (max-width: 768px) {
    section {
        padding: 30px 0;
    }
}

.CentralbackpackersContainer {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 30px;
}

@media (max-width: 1200px) {
    .CentralbackpackersContainer {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .CentralbackpackersContainer {
        padding: 0 15px;
    }
}

img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


.CentralbackpackersRow {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.CentralbackpackersCol:first-child {
    width: 820px;

}
.CentralbackpackersCol:last-child {
    flex: 0 0 330px;
}
@media (max-width: 1030px) {
    .CentralbackpackersRow {
        flex-wrap: wrap;
        justify-content: center;
    }
    .CentralbackpackersCol:first-child, .CentralbackpackersCol:last-child {
        width: 100%;
        flex: auto;
    }
}

.CentralbackpackersJcEnd {
    justify-content: end !important;
}

.CentralbackpackersJcCenter {
    justify-content: center;
}

.CentralbackpackersBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: inherit;
    height: auto;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.CentralbackpackersBtn__wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .CentralbackpackersBtn__wrapper {
        gap: 20px;
    }
}
.CentralbackpackersBtnPrimary {
    color: var(--button-text-color);
    background-color: var(--button-bg-color);
    border: 2px solid var(--button-bg-color);
}

.CentralbackpackersBtnPrimary:hover {
    color: var(--button-text-color);
    background-color: color-mix(
            in srgb,
            var(--button-bg-color) 70%,
            transparent
    );
    border-color: var(--button-bg-color);
}

.CentralbackpackersBtnPrimary:active {
    background-color: color-mix(
            in srgb,
            var(--button-bg-color) 30%,
            transparent
    );
}

.CentralbackpackersBtnSecondary {
    color: var(--button-text-color);
    background-color: var(--button-second-bg-color);
    border: 2px solid var(--button-second-bg-color);
}

.CentralbackpackersBtnSecondary:hover {
    color: var(--button-text-color);
    background-color: color-mix(
            in srgb,
            var(--button-second-bg-color) 70%,
            transparent
    );
    border-color: var(--button-second-bg-color);
}

.CentralbackpackersBtnSecondary:active {
    background-color: color-mix(
            in srgb,
            var(--button-second-bg-color) 30%,
            transparent
    );
}

.CentralbackpackersBtnUppercase {
    text-transform: uppercase;
}

.CentralbackpackersHeader {
    background-color: var(--header-bg-color);
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.CentralbackpackersHeader ul, .CentralbackpackersHeader ol, .CentralbackpackersHeader li,
.CentralbackpackersFooter ul, .CentralbackpackersFooter ol, .CentralbackpackersFooter li {
    margin: 0;
    padding: 0;
    border: 0;
    list-style-type: none;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-size-adjust: none;
}

.CentralbackpackersHeader__wrapper {
    margin: 0 auto;
    padding: 0 30px;
}

@media (max-width: 768px) {
    .CentralbackpackersHeader__wrapper {
        max-width: 100%;
        padding: 0 15px;
    }
}

.CentralbackpackersHeader__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.CentralbackpackersHeader__innerPrimary {
    display: none;
    align-items: center;
    justify-content: space-between;
    flex: auto;
}

.CentralbackpackersHeader__innerSecond {
    display: flex;
    align-items: center;
    gap: 10px;
}

.CentralbackpackersHeader__row {
    flex-direction: row;
    height: 80px;
}

.CentralbackpackersHeader__innerSecond .CentralbackpackersHeader__row {
    flex-direction: row;
    gap: 10px;
    height: auto;
}

.CentralbackpackersHeader__col {
    flex-direction: column;
}

.CentralbackpackersHeader__innerSecond.CentralbackpackersHeader__col {
    padding: 10px 0;
}

.CentralbackpackersHeader__logo {
    display: flex;
    max-height: 55px;
    max-width: 215px;
    height: 100%;
}

.CentralbackpackersHeader__logo a {
    text-decoration: none;
    display: flex;
}
.CentralbackpackersHeader__logo img {
    object-fit: contain;
    border-radius: initial;
}

.CentralbackpackersHeader__nav {
    display: flex;
}
.CentralbackpackersHeader__nav ul {
    display: flex;
    gap: 10px;
    height: 100%;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.CentralbackpackersHeader__nav ul li {
    display: flex;
    align-items: center;
    height: 100%;
}

.CentralbackpackersHeader__nav ul li a {
    display: flex;
    gap: 12px;
    color: var(--link-text-color);
    text-decoration: none;
    padding: 10px;
}

.CentralbackpackersHeader__nav ul li a:hover {
    opacity: 60%;
}

.CentralbackpackersHeader__nav ul li a:active {
    opacity: 30%;
}

.CentralbackpackersHeader__nav ul li a svg path {
    fill: var(--link-text-color) !important;
}

.CentralbackpackersHeader__nav ul li a span {
    color: var(--link-text-color);
}

.CentralbackpackersDownloadAppBlock {
    display: flex;
    justify-content: normal;
    margin-top: auto;
    position: relative;
    width: 178px;
    height: 70px;
    border: 2px solid var(--button-second-bg-color);
    border-radius: 10px;
    padding: 15px 10px;
    font-weight: 800;
    font-size: 14px;
    line-height: 100%;
    background: rgba(from var(--button-second-bg-color) r g b / 0.9);
}

.CentralbackpackersDownloadAppBlock:hover {
    background-color: color-mix(
            in srgb,
            var(--button-second-bg-color) 70%,
            transparent
    );
    border-color: var(--button-second-bg-color);
}

.CentralbackpackersDownloadAppBlock:active {
    background-color: color-mix(
            in srgb,
            var(--button-second-bg-color) 30%,
            transparent
    );
    border-color: var(--button-second-bg-color);
}

.CentralbackpackersDownloadAppBlock__content p {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--button-text-color);
    max-width: 100px;
    font-weight: 800;
    font-size: 12px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    margin: 0;
}

.CentralbackpackersDownloadAppBlock__content p span {
    max-width: 66px;
    z-index: 110;
}

.CentralbackpackersDownloadAppBlock__content p svg {
    width: 20px;
    height: 20px;
    z-index: 110;
}

.CentralbackpackersDownloadAppBlock__content svg path {
    fill: var(--button-text-color) !important;
}

img.CentralbackpackersDownloadAppIcon {
    position: absolute;
    top: -2px;
    right: 0;
    width: 60px;
    height: 70px;
    z-index: 100;
}


.CentralbackpackersSection img  {
    max-width: 1178px;
    display: block;
    margin: auto;
}

.CentralbackpackersSectionMain .CentralbackpackersContainer > :not(:last-child) {
    margin-bottom: 30px;
}

.CentralbackpackersBtn__wrapperMain {
    max-width: 300px;
    width: 100%;
    margin: auto;
}

.CentralbackpackersBtn__wrapperMain .CentralbackpackersBtnPrimary {
    padding: 15px 52px;
    border-radius: 10px;
}

.CentralbackpackersBurgerMenu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 12px;
    height: 10px;
    cursor: pointer;
    padding: 7px;
    background-color: var(--button-second-bg-color);
    border-radius: 5px;
}

.CentralbackpackersBurgerMenu span {
    display: block;
    width: 100%;
    height: 1.6px;
    background-color: var(--main-text-color);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.CentralbackpackersBurgerMenu span:nth-child(2) {
    width: 60%;
}

.CentralbackpackersBurgerMenu.CentralbackpackersActive {
    border-radius: 5px;
}

.CentralbackpackersBurgerMenu.CentralbackpackersActive span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.CentralbackpackersBurgerMenu.CentralbackpackersActive span:nth-child(2) {
    opacity: 0;
}

.CentralbackpackersBurgerMenu.CentralbackpackersActive span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

.CentralbackpackersSectionContent h1:first-of-type,
.CentralbackpackersSectionContent h2:first-of-type,
.CentralbackpackersSectionContent h3:first-of-type,
.CentralbackpackersSectionContent h4:first-of-type {
    margin-top: 0;
    margin-bottom: 30px;
}

.CentralbackpackersSectionContent h1:not(:first-of-type),
.CentralbackpackersSectionContent h2:not(:first-of-type),
.CentralbackpackersSectionContent h3:not(:first-of-type),
.CentralbackpackersSectionContent h4:not(:first-of-type) {
    margin: 30px 0;
}

.CentralbackpackersSectionContent .CentralbackpackersUpdatePost {
    display: flex;
    align-items: center;
}

.CentralbackpackersSectionContent .CentralbackpackersUpdatePost p {
    width: 100%;
    margin: 0;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--main-text-color);
}

footer {
    flex-shrink: 0;
    background-color: var(--footer-bg-color);
    color: var(--main-text-color);
}

.CentralbackpackersFooter__wrapper {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    gap: 20px;
}

.CentralbackpackersFooter__nav, .CentralbackpackersFooter__icons, .CentralbackpackersFooter__inner {
    display: flex;
    justify-content: center;
}

.CentralbackpackersFooter__iconsLink img {
    border-radius: initial;
}

.CentralbackpackersFooter__navList {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.CentralbackpackersFooter__navLink {
    text-decoration: none;
    color: var(--link-text-color);
    font-size: 14px;
}
.CentralbackpackersFooter__navLink:hover {
    color: var(--link-text-color);
}

.CentralbackpackersFooter__icons {
    gap: 30px;
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: 10px;
}

.CentralbackpackersFooter__inner p {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
}

.CentralbackpackersBreadcrumbs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 1em 0;
    font-size: 0.95em;
    gap: 0.5em;
}


.CentralbackpackersBreadcrumbs li {
    display: flex;
    align-items: center;
}

.CentralbackpackersBreadcrumbs li a {
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.CentralbackpackersBreadcrumbs li::after {
    content: "›";
    margin: 0 0.5em;
}

.CentralbackpackersBreadcrumbs li:last-child::after {
    content: "";
    margin: 0;
}

.CentralbackpackersContent__row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
}

.CentralbackpackersContent__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 1;
}

.CentralbackpackersContent__col.CentralbackpackersContent__colImg {
    max-width: 550px;
}


.CentralbackpackersBtn__wrapperLeft {
    margin: inherit;
    justify-content: flex-start;
}

.CentralbackpackersContent__inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    max-width: 100%;
}

.CentralbackpackersContent__innerBg {
    position: absolute;
    border-radius: 10px;
    inset: 0;
    z-index: 0;
}

.CentralbackpackersContent__innerBg img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.CentralbackpackersContent__innerOverlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.CentralbackpackersContent__innerBlock {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    max-width: 742px;
    position: relative;
    z-index: 2;
    padding: 23px 40px;
}

.CentralbackpackersContent__innerBlock p {
    margin-bottom: 30px;
}

.CentralbackpackersContent__inner:has(p:nth-of-type(2)) .CentralbackpackersContent__innerBg img {
    transform: scale(1.2);
}

.CentralbackpackersContent__inner:has(p:nth-of-type(3)) .CentralbackpackersContent__innerBg img {
    transform: scale(1.4);
}

.CentralbackpackersWelcomeBonus {
    display: flex;
    position: fixed;
    bottom: -20px;
    left: calc(50% + 100px);
    transform: translate(-50%, -50%);
    width: 500px;
    height: 100px;
    border-radius: 7px;
    z-index: 20;
    box-shadow: 0px 0px 50px 0px #00000080;
    background: var(--header-bg-color);
    transition: opacity 0.3s ease;
}

.CentralbackpackersWelcomeBonus.CentralbackpackersHidden {
    opacity: 0;
    pointer-events: none;
}

.CentralbackpackersWelcomeBonus__close {
    position: absolute;
    width: 10px;
    height: 10px;
    top: 6px;
    right: 6px;
    cursor: pointer;
    z-index: 9999;
}

.CentralbackpackersWelcomeBonus__close svg {
    position: absolute;
    width: 10px;
    height: 10px;
}

.CentralbackpackersWelcomeBonus__close svg path {
    stroke: var(--main-text-color) !important;
}

.CentralbackpackersWelcomeBonus__wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    gap: 30px;
}

.CentralbackpackersWelcomeBonus__img {
    width: 80px;
    height: 80px;
}

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

.CentralbackpackersWelcomeBonus__bonus {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    max-width: 204px;
    width: 100%;
}

.CentralbackpackersWelcomeBonus__bonus p {
    text-align: center;
    margin: 0;
    font-weight: 600;
    font-size: 26px;
    line-height: 100%;
    vertical-align: middle;
    color: var(--main-text-color);

}

.CentralbackpackersWelcomeBonus__bonus span {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;

}

.CentralbackpackersBtnBonus {
    display: flex;
    flex-direction: row;
    width: max-content;
    gap: 5px;
    padding: 12px 28px;
    border-radius: 8px;
}

.CentralbackpackersCookieBlock {
    display: flex;
    position: fixed;
    bottom: 120px;
    left: calc(50% + 100px);
    transform: translate(-50%, -50%);
    width: max-content;
    min-width: 200px;
    height: 40px;
    border-radius: 7px;
    z-index: 10;
    box-shadow: 0px 0px 50px 0px #00000080;
    background: var(--header-bg-color);
    transition: opacity 0.3s ease;
}

.CentralbackpackersCookieBlock__wrapper {
    display: flex;
    position: relative;
    padding: 10px 20px;
    width: 100%;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.CentralbackpackersCookieBlock__icon {
    display: flex;
}

.CentralbackpackersCookieBlock__close {
    width: 10px;
    height: 10px;
    top: 6px;
    right: 6px;
    cursor: pointer;
    z-index: 9999;
}

.CentralbackpackersCookieBlock__content {
   margin: 0;
}

.CentralbackpackersCookieBlock__content a {
    text-decoration: none;
}

.CentralbackpackersCookieBlock__close svg {
    position: absolute;
    width: 10px;
    height: 10px;
}


@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--button-bg-color);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px 8px var(--button-bg-color);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--button-bg-color);
    }
}

.CentralbackpackersShake {
    display: inline-block;
    animation: shake 0.6s;
    animation-timing-function: ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    15% { transform: translateX(-3px); }
    30% { transform: translateX(3px); }
    45% { transform: translateX(-3px); }
    60% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
    90% { transform: translateX(3px); }
}

.CentralbackpackersShake {
    animation: shake 0.6s ease-in-out;
}

.CentralbackpackersLayout {
    display: flex;
}

.CentralbackpackersSidebar {
    position: relative;
    width: 178px;
    background-color: var(--header-bg-color);
    color: #fff;
    padding: 30px 11px;
    flex-shrink: 0;

}

.CentralbackpackersSidebar__wrapper {
    position: fixed;
    height: calc(100vh - 141px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.CentralbackpackersHeader__sidebar {
    flex-direction: column;
    row-gap: 60px;
}

.CentralbackpackersHeader__sidebar .CentralbackpackersBtn__wrapper {
    flex-direction: column;
    width: 100%;
}

.CentralbackpackersHeader__sidebar .CentralbackpackersHeader__nav ul {
    flex-direction: column;
    width: 100%;
}

.CentralbackpackersHeader__sidebar .CentralbackpackersHeader__navWrapper {
    position: absolute;
    width: 100%;
}

.CentralbackpackersHeader__sidebar .CentralbackpackersHeader__nav ul li {
    width: 100%;
    justify-content: center;
}

.CentralbackpackersHeader__sidebar .CentralbackpackersHeader__nav ul li a {
    display: flex;
    gap: 12px;
    width: 100%;
    padding: 12px 0;
}

#CentralbackpackersMain {
    flex: 1;
}

.CentralbackpackersFooter {
    margin-top: auto;
}

.CentralbackpackersFooter__row {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}
.CentralbackpackersFooter__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.CentralbackpackersFooter__logo {
    max-width: 132px;
}

.CentralbackpackersFooter__logo a {
    display: flex;
}

.CentralbackpackersFooter__logo img {
    border-radius: 0;
}
.CentralbackpackersFooter__icons {
    justify-content: flex-start;
    width: 100%;
}

.CentralbackpackersFooter__socials {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.CentralbackpackersFooter__blockWrapper {
    display: flex;
    justify-content: space-between;
}

.CentralbackpackersFooter__socialLink {
    display: inline-flex;
    width: 20px;
    height: 20px;
}

.CentralbackpackersFooter__socialLink svg path {
    fill: var(--button-bg-color) !important;
}

.CentralbackpackersErrorPage {
    align-content: center;
}
.CentralbackpackersErrorPage__wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.CentralbackpackersErrorPage .CentralbackpackersErrorPage__wrapper h1, .CentralbackpackersErrorPage .CentralbackpackersErrorPage__wrapper p {
    margin-bottom: 0;
}

.CentralbackpackersSlotsPreview__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.CentralbackpackersSlotsPreview__title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 26px;
    line-height: 100%;
    margin-bottom: 0 !important;
}

.CentralbackpackersSlotsPreview__title svg {
    width: 30px;
    height: 30px;
}

.CentralbackpackersSlotsPreview__title svg path {
    fill: var(--link-text-color) !important;
}

.CentralbackpackersSlotsPreview__main {
    display: flex;
    align-items: center;
    gap: 30px;
}

.CentralbackpackersViewAll {
    color: var(--link-text-color);
    font-weight: 600;
    text-decoration: none;
}

.CentralbackpackersSlotsPreview__nav, .CentralbackpackersFooter__blockNav{
    display: flex;
    gap: 10px;
}

.CentralbackpackersSlotsPreview__nav .CentralbackpackersSwiperButtonPrev,
.CentralbackpackersSlotsPreview__nav .CentralbackpackersSwiperButtonNext,
.CentralbackpackersFooter__blockNav .CentralbackpackersSwiperButtonPrev,
.CentralbackpackersFooter__blockNav .CentralbackpackersSwiperButtonNext,
#CentralbackpackersButtonTop {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 40px;
    height: 40px;
    background-color: var(--button-bg-color);
    border-radius: 10px;
    border: 2px solid var(--button-bg-color);
    color: var(--main-text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.CentralbackpackersFooter__blockNav .CentralbackpackersSwiperButtonPrev,
.CentralbackpackersFooter__blockNav .CentralbackpackersSwiperButtonNext {
    width: 25px;
    height: 25px;
    border-radius: 6.25px;
    border-width: 1.5px;
}

.CentralbackpackersSlotsPreview__nav .CentralbackpackersSwiperButtonPrev:hover,
.CentralbackpackersSlotsPreview__nav .CentralbackpackersSwiperButtonNext:hover,
.CentralbackpackersFooter__blockNav .CentralbackpackersSwiperButtonPrev:hover,
.CentralbackpackersFooter__blockNav .CentralbackpackersSwiperButtonNext:hover,
#CentralbackpackersButtonTop:hover {
    background-color: color-mix(
            in srgb,
            var(--button-bg-color) 70%,
            transparent
    );
    border-color: var(--button-bg-color);
}

.CentralbackpackersSlotsPreview__nav .CentralbackpackersSwiperButtonPrev:active,
.CentralbackpackersSlotsPreview__nav .CentralbackpackersSwiperButtonNext:active,
.CentralbackpackersFooter__blockNav .CentralbackpackersSwiperButtonPrev:active,
.CentralbackpackersFooter__blockNav .CentralbackpackersSwiperButtonNext:active,
#CentralbackpackersButtonTop:active {
    background-color: color-mix(
            in srgb,
            var(--button-bg-color) 30%,
            transparent
    );
    border-color: var(--button-bg-color);
}

.CentralbackpackersSlotsPreview__nav svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--button-text-color);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#CentralbackpackersButtonTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
    opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    box-shadow: 0px 0px 20px 10px #00000040;
}

#CentralbackpackersButtonTop.CentralbackpackersShow {
    opacity: 1;
    visibility: visible;
}

.CentralbackpackersSlotsPreview .CentralbackpackersSwiper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.CentralbackpackersSlotsPreview .CentralbackpackersSwiperWrapper {
    display: flex;
}

.CentralbackpackersSlotsPreview .CentralbackpackersSwiperSlide {
    flex: 0 0 calc(100% / 5);
    box-sizing: border-box;
    padding: 0 6px;
    width: auto !important;
}

.CentralbackpackersSlotCard {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.CentralbackpackersSlotCard__image img {
    width: 100%;
    display: block;
}

.CentralbackpackersSlotCard .CentralbackpackersBtnSlotCard {
    padding: 17px 20px;
}

.CentralbackpackersSlotCard__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.CentralbackpackersSlotCard:hover .CentralbackpackersSlotCard__overlay {
    opacity: 1;
}

.CentralbackpackersProvidersSlider {
    width: 100%;
    overflow: hidden;
}

.CentralbackpackersProvidersSwiper .CentralbackpackersSwiperWrapper {
    display: flex;
}

.CentralbackpackersProvidersSwiper .CentralbackpackersSwiperSlide {
    flex: 0 0 calc(100% / 9);
    box-sizing: border-box;
    padding: 0 6px;
    width: auto !important;
}

.CentralbackpackersFooter__blockProviders .CentralbackpackersFooter__item {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: color-mix(
            in srgb,
            var(--header-bg-color) 60%,
            transparent
    );
    border-radius: 5px;
    height: 40px;

}
.CentralbackpackersFooter__blockProviders .CentralbackpackersFooter__item img {
    max-width: 80px;
}

.CentralbackpackersFooter__blockInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.CentralbackpackersFooter__block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.CentralbackpackersFooter__block span {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
}

.CentralbackpackersFooter__blockPayments .CentralbackpackersFooter__blockWrapper {
    justify-content: start;
    gap: 15px;
    flex-wrap: wrap;
}

.CentralbackpackersFooter__blockPayments .CentralbackpackersFooter__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 28px;
    background-color: color-mix(
            in srgb,
            var(--header-bg-color) 60%,
            transparent
    );
    border-radius: 3.5px;
}

.CentralbackpackersFooter__item img {
    border-radius: 0;
}

.CentralbackpackersFooter__blockPayments .CentralbackpackersFooter__item img {
    max-width: 56px;
}

.CentralbackpackersContent__playButton {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.CentralbackpackersContent__playButton .CentralbackpackersBtnPrimary {
    padding: 15px 52px;
    border-radius: 10px;
}

.CentralbackpackersSlotsPage__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: auto;
    justify-content: center;
}

.CentralbackpackersMenuOverlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    opacity:0;
    visibility:hidden;
    transition:.25s;
    z-index:998;
}

.CentralbackpackersMenuOverlay.CentralbackpackersActive{
    opacity:1;
    visibility:visible;
}

#CentralbackpackersNavMenu{
    z-index:999;
}

body.CentralbackpackersNoScroll{
    overflow:hidden;
}

@media screen and (max-width: 992px) {
    .CentralbackpackersContent__wrapper {
        flex-direction: column;
    }

    .CentralbackpackersContent__col.CentralbackpackersContent__colImg {
        max-width: 100%;
    }

    .CentralbackpackersProvidersSwiper .CentralbackpackersSwiperSlide {
        flex: 0 0 calc(100% / 6);
        padding: 0 5px;
    }

    .CentralbackpackersSlotsPage__grid .CentralbackpackersSlotCard {
        width: 100%;
        max-width: 23.5%;
    }

}
@media screen and (max-width: 768px) {
    .CentralbackpackersLayout {
        display: block;
    }
    .CentralbackpackersSidebar {
        display: none;
    }

    .CentralbackpackersHeader {
        display: block;
    }
    .CentralbackpackersBurgerMenu {
        display: flex;
        order: -1;
    }
    .CentralbackpackersHeader__inner {
        justify-content: space-between;
        gap: 20px;
    }
    .CentralbackpackersHeader__logo {
        max-height: 50px;
    }
    .CentralbackpackersHeader__logo img {
        max-width: 100px;
    }

    #CentralbackpackersNavMenu {
        position: absolute;
        display: flex;
        top: 56px;
        left: 0;
        height: calc(100dvh - 56px);
        padding: 0 30px ;
        background-color: var(--header-bg-color);
        flex-direction: column;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0s linear 0.4s;
    }

    .CentralbackpackersHeader__nav {
        display: flex;
        padding: 0;
        width: 100%;
    }

    .CentralbackpackersHeader__nav ul {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 20px 0;
        gap: 0;
    }

    .CentralbackpackersHeader__nav ul li {
        padding: 10px 0;
    }

    .CentralbackpackersHeader .CentralbackpackersBtn {
        padding: 7px 17px;
        font-weight: 700;
        font-size: 10px;

    }

    #CentralbackpackersNavMenu.CentralbackpackersActive {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.4s ease;
    }

    .CentralbackpackersHeader__row {
        height: 56px;
    }

    .CentralbackpackersHeader__innerSecond.CentralbackpackersHeader__col {
        flex-direction: row;
    }

    .CentralbackpackersDownloadAppBlock {
        padding: 7px 10px !important;
        margin-bottom: 15%;
    }

    .CentralbackpackersFooter__navList {
        gap: 20px;
        justify-content: center;
        text-align: center;
    }

    .CentralbackpackersFooter__row {
        flex-direction: column;
        align-items: center;
    }

    .CentralbackpackersFooter__logo {
        margin: auto;
    }

    .CentralbackpackersFooter__icons {
        justify-content: center;
    }

    .CentralbackpackersFooter__rowLinkBlock {
        order: -1;
    }

    .CentralbackpackersBreadcrumbs {
        font-size: 0.75em;
    }

    .CentralbackpackersWelcomeBonus, .CentralbackpackersCookieBlock {
        left: 50%;
    }
}

@media screen and (max-width: 600px) {

    section {
        padding: 10px 0;
    }

    section.CentralbackpackersSectionMain {
        padding: 15px 0 20px 0;
    }

    section.CentralbackpackersSectionContent {
        padding: 10px 0 20px 0;
    }

    .CentralbackpackersBtn__wrapper {
        gap: 5px;
    }

    .CentralbackpackersHeader__innerBlock {
        padding: 20px 25px;
    }

    .CentralbackpackersContent__innerBlock {
        padding: 9px 14px;
    }

    .CentralbackpackersContent__innerBlock p {
        margin-bottom: 15px;
    }

    .CentralbackpackersContent__innerBlock h1 {
        margin-bottom: 10px;
    }

    .CentralbackpackersContent__innerBlock .CentralbackpackersBtn__wrapperMain .CentralbackpackersBtnPrimary {
        padding: 8px 26px;
        border-radius: 5px;
    }

    .CentralbackpackersContent__inner, .CentralbackpackersContent__innerBg, .CentralbackpackersContent__innerBg img {
        border-radius: 5px;
    }

    .CentralbackpackersSlotsPreview__main {
        gap: 18px;
    }

    .CentralbackpackersSlotsPreview__title {
        font-size: 20px;
        gap: 6px;
    }

    .CentralbackpackersSlotsPreview__title svg {
        width: 15px;
        height: 15px;
    }

    .CentralbackpackersViewAll {
        font-weight: 400;
        font-size: 12px;
    }

    .CentralbackpackersSlotsPreview__nav {
        gap: 6px;
    }

    .CentralbackpackersSlotsPreview__nav .CentralbackpackersSwiperButtonPrev, .CentralbackpackersSlotsPreview__nav .CentralbackpackersSwiperButtonNext {
        width: 25px;
        height: 25px;
        border-radius: 6.25px;
        border-width: 1.5px;
    }

    .CentralbackpackersSlotsPreview__nav svg {
        width: 10px;
        height: 10px;
    }

    .CentralbackpackersSlotsPreview .CentralbackpackersSwiperSlide {
        flex: 0 0 calc(100% / 3);
    }


    .CentralbackpackersSlotsPage__grid .CentralbackpackersSlotCard {
        width: 100%;
        max-width: 31%;
    }


    .CentralbackpackersFooter__block {
        gap: 10px;
    }
    .CentralbackpackersFooter__icons {
        gap: 20px;
        margin: 0;
    }

    .CentralbackpackersFooter__row {
        gap: 20px;
    }

    .CentralbackpackersProvidersSwiper .CentralbackpackersSwiperSlide {
        flex: 0 0 calc(100% / 3);
    }


    .CentralbackpackersWelcomeBonus {
        left: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
        z-index: 20;
    }

    .CentralbackpackersWelcomeBonus__bonus {
        max-width: 140px;
    }

    .CentralbackpackersWelcomeBonus__wrapper {
        gap: 14px;
    }

    .CentralbackpackersWelcomeBonus__bonus p {
        font-size: 20px;
    }

    .CentralbackpackersWelcomeBonus__bonus span {
        font-size: 14px;
    }

    .CentralbackpackersBtnBonus {
        padding: 7px 17px;
        font-weight: 700;
        font-size: 14px;
    }

    #CentralbackpackersButtonTop {
        bottom: 15px;
        right: 15px;
    }

    .CentralbackpackersSlotCard .CentralbackpackersBtnSlotCard, .CentralbackpackersSlotsPage__grid .CentralbackpackersSlotCard .CentralbackpackersBtnSlotCard {
        padding: 9px 12px;
    }

    .CentralbackpackersSlotCard .CentralbackpackersBtnSlotCard svg, .CentralbackpackersSlotsPage__grid .CentralbackpackersSlotCard .CentralbackpackersBtnSlotCard svg {
        width: 15px;
        height: 15px;
    }

    .CentralbackpackersCookieBlock {
        bottom: 85px;
    }
}


/* TOC Styles */
.CentralbackpackersToc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px 0 40px;
    margin: 0;
    display: block;
    column-count: 3;
    column-gap: 40px;
}

.CentralbackpackersToc li {
    break-inside: avoid;
    margin-bottom: 10px;
}

.CentralbackpackersToc li::marker {
    color: var(--link-text-color);
}

.CentralbackpackersTocWrapper {
    background-color: var(--header-bg-color);
    max-width: 100%;
    margin: 20px auto;
    border-radius: 10px;
    border: 1px solid var(--link-text-color);
}

.CentralbackpackersTocTitle {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 10px;
}

.CentralbackpackersToc.CentralbackpackersIsOpen {
    margin: inherit;
    margin-top: 0;
    padding: 0 40px 0 40px;
    max-height: 2000px !important;
}

.CentralbackpackersTocArrow {
    width: 20px;
    height: 21px;
    order: -1;
    display: inline-block;
    background-color: var(--link-text-color);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 21'><path d='M5.55054 7.1665L14.4489 7.1665C14.7429 7.1665 14.9777 7.26655 15.1534 7.46665C15.3291 7.66592 15.417 7.89882 15.417 8.16534C15.417 8.24899 15.4058 8.33632 15.3834 8.42735C15.3619 8.51756 15.3287 8.60407 15.284 8.6869L10.8114 15.8743C10.7076 16.0269 10.5886 16.1417 10.4544 16.2188C10.321 16.295 10.1697 16.3332 10.0003 16.3332C9.83099 16.3332 9.67963 16.295 9.54624 16.2188C9.41285 16.1425 9.29384 16.0277 9.1892 15.8743L4.71665 8.6869C4.67272 8.60407 4.63957 8.51674 4.61721 8.42489C4.59484 8.33304 4.58366 8.24571 4.58366 8.16288C4.58366 7.89554 4.67152 7.66264 4.84724 7.46419C5.02297 7.26573 5.2574 7.1665 5.55054 7.1665Z'/></svg>") no-repeat center/contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    transition: transform 0.3s ease;
}

.CentralbackpackersTocArrow.CentralbackpackersRotated {
    transform: rotate(180deg);
    margin-bottom: -4px;
}

@media (max-width: 500px) {
    .CentralbackpackersToc {
        column-count: 1;
    }
}
