.toplist-n4g__wrapper {
    margin: 16px 0;
}

.toplist-n4g__offers {
    display: flex;
    flex-direction: column;
    counter-reset: toplist-n4g-counter 0;
    gap: 8px;
}

.toplist-n4g__filter-tags-json {
    box-sizing: border-box;
}

.toplist-n4g__filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 16px 0;
}

.toplist-n4g__filter-tag {
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 21px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;
    height: 48px;
    padding: 16px;
    cursor: pointer;
    user-select: none;
    text-align: center;
    text-transform: uppercase;
    color: #8198a7;
    border: 1px solid transparent;
}

.toplist-n4g__filter-tag.filter-tag-active {
    color: #000;
    border-color: #1d2121;
}

.toplist-n4g__offer {
    position: relative;
    display: grid;
    padding: 16px 16px 16px 0;
    counter-increment: toplist-n4g-counter 1;
    background: #000;
    gap: 16px;
    grid-template-areas: 'logo main cta-btn';
    grid-template-columns: 166px auto 150px;
    grid-template-rows: 1fr;
}

.toplist-n4g__offer:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    content: '';
    background: linear-gradient(to bottom right, #ee1d24 0%, #ee1d24 50%, transparent 50%, transparent 100%);
}

.toplist-n4g__offer:after {
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    line-height: 22px;
    position: absolute;
    top: 6px;
    left: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    content: counter(toplist-n4g-counter);
    color: #fff;
}

.toplist-n4g__offer.hidden {
    display: none;
}

.toplist-n4g__offer-logo-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    grid-area: logo;
}

.toplist-n4g__offer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 146px;
    height: 70px;
}

.toplist-n4g__offer-logo img {
    width: 146px;
    height: 70px;
    object-fit: contain;
}

.toplist-n4g__offer-brand {
    font-family: Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 500;
    font-style: normal;
    line-height: 150%;
    color: #d5d5d5;
}

.toplist-n4g__offer-main {
    display: flex;
    flex-direction: column;
    gap: 6px;
    grid-area: main;
}

.toplist-n4g__offer-top-rated {
    font-family: Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%;
    color: #d5d5d5;
}

.toplist-n4g__offer-title {
    font-family: Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    line-height: 24px;
    color: #fff;
}

.toplist-n4g__offer-rating-wrapper {
    display: flex;
    align-items: center;
    width: max-content;
    border: 1px solid #1e1e1e;
}

.toplist-n4g__offer-rating {
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    line-height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 26px;
    text-align: center;
    color: #fff;
    background: #1e1e1e;
}

.toplist-n4g__offer-rating-img {
    display: flex;
    padding: 0 10px;
}

.toplist-n4g__offer-rating-img img {
    height: 14px;
}

.toplist-n4g__offer-cta-btn {
    font-family: Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    margin: auto;
    text-align: center;
    color: #fff;
    background: #f83746;
    grid-area: cta-btn;
}

.toplist-n4g__offer-cta-btn:hover {
    text-decoration: none;
    color: #000;
    background: #edb100;
}

.toplist-n4g__show-more-btn {
    font-family: Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 48px;
    margin: 16px auto 0;
    padding: 16px;
    text-align: center;
    color: #00001c;
    border: 2px solid #000;
    background: #fff;
}

.toplist-n4g__show-more-btn:hover {
    cursor: pointer;
    color: #c3c9bb;
    background: #000;
}

@media (max-width: 991px) {
    .toplist-n4g__offers {
        gap: 16px;
    }

    .toplist-n4g__filter-wrapper {
        overflow-x: scroll;
        flex-wrap: nowrap;
        width: 100vw;
        margin: 0 -16px 16px;
        padding: 0 16px;
    }

    .toplist-n4g__filter-wrapper::-webkit-scrollbar {
        display: none;
    }

    .toplist-n4g__offer {
        padding: 0 0 16px;
        gap: 16px;
        grid-template-areas:
            'logo'
            'main'
            'cta-btn';
        grid-template-columns: auto;
    }

    .toplist-n4g__offer-logo,
    .toplist-n4g__offer-logo img {
        width: 167px;
        height: 80px;
    }

    .toplist-n4g__offer-main {
        align-items: center;
        justify-content: center;
        padding: 0 16px;
    }

    .toplist-n4g__offer-title {
        text-align: center;
    }

    .toplist-n4g__offer-rating-wrapper {
        justify-content: center;
    }

    .toplist-n4g__offer-cta-btn {
        width: calc(100% - 32px);
        padding: 0 16px;
    }

    .toplist-n4g__show-more-btn {
        width: max-content;
    }
}
