.toplist-cardplayer__wrapper {
    margin-bottom: 22px;
}

.toplist-cardplayer__offers {
    display: flex;
    flex-direction: column;
    counter-reset: toplist-cardplayer-counter 0;
    gap: 16px;
}

.toplist-cardplayer__filter-tags-json,
#middle .toplist-cardplayer__offers *,
#middle .toplist-cardplayer__wrapper * {
    box-sizing: border-box;
}

.toplist-cardplayer__filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 16px 0;
    gap: 6px;
}

.toplist-cardplayer__filter-tag {
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 400;
    font-style: normal;
    line-height: 18px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;
    height: 26px;
    padding: 4px 14px;
    cursor: pointer;
    user-select: none;
    text-align: center;
    color: #718096;
    border-radius: 200px;
    background: #71809619;
}

.toplist-cardplayer__filter-tag.filter-tag-active {
    font-weight: 700;
    color: #fff;
    border-radius: 100px;
    background: #718096;
}

.toplist-cardplayer__offer {
    display: flex;
    flex-direction: column;
    counter-increment: toplist-cardplayer-counter 1;
    gap: 8px;
}

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

.toplist-cardplayer__offer-inner {
    display: grid;
    padding: 12px;
    border-radius: 4px;
    background: #fff;
    box-shadow:
        0 1px 2px 0 #0000000a,
        0 4px 16px 0 #0000000f;
    gap: 8px 0;
    grid-auto-flow: row;
    grid-template-areas:
        'logo brand brand'
        'logo title actions'
        'logo rating actions'
        'logo info info';
    grid-template-columns: 136px auto 144px;
    grid-template-rows: auto auto 1fr;
}

.toplist-cardplayer__offer-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: #f2f2f2;
    grid-area: logo;
}

.toplist-cardplayer__offer-logo:before {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    content: counter(toplist-cardplayer-counter);
    color: #080000;
    border: 2px solid #f2f2f2;
    border-radius: 8px 2px;
    background: #fff;
}

.toplist-cardplayer__offer-logo img {
    width: 100px;
    height: 61px;
    object-fit: contain;
}

.toplist-cardplayer__brand-name {
    font-family: Arial, sans-serif;
    font-size: 14px !important;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
    padding-left: 16px;
    text-transform: uppercase;
    color: #797373;
    grid-area: brand;
}

.toplist-cardplayer__offer-title {
    font-family: Arial, sans-serif;
    font-size: 18px !important;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
    padding-left: 16px;
    color: #000;
    grid-area: title;
}

.toplist-cardplayer__offer-title span {
    color: #900;
}

.toplist-cardplayer__offer-rating {
    display: flex;
    align-items: center;
    height: max-content;
    padding-left: 16px;
    gap: 12px;
    grid-area: rating;
}

.toplist-cardplayer__offer-rating-score {
    font-family: Arial, sans-serif;
    font-size: 16px !important;
    font-weight: 700;
    font-style: normal;
    line-height: 24px;
    flex-shrink: 0;
    color: #080000;
}

.toplist-cardplayer__offer-rating-score:after {
    position: relative;
    top: 2px;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 2px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M16.5 7.57495C16.575 7.19995 16.275 6.74995 15.9 6.74995L11.625 6.14995L9.675 2.24995C9.6 2.09995 9.525 2.02495 9.375 1.94995C9 1.72495 8.55 1.87495 8.325 2.24995L6.45 6.14995L2.175 6.74995C1.95 6.74995 1.8 6.82495 1.725 6.97495C1.425 7.27495 1.425 7.72495 1.725 8.02495L4.8 11.025L4.05 15.3C4.05 15.45 4.05 15.6 4.125 15.75C4.35 16.125 4.8 16.275 5.175 16.05L9 14.025L12.825 16.05C12.9 16.125 13.05 16.125 13.2 16.125C13.275 16.125 13.275 16.125 13.35 16.125C13.725 16.05 14.025 15.675 13.95 15.225L13.2 10.95L16.275 7.94995C16.425 7.87495 16.5 7.72495 16.5 7.57495Z' fill='black'/%3E%3C/svg%3E");
}

.toplist-cardplayer__offer-review-link {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    text-decoration: underline;
    color: #080000;
    text-underline-position: from-font;
}

.toplist-cardplayer__offer-review-link:hover {
    text-decoration: unset;
    color: #080000;
}

.toplist-cardplayer__offer-actions {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-left: 12px;
    gap: 8px;
    grid-area: actions;
}

.toplist-cardplayer__offer-cta-btn {
    font-family: Arial, sans-serif;
    font-size: 12px !important;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 36px;
    padding: 6px 16px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    border-radius: 4px;
    background: #900;
    box-shadow:
        0 1px 3px 0 #e0090c5b,
        0 4px 16px 0 #ff615da8;
    gap: 4px;
}

.toplist-cardplayer__offer-cta-btn:after {
    width: 16px;
    min-width: 16px;
    height: 16px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.33325 2L12.6666 8L3.33325 14V2Z' fill='white'/%3E%3C/svg%3E");
    background-size: 16px;
}

.toplist-cardplayer__offer-cta-btn:hover {
    text-decoration: none;
    color: #fff;
    box-shadow: 0 5px 15px 0 #e3194e93;
}

#middle .toplist-cardplayer__offer-cta-btn {
    height: auto;
    min-height: 36px;
    padding: 6px 12px;
}

.toplist-cardplayer__offer-coupon-code-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: auto;
    height: 28px;
    margin-left: auto;
    padding: 6px 8px;
    cursor: pointer;
    border: 1px dashed #000;
    border-radius: 4px;
}

.toplist-cardplayer__offer-coupon-code-wrapper:hover {
    background: #e8e6e6;
}

.toplist-cardplayer__offer-coupon-code {
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    color: #000;
}

.toplist-cardplayer__offer-coupon-code:after {
    width: 16px;
    height: 16px;
    margin-left: 4px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M14 5.95998C13.9931 5.89874 13.9796 5.8384 13.96 5.77998V5.71998C13.9279 5.65143 13.8852 5.58842 13.8333 5.53331L9.83333 1.53331C9.77822 1.48146 9.71521 1.4387 9.64667 1.40665C9.62677 1.40382 9.60657 1.40382 9.58667 1.40665C9.51894 1.36781 9.44415 1.34288 9.36667 1.33331H6.66667C6.13623 1.33331 5.62753 1.54403 5.25245 1.9191C4.87738 2.29417 4.66667 2.80288 4.66667 3.33331V3.99998H4C3.46957 3.99998 2.96086 4.21069 2.58579 4.58577C2.21071 4.96084 2 5.46955 2 5.99998V12.6666C2 13.1971 2.21071 13.7058 2.58579 14.0809C2.96086 14.4559 3.46957 14.6666 4 14.6666H9.33333C9.86377 14.6666 10.3725 14.4559 10.7475 14.0809C11.1226 13.7058 11.3333 13.1971 11.3333 12.6666V12H12C12.5304 12 13.0391 11.7893 13.4142 11.4142C13.7893 11.0391 14 10.5304 14 9.99998V5.99998C14 5.99998 14 5.99998 14 5.95998ZM10 3.60665L11.7267 5.33331H10.6667C10.4899 5.33331 10.3203 5.26307 10.1953 5.13805C10.0702 5.01303 10 4.84346 10 4.66665V3.60665ZM10 12.6666C10 12.8435 9.92976 13.013 9.80474 13.1381C9.67971 13.2631 9.51014 13.3333 9.33333 13.3333H4C3.82319 13.3333 3.65362 13.2631 3.5286 13.1381C3.40357 13.013 3.33333 12.8435 3.33333 12.6666V5.99998C3.33333 5.82317 3.40357 5.6536 3.5286 5.52857C3.65362 5.40355 3.82319 5.33331 4 5.33331H4.66667V9.99998C4.66667 10.5304 4.87738 11.0391 5.25245 11.4142C5.62753 11.7893 6.13623 12 6.66667 12H10V12.6666ZM12.6667 9.99998C12.6667 10.1768 12.5964 10.3464 12.4714 10.4714C12.3464 10.5964 12.1768 10.6666 12 10.6666H6.66667C6.48986 10.6666 6.32029 10.5964 6.19526 10.4714C6.07024 10.3464 6 10.1768 6 9.99998V3.33331C6 3.1565 6.07024 2.98693 6.19526 2.86191C6.32029 2.73688 6.48986 2.66665 6.66667 2.66665H8.66667V4.66665C8.66667 5.19708 8.87738 5.70579 9.25245 6.08086C9.62753 6.45593 10.1362 6.66665 10.6667 6.66665H12.6667V9.99998Z' fill='black'/%3E%3C/svg%3E");
}

.toplist-cardplayer__offer-facts,
.toplist-cardplayer__offer-key-features {
    margin-top: 4px;
    padding-left: 16px;
    grid-area: info;
}

.toplist-cardplayer__offer-facts {
    display: flex;
    align-items: center;
    gap: 6px;
}

.toplist-cardplayer__offer-fact {
    display: flex;
    align-items: center;
}

.toplist-cardplayer__offer-fact:before {
    position: relative;
    top: 0;
    width: 16px;
    min-width: 16px;
    height: 16px;
    margin-right: 2px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M7.33325 6.00001H9.99992C10.1767 6.00001 10.3463 5.92977 10.4713 5.80475C10.5963 5.67972 10.6666 5.51015 10.6666 5.33334C10.6666 5.15653 10.5963 4.98696 10.4713 4.86194C10.3463 4.73691 10.1767 4.66668 9.99992 4.66668H8.66658V4.00001C8.66658 3.8232 8.59635 3.65363 8.47132 3.52861C8.3463 3.40358 8.17673 3.33334 7.99992 3.33334C7.82311 3.33334 7.65354 3.40358 7.52851 3.52861C7.40349 3.65363 7.33325 3.8232 7.33325 4.00001V4.66668C6.80282 4.66668 6.29411 4.87739 5.91904 5.25246C5.54397 5.62754 5.33325 6.13624 5.33325 6.66668C5.33325 7.19711 5.54397 7.70582 5.91904 8.08089C6.29411 8.45596 6.80282 8.66668 7.33325 8.66668H8.66658C8.8434 8.66668 9.01297 8.73691 9.13799 8.86194C9.26301 8.98696 9.33325 9.15653 9.33325 9.33334C9.33325 9.51015 9.26301 9.67972 9.13799 9.80475C9.01297 9.92977 8.8434 10 8.66658 10H5.99992C5.82311 10 5.65354 10.0702 5.52851 10.1953C5.40349 10.3203 5.33325 10.4899 5.33325 10.6667C5.33325 10.8435 5.40349 11.0131 5.52851 11.1381C5.65354 11.2631 5.82311 11.3333 5.99992 11.3333H7.33325V12C7.33325 12.1768 7.40349 12.3464 7.52851 12.4714C7.65354 12.5964 7.82311 12.6667 7.99992 12.6667C8.17673 12.6667 8.3463 12.5964 8.47132 12.4714C8.59635 12.3464 8.66658 12.1768 8.66658 12V11.3333C9.19702 11.3333 9.70573 11.1226 10.0808 10.7476C10.4559 10.3725 10.6666 9.86378 10.6666 9.33334C10.6666 8.80291 10.4559 8.2942 10.0808 7.91913C9.70573 7.54406 9.19702 7.33334 8.66658 7.33334H7.33325C7.15644 7.33334 6.98687 7.2631 6.86185 7.13808C6.73682 7.01306 6.66658 6.84349 6.66658 6.66668C6.66658 6.48987 6.73682 6.3203 6.86185 6.19527C6.98687 6.07025 7.15644 6.00001 7.33325 6.00001ZM12.6666 1.33334H3.33325C2.80282 1.33334 2.29411 1.54406 1.91904 1.91913C1.54397 2.2942 1.33325 2.80291 1.33325 3.33334V12.6667C1.33325 13.1971 1.54397 13.7058 1.91904 14.0809C2.29411 14.456 2.80282 14.6667 3.33325 14.6667H12.6666C13.197 14.6667 13.7057 14.456 14.0808 14.0809C14.4559 13.7058 14.6666 13.1971 14.6666 12.6667V3.33334C14.6666 2.80291 14.4559 2.2942 14.0808 1.91913C13.7057 1.54406 13.197 1.33334 12.6666 1.33334ZM13.3333 12.6667C13.3333 12.8435 13.263 13.0131 13.138 13.1381C13.013 13.2631 12.8434 13.3333 12.6666 13.3333H3.33325C3.15644 13.3333 2.98687 13.2631 2.86185 13.1381C2.73682 13.0131 2.66659 12.8435 2.66659 12.6667V3.33334C2.66659 3.15653 2.73682 2.98696 2.86185 2.86194C2.98687 2.73691 3.15644 2.66668 3.33325 2.66668H12.6666C12.8434 2.66668 13.013 2.73691 13.138 2.86194C13.263 2.98696 13.3333 3.15653 13.3333 3.33334V12.6667Z' fill='%23A19999'/%3E%3C/svg%3E");
}

.toplist-cardplayer__offer-fact.min-deposit:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M8.00008 8.00001C7.60452 8.00001 7.21784 8.11731 6.88894 8.33707C6.56004 8.55683 6.3037 8.86919 6.15232 9.23464C6.00095 9.60009 5.96134 10.0022 6.03851 10.3902C6.11568 10.7782 6.30616 11.1345 6.58587 11.4142C6.86557 11.6939 7.22194 11.8844 7.6099 11.9616C7.99786 12.0388 8.4 11.9991 8.76545 11.8478C9.1309 11.6964 9.44326 11.44 9.66302 11.1111C9.88278 10.7823 10.0001 10.3956 10.0001 10C10.0001 9.46958 9.78937 8.96087 9.4143 8.5858C9.03922 8.21072 8.53051 8.00001 8.00008 8.00001ZM8.00008 10.6667C7.86823 10.6667 7.73933 10.6276 7.6297 10.5543C7.52007 10.4811 7.43462 10.3769 7.38416 10.2551C7.3337 10.1333 7.3205 9.99927 7.34622 9.86995C7.37195 9.74063 7.43544 9.62184 7.52868 9.52861C7.62191 9.43537 7.7407 9.37188 7.87002 9.34615C7.99934 9.32043 8.13339 9.33363 8.2552 9.38409C8.37702 9.43455 8.48114 9.52 8.55439 9.62963C8.62765 9.73926 8.66675 9.86816 8.66675 10C8.66675 10.1768 8.59651 10.3464 8.47149 10.4714C8.34646 10.5964 8.17689 10.6667 8.00008 10.6667ZM7.52675 6.47334C7.59015 6.53404 7.66491 6.58161 7.74675 6.61334C7.82655 6.64861 7.91283 6.66683 8.00008 6.66683C8.08733 6.66683 8.17361 6.64861 8.25342 6.61334C8.33525 6.58161 8.41001 6.53404 8.47341 6.47334L10.0001 4.97334C10.1292 4.84427 10.2017 4.66921 10.2017 4.48668C10.2017 4.30414 10.1292 4.12908 10.0001 4.00001C9.87101 3.87094 9.69595 3.79843 9.51342 3.79843C9.33088 3.79843 9.15582 3.87094 9.02675 4.00001L8.66675 4.39334V2.00001C8.66675 1.8232 8.59651 1.65363 8.47149 1.52861C8.34646 1.40358 8.17689 1.33334 8.00008 1.33334C7.82327 1.33334 7.6537 1.40358 7.52868 1.52861C7.40365 1.65363 7.33342 1.8232 7.33342 2.00001V4.39334L6.97341 4.00001C6.84434 3.87094 6.66928 3.79843 6.48675 3.79843C6.30421 3.79843 6.12915 3.87094 6.00008 4.00001C5.87101 4.12908 5.7985 4.30414 5.7985 4.48668C5.7985 4.66921 5.87101 4.84427 6.00008 4.97334L7.52675 6.47334ZM12.6667 10C12.6667 9.86816 12.6276 9.73926 12.5544 9.62963C12.4811 9.52 12.377 9.43455 12.2552 9.38409C12.1334 9.33363 11.9993 9.32043 11.87 9.34615C11.7407 9.37188 11.6219 9.43537 11.5287 9.52861C11.4354 9.62184 11.3719 9.74063 11.3462 9.86995C11.3205 9.99927 11.3337 10.1333 11.3842 10.2551C11.4346 10.3769 11.5201 10.4811 11.6297 10.5543C11.7393 10.6276 11.8682 10.6667 12.0001 10.6667C12.1769 10.6667 12.3465 10.5964 12.4715 10.4714C12.5965 10.3464 12.6667 10.1768 12.6667 10ZM13.3334 5.33334H11.3334C11.1566 5.33334 10.987 5.40358 10.862 5.52861C10.737 5.65363 10.6667 5.8232 10.6667 6.00001C10.6667 6.17682 10.737 6.34639 10.862 6.47141C10.987 6.59644 11.1566 6.66668 11.3334 6.66668H13.3334C13.5102 6.66668 13.6798 6.73691 13.8048 6.86194C13.9298 6.98696 14.0001 7.15653 14.0001 7.33334V12.6667C14.0001 12.8435 13.9298 13.0131 13.8048 13.1381C13.6798 13.2631 13.5102 13.3333 13.3334 13.3333H2.66675C2.48994 13.3333 2.32037 13.2631 2.19534 13.1381C2.07032 13.0131 2.00008 12.8435 2.00008 12.6667V7.33334C2.00008 7.15653 2.07032 6.98696 2.19534 6.86194C2.32037 6.73691 2.48994 6.66668 2.66675 6.66668H4.66675C4.84356 6.66668 5.01313 6.59644 5.13815 6.47141C5.26318 6.34639 5.33342 6.17682 5.33342 6.00001C5.33342 5.8232 5.26318 5.65363 5.13815 5.52861C5.01313 5.40358 4.84356 5.33334 4.66675 5.33334H2.66675C2.13632 5.33334 1.62761 5.54406 1.25253 5.91913C0.877462 6.2942 0.666748 6.80291 0.666748 7.33334V12.6667C0.666748 13.1971 0.877462 13.7058 1.25253 14.0809C1.62761 14.456 2.13632 14.6667 2.66675 14.6667H13.3334C13.8638 14.6667 14.3726 14.456 14.7476 14.0809C15.1227 13.7058 15.3334 13.1971 15.3334 12.6667V7.33334C15.3334 6.80291 15.1227 6.2942 14.7476 5.91913C14.3726 5.54406 13.8638 5.33334 13.3334 5.33334ZM3.33341 10C3.33341 10.1319 3.37251 10.2608 3.44577 10.3704C3.51902 10.48 3.62314 10.5655 3.74496 10.6159C3.86678 10.6664 4.00082 10.6796 4.13014 10.6539C4.25946 10.6281 4.37825 10.5646 4.47149 10.4714C4.56472 10.3782 4.62821 10.2594 4.65394 10.1301C4.67966 10.0007 4.66646 9.8667 4.616 9.74489C4.56554 9.62307 4.48009 9.51895 4.37046 9.4457C4.26083 9.37244 4.13194 9.33334 4.00008 9.33334C3.82327 9.33334 3.6537 9.40358 3.52868 9.52861C3.40365 9.65363 3.33341 9.8232 3.33341 10Z' fill='%23A19999'/%3E%3C/svg%3E");
}

.toplist-cardplayer__offer-fact.payout:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M13.2599 6.36665C13.2045 6.25671 13.1197 6.16426 13.015 6.09954C12.9103 6.03482 12.7897 6.00036 12.6666 5.99999H9.33324V1.99999C9.3404 1.85378 9.29923 1.70928 9.21609 1.58879C9.13296 1.4683 9.01247 1.37853 8.87324 1.33332C8.73939 1.28928 8.59503 1.28879 8.46088 1.33191C8.32673 1.37503 8.2097 1.45954 8.12657 1.57332L2.79324 8.90665C2.72642 9.00323 2.68629 9.11575 2.67693 9.23282C2.66756 9.34988 2.68929 9.46735 2.73991 9.57332C2.78652 9.69449 2.8675 9.79941 2.9729 9.8752C3.0783 9.95099 3.20354 9.99436 3.33324 9.99999H6.66657V14C6.66668 14.1406 6.71122 14.2775 6.79384 14.3913C6.87645 14.505 6.99292 14.5897 7.12657 14.6333C7.19356 14.6541 7.26313 14.6653 7.33324 14.6667C7.43843 14.6669 7.54219 14.6423 7.63605 14.5948C7.7299 14.5473 7.81118 14.4783 7.87324 14.3933L13.2066 7.05999C13.2784 6.96052 13.3214 6.84316 13.3308 6.72083C13.3402 6.59849 13.3157 6.47594 13.2599 6.36665ZM7.99991 11.9467V9.33332C7.99991 9.15651 7.92967 8.98694 7.80465 8.86192C7.67962 8.73689 7.51005 8.66665 7.33324 8.66665H4.66657L7.99991 4.05332V6.66665C7.99991 6.84347 8.07015 7.01303 8.19517 7.13806C8.32019 7.26308 8.48976 7.33332 8.66657 7.33332H11.3332L7.99991 11.9467Z' fill='%23A19999'/%3E%3C/svg%3E");
}

.toplist-cardplayer__offer-fact:not(:last-child):after {
    width: 1px;
    height: 16px;
    margin-left: 6px;
    content: '';
    border-radius: 4px;
    background: #d0cccc;
}

.toplist-cardplayer__offer-fact-head {
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    flex-shrink: 0;
    margin-right: 4px;
    color: #000;
}

.toplist-cardplayer__offer-fact-body {
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
    color: #000;
}

.toplist-cardplayer__offer-key-features {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.toplist-cardplayer__offer-key-features-item {
    font-family: Arial, sans-serif;
    font-size: 12px !important;
    font-weight: 400;
    font-style: normal;
    line-height: 20px;
    position: relative;
    display: flex;
    padding-left: 28px;
    color: #000;
}

.toplist-cardplayer__offer-key-features-item:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.4' y='0.4' width='19.2' height='19.2' rx='9.6' stroke='%23D0CCCC' stroke-width='0.8'/%3E%3Cpath d='M14.2273 7L8.22727 13L5.5 10.2727' stroke='black' stroke-width='2' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

#middle .toplist-cardplayer__offer-key-features-item:empty:before {
    display: none;
}

.toplist-cardplayer__offer-terms,
.toplist-cardplayer__offer-terms p {
    font-family: Inter, sans-serif;
    font-size: 10px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    margin-bottom: 0;
    color: #a19999;
}

.toplist-cardplayer__show-more-btn {
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    line-height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 100px;
    height: 35px;
    margin: 16px auto 0;
    padding: 14px 17px;
    cursor: pointer;
    text-align: center;
    text-transform: capitalize;
    color: #080000;
    border: 1px solid #080000;
    border-radius: 5px;
}

.toplist-cardplayer__show-more-btn:hover {
    color: #000;
    background: #e8e6e6;
}

@media (max-width: 1024px) {
    .toplist-cardplayer__filter-wrapper {
        overflow-x: scroll;
        flex-wrap: nowrap;
        width: 100vw;
        margin: 0 -16px 16px;
        padding: 0 16px;
    }

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

    .toplist-cardplayer__offer-inner {
        gap: 12px 0;
        grid-auto-flow: unset;
        grid-template-areas:
            'brand rating'
            'logo logo'
            'title title'
            'info info'
            'actions actions';
        grid-template-columns: auto 104px;
        grid-template-rows: 1fr;
    }

    .toplist-cardplayer__offer-logo {
        height: 90px;
    }

    .toplist-cardplayer__brand-name {
        font-size: 14px;
        margin: auto 0;
        padding-left: 0;
    }

    .toplist-cardplayer__offer-title {
        font-size: 24px;
        padding-left: 0;
    }

    .toplist-cardplayer__offer-rating {
        height: unset;
        margin-left: auto;
        padding-left: 0;
        gap: 8px;
    }

    .toplist-cardplayer__offer-actions {
        padding-left: 0;
    }

    .toplist-cardplayer__offer-cta-btn {
        height: 48px;
        padding: 12px 16px;
    }

    #middle .toplist-cardplayer__offer-cta-btn {
        min-height: 48px;
    }

    .toplist-cardplayer__offer-coupon-code-wrapper {
        justify-content: center;
        width: 100%;
        height: 40px;
        margin-left: unset;
        padding: 8px 10px;
    }

    .toplist-cardplayer__offer-coupon-code {
        font-size: 12px;
        line-height: 24px;
    }

    .toplist-cardplayer__offer-facts,
    .toplist-cardplayer__offer-key-features {
        margin-top: 0;
        padding-left: 0;
    }

    .toplist-cardplayer__offer-fact:before {
        margin-right: 4px;
    }

    .toplist-cardplayer__offer-fact-head {
        font-size: 10px;
    }

    .toplist-cardplayer__offer-fact-body {
        font-size: 12px;
    }

    .toplist-cardplayer__show-more-btn {
        padding: 13px 16px;
    }
}
