.d-none {
    display: none !important;
}

/* ========================================
   Poker Sites Wrapper
   ======================================== */
.poker-sites-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .poker-sites-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Poker Filters
   ======================================== */
.poker-post-tab-container {
    display: flex;
    flex-direction: row-reverse;
	gap: 50px;
}
.pk-poker-listgridwrap .poker-post-tabs {overflow: initial;}
.poker-filters {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0;
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
	width: 30%;
}

.poker-filters__header {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.poker-filters__title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.poker-filters__body {
    padding: 0;
}

/* ========================================
   Filter Group
   ======================================== */
.poker-filter-group {
    border-bottom: 1px solid #e5e7eb;
}

.poker-filter-group:last-child {
    border-bottom: none;
}

.poker-filter-group__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    text-align: left;
    transition: background-color 0.2s;
}

.poker-filter-group__toggle:hover {
    background-color: #f9fafb;
}

.poker-filter-group__label {
    flex: 1;
}

.poker-filter-group__icon {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: #6b7280;
}

.poker-filter-group.is-collapsed .poker-filter-group__icon {
    transform: rotate(-90deg);
}

.poker-filter-group__content {
    padding: 0 20px 16px;
}

/* ========================================
   Filter Select
   ======================================== */
.poker-filter-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    color: #374151;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.2s;
}

.poker-filter-select:hover {
    border-color: #9ca3af;
}

.poker-filter-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* ========================================
   Filter Checkboxes
   ======================================== */
.poker-filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.poker-filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.poker-filter-checkbox--hidden {
    display: none;
}

.poker-filter-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #3b82f6;
}

.poker-filter-checkbox__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    font-size: 14px;
    color: #374151;
}

.poker-filter-checkbox__count {
    margin-left: 8px;
    font-size: 13px;
    color: #9ca3af;
}

.poker-filter-checkbox:hover .poker-filter-checkbox__label {
    color: #111827;
}

/* ========================================
   Show More Button
   ======================================== */
.poker-filter-show-more {
    margin-top: 4px;
    padding: 4px 0;
    background: none;
    border: none;
    color: #3b82f6;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.poker-filter-show-more:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* ========================================
   Poker Post Tabs
   ======================================== */
.poker-post-tabs {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.poker-post-tabs__nav {
    display: flex;
    gap: 8px;
    padding: 16px;
	padding: 0 0 16px 0;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.poker-post-tabs__nav .poker-post-tabs__tab {
    padding: 10px 20px !important;
    background: #fff !important;
    border: 1px solid #d1d5db !important;
    border-radius: 6px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #374151 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    white-space: nowrap !important;
}

.poker-post-tabs__nav .poker-post-tabs__tab:hover, .poker-post-tabs__nav .poker-post-tabs__tab.is-active {
    border-color: #227f98 !important;
    color: #227f98 !important;
}

.poker-post-tabs__nav .poker-post-tabs__tab.is-active {
    background: #227f98 !important;
    border-color: #227f98 !important;
    color: #fff !important;
}

.poker-post-tabs__panels {
    position: relative;
    flex: auto;
}

.poker-post-tabs__panel {
    display: none;
    padding: 24px;
}

.poker-post-tabs__panel.is-active {
    display: block;
}

.poker-post-tabs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

@media (max-width: 768px) {
    .poker-post-tabs__grid {
        grid-template-columns: 1fr;
    }
}

.poker-post-tabs__empty,
.poker-post-tabs__loading,
.poker-post-tabs__error {
    grid-column: 1 / -1;
    padding: 60px 20px;
    text-align: center;
    color: #6b7280;
    font-size: 16px;
}

.poker-post-tabs__loading {
    color: #3b82f6;
}

.poker-post-tabs__error {
    color: #dc2626;
}

/* ========================================
   Poker Post Card
   ======================================== */
.poker-post-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.poker-post-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.poker-post-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.poker-post-card__thumb {
    position: relative;
    padding-bottom: 56.25%;
    background: #f3f4f6;
    overflow: hidden;
}

.poker-post-card__thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poker-post-card__body {
    padding: 16px;
}

.poker-post-card__title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
}

.poker-post-card:hover .poker-post-card__title {
    color: #3b82f6;
}

/* ========================================
   Scrollbar Styling
   ======================================== */
.poker-filters::-webkit-scrollbar {
    width: 6px;
}

.poker-filters::-webkit-scrollbar-track {
    background: #f3f4f6;
}

.poker-filters::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.poker-filters::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* ========================================
   Country Filter Chips
   ======================================== */
.poker-post-country-filter-chip-wrapper {
    padding: 16px;
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.poker-post-country-filter-chip-wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.poker-post-country-filter-chip-wrapper li {
    margin: 0;
}

.poker-country-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #dbeafe;
    border: 1px solid #93c5fd;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 14px;
    color: #1e40af;
}

.poker-country-chip-label {
    font-weight: 500;
}

.poker-country-chip-remove {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    font-size: 18px;
    color: #1e40af;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.poker-country-chip-remove:hover {
    background-color: rgba(30, 64, 175, 0.1);
}

.poker-country-chip-reset-btn {
    background-color: #ef4444;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.poker-country-chip-reset-btn:hover {
    background-color: #dc2626;
}

.poker-country-chip-reset-btn:disabled {
    background-color: #d1d5db;
    cursor: not-allowed;
}

/*** star rating ***/
.star_pattern {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #1e3a5f;
    /* Dark blue background like your image */
    padding: 10px 15px;
    border-radius: 4px;
    width: fit-content;
}

.stars-container {
    position: relative;
    display: inline-block;
    font-size: 24px;
    line-height: 1;
}

.stars-background {
    display: flex;
    gap: 2px;
    color: #4a5568;
    /* Gray unfilled stars */
}

.stars-filled {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    gap: 2px;
    overflow: hidden;
    white-space: nowrap;
    color: #fbbf24;
    /* Gold/yellow filled stars */
}

.star {
    display: inline-block;
}

.rating-value {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-left: 4px;
}

/*
.poker-country-chip-remove {padding: 0 !important;
    height: 20px;
    width: 20px !important;}
.poker-post-tabs__panel {padding-left: 0px;}
.poker-post-card__link, .poker-post-card__link {text-decoration: none !important;}
.poker-post-card__thumb {display: none;}
.poker-post-card__body-logo {background-color: #010c22e6; padding: 25px 15px 0 15px; display: flex;  align-items: center;  justify-content: center;    flex-direction: column; gap: 10px;}
.poker-post-card__body-logo .logo img{height: 60px;  max-width: 200px;
    object-fit: contain;  object-position: center;}
.poker_site_card_title {    font-family: "Inter Tight", Sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0px; color:#fff;}

.poker-post-card__body-logo .start_rating_value { font-family: "Inter Tight", Sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0px; color:#fff;}
.poker-post-card__body-logo .site_network {background-color: #FFCB00;
    margin: 0 0 -12px 0;
    padding: 0px 10px 0px 10px;
    border-radius: 50px 50px 50px 50px;
    text-align: end;
    color: #000;}
    
.poker-post-card__body {padding: 30px 15px;}
.poker-post-card__body-logo .start_div_wrapper {width: 100%; padding-bottom: 10px;    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;}
.poker-post-card__body-logo .start_div_wrapper .star_pattern {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    width: fit-content;
}
.welcome_bonus, .rakeback {font-family: "Inter Tight", Sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0px; color:#555; padding: 10px 0; border-bottom: 1px solid #DFDFDF;display: flex;  justify-content: space-between;}
.welcome_bonus label, .rakeback label {font-weight: 600;font-size: 1rem;line-height: 1.5em;}
.poker-post-card__body ul {padding: 10px 0 0 0; margin: 0; list-style: none;}
.poker-post-card__body ul li {font-family: "Inter Tight", Sans-serif; font-size: 1rem;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0px; color:#555; padding-bottom: 5px;}
.poker-post-card__body ul li:before{content: '✔';
    width: 24px;
    height: 24px;
    display: inline-block !important;
    background: #90EE9050;
    color: #227f98 !important;
    text-align: center;
    border-radius: 50px;
    font-size: 13px;
    margin-right: 10px;
}
.poker-post-card__body .visit_site_button_url{ display: inline-block; vertical-align: top;   background-color: #227f98; text-decoration: none !important;
    font-family: "Inter Tight", Sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.3em;
    color: #fff;
    border-style: none;
    border-radius: 10px 10px 10px 10px;
    padding: 16px 32px 16px 32px;border: 1px solid #227f98 !important;}
.poker-post-card__body .url_link {  display: inline-block; vertical-align: top;   font-size: 1rem;  font-family: "Inter Tight", Sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.3em;
    border-style: none;
    border-radius: 10px 10px 10px 10px;
    padding: 16px 32px 16px 32px;
    background: transparent !important;
    color: #000 !important;
    border: 1px solid #000 !important;text-decoration: none !important;}
.poker-post-card__button_wrapper {margin-top: 20px;}
.poker-post-card__body .poker-post-card__title, .poker-post-card__body .poker-post-card__no, .poker-post-card .poker-post-card__footer {display: none;}

.poker-post-tabs__panels.poker-list .poker-post-tabs__grid{display: block;}
.poker-post-tabs__panels.poker-list .poker-post-card{padding: 25px; display: flex; flex-wrap: wrap; margin-bottom: 25px; }
.poker-post-tabs__panels.poker-list .poker-post-card .poker-post-card__body-logo {width: 22%; padding: 30px 20px; border-radius: 10px;}
.poker-post-tabs__panels.poker-list .poker-post-card .poker-post-card__body {width: 78%; padding: 0 0 0 25px;}
.poker-post-tabs__panels.poker-list .poker-post-card .site_network{display: none;}
.poker-post-tabs__panels.poker-list .poker-post-card__body-logo .start_div_wrapper .star_pattern {background: #DAA5203D;}
.poker-post-tabs__panels.poker-list .poker-post-card__body-logo .start_div_wrapper .stars-container .stars-background span, .poker-post-tabs__panels.poker-list .poker-post-card__body-logo .start_div_wrapper .stars-container .stars-filled span{display: none;}
.poker-post-tabs__panels.poker-list .poker-post-card__body-logo .start_div_wrapper .stars-container .stars-background span:first-child, .poker-post-tabs__panels.poker-list .poker-post-card__body-logo .start_div_wrapper .stars-container .stars-filled span:first-child{display: block;}
.poker-post-tabs__panels.poker-list .poker-post-card__body .poker-post-card__title, .poker-post-tabs__panels.poker-list .poker-post-card__body .poker-post-card__no, .poker-post-tabs__panels.poker-list .poker-post-card .poker-post-card__footer {display: block;}
.poker-post-tabs__panels.poker-list .poker-post-card .poker-post-card__footer {    background-color: #F9FAFB;
    padding: 25px;
    border-top: 1px solid #CECECE; display: flex; justify-content: space-between;    width: calc(100% + 50px);
    margin: 25px -25px -25px -25px;}
.poker-post-tabs__panels.poker-list .poker-post-card__body ul {display: none;}
*/
.poker-country-chip-remove {
    line-height: 0 !important;
    padding: 0 !important;
    height: 20px;
    width: 20px !important;
}
.poker-post-tabs__panels.poker-grid {
        overflow: auto;
        margin-bottom: 30px;
}
.poker-post-tabs__panels.poker-grid .poker-post-tabs__panel {
    padding-left: 0px;
    padding-right: 0;    
}
.poker-post-tabs__panels.poker-grid .poker-post-tabs__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    justify-content: flex-start;
    width: 100%;
}
.poker-post-tabs__panels.poker-grid .poker-post-tabs__grid .poker-post-card {
    width: calc(28% - 16px);
    flex-shrink: 0;
}
.poker-post-card__link,
.poker-post-card__link {
    text-decoration: none !important;
}

.poker-post-card__thumb {
    display: none;
}

.poker-post-card__body-logo {
    background-color: #010c22e6;
    padding: 25px 15px 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.poker-post-card__body-logo .logo img {
    height: 60px;
    max-width: 200px;
    object-fit: contain;
    object-position: center;
}

.poker_site_card_title {
    font-family: "Inter Tight", Sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0px;
    color: #fff;
}

.poker-post-card__body-logo .start_rating_value {
    font-family: "Inter Tight", Sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0px;
    color: #fff;
}

.poker-post-card__body-logo .site_network {
    background-color: #FFCB00;
    margin: 0 0 -12px 0;
    padding: 0px 10px 0px 10px;
    border-radius: 50px 50px 50px 50px;
    text-align: end;
    color: #000;
}

.site_network.listview {
    display: none;
}

.poker-post-card__body {
    padding: 30px 15px;
}

.poker-post-card__body-logo .start_div_wrapper {
    width: 100%;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.poker-post-card__body-logo .start_div_wrapper .star_pattern {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    width: fit-content;
}

.welcome_bonus,
.rakeback {
    font-family: "Inter Tight", Sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5em;
    letter-spacing: 0px;
    color: #555;
    padding: 10px 0;
    border-bottom: 1px solid #DFDFDF;
    display: flex;
    justify-content: space-between;
}

.rakeback {
    color: #227f98;
}

.welcome_bonus label,
.rakeback label {
    color: #555;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5em;
}

.poker-post-card__body ul {
    padding: 10px 0 0 0;
    margin: 0;
    list-style: none;
}

.poker-post-card__body ul li {
    font-family: "Inter Tight", Sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0px;
    color: #555;
    padding-bottom: 5px;
}

.poker-post-card__body ul li:before {
    content: '✔';
    width: 24px;
    height: 24px;
    display: inline-block !important;
    background: #90EE9050;
    color: #227f98 !important;
    text-align: center;
    border-radius: 50px;
    font-size: 13px;
    margin-right: 10px;
}

.poker-post-card__button_wrapper {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
.pk-poker-listgridwrap .poker-posts-header .poker-posts-count {margin-bottom: 15px;}

.poker-post-card__body .visit_site_button_url {
    display: inline-block;
    vertical-align: top;
    background-color: #227f98;
    text-decoration: none !important;
    font-family: "Inter Tight", Sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.3em;
    color: #fff;
    border-style: none;
    border-radius: 10px 10px 10px 10px;
    padding: 16px 32px 16px 32px;
    border: 1px solid #227f98 !important;
    flex-grow: 1;
    text-align: center;    transition: all .3s;
}
.poker-post-card__body .visit_site_button_url:hover {
	background-color: #1c6a7f;
}
.poker-post-card__body .url_link {
    display: inline-block;
    vertical-align: top;
    font-size: 1rem;
    font-family: "Inter Tight", Sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.3em;
    border-style: none;
    border-radius: 10px 10px 10px 10px;
    padding: 16px 32px 16px 32px;
    background: transparent !important;
    color: #000 !important;
    border: 1px solid #000 !important;
    text-decoration: none !important;
    flex-grow: 1;
    text-align: center;
}

.poker-post-card__button_wrapper {
    margin-top: 20px;
}

.poker-post-card__body .poker-post-card__title,
.poker-post-card__body .poker-post-card__no,
.poker-post-card .poker-post-card__footer {
    display: none;
}

.poker-post-card__body .poker-post-card__title {
    font-family: "Inter Tight", Sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5em;
    letter-spacing: 0px;
}

/* list view */
.poker-post-tabs__panels.poker-list {width: 70%;}
.poker-post-tabs__panels.poker-list .poker-post-tabs__panel {
    padding-left: 0px;
	padding-right: 0px;
}

.poker-post-tabs__panels.poker-list .poker-post-tabs__grid {
    display: block;
}

.poker-post-tabs__panels.poker-list .poker-post-card {
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.poker-post-tabs__panels.poker-list .poker-post-card .poker-post-card__body-logo {
    width: 22%;
    padding: 30px 20px;
    border-radius: 10px;
}

.poker-post-tabs__panels.poker-list .poker-post-card .poker-post-card__body {
    width: 78%;
    padding: 0 0 0 25px;
}

.poker-post-tabs__panels.poker-list .poker-post-card__body .poker-post-card__title {
    width: 100%;
}

.poker-post-tabs__panels.poker-list .poker-post-card .site_network {
    display: none;
}

.poker-post-tabs__panels.poker-list .site_network.listview {
    display: block;
    margin-bottom: 10px;
    font-family: "Inter Tight", Sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0px;
    color: #555;
}

.poker-post-tabs__panels.poker-list .poker-post-card__body-logo .start_div_wrapper {
    margin-top: 10px;
    width: fit-content;
    background: rgba(218, 165, 32, 0.2392156863);
    padding: 8px;
    border-radius: 6px;
}

.poker-post-tabs__panels.poker-list .poker-post-card__body-logo .start_div_wrapper .star_pattern {
    background: transparent;
}

.poker-post-tabs__panels.poker-list .poker-post-card__body-logo .start_div_wrapper .stars-container .stars-background span,
.poker-post-tabs__panels.poker-list .poker-post-card__body-logo .start_div_wrapper .stars-container .stars-filled span {
    display: none;
}

.poker-post-tabs__panels.poker-list .poker-post-card__body-logo .start_div_wrapper .stars-container .stars-background span:first-child,
.poker-post-tabs__panels.poker-list .poker-post-card__body-logo .start_div_wrapper .stars-container .stars-filled span:first-child {
    display: block;
}

.poker-post-tabs__panels.poker-list .poker-post-card__body .poker-post-card__title,
.poker-post-tabs__panels.poker-list .poker-post-card__body .poker-post-card__no,
.poker-post-tabs__panels.poker-list .poker-post-card .poker-post-card__footer {
    display: block;
}

.poker-post-tabs__panels.poker-list .poker-post-card .poker-post-card__footer {
    background-color: #F9FAFB;
    padding: 25px;
    border-top: 1px solid #CECECE;
    display: flex;
    justify-content: space-between;
    width: calc(100% + 50px);
    margin: 25px -25px -25px -25px;
}

.poker-post-tabs__panels.poker-list .poker-post-card .poker-post-card__footer .best_fact {
    font-family: "Inter Tight", Sans-serif;
    position: relative;
    font-size: 1rem;
    font-weight: 400;
    line-height: 18px;
    padding-left: 25px;
}

.poker-post-tabs__panels.poker-list .poker-post-card .poker-post-card__footer .best_fact:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    margin-right: 5px;
    display: inline-block;
    background: url("data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUxMiAxNzYuMDAxQzUxMiAyNzMuMjAzIDQzMy4yMDIgMzUyIDMzNiAzNTJjLTExLjIyIDAtMjIuMTktMS4wNjItMzIuODI3LTMuMDY5bC0yNC4wMTIgMjcuMDE0QTIzLjk5OSAyMy45OTkgMCAwIDEgMjYxLjIyMyAzODRIMjI0djQwYzAgMTMuMjU1LTEwLjc0NSAyNC0yNCAyNGgtNDB2NDBjMCAxMy4yNTUtMTAuNzQ1IDI0LTI0IDI0SDI0Yy0xMy4yNTUgMC0yNC0xMC43NDUtMjQtMjR2LTc4LjA1OWMwLTYuMzY1IDIuNTI5LTEyLjQ3IDcuMDI5LTE2Ljk3MWwxNjEuODAyLTE2MS44MDJDMTYzLjEwOCAyMTMuODE0IDE2MCAxOTUuMjcxIDE2MCAxNzYgMTYwIDc4Ljc5OCAyMzguNzk3LjAwMSAzMzUuOTk5IDAgNDMzLjQ4OC0uMDAxIDUxMiA3OC41MTEgNTEyIDE3Ni4wMDF6TTMzNiAxMjhjMCAyNi41MSAyMS40OSA0OCA0OCA0OHM0OC0yMS40OSA0OC00OC0yMS40OS00OC00OC00OC00OCAyMS40OS00OCA0OHoiIGZpbGw9IiMyMjdmOTgiPjwvcGF0aD48L3N2Zz4=");
}

.poker-post-tabs__panels.poker-list .poker-post-card .poker-post-card__footer .gambleware a {
    font-family: "Inter", Sans-serif;
    font-weight: 500;
    font-family: "Inter Tight", Sans-serif;
    font-size: 1rem;
    line-height: 1.5em;
    letter-spacing: 0px;
    padding: 2px 8px 2px 8px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #CECECE;
    border-radius: 5px 5px 5px 5px;
    text-decoration: none;
    color: #227f98;
}

.poker-post-tabs__panels.poker-list .poker-post-card .poker-post-card__footer .gambleware a:hover {
    color: #000;
}

.poker-post-tabs__panels.poker-list .poker-post-card__body ul {
    display: none;
}

.poker-post-tabs__panels.poker-list .poker-post-card__body-logo .logo img {
    height: 80px;
    max-width: 80px;
}

/* .poker-post-tabs__panels.poker-list .poker-post-card__body .poker-post-card__no {
    display: none;
} */

.poker-post-tabs__panels.poker-list .welcome_bonus,
.poker-post-tabs__panels.poker-list .rakeback {
    width: 50%;
    border-top: 1px solid #DFDFDF;
    padding-left: 40px;
    position: relative;
    font-weight: 400;
}

.poker-post-tabs__panels.poker-list .welcome_bonus:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    height: 30px;
    width: 30px;
    display: block;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MDBweCIgaGVpZ2h0PSI4MDBweCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIj48cGF0aCBkPSJNMTIgN1YyME0xMiA3SDguNDY0MjlDNy45NDMzMiA3IDcuNDQzNyA2Ljc4OTI5IDcuMDc1MzMgNi40MTQyMUM2LjcwNjk1IDYuMDM5MTQgNi41IDUuNTMwNDMgNi41IDVDNi41IDQuNDY5NTcgNi43MDY5NSAzLjk2MDg2IDcuMDc1MzMgMy41ODU3OUM3LjQ0MzcgMy4yMTA3MSA3Ljk0MzMyIDMgOC40NjQyOSAzQzExLjIxNDMgMyAxMiA3IDEyIDdaTTEyIDdIMTUuNTM1N0MxNi4wNTY3IDcgMTYuNTU2MyA2Ljc4OTI5IDE2LjkyNDcgNi40MTQyMUMxNy4yOTMgNi4wMzkxNCAxNy41IDUuNTMwNDMgMTcuNSA1QzE3LjUgNC40Njk1NyAxNy4yOTMgMy45NjA4NiAxNi45MjQ3IDMuNTg1NzlDMTYuNTU2MyAzLjIxMDcxIDE2LjA1NjcgMyAxNS41MzU3IDNDMTIuNzg1NyAzIDEyIDcgMTIgN1pNNSAxMkgxOVYxNy44QzE5IDE4LjkyMDEgMTkgMTkuNDgwMiAxOC43ODIgMTkuOTA4QzE4LjU5MDMgMjAuMjg0MyAxOC4yODQzIDIwLjU5MDMgMTcuOTA4IDIwLjc4MkMxNy40ODAyIDIxIDE2LjkyMDEgMjEgMTUuOCAyMUg4LjJDNy4wNzk4OSAyMSA2LjUxOTg0IDIxIDYuMDkyMDIgMjAuNzgyQzUuNzE1NjkgMjAuNTkwMyA1LjQwOTczIDIwLjI4NDMgNS4yMTc5OSAxOS45MDhDNSAxOS40ODAyIDUgMTguOTIwMSA1IDE3LjhWMTJaTTQuNiAxMkgxOS40QzE5Ljk2MDEgMTIgMjAuMjQwMSAxMiAyMC40NTQgMTEuODkxQzIwLjY0MjIgMTEuNzk1MSAyMC43OTUxIDExLjY0MjIgMjAuODkxIDExLjQ1NEMyMSAxMS4yNDAxIDIxIDEwLjk2MDEgMjEgMTAuNFY4LjZDMjEgOC4wMzk5NSAyMSA3Ljc1OTkyIDIwLjg5MSA3LjU0NjAxQzIwLjc5NTEgNy4zNTc4NSAyMC42NDIyIDcuMjA0ODcgMjAuNDU0IDcuMTA4OTlDMjAuMjQwMSA3IDE5Ljk2MDEgNyAxOS40IDdINC42QzQuMDM5OTUgNyAzLjc1OTkyIDcgMy41NDYwMSA3LjEwODk5QzMuMzU3ODUgNy4yMDQ4NyAzLjIwNDg3IDcuMzU3ODUgMy4xMDg5OSA3LjU0NjAxQzMgNy43NTk5MiAzIDguMDM5OTUgMyA4LjZWMTAuNEMzIDEwLjk2MDEgMyAxMS4yNDAxIDMuMTA4OTkgMTEuNDU0QzMuMjA0ODcgMTEuNjQyMiAzLjM1Nzg1IDExLjc5NTEgMy41NDYwMSAxMS44OTFDMy43NTk5MiAxMiA0LjAzOTk1IDEyIDQuNiAxMloiIHN0cm9rZT0iIzAwMDAwMCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjwvcGF0aD48L3N2Zz4=");
    background-size: cover;
}

.poker-post-tabs__panels.poker-list .rakeback:before {
    content: "";
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    height: 30px;
    width: 30px;
    display: block;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MDBweCIgaGVpZ2h0PSI4MDBweCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIj48cGF0aCBkPSJNNSAxOUwxOSA1TTkgN0M5IDguMTA0NTcgOC4xMDQ1NyA5IDcgOUM1Ljg5NTQzIDkgNSA4LjEwNDU3IDUgN0M1IDUuODk1NDMgNS44OTU0MyA1IDcgNUM4LjEwNDU3IDUgOSA1Ljg5NTQzIDkgN1pNMTkgMTdDMTkgMTguMTA0NiAxOC4xMDQ2IDE5IDE3IDE5QzE1Ljg5NTQgMTkgMTUgMTguMTA0NiAxNSAxN0MxNSAxNS44OTU0IDE1Ljg5NTQgMTUgMTcgMTVDMTguMTA0NiAxNSAxOSAxNS44OTU0IDE5IDE3WiIgc3Ryb2tlPSIjMDAwMDAwIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+PC9wYXRoPjwvc3ZnPg==");
    background-size: cover;
}

.poker-post-tabs__panels.poker-list .welcome_bonus,
.poker-post-tabs__panels.poker-list .rakeback {
    flex-wrap: wrap;
}

.poker-post-tabs__panels.poker-list .welcome_bonus label,
.poker-post-tabs__panels.poker-list .rakeback label {
    width: 100%;
}

.poker-post-tabs__panels.poker-list .poker-post-card__body .visit_site_button_url,
.poker-post-tabs__panels.poker-list .poker-post-card__body .url_link {
    flex-grow: inherit;
}

.poker-post-tabs__panels.poker-list .poker-post-card__body .url_link {
    padding: 0;
    border: none !important;
    border-radius: 0;
    color: #227f98 !important;
}

.poker-post-tabs__panels.poker-list .poker-post-card__body .url_link:after {
    content: "";
    height: 18px;
    width: 18px;
    background: url("data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik0yNTYgOGMxMzcgMCAyNDggMTExIDI0OCAyNDhTMzkzIDUwNCAyNTYgNTA0IDggMzkzIDggMjU2IDExOSA4IDI1NiA4em0tMjguOSAxNDMuNmw3NS41IDcyLjRIMTIwYy0xMy4zIDAtMjQgMTAuNy0yNCAyNHYxNmMwIDEzLjMgMTAuNyAyNCAyNCAyNGgxODIuNmwtNzUuNSA3Mi40Yy05LjcgOS4zLTkuOSAyNC44LS40IDM0LjNsMTEgMTAuOWM5LjQgOS40IDI0LjYgOS40IDMzLjkgMEw0MDQuMyAyNzNjOS40LTkuNCA5LjQtMjQuNiAwLTMzLjlMMjcxLjYgMTA2LjNjLTkuNC05LjQtMjQuNi05LjQtMzMuOSAwbC0xMSAxMC45Yy05LjUgOS42LTkuMyAyNS4xLjQgMzQuNHoiIGZpbGw9IiMyMjdmOTgiPjwvcGF0aD48L3N2Zz4=");
    background-size: cover;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.poker-post-tabs__panels.poker-list .poker-post-card__button_wrapper {
    justify-content: inherit;
    align-items: center;
}

.poker-post-tabs__panels.poker-list .poker_wrbonus {
    display: flex;
    flex-wrap: wrap;
}


.poker-filters {
    margin-top: 24px;
	margin-bottom: 25px;
}

.poker-filters .poker-filters__header {
    padding: 15px;
    border-bottom: 1px solid #e5e7eb;
    border: none !important;
}

.poker-filters .poker-filters__header h3 {
    font-family: "Inter Tight", Sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2em;
    letter-spacing: 0px;
}

.poker-filters .poker-filter-group .poker-filter-group__toggle {
    width: 100%;
    color: #000;
    text-align: left;
    border-radius: 0;
    background: transparent;
    display: flex;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5em;
    justify-content: space-between;
    padding: 10px 15px;
}

.poker-filter-group__content {
    padding: 0 15px 15px;
}

.poker-filters button.poker-filter-show-more {
    padding: 0;
    text-align: left;
    color: #227f98;
    background: transparent;
    font-size: 0.9rem;
    line-height: 1.5em;
    text-decoration: underline;
    font-family: "Inter", Sans-serif;
    font-weight: 500;
    letter-spacing: 0px;
}
.poker-country-chip.poker-country-chip-reset {background: #c6c6c6;  color: #000;  border: 1px solid #727272;}
.poker-country-chip.poker-country-chip-reset  button{background: #727272;color: #000;}

/** 13-02-2026 **/
.poker-post-default-country-wrapper ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
   /* background-color: #1d2538;*/
}

.poker-post-default-country-wrapper ul li {
    /* background-color: #99A1AF1F; */
    padding: 15px;
}
.poker-post-default-country-wrapper ul li:hover {
	background-color: #99A1AF1F;
}

.poker-post-default-country-wrapper ul li+li {
    border-top: 1px solid #fff;
}

.poker-post-default-country-wrapper ul li>div {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.poker-post-default-country-wrapper .poker-site-list-col.left {
    display: flex;
    justify-content: center;
    align-items: center;
	width: 60px;
    height: 60px;
    background: #000;
    border-radius: 5px;
}

.poker-post-default-country-wrapper .poker-site-list-col.left img {
    width: 70px;
}

.poker-post-default-country-wrapper .poker-site-list-col.middle .poker_site_card_title {
    font-weight: 500;
}

.poker-post-default-country-wrapper .poker-site-list-col.right {
    margin-left: auto;
}

.poker-post-default-country-wrapper .poker-site-list-col.right .welcome_bonus,
.poker-post-default-country-wrapper .poker-site-list-col.right .rakeback {
    border: 0;
    padding: 0;
    color: #ffffff;
    font-size: 14px;
}

.poker-post-default-country-wrapper .poker-site-list-col.right .rakeback,
.poker-post-default-country-wrapper .poker-site-list-col.right .rakeback label {
    font-family: "Metrophobic", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--e-global-color-33d7934);
}

.poker-post-default-country-wrapper .poker-site-list-col.right .welcome_bonus label {
    color: #ffffff;
    line-height: 19px;
    padding-right: 4px;
}

.poker-post-default-country-wrapper .poker-site-list-col.right .poker_wrbonus {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: flex-end;
}

.poker-post-default-country-wrapper .poker-site-list-col .star_pattern {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

.poker-post-default-country-wrapper .poker-site-list-col .stars-container {
    font-size: 16px;
}

.poker-post-default-country-wrapper .poker-site-list-col .start_rating_value {
    display: none;
}

.poker-posts-footer .poker-show-more {
    font-weight: 500;
}

.poker-posts-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.poker-post-tabs__panels.poker-grid .poker-post-tabs__grid .poker-posts-footer, .poker-post-tabs__panels.poker-grid .poker-posts-header{
    display: none;
}

@media (max-width: 1024px) {
    .poker-post-tabs__panels.poker-list .poker-post-card .poker-post-card__body-logo {
        width: 100%;
    }

    .poker-post-tabs__panels.poker-list .poker-post-card .poker-post-card__body {
        width: 100%;
        padding: 25px 0 0 0;
    }

    .poker-post-tab-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .poker-filters {
        width: 100%;
    }

    .poker-post-tabs__panels.poker-list {
        width: 100%;
    }

    .poker-post-tabs__panels.poker-list .poker-post-tabs__panel {
        padding-right: 0px;
    }
    .poker-post-tabs__panels.poker-grid .poker-post-tabs__grid .poker-post-card {
        width: calc(50% - 16px);
    }
	.poker-filters {position: relative; top: 0;}
	.poker-post-tab-container {gap: 0;}
}

@media(max-width: 991px) {
    .poker-post-default-country-wrapper .poker-site-list-col.left img {
        width: 56px;
    }
}

@media (max-width: 767px) {
    .poker-post-tabs__panels.poker-list .poker-post-card {
        padding: 10px;
    }

    .poker-post-tabs__panels.poker-list .poker-post-card .poker-post-card__footer {
        padding: 10px;
        width: calc(100% + 20px);
        margin: 20px -10px -10px -10px;
    }

    .poker-post-tabs__panels.poker-list .poker-post-card * {
        font-size: 14px !important;
    }

    .poker-post-tabs__panels.poker-list .welcome_bonus:before,
    .poker-post-tabs__panels.poker-list .rakeback:before {
        height: 16px;
        width: 16px;
    }

    .poker-post-tabs__panels.poker-list .welcome_bonus,
    .poker-post-tabs__panels.poker-list .rakeback {
        padding-left: 20px;
    }

    .poker-post-card__body .visit_site_button_url {
        padding: 14px;
    }

    .poker-post-tabs__panels.poker-list .poker-post-card .poker-post-card__footer .gambleware a {
        font-size: 12px !important;
    }

    .poker-post-tabs__panels.poker-list .poker-post-card .poker-post-card__footer .best_fact:before {
        height: 12px;
        width: 12px;
    }

    .poker-post-tabs__panels.poker-list .poker-post-card .poker-post-card__footer .best_fact {
        padding-left: 16px;
    }
	.poker-post-tabs__panels.poker-grid .poker-post-tabs__grid {gap: 15px;}
    .poker-post-tabs__panels.poker-grid .poker-post-tabs__grid .poker-post-card {
        width: calc(96% - 16px);
    }
    .poker-post-default-country-wrapper ul li {
        padding: 10px;
    }

    .poker-post-default-country-wrapper .poker-site-list-col.left img {
        width: 45px;
    }

    .poker-post-default-country-wrapper .poker-site-list-col.middle .poker_site_card_title {
        font-size: 14px;
    }

    .poker-post-default-country-wrapper .poker-site-list-col .stars-container,
    .poker-post-default-country-wrapper .poker-site-list-col.right .welcome_bonus label {
        font-size: 14px;
    }

    .poker-post-default-country-wrapper .poker-site-list-col.right .rakeback,
    .poker-post-default-country-wrapper .poker-site-list-col.right .rakeback label {
        font-size: 12px;
    }

    .poker-post-default-country-wrapper ul li>div {
        gap: 10px;
    }

    .poker-post-default-country-wrapper .poker-site-list-col.right .welcome_bonus label {
        padding-right: 2px;
    }

    .poker-posts-footer .poker-show-more {
        padding: 14px;
        font-weight: 500;
    }

    .poker-posts-footer {
        gap: 10px;
    }

    .poker-posts-footer .poker-posts-count {
        font-size: 13px;
    }
}