
.bg-orange {
    background-color: rgb(255 170 0);
}


.menu-bottom .container {
    max-width: 1794px;
}
.menu-bottom {
    padding: 10px 0;
    border-top: 1px solid #313439;
    position: relative;
    overflow: hidden;
}

.menu-bottom__item {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-grow: 1;
    flex-shrink: 0;
}
.menu-bottom__item:last-child {
    flex-grow: 0;
}
.menu-bottom__item__icon {
    width: 36px;
    height: auto;
    flex-shrink: 0;
}
.menu-bottom__item__title {
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}
.menu-bottom__item:not(:last-child)::after {
    display: block;
    content: '';
    width: 2px;
    height: 34px;
    background: #8C8E92;
    margin: 0 auto;
}
.menu-bottom__arrow {
    display: none !important;
    position: absolute;
    width: 44px;
    height: calc(100% - 2px);
    background: linear-gradient(90deg, rgba(25, 29, 36, 0) 0%, #191D24 22.09%);
    right: 0;
    top: 1px;
    align-items: center;
    justify-content: center;
;
}
@media (max-width: 1500px) {
    .menu-bottom__item__title {
        font-size: 17px;
    }
}
 @media (max-width: 1280px) {
    .menu-bottom {
        padding: 14px 0 2px;
    }
    .menu-bottom__row {
        gap: 25px;
        overflow-x: auto;
        width: calc(100% + 32px + 60px);
        margin-left: -32px;
        margin-right: -60px;
        padding-left: 32px;
        padding-right: 60px;
        padding-bottom: 12px;

    }
    .menu-bottom__item {
        gap: 8px;
        padding: 6px 12px ;
        border-radius: 10px;
        border: 1px solid #fff;
        max-height: 50px;
    }
    .menu-bottom__item:not(:last-child)::after {
        display: none;
    }
    .menu-bottom__item__title {
        font-size: 15px;
    }
    .menu-bottom__arrow {
        display: flex !important;
    }
 }

@media (max-width: 768px) {
    .menu-bottom__item {
        flex-shrink: unset;
    }
    .menu-bottom__row {
        width: calc(100% + 15px + 60px);
        margin-left: -15px;
        margin-right: -60px;
        padding-left: 15px;
        padding-right: 60px;

    }
}



.cookie-box {
    width: 286px;
    background: #10171F;
    border-radius: 10px;
    padding: 23px 14px 14px;
    color: #fff;
    position: fixed;
    bottom: 26px;
    right: 172px;
    z-index: 1001;
}
.cookie-box__text {
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}
.cookie-box__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    height: 38px;
    width: 100%;
    border-radius: 10px;
    background: #fff;
    color: #10171F;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .cookie-box {
        right: 20px;
        bottom: 150px;
    }
}
