.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: var(--gradient-b);
    z-index: 12
}

@media(min-width:1140px) {
    .top-bar {
        width: 100%
    }
}

.top-bar__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: var(--topbar-height-mob);
    padding: 0 16px;
    background: var(--gradient-b)
}

@media(min-width:640px) {
    .top-bar__wrapper {
        padding: 0 var(--spacings-2xl);
        height: var(--topbar-height-tablet)
    }
}

@media(min-width:1140px) {
    .top-bar__wrapper {
        background: var(--gradient-a);
        height: var(--topbar-height-desktop)
    }

    .top-bar__wrapper>div {
        flex: 1 1 33.333%
    }
}

@media(min-width:1628px) {
    .top-bar__wrapper {
        height: var(--topbar-height-huge)
    }
}

.top-bar__center {
    display: flex;
    justify-content: center
}

.top-bar__center-link, .top-bar__center-menu {
    display: flex;
    align-items: center
}

.top-bar__center-link {
    padding: 0 12px;
    column-gap: 4px;
    white-space: nowrap;
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: .7px;
    transition: all .2s ease-out
}

.no-touch .top-bar__center-link:hover {
    color: var(--tabs-a-text-hover)
}

@media(min-width:1628px) {
    .top-bar__center-link {
        padding: 0 20px;
        column-gap: 8px;
        font-size: 18px;
        line-height: 24px;
        font-weight: 400;
        letter-spacing: .9px
    }
}

.top-bar__center-icon-wr {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center
}

.top-bar__center-icon {
    width: 16px;
    height: auto;
    color: var(--icons-a);
    transition: all .2s ease-out
}

.no-touch .top-bar__center-link:hover .top-bar__center-icon {
    color: var(--tabs-a-icon-hover)
}

.top-bar__center-icon--bonuses-icon, .top-bar__center-icon--promo-icon, .top-bar__center-icon--vip-club-icon {
    margin-bottom: 2px
}

.top-bar__center-icon--bonuses-icon {
    width: 14px
}

.top-bar__left, .top-bar__logo {
    display: flex;
    align-items: center
}

.top-bar__logo {
    justify-content: flex-start;
    cursor: pointer;
    font-size: 44px;
    font-weight: bold;
}

.top-bar__search {
    display: grid;
    grid-template-columns: minmax(87px, 277px);
    margin-left: 16px
}

.top-bar__search-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: var(--roundings-circle);
    background: var(--backgrounds-c);
    cursor: pointer;
    transition: none;
    padding: 0 var(--spacings-s);
    gap: var(--spacings-xs);
    border: 1px solid #FE5B16;
    height: 40px;
    max-width: 276px;
    text-transform: none
}

.top-bar__search-icon {
    width: 24px;
    height: auto;
    flex-shrink: 0;
    color: var(--text-description-a);
    transition: all .2s ease-out
}

.top-bar__search-btn-text {
    color: var(--text-description-a);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: var(--spacings-xs);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px
}

.top-bar__right {
    display: flex;
    justify-content: flex-end;
    transition: all .2s ease-out
}