body {
    color: #fff;
}

.lineup-desc__text {
    color: #000;
    margin-top: 0px;
}

.header-basket-mobile {
    display: none;
}


@media (max-width: 1500px) {
    .header-basket-mobile {
        position: relative;
        display: block;
        width: 20px;
        margin-left: auto;
        margin-right: 25px;
        padding: 0;
        border: 0;
        background-color: transparent;
    }
    .header-basket-mobile[data-count]::after {
        font-size: 10px;
        line-height: 1;
        position: absolute;
        top: -10px;
        right: -10px;
        display: flex;
        width: 15px;
        height: 15px;
        content: attr(data-count);
        color: #000;
        border-radius: 50%;
        background-color: #fff;
        justify-content: center;
        align-items: center;
    }
}