.rankings {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 16px;
  padding-bottom: 40px;
  background: none !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0;
}
.rankings .ranking-title {
  font-size: var(--font-size-xl);
  line-height: 30px;
  margin: 0 0 var(--margin-2x) 0;
}
.rankings .bonuses {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: calc(var(--bonus-count, 1) * 280px + (var(--bonus-count, 1) - 1) * 8px);
  contain: layout style;
}
@media (min-width: 768px) {
  .rankings .bonuses {
    min-height: calc(var(--bonus-count, 1) * 120px + (var(--bonus-count, 1) - 1) * 8px);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .rankings .bonuses {
    min-height: calc(var(--bonus-count, 1) * 180px + (var(--bonus-count, 1) - 1) * 8px);
  }
}
.rankings .bonuses.active {
  min-height: auto;
}
.rankings .bonuses .bonus {
  position: relative;
  font-size: var(--font-size-s);
  line-height: var(--line-height-small);
  border-radius: var(--ranking-table-border-radius-size);
  border: solid 1px var(--ranking-table-border-color);
  min-width: auto;
  padding: initial;
  grid-auto-columns: 1fr;
  grid-template-columns: 40px 96px 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas: "label label label" "bonus-date bonus-date bonus-date" "position product-img operator" "bonus-info bonus-info bonus-info" "facts facts facts" "btn-link btn-link btn-link" "divider divider divider" "bonus-details bonus-details bonus-details" "product-bonus-details product-bonus-details product-bonus-details" "legal-disclaimer legal-disclaimer legal-disclaimer" "toggle-action toggle-action toggle-action" "product-togle product-togle product-togle";
  /* From Verticals.scss */
  box-shadow: var(--ranking-table-box-shadow);
}
@media (min-width: 768px) {
  .rankings .bonuses .bonus {
    grid-auto-columns: 1fr;
    grid-template-columns: 40px 96px 125px auto min-content;
    grid-template-rows: min-content;
    gap: 0;
    grid-template-areas: "label label label label label" "bonus-date bonus-date bonus-date bonus-date bonus-date" "position product-img operator bonus-info btn-link" "divider divider divider divider divider" "bonus-details bonus-details bonus-details bonus-details bonus-details" "product-bonus-details product-bonus-details product-bonus-details product-bonus-details product-bonus-details" "legal-disclaimer legal-disclaimer legal-disclaimer legal-disclaimer legal-disclaimer" "toggle-action toggle-action toggle-action toggle-action toggle-action" "product-togle product-togle product-togle product-togle product-togle";
  }
}
.rankings .bonuses .bonus:nth-child(1), .rankings .bonuses .bonus:nth-child(2), .rankings .bonuses .bonus:nth-child(3) {
  border-color: var(--ranking-table-border-color);
}
.rankings .bonuses .bonus.empty {
  border-bottom-left-radius: var(--ranking-table-border-radius-size);
  border-bottom-right-radius: var(--ranking-table-border-radius-size);
}
.rankings .bonuses .bonus .facts {
  grid-area: facts;
  flex-grow: 1;
  flex-wrap: wrap;
  padding: var(--padding-2x);
  gap: 8px;
}
@media (min-width: 768px) {
  .rankings .bonuses .bonus .facts {
    padding: var(--padding-2x) 0;
  }
}
.rankings .bonuses .bonus .facts ul.k-pros-cons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 0px !important;
}
.rankings .bonuses .bonus .facts ul.k-pros-cons li {
  font-size: var(--font-size-m);
  line-height: var(--line-height-small);
  position: relative;
  padding-left: var(--padding-3x);
  margin-bottom: 0px;
}
.rankings .bonuses .bonus .facts ul.k-pros-cons li:before {
  display: inline-block;
  width: 14px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 0;
  font-family: "kaffiliate-font";
  font-size: 17px;
  margin: 0;
  background-color: transparent;
  border-radius: 0;
  content: "\e90c";
  color: var(--ranking-table-pros-color);
  transform: rotate(180deg);
}
.rankings .bonuses .bonus .facts ul.k-pros-cons.k-cons li:before {
  content: "\e90c";
  color: var(--ranking-table-cons-color);
  transform: rotate(0deg);
  margin-left: -4px;
}
.rankings .bonuses .bonus .position {
  grid-area: position;
  padding-left: var(--padding-2x);
  font-size: var(--font-size-m);
  line-height: var(--line-height-standard);
  color: #0f333d;
  padding-top: 44px;
}
.rankings .bonuses .bonus .position div {
  padding: 1.5px 0;
  font-size: var(--font-size-m);
  line-height: var(--line-height-standard);
  width: 24px;
  /** From verticals.scss **/
  background: var(--ranking-table-number-bg-color);
  color: var(--ranking-table-number-color);
}
.rankings .bonuses .bonus .bonus-label {
  grid-area: label;
  font-weight: 500;
  font-size: var(--font-size-s);
  line-height: var(--line-height-small);
  padding: 2px 0;
  color: #fff;
  text-transform: uppercase;
}
.rankings .bonuses .bonus .bonus-date {
  grid-area: bonus-date;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  justify-content: space-between;
  margin-bottom: 8px;
}
.rankings .bonuses .bonus .bonus-date .bonus-date-text {
  font-family: var(--font-family-primary);
  font-size: 12px;
  line-height: 16px;
  font-weight: bold;
  color: #0F172B;
  margin: 0 !important;
  display: flex;
  align-items: center;
  gap: 3px;
}
.rankings .bonuses .bonus .bonus-date .bonus-date-text::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/verified-image.svg");
}
.rankings .bonuses .bonus .bonus-info {
  gap: 10px;
  grid-area: bonus-info;
  font-weight: 400;
  font-size: var(--font-size-m);
  line-height: var(--line-height-small);
  color: var(--paragraph-color);
  padding: var(--padding-2x);
}
.rankings .bonuses .bonus .bonus-details {
  grid-area: bonus-details;
  font-weight: 400;
  font-size: var(--font-size-m);
  line-height: var(--line-height-small);
  color: var(--paragraph-color);
  margin: 0px;
}
.rankings .bonuses .bonus .bonus-details:not(.top) {
  padding: var(--padding-2x);
}
.rankings .bonuses .bonus .product-bonus-details {
  grid-area: product-bonus-details;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: min-content;
  grid-template-areas: "payment-methods payment-methods" "minimum-deposit withdraw-time" "licenses product-apps";
}
@media (min-width: 768px) {
  .rankings .bonuses .bonus .product-bonus-details {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: min-content;
    grid-template-areas: "payment-methods minimum-deposit withdraw-time licenses product-apps";
  }
}
.rankings .bonuses .bonus .product-bonus-details.toggleable-cell {
  display: none;
}
.rankings .bonuses .bonus .product-bonus-details .payment-methods {
  grid-area: payment-methods;
  padding: 0 var(--padding-2x) var(--padding-2x);
}
@media (min-width: 768px) {
  .rankings .bonuses .bonus .product-bonus-details .payment-methods {
    width: 304px;
  }
}
.rankings .bonuses .bonus .product-bonus-details .payment-icons {
  display: flex;
  gap: var(--margin-1x);
}
.rankings .bonuses .bonus .product-bonus-details .payment-icon-holder {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  height: 36px;
  width: 60px;
  display: inline-block;
}
.rankings .bonuses .bonus .product-bonus-details .payment-icon-holder:nth-child(odd) {
  margin-left: 0;
}
.rankings .bonuses .bonus .product-bonus-details .payment-icon-holder:nth-child(even) {
  margin-left: 0;
}
@media (min-width: 768px) {
  .rankings .bonuses .bonus .product-bonus-details .payment-icon-holder:nth-child(3n) {
    margin-right: 0;
  }
}
.rankings .bonuses .bonus .product-bonus-details .payment-icon-holder img.payment-icon {
  box-shadow: none;
  margin: 0;
  border-radius: 0;
  height: auto;
  width: auto;
  max-height: 100%;
  max-width: 60px;
}
.rankings .bonuses .bonus .ranking-image-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 49px;
  z-index: 10;
}
.rankings .bonuses .bonus .ranking-image-ribbon img {
  width: 100%;
  height: 100%;
  display: block;
}
.rankings .bonuses .bonus .product-img {
  grid-area: product-img;
  padding: var(--padding-2x) var(--padding-1x) 0;
  max-width: 96px;
}
.rankings .bonuses .bonus .product-img .product-rating {
  line-height: 1;
}
.rankings .bonuses .bonus .product-img img {
  max-width: 80px;
  height: 80px;
  border-radius: 4px;
}
.rankings .bonuses .bonus .product-img i:last-child {
  margin-right: 0;
}
.rankings .bonuses .bonus .divider {
  grid-area: divider;
  height: 1px;
  padding: var(--padding-2x) var(--padding-2x) 0;
  display: none;
}
.rankings .bonuses .bonus .divider:after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  /* From verticals.scss */
  background: var(--ranking-table-divider-bg);
}
@media (min-width: 768px) {
  .rankings .bonuses .bonus .divider {
    display: block;
  }
}
.rankings .bonuses .bonus .minimum-deposit,
.rankings .bonuses .bonus .app-availability,
.rankings .bonuses .bonus .withdraw-time,
.rankings .bonuses .bonus .licenses {
  padding: 0 var(--padding-2x) var(--padding-2x);
  width: 50%;
}
@media (min-width: 768px) {
  .rankings .bonuses .bonus .minimum-deposit,
  .rankings .bonuses .bonus .app-availability,
  .rankings .bonuses .bonus .withdraw-time,
  .rankings .bonuses .bonus .licenses {
    width: auto;
  }
}
.rankings .bonuses .bonus.opened {
  box-shadow: var(--ranking-table-box-shadow-open);
}
.rankings .bonuses .bonus.opened .toggleable-cell {
  display: grid;
}
.rankings .bonuses .bonus.opened .bonus-details {
  display: block;
}
.rankings .bonuses .bonus.opened .toggle-action .close {
  display: grid;
}
.rankings .bonuses .bonus.opened .toggle-action .open {
  display: none;
}
.rankings .bonuses .bonus:nth-child(1), .rankings .bonuses .bonus:nth-child(2), .rankings .bonuses .bonus:nth-child(3) {
  border-color: var(--ranking-table-border-color);
}
.rankings .bonuses .bonus:nth-child(1) .position div, .rankings .bonuses .bonus:nth-child(2) .position div, .rankings .bonuses .bonus:nth-child(3) .position div {
  background: var(--ranking-table-border-color);
}
.rankings .bonuses .bonus.new-casino {
  border: solid 2px var(--ranking-table-new-casino-bg-color);
}
.rankings .bonuses .bonus.new-casino .label-col {
  background: var(--ranking-table-new-casino-bg-color);
}
.rankings .bonuses .bonus.new-casino .position div {
  background: var(--ranking-table-new-casino-bg-color);
  color: #fff;
}
.rankings .bonuses .bonus.new-casino .toggle-action-sc .toggle-sc .circle {
  border: solid 2px var(--ranking-table-new-casino-bg-color);
}
.rankings .bonuses .bonus.exclusive-promotion {
  border: solid 2px var(--ranking-table-exclusive-promotion-bg-color);
}
.rankings .bonuses .bonus.exclusive-promotion .label-col {
  background: var(--ranking-table-exclusive-promotion-bg-color);
}
.rankings .bonuses .bonus.exclusive-promotion .position div {
  background: var(--ranking-table-exclusive-promotion-bg-color);
  color: #fff;
}
.rankings .bonuses .bonus.exclusive-promotion .toggle-action-sc .toggle-sc .circle {
  border: solid 2px var(--ranking-table-exclusive-promotion-bg-color);
}
.rankings .bonuses .bonus.custom-label-purple {
  border: solid 2px var(--ranking-table-custom-label-purple-bg-color);
}
.rankings .bonuses .bonus.custom-label-purple .label-col {
  background: var(--ranking-table-custom-label-purple-bg-color);
}
.rankings .bonuses .bonus.custom-label-purple .position div {
  background: var(--ranking-table-custom-label-purple-bg-color);
  color: #fff;
}
.rankings .bonuses .bonus.custom-label-purple .toggle-action-sc .toggle-sc .circle {
  border: solid 2px var(--ranking-table-custom-label-purple-bg-color);
}
.rankings .bonuses .bonus.custom-label-green {
  border: solid 2px var(--ranking-table-custom-label-green-bg-color);
}
.rankings .bonuses .bonus.custom-label-green .label-col {
  background: var(--ranking-table-custom-label-green-bg-color);
}
.rankings .bonuses .bonus.custom-label-green .position div {
  background: var(--ranking-table-custom-label-green-bg-color);
  color: #fff;
}
.rankings .bonuses .bonus.custom-label-green .toggle-action-sc .toggle-sc .circle {
  border: solid 2px var(--ranking-table-custom-label-green-bg-color);
}
.rankings .bonuses .bonus.custom-label-orange {
  border: solid 2px var(--ranking-table-custom-label-orange-bg-color);
}
.rankings .bonuses .bonus.custom-label-orange .label-col {
  background: var(--ranking-table-custom-label-orange-bg-color);
}
.rankings .bonuses .bonus.custom-label-orange .position div {
  background: var(--ranking-table-custom-label-orange-bg-color);
  color: #fff;
}
.rankings .bonuses .bonus.custom-label-orange .toggle-action-sc .toggle-sc .circle {
  border: solid 2px var(--ranking-table-custom-label-orange-bg-color);
}
.rankings .bonuses .bonus.custom-label-grey {
  border: solid 2px var(--ranking-table-custom-label-grey-bg-color);
}
.rankings .bonuses .bonus.custom-label-grey .label-col {
  background: var(--ranking-table-custom-label-grey-bg-color);
}
.rankings .bonuses .bonus.custom-label-grey .position div {
  background: var(--ranking-table-custom-label-grey-bg-color);
  color: #fff;
}
.rankings .bonuses .bonus.custom-label-grey .toggle-action-sc .toggle-sc .circle {
  border: solid 2px var(--ranking-table-custom-label-grey-bg-color);
}
.rankings .bonuses .bonus.has-label.position, .rankings .bonuses .bonus.has-label.operator, .rankings .bonuses .bonus.has-label.product-img {
  border-radius: 0;
}
@media (min-width: 768px) {
  .rankings .bonuses .bonus.has-label.btn-link {
    border-top-right-radius: 0;
  }
}
.rankings .bonuses .bonus.no-numbers .bonuses .bonus .product-img {
  border-top-left-radius: var(--ranking-table-border-radius-size);
}
.rankings .bonuses .bonus.no-numbers .bonuses .bonus:nth-child(1), .rankings .bonuses .bonus.no-numbers .bonuses .bonus:nth-child(2), .rankings .bonuses .bonus.no-numbers .bonuses .bonus:nth-child(3) {
  border-color: var(--ranking-table-highlight-color);
}
.rankings .bonuses .bonus.hidden {
  display: none;
}
.rankings .bonuses .bonus .ki-star-full {
  color: #f3961d;
}
@media (min-width: 768px) {
  .rankings .bonuses {
    position: relative;
  }
}
.rankings .bonuses .operator {
  display: flex;
  flex-direction: column;
  gap: 8px;
  grid-area: operator;
  padding-top: var(--padding-2x);
  font-size: var(--font-size-m);
  line-height: var(--line-height-standard);
}
@media (min-width: 768px) {
  .rankings .bonuses .operator {
    width: 141px;
  }
}
.rankings .bonuses .operator .name {
  font-weight: 400;
  font-size: var(--font-size-m);
  line-height: var(--line-height-standard);
  text-decoration: none;
  color: var(--paragraph-color);
}
.rankings .bonuses .operator .star .product-rating {
  justify-content: flex-start;
  align-items: center;
}
.rankings .bonuses .operator .star .product-rating .number {
  font-size: var(--font-size-m);
  line-height: var(--line-height-small);
  margin-right: 5px;
  /* From verticals.scss */
  color: var(--paragraph-color);
}
.rankings .bonuses .operator .accepted-players {
  font-size: var(--font-size-s);
}
.rankings .bonuses .operator .accepted-players .flag {
  display: none;
  margin-right: var(--margin-1x);
}
.rankings .bonuses .operator .accepted-players .flag svg {
  width: 18px;
  height: auto;
}
.rankings .bonuses .btn-link {
  grid-area: btn-link;
  padding: 0 var(--padding-2x);
}
@media (min-width: 768px) {
  .rankings .bonuses .btn-link {
    width: 190px;
    padding-top: var(--padding-2x);
    justify-content: center;
  }
}
.rankings .bonuses .btn-link:hover {
  text-decoration: none;
}
.rankings .bonuses .btn-link:after {
  content: "";
  width: 100%;
  height: 1px;
  margin-top: var(--margin-2x);
  background: var(--ranking-table-divider-bg);
}
@media (min-width: 768px) {
  .rankings .bonuses .btn-link:after {
    display: none;
  }
}
.rankings .bonuses .btn-link a, .rankings .bonuses .btn-link > span.aff-link {
  text-align: center;
  font-size: var(--font-size-m);
  line-height: var(--line-height-small);
  min-height: 25px;
}
.rankings .bonuses .btn-link a.kbtn, .rankings .bonuses .btn-link > span.aff-link.kbtn {
  width: 100%;
  font-weight: 600;
  font-size: var(--font-size-m);
  line-height: var(--line-height-standard);
}
@media (min-width: 768px) {
  .rankings .bonuses .btn-link a.kbtn, .rankings .bonuses .btn-link > span.aff-link.kbtn {
    min-width: 160px;
  }
}
.rankings .bonuses .btn-link a i, .rankings .bonuses .btn-link > span.aff-link i {
  display: none;
}
@media (min-width: 768px) {
  .rankings .bonuses .btn-link a i, .rankings .bonuses .btn-link > span.aff-link i {
    font-size: var(--font-size-m);
    vertical-align: middle;
    display: inline-block;
  }
}
.rankings .bonuses .product-price .price {
  font-size: var(--font-size-xl);
  line-height: 125%;
  color: var(--ranking-table-price-color);
  margin: 0;
}
.rankings .bonuses .toggle-action {
  grid-area: toggle-action;
  padding: var(--padding-2x);
}
.rankings .bonuses .toggle-action a {
  color: var(--link-color);
  text-decoration: none;
}
.rankings .bonuses .toggle-action a span {
  display: inline-block;
}
.rankings .bonuses .toggle-action .close {
  display: none;
}
.rankings .bonuses .toggle-action .open {
  display: grid;
}
.rankings .bonuses .toggleable-cell {
  display: none;
}
.rankings .bonuses:last-child {
  border-bottom-left-radius: var(--ranking-table-border-radius-size);
  border-bottom-right-radius: var(--ranking-table-border-radius-size);
}
.rankings .bonuses .legal-disclaimer {
  grid-area: legal-disclaimer;
  padding: 0 var(--padding-2x) var(--padding-2x);
  font-size: var(--font-size-xs);
  line-height: var(--line-height-small);
  position: relative;
}
@media (min-width: 768px) {
  .rankings .bonuses .legal-disclaimer {
    padding-top: 0;
  }
}
.rankings .bonuses .legal-disclaimer:before {
  content: "";
  width: 100%;
  height: 1px;
  display: inline-block;
  background: var(--ranking-table-divider-bg);
}
.rankings .bonuses .legal-disclaimer.empty {
  display: none;
}
.rankings .bonuses .legal-disclaimer.empty .foldable.preview-mode .terms_label {
  display: none;
}
.rankings .bonuses .legal-disclaimer.empty:after {
  height: 1px;
  display: block;
  border-bottom-left-radius: var(--ranking-table-border-radius-size);
  border-bottom-right-radius: var(--ranking-table-border-radius-size);
  border: 1px solid;
}
.rankings .bonuses .legal-disclaimer .foldable.preview-mode .requirements {
  line-height: 1.4;
  color: var(--link-color);
}
.rankings .bonuses.opened .toggleable-cell {
  display: grid;
}
.rankings .bonuses.opened .toggle-action .close {
  display: grid;
}
.rankings .bonuses.opened .toggle-action .open {
  display: none;
}
.rankings .bonuses.opened .legal-disclaimer.toggleable-cell {
  display: block;
}
.rankings .bonuses .col-title {
  font-weight: 500;
  font-size: var(--font-size-m);
  line-height: var(--line-height-small);
  margin-bottom: var(--margin-1x) !important;
  color: #000;
}
.rankings .bonuses .col-title span {
  font-size: var(--font-size-xxs);
  font-weight: var(--font-weight-normal);
}
.rankings .bonuses.usp-table .bonus {
  grid-auto-columns: 1fr;
  grid-template-columns: 40px 96px 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas: "label label label" "bonus-date bonus-date bonus-date" "position product-img operator" "bonus-info bonus-info bonus-info" "btn-link btn-link btn-link" "facts facts facts facts facts" "divider divider divider divider divider" "bonus-details bonus-details bonus-details bonus-details bonus-details" "product-bonus-details product-bonus-details product-bonus-details product-bonus-details product-bonus-details" "legal-disclaimer legal-disclaimer legal-disclaimer legal-disclaimer legal-disclaimer" "toggle-action toggle-action toggle-action toggle-action toggle-action" "product-togle product-togle product-togle product-togle product-togle";
}
@media (min-width: 768px) {
  .rankings .bonuses.usp-table .bonus {
    grid-auto-columns: 1fr;
    grid-template-columns: 40px 96px 125px 1fr 1.4fr min-content;
    grid-template-rows: min-content;
    gap: 0;
    grid-template-areas: "label label label label label label" "bonus-date bonus-date bonus-date bonus-date bonus-date bonus-date" "position product-img operator bonus-info facts btn-link" "divider divider divider divider divider divider" "bonus-details bonus-details bonus-details bonus-details bonus-details bonus-details" "product-bonus-details product-bonus-details product-bonus-details product-bonus-details product-bonus-details product-bonus-details" "legal-disclaimer legal-disclaimer legal-disclaimer legal-disclaimer legal-disclaimer legal-disclaimer" "toggle-action toggle-action toggle-action toggle-action toggle-action toggle-action" "product-togle product-togle product-togle product-togle product-togle product-togle";
  }
}
.rankings .how-we-rate {
  font-style: normal;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-small);
  color: var(--link-color);
}
.rankings .ad-disclosure {
  color: var(--neutral-5-color, #828693);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-standard);
  cursor: pointer;
  gap: 4px;
}
.rankings .ranking-disclaimer {
  grid-area: ranking-disclaimer;
  font-size: var(--font-size-xxs);
  line-height: var(--line-height-small);
  color: #1F263D;
}
.rankings .ranking-view-more {
  font-style: normal;
  font-size: var(--font-size-m);
  line-height: var(--line-height-standard);
  color: var(--link-color);
  margin-top: 15px;
}
.rankings .ranking-view-more i {
  font-size: var(--font-size-xs);
  margin-left: 5px;
  display: inline-block;
}

.tooltip-text {
  position: fixed;
  padding: var(--padding-3x) var(--padding-2x);
  border-radius: 4px;
  color: #1f263d;
  box-shadow: 0 0 8px rgba(31, 38, 61, 0.24);
  z-index: 9999;
  width: 342px;
  max-width: 100%;
  opacity: 0;
  pointer-events: none;
}
.tooltip-text.active {
  opacity: 1;
  pointer-events: all;
}
.tooltip-text:before {
  content: "";
  position: absolute;
  top: 0;
  right: 16px;
  width: 24px;
  height: 24px;
  background: #fff;
  transform: translateY(-50%) rotate(45deg);
  box-shadow: 0 0 8px rgba(31, 38, 61, 0.24);
  border-radius: 4px;
}
.tooltip-text:after {
  content: "";
  position: absolute;
  top: 0;
  right: 5px;
  width: 45px;
  height: 24px;
  background: #fff;
}
.tooltip-text.left-aligned:before {
  right: auto;
  left: 16px;
  top: auto;
  bottom: -24px;
}
.tooltip-text.left-aligned:after {
  right: auto;
  left: 5px;
  top: auto;
  bottom: 0;
}

body.tooltip-is-active:after {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  content: "";
  background: rgba(0, 0, 0, 0.1);
}

html[cf-country=pe] #content .rankings .pe {
  display: flex;
}

html[cf-country=ar] #content .rankings .ar {
  display: flex;
}

html[cf-country=cl] #content .rankings .cl {
  display: flex;
}

html[cf-country=us] #content .rankings .us {
  display: flex;
}

html[cf-country=es] #content .rankings .es {
  display: flex;
}

html[cf-country=ve] #content .rankings .ve {
  display: flex;
}

html[cf-country=mx] #content .rankings .mx {
  display: flex;
}

html[cf-country=co] #content .rankings .co {
  display: flex;
}

html[cf-country=uy] #content .rankings .uy {
  display: flex;
}

html[cf-country=cr] #content .rankings .cr {
  display: flex;
}

html[cf-country=bo] #content .rankings .bo {
  display: flex;
}

html[cf-country=do] #content .rankings .do {
  display: flex;
}

html[cf-country=sv] #content .rankings .sv {
  display: flex;
}

html[cf-country=hn] #content .rankings .hn {
  display: flex;
}

html[cf-country=ni] #content .rankings .ni {
  display: flex;
}

html[cf-country=pa] #content .rankings .pa {
  display: flex;
}

html[cf-country=gt] #content .rankings .gt {
  display: flex;
}

html[cf-country=py] #content .rankings .py {
  display: flex;
}

html[cf-country=it] #content .rankings .it {
  display: flex;
}

html[cf-country=jp] #content .rankings .jp {
  display: flex;
}

html[cf-country=au] #content .rankings .au {
  display: flex;
}

html[cf-country=nl] #content .rankings .nl {
  display: flex;
}

html[cf-country=gb] #content .rankings .gb {
  display: flex;
}

html[cf-country=de] #content .rankings .de {
  display: flex;
}

html[cf-country=ch] #content .rankings .ch {
  display: flex;
}

html[cf-country=at] #content .rankings .at {
  display: flex;
}

html[cf-country=br] #content .rankings .br {
  display: flex;
}

html[cf-country=pt] #content .rankings .pt {
  display: flex;
}

html[cf-country=fr] #content .rankings .fr {
  display: flex;
}

html[cf-country=pl] #content .rankings .pl {
  display: flex;
}

html[cf-country=se] #content .rankings .se {
  display: flex;
}

html[cf-country=pe] #content .skr-ranking .accepted-players-list .pe {
  display: block;
}

html[cf-country=ar] #content .skr-ranking .accepted-players-list .ar {
  display: block;
}

html[cf-country=cl] #content .skr-ranking .accepted-players-list .cl {
  display: block;
}

html[cf-country=us] #content .skr-ranking .accepted-players-list .us {
  display: block;
}

html[cf-country=es] #content .skr-ranking .accepted-players-list .es {
  display: block;
}

html[cf-country=ve] #content .skr-ranking .accepted-players-list .ve {
  display: block;
}

html[cf-country=mx] #content .skr-ranking .accepted-players-list .mx {
  display: block;
}

html[cf-country=co] #content .skr-ranking .accepted-players-list .co {
  display: block;
}

html[cf-country=uy] #content .skr-ranking .accepted-players-list .uy {
  display: block;
}

html[cf-country=cr] #content .skr-ranking .accepted-players-list .cr {
  display: block;
}

html[cf-country=bo] #content .skr-ranking .accepted-players-list .bo {
  display: block;
}

html[cf-country=do] #content .skr-ranking .accepted-players-list .do {
  display: block;
}

html[cf-country=sv] #content .skr-ranking .accepted-players-list .sv {
  display: block;
}

html[cf-country=hn] #content .skr-ranking .accepted-players-list .hn {
  display: block;
}

html[cf-country=ni] #content .skr-ranking .accepted-players-list .ni {
  display: block;
}

html[cf-country=pa] #content .skr-ranking .accepted-players-list .pa {
  display: block;
}

html[cf-country=gt] #content .skr-ranking .accepted-players-list .gt {
  display: block;
}

html[cf-country=py] #content .skr-ranking .accepted-players-list .py {
  display: block;
}

html[cf-country=it] #content .skr-ranking .accepted-players-list .it {
  display: block;
}

html[cf-country=jp] #content .skr-ranking .accepted-players-list .jp {
  display: block;
}

html[cf-country=au] #content .skr-ranking .accepted-players-list .au {
  display: block;
}

html[cf-country=nl] #content .skr-ranking .accepted-players-list .nl {
  display: block;
}

html[cf-country=gb] #content .skr-ranking .accepted-players-list .gb {
  display: block;
}

html[cf-country=de] #content .skr-ranking .accepted-players-list .de {
  display: block;
}

html[cf-country=ch] #content .skr-ranking .accepted-players-list .ch {
  display: block;
}

html[cf-country=at] #content .skr-ranking .accepted-players-list .at {
  display: block;
}

html[cf-country=br] #content .skr-ranking .accepted-players-list .br {
  display: block;
}

html[cf-country=pt] #content .skr-ranking .accepted-players-list .pt {
  display: block;
}

html[cf-country=fr] #content .skr-ranking .accepted-players-list .fr {
  display: block;
}

html[cf-country=pl] #content .skr-ranking .accepted-players-list .pl {
  display: block;
}

html[cf-country=se] #content .skr-ranking .accepted-players-list .se {
  display: block;
}

.bonus-country-flag {
  display: none;
  align-items: center;
  gap: 6px;
}
.bonus-country-flag .bonus-country-flag-text {
  font-family: var(--font-family-primary);
  font-size: 12px;
  line-height: 16px;
  color: #0F172B;
  font-weight: 600;
  order: 1;
}

html[cf-country=es] .bonus-country-flag {
  background: url("../../../../themes/kaffiliate/assets/images/flags/es.svg") no-repeat right center;
  background-size: 20px 15px;
  padding-right: 26px;
  margin-left: auto;
  width: auto;
  min-height: 15px;
  display: flex;
}

html[cf-country=ve] .bonus-country-flag {
  background: url("../../../../themes/kaffiliate/assets/images/flags/ve.svg") no-repeat right center;
  background-size: 20px 15px;
  padding-right: 26px;
  margin-left: auto;
  width: auto;
  min-height: 15px;
  display: flex;
}

html[cf-country=co] .bonus-country-flag {
  background: url("../../../../themes/kaffiliate/assets/images/flags/co.svg") no-repeat right center;
  background-size: 20px 15px;
  padding-right: 26px;
  margin-left: auto;
  width: auto;
  min-height: 15px;
  display: flex;
}

html[cf-country=bo] .bonus-country-flag {
  background: url("../../../../themes/kaffiliate/assets/images/flags/bo.svg") no-repeat right center;
  background-size: 20px 15px;
  padding-right: 26px;
  margin-left: auto;
  width: auto;
  min-height: 15px;
  display: flex;
}

html[cf-country=ar] .bonus-country-flag {
  background: url("../../../../themes/kaffiliate/assets/images/flags/ar.svg") no-repeat right center;
  background-size: 20px 15px;
  padding-right: 26px;
  margin-left: auto;
  width: auto;
  min-height: 15px;
  display: flex;
}

html[cf-country=pe] .bonus-country-flag {
  background: url("../../../../themes/kaffiliate/assets/images/flags/pe.svg") no-repeat right center;
  background-size: 20px 15px;
  padding-right: 26px;
  margin-left: auto;
  width: auto;
  min-height: 15px;
  display: flex;
}

html[cf-country=mx] .bonus-country-flag {
  background: url("../../../../themes/kaffiliate/assets/images/flags/mx.svg") no-repeat right center;
  background-size: 20px 15px;
  padding-right: 26px;
  margin-left: auto;
  width: auto;
  min-height: 15px;
  display: flex;
}

html[cf-country=ec] .bonus-country-flag {
  background: url("../../../../themes/kaffiliate/assets/images/flags/ec.svg") no-repeat right center;
  background-size: 20px 15px;
  padding-right: 26px;
  margin-left: auto;
  width: auto;
  min-height: 15px;
  display: flex;
}

html[cf-country=cl] .bonus-country-flag {
  background: url("../../../../themes/kaffiliate/assets/images/flags/cl.svg") no-repeat right center;
  background-size: 20px 15px;
  padding-right: 26px;
  margin-left: auto;
  width: auto;
  min-height: 15px;
  display: flex;
}

html[cf-country=us] .bonus-country-flag {
  background: url("../../../../themes/kaffiliate/assets/images/flags/us.svg") no-repeat right center;
  background-size: 20px 15px;
  padding-right: 26px;
  margin-left: auto;
  width: auto;
  min-height: 15px;
  display: flex;
}

html[cf-country=hn] .bonus-country-flag {
  background: url("../../../../themes/kaffiliate/assets/images/flags/hn.svg") no-repeat right center;
  background-size: 20px 15px;
  padding-right: 26px;
  margin-left: auto;
  width: auto;
  min-height: 15px;
  display: flex;
}

html[cf-country=sv] .bonus-country-flag {
  background: url("../../../../themes/kaffiliate/assets/images/flags/sv.svg") no-repeat right center;
  background-size: 20px 15px;
  padding-right: 26px;
  margin-left: auto;
  width: auto;
  min-height: 15px;
  display: flex;
}

html[cf-country=py] .bonus-country-flag {
  background: url("../../../../themes/kaffiliate/assets/images/flags/py.svg") no-repeat right center;
  background-size: 20px 15px;
  padding-right: 26px;
  margin-left: auto;
  width: auto;
  min-height: 15px;
  display: flex;
}

html[cf-country=gt] .bonus-country-flag {
  background: url("../../../../themes/kaffiliate/assets/images/flags/gt.svg") no-repeat right center;
  background-size: 20px 15px;
  padding-right: 26px;
  margin-left: auto;
  width: auto;
  min-height: 15px;
  display: flex;
}

html[cf-country=do] .bonus-country-flag {
  background: url("../../../../themes/kaffiliate/assets/images/flags/do.svg") no-repeat right center;
  background-size: 20px 15px;
  padding-right: 26px;
  margin-left: auto;
  width: auto;
  min-height: 15px;
  display: flex;
}

html[cf-country=it] .bonus-country-flag {
  background: url("../../../../themes/kaffiliate/assets/images/flags/it.svg") no-repeat right center;
  background-size: 20px 15px;
  padding-right: 26px;
  margin-left: auto;
  width: auto;
  min-height: 15px;
  display: flex;
}

html[cf-country=au] .bonus-country-flag {
  background: url("../../../../themes/kaffiliate/assets/images/flags/au.svg") no-repeat right center;
  background-size: 20px 15px;
  padding-right: 26px;
  margin-left: auto;
  width: auto;
  min-height: 15px;
  display: flex;
}

html[cf-country=ja] .bonus-country-flag {
  background: url("../../../../themes/kaffiliate/assets/images/flags/ja.svg") no-repeat right center;
  background-size: 20px 15px;
  padding-right: 26px;
  margin-left: auto;
  width: auto;
  min-height: 15px;
  display: flex;
}

html[cf-country=br] .bonus-country-flag {
  background: url("../../../../themes/kaffiliate/assets/images/flags/br.svg") no-repeat right center;
  background-size: 20px 15px;
  padding-right: 26px;
  margin-left: auto;
  width: auto;
  min-height: 15px;
  display: flex;
}

html[cf-country=pt] .bonus-country-flag {
  background: url("../../../../themes/kaffiliate/assets/images/flags/pt.svg") no-repeat right center;
  background-size: 20px 15px;
  padding-right: 26px;
  margin-left: auto;
  width: auto;
  min-height: 15px;
  display: flex;
}

.hide-bonus-details-style {
  padding-top: 16px;
}

.rankings .ranking-filters-wrapper {
  padding: 0;
  margin: 0;
}
.rankings .ranking-filters-wrapper .ranking-filters-toggle {
  margin-bottom: 12px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}
.rankings .ranking-filters-wrapper .ranking-filters-toggle:hover {
  color: #0b63ff;
}
.rankings .ranking-filters-wrapper .ranking-filters-toggle .filter-toggle-icon {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s;
}
.rankings .ranking-filters-wrapper .ranking-filters-toggle .filter-toggle-icon svg {
  width: 16px;
  height: 16px;
}
.rankings .ranking-filters-wrapper .ranking-filters-toggle.active .filter-toggle-icon {
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .rankings .ranking-filters-wrapper {
    padding-left: 0;
    margin: 10px 0;
  }
}
.rankings .ranking-filters-wrapper .ranking-filters {
  position: relative;
}
.rankings .ranking-filters-wrapper .ranking-filters .filters-list {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0 !important;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}
.rankings .ranking-filters-wrapper .ranking-filters .filters-list::-webkit-scrollbar {
  display: none;
}
.rankings .ranking-filters-wrapper .ranking-filters .filters-list .filter-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 400;
  border-radius: 9999px;
  border: 1px solid #CAD5E2;
  box-shadow: 0 2px 2px 0 rgba(50, 50, 71, 0.06), 0 2px 4px 0 rgba(50, 50, 71, 0.06);
  padding: 6px 8px 6px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #F8FAFC;
  transition: background-color 0.3s ease;
}
.rankings .ranking-filters-wrapper .ranking-filters .filters-list .filter-item .filter-label {
  color: #45556C;
  min-width: max-content;
}
.rankings .ranking-filters-wrapper .ranking-filters .filters-list .filter-item .filter-count {
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  min-width: 32px;
  min-height: 32px;
  background-color: #E2E8F0;
}
.rankings .ranking-filters-wrapper .ranking-filters .filters-list .filter-item.filter-all {
  padding-left: 14px;
  padding-right: 14px;
}
.rankings .ranking-filters-wrapper .ranking-filters .filters-list .filter-item.active {
  font-weight: 700;
}
.rankings .ranking-filters-wrapper .ranking-filters .filters-list .filter-item.active .filter-label {
  color: #F8FAFC;
}
.rankings .ranking-filters-wrapper .ranking-filters .filters-list .filter-item.active .filter-count {
  min-width: 41px;
  color: #F8FAFC;
}

.rankings .ranking-filters-wrapper .ranking-filters .filters-list .filter-item.active {
  background: var(--ranking-table-active-filter-bg);
}
.rankings .ranking-filters-wrapper .ranking-filters .filters-list .filter-item.active .filter-count {
  background: var(--ranking-table-active-filter-count-bg);
}

.bonus-compact-sc .bonus-code, .bonuses-sc .bonus-code {
  position: relative;
  border: 2px dashed #5AAD1E;
  padding: 6px 4px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  color: #0F172B;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  height: 28px;
  min-width: 175px;
  width: fit-content;
}
.bonus-compact-sc .bonus-code .bonus-code-note, .bonuses-sc .bonus-code .bonus-code-note {
  position: absolute;
  top: -9px;
  left: 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: #5AAD1E;
  white-space: nowrap;
  background-color: #F4F4F4;
}
.bonus-compact-sc .bonus-code .bonus-code-text, .bonuses-sc .bonus-code .bonus-code-text {
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
}
.bonus-compact-sc .bonus-code .bonus-code-copied-text, .bonuses-sc .bonus-code .bonus-code-copied-text {
  display: none;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
}
.bonus-compact-sc .bonus-code .bonus-code-icon, .bonuses-sc .bonus-code .bonus-code-icon {
  flex-shrink: 0;
}
.bonus-compact-sc .bonus-code .bonus-code-icon--hover, .bonus-compact-sc .bonus-code .bonus-code-icon--copied, .bonuses-sc .bonus-code .bonus-code-icon--hover, .bonuses-sc .bonus-code .bonus-code-icon--copied {
  display: none;
}
.bonus-compact-sc .bonus-code:hover, .bonuses-sc .bonus-code:hover {
  background-color: #5AAD1E;
  color: #F8FAFC;
  border-style: solid;
  border-color: #5AAD1E;
}
.bonus-compact-sc .bonus-code:hover .bonus-code-icon--default, .bonuses-sc .bonus-code:hover .bonus-code-icon--default {
  display: none;
}
.bonus-compact-sc .bonus-code:hover .bonus-code-icon--hover, .bonuses-sc .bonus-code:hover .bonus-code-icon--hover {
  display: block;
}
.bonus-compact-sc .bonus-code:hover .bonus-code-note, .bonuses-sc .bonus-code:hover .bonus-code-note {
  display: none;
}
.bonus-compact-sc .bonus-code--copied, .bonuses-sc .bonus-code--copied {
  background-color: #fff;
  color: #0f333d;
  border-style: dashed;
  border-color: #5AAD1E;
  pointer-events: none;
}
.bonus-compact-sc .bonus-code--copied .bonus-code-text, .bonuses-sc .bonus-code--copied .bonus-code-text {
  display: none;
}
.bonus-compact-sc .bonus-code--copied .bonus-code-copied-text, .bonuses-sc .bonus-code--copied .bonus-code-copied-text {
  display: block;
}
.bonus-compact-sc .bonus-code--copied .bonus-code-icon--default,
.bonus-compact-sc .bonus-code--copied .bonus-code-icon--hover, .bonuses-sc .bonus-code--copied .bonus-code-icon--default,
.bonuses-sc .bonus-code--copied .bonus-code-icon--hover {
  display: none;
}
.bonus-compact-sc .bonus-code--copied .bonus-code-icon--copied, .bonuses-sc .bonus-code--copied .bonus-code-icon--copied {
  display: block;
}
.bonus-compact-sc .bonus-code--empty, .bonuses-sc .bonus-code--empty {
  pointer-events: none;
  cursor: default;
}
.bonus-compact-sc .bonus-code--empty .bonus-code-text, .bonuses-sc .bonus-code--empty .bonus-code-text {
  filter: blur(3px);
  font-size: 22px;
  margin-top: 11px;
  pointer-events: none;
  user-select: none;
}
.bonus-compact-sc .bonus-code-expired-date-container, .bonuses-sc .bonus-code-expired-date-container {
  display: flex;
  align-items: center;
  gap: 4px;
}
.bonus-compact-sc .bonus-code-expired-date-container .bonus-code-expired-date, .bonuses-sc .bonus-code-expired-date-container .bonus-code-expired-date {
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  color: #00A63E;
}

.desktop-only {
  display: flex !important;
}
@media (max-width: 767px) {
  .desktop-only {
    display: none !important;
  }
}

.mobile-only {
  display: none !important;
}
@media (max-width: 767px) {
  .mobile-only {
    display: flex !important;
  }
}

.ranking-mode-switch-sc {
  margin-bottom: 24px;
}

.ranking-mode-switch {
  cursor: pointer;
  user-select: none;
}
.ranking-mode-switch .ranking-mode-switch-input {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 56px;
  height: 24px;
  background: #e2e8f0;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 0;
}
.ranking-mode-switch .ranking-mode-switch-input::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 25px;
  height: 18px;
  background: #F8FAFC;
  border-radius: 9px;
  transition: left 0.3s ease;
}
.ranking-mode-switch .ranking-mode-switch-input:checked {
  background: #00A63E;
}
.ranking-mode-switch .ranking-mode-switch-input:checked::after {
  left: 28px;
}
.ranking-mode-switch .ranking-mode-switch-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #020618;
}
@media (max-width: 767px) {
  .ranking-mode-switch .ranking-mode-switch-label {
    line-height: 16px;
  }
}
.ranking-mode-switch .ranking-mode-switch-label .info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1px solid #020618;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.bonus-table-compact-sc .bonus-compact-sc {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #5AAD1E;
  border-radius: 8px;
  box-shadow: 0px 4px 8px 0px rgba(50, 50, 71, 0.06), 0px 4px 4px 0px rgba(50, 50, 71, 0.08);
  margin-bottom: 16px;
  gap: 12px;
}
.bonus-table-compact-sc .bonus-compact-sc.hidden {
  display: none !important;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-left-sc {
  position: relative;
  flex-shrink: 0;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-left-sc .compact-ranking-number-sc {
  position: absolute;
  top: -8px;
  left: -8px;
  z-index: 5;
  width: 24px;
  height: 24px;
  background-color: #DBEAFE;
  color: #262626;
  font-weight: 700;
  font-size: 11px;
  line-height: 24px;
  text-align: center;
  padding: 12px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-left-sc .compact-ranking-number-sc {
    line-height: 16px;
  }
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-left-sc .compact-logo-sc a img {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-middle-sc {
  flex-grow: 1;
  gap: 4px;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-middle-sc .compact-header-sc {
  gap: 12px;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-middle-sc .compact-header-sc .compact-name-sc {
  color: #525252;
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
}
@media (max-width: 767px) {
  .bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-middle-sc .compact-header-sc .compact-name-sc {
    line-height: 16px;
    columns: #262626;
    gap: 0px;
  }
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-middle-sc .compact-header-sc .social-signal-sc {
  position: absolute;
  top: -13px;
  right: 8px;
  display: flex;
  gap: 4px;
  padding: 4px 8px;
  background-color: #E0E7FF;
  border-radius: 999px;
  width: fit-content;
}
@media (min-width: 768px) {
  .bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-middle-sc .compact-header-sc .social-signal-sc {
    position: static;
  }
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-middle-sc .compact-header-sc .social-signal-sc span {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: #0F172B;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-middle-sc .compact-header-sc .star-sc .product-rating {
  height: 24px;
  padding: 0;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-middle-sc .compact-header-sc .star-sc .product-rating .number {
  padding: 0px 8px !important;
  color: #262626;
  line-height: 24px;
  font-weight: 700;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-middle-sc .compact-header-sc .star-mobile-sc .mobile-rating-text {
  color: #525252;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-middle-sc .compact-offer-wrapper .compact-main-offer-sc,
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-middle-sc .compact-offer-wrapper .compact-sub-offer-sc {
  color: #262626;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-right-sc {
  flex-shrink: 0;
  width: 200px;
  gap: 8px;
  align-items: center;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-right-sc .bonus-code .bonus-code-note {
  position: absolute;
  top: -3px;
  left: 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 3px;
  color: #5AAD1E;
  white-space: nowrap;
  background-color: white;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-right-sc .bonus-code-blurred .bonus-code-text {
  filter: blur(3px);
  padding-top: 7px;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-right-sc .compact-exclusive-box {
  width: 100%;
  border: 1px dashed #2B7FFF;
  border-radius: 8px;
  padding: 6px 12px;
  position: relative;
  background: #fff;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-right-sc .compact-exclusive-box .exclusive-label {
  position: absolute;
  top: -9px;
  left: 10px;
  background: #fff;
  padding: 0 4px;
  color: #2B7FFF;
  font-size: 11px;
  font-weight: 700;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-right-sc .compact-exclusive-box .code-inner {
  font-size: 14px;
  color: #262626;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-right-sc .compact-cta-sc {
  width: 100%;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-right-sc .compact-cta-sc .js-compact-cta {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  border-radius: 100px;
  padding: 10px;
  font-weight: 700;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-right-sc .compact-cta-sc .js-compact-cta span {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-right-sc .compact-cta-sc .js-compact-cta .mobile-play-icon {
  display: none;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-meta-sc {
  width: 100%;
}
.bonus-table-compact-sc .bonus-compact-sc .compact-meta-sc .compact-verified-sc,
.bonus-table-compact-sc .bonus-compact-sc .compact-meta-sc .compact-legal-sc {
  color: #62748E;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .bonus-table-compact-sc .bonus-compact-sc .compact-meta-sc .compact-verified-sc,
  .bonus-table-compact-sc .bonus-compact-sc .compact-meta-sc .compact-legal-sc {
    line-height: 16px;
  }
}
.bonus-table-compact-sc .bonus-compact-sc .compact-meta-sc .compact-verified-sc .verified-icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
@media (max-width: 767px) {
  .bonus-table-compact-sc .bonus-compact-sc {
    gap: 8px;
  }
  .bonus-table-compact-sc .bonus-compact-sc .compact-main-content {
    gap: 12px;
  }
  .bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-left-sc .compact-logo-sc a img {
    width: 48px !important;
    height: 48px !important;
  }
  .bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-left-sc .compact-ranking-number-sc {
    width: 16px;
    height: 16px;
    padding: 8px 4px;
    font-size: 9px;
  }
  .bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-middle-sc .compact-header-sc .compact-name-sc {
    font-size: 10px !important;
    line-height: 16px;
  }
  .bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-middle-sc .compact-offer-wrapper .compact-main-offer-sc,
  .bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-middle-sc .compact-offer-wrapper .compact-sub-offer-sc {
    font-size: 12px !important;
    line-height: 18px;
  }
  .bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-right-sc {
    width: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    grid-template-areas: "bonus-code compact-cta" "expired   expired";
    column-gap: 8px;
    row-gap: 0px;
    align-items: center;
  }
  .bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-right-sc .compact-exclusive-box {
    display: none;
  }
  .bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-right-sc .bonus-code {
    grid-area: bonus-code;
    min-width: 85px;
    height: 34px;
    width: 100%;
  }
  .bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-right-sc .bonus-code-expired-date-container {
    grid-area: expired;
    justify-self: flex-start;
  }
  .bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-right-sc .compact-exclusive-box {
    display: none;
  }
  .bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-right-sc .compact-cta-sc {
    grid-area: compact-cta;
  }
  .bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-right-sc .compact-cta-sc .js-compact-cta {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px;
    padding: 0 !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-right-sc .compact-cta-sc .js-compact-cta span {
    display: none;
  }
  .bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-right-sc .compact-cta-sc .js-compact-cta i.arrow {
    display: none;
  }
  .bonus-table-compact-sc .bonus-compact-sc .compact-main-content .compact-right-sc .compact-cta-sc .js-compact-cta::before {
    content: "";
    display: block;
    width: 16px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg width="16" height="20" viewBox="0 0 16 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L15 10L1 19V1Z" fill="%23020618" stroke="%23020202" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .bonus-table-compact-sc .bonus-compact-sc .compact-meta-sc .compact-verified-sc,
  .bonus-table-compact-sc .bonus-compact-sc .compact-meta-sc .compact-legal-sc {
    font-size: 10px !important;
    line-height: 16px;
  }
}

body.vertical-trust .bonus-compact-sc {
  border: 1px solid #2B7FFF;
}

.vertical-trust .bonuses .bonus:nth-child(1) .position div, .vertical-trust .bonuses .bonus:nth-child(2) .position div, .vertical-trust .bonuses .bonus:nth-child(3) .position div {
  color: #fff;
}
.vertical-trust .bonuses .bonus:nth-child(1).has-label .ranking-image-ribbon, .vertical-trust .bonuses .bonus:nth-child(2).has-label .ranking-image-ribbon, .vertical-trust .bonuses .bonus:nth-child(3).has-label .ranking-image-ribbon {
  top: 25px;
}
@media (min-width: 768px) {
  .vertical-trust .bonuses .bonus:nth-child(1) .ranking-image-ribbon, .vertical-trust .bonuses .bonus:nth-child(2) .ranking-image-ribbon, .vertical-trust .bonuses .bonus:nth-child(3) .ranking-image-ribbon {
    left: 0;
  }
  .vertical-trust .bonuses .bonus:nth-child(1) .ranking-image-ribbon img, .vertical-trust .bonuses .bonus:nth-child(2) .ranking-image-ribbon img, .vertical-trust .bonuses .bonus:nth-child(3) .ranking-image-ribbon img {
    transform: rotate(-86deg);
  }
}
.vertical-trust .bonuses .bonus .bonus-date {
  padding-right: 50px;
}
@media (min-width: 768px) {
  .vertical-trust .bonuses .bonus .bonus-date {
    padding-left: 45px;
  }
}
.vertical-trust .bonus-table-compact-sc .bonus-code, .vertical-trust .bonuses .bonus-code {
  border-color: #2B7FFF !important;
  color: #262626 !important;
}
.vertical-trust .bonus-table-compact-sc .bonus-code:hover, .vertical-trust .bonuses .bonus-code:hover {
  border-style: solid;
  border-color: #65EB95 !important;
  background-image: linear-gradient(90deg, #51C97C 0%, #69EE99 100%);
  color: #262626 !important;
}
.vertical-trust .bonus-table-compact-sc .bonus-code:hover .bonus-code-icon--default, .vertical-trust .bonuses .bonus-code:hover .bonus-code-icon--default {
  display: block !important;
}
.vertical-trust .bonus-table-compact-sc .bonus-code:hover .bonus-code-icon--hover, .vertical-trust .bonuses .bonus-code:hover .bonus-code-icon--hover {
  display: none !important;
}
.vertical-trust .bonus-table-compact-sc .bonus-code--copied, .vertical-trust .bonuses .bonus-code--copied {
  border-color: #2B7FFF;
}
.vertical-trust .bonus-table-compact-sc .bonus-code .bonus-code-note, .vertical-trust .bonuses .bonus-code .bonus-code-note {
  color: #2B7FFF !important;
}

.vertical-trust {
  --kfr-winner-bg: #F0F9FF;
  --kfr-winner-border: #8EC5FF;
  --kfr-code-wrap-border: #2B7FFF;
  --kfr-code-wrap-bg: #FFFFFF;
  --kfr-cta-radius: 24px;
  --kfr-cta-border: #65EB95;
  --kfr-cta-bg-start: #51C97C;
  --kfr-cta-bg-end: #69EE99;
  --kfr-cta-hover-border: #65EB95;
  --kfr-cta-hover-bg-start: #45b56d;
  --kfr-cta-hover-bg-end: #5ad98a;
  --kfr-cta-color: #020618;
  --kfr-compare-btn-radius: 24px;
  --kfr-compare-btn-border: #4F39F6;
  --kfr-compare-btn-bg: #ffffff;
  --kfr-compare-btn-color: #312C85;
  --kfr-compare-btn-hover-border: #372AAC;
  --kfr-compare-btn-hover-bg: #E0E7FF;
  --kfr-compare-btn-hover-color: #312C85;
  --kfr-compare-tray-btn-color: #312C85;
  --kfr-compare-tray-btn-hover-color: #312C85;
  --kfr-compare-checkbox-checked-bg: #2B7FFF;
  --kfr-code-wrap-hover-bg: #2b7fff;
  --kfr-bonus-code-note-color: #2b7fff;
}

.vertical-sport {
  --kfr-winner-bg: #F1FAEA;
  --kfr-winner-border: #A1E96D;
  --kfr-code-wrap-border: #5AAD1E;
  --kfr-code-wrap-bg: #FFFFFF;
  --kfr-cta-radius: 8px;
  --kfr-cta-border: #5AAD1E;
  --kfr-cta-bg-start: #5AAD1E;
  --kfr-cta-bg-end: #5AAD1E;
  --kfr-cta-hover-border: #5AAD1E;
  --kfr-cta-hover-bg-start: #5AAD1E;
  --kfr-cta-hover-bg-end: #5AAD1E;
  --kfr-cta-color: #ffffff;
  --kfr-compare-btn-radius: 8px;
  --kfr-compare-btn-border: #1D3245;
  --kfr-compare-btn-bg: #ffffff;
  --kfr-compare-btn-color: #0F172B;
  --kfr-compare-btn-hover-border: #0F172B;
  --kfr-compare-btn-hover-bg: #E0E7FF;
  --kfr-compare-btn-hover-color: #0F172B;
  --kfr-compare-tray-btn-color: #0F172B;
  --kfr-compare-tray-btn-hover-color: #0F172B;
  --kfr-compare-checkbox-checked-bg: #5AAD1E;
  --kfr-code-wrap-hover-bg: #5AAD1E;
  --kfr-bonus-code-note-color: #5AAD1E;
}

.vertical-casino .bonus-date {
  padding: 8px 38px 8px 8px !important;
}

.rankings .bonuses-sc {
  gap: 34px;
  display: flex;
  flex-direction: column;
}
.rankings .bonuses-sc .bonus {
  position: relative;
  padding: 16px 16px 0px 16px;
  grid-auto-columns: 1fr;
  grid-template-columns: 88px 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas: "bonus-date bonus-date" "product-img-sc operator-sc" "facts-sc facts-sc" "bonus-infos-sc bonus-infos-sc" "divider divider" "bonus-details-sc bonus-details-sc" "bonus-details-sc-bonus bonus-details-sc-bonus" "product-bonus-details-sc product-bonus-details-sc" "legal-disclaimer-sc legal-disclaimer-sc" "compare-sc compare-sc" "toggle-action toggle-action" "product-togle product-togle";
}
@media (min-width: 768px) {
  .rankings .bonuses-sc .bonus {
    grid-auto-columns: 1fr;
    grid-template-columns: 96px 125px 1fr 1.4fr min-content;
    grid-template-rows: min-content;
    gap: 0;
    grid-template-areas: "bonus-date bonus-date bonus-date bonus-date bonus-date" "product-img-sc operator-sc facts-sc bonus-infos-sc bonus-infos-sc" "divider divider divider divider divider" "bonus-details-sc bonus-details-sc bonus-details-sc bonus-details-sc bonus-details-sc" "bonus-details-sc-bonus bonus-details-sc-bonus bonus-details-sc-bonus bonus-details-sc-bonus bonus-details-sc-bonus" "product-bonus-details-sc product-bonus-details-sc product-bonus-details-sc product-bonus-details-sc product-bonus-details-sc" "legal-disclaimer-sc legal-disclaimer-sc legal-disclaimer-sc legal-disclaimer-sc legal-disclaimer-sc" "compare-sc compare-sc compare-sc compare-sc compare-sc" "toggle-action toggle-action toggle-action toggle-action toggle-action" "product-togle product-togle product-togle product-togle product-togle";
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .rankings .bonuses-sc .bonus {
    grid-auto-columns: 1fr;
    grid-template-columns: 88px 1fr 336px;
    grid-template-rows: auto auto auto;
    grid-template-areas: "bonus-date bonus-date bonus-date" "product-img-sc operator-sc bonus-infos-sc" "facts-sc facts-sc bonus-infos-sc" "divider divider divider" "product-bonus-details-sc product-bonus-details-sc product-bonus-details-sc" "legal-disclaimer-sc legal-disclaimer-sc legal-disclaimer-sc" "compare-sc compare-sc compare-sc" "toggle-action toggle-action toggle-action" "product-togle product-togle product-togle";
  }
}
.rankings .bonuses-sc .bonus .product-bonus-details-sc {
  grid-area: product-bonus-details-sc;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: min-content;
  grid-template-areas: "payment-methods payment-methods" "minimum-deposit withdraw-time" "licenses product-apps";
}
@media (min-width: 768px) {
  .rankings .bonuses-sc .bonus .product-bonus-details-sc {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: min-content;
    grid-template-areas: "payment-methods minimum-deposit withdraw-time licenses product-apps";
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .rankings .bonuses-sc .bonus .product-bonus-details-sc {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: min-content;
    grid-template-areas: "bonus-details-ao bonus-details-ao payment-methods payment-methods" "minimum-deposit withdraw-time licenses product-apps";
  }
}
.rankings .bonuses-sc .bonus .product-img-sc {
  position: relative;
  grid-area: product-img-sc;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  padding: 6.5px 0px;
}
.rankings .bonuses-sc .bonus .product-img-sc a > img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
}
.rankings .bonuses-sc .bonus .product-img-sc .ranking-number {
  position: absolute;
  left: -5px;
  top: 1px;
  display: flex;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  background-color: #F4F4F4;
  gap: 16px;
  align-content: center;
  flex-direction: column;
}
.rankings .bonuses-sc .bonus .product-img-sc .ranking-number .bonus-info-sc {
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.rankings .bonuses-sc .bonus .product-img-sc .ranking-number .bonus-info-sc .product-price .price {
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
  color: #212121;
}
.rankings .bonuses-sc .bonus .product-img-sc .ranking-number .bonus-info-sc .bonus-details {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: #616161;
}
@media (min-width: 768px) {
  .rankings .bonuses-sc .bonus .product-img-sc .ranking-number {
    flex-direction: row;
    justify-content: space-between;
  }
  .rankings .bonuses-sc .bonus .product-img-sc .ranking-number .bonus-info-sc {
    justify-content: center;
    align-items: flex-start;
    text-align: left;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .rankings .bonuses-sc .bonus .product-img-sc .ranking-number {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .rankings .bonuses-sc .bonus .product-img-sc .ranking-number .bonus-info-sc {
    align-items: center;
    text-align: center;
  }
}
.rankings .bonuses-sc .bonus .operator-sc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  grid-area: operator-sc;
}
@media (min-width: 768px) {
  .rankings .bonuses-sc .bonus .operator-sc {
    width: 141px;
  }
}
.rankings .bonuses-sc .bonus .operator-sc .name {
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
  text-decoration: none;
  color: #333333;
}
.rankings .bonuses-sc .bonus .operator-sc .star-social-signal-sc {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .rankings .bonuses-sc .bonus .operator-sc .star-social-signal-sc {
    flex-direction: column;
  }
}
.rankings .bonuses-sc .bonus .operator-sc .star-social-signal-sc .social-signal-sc {
  display: flex;
  gap: 4px;
  padding: 4px 8px;
  background-color: #E0E7FF;
  border-radius: 999px;
  width: fit-content;
}
.rankings .bonuses-sc .bonus .operator-sc .star-social-signal-sc .social-signal-sc span {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: #0F172B;
}
.rankings .bonuses-sc .bonus .operator-sc .star .product-rating {
  justify-content: flex-start;
  align-items: center;
}
.rankings .bonuses-sc .bonus .operator-sc .star .product-rating .number {
  font-size: var(--font-size-m);
  line-height: var(--line-height-small);
  margin-right: 5px;
  color: var(--paragraph-color);
}
.rankings .bonuses-sc .bonus .operator-sc .accepted-players {
  font-size: var(--font-size-s);
}
.rankings .bonuses-sc .bonus .operator-sc .accepted-players .flag {
  display: none;
  margin-right: var(--margin-1x);
}
.rankings .bonuses-sc .bonus .operator-sc .accepted-players .flag svg {
  width: 18px;
  height: auto;
}
.rankings .bonuses-sc .bonus .facts-sc {
  grid-area: facts-sc;
  flex-direction: column;
  gap: 8px !important;
  padding-block: 16px !important;
}
.rankings .bonuses-sc .bonus .bonus-infos-sc {
  grid-area: bonus-infos-sc;
  display: flex;
  border-radius: 8px;
  background-color: #F4F4F4;
  gap: 16px;
  padding: 16px;
  align-content: center;
  flex-direction: column;
}
.rankings .bonuses-sc .bonus .bonus-infos-sc .bonus-info-sc {
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.rankings .bonuses-sc .bonus .bonus-infos-sc .bonus-info-sc .product-price .price {
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
  color: #212121;
}
.rankings .bonuses-sc .bonus .bonus-infos-sc .bonus-info-sc .bonus-details {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: #616161;
  margin-bottom: 12px !important;
  text-align: center;
}
.rankings .bonuses-sc .bonus .bonus-infos-sc .bonus-info-sc .bonus-code-blurred .bonus-code-text {
  filter: blur(3px);
  padding-top: 7px;
}
@media (min-width: 768px) {
  .rankings .bonuses-sc .bonus .bonus-infos-sc {
    flex-direction: row;
    justify-content: space-between;
  }
  .rankings .bonuses-sc .bonus .bonus-infos-sc .bonus-info-sc {
    justify-content: center;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .rankings .bonuses-sc .bonus .bonus-infos-sc {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .rankings .bonuses-sc .bonus .bonus-infos-sc .bonus-info-sc {
    align-items: center;
    text-align: center;
  }
}
.rankings .bonuses-sc .bonus .btn-link-sc {
  grid-area: btn-link-sc;
}
@media (min-width: 768px) {
  .rankings .bonuses-sc .bonus .btn-link-sc {
    width: 190px;
    align-items: center;
    justify-content: center;
  }
}
.rankings .bonuses-sc .bonus .btn-link-sc:hover {
  text-decoration: none;
}
.rankings .bonuses-sc .bonus .btn-link-sc a,
.rankings .bonuses-sc .bonus .btn-link-sc > span.aff-link {
  text-align: center;
  font-size: var(--font-size-m);
  line-height: var(--line-height-small);
  min-height: 25px;
}
.rankings .bonuses-sc .bonus .btn-link-sc a.kbtn,
.rankings .bonuses-sc .bonus .btn-link-sc > span.aff-link.kbtn {
  width: 100%;
  font-weight: 600;
  font-size: var(--font-size-m);
  line-height: var(--line-height-standard);
}
@media (min-width: 768px) {
  .rankings .bonuses-sc .bonus .btn-link-sc a.kbtn,
  .rankings .bonuses-sc .bonus .btn-link-sc > span.aff-link.kbtn {
    min-width: 160px;
  }
}
.rankings .bonuses-sc .bonus .btn-link-sc a i,
.rankings .bonuses-sc .bonus .btn-link-sc > span.aff-link i {
  top: 0px;
}
@media (min-width: 768px) {
  .rankings .bonuses-sc .bonus .btn-link-sc a i,
  .rankings .bonuses-sc .bonus .btn-link-sc > span.aff-link i {
    font-size: var(--font-size-m);
    vertical-align: middle;
    display: inline-block;
  }
}
.rankings .bonuses-sc .bonus .bonus-label-sc {
  display: flex;
  align-items: center;
  position: absolute;
  font-weight: 700;
  font-size: var(--font-size-s);
  line-height: var(--line-height-small);
  color: #fff;
  text-transform: uppercase;
  width: fit-content;
  padding: 2px 41px;
  border-radius: 100px;
  height: 34px;
  top: -21px;
  left: 16px;
}
.rankings .bonuses-sc .bonus .bonus-date {
  grid-area: bonus-date;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  justify-content: space-between;
}
.rankings .bonuses-sc .bonus .bonus-date .bonus-date-text {
  font-family: var(--font-family-primary);
  font-size: 12px;
  line-height: 16px;
  font-weight: bold;
  color: #0F172B;
  margin: 0 !important;
}
.rankings .bonuses-sc .bonus .legal-disclaimer-sc {
  grid-area: legal-disclaimer-sc;
  padding: 0 var(--padding-2x) var(--padding-2x);
  font-size: var(--font-size-xs);
  line-height: var(--line-height-small);
  position: relative;
}
@media (min-width: 768px) {
  .rankings .bonuses-sc .bonus .legal-disclaimer-sc {
    padding-top: 0;
  }
}
.rankings .bonuses-sc .bonus .legal-disclaimer-sc:before {
  content: "";
  width: 100%;
  height: 1px;
  display: inline-block;
  background: var(--ranking-table-divider-bg);
}
.rankings .bonuses-sc .bonus .legal-disclaimer-sc.empty {
  display: none;
}
.rankings .bonuses-sc .bonus .legal-disclaimer-sc.empty .foldable.preview-mode .terms_label {
  display: none;
}
.rankings .bonuses-sc .bonus .legal-disclaimer-sc.empty:after {
  height: 1px;
  display: block;
  border-bottom-left-radius: var(--ranking-table-border-radius-size);
  border-bottom-right-radius: var(--ranking-table-border-radius-size);
  border: 1px solid;
}
.rankings .bonuses-sc .bonus .legal-disclaimer-sc .foldable.preview-mode .requirements {
  line-height: 1.4;
  color: var(--link-color);
}
.rankings .bonuses-sc .bonus.opened .toggleable-cell {
  display: grid;
}
.rankings .bonuses-sc .bonus.opened .toggle-action-sc .close {
  display: grid;
}
.rankings .bonuses-sc .bonus.opened .toggle-action-sc .open {
  display: none;
}
.rankings .bonuses-sc .bonus.opened .legal-disclaimer-sc.toggleable-cell {
  display: block;
}
.rankings .bonuses-sc.usp-table .bonus {
  position: relative;
  padding: 16px 16px 0px 16px;
  grid-auto-columns: 1fr;
  grid-template-columns: 88px 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas: "bonus-date bonus-date" "product-img-sc operator-sc" "facts-sc facts-sc" "bonus-infos-sc bonus-infos-sc" "divider divider" "bonus-details-sc bonus-details-sc" "bonus-details-sc-bonus bonus-details-sc-bonus" "product-bonus-details-sc product-bonus-details-sc" "legal-disclaimer-sc legal-disclaimer-sc" "compare-sc compare-sc" "toggle-action toggle-action" "product-togle product-togle";
}
@media (min-width: 768px) {
  .rankings .bonuses-sc.usp-table .bonus {
    grid-auto-columns: 1fr;
    grid-template-columns: 96px 125px 1fr 1.4fr min-content;
    grid-template-rows: min-content;
    gap: 0;
    grid-template-areas: "bonus-date bonus-date bonus-date bonus-date bonus-date" "product-img-sc operator-sc facts-sc bonus-infos-sc bonus-infos-sc" "divider divider divider divider divider" "bonus-details-sc bonus-details-sc bonus-details-sc bonus-details-sc bonus-details-sc" "bonus-details-sc-bonus bonus-details-sc-bonus bonus-details-sc-bonus bonus-details-sc-bonus bonus-details-sc-bonus" "product-bonus-details-sc product-bonus-details-sc product-bonus-details-sc product-bonus-details-sc product-bonus-details-sc" "legal-disclaimer-sc legal-disclaimer-sc legal-disclaimer-sc legal-disclaimer-sc legal-disclaimer-sc" "compare-sc compare-sc compare-sc compare-sc compare-sc" "toggle-action toggle-action toggle-action toggle-action toggle-action" "product-togle product-togle product-togle product-togle product-togle";
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .rankings .bonuses-sc.usp-table .bonus {
    grid-auto-columns: 1fr;
    grid-template-columns: 88px 1fr 336px;
    grid-template-rows: auto auto auto;
    grid-template-areas: "bonus-date bonus-date bonus-date" "product-img-sc operator-sc bonus-infos-sc" "facts-sc facts-sc bonus-infos-sc" "divider divider divider" "product-bonus-details-sc product-bonus-details-sc product-bonus-details-sc" "legal-disclaimer-sc legal-disclaimer-sc legal-disclaimer-sc" "compare-sc compare-sc compare-sc" "toggle-action toggle-action toggle-action" "product-togle product-togle product-togle";
  }
}
.rankings .bonuses-sc .kfr-compare-casino-sc {
  grid-area: compare-sc;
  display: flex;
  align-items: center;
}
.rankings .bonuses-sc .divider-sc {
  grid-area: divider;
  height: 1px;
  padding: 16px 0 0 0;
  display: none;
}
.rankings .bonuses-sc .divider-sc:after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background: var(--ranking-table-divider-bg);
}
.rankings .bonuses-sc .toggle-action-sc {
  grid-area: toggle-action;
  padding: 0;
  height: 18.6px;
}
.rankings .bonuses-sc .toggle-action-sc a {
  color: var(--link-color);
  text-decoration: none;
}
.rankings .bonuses-sc .toggle-action-sc a span {
  display: inline-block;
}
.rankings .bonuses-sc .toggle-action-sc .close {
  display: none;
}
.rankings .bonuses-sc .toggle-action-sc .open {
  display: grid;
}
.rankings .bonuses-sc .toggle-action-sc .toggle-sc {
  align-items: center;
  justify-content: center;
}
.rankings .bonuses-sc .toggle-action-sc .toggle-sc .circle {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: #fff;
  border: 1px solid #CCDDEB;
  border-radius: 1000px;
  width: 36px;
  height: 37px;
  clip-path: inset(49% 0 0 0);
}
.rankings .bonuses-sc .toggle-action-sc {
  /* When filtered, hide rows with this helper class */
}
.rankings .bonuses-sc .toggle-action-sc .bonus.hidden-by-filter {
  display: none !important;
}
.rankings .bonuses-sc .toggle-action-sc .open .circle svg {
  transform: rotate(180deg);
}
.rankings .bonuses-sc .toggle-action-sc .close .circle svg {
  transform: rotate(0deg);
}
.rankings .bonuses-sc .first-item .product-img-sc .ranking-number {
  background-color: #005EA8 !important;
  color: #FFFFFF !important;
}
.rankings .bonuses-sc .first-bonus-margin {
  margin-top: 16px;
}

.rankings .bonuses .bonus .product-bonus-details-sc .payment-icons-sc {
  display: flex;
  gap: 8px;
  margin: 0 !important;
}
.rankings .bonuses .bonus .product-bonus-details-sc .payment-icons-sc .payment-icon-holder {
  border-radius: 4px;
}
.rankings .bonuses .bonus .product-bonus-details-sc .payment-icons-sc .payment-icon-holder img.payment-icon {
  border-radius: 4px;
  box-shadow: 0px 0px 8px 0px rgba(29, 50, 69, 0.12);
}

.product-bonus-details-sc {
  gap: 16px;
  padding: 16px 0px 0px 0px;
}

.payment-methods-sc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid #F4F4F4;
  background: #F4F4F4;
  grid-area: payment-methods;
  padding: 8px;
}
.payment-methods-sc .col-title-sc {
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}
.payment-methods-sc .col-title-sc span {
  color: #333;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
@media (min-width: 768px) {
  .payment-methods-sc {
    width: 304px;
    gap: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .payment-methods-sc {
    width: 100%;
  }
}

.bonus-details-sc,
.bonus-details-sc-bonus,
.app-availability-sc {
  color: #333;
}
.bonus-details-sc ul,
.bonus-details-sc-bonus ul,
.app-availability-sc ul {
  margin: 0 !important;
  list-style-type: none;
  display: flex;
}
.bonus-details-sc ul li::before,
.bonus-details-sc-bonus ul li::before,
.app-availability-sc ul li::before {
  display: none;
}
.bonus-details-sc .col-title-sc,
.bonus-details-sc-bonus .col-title-sc,
.app-availability-sc .col-title-sc {
  margin-bottom: 8px;
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.minimum-deposit-sc,
.withdraw-time-sc,
.licenses-sc,
.product-apps-sc {
  border-radius: 8px;
  border: 1px solid #F4F4F4;
  background: #F4F4F4;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  width: 100%;
  color: #333;
}
.minimum-deposit-sc .col-title-sc,
.withdraw-time-sc .col-title-sc,
.licenses-sc .col-title-sc,
.product-apps-sc .col-title-sc {
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}
@media (min-width: 768px) {
  .minimum-deposit-sc,
  .withdraw-time-sc,
  .licenses-sc,
  .product-apps-sc {
    height: fit-content;
    width: auto;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .minimum-deposit-sc,
  .withdraw-time-sc,
  .licenses-sc,
  .product-apps-sc {
    height: auto;
  }
}

.star-sc .product-rating {
  justify-content: flex-start;
  align-items: center;
}
.star-sc .product-rating .number {
  background-color: #F4F4F4;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  margin-right: 8px;
  padding: 1px 8px;
  border-radius: 100px;
  color: #212121;
}
.star-sc .product-rating .ranking-stars-sc {
  background-color: #F4F4F4;
  padding: 0px 8px;
  border-radius: 100px;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-right: 8px;
}
.star-sc .product-rating .ranking-stars-sc .star-svg {
  width: 17px;
  height: 16px;
}
@media (min-width: 768px) {
  .star-sc .product-rating .ranking-stars-sc .star-svg {
    display: none;
  }
}
.star-sc .product-rating .ranking-stars-sc .number-ranking {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: #0F172B;
}
.star-sc .product-rating .ranking-stars-wrapper {
  display: none;
}
@media (min-width: 768px) {
  .star-sc .product-rating .ranking-stars-wrapper {
    display: flex;
  }
}

ul.k-pros-cons-sc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-block: 0 !important;
  margin-left: 0px !important;
}
@media (min-width: 768px) {
  ul.k-pros-cons-sc {
    padding: 0px 25.5px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  ul.k-pros-cons-sc {
    padding: 0;
  }
}
ul.k-pros-cons-sc li {
  font-size: 14px;
  line-height: 140%;
  position: relative;
  padding-left: var(--padding-3x);
  margin-bottom: 0px;
}
ul.k-pros-cons-sc li:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 1px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 19 19" fill="none"><path d="M13.1402 7.89016C13.2866 7.74372 13.2866 7.50628 13.1402 7.35984C12.9937 7.21339 12.7563 7.21339 12.6098 7.35984L8.375 11.5947L6.39016 9.60983C6.24372 9.46339 6.00628 9.46339 5.85984 9.60983C5.71339 9.75628 5.71339 9.99372 5.85984 10.1402L8.10984 12.3902C8.25628 12.5366 8.49372 12.5366 8.64016 12.3902L13.1402 7.89016Z" fill="%235AAD1E"/><path fill-rule="evenodd" clip-rule="evenodd" d="M16.25 9.5C16.25 13.2279 13.2279 16.25 9.5 16.25C5.77208 16.25 2.75 13.2279 2.75 9.5C2.75 5.77208 5.77208 2.75 9.5 2.75C13.2279 2.75 16.25 5.77208 16.25 9.5ZM15.5 9.5C15.5 12.8137 12.8137 15.5 9.5 15.5C6.18629 15.5 3.5 12.8137 3.5 9.5C3.5 6.18629 6.18629 3.5 9.5 3.5C12.8137 3.5 15.5 6.18629 15.5 9.5Z" fill="%235AAD1E"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}
ul.k-pros-cons-sc.k-cons li:before {
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 19 19" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M16.25 9.5C16.25 13.2279 13.2279 16.25 9.5 16.25C5.77208 16.25 2.75 13.2279 2.75 9.5C2.75 5.77208 5.77208 2.75 9.5 2.75C13.2279 2.75 16.25 5.77208 16.25 9.5ZM15.5 9.5C15.5 12.8137 12.8137 15.5 9.5 15.5C6.18629 15.5 3.5 12.8137 3.5 9.5C3.5 6.18629 6.18629 3.5 9.5 3.5C12.8137 3.5 15.5 6.18629 15.5 9.5Z" fill="%23EB3336"/><path fill-rule="evenodd" clip-rule="evenodd" d="M6.60984 6.60984C6.75628 6.46339 6.99372 6.46339 7.14016 6.60984L9.5 8.96967L11.8598 6.60984C12.0063 6.46339 12.2437 6.46339 12.3902 6.60984C12.5366 6.75628 12.5366 6.99372 12.3902 7.14016L10.0303 9.5L12.3902 11.8598C12.5366 12.0063 12.5366 12.2437 12.3902 12.3902C12.2437 12.5366 12.0063 12.5366 11.8598 12.3902L9.5 10.0303L7.14016 12.3902C6.99372 12.5366 6.75628 12.5366 6.60984 12.3902C6.46339 12.2437 6.46339 12.0063 6.60984 11.8598L8.96967 9.5L6.60984 7.14016C6.46339 6.99372 6.46339 6.75628 6.60984 6.60984Z" fill="%23EB3336"/></svg>');
}

.ranking-disclaimer-sc {
  margin-top: 24px;
  font-size: var(--font-size-xxs);
  line-height: var(--line-height-small);
  color: #1F263D;
}

.without-dropdown-style {
  padding-bottom: 16px !important;
}

.bonus-details-ao {
  grid-area: bonus-details-ao;
  padding: 8px 0px 0px 8px;
  display: none !important;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .bonus-details-ao {
    display: block !important;
  }
}

.bonus-details-sc {
  grid-area: bonus-details-sc;
  display: block;
  padding: 16px 0px 0px 0px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .bonus-details-sc {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .bonus-details-sc {
    padding: 24px 0px 8px 8px;
  }
}

.bonus-details-sc-bonus {
  grid-area: bonus-details-sc-bonus;
  display: block;
  padding: 16px 0px 0px 0px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .bonus-details-sc-bonus {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .bonus-details-sc-bonus {
    padding: 24px 0px 8px 8px;
  }
}

.terms-conditons-text {
  color: #9598a1 !important;
  font-size: 12px;
}

.rankings .ranking-filters-wrapper {
  padding: 0;
  margin: 0;
}
.rankings .ranking-filters-wrapper .ranking-filters-toggle {
  margin-bottom: 12px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}
.rankings .ranking-filters-wrapper .ranking-filters-toggle:hover {
  color: #0b63ff;
}
.rankings .ranking-filters-wrapper .ranking-filters-toggle .filter-toggle-icon {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s;
}
.rankings .ranking-filters-wrapper .ranking-filters-toggle .filter-toggle-icon svg {
  width: 16px;
  height: 16px;
}
.rankings .ranking-filters-wrapper .ranking-filters-toggle.active .filter-toggle-icon {
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .rankings .ranking-filters-wrapper {
    padding-left: 0;
    margin: 10px 0;
  }
}
.rankings .ranking-filters-wrapper.filters-with-bonus-label {
  margin-bottom: 24px;
}
.rankings .ranking-filters-wrapper .ranking-filters {
  position: relative;
}
.rankings .ranking-filters-wrapper .ranking-filters .filters-list {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0 !important;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}
.rankings .ranking-filters-wrapper .ranking-filters .filters-list::-webkit-scrollbar {
  display: none;
}
.rankings .ranking-filters-wrapper .ranking-filters .filters-list .filter-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 400;
  border-radius: 9999px;
  border: 1px solid #CAD5E2;
  box-shadow: 0 2px 2px 0 rgba(50, 50, 71, 0.06), 0 2px 4px 0 rgba(50, 50, 71, 0.06);
  padding: 6px 8px 6px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #F8FAFC;
  transition: background-color 0.3s ease;
}
.rankings .ranking-filters-wrapper .ranking-filters .filters-list .filter-item .filter-label {
  color: #45556C;
  min-width: max-content;
}
.rankings .ranking-filters-wrapper .ranking-filters .filters-list .filter-item .filter-count {
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  min-width: 32px;
  min-height: 32px;
  background-color: #E2E8F0;
}
.rankings .ranking-filters-wrapper .ranking-filters .filters-list .filter-item.filter-all {
  padding-left: 14px;
  padding-right: 14px;
}
.rankings .ranking-filters-wrapper .ranking-filters .filters-list .filter-item.active {
  font-weight: 700;
  background: #51A2FF;
}
.rankings .ranking-filters-wrapper .ranking-filters .filters-list .filter-item.active .filter-label {
  color: #F8FAFC;
}
.rankings .ranking-filters-wrapper .ranking-filters .filters-list .filter-item.active .filter-count {
  min-width: 41px;
  color: #F8FAFC;
  background: #155DFC;
}
.rankings .ranking-sort {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  max-width: 311px;
  height: 40px;
  padding: 8px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  background: var(--ranking-sort-wrapper-bg-theme);
}
@media (max-width: 576px) {
  .rankings .ranking-sort {
    max-width: 100%;
  }
}
.rankings .ranking-sort .ranking-sort-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  color: #020202;
  margin-right: 4px;
}
.rankings .ranking-sort .ranking-sort-icon svg {
  width: 16px;
}
.rankings .ranking-sort .ranking-sort-field {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.rankings .ranking-sort .ranking-sort-label {
  font-size: 14px;
  font-weight: 500;
  color: #020202;
  white-space: nowrap;
}
.rankings .ranking-sort .ranking-sort-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .rankings .ranking-sort .ranking-sort-dropdown {
    flex: 1;
  }
}
.rankings .ranking-sort .ranking-sort-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 32px;
  width: 100%;
  min-width: 179px;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  color: #020202;
  cursor: pointer;
}
.rankings .ranking-sort .ranking-sort-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #020202;
  transition: transform 0.2s ease;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
  margin: 0 5px 0 15px;
}
.rankings .ranking-sort .ranking-sort-arrow:focus {
  outline: 0;
  outline-offset: 0px;
}
.rankings .ranking-sort .ranking-sort-arrow.is-open {
  transform: rotate(180deg);
}
.rankings .ranking-sort .ranking-sort-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 4px 0 0 !important;
  width: 100%;
  min-width: 0;
  padding: 8px;
  background: #FFFFFF;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 16px 16px 0 rgba(50, 50, 71, 0.08), 0 24px 32px 0 rgba(50, 50, 71, 0.08);
  z-index: 1000;
  overflow: visible;
}
.rankings .ranking-sort .ranking-sort-list[hidden] {
  display: none;
}
.rankings .ranking-sort .ranking-sort-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px;
  font-size: 14px;
  border-radius: 6px;
  margin-bottom: 0;
  cursor: pointer;
  list-style: none;
}
.rankings .ranking-sort .ranking-sort-opt:hover {
  background-color: #F1F5F9;
}
.rankings .ranking-sort .ranking-sort-opt[aria-selected=true] {
  font-weight: 500;
  background: #E2E8F0;
}
.rankings .ranking-sort .ranking-sort-opt-icon {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  color: #94a3b8;
  cursor: help;
}
.rankings .ranking-sort .ranking-sort-opt-icon svg {
  width: 14px;
  height: 14px;
}
.rankings .ranking-sort .ranking-sort-opt-icon .ranking-sort-opt-tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 6px 10px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
  color: #0F172B;
  background-color: #E2E8F0;
  border-radius: 6px;
  white-space: normal;
  box-shadow: 0 4px 4px 0 rgba(50, 50, 71, 0.08), 0 4px 8px 0 rgba(50, 50, 71, 0.06);
  max-width: 343px;
  width: 343px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, visibility 0.15s;
  pointer-events: none;
  z-index: 11;
}
.rankings .ranking-sort .ranking-sort-opt-icon .ranking-sort-opt-tooltip::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #E2E8F0;
}
@media (max-width: 575px) {
  .rankings .ranking-sort .ranking-sort-opt-icon .ranking-sort-opt-tooltip::before {
    left: calc(100% - 24px);
  }
}
.rankings .ranking-sort .ranking-sort-opt-icon:hover .ranking-sort-opt-tooltip {
  opacity: 1;
  visibility: visible;
}
.rankings .ranking-trust-sources-btn {
  margin-top: 8px;
  font-size: var(--font-size-s);
  line-height: var(--line-height-small);
  color: #525252;
  padding: 0;
  text-decoration: underline;
  background-color: transparent;
  border: 0 none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.2s ease;
  font-weight: 400;
}
.rankings .ranking-trust-sources-btn .ranking-trust-sources-btn-icon {
  width: 14px;
  height: 17px;
  margin-right: 4px;
  flex-shrink: 0;
  fill: currentColor;
}
.rankings .ranking-trust-sources-btn:focus {
  outline: none;
  outline-offset: 0px;
}
.rankings .ranking-trust-sources-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rankings .ranking-trust-sources-modal[hidden] {
  display: none;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 38, 61, 0.8);
  backdrop-filter: blur(8px);
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-container {
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  max-width: 430px;
  width: 90%;
  max-height: 430px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: opacity 0.2s ease;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-close:hover {
  opacity: 0.7;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-close:focus {
  outline: 0 none;
  outline-offset: 0px;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-close svg {
  display: block;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-header {
  padding: 0;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-score-heading-wrapper {
  display: flex;
  justify-content: center;
  margin: 0 0 16px 0;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-score-heading-circle {
  position: relative;
  width: 70px;
  height: 70px;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-score-heading-svg {
  width: 100%;
  height: 100%;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-score-heading-circle-bg {
  display: none;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-score-heading-circle-progress {
  fill: none;
  stroke: #005EA8;
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dasharray 1s ease-out, stroke 0.3s ease-in-out;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-score-heading-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-family: var(--font-family-primary);
  font-size: 18px;
  line-height: 1.2;
  color: #0F172B;
  z-index: 1;
  transition: color 0.3s ease-in-out;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-score-heading-circle.score-orange .ranking-trust-sources-modal-score-heading-circle-progress {
  stroke: #E17100;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-score-heading-circle.score-yellow .ranking-trust-sources-modal-score-heading-circle-progress {
  stroke: #FFB900;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-score-heading-circle.score-green .ranking-trust-sources-modal-score-heading-circle-progress {
  stroke: #5AAD1E;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-score-heading-circle.score-default .ranking-trust-sources-modal-score-heading-circle-progress {
  stroke: #005EA8;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-title {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-standard);
  margin: 0 !important;
  font-weight: 600;
  color: #212121;
  text-align: center;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-subtitle {
  margin: 8px 0 0 0;
  font-size: 14px;
  line-height: var(--line-height-standard);
  font-weight: 400;
  color: #666666;
  text-align: center;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-body {
  padding: 0px;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-list {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  gap: 16px;
  height: 220px;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-list::-webkit-scrollbar {
  width: 6px;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-list::-webkit-scrollbar-track {
  border-radius: 20px;
  background-color: #e7e7e7;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-list::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #000000;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-item {
  display: flex;
  align-items: center;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-logo {
  flex-shrink: 0;
  width: 80px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E7F5FC;
  border-radius: 8px;
  padding: 12px 4px;
  margin-right: 16px;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-info {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-name {
  margin: 0;
  font-family: var(--font-family-primary) !important;
  font-size: var(--font-size-m);
  line-height: var(--line-height-standard);
  font-weight: 400;
  margin-bottom: 0 !important;
  color: #525252;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-score {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 8px;
  gap: 8px;
  font-size: var(--font-size-s);
  line-height: var(--line-height-small);
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-score-circle {
  position: relative;
  width: 37px;
  height: 37px;
  flex-shrink: 0;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-score-svg {
  width: 100%;
  height: 100%;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-score-circle-bg {
  display: none;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-score-circle-progress {
  fill: none;
  stroke: #005EA8;
  stroke-width: 4;
  stroke-linecap: round;
  transition: stroke-dasharray 1s ease-out, stroke 0.3s ease-in-out;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-score-circle.score-orange .ranking-trust-sources-modal-score-circle-progress {
  stroke: #E17100;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-score-circle.score-yellow .ranking-trust-sources-modal-score-circle-progress {
  stroke: #FFB900;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-score-circle.score-green .ranking-trust-sources-modal-score-circle-progress {
  stroke: #5AAD1E;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-score-circle.score-default .ranking-trust-sources-modal-score-circle-progress {
  stroke: #005EA8;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-score-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: var(--font-size-s);
  color: #0F172B;
  z-index: 1;
  transition: color 0.3s ease-in-out;
}
.rankings .ranking-trust-sources-modal .ranking-trust-sources-modal-score-label {
  color: #666666;
}

body.vertical-trust .ranking-sort {
  background-color: #F0F9FF;
}
body.vertical-sport .ranking-sort {
  background-color: #F1FAEA;
}

.kfr-comparison-tray {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #F1F5F9;
  margin: 0 auto;
  border: 1px solid #CAD5E2;
  transform: translateY(100%);
  transition: transform 0.2s ease;
  border-radius: 8px;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0));
  max-width: 616px;
  box-shadow: 0 -6px 16px 0 rgba(50, 50, 71, 0.1);
}
@media (max-width: 767px) {
  .kfr-comparison-tray {
    border-radius: 0;
  }
}

.kfr-comparison-tray-visible {
  transform: translateY(0);
  padding: 0 16px;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.kfr-comparison-tray-expanded {
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0));
}

.kfr-comparison-tray-mobile-collapsed {
  display: none;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.kfr-comparison-tray-mobile-label {
  font-size: 14px;
  color: #0f172a;
  font-weight: 500;
}

.kfr-comparison-tray-count {
  font-weight: 400;
}

.kfr-comparison-tray-mobile-close {
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: #64748b;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.kfr-comparison-tray-mobile-close:hover {
  color: #0f172a;
  background: rgba(15, 23, 42, 0.06);
}

@media (max-width: 767px) {
  .kfr-comparison-tray-visible .kfr-comparison-tray-mobile-collapsed {
    display: flex;
  }
  .kfr-comparison-tray-visible:not(.kfr-comparison-tray-expanded) .kfr-comparison-tray-inner {
    display: none;
  }
  .kfr-comparison-tray-visible.kfr-comparison-tray-expanded .kfr-comparison-tray-mobile-collapsed {
    display: none;
  }
}
.kfr-comparison-tray-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.kfr-comparison-tray-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.kfr-comparison-tray-item,
.kfr-comparison-tray-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 100px;
  width: 100px;
  height: 60px;
  border: 1px dashed #CAD5E2;
  background: #FFFFFF;
  border-radius: 12px;
}

.kfr-comparison-tray-item {
  position: relative;
  gap: 6px;
  padding: 6px;
}

.kfr-comparison-tray-placeholder {
  color: #94a3b8;
  pointer-events: none;
}

@media (max-width: 767px) {
  .kfr-comparison-tray-item,
  .kfr-comparison-tray-placeholder {
    flex: 0 0 60px;
    width: 60px;
  }
}
.kfr-comparison-tray-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

.kfr-comparison-tray-placeholder-icon {
  font-size: 14px;
  line-height: 1;
}

.kfr-comparison-tray-remove {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #DBEAFE;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  z-index: 1;
}

.kfr-comparison-tray-collapse {
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  left: 50%;
  bottom: 100%;
  position: absolute;
  transform: translate(-50%, 0) rotate(180deg);
}

@media (max-width: 767px) {
  .kfr-comparison-tray-visible .kfr-comparison-tray-collapse {
    display: flex;
  }
  .kfr-comparison-tray-visible .kfr-comparison-tray-collapse .kfr-comparison-tray-collapse-circle svg {
    transform: rotate(180deg);
  }
  .kfr-comparison-tray-expanded .kfr-comparison-tray-collapse .kfr-comparison-tray-collapse-circle svg {
    transform: rotate(0deg);
  }
}
.kfr-comparison-tray-collapse-circle {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: #F1F5F9;
  border: 1px solid #CCDDEB;
  border-radius: 1000px;
  width: 36px;
  height: 38px;
  margin-top: -17px;
  clip-path: inset(44% 0 0 0);
}

.kfr-comparison-tray-collapse-circle svg {
  transform: rotate(180deg);
}

.kfr-comparison-tray-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 12px;
  flex: 1;
}

.kfr-comparison-tray-compare {
  border-radius: var(--kfr-compare-btn-radius);
  border: 1px solid var(--kfr-compare-btn-border);
  background: var(--kfr-compare-btn-bg);
  color: var(--kfr-compare-tray-btn-color);
  box-shadow: 0 2px 8px 0 rgba(222, 216, 240, 0.5);
  font-size: 16px;
  font-style: normal;
  cursor: pointer;
  font-weight: 700;
  flex: 1;
  height: 40px;
  text-align: center;
}

.kfr-comparison-tray-compare:hover {
  border-color: var(--kfr-compare-btn-hover-border);
  background: var(--kfr-compare-btn-hover-bg);
  color: var(--kfr-compare-tray-btn-hover-color);
}

.kfr-comparison-tray-compare:disabled {
  background-color: #E2E8F0;
  border: none;
  box-shadow: none;
  color: #90A1B9;
  cursor: not-allowed;
}

.kfr-comparison-tray-compare:not(:disabled):hover {
  opacity: 0.9;
}

.kfr-comparison-tray-compare:focus {
  color: var(--kfr-compare-tray-btn-color);
}

.kfr-comparison-tray-close {
  background: none;
  border: none;
  position: absolute;
  top: 6px;
  right: 9px;
  cursor: pointer;
  padding: 0;
}

.kfr-comparison-toast {
  position: fixed;
  bottom: 105px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  padding: 12px 20px;
  background: #FEF9C2;
  border: 1px solid #FFD230;
  color: #000000;
  font-size: 14px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

@media (max-width: 767px) {
  .kfr-comparison-toast {
    z-index: 999;
    bottom: calc(120px + env(safe-area-inset-bottom, 0));
    width: 90%;
  }
}
.kfr-comparison-toast-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.rankings .bonuses .kfr-compare-casino-sc {
  width: calc(100% + 32px);
  margin-left: -16px;
  padding: 8px 16px;
  border-top: 1px solid #CAD5E2;
  min-height: 32px;
}

.rankings .bonus-table-compact-sc .kfr-compare-casino-sc--compact {
  width: 100%;
  margin: 0;
  border-top: 1px solid #CAD5E2;
  min-height: 32px;
}

.rankings .bonuses .kfr-compare-casino-label {
  font-size: 14px;
  cursor: pointer;
  font-weight: 400;
  font-style: normal;
  color: #262626;
  margin: 0;
}

.rankings .bonuses .kfr-compare-casino-input {
  margin: 0;
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
  border-radius: 2px;
  border: 1px solid #CAD5E2;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.rankings .bonuses .kfr-compare-casino-input:hover {
  background: #F1F5F9;
  border-color: #CAD5E2;
}

.rankings .bonuses .kfr-compare-casino-input:checked {
  background-color: var(--kfr-compare-checkbox-checked-bg);
  border: 0.5px solid #F1F5F9;
}

.rankings .bonuses .kfr-compare-casino-input:checked::before {
  content: "";
  width: 9px;
  height: 7px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7' fill='none'><path d='M9.13333 0.2C8.86667 -0.0666667 8.46667 -0.0666667 8.2 0.2L3.2 5.2L1.13333 3.13333C0.866666 2.86667 0.466667 2.86667 0.2 3.13333C-0.0666667 3.4 -0.0666667 3.8 0.2 4.06667L2.73333 6.6C2.86667 6.73333 3 6.8 3.2 6.8C3.4 6.8 3.53333 6.73333 3.66667 6.6L9.13333 1.13333C9.4 0.866667 9.4 0.466667 9.13333 0.2Z' fill='%23F8FAFC'/></svg>");
}

.kfr-comparison-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  pointer-events: none;
}

.kfr-comparison-modal[hidden] {
  display: none !important;
}

.kfr-comparison-modal-visible {
  pointer-events: auto;
}

.kfr-comparison-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(29, 41, 61, 0.88);
  z-index: 0;
}

.kfr-comparison-modal-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kfr-comparison-modal-content {
  position: relative;
  width: 100%;
  max-width: 723px;
  padding: 24px 16px 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.kfr-comparison-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.kfr-comparison-modal-close:hover {
  color: #0f172a;
  background: rgba(15, 23, 42, 0.06);
}

.kfr-comparison-modal-back {
  display: none;
}

.kfr-comparison-modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #0F172B;
  margin: 0 0 16px;
}

.kfr-comparison-modal-loading {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  z-index: 2;
  border-radius: 8px;
}

.kfr-comparison-modal-loading-state .kfr-comparison-modal-loading {
  display: flex;
}

.kfr-comparison-modal-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid #e2e8f0;
  border-top-color: #0f172a;
  border-radius: 50%;
  animation: kfr-cm-spin 0.7s linear infinite;
}

@media (max-width: 767px) {
  .kfr-comparison-modal {
    top: var(--header-bar-height);
    z-index: 9999;
    padding: 0;
    align-items: stretch;
    justify-content: flex-start;
  }
  .kfr-comparison-modal-backdrop {
    display: none;
  }
  .kfr-comparison-modal-container {
    align-items: stretch;
    justify-content: flex-start;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .kfr-comparison-modal-content {
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    padding: 12px 16px 16px;
  }
  .kfr-comparison-modal-close {
    display: none;
  }
  .kfr-comparison-modal-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    padding: 0;
    border: none;
    background: none;
    font-weight: 400;
    font-size: 14px;
    color: #525252;
    cursor: pointer;
  }
}
@keyframes kfr-cm-spin {
  to {
    transform: rotate(360deg);
  }
}
.kfr-cm-table-header {
  position: relative;
  z-index: 2;
  border-radius: 6px;
  overflow: visible;
  background: #F1F5F9;
  border-bottom: 0;
}

.kfr-cm-table-header .kfr-cm-row {
  border: 1px solid #90A1B9 !important;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .kfr-cm-table-header {
    position: sticky;
    top: 0;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
}
.kfr-cm-table-body {
  position: relative;
  z-index: 1;
  border: 1px solid #E2E8F0;
  border-radius: 0;
  overflow: hidden;
  border-top: 0;
  border-bottom: 0;
  background: #ffffff;
}

.kfr-cm-table-footer {
  border: 1px solid #E2E8F0;
  border-top: 0;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  background: #fff;
}

@media (max-width: 767px) {
  .kfr-cm-table-footer.kfr-cm-table-footer-is-sticky {
    position: sticky;
    bottom: 0;
    z-index: 2;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  }
  .kfr-cm-table-footer.kfr-cm-table-footer-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
}
.kfr-cm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 768px) {
  .kfr-cm-table-cols-3 .kfr-cm-row {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.kfr-cm-row:last-child {
  border-bottom: none;
}
@media (max-width: 767px) {
  .kfr-cm-row:last-child {
    border-bottom: 1px solid #E2E8F0;
  }
}

.kfr-cm-row--last-in-body {
  border-bottom: none;
}
@media (max-width: 767px) {
  .kfr-cm-row--last-in-body {
    border-bottom: 1px solid #E2E8F0;
  }
}

.kfr-cm-row-label {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  text-transform: capitalize;
  height: 24px;
  font-weight: 600;
  color: #64748b;
  padding: 8px;
  background-color: #F1F5F9;
}

.kfr-cm-row-label:empty {
  display: none;
}

.kfr-cm-row-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  min-height: 48px;
  min-width: 0;
  font-weight: 700;
  font-size: 14px;
  color: #0f172a;
  border-right: 1px solid #E2E8F0;
}

@media (max-width: 767px) {
  .kfr-cm-row-cell {
    min-width: 0px;
  }
}
.kfr-cm-table:not(.kfr-cm-table-cols-3) .kfr-cm-row-cell:nth-child(3) {
  border-right: none;
}

.kfr-cm-table:not(.kfr-cm-table-cols-3) .kfr-cm-row-header .kfr-cm-row-cell[data-col="1"] {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.kfr-cm-row-cell:last-child {
  border-right: none;
}

.kfr-cm-row-cell-desktop {
  display: none;
}

@media (min-width: 768px) {
  .kfr-cm-row-cell-desktop {
    display: flex;
  }
}
.kfr-cm-row-cell-winner {
  background: var(--kfr-winner-bg);
  border: 1px solid var(--kfr-winner-border) !important;
  position: relative;
}

.kfr-cm-row-header {
  background: #F1F5F9;
}

.kfr-cm-row-header .kfr-cm-row-label {
  display: none;
}

.kfr-cm-row-header .kfr-cm-row-cell {
  justify-content: flex-start;
  border-right-color: #90A1B9;
}
.kfr-cm-row-header .kfr-cm-row-cell:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.kfr-cm-row-header .kfr-cm-row-cell:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.kfr-cm-row-header .kfr-cm-row-cell:has(.kfr-cm-dropdown-open) {
  background: #ffffff;
}

.kfr-cm-row-header .kfr-cm-row-cell[data-col="0"]:has(.kfr-cm-dropdown-open) {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.kfr-cm-row-cta .kfr-cm-row-cell {
  padding: 16px;
  height: auto;
}

.kfr-cm-table-footer:not(.kfr-cm-table-footer-is-sticky):not(.kfr-cm-table-footer-fixed) .kfr-cm-row-cell {
  border-bottom: 1px solid #E2E8F0;
}

.kfr-cm-table-footer.kfr-cm-table-footer-is-sticky .kfr-cm-row-cell,
.kfr-cm-table-footer.kfr-cm-table-footer-fixed .kfr-cm-row-cell {
  border-bottom: 0;
}

.kfr-cm-operator {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  min-width: 0;
  cursor: pointer;
}

.kfr-cm-operator-logo {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
}

.kfr-cm-operator-logo-loading {
  background: #f1f5f9;
}

.kfr-cm-operator-name {
  font-weight: 600;
  font-size: 16px;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 0 1 auto;
  min-width: 0;
}

@media (max-width: 767px) {
  .kfr-cm-operator-name {
    font-size: 12px;
  }
}
.kfr-cm-stars {
  display: inline-flex;
  align-items: center;
}

.kfr-cm-star-svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.kfr-cm-rating-value {
  font-size: 16px;
  color: #0F172B;
  font-weight: 700;
  margin-left: 4px;
  font-family: "Source Sans Pro", sans-serif;
}

.kfr-comparison-modal .bonus-code {
  border: 2px dashed var(--kfr-code-wrap-border, #5AAD1E);
  padding: 6px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 8px;
  border-radius: 4px;
  color: #0F172B;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  height: 32px;
  min-width: 120px;
  width: 100%;
  background: var(--kfr-code-wrap-bg, transparent);
}
.kfr-comparison-modal .bonus-code .bonus-code-note {
  display: block;
  opacity: 1;
  width: auto;
  text-align: center;
  position: absolute;
  top: -9px;
  left: 7px;
  font-size: 12px;
  padding: 0 5px;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
  background-color: #ffffff;
  color: var(--kfr-bonus-code-note-color, #0F172B);
  pointer-events: none;
}
.kfr-comparison-modal .bonus-code .bonus-code-text {
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
}
.kfr-comparison-modal .bonus-code .bonus-code-copied-text {
  display: none;
  width: 100%;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
}
.kfr-comparison-modal .bonus-code .bonus-code-icon {
  flex-shrink: 0;
}
.kfr-comparison-modal .bonus-code .bonus-code-icon--hover, .kfr-comparison-modal .bonus-code .bonus-code-icon--copied {
  display: none;
}
.kfr-comparison-modal .bonus-code:hover:not(.bonus-code--empty) {
  background-color: var(--kfr-code-wrap-hover-bg, #5AAD1E);
  color: #F8FAFC;
  border-style: solid;
  border-color: var(--kfr-code-wrap-hover-bg, #5AAD1E);
}
.kfr-comparison-modal .bonus-code:hover:not(.bonus-code--empty) .bonus-code-icon--default {
  display: none;
}
.kfr-comparison-modal .bonus-code:hover:not(.bonus-code--empty) .bonus-code-icon--hover {
  display: block;
}
.kfr-comparison-modal .bonus-code:hover:not(.bonus-code--empty) .bonus-code-note {
  opacity: 0;
}
.kfr-comparison-modal .bonus-code--copied {
  background-color: #fff;
  color: #0f333d;
  border-style: dashed;
  border-color: var(--kfr-code-wrap-border, #5AAD1E);
  pointer-events: none;
}
.kfr-comparison-modal .bonus-code--copied .bonus-code-text {
  display: none;
}
.kfr-comparison-modal .bonus-code--copied .bonus-code-copied-text {
  display: block;
}
.kfr-comparison-modal .bonus-code--copied .bonus-code-icon--default,
.kfr-comparison-modal .bonus-code--copied .bonus-code-icon--hover {
  display: none;
}
.kfr-comparison-modal .bonus-code--copied .bonus-code-icon--copied {
  display: block;
}
.kfr-comparison-modal .bonus-code--empty {
  pointer-events: none;
  cursor: default;
}
.kfr-comparison-modal .bonus-code--empty .bonus-code-text {
  filter: blur(3px);
  font-size: 22px;
  margin-top: 11px;
  pointer-events: none;
  user-select: none;
}

.kfr-cm-review-link {
  font-size: 14px;
  color: #111EEE;
  font-weight: 400;
  text-decoration-line: underline;
  text-decoration-style: solid;
}

.kfr-cm-cta {
  min-width: 160px;
  display: block;
  text-align: center;
  height: 40px;
  line-height: 40px;
  padding: 0 16px;
  border-radius: var(--kfr-cta-radius);
  border: 1px solid var(--kfr-cta-border);
  background: linear-gradient(90deg, var(--kfr-cta-bg-start) 0%, var(--kfr-cta-bg-end) 100%);
  box-shadow: 0 2px 8px 0 rgba(222, 216, 240, 0.5);
  font-size: 16px;
  color: var(--kfr-cta-color);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.kfr-cm-cta:hover {
  border-color: var(--kfr-cta-hover-border);
  color: var(--kfr-cta-color);
  text-decoration: none;
  background: linear-gradient(90deg, var(--kfr-cta-hover-bg-start) 0%, var(--kfr-cta-hover-bg-end) 100%);
}

.kfr-cm-cta:visited {
  color: var(--kfr-cta-color);
  text-decoration: none;
}

.kfr-cm-cta:focus {
  color: var(--kfr-cta-color);
  text-decoration: none;
}

.kfr-cm-dropdown {
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
}

.kfr-cm-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  color: #0F172B;
  transition: border-color 0.15s;
}

.kfr-cm-dropdown-list {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  width: 311px;
  min-width: 0;
  z-index: 10;
  max-height: 240px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #90A1B9;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 4px;
  margin: 0;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: #0B1215 #E2E8F0;
}

@media (max-width: 767px) {
  .kfr-cm-dropdown-list {
    left: auto;
    right: 0;
  }
}
.kfr-cm-dropdown-list::-webkit-scrollbar {
  width: 6px;
}

.kfr-cm-dropdown-list::-webkit-scrollbar-button {
  display: none;
}

.kfr-cm-dropdown-list::-webkit-scrollbar-track {
  background: #E2E8F0;
  border-radius: 9999px;
}

.kfr-cm-dropdown-list::-webkit-scrollbar-thumb {
  background: #0B1215;
  border-radius: 9999px;
}

.kfr-cm-dropdown-open + .kfr-cm-dropdown-list {
  display: block;
}

.kfr-cm-table.kfr-cm-table-cols-3 .kfr-cm-row-cell[data-col="2"] .kfr-cm-dropdown-list {
  left: auto;
  right: 0;
}

.kfr-cm-table:not(.kfr-cm-table-cols-3) .kfr-cm-row-cell[data-col="1"] .kfr-cm-dropdown-list {
  left: auto;
  right: 0;
}

.kfr-cm-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #0F172B;
  transition: background 0.1s;
}

.kfr-cm-dropdown-item:hover:not(.kfr-cm-dropdown-item-disabled):not(.kfr-cm-dropdown-item-current) {
  background: #F1F5F9;
}

.kfr-cm-dropdown-item-current {
  background: #E2E8F0;
  font-weight: 600;
  cursor: default;
}

.kfr-cm-dropdown-item-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.kfr-cm-dropdown-logo {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  object-fit: contain;
  flex-shrink: 0;
}

.kfr-cm-dropdown-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767px) {
  .kfr-cm-row-cell[data-col="0"] .kfr-cm-dropdown-list {
    left: 0;
    right: auto;
  }
}

/*# sourceMappingURL=rankings-style.css.map */
