@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@400;700&display=swap');

.toplist-gamers__wrapper {
    margin-bottom: 40px;
}

.toplist-gamers__offers {
    display: flex;
    flex-direction: column;
    counter-reset: toplist-gamers-counter 0;
}

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

.toplist-gamers__filter-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px 0 0;
    padding: 5px 0;
    border-top: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
    gap: 5px;
}

.toplist-gamers__filter-tag {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 10px;
    font-weight: 700;
    font-style: normal;
    line-height: 19.2px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;
    height: 24px;
    padding: 2px 10px;
    cursor: pointer;
    user-select: none;
    text-transform: uppercase;
    color: #767676;
}

.toplist-gamers__filter-tag.filter-tag-active {
    color: #000;
    background: #ffec5d33;
}

.toplist-gamers__filter-tag img {
    width: 16px !important;
    height: 16px !important;
    margin-right: 3px;
}

.toplist-gamers__offer {
    position: relative;
    display: grid;
    padding: 15px 0;
    counter-increment: toplist-gamers-counter 1;
    border-bottom: 1px solid #d3d3d3;
    gap: 3px 16px;
    grid-template-areas:
        'logo main cta-btn'
        'logo terms cta-btn';
    grid-template-columns: 180px auto 160px;
    grid-template-rows: auto 1fr;
}

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

.toplist-gamers__offer-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 120px;
    margin: auto;
    border-radius: 8px;
    grid-area: logo;
}

.toplist-gamers__offer-logo:before {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 10px;
    font-weight: 700;
    font-style: normal;
    line-height: 19.2px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 26px;
    padding: 3px 6px;
    content: counter(toplist-gamers-counter);
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    border-radius: 100px;
    background: #000;
}

.toplist-gamers__offer-logo img {
    width: 100%;
    height: 86px;
    padding: 0 6px;
    object-fit: contain;
}

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

.toplist-gamers__offer-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toplist-gamers__offer-rating-value {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    line-height: 14.94px;
    flex-shrink: 0;
    text-align: center;
    text-transform: uppercase;
    color: #000;
}

.toplist-gamers__offer-rating-value:before {
    display: inline-block;
    width: 9px;
    height: 8px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='8' viewBox='0 0 9 8' fill='none'%3E%3Cpath d='M2.78381 2.45378L3.90858 0.174748C4.02357 -0.0582494 4.35582 -0.0582494 4.47081 0.174748L5.59558 2.45378L8.11063 2.81924C8.36776 2.8566 8.47043 3.17259 8.28437 3.35395L6.46446 5.12793L6.89408 7.63282C6.938 7.88891 6.66921 8.0842 6.43923 7.96329L4.18969 6.78064L1.94016 7.96329C1.71017 8.0842 1.44138 7.88891 1.4853 7.63282L1.91493 5.12793L0.0950118 3.35395C-0.0910477 3.17259 0.0116222 2.8566 0.26875 2.81924L2.78381 2.45378Z' fill='%23FF0A5C'/%3E%3C/svg%3E");
}

.toplist-gamers__offer-review,
.toplist-gamers__offer-review-link {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    line-height: 19.2px;
    text-decoration: unset;
    text-transform: uppercase;
    color: #ff0a5c;
}

.toplist-gamers__offer-review-link:hover {
    text-decoration: underline;
    color: #ff0a5c;
}

.toplist-gamers__offer-title {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 22px;
    font-weight: 700;
    font-style: normal;
    line-height: 28px;
    color: #333;
}

.toplist-gamers__offer-title span {
    color: #ff0a5c;
}

.toplist-gamers__offer-coupon-code-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    height: 24px;
    padding: 2px 10px;
    cursor: pointer;
    border: 1px dashed #ff0a5c;
    border-radius: 8px;
    background: #ff0a5c0c;
    grid-area: coupon;
}

.toplist-gamers__offer-coupon-code {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 10px;
    font-weight: 700;
    font-style: normal;
    line-height: 19.2px;
    text-transform: uppercase;
    color: #ff0a5c;
}

.toplist-gamers__offer-coupon-code:after {
    position: relative;
    top: 3px;
    display: inline-block;
    width: 12px;
    height: 13px;
    margin-left: 2px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='13' viewBox='0 0 12 13' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.28945 1.44701V2.24825H10.553H10.554V2.25032C10.9531 2.25136 11.3148 2.41306 11.5761 2.6753C11.8352 2.93548 11.9969 3.29515 11.9979 3.69318H12V3.69526V11.29V11.291H11.9979C11.9969 11.689 11.8352 12.0508 11.5729 12.313C11.3128 12.5722 10.9531 12.7339 10.5551 12.7349V12.737H10.553H4.15755H4.15652V12.7349C3.75849 12.7339 3.3957 12.5722 3.13449 12.3099C2.87536 12.0498 2.71366 11.6901 2.71262 11.292H2.71055V11.29V9.58901H1.44701H1.44597V9.58694C1.04794 9.5859 0.685152 9.4242 0.423944 9.16196C0.16481 8.90179 0.00310961 8.54211 0.00207308 8.14408H0V8.14201V1.44701V1.44597H0.00207308C0.00310961 1.0469 0.165846 0.685152 0.427054 0.423944C0.687225 0.16481 1.0469 0.00310961 1.44493 0.00207308V0H1.44701H7.84245H7.84348V0.00207308C8.24255 0.00310961 8.6043 0.16481 8.86551 0.427054C9.12465 0.687225 9.28634 1.0469 9.28738 1.44493H9.28945V1.44701ZM8.1928 2.24825V1.44701V1.44493H8.19487C8.19487 1.35061 8.15445 1.26354 8.09018 1.19927C8.02695 1.13605 7.93885 1.09562 7.84452 1.09562V1.09769H7.84348H1.44804H1.44597V1.09562C1.35165 1.09562 1.26458 1.13605 1.20031 1.20031C1.13708 1.26354 1.09666 1.35165 1.09666 1.44597H1.09873V1.44701V8.14201V8.14408H1.09666C1.09666 8.2384 1.13708 8.32547 1.20135 8.38974C1.26458 8.45297 1.35268 8.49339 1.44701 8.49339V8.49132H1.44804H2.71158V3.69526V3.69422H2.71366C2.71469 3.29515 2.87743 2.9334 3.13864 2.67219C3.39881 2.41306 3.75849 2.25136 4.15652 2.25032V2.24825H4.15859H8.1928ZM10.9023 11.29V3.69526V3.69318H10.9044C10.9044 3.59886 10.864 3.51179 10.7997 3.44753C10.7365 3.3843 10.6484 3.34387 10.554 3.34387V3.34594H10.553H4.15755H4.15548V3.34387C4.06116 3.34387 3.97409 3.3843 3.90982 3.44856C3.84659 3.51179 3.80617 3.5999 3.80617 3.69422H3.80824V3.69526V11.29V11.292H3.80617C3.80617 11.3864 3.84659 11.4734 3.91086 11.5377C3.97409 11.6009 4.06219 11.6414 4.15652 11.6414V11.6393H4.15755H10.553H10.5551V11.6414C10.6494 11.6414 10.7365 11.6009 10.8007 11.5367C10.864 11.4734 10.9044 11.3853 10.9044 11.291H10.9023V11.29Z' fill='%23FF0A5C'/%3E%3C/svg%3E");
}

.toplist-gamers__offer-terms,
.toplist-gamers__offer-terms p {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 9px;
    font-weight: 400;
    font-style: normal;
    line-height: 14px;
    margin-bottom: 0;
    color: #767676;
    grid-area: terms;
}

.toplist-gamers__offer-cta-btn {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 51px;
    margin: auto;
    padding: 10px 30px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    background: #ff0a5c;
    box-shadow: 0 4px 0 0 #a40037;
    grid-area: cta-btn;
}

.toplist-gamers__offer-cta-btn:hover {
    text-decoration: unset;
    color: #fff;
    background: #d90049;
}

.toplist-gamers__show-more-btn {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    line-height: 19.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 0;
    text-transform: uppercase;
    color: #ff0a5c;
}

.toplist-gamers__show-more-btn:hover {
    cursor: pointer;
    text-decoration: underline;
}

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

    .toplist-gamers__filter-wrapper {
        overflow-x: scroll;
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: 100vw;
        margin: 10px -16px 12px;
        padding: 5px 16px;
    }

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

    .toplist-gamers__offer {
        padding: 0 0 10px;
        gap: 5px 16px;
        grid-template-areas:
            'logo main'
            'logo cta-btn'
            'logo terms';
        grid-template-columns: 105px auto;
        grid-template-rows: auto;
    }

    .toplist-gamers__offer-logo:before {
        top: 0.8px;
        left: 1px;
    }

    .toplist-gamers__offer-logo img {
        height: 50px;
    }

    .toplist-gamers__offer-main {
        gap: 0;
    }

    .toplist-gamers__offer-title {
        font-size: 16px;
        line-height: 19.6px;
    }

    .toplist-gamers__offer-coupon-code-wrapper {
        width: 100%;
        margin-top: 5px;
    }

    .toplist-gamers__offer-cta-btn {
        height: 41px;
        padding: 5px 30px;
    }
}
