@charset "UTF-8";
/* ==========================================================================
   PSDGator SCSS Styles [VARIABLES]
   Theme Settings
   ========================================================================== */
/* ========================================================== */
/* 			            01. general                               */
/* ========================================================== */
/* ========================================================== */
/* 			            02. grid                                  */
/* ========================================================== */
/* ========================================================== */
/* 			            03. utils                                 */
/* ========================================================== */
/* ========================================================== */
/* 			            04. breakpoints                           */
/* ========================================================== */
/* ========================================================== */
/* 			            05. css variables                         */
/* ========================================================== */
:root {
  /* html|body */
  --main-font-family: inherit;
  --headings-font-family: inherit;
  --main-font-size: 16px;
  --button-font-size: 16px;
  --button-font-weight: 400;
  --button-border-radius: 20px;
  --main-font-color: #323335;
  /* Headings */
  --headings-line-height: 1.2;
  --headings-font-weight: 700;
  --h1-font-size: min(11vw, 3.125rem);
  --h2-font-size: min(8vw, 2.25rem);
  --h3-font-size: 1.875rem;
  --h4-font-size: 1.75rem;
  --h5-font-size: 1.5rem;
  --h6-font-size: 1.2rem;
  --h1-margin: 1.563rem;
  --h3-margin: 1.25rem;
  /* All these are editable from the Customizer */
  --header-background: #ffffff;
  --header-background-secondary: #f0f3f7;
  --header-text-color: #1d2730;
  --header-text-color-hover: #44be4c;
  --white: #fff;
  --black: #000;
  --body-background: #ffffff;
  --main-color: #44be4c;
  --secondary-color: #ffc106;
  --text-color: #1d2730;
  --footer-text-color: #3f4813;
  --boxes-background-color: #f0f3f7;
  --boxes-secondary-background-color: #e8ecf2;
  --boxes-text-color: #4a5b68;
  --rating-color: #ffc106;
  --footer-background: #ffffff;
  --text-color-alt: #4a5b68;
  --line-separator-color: #e8ecf2;
  --border-radius: 8px;
  --text-color-alt-light: rgba(74, 91, 104, 0.1);
  --green-icon: #44be4c;
  --red-icon: #be444e;
  --faq-question-bg-color: #ffffff;
  --faq-answer-bg-color: #ffffff;
  --faq-question-text-color: #1d2730;
  --faq-answer-text-color: #1d2730;
  --faq-border-color: #ffffff;
  --faq-icon-color: #44be4c;
  --primary-button-color: #44be4c;
  --primary-button-color-opacity: rgba(68, 190, 76, 0.05);
  --primary-button-text-color: #fff;
  --secondary-button-color: #ffc106;
  --secondary-button-text-color: #fff;
  /* layout */
  --container-width: 1210px;
  --container-width-wp: 1180px;
  --container-pad: min(8vw, 15px);
  /*--> Place custom settings here <--*/
}

/* ========================================================== */
/* 			            05. scss variables                         */
/* ========================================================== */
/* ==========================================================================
   PSDGator SCSS FUNCTIONS [TYPES]

   A collection of function for advanced type checking
   ========================================================================== */
/* ==========================================================================
   PSDGator SCSS FUNCTIONS [INTERNAL]
   ========================================================================== */
/**
 * Replaces substring on a string variable
 */
/* ==========================================================================
   PSDGator SCSS FUNCTIONS [UNITS]
   ========================================================================== */
/**
 * Removes unit from value
 */
/**
 * Converts to rem values
 */
/* ==========================================================================
   PSDGator SCSS MIXINS [VARIOUS]
   ========================================================================== */
/**
 * Set placeholder color to inputs
 * Usage:
 * element{
 *   @placeholder-color(#cccccc)
 * }
 */
/**
 * Gives size to an element
 * Usage:
 * @include box(150, 450);
 */
/**
 * Truncates the text
 * Usage:
 * @include ellipsis-text();
 */
/**
 * Support for retina background images
 */
/**
 * A powerful shorthand for media queries
 */
/**
 * CSS Opacity with fallback for IE8+.
 * Usage:
 * .opacity-box { @include opacity(.4); }
 */
/**
 * Implementing font-size with rem units and pixel fallback.
 */
/**
 * Adds a cover background to an element
 * Usage:
 * div {
 *   background-image: url("banner.jpg");
 *   @include cover-background;
 * }
 */
/**
 * A quick placeholder maker (with custom size/colors/text)
 * Uses: https://placeholder.com/
 * Usage:
 * .thumb {
 *   @include placeholder-image(400, 200);
 *   width: 400px;
 *   height: 200px;
 * }
 */
/*
    Mixin transfrorm
*/
/* ==========================================================================
   PSDGator SCSS Styles [UTILITIES]

   A tiny utility-first CSS "framework"
   ========================================================================== */
.text-center {
  text-align: center;
}

.position-relative {
  position: relative;
}

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

.order-0 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
/* ==========================================================================
   PSDGator SCSS Styles [GRID]
   ========================================================================== */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.row--hcenter {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.row--vcenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/**
 * A small hack so we don't have to include max-width
 * with the appropriate percentage everywhere (less file size)
 *
 * Generally it works but it seems to fail when a col is
 * alone in its row (it will expand to 100%)
 */
/**
 * Builders
 */
/**
 * Generate everything
 */
.col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  max-width: 100%;
  width: auto;
}

/* Generate all column/offset classes */
.col-1 {
  -webkit-box-flex: 8.3333333333%;
      -ms-flex: 8.3333333333%;
          flex: 8.3333333333%;
  max-width: 8.3333333333%;
}

.off-1 {
  margin-left: 8.3333333333%;
}

.col-2 {
  -webkit-box-flex: 16.6666666667%;
      -ms-flex: 16.6666666667%;
          flex: 16.6666666667%;
  max-width: 16.6666666667%;
}

.off-2 {
  margin-left: 16.6666666667%;
}

.col-3 {
  -webkit-box-flex: 25%;
      -ms-flex: 25%;
          flex: 25%;
  max-width: 25%;
}

.off-3 {
  margin-left: 25%;
}

.col-4 {
  -webkit-box-flex: 33.3333333333%;
      -ms-flex: 33.3333333333%;
          flex: 33.3333333333%;
  max-width: 33.3333333333%;
}

.off-4 {
  margin-left: 33.3333333333%;
}

.col-5 {
  -webkit-box-flex: 41.6666666667%;
      -ms-flex: 41.6666666667%;
          flex: 41.6666666667%;
  max-width: 41.6666666667%;
}

.off-5 {
  margin-left: 41.6666666667%;
}

.col-6 {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  max-width: 50%;
}

.off-6 {
  margin-left: 50%;
}

.col-7 {
  -webkit-box-flex: 58.3333333333%;
      -ms-flex: 58.3333333333%;
          flex: 58.3333333333%;
  max-width: 58.3333333333%;
}

.off-7 {
  margin-left: 58.3333333333%;
}

.col-8 {
  -webkit-box-flex: 66.6666666667%;
      -ms-flex: 66.6666666667%;
          flex: 66.6666666667%;
  max-width: 66.6666666667%;
}

.off-8 {
  margin-left: 66.6666666667%;
}

.col-9 {
  -webkit-box-flex: 75%;
      -ms-flex: 75%;
          flex: 75%;
  max-width: 75%;
}

.off-9 {
  margin-left: 75%;
}

.col-10 {
  -webkit-box-flex: 83.3333333333%;
      -ms-flex: 83.3333333333%;
          flex: 83.3333333333%;
  max-width: 83.3333333333%;
}

.off-10 {
  margin-left: 83.3333333333%;
}

.col-11 {
  -webkit-box-flex: 91.6666666667%;
      -ms-flex: 91.6666666667%;
          flex: 91.6666666667%;
  max-width: 91.6666666667%;
}

.off-11 {
  margin-left: 91.6666666667%;
}

.col-12 {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  max-width: 100%;
}

.off-12 {
  margin-left: 100%;
}

/* Generate all gap classes */
.gap-20,
.gap-20-x {
  margin-left: -20px;
}
.gap-20 > *,
.gap-20-x > * {
  padding-left: 20px;
}

.gap-20,
.gap-20-y {
  margin-top: -20px;
}
.gap-20 > *,
.gap-20-y > * {
  padding-top: 20px;
}

.gap-30,
.gap-30-x {
  margin-left: -30px;
}
.gap-30 > *,
.gap-30-x > * {
  padding-left: 30px;
}

.gap-30,
.gap-30-y {
  margin-top: -30px;
}
.gap-30 > *,
.gap-30-y > * {
  padding-top: 30px;
}

.gap-50,
.gap-50-x {
  margin-left: -50px;
}
.gap-50 > *,
.gap-50-x > * {
  padding-left: 50px;
}

.gap-50,
.gap-50-y {
  margin-top: -50px;
}
.gap-50 > *,
.gap-50-y > * {
  padding-top: 50px;
}

/* Generate all responsive steps */
/* ==========================================================================
   PSDGator SCSS Styles [BASE]
   ========================================================================== */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

picture,
img {
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

/**
 * Helpers
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/**
 * The Container — modifiers only; base .container is owned by the active theme.
 */
.container--fluid {
  max-width: 100%;
}
.container--np {
  padding: 0;
}

/**
 * Global styles
 */
/* Box-sizing scoped to plugin components only — do not reset global margin/padding or fonts */
.poka-game-card,
.poka-game-card *,
.poka-casino-compare,
.poka-casino-compare *,
.poka-popular-slots,
.poka-popular-slots *,
.poka-verdict,
.poka-verdict *,
.poka-game-page,
.poka-game-page * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ========================================================== */
/* 			          Wordpress default styles                */
/* ========================================================== */
img.size-auto,
img.size-full,
img.size-large,
img.size-medium,
.attachment img,
.widget-container img {
  max-width: 100%;
  height: auto;
}

.alignleft,
img.alignleft {
  display: inline;
  float: left;
  margin-right: 1.875rem;
  margin-bottom: 1.25rem;
}

.alignright,
img.alignright {
  display: inline;
  float: right;
  margin-left: 1.875rem;
  margin-bottom: 1.25rem;
}

.aligncenter,
img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.alignleft,
img.alignright,
img.aligncenter {
  margin-bottom: 0.75rem;
}

.wp-caption {
  background: #f1f1f1;
  line-height: 18px;
  margin-bottom: 1.25rem;
  max-width: 632px !important;
  padding: 0.25rem;
  text-align: center;
  width: auto !important;
}

.wp-caption img {
  margin: 0;
}

.wp-caption p.wp-caption-text {
  color: #888;
  font-size: 0.75rem;
  margin: 0.3125rem;
}

.gallery {
  margin: 0 auto 1.125rem;
}

.gallery .gallery-item {
  float: left;
  margin-top: 0;
  text-align: center;
  width: 33%;
}

.gallery-columns-2 .gallery-item {
  width: 50%;
}

.gallery-columns-4 .gallery-item {
  width: 25%;
}

.gallery img {
  border: 0.625rem solid #f1f1f1;
}

.gallery-columns-2 .attachment-medium {
  max-width: 92%;
  height: auto;
}

.gallery-columns-4 .attachment-thumbnail {
  max-width: 84%;
  height: auto;
}

.gallery .gallery-caption {
  color: #888;
  font-size: 0.75rem;
  margin: 0 0 0.75rem;
}

.gallery br + br {
  display: none;
}

#content .attachment img {
  display: block;
  margin: 0 auto;
}

.wp-smiley,
.gallery dl {
  margin: 0;
}

@font-face {
  font-family: "pokatheme";
  src: url("../fonts/pokatheme.eot?v=1.2");
  src: url("../fonts/pokatheme.eot?#iefix") format("embedded-opentype"), url("../fonts/pokatheme.woff?v=1.2") format("woff"), url("../fonts/pokatheme.ttf?v=1.2") format("truetype"), url("../fonts/pokatheme.svg#pokatheme") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
[data-icon]:before {
  font-family: "pokatheme" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^=poka-]:before,
[class*=" poka-"]:before {
  font-family: "pokatheme" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.poka-facebook:before {
  content: "a";
}

.poka-twitter:before {
  content: "b";
}

.poka-instagram:before {
  content: "c";
}

.poka-youtube:before {
  content: "d";
}

.poka-linkedin:before {
  content: "e";
}

.poka-skype:before {
  content: "f";
}

.poka-search:before {
  content: "g";
}

.poka-star-half-o:before {
  content: "h";
}

.poka-star-o:before {
  content: "i";
}

.poka-star:before {
  content: "j";
}

.poka-arrow-right:before {
  content: "k";
}

.poka-play:before {
  content: "l";
}

.poka-circle-plus:before {
  content: "m";
}

.poka-circle-check:before {
  content: "n";
}

.poka-circle-x:before {
  content: "o";
}

.poka-circle-minus:before {
  content: "p";
}

.poka-star-line:before {
  content: "q";
}

.poka-calendar:before {
  content: "r";
}

.poka-list:before {
  content: "s";
}

.poka-close:before {
  content: "t";
}

.poka-angle-right:before {
  content: "v";
}

.poka-envelope:before {
  content: "u";
}

.poka-rocket:before {
  content: "w";
}

.poka-cards-mobile:before {
  content: "x";
}

.poka-credits:before {
  content: "y";
}

.poka-jackpot:before {
  content: "z";
}

.poka-slots:before {
  content: "B";
}

.poka-slots-2:before {
  content: "C";
}

.poka-bx-check:before {
  content: "A";
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:HEADER]
   ========================================================================== */
.site-header {
  -webkit-box-shadow: 0px 8px 9px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 8px 9px 0px rgba(0, 0, 0, 0.1);
  z-index: 100;
  position: relative;
  background-color: var(--header-background);
}

.header-top {
  position: relative;
  background-color: var(--header-background);
  padding: 1.875rem 0;
  z-index: 2;
}
.header-top .icon-btn--gray {
  background-color: var(--header-background-secondary);
  color: var(--header-text-color);
}

.site-header--style2 .header-top {
  -webkit-box-shadow: 0px 8px 9px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 8px 9px 0px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.header-top-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-header--style2 .header-top-flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 5.125rem;
}

.header-top-flex-part {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.header-top-flex-part--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header-top-flex-part--right .icon-btn {
  margin-left: 7px;
  cursor: pointer;
}
.header-top-flex-part--right .icon-btn.poka-close {
  font-size: 0.75rem;
}
.header-top-flex-part--right .icon-btn:first-child {
  margin-left: 0;
}
.header-top-flex-part--right .btn-mobile-menu {
  display: none;
}

.site-header--style2 .header-top-flex-part {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.site-header--style2 .header-top-flex-part.header-top-flex-part--left {
  padding-right: 15px;
}

.header-logo {
  text-align: center;
}

.header-logo img {
  max-height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.site-header--style2 .header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  position: relative;
}
.site-header--style2 .header-logo::after {
  content: "";
  position: absolute;
  background: var(--main-color);
  width: 100%;
  height: 4px;
  left: 0;
  bottom: 0;
}

.header-right-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-bottom {
  position: relative;
  background-color: var(--header-background-secondary);
}

.site-header--style2 .header-bottom {
  z-index: 3;
}

.header-bottom-inner {
  position: relative;
}

.header-search-form-wrapper {
  background-color: var(--boxes-background-color);
  position: absolute;
  left: 0;
  top: -100%;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-search-form-wrapper.open {
  top: 0;
  opacity: 1;
  pointer-events: all;
  max-height: 100em;
}

.site-header--style2 .header-search-form-wrapper {
  background-color: transparent;
}
.site-header--style2 .header-search-form-wrapper.open {
  height: 52px;
}

.header-search-form {
  display: block;
  max-width: 100%;
  width: 26.25rem;
  position: relative;
}
.header-search-form input[type=text] {
  background: none;
  border: none;
  border-bottom: 3px solid var(--text-color);
  width: 100%;
  font-size: 1.125rem;
  letter-spacing: 0;
  line-height: 1;
  padding: 0.9375rem 0.9375rem 0.9375rem 3.125rem;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
}
.header-search-form input[type=text]:focus {
  outline: none;
  border-color: var(--main-color);
}
.header-search-form button[type=submit] {
  position: absolute;
  left: 0;
  top: 50%;
  height: 1.25rem;
  width: 1.25rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: none;
  border: none;
  cursor: pointer;
}
.header-search-form button[type=submit]::before {
  content: "g";
  font-family: pokatheme !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-variant: normal !important;
  text-transform: none !important;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-header--style2 .header-search-form {
  background-color: #fff;
  -webkit-box-shadow: 0px 8px 9px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 8px 9px 0px rgba(0, 0, 0, 0.1);
}
.site-header--style2 .header-search-form input[type=text] {
  padding: 0.9375rem 0.9375rem 0.9375rem 3.75rem;
  border-bottom: 0;
}
.site-header--style2 .header-search-form button[type=submit] {
  left: 15px;
}

.site-header--sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.mobile-logo-link {
  display: none;
}
/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:MAIN]
   ========================================================================== */
html {
  font-size: var(--main-font-size);
}

body {
  -ms-hyphens: auto;
      hyphens: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: var(--text-color);
  overflow-x: hidden;
}

a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.section,
.site-content-padding {
  padding: 90px 0;
}

.site-content-top-60 {
  margin-top: 60px;
}

.site-content-bottom-pad-90 {
  padding-bottom: 90px;
}

.section--npt {
  padding-top: 0;
}

.section--npb {
  padding-bottom: 0;
}

.row--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.icon-btn {
  border-radius: 50%;
  color: var(--text-color);
  height: 2.25rem;
  width: 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
.icon-btn--gray {
  background-color: var(--boxes-background-color);
}
.icon-btn:hover {
  opacity: 0.6;
}

.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: -0.15625rem;
}
.social-icons .icon {
  margin: 0.15625rem;
}

.wysiwyg-part {
  font-size: var(--main-font-size);
}
.wysiwyg-part h1 {
  font-size: var(--h1-font-size);
  line-height: var(--headings-line-height);
  color: inherit;
  font-weight: var(--headings-font-weight);
  margin: var(--h1-margin) 0;
}
.wysiwyg-part h1:first-of-type {
  margin-top: 0;
}
.wysiwyg-part h2 {
  font-size: var(--h2-font-size);
  line-height: var(--headings-line-height);
  color: inherit;
  font-weight: var(--headings-font-weight);
  margin: var(--h1-margin) 0;
}
.wysiwyg-part h2:first-of-type {
  margin-top: 0;
}
.wysiwyg-part h3:not(.review-title, .post-tile-title, .review-box-name) {
  font-size: var(--h3-font-size);
  line-height: var(--headings-line-height);
  color: inherit;
  font-weight: var(--headings-font-weight);
  margin: var(--h3-margin) 0;
}
.wysiwyg-part h4 {
  font-size: var(--h4-font-size);
  line-height: var(--headings-line-height);
  color: var(--boxes-text-color);
  font-weight: var(--headings-font-weight);
  margin: var(--h3-margin) 0;
}
.wysiwyg-part h5 {
  font-size: var(--h5-font-size);
  line-height: var(--headings-line-height);
  color: inherit;
  font-weight: var(--headings-font-weight);
  margin: var(--h3-margin) 0;
}
.wysiwyg-part h6 {
  font-size: var(--h6-font-size);
  line-height: var(--headings-line-height);
  color: inherit;
  font-weight: var(--headings-font-weight);
  margin: var(--h3-margin) 0;
}
.wysiwyg-part p {
  font-size: var(--main-font-size);
  line-height: 1.7;
  color: inherit;
  font-weight: 400;
  margin: 1.25rem 0;
}
.wysiwyg-part p:first-of-type {
  margin-top: 0;
}
.wysiwyg-part p a:not(.btn),
.wysiwyg-part li a:not(.btn) {
  text-decoration: underline;
  color: var(--main-color);
}
.wysiwyg-part p a:not(.btn):hover,
.wysiwyg-part li a:not(.btn):hover {
  text-decoration: none;
}
.wysiwyg-part > p small {
  color: var(--text-color);
  font-size: 0.75rem;
  letter-spacing: 0;
  line-height: 1.5;
}
.wysiwyg-part ul {
  list-style: none;
  padding-left: 1.875rem;
  font-size: 1rem;
  line-height: 1.3125rem;
  font-weight: 400;
}
.wysiwyg-part ul li {
  position: relative;
  margin-bottom: 0.9375rem;
  color: inherit;
}
.wysiwyg-part ul li ol,
.wysiwyg-part ul li ul {
  margin-top: 1.25rem;
}
.wysiwyg-part ul li strong {
  font-weight: 700;
}
.wysiwyg-part ul > li::before {
  content: "l";
  position: absolute;
  color: var(--main-color);
  left: -1.875rem;
  top: 3px;
  font-family: pokatheme !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-variant: normal !important;
  text-transform: none !important;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.wysiwyg-part ul.list-star-o > li::before {
  content: "i";
}
.wysiwyg-part ul.list-star > li::before {
  content: "j";
}
.wysiwyg-part ul.list-arrow-right > li::before {
  content: "k";
}
.wysiwyg-part ul.list-play > li::before {
  content: "l";
}
.wysiwyg-part ul.list-circle-check > li::before {
  content: "n";
}
.wysiwyg-part ul.list-star-line > li::before {
  content: "q";
}
.wysiwyg-part ul.list-list > li::before {
  content: "s";
}
.wysiwyg-part ul.list-angle-right > li::before {
  content: "v";
}
.wysiwyg-part ul.list-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wysiwyg-part ul.list-columns > li {
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
}
.wysiwyg-part ul.list-check li:before {
  content: "n";
}
.wysiwyg-part ol {
  list-style-position: inside;
  padding-left: 1.875rem;
}
.wysiwyg-part ol li {
  position: relative;
  margin-bottom: 0.9375rem;
  line-height: 1.4;
  color: inherit;
}
.wysiwyg-part ol li ol,
.wysiwyg-part ol li ul {
  margin-top: 1.25rem;
}
.wysiwyg-part ol li strong {
  font-weight: 700;
}
.wysiwyg-part ol > li {
  margin-left: -30px;
}
.wysiwyg-part ol > li > ol,
.wysiwyg-part ol > li ul {
  margin-left: 30px;
}
.wysiwyg-part blockquote {
  font-weight: 400;
  font-style: italic;
  font-size: 1.875rem;
  line-height: 2.5rem;
  color: inherit;
  max-width: 80%;
  margin: 3.125rem auto;
  text-align: center;
  position: relative;
  padding: 0.625rem 3.75rem;
  border-left: 0 none;
}
.wysiwyg-part blockquote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 5.625rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: inherit;
  opacity: 0.1;
}
.wysiwyg-part blockquote::after {
  content: "”";
  position: absolute;
  right: 0;
  bottom: -30px;
  font-size: 5.625rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: inherit;
  opacity: 0.1;
}
.wysiwyg-part .wp-block-social-links {
  padding-left: 0;
}
.wysiwyg-part .wp-block-social-links li {
  margin-bottom: 0;
  font-size: 1.5rem;
}
.wysiwyg-part .wp-block-social-links li::before {
  display: none;
}

.wp-block-cover-image .post-element--s1 p,
.wp-block-cover .post-element--s1 p {
  color: var(--text-color);
}

.play-btn {
  display: block;
  height: 4.75rem;
  width: 4.75rem;
  background-color: var(--secondary-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.875rem;
  position: relative;
}
.play-btn--sm {
  height: 2.5625rem;
  width: 2.5625rem;
  font-size: 1.125rem;
}
.play-btn .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-col--space-between {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sticker {
  border-radius: var(--border-radius);
  display: block;
  height: 100%;
  padding: 3.125rem 4.6875rem 3.125rem 3.125rem;
}
.sticker .sticker-index {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 1.5625rem;
}

.sticker-title,
.wysiwyg-part .sticker-title,
.wp-block-cover .sticker .sticker-title {
  display: block;
  color: var(--text-color);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 1.5625rem;
}

.sticker-text,
.wysiwyg-part .sticker-text,
.wp-block-cover .sticker .sticker-text {
  color: var(--text-color-alt);
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.6;
}

.review-simple-box {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 1.25rem;
  text-align: center;
  min-width: 160px;
}

.review-simple-box-logo {
  margin-bottom: 0.9375rem;
}

.review-simple-box-rating {
  margin-bottom: 0.9375rem;
}

.review-simple-boxes-cta {
  margin-top: 3.125rem;
}

/* ========================================================== */
/* 			           BREADCRUMBS                           			*/
/* ========================================================== */
.breadcrumbs-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: var(--boxes-background-color);
  padding: 1rem 0;
}
.breadcrumbs-wrapper span {
  font-size: 0.625rem;
  line-height: 1.125;
  color: var(--text-color);
}
.breadcrumbs-wrapper a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  padding: 0 0.75rem;
}
.breadcrumb-separator i::before {
  font-size: 0.625rem;
  color: #34443e;
}

/**************************************************************/
/* ========================================================== */
/* 			           SCROLLBAR                           			  */
/* ========================================================== */
.poka-scrollbar::-webkit-scrollbar {
  width: 5px;
}
.poka-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}
.poka-scrollbar::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

/**************************************************************/
/* ========================================================== */
/* 			           BANNERS	                           			  */
/* ========================================================== */
.banner-wrapper.banner-wrapper--top {
  margin-top: 3.75rem;
}

.body-show-breadcrumbs:not(.home) .banner-wrapper.banner-wrapper--top {
  margin-top: 0;
}

/**************************************************************/
/* ========================================================== */
/* 			                   RTL LISTS                          */
/* ========================================================== */
html[dir=rtl] ul {
  padding-right: 1.875rem !important;
  padding-left: initial !important;
}
html[dir=rtl] ul:not(.list-circle-check):not(.list-star-line):not(.list-star) > li::before {
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
}
html[dir=rtl] ul li::before {
  left: initial !important;
  right: -1.875rem !important;
  width: auto !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

/**************************************************************/
/* ========================================================== */
/* 			               DEPRECATED SHORTCODES                  */
/* ========================================================== */
.invalid-shortcode {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  color: #721c24 !important;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.invalid-shortcode a {
  color: #721c24 !important;
  font-weight: bold;
}
.invalid-shortcode.notice {
  color: #856404 !important;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.invalid-shortcode.notice a {
  color: #856404 !important;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:NAV]
   ========================================================================== */
.btn-mobile-menu .hamburger-mobile-menu {
  position: relative;
  width: 16px;
}
.btn-mobile-menu .hamburger-mobile-menu:before, .btn-mobile-menu .hamburger-mobile-menu:after, .btn-mobile-menu .hamburger-mobile-menu div {
  background-color: var(--header-text-color);
  content: "";
  display: block;
  height: 2px;
  margin: 4px 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.btn-mobile-menu:hover .hamburger-mobile-menu:before {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.btn-mobile-menu:hover .hamburger-mobile-menu:after {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

#header-mobile-menu:not(.mm-spn) {
  display: none;
}

.mm-ocd-opened .hamburger-mobile-menu:before {
  -webkit-transform: translateY(6px) rotate(135deg);
          transform: translateY(6px) rotate(135deg);
}
.mm-ocd-opened .hamburger-mobile-menu:after {
  -webkit-transform: translateY(-6px) rotate(-135deg);
          transform: translateY(-6px) rotate(-135deg);
}
.mm-ocd-opened .hamburger-mobile-menu > div {
  -webkit-transform: scale(0);
          transform: scale(0);
}

/* MMenu theme */
.mm-spn.mm-spn--light {
  background-color: var(--body-background);
  color: var(--text-color);
}

.mm-ocd__content {
  -webkit-box-shadow: 10px 0px 30px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 10px 0px 30px 0px rgba(0, 0, 0, 0.2);
}

.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding: 23px 0;
}
.header-menu > li {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
}
.header-menu > li:first-child {
  padding-left: 0;
}
.header-menu > li::before {
  content: "/";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  color: var(--header-text-color);
  opacity: 0.3;
}
.header-menu > li:last-child::before {
  display: none;
}
.header-menu > li.current-menu-item a {
  color: var(--header-text-color-hover);
}
.header-menu > li.menu-item-has-children {
  padding-right: calc(1.25rem + 15px);
}
.header-menu > li.menu-item-has-children > a {
  position: relative;
}
.header-menu > li.menu-item-has-children > a::after {
  content: "v";
  font-family: pokatheme !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-variant: normal !important;
  text-transform: none !important;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: -23px;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(90deg);
          transform: translate(0, -50%) rotate(90deg);
}
.header-menu > li.menu-item-has-children > .sub-menu {
  left: 0;
  top: calc(100% + 23px);
}
.header-menu > li.menu-item-has-children > .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1.4375rem;
  height: 1.4375rem;
  width: 100%;
}
.header-menu > li.menu-item-has-children > .sub-menu .menu-item-has-children > a {
  position: relative;
}
.header-menu > li.menu-item-has-children > .sub-menu .menu-item-has-children > a::before {
  content: "k";
  font-family: pokatheme !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-variant: normal !important;
  text-transform: none !important;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.header-menu > li.menu-item-has-children > .sub-menu .menu-item-has-children .sub-menu {
  left: calc(100% + 30px);
  top: -1.875rem;
}
.header-menu > li.menu-item-has-children > .sub-menu .menu-item-has-children .sub-menu::before {
  content: "";
  position: absolute;
  left: -1.875rem;
  top: 0;
  height: 100%;
  width: 1.875rem;
}
.header-menu li {
  position: relative;
}
.header-menu li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  pointer-events: all;
}
.header-menu li a {
  color: var(--header-text-color);
  display: block;
  font-size: 1.125rem;
  letter-spacing: 0;
}
.header-menu li a:hover {
  color: var(--header-text-color-hover);
}
.header-menu .sub-menu {
  position: absolute;
  background-color: var(--header-background-secondary);
  border-radius: var(--border-radius);
  -webkit-box-shadow: 0px 8px 9px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 8px 9px 0px rgba(0, 0, 0, 0.1);
  height: auto;
  min-width: 17.5rem;
  padding: 1.875rem;
  width: auto;
  z-index: 1;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-menu .sub-menu li {
  margin-bottom: 0.9375rem;
}
.header-menu .sub-menu li:last-child {
  margin-bottom: 0;
}
.site-header--style2 .header-menu > li.menu-item-has-children > a::after {
  content: "v";
}
.site-header--style2 .header-menu .sub-menu {
  background-color: var(--header-background);
}

.pokageo-notification {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0;
  background-color: var(--boxes-background-color);
  padding: 10px;
  border-radius: var(--border-radius);
}

.pokageo-notification__flag {
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pokageo-notification__flag img {
  display: block;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -webkit-clip-path: circle(50% at 50% 50%) !important;
          clip-path: circle(50% at 50% 50%) !important;
}

.pokageo-notification__text {
  font-weight: 700;
}

.pokageo-flag-circle {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 2;
}
.pokageo-flag-circle > img {
  display: block;
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  border-radius: 50% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  /* overflow:hidden must live on a wrapping element, not the img itself.
     Use clip-path as the universal circle crop — works in all browsers
     including iOS Safari without needing a wrapper change. */
  -webkit-clip-path: circle(50% at 50% 50%) !important;
          clip-path: circle(50% at 50% 50%) !important;
}
.pokageo-flag-circle .pokageo-status-icon {
  position: absolute;
  top: -4px;
  right: -4px;
}

.review-logo--rounded .pokageo-flag-circle {
  top: -3px;
}

@media screen and (max-width: 768px) {
  .pokageo-flag-circle {
    display: none !important;
  }
  .ccb-logo-wrap .pokageo-flag-circle {
    display: block !important;
  }
}

/* ── Geo availability badge (pros/cons area, mobile only) ── */
.poka-geo-avail {
  display: none; /* hidden on desktop */
}

@media screen and (max-width: 768px) {
  .poka-geo-avail {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    margin: 5px 0 4px;
    padding: 4px 9px 4px 5px;
    border-radius: 999px;
    font-size: 0.65rem;
    line-height: 1.35;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .poka-geo-avail--available {
    background: rgba(47, 158, 68, 0.10);
    color: #276839;
    border: 1px solid rgba(47, 158, 68, 0.28);
  }

  .poka-geo-avail--unavailable {
    background: rgba(224, 49, 49, 0.09);
    color: #b91c1c;
    border: 1px solid rgba(224, 49, 49, 0.22);
  }

  /* Same two-layer circle technique as .pokageo-flag-circle:
     wrapper gives fixed square dimensions, img gets clip-path circle crop. */
  .poka-geo-avail__flag-wrap {
    display: block;
    width: 16px;
    height: 16px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
  }

  .poka-geo-avail__flag-wrap > img {
    display: block;
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    border-radius: 50% !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
    -webkit-clip-path: circle(50% at 50% 50%) !important;
            clip-path: circle(50% at 50% 50%) !important;
  }

  .poka-geo-avail__text {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .poka-geo-avail__text strong {
    font-weight: 700;
  }

  .poka-geo-avail--available .poka-geo-avail__text::before {
    content: "✓ ";
    font-weight: 700;
  }

  .poka-geo-avail--unavailable .poka-geo-avail__text::before {
    content: "✕ ";
    font-weight: 700;
  }
}

.pokageo-status-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  text-align: center;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 10px;
}
.pokageo-status-icon.pokageo-status-icon-allowed {
  background-color: var(--green-icon);
}
.pokageo-status-icon.pokageo-status-icon-disallowed {
  background-color: var(--red-icon);
  font-size: 6px;
  line-height: 16px;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:GUTENBERG]
   ========================================================================== */
/* This is global in order to work also in Dashboard */
.wp-block-columns {
  margin-bottom: 0;
}


.wp-block-group .wp-block-poka-box-text {
  height: calc(100% - 20px);
  margin-bottom: 20px;
}

.poka-select select[multiple] {
  height: auto !important;
  padding-right: 8px !important;
  overflow: auto !important;
}
.poka-select select[multiple] option {
  white-space: normal !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.3125rem;
}
.poka-select select[multiple] option:disabled {
  display: none;
}
.poka-select select[multiple] option:last-child {
  border-bottom: 0;
}
.poka-select select[multiple] option:checked {
  background: rgba(30, 144, 255, 0.5);
}
.poka-select select[multiple] + .components-input-control__suffix {
  display: none !important;
}

.wp-block-group:where(.has-background) {
  padding: initial;
}

.wp-block-separator {
  opacity: 1;
}
.wp-block-separator.has-background.is-thick-line:not(.is-style-dots) {
  height: 4px;
}

.editor-styles-wrapper ul.wp-block-list {
  list-style: none;
  padding-left: 1.875rem;
  font-size: 1rem;
  line-height: 1.3125rem;
  font-weight: 400;
}
.editor-styles-wrapper ul.wp-block-list li {
  position: relative;
  margin-bottom: 0.9375rem;
  color: inherit;
}
.editor-styles-wrapper ul.wp-block-list li ol,
.editor-styles-wrapper ul.wp-block-list li ul {
  margin-top: 1.25rem;
}
.editor-styles-wrapper ul.wp-block-list li strong {
  font-weight: 700;
}
.editor-styles-wrapper ul.wp-block-list > li::before {
  content: "l";
  position: absolute;
  color: var(--main-color);
  left: -1.875rem;
  top: 3px;
  font-family: pokatheme !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-variant: normal !important;
  text-transform: none !important;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.editor-styles-wrapper ul.wp-block-list.list-star-o > li::before {
  content: "i";
}
.editor-styles-wrapper ul.wp-block-list.list-star > li::before {
  content: "j";
}
.editor-styles-wrapper ul.wp-block-list.list-arrow-right > li::before {
  content: "k";
}
.editor-styles-wrapper ul.wp-block-list.list-play > li::before {
  content: "l";
}
.editor-styles-wrapper ul.wp-block-list.list-circle-check > li::before {
  content: "n";
}
.editor-styles-wrapper ul.wp-block-list.list-star-line > li::before {
  content: "q";
}
.editor-styles-wrapper ul.wp-block-list.list-list > li::before {
  content: "s";
}
.editor-styles-wrapper ul.wp-block-list.list-angle-right > li::before {
  content: "v";
}
.editor-styles-wrapper ul.wp-block-list.list-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.editor-styles-wrapper ul.wp-block-list.list-columns > li {
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
}
.editor-styles-wrapper ul.wp-block-list.list-check li:before {
  content: "n";
}
.editor-styles-wrapper ol {
  list-style-position: inside;
  padding-left: 1.875rem;
}
.editor-styles-wrapper ol li {
  position: relative;
  margin-bottom: 0.9375rem;
  line-height: 1.4;
  color: inherit;
}
.editor-styles-wrapper ol li ol,
.editor-styles-wrapper ol li ul {
  margin-top: 1.25rem;
}
.editor-styles-wrapper ol li strong {
  font-weight: 700;
}
.editor-styles-wrapper ol > li {
  margin-left: -30px;
}
.editor-styles-wrapper ol > li > ol,
.editor-styles-wrapper ol > li ul {
  margin-left: 30px;
}

/* ==========================================================================
   PokaTheme SCSS Styles [PARTIALS:ELEMENTS]
   ========================================================================== */
.btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: var(--buttons-text-transform);
  font-weight: var(--button-font-weight);
  font-size: 1.3125rem;
  line-height: 1.2;
  border-radius: var(--button-border-radius);
  padding: 0.9375rem 1.875rem;
  position: relative;
  -webkit-transition: -webkit-transform 0.15s ease-in-out;
  transition: -webkit-transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
}
.widgets-php .btn, .sidebar .btn {
  padding: 0.9375rem;
  font-size: 1rem;
}
.btn:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  border-radius: var(--button-border-radius);
  top: 0;
  left: 0;
}
.btn:hover {
  -webkit-transform: translate(0, -3px);
          transform: translate(0, -3px);
}
.btn:hover:after {
  opacity: 1;
}
.btn.btn--full {
  display: block;
  width: 100%;
}

input.btn {
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
input.btn:hover {
  opacity: 0.6;
}

.btn-sm {
  font-size: 1rem;
  padding: 0.625rem 1.25rem;
}

.btn-md {
  font-size: 1.1875rem;
  padding: 0.625rem 1.25rem;
}

.btn-lg {
  font-size: 1.1875rem;
  padding: 1.25rem 1.875rem;
}

.btn-primary {
  background-color: var(--primary-button-color);
  color: var(--primary-button-text-color);
}
.btn-primary:hover {
  color: var(--primary-button-text-color);
}

.btn-grey {
  background-color: #4a5b68;
  color: #fff;
}

.btn-faded {
  background: transparent;
  -webkit-box-shadow: 0px 16px 29px 0px rgba(29, 39, 48, 0.1);
          box-shadow: 0px 16px 29px 0px rgba(29, 39, 48, 0.1);
  text-transform: none;
  color: var(--boxes-text-color);
}
.btn-faded:after {
  display: none;
}
.btn-faded:hover {
  background: #fff;
}
.btn-faded i {
  color: var(--main-color);
}

.btn-secondary {
  background-color: var(--secondary-button-color);
  color: var(--secondary-button-text-color);
}
.btn-secondary:hover {
  color: var(--primary-button-text-color);
}

.btn-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.btn-icon.btn--full {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 100%;
}
.btn-icon i,
.btn-icon img {
  display: inherit;
  margin-left: 1.25rem;
  margin-right: 0.3125rem;
  font-size: 1.3125rem;
  height: 1.3125rem;
  width: 1.3125rem;
}
.btn-icon.btn-icon-lg {
  padding: 0.625rem 1.25rem;
}
.btn-icon.btn-icon-lg i,
.btn-icon.btn-icon-lg img {
  font-size: 2.5625rem;
  height: 2.5625rem;
  width: 2.5625rem;
}
.btn-icon.btn-icon-left {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-icon.btn-icon-left i,
.btn-icon.btn-icon-left img {
  display: inherit;
  margin-right: 1.25rem;
  margin-left: 0;
}
.btn-icon.btn-icon-right {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-icon.btn-icon-right i,
.btn-icon.btn-icon-right img {
  display: inherit;
  margin-left: 1.25rem;
  margin-right: 0;
}

.btn-fullwidth {
  width: 100%;
}

.btn-yellow {
  background-color: var(--secondary-button-color);
  color: #fff;
}

.btn-arrow-right {
  padding: 1rem 2.1875rem 1rem 1.75rem;
}

.btn-read-more {
  padding: 1rem 2.5rem;
  margin: 1.5625rem;
}
.btn-read-more i {
  margin-left: 1.4375rem;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-read-more:hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.spinner {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 100%;
  border: 4px solid gray;
  border-top: 4px solid var(--white);
  -webkit-animation: spinnerAnim infinite 0.8s;
  animation: spinnerAnim infinite 0.8s;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  opacity: 0;
}
.spinner.visible {
  opacity: 1;
}

@-webkit-keyframes spinnerAnim {
  0% {
    -webkit-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(360deg);
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes spinnerAnim {
  0% {
    -webkit-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(360deg);
    transform: translateY(-50%) rotate(360deg);
  }
}
.rating .icon {
  color: var(--rating-color);
  font-size: 1.3125rem;
  line-height: 1;
  margin: 0 1px;
}

.author-card {
  background: #f0f3f7;
  border-radius: var(--border-radius);
  overflow: hidden;
  padding: 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.author-card.author-card--top {
  margin-top: 60px;
}
.author-card__avatar {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 40px;
  background: #e2e8f0;
}
.author-card__avatar .author-image,
.author-card__avatar img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0 !important;
}
.author-card .author-title {
  color: var(--boxes-text-color);
  opacity: 0.66;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 700;
  display: block;
}
.author-card .author-name {
  color: var(--text-color);
  font-size: 1.75rem;
  line-height: 1.3;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.author-card a.author-name {
  text-decoration: none;
  color: inherit;
}
.author-card a.author-name:hover,
.author-card a.author-name:focus-visible {
  text-decoration: underline;
}
.author-card .author-job-title {
  color: var(--main-color);
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}
.author-card p {
  color: #494d4c;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 15px;
}
.author-card .author-card__bio {
  color: #494d4c;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: left;
}
.author-card .author-card__bio p {
  margin-bottom: 0.75rem;
}
.author-card .author-card__bio p:last-child {
	margin-bottom: 0;
}
/* Social lives inside .author-card__bio so themes cannot hide it as a sibling; icons use inline SVG (not icon fonts). */
.author-card .author-card__bio .author-card__social {
	margin-top: 1rem;
}
.author-card .author-card__social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
      flex-wrap: wrap;
	-webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
	gap: 0.35rem;
	margin-top: 1rem;
}
.author-card .author-card__social.author-card__social--icons {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	visibility: visible !important;
	opacity: 1 !important;
}
.author-card .author-card__social a.author-card__social-link {
	text-decoration: none;
	margin: 0;
	flex-shrink: 0;
	color: var(--text-color, #1d2730);
}
.author-card .author-card__social a.author-card__social-link.author-card__social-link--forced {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	min-width: 2.25rem;
	min-height: 2.25rem;
	color: var(--text-color, #1d2730) !important;
	font-size: inherit;
	line-height: 1;
	overflow: visible;
}
.author-card .author-card__social a.author-card__social-link:hover {
	color: var(--text-color, #1d2730);
	opacity: 0.75;
}
.author-card .author-card__social-link svg,
.author-card .author-card__social-link path {
	fill: currentColor;
	opacity: 1;
	visibility: visible;
}
.author-card .author-card__social-link svg {
	width: 1.125rem;
	height: 1.125rem;
	display: block;
	vertical-align: middle;
}
.author-card.author-card--game {
  margin-top: 2rem;
}
.author-card.author-card--comparison {
  margin-top: 2rem;
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
}

.col-relative {
  position: relative;
}

.hr-style1 {
  border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.load-more-btn {
  margin-top: 20px;
}
.load-more-btn .spinner {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  right: unset;
  top: 50%;
  margin-left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 100%;
  border: 4px solid gray;
  border-top: 4px solid var(--white);
  -webkit-animation: spinnerAnim infinite 0.8s;
  animation: spinnerAnim infinite 0.8s;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  opacity: 0;
}
.load-more-btn .spinner.visible {
  opacity: 1;
}

.wp-block-poka-affiliate-list .load-more-btn {
  margin-top: 20px;
  margin-left: 20px;
}

/* Affiliates Table block – centre the load more button */
/* Slim centred wrapper keeps btn--full from spanning the full page width */
.load-more-btn-wrap {
  width: 200px;
  margin: 1.5rem auto 0;
}
.load-more-btn-wrap .load-more-btn {
  font-size: 0.875rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.wp-block-poka-affiliate-list .load-more-btn .spinner {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  right: unset;
  top: 50%;
  margin-left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 100%;
  border: 4px solid gray;
  border-top: 4px solid var(--white);
  -webkit-animation: spinnerAnim infinite 0.8s;
  animation: spinnerAnim infinite 0.8s;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  opacity: 0;
}
.wp-block-poka-affiliate-list .load-more-btn .spinner.visible {
  opacity: 1;
}

/* AJAX load more / read more — smooth reveal */
@media (prefers-reduced-motion: no-preference) {
  .poka-ajax-insert-prep {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .poka-ajax-insert-prep.poka-ajax-insert-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:SINGLE-REVIEW]
   ========================================================================== */
.section-review-hero {
  background: var(--boxes-background-color);
  margin-bottom: 40px;
}
.section-review-hero h3 {
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.125;
  color: var(--boxes-text-color);
  font-weight: var(--headings-font-weight);
}
.section-review-hero.section-review-hero--style-1 {
  border-radius: var(--border-radius);
  overflow: hidden;
}
.section-review-hero.section-review-hero--style-1 .flex-col--space-between {
  padding: 0 1.875rem;
}
.section-review-hero.section-review-hero--style-1 .review-rating {
  padding-top: 2.3125rem;
}
.section-review-hero.section-review-hero--style-1 .review-pros-cons {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.section-review-hero.section-review-hero--style-1 .review-terms {
  padding-bottom: 1.25rem;
}
.section-review-hero.section-review-hero--style-2 {
  padding: 0.625rem 0;
  margin-bottom: 0;
}
.section-review-hero.section-review-hero--style-2 h3 {
  padding-top: 3.125rem;
}
.section-review-hero.section-review-hero--style-3 {
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 0;
}
.section-review-hero.section-review-hero--style-3 .review-bonus {
  text-align: left;
  padding-top: 1.875rem;
}
.section-review-hero.section-review-hero--style-3 .review-bonus + hr {
  margin: 1em 0;
}
.section-review-hero.section-review-hero--style-3 .review-terms {
  margin-bottom: 1.25rem;
}
.section-review-hero.section-review-hero--style-3 .review-cta-wrapper {
  padding: 0.625rem 1.875rem 1.5625rem 0;
}

.review-cta-wrapper {
  text-align: center;
}
.review-cta-wrapper.review-cta-wrapper--style-2 {
  background: var(--boxes-secondary-background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  padding: 2.1875rem 3.125rem;
}
.review-cta-wrapper .review-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.25rem 0.9375rem;
}
.review-cta-wrapper .review-bonus {
  padding: 0 1.25rem 0.9375rem;
}
.review-cta-wrapper .btn {
  width: 100%;
}

.review-overview {
  height: 100%;
}
.review-overview.review-overview--style-1 {
  background: var(--boxes-secondary-background-color);
  border-radius: 8px;
  padding: 2.8125rem 1.875rem 2.5rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.review-overview.review-overview--style-1 .review-overview-list {
  max-height: calc(100% - 50px);
}
.review-overview.review-overview--style-2 .review-overview-list {
  max-height: 250px;
}
.review-overview.review-overview--style-3 .review-overview-list {
  max-height: 200px;
}
.review-overview-list {
  list-style: none;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.05);
}
.review-overview-list::-webkit-scrollbar {
  width: 5px;
}
.review-overview-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}
.review-overview-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
.review-overview-list-item {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.9375rem;
}
.review-overview-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #000000;
  opacity: 0.1;
  top: 3px;
}
.review-overview-list-item-label {
  font-size: 0.875rem;
  line-height: 1.3;
  color: var(--boxes-text-color);
  font-weight: 700;
}
.review-overview-list-item-value {
  font-size: 1rem;
  line-height: 1.125;
  color: var(--text-color);
  font-weight: 700;
  margin-top: 3px;
}

.review-grid-item {
  background: var(--boxes-background-color);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: var(--border-radius);
  overflow-y: hidden;
}
.review-grid-item .review-logo {
  margin: 1.5625rem auto 1.25rem;
}
.review-grid-item .rating {
  text-align: center;
  padding-bottom: 1.25rem;
}
.review-grid-item .review-bonus {
  padding-top: 0.9375rem;
  font-size: 1.125rem;
}
.review-grid-item .btn {
  font-size: 1.125rem;
  line-height: 1.2;
  margin: 0.9375rem 0 0.625rem;
  width: 100%;
}
.review-grid-item .review-extra-links {
  padding-bottom: 20px;
}
.review-grid-item .review-grid-item-top {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.review-grid-item .review-grid-item-bottom {
  background: var(--boxes-secondary-background-color);
  padding: 0 1.25rem;
  margin-top: auto;
}
.review-grid-item.wide .review-grid-item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.5625rem;
  max-width: 43.75rem;
  width: 100%;
  margin: 0 auto;
}
.review-grid-item.wide .review-grid-item-bottom > * {
  max-width: 43.75rem;
  margin: 0 auto;
}
.review-grid-item.wide .flex-right-container {
  margin-right: auto;
}
.review-grid-item.wide .review-badge-wrapper {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0.375rem 1.25rem;
}
.review-grid-item.wide .review-rating {
  padding: 0.375rem 1.25rem;
}
.review-grid-item.wide .rating {
  padding-bottom: 0;
}
.review-grid-item.wide .review-bonus {
  padding-top: 0.9375rem;
  font-size: 1.5rem;
  line-height: 1.8125rem;
}
.review-grid-item.wide .btn {
  font-size: 1.3125rem;
  line-height: 1.5625rem;
  max-width: 19.6875rem;
  display: block;
  margin: 0.9375rem auto 0.625rem;
}
.review-grid-item.first {
  position: relative;
}
.review-grid-item.first::after {
  content: "1";
  background-color: var(--rating-color);
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  right: 1.5625rem;
  top: 1.5625rem;
  font-size: 1rem;
  line-height: 1.1875rem;
  font-weight: 700;
  color: var(--text-color);
}
.review-grid-item.second .review-logo, .review-grid-item.third .review-logo {
  position: relative;
}
.review-grid-item.second .review-logo::after, .review-grid-item.third .review-logo::after {
  content: "2";
  background-color: var(--rating-color);
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  left: 0;
  font-size: 0.8125rem;
  line-height: 1.0625rem;
  font-weight: 700;
  color: var(--text-color);
}
.review-grid-item.third .review-logo::after {
  content: "3";
}

.review-sidebar h4 {
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.125;
  color: var(--boxes-text-color);
  font-weight: var(--headings-font-weight);
}
.review-sidebar.review-sidebar--style-3 {
  background: var(--boxes-background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  padding: 1.875rem 1.875rem 2.1875rem;
}

.section-related-reviews {
  padding: 90px 0 0;
}

.reviews-table {
  counter-reset: revbox;
}
.reviews-table .review-box-thumb {
  counter-increment: revbox;
}
.reviews-table .review-box-thumb--counter:after {
  content: counter(revbox);
  position: absolute;
  top: 7px;
  left: 7px;
  background-color: rgba(255, 255, 255, 0.6);
  color: var(--theme-color);
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  font-weight: 700;
}

/*
* Hide review table counter on archive page
*/
.archive .review-box-thumb--counter::after {
  display: none;
}

.review-box {
  background-color: var(--boxes-background-color);
  border-radius: var(--border-radius);
}
.review-box + .review-box {
  margin-top: 10px;
}

.review-box-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
}
.widgets-php .review-box-wrap, .sidebar .review-box-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.reviews-table--style1 .review-box-wrap,
.reviews-table--style3 .review-box-wrap,
.review-box--style4 .review-box-wrap,
.reviews-table--style5 .review-box-wrap {
  background: transparent;
}

.review-box--style4 .review-box-actions {
  background-color: transparent;
}

.reviews-table--style5 .review-box-actions {
  background-color: var(--boxes-background-color);
}

.review-box-thumb {
  border-radius: var(--border-radius);
  overflow: hidden;
  -ms-flex-preferred-size: 17%;
      flex-basis: 17%;
  max-width: 17%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--theme-color);
  position: relative;
}
.widgets-php .review-box-thumb, .sidebar .review-box-thumb {
  -ms-flex-preferred-size: unset;
      flex-basis: unset;
  max-width: unset;
}

.review-box-name,
.wysiwyg-part .review-box-name,
.editor-styles-wrapper .review-box-name,
.wp-block-cover .review-box-name,
.wp-block-cover .review-box-name:not(.has-text-color) {
  margin-right: 24px;
  font-size: 1.3125rem;
  color: var(--boxes-text-color);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
}

/* Affiliate link styling for casino name in tables */
.review-box-name a {
  color: inherit;
  text-decoration: none;
}

.review-box-name a:hover {
  color: #666;
}
.widgets-php .review-box-name, .sidebar .review-box-name,
.widgets-php .wysiwyg-part .review-box-name,
.sidebar .wysiwyg-part .review-box-name,
.widgets-php .editor-styles-wrapper .review-box-name,
.sidebar .editor-styles-wrapper .review-box-name,
.widgets-php .wp-block-cover .review-box-name,
.sidebar .wp-block-cover .review-box-name,
.widgets-php .wp-block-cover .review-box-name:not(.has-text-color),
.sidebar .wp-block-cover .review-box-name:not(.has-text-color) {
  margin-right: 0;
  margin-bottom: 2px;
}

.review-box-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 30px;
}
.widgets-php .review-box-info .review-pros-cons, .sidebar .review-box-info .review-pros-cons {
  display: block;
}
.widgets-php .review-box-info .review-pros-cons ul + ul, .sidebar .review-box-info .review-pros-cons ul + ul {
  margin-top: 10px;
}
.widgets-php .review-box-info .review-badge, .sidebar .review-box-info .review-badge {
  margin-bottom: 10px;
}
.widgets-php .review-box-info, .sidebar .review-box-info {
  padding: 20px;
}

.review-box-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 2px #e4e8ed;
  padding-bottom: 15px;
  margin-bottom: 25px;
}
.widgets-php .review-box-meta, .sidebar .review-box-meta {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

.review-box-rating {
  margin-left: auto;
  padding-left: 10px;
}
.widgets-php .review-box-rating, .sidebar .review-box-rating {
  width: auto;
  margin-top: 0;
  margin-left: 0;
}

.review-box .review-box-disclaimer {
  background-color: var(--boxes-secondary-background-color);
  border-radius: var(--border-radius);
}

.review-box--style2 .review-box-disclaimer {
  border-radius: 0;
}

.review-box--narrow .review-box-disclaimer {
  background-color: #f5fcf6;
}

.review-box--style3 .review-box-disclaimer {
  background-color: var(--white);
}

.reviews-table--style2 .review-box-wrap {
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.review-box-actions {
  background-color: var(--boxes-secondary-background-color);
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
  max-width: 32%;
  padding: 47px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.review-box-actions .review-bonus {
  margin-bottom: 20px;
}
.review-box-actions .btn {
  margin-bottom: 10px;
}
.review-box-actions .btn-primary {
  background-color: var(--main-color);
  color: var(--primary-button-text-color);
}
.review-box-actions .btn-primary:hover {
  color: var(--primary-button-text-color);
}
.widgets-php .review-box-actions, .sidebar .review-box-actions {
  padding: 20px;
  -ms-flex-preferred-size: unset;
      flex-basis: unset;
  max-width: unset;
}

.review-box-actions--rounded {
  border-radius: var(--border-radius);
}

.review-box--narrow {
  background-color: transparent;
}
.review-box--narrow .review-box-actions {
  background-color: var(--primary-button-color-opacity);
}
.review-box--narrow .review-box-meta {
  margin-bottom: 15px;
}
.review-box--narrow .review-bonus {
  text-align: left;
  max-width: 320px;
}
.widgets-php .review-box--narrow .review-bonus, .sidebar .review-box--narrow .review-bonus {
  max-width: unset;
  text-align: center;
}

.review-box--style2 {
  border-radius: var(--border-radius);
  overflow: hidden;
}
.review-box--style2 .review-box-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 14px;
}
.widgets-php .review-box--style2 .review-box-info, .sidebar .review-box--style2 .review-box-info {
  display: block;
  padding: 20px;
}
.review-box--style2 .review-box-thumb {
  padding: 0 40px;
  background-color: transparent;
  border-radius: 0;
}
.review-box--style2 .review-box-thumb:after {
  left: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background-color: var(--boxes-secondary-background-color);
  color: #1d2730;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 1rem;
}
.review-box--style2 .review-box-thumb--counter {
  padding: 0 0 0 90px;
}
.widgets-php .review-box--style2 .review-box-thumb, .sidebar .review-box--style2 .review-box-thumb {
  background-color: var(--theme-color);
  padding: 0;
}
.widgets-php .review-box--style2 .review-box-thumb.review-box-thumb--counter:after, .sidebar .review-box--style2 .review-box-thumb.review-box-thumb--counter:after {
  display: none;
}
.review-box--style2 .review-box-meta {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 44%;
          flex: 0 0 44%;
  max-width: 44%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.widgets-php .review-box--style2 .review-box-meta, .sidebar .review-box--style2 .review-box-meta {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  max-width: unset;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.review-box--style2 .review-box-rating {
  margin-left: 0;
  padding-left: 0;
}
.review-box--style2 .review-badge,
.review-box--style2 .review-box-name {
  margin-bottom: 10px;
}
.review-box--style2 .review-box-actions {
  padding: 30px;
}
.widgets-php .review-box--style2 .review-box-actions, .sidebar .review-box--style2 .review-box-actions {
  padding: 20px;
}
.review-box--style2 + .review-box--style2 {
  margin-top: 20px;
}

.site-content .col-9 .review-box--style2 .review-box-thumb {
  padding: 0 20px;
}

.review-box--style3 {
  background-color: #fff;
  border-radius: var(--border-radius);
  -webkit-box-shadow: 0 16px 29px rgba(29, 39, 48, 0.1);
          box-shadow: 0 16px 29px rgba(29, 39, 48, 0.1);
  overflow: hidden;
}
.review-box--style3 .review-box-thumb {
  padding-left: 90px;
  padding-right: 25px;
  background-color: var(--boxes-background-color);
  border-radius: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41%;
          flex: 0 0 41%;
  max-width: 41%;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
}
.review-box--style3 .review-box-thumb--single {
  padding-left: 25px;
}
.review-box--style3 .review-box-thumb:after {
  left: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 1rem;
}
.widgets-php .review-box--style3 .review-box-thumb:after, .sidebar .review-box--style3 .review-box-thumb:after {
  top: 0;
  left: 0;
  -webkit-transform: none;
          transform: none;
  border-radius: 0;
}
.widgets-php .review-box--style3 .review-box-thumb, .sidebar .review-box--style3 .review-box-thumb {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  max-width: unset;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
}
.review-box--style3 .review-box-meta {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  max-width: unset;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
  padding-left: 14px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.widgets-php .review-box--style3 .review-box-meta, .sidebar .review-box--style3 .review-box-meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 20px;
  margin-top: 20px;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.review-box--style3 .review-box-rating {
  margin-left: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-left: 0;
}
.review-box--style3 .review-badge,
.review-box--style3 .review-box-name {
  margin-bottom: 10px;
}
.review-box--style3 .review-box-actions {
  background-color: transparent;
  max-width: 280px;
}
.widgets-php .review-box--style3 .review-box-actions, .sidebar .review-box--style3 .review-box-actions {
  max-width: unset;
  padding: 0 20px 20px;
}
.review-box--style3 .review-box-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.review-box--style3 .btn {
  font-size: 1.125rem;
}
.review-box--style3 + .review-box--style3 {
  margin-top: 1.5625rem;
}
.review-box--style4 .review-box-thumb {
  -ms-flex-preferred-size: 24%;
      flex-basis: 24%;
  max-width: 24%;
  overflow: visible;
}
.review-box--style4 .review-box-thumb:after {
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 50%;
  background-color: var(--boxes-background-color);
  color: #74787c;
  left: 50%;
  top: -22px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1rem;
}
.widgets-php .review-box--style4 .review-box-thumb, .sidebar .review-box--style4 .review-box-thumb {
  -ms-flex-preferred-size: unset;
      flex-basis: unset;
  max-width: unset;
}
.review-box--style4 .review-box-info,
.review-box--style4 .review-box-actions {
  -ms-flex-preferred-size: 38%;
      flex-basis: 38%;
  max-width: 38%;
}
.widgets-php .review-box--style4 .review-box-info, .sidebar .review-box--style4 .review-box-info,
.widgets-php .review-box--style4 .review-box-actions,
.sidebar .review-box--style4 .review-box-actions {
  -ms-flex-preferred-size: unset;
      flex-basis: unset;
  max-width: unset;
}
.review-box--style4 .review-box-actions {
  padding-left: 70px;
  padding-right: 70px;
}
.widgets-php .review-box--style4 .review-box-actions, .sidebar .review-box--style4 .review-box-actions {
  padding: 20px;
}
.review-box--style4 .review-box-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 50px;
  padding-right: 50px;
}
.widgets-php .review-box--style4 .review-box-info, .sidebar .review-box--style4 .review-box-info {
  padding: 20px 20px 40px;
}
.review-box--style4 .review-box-meta {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 15px;
}
.review-box--style4 .review-box-rating {
  margin-left: unset;
}
.widgets-php .review-box--style4 .review-box-rating, .sidebar .review-box--style4 .review-box-rating {
  width: auto;
}
.review-box--style4 .review-badge {
  margin-bottom: 15px;
}
.review-box--style4 + .review-box--style4 {
  margin-top: 28px;
}

.review-box--favorite .review-box-wrap {
  background-color: var(--boxes-background-color);
}
.review-box--favorite .review-box-thumb {
  padding: 0;
}
.review-box--favorite .review-box-thumb::after {
  display: none;
}

.table-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.widgets-php .table-header, .sidebar .table-header {
  display: block;
}
.table-header .sorting-order,
.table-header .sorting-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}
.table-header .sorting-items {
  background-color: var(--boxes-background-color);
  border-radius: var(--border-radius);
  padding: 10px;
}
.widgets-php .table-header .sorting-items, .sidebar .table-header .sorting-items {
  margin-right: 0;
}
.table-header .sorting-items li {
  margin: 0;
  padding: 0;
}
.table-header .sorting-items li::before {
  display: none;
}
.table-header .sorting-items li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: var(--border-radius);
  padding: 4px 24px;
  text-transform: uppercase;
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--boxes-text-color);
}
.widgets-php .table-header .sorting-items li a, .sidebar .table-header .sorting-items li a {
  font-size: 0.75rem;
  padding: 4px 10px;
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.table-header .sorting-items li a i {
  line-height: 1;
  margin-right: 7px;
  font-size: 1rem;
}
.table-header .sorting-items li a svg {
  margin-right: 7px;
  height: 16px;
  width: auto;
  fill: var(--boxes-text-color);
}
.table-header .sorting-items li.active a {
  background-color: #fff;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.table-header .sorting-order {
  padding: 0;
}
.widgets-php .table-header .sorting-order, .sidebar .table-header .sorting-order {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.table-header .sorting-order li {
  margin: 0;
  padding: 0;
}
.table-header .sorting-order li::before {
  display: none;
}
.table-header .sorting-order li a {
  text-transform: uppercase;
  font-size: 0.875rem;
  padding: 5px 8px;
  text-decoration: none;
  color: var(--boxes-text-color);
}
.widgets-php .table-header .sorting-order li a, .sidebar .table-header .sorting-order li a {
  font-size: 0.75rem;
}
.table-header .sorting-order li:not(:last-child):after {
  content: "/";
  opacity: 0.6;
  display: inline-block;
}
.table-header .sorting-order li.active a {
  text-decoration: underline;
}

.review-box-disclaimer {
  font-size: 0.75rem;
  color: var(--boxes-text-color);
  padding: 12px 30px;
}

.posts-archives-wrapper .post-element--s1 {
  border-radius: 0;
}
.posts-archives-wrapper .post-element--s1 .post-element-inner-wrapper {
  border-radius: 0;
}

/* ==========================================================================
   PokaTheme SCSS Styles [PARTIALS:Featured-casinos]
   ========================================================================== */
.widgets-php .featured-casinos .row > div, .sidebar .featured-casinos .row > div {
  -webkit-box-flex: 100% !important;
      -ms-flex: 100% !important;
          flex: 100% !important;
  max-width: 100% !important;
}
.featured-casinos > .row {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.single-affiliate {
  background-color: var(--boxes-background-color);
  border-radius: var(--border-radius);
  padding: 1.5625rem 1.25rem;
  position: relative;
}
.single-affiliate--highlighted {
  border: 4px solid var(--primary-button-color);
  -webkit-box-shadow: 0px 16px 29px 0px rgba(29, 39, 48, 0.1);
          box-shadow: 0px 16px 29px 0px rgba(29, 39, 48, 0.1);
  padding-top: 4.0625rem;
}

.single-affiliate-badge {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.single-affiliate-badge .review-badge {
  background: var(--main-color);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  white-space: nowrap;
}

.single-affiliate-text {
  display: block;
  padding: 1.5625rem 0;
}

.single-affiliate-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.9375rem 0 0;
}

.reviews-search-form-wrapper {
  padding: 1.875rem 5rem 3.75rem;
}

.reviews-search-form {
  display: block;
  position: relative;
  width: 100%;
}
.reviews-search-form input[type=text] {
  background: #ffffff;
  border: none;
  border-bottom: 3px solid var(--text-color);
  width: 100%;
  font-size: 1.3125rem;
  letter-spacing: 0;
  line-height: 1.125rem;
  padding: 1.875rem 3.75rem 1.875rem 1.875rem;
  /* Chrome/Opera/Safari */
  /* Firefox 19+ */
  /* IE 10+ */
  /* Firefox 18- */
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
}
.reviews-search-form input[type=text]::-webkit-input-placeholder {
  color: #465664;
}
.reviews-search-form input[type=text]::-moz-placeholder {
  color: #465664;
}
.reviews-search-form input[type=text]:-ms-input-placeholder {
  color: #465664;
}
.reviews-search-form input[type=text] ::-webkit-input-placeholder {
  color: #465664;
}
.reviews-search-form input[type=text] ::-moz-placeholder {
  color: #465664;
}
.reviews-search-form input[type=text] :-ms-input-placeholder {
  color: #465664;
}
.reviews-search-form input[type=text] ::-ms-input-placeholder {
  color: #465664;
}
.reviews-search-form input[type=text] ::placeholder {
  color: #465664;
}
.reviews-search-form input[type=text]:focus {
  outline: none;
  border-color: var(--main-color);
}
.reviews-search-form button[type=submit] {
  position: absolute;
  right: 1.875rem;
  top: 50%;
  height: auto;
  width: auto;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.6875rem;
}
.reviews-search-form .reviews-search-form-items {
  background-color: #fff;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  list-style-type: none;
  position: absolute !important;
  margin-top: 90px;
  z-index: 10;
  max-height: 440px;
  overflow: auto;
}
.reviews-search-form .reviews-search-form-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 0;
  padding: 0.625rem;
}
.reviews-search-form .reviews-search-form-item:last-child {
  border-bottom: none;
}
.reviews-search-form .reviews-search-form-item::before {
  display: none !important;
}
.reviews-search-form .reviews-search-form-item h3 {
  margin: 0 0 1.25rem 0;
  font-size: 1.625rem;
  text-align: left;
}
.reviews-search-form .reviews-search-form-item .review-bonus {
  text-align: left;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.wysiwyg-part .reviews-search-form .reviews-search-form-item a {
  text-decoration: none;
}

.ui-helper-hidden-accessible {
  display: none !important;
}

/* ==========================================================================
	 Review parts
	 ========================================================================== */
.review-logo {
  display: block;
  position: relative;
}
.review-logo--disabled {
  pointer-events: none;
}
.review-logo > img, .review-logo > picture > img {
  display: block;
  height: 110px;
  min-width: 110px;
  width: 110px;
  -o-object-fit: contain;
     object-fit: contain;
}
.review-logo:not(.review-logo--rounded) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  min-height: 140px;
}

.review-logo--centered {
  margin: 0 auto;
}
.review-logo--centered > img {
  margin: 0 auto;
}

.review-logo--rounded {
  max-width: 110px;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
}
.review-logo--rounded > img {
  border-radius: 50%;
  overflow: hidden;
}

.review-logo--boxed {
  height: 0;
  padding: 0 0 50%;
  position: relative;
  border-radius: var(--border-radius);
}
.review-logo--boxed > img, .review-logo--boxed > picture > img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: 80%;
  max-height: 90%;
}

.review-title {
  font-size: 1.3125rem;
  line-height: 1.125rem;
  font-weight: 700;
  color: var(--boxes-text-color);
  padding: 0.375rem 1.25rem;
  margin-bottom: 0;
}

.review-badge-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.9375rem 0;
}

.review-badge {
  background: #d276b3;
  border-radius: 8px;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  padding: 0.375rem 1.5625rem;
}


.review-bonus {
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--boxes-text-color);
  text-align: center;
}
.review-bonus strong {
  color: var(--main-color);
  font-weight: 700;
}

.review-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.review-rating > span {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--boxes-text-color);
  margin-right: 10px;
}
.review-rating > span strong {
  font-size: 1.125rem;
  line-height: 1.15;
  color: var(--text-color);
  font-weight: 700;
}

.review-pros-cons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.review-pros-cons.vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.review-pros-cons.vertical ul {
  margin-bottom: 40px;
}
.review-pros-cons ul {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  list-style: none;
  padding-left: 0;
}
.review-pros-cons ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.875rem;
  line-height: 1.55;
  font-weight: 400;
  color: var(--boxes-text-color);
  margin-bottom: 5px;
}
.review-pros-cons ul li::before {
  position: absolute;
  left: 0;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  top: 0;
}
.review-pros-cons ul li.review-pro-item::before {
  content: "+";
  color: var(--main-color);
}
.review-pros-cons ul li.review-con-item::before {
  content: "-";
  color: #be4444;
}
.review-pros-cons ul li:last-child {
  margin-bottom: 0;
}

.review-extra-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.review-extra-links-item {
  position: relative;
  padding: 0 0.5rem;
}
.review-extra-links-item:last-child::before {
  display: none;
}
.review-extra-links-item::before {
  content: "/";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  color: #b5c2cd;
  font-size: 0.875rem;
}
.review-extra-links-item a {
  color: var(--boxes-text-color);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: underline;
}
.review-extra-links-item a:hover {
  text-decoration: none;
}

.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip:hover .tooltip-text {
  opacity: 1;
  pointer-events: all;
}

.tooltip-label {
  color: var(--boxes-text-color);
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
.tooltip-label:hover {
  cursor: help;
}
.tooltip-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: -25%;
  height: 25%;
  width: 100%;
}

.tooltip-text {
  background-color: var(--text-color);
  border-radius: var(--border-radius);
  color: #ffffff;
  font-size: 0.8125rem;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  width: 12.5rem;
  padding: 0.3125rem 0.625rem;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tooltip-text a {
  color: #ffffff;
  font-size: 0.8125rem;
}
.tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--text-color) transparent transparent transparent;
}

.review-terms {
  font-size: 0.75rem;
  line-height: 1.55;
  font-weight: 400;
  color: #5a6974;
}

/* ========================================================== */
/* 			           POST SCs | SINGLE GENERAL               		*/
/* ========================================================== */
.post-element h1,
.post-element h2,
.post-element h3,
.post-element h4,
.post-element h5,
.wysiwyg-part .post-element h1,
.wysiwyg-part .post-element h2,
.wysiwyg-part .post-element h3,
.wysiwyg-part .post-element h4,
.wysiwyg-part .post-element h5 {
  margin: 0;
}
.post-element h1 a,
.post-element h2 a,
.post-element h3 a,
.post-element h4 a,
.post-element h5 a,
.wysiwyg-part .post-element h1 a,
.wysiwyg-part .post-element h2 a,
.wysiwyg-part .post-element h3 a,
.wysiwyg-part .post-element h4 a,
.wysiwyg-part .post-element h5 a {
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.post-element h1:hover a,
.post-element h2:hover a,
.post-element h3:hover a,
.post-element h4:hover a,
.post-element h5:hover a,
.wysiwyg-part .post-element h1:hover a,
.wysiwyg-part .post-element h2:hover a,
.wysiwyg-part .post-element h3:hover a,
.wysiwyg-part .post-element h4:hover a,
.wysiwyg-part .post-element h5:hover a {
  color: var(--secondary-color);
}
.post-element h2,
.wysiwyg-part .post-element h2 {
  font-size: 2.125rem;
  color: var(--white);
  line-height: 1.31;
  margin-bottom: 0.625rem;
  font-weight: var(--headings-font-weight);
}
.post-element h3,
.wysiwyg-part .post-element h3 {
  font-size: 1.3125rem;
  font-weight: var(--headings-font-weight);
  line-height: 1.2;
  color: var(--text-color);
  margin-bottom: 0.625rem;
}
.post-element h4,
.wysiwyg-part .post-element h4 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-color);
  margin-bottom: 0.625rem;
}
.post-element-big-p,
.wysiwyg-part .post-element-big-p {
  font-size: 1rem;
  line-height: 1.56;
  margin-bottom: 0.625rem;
  color: var(--text-color-alt);
}
.post-element-small-p,
.wysiwyg-part .post-element-small-p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--text-color);
  margin-bottom: 0;
}
.post-element-category,
.wysiwyg-part .post-element-category {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.05rem;
  color: var(--secondary-color);
  margin-bottom: 0.625rem;
}
.post-element-category-list,
.wysiwyg-part .post-element-category-list {
  color: var(--text-color-alt);
  margin-bottom: 0.625rem;
}
.post-element-category-list a,
.wysiwyg-part .post-element-category-list a {
  color: var(--secondary-color);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.05rem;
}
.post-element-info,
.wysiwyg-part .post-element-info {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.1875rem;
  color: var(--text-color-alt);
  margin-bottom: 0.625rem;
}
.post-element-info > *,
.wysiwyg-part .post-element-info > * {
  display: inline-block;
}
.post-element-author img,
.wysiwyg-part .post-element-author img {
  max-width: 34px;
  max-height: 34px;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.post-element-author span,
.wysiwyg-part .post-element-author span {
  display: inline-block;
  margin-left: 0.5rem;
}
.post-element-bottom-wrapper,
.wysiwyg-part .post-element-bottom-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
.post-element-tags,
.wysiwyg-part .post-element-tags {
  margin-bottom: -0.625rem;
}
.post-element-tags a,
.wysiwyg-part .post-element-tags a {
  display: inline-block;
  padding: 0.5rem 1.125rem;
  background-color: var(--white);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: var(--text-color);
  font-size: 0.875rem;
  -webkit-transition: -webkit-box-shadow 300ms ease;
  transition: -webkit-box-shadow 300ms ease;
  transition: box-shadow 300ms ease;
  transition: box-shadow 300ms ease, -webkit-box-shadow 300ms ease;
  margin-bottom: 0.625rem;
}
.post-element-tags a:not(:last-of-type),
.wysiwyg-part .post-element-tags a:not(:last-of-type) {
  margin-right: 0.625rem;
}
.post-element-tags a:hover,
.wysiwyg-part .post-element-tags a:hover {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
}

a.link-on-img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: block;
  position: relative;
}
a.link-on-img--affiliates {
  border-radius: 0;
  padding: 0;
  min-height: 270px;
  max-height: 270px;
  height: 100%;
}
a.link-on-img--affiliates :not(.pokageo-flag-circle) img {
  -o-object-fit: none !important;
     object-fit: none !important;
}

.line-separator {
  display: block;
  width: 80px;
  height: 1px;
  background-color: var(--line-separator-color);
  margin: 0.9375rem auto;
}
.line-separator--single-post {
  width: 100%;
  height: 2px;
  margin: 2.5rem auto;
}

.dot-separator {
  display: inline-block;
  width: 2px;
  height: 2px;
  border-radius: 100%;
  background-color: var(--text-color-alt);
  margin: auto 0.375rem;
  vertical-align: middle;
}
.dot-separator--white {
  background-color: var(--white);
}

.label-category {
  padding: 0.3125rem;
  width: 127px;
  font-size: 0.875rem;
  line-height: 19px;
  background-color: var(--secondary-color);
  color: var(--white);
  text-align: center;
  border-radius: var(--border-radius);
  font-weight: 700;
}

.link-absolute {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.dark-gradient {
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(25%, rgba(0, 0, 0, 0.25)), color-stop(50%, rgba(0, 0, 0, 0.5)), color-stop(65%, rgba(0, 0, 0, 0.65)), color-stop(75%, rgba(0, 0, 0, 0.75)), to(rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.25) 25%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.65) 65%, rgba(0, 0, 0, 0.75) 75%, rgb(0, 0, 0) 100%);
  height: 100%;
  width: 100%;
}

/**************************************************************/
/* ========================================================== */
/* 			           COMMENTS                                   */
/* ========================================================== */
ul.comments {
  list-style: none;
  padding-top: 1.875rem;
}

.comment-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -0.625rem;
  width: 100%;
}
.comment-body > div {
  padding: 0 0.625rem;
}
.comment-body__thumb img {
  min-width: 70px;
  min-height: 70px;
  max-width: 70px;
  max-height: 70px;
  border-radius: 100%;
}
.comment-body__details {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 70px);
          flex: 0 0 calc(100% - 70px);
}
.comment-body__details h4,
.comment-body__details h4 a,
.comment-body__details .comment-body__author,
.comment-body__details .comment-body__author a {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.33;
  color: var(--text-color);
  margin-bottom: 0.3125rem;
}
.comment-body__details p {
  font-size: 0.9375rem;
  line-height: 1.46;
  color: var(--text-color-alt);
  margin-bottom: 0.9375rem;
}
.comment-body__date {
  display: block;
  font-size: 0.875rem;
  line-height: 1.35;
  margin-bottom: 0.625rem;
  color: var(--text-color-alt);
}
.comment-body a {
  margin-bottom: 1.25rem;
}
.comment-body .comment-reply-link,
.comment-body .comment-edit-link {
  font-size: 1.125rem;
  text-decoration: none;
  font-style: normal;
}
.comment-body .comment-reply-link:hover,
.comment-body .comment-edit-link:hover {
  text-decoration: underline;
}
.comment-body .comment-reply-link {
  font-weight: 700;
}
.comment-body .comment-edit-link {
  margin-left: 15px;
  font-weight: 400;
  opacity: 0.6;
}
.comment-body .line-separator {
  height: 1px;
}

.comment .children {
  list-style: none;
  padding-left: 5.625rem;
}

.link-arrow {
  display: inline-block;
  font-size: 2rem;
  margin-top: auto;
  height: 2.125rem;
  width: 2.125rem;
}
.link-arrow i {
  display: block;
  height: 100%;
  width: 100%;
}
.link-arrow--yellow {
  color: var(--secondary-color);
}

/**************************************************************/
/* ========================================================== */
/* 			           Comment Respond                              */
/* ========================================================== */
.comment-respond textarea {
  margin-bottom: 1.25rem;
  margin-top: 1.25rem;
}
.comment-respond h3 {
  margin: 1.5625rem 0;
  font-size: var(--h3-font-size);
  line-height: var(--headings-line-height);
  color: inherit;
  font-weight: var(--headings-font-weight);
}
.comment-respond input[type=submit] {
  border: 0 none;
  margin-top: 20px;
  cursor: pointer;
}

.comment .comment-respond {
  margin-bottom: 2.5rem;
}

.comment-reply-title small {
  font-size: 1.125rem;
  margin-left: 0.9375rem;
  text-decoration: underline;
}

.textarea-style,
.input-style {
  border-radius: var(--border-radius);
  padding: 25px;
  color: var(--text-color);
  width: 100%;
  border: 1px solid rgba(74, 91, 104, 0.1);
  outline: 0;
  resize: none;
}
.textarea-style:focus-visible,
.input-style:focus-visible {
  border: 1px solid var(--text-color-alt);
}
.textarea-style::-webkit-input-placeholder, .input-style::-webkit-input-placeholder {
  color: var(--text-color-alt);
}
.textarea-style::-moz-placeholder, .input-style::-moz-placeholder {
  color: var(--text-color-alt);
}
.textarea-style:-ms-input-placeholder, .input-style:-ms-input-placeholder {
  color: var(--text-color-alt);
}
.textarea-style::-ms-input-placeholder, .input-style::-ms-input-placeholder {
  color: var(--text-color-alt);
}
.textarea-style::placeholder,
.input-style::placeholder {
  color: var(--text-color-alt);
}

.comment-form-cookies-consent {
  margin-top: 1.25rem;
}
.comment-form-cookies-consent input {
  margin-right: 6px;
}

/* ========================================================== */
/* 			           Comments Navigation                              */
/* ========================================================== */
.navigation.comment-navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.navigation.comment-navigation .nav-links > div:first-child {
  margin-right: 10px;
}

/**************************************************************/
.wp-block-tag-cloud a {
  display: inline-block;
  padding: 0.5rem 1.125rem;
  background-color: var(--white);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: var(--text-color);
  font-size: 0.875rem !important;
  -webkit-transition: -webkit-box-shadow 300ms ease;
  transition: -webkit-box-shadow 300ms ease;
  transition: box-shadow 300ms ease;
  transition: box-shadow 300ms ease, -webkit-box-shadow 300ms ease;
}
.wp-block-tag-cloud a:not(:last-of-type) {
  margin-right: 0.625rem;
}
.wp-block-tag-cloud a:hover {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
}

/* ========================================================== */
/* 			           POST SINGLE                                */
/* ========================================================== */
.single-post-wrapper img:not(.post-element-author img, .review-logo--rounded > img) {
  border-radius: var(--border-radius);
}
.single-post-wrapper .wysiwyg-part .post-featured-image {
  margin-bottom: 1.25rem;
}

.single-post-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -0.625rem;
}
.single-post-bottom .post-element-tags,
.single-post-bottom .social-icons {
  padding: 0.625rem;
}

.section-related-posts,
.section-post-comments {
  padding: 90px 0 0;
}

/**************************************************************/
/* ========================================================== */
/* 			           POST SC STYLE 1                            */
/* ========================================================== */
.post-element--s1 {
  -webkit-box-shadow: 0 16px 29px rgba(29, 39, 48, 0.1);
          box-shadow: 0 16px 29px rgba(29, 39, 48, 0.1);
  border-radius: var(--border-radius);
  overflow: hidden;
}
.post-element--s1 img.size-post-wide,
.post-element--s1 img.size-post-thumb {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 270px;
  min-height: 270px;
  height: 100%;
  width: 100%;
}
.post-element--s1 .post-element-inner-wrapper {
  padding: 2.25rem;
  border-radius: var(--border-radius);
  background-color: var(--white);
}
.post-element--s1 p {
  color: var(--text-color);
  margin-bottom: 0.625rem;
}
.post-element--s1.post-element--no-image .post-element-inner-wrapper {
  padding: 3.75rem 2.5rem 2.5rem;
}
.post-element--s1.post-element--no-image .post-element-category {
  margin-bottom: 0.9375rem;
}
.post-element--s1.post-element--no-image.post-element h3 {
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
}
.post-element--s1.post-element--no-image.post-element p {
  color: var(--text-color-alt);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.post-element--related .post-element-inner-wrapper {
  padding: 1.25rem;
}
.post-element--horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-element--horizontal > a {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 390px;
          flex: 0 0 390px;
}
.post-element--horizontal .post-element-inner-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 390px);
          flex: 0 0 calc(100% - 390px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.post-element--horizontal img.size-post-s1-h {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.post-element--horizontal .post-element-bottom-wrapper {
  margin-top: auto;
}
.post-element--half > a {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.post-element--half .post-element-inner-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/*----------  This is due to cover dark block   ----------*/
.post-element-author span {
  color: var(--text-color);
}

/*----------  This is due to box-shadow and carousel overflow hidden  ----------*/
.poka-carousel .post-element--s1 {
  margin-bottom: 50px;
  margin-top: 20px;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:SIDEBAR]
   ========================================================================== */
.sidebar > div {
  border-radius: var(--border-radius);
  padding: 1.25rem;
  background-color: var(--boxes-background-color);
}
.sidebar > div:not(:last-of-type) {
  margin-bottom: 1.5625rem;
}
.sidebar h1 a,
.sidebar h2 a,
.sidebar h3 a,
.sidebar h4 a,
.sidebar h5 a {
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sidebar h1:hover a,
.sidebar h2:hover a,
.sidebar h3:hover a,
.sidebar h4:hover a,
.sidebar h5:hover a {
  color: var(--secondary-color);
}
.sidebar h3 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.33;
  color: var(--text-color);
  margin-bottom: 0.3125rem;
}
.sidebar h4 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.31;
  color: var(--text-color);
  margin-bottom: 0.3125rem;
}
.sidebar--sticky {
  position: sticky;
  top: 0;
}
.sidebar.jsStickySidebar {
  position: sticky;
  top: 0;
}

.widget-title h2 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  padding-bottom: 0.9375rem;
  border-bottom: 2px solid var(--main-color);
  font-weight: var(--headings-font-weight);
}
.widget-single-article > a {
  display: block;
  margin-bottom: 0.9375rem;
}
.widget-single-article img {
  max-height: 207px;
  min-height: 207px;
  -o-object-fit: cover;
     object-fit: cover;
}
.widget-single-article h3 {
  margin-bottom: 0;
}
.widget-single-article img {
  width: 100%;
  max-height: 207px;
  min-height: 207px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius);
}
.widget-latest-news--s1 {
  margin: 0 -0.3125rem;
}
.widget-latest-news--s1 img {
  min-width: 80px;
  max-width: 80px;
  min-height: 80px;
  max-height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius);
}
.widget-latest-news--s1 h4 {
  margin-bottom: 0.3125rem;
}
.widget-latest-news--s2 img {
  width: 100%;
  max-height: 207px;
  min-height: 207px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius);
}
.widget-latest-news--s2 h3 {
  margin-bottom: 0.3125rem;
}
.widget-single-article:not(:last-of-type) {
  margin-bottom: 0.625rem;
}
.widget-post-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.widget-post-article-small:not(:last-of-type) {
  margin-bottom: 0.625rem;
}
.widget-post-article-small > a {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 90px;
          flex: 0 0 90px;
  min-width: 90px;
  padding: 0 0.3125rem;
}
.widget-post-article-big {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.widget-post-article-big > a {
  margin-bottom: 0.625rem;
}
.widget-post-article-big:not(:last-of-type) {
  margin-bottom: 1.25rem;
}
.widget-article-text {
  padding: 0 0.3125rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 90px);
          flex: 0 0 calc(100% - 90px);
}
.widget-tags a {
  margin-bottom: 0.375rem;
}

.widget ul:not(.review-pros, .faq-list) {
  list-style-type: none;
}
.widget ul:not(.review-pros, .faq-list) li {
  position: relative;
  margin-bottom: 0.3125rem;
  padding-left: 1.125rem;
}
.widget ul:not(.review-pros, .faq-list) li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid var(--main-color);
}
.widget ul:not(.review-pros, .faq-list) a {
  color: var(--text-color);
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.3;
}
.widget ul:not(.review-pros, .faq-list) a:hover {
  color: var(--main-color);
}

/* ========================================================== */
/* 			           Tag Widget                              */
/* ========================================================== */
.wp-block-tag-cloud {
  margin-bottom: -0.625rem;
}
.wp-block-tag-cloud a {
  display: inline-block;
  padding: 0.5rem 1.125rem;
  background-color: var(--white);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: var(--text-color);
  font-size: 0.875rem !important;
  -webkit-transition: -webkit-box-shadow 300ms ease;
  transition: -webkit-box-shadow 300ms ease;
  transition: box-shadow 300ms ease;
  transition: box-shadow 300ms ease, -webkit-box-shadow 300ms ease;
  margin-bottom: 0.625rem;
}
.wp-block-tag-cloud a:not(:last-of-type) {
  margin-right: 0.625rem;
}
.wp-block-tag-cloud a:hover {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
}

.widgets-php .post-tiles .row > div, .sidebar .post-tiles .row > div {
  -webkit-box-flex: 100% !important;
      -ms-flex: 100% !important;
          flex: 100% !important;
  max-width: 100% !important;
}

.post-tile {
  position: relative;
  border-radius: var(--border-radius);
  height: 100%;
  overflow: hidden;
  padding-bottom: 5%;
  padding-top: 5%;
}
.widgets-php .post-tile .post-tile-content, .sidebar .post-tile .post-tile-content {
  max-width: 70%;
  padding: 1.25rem 0;
}
.widgets-php .post-tile .post-tile-title, .sidebar .post-tile .post-tile-title {
  font-size: 1rem;
}
.widgets-php .post-tile .post-tile-cta, .sidebar .post-tile .post-tile-cta {
  margin-bottom: 0.9375rem;
}
.widgets-php .post-tile .post-tile-date, .sidebar .post-tile .post-tile-date {
  margin-bottom: 0.625rem;
}
.widgets-php .post-tile .post-tile-date .post-element-info, .sidebar .post-tile .post-tile-date .post-element-info {
  font-size: 0.6875rem;
}
.post-tile--sm .post-tile-content {
  max-width: 70%;
  padding: 1.25rem 0;
}
.post-tile--sm .post-tile-title {
  font-size: 1.25rem;
}
.post-tile--sm .post-tile-cta {
  margin-bottom: 0.9375rem;
}
.post-tile--sm .post-tile-date {
  margin-bottom: 0.625rem;
}
.post-tile--sm .post-tile-date .post-element-info {
  font-size: 0.6875rem;
}

.post-tile-img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.post-tile-img img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.post-tile-content-wrapper {
  height: 100%;
  width: 100%;
  background-image: -ms-linear-gradient(90deg, rgba(29, 39, 48, 0.58824) 0%, rgba(29, 39, 48, 0.59) 0%, rgba(29, 39, 48, 0.28) 52%, rgba(29, 39, 48, 0) 100%);
}
.post-tile-content-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(29, 39, 48, 0.52);
}

.post-tile-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  max-width: 80%;
  margin: 0 auto;
  padding: 2.5rem 0;
  text-align: center;
  z-index: 1;
}

.post-tile-cta {
  margin-bottom: 2.1875rem;
}

.post-tile-date {
  margin-bottom: 0.9375rem;
}
.post-tile-date .post-element-info {
  color: #fff;
  font-size: 0.875rem;
  margin: 0;
}
.post-tile-date .dot-separator {
  background-color: #fff;
}

.post-tile-title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.post-tile-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
}
.widgets-php .post-tile-title a, .sidebar .post-tile-title a {
  color: #fff;
}
.post-tile-title a {
  color: #fff;
  display: block;
}

.post-tile-descr {
  font-size: 1rem;
  line-height: 1.56;
  color: var(--white);
  margin-top: 0.625rem;
}

.group-category {
  margin: 1.25rem 0;
}

.posts-archives-wrapper h1,
.posts-taxonomies-wrapper h1 {
  font-size: 2.625rem;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  color: var(--text-color);
  font-weight: var(--headings-font-weight);
}

.taxonomy-intro p {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  color: var(--text-color);
}

.pagination {
  margin: 0 -0.9375rem -0.9375rem 0;
}
.pagination-wrapper {
  margin: 3.125rem 0;
  display: block;
  text-align: center;
}
.pagination a,
.pagination span {
  font-size: 1.125rem;
  line-height: 1.33;
  padding: 1.25rem 1.5625rem;
  color: #465664;
  -webkit-box-shadow: 0 16px 29px rgba(29, 39, 48, 0.1);
          box-shadow: 0 16px 29px rgba(29, 39, 48, 0.1);
  background-color: var(--boxes-background-color);
  display: inline-block;
  margin-right: 0.9375rem;
  margin-bottom: 0.9375rem;
  border-radius: var(--border-radius);
}
.pagination span.current {
  color: var(--white);
  background-color: var(--secondary-color);
}

/* ==========================================================================
   PokaTheme SCSS Styles [PARTIALS:FAQ]
   ========================================================================== */
.faq-wrapper .faq-list {
  list-style: none;
  margin-top: -1.25rem;
  padding-left: 0;
}
.faq-wrapper .faq-list .faq-item {
  margin-bottom: 0;
  padding-left: 0;
}
.faq-wrapper .faq-list .faq-item::before {
  display: none;
}
.faq-wrapper .faq-list .faq-item h3.faq-item-question {
  font-size: 1.3125rem;
}
.faq-wrapper .faq-list .faq-item h4.faq-item-question {
  font-size: 1.125rem;
}
.faq-wrapper .faq-list .faq-item h5.faq-item-question {
  font-size: 1rem;
}
.faq-wrapper .faq-list .faq-item .faq-item-question {
  line-height: 1.3;
  color: var(--faq-question-text-color);
  background: var(--faq-question-bg-color);
  font-weight: 400;
  position: relative;
  padding: 1rem 3rem 1rem 1rem;
  border-bottom: 1px solid var(--faq-border-color);
  cursor: pointer;
  margin: 0;
}
.faq-wrapper .faq-list .faq-item .faq-item-question::after {
  content: "m";
  position: absolute;
  color: var(--faq-icon-color);
  right: 1rem;
  top: 1rem;
  font-size: 1.625rem;
  font-family: pokatheme !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-variant: normal !important;
  text-transform: none !important;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.faq-wrapper .faq-list .faq-item .faq-item-answer {
  background: var(--faq-answer-bg-color);
  max-height: 0;
  height: auto;
  overflow: hidden;
  -webkit-transition: max-height 300ms ease;
  transition: max-height 300ms ease;
}
.faq-wrapper .faq-list .faq-item .faq-item-answer .faq-item-answer-inner {
  padding: 1.25rem 1.875rem;
}
.faq-wrapper .faq-list .faq-item .faq-item-answer p {
  color: var(--faq-answer-text-color);
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.faq-wrapper .faq-list .faq-item .faq-item-answer p:last-child {
  margin-bottom: 0;
}
.faq-wrapper .faq-list .faq-item .faq-item-answer p a {
  text-decoration: underline;
  color: var(--main-color);
}
.faq-wrapper .faq-list .faq-item.open .faq-item-question::after {
  content: "o";
}
.faq-wrapper .faq-list .faq-item.open .faq-item-answer {
  max-height: 1000px;
}

.poka-carousel-wrapper--article .tns-ovh {
  margin-bottom: -45px;
  padding-bottom: 45px;
}

.tns-nav {
  font-size: 0;
  margin: 30px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 20px;
}
.tns-nav button {
  background-color: var(--secondary-color);
  border-radius: 50%;
  border: none;
  height: 20px;
  min-height: 20px;
  width: 20px;
  min-width: 20px;
  margin: 0 5px;
  padding: 0;
  opacity: 0.25;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tns-nav button:hover {
  opacity: 1;
}
.tns-nav button.tns-nav-active {
  border-radius: var(--border-radius);
  height: 20px;
  min-height: 20px;
  min-width: 60px;
  width: 60px;
  opacity: 1;
}

.block-editor .poka-carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
  overflow: hidden;
}
.block-editor .poka-carousel[data-carousel-items="1"] > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 1);
          flex: 0 0 calc(100% / 1);
  max-width: calc(100% / 1);
  padding: 0 15px;
}
.block-editor .poka-carousel[data-carousel-items="2"] > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 2);
          flex: 0 0 calc(100% / 2);
  max-width: calc(100% / 2);
  padding: 0 15px;
}
.block-editor .poka-carousel[data-carousel-items="3"] > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 3);
          flex: 0 0 calc(100% / 3);
  max-width: calc(100% / 3);
  padding: 0 15px;
}
.block-editor .poka-carousel[data-carousel-items="4"] > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 4);
          flex: 0 0 calc(100% / 4);
  max-width: calc(100% / 4);
  padding: 0 15px;
}
.block-editor .poka-carousel[data-carousel-items="5"] > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 5);
          flex: 0 0 calc(100% / 5);
  max-width: calc(100% / 5);
  padding: 0 15px;
}
.block-editor .poka-carousel[data-carousel-items="6"] > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 6);
          flex: 0 0 calc(100% / 6);
  max-width: calc(100% / 6);
  padding: 0 15px;
}
.block-editor .poka-carousel[data-carousel-items="7"] > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 7);
          flex: 0 0 calc(100% / 7);
  max-width: calc(100% / 7);
  padding: 0 15px;
}
.block-editor .poka-carousel[data-carousel-items="8"] > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 8);
          flex: 0 0 calc(100% / 8);
  max-width: calc(100% / 8);
  padding: 0 15px;
}
.block-editor .poka-carousel[data-carousel-items="9"] > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 9);
          flex: 0 0 calc(100% / 9);
  max-width: calc(100% / 9);
  padding: 0 15px;
}
.block-editor .poka-carousel[data-carousel-items="10"] > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 10);
          flex: 0 0 calc(100% / 10);
  max-width: calc(100% / 10);
  padding: 0 15px;
}

/* ==========================================================================
   PokaTheme SCSS Styles [PARTIALS:ELEMENTS]
   ========================================================================== */
.wp-block-cover.wp-block-cover-has-curve-top, .wp-block-cover.wp-block-cover-has-curve-bottom {
  overflow: hidden;
}
.wp-block-cover.wp-block-cover-has-curve-top .wp-block-cover__inner-container {
  z-index: 3;
}
.wp-block-cover.wp-block-cover-has-curve-bottom .wp-block-cover__inner-container {
  z-index: 3;
}

.wp-block-cover-top-curve {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 2;
}

.wp-block-cover-bottom-curve {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: 2;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:Amp Styles]
   ========================================================================== */
.amp-toggle-menu {
  border: none;
  cursor: pointer;
}
.amp-toggle-menu:focus {
  outline: none;
}

#amp-sidemenu {
  width: 80%;
  width: var(--mm-ocd-width);
  min-width: 200px;
  min-width: var(--mm-ocd-min-width);
  max-width: 440px;
  max-width: var(--mm-ocd-max-width);
  background: #fff;
}
#amp-sidemenu:before {
  content: "Menu";
  display: block;
  height: 50px;
  height: var(--mm-spn-item-height);
  padding: 0 40px;
  padding: 0 calc(var(--mm-spn-item-indent) * 2);
  line-height: 50px;
  line-height: var(--mm-spn-item-height);
  opacity: 0.4;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-left: 20px;
  padding-left: var(--mm-spn-item-indent);
}
#amp-sidemenu ul.menu:before {
  content: "";
  display: block;
  position: absolute;
  top: inherit;
  width: 100%;
  border-top: 1px solid currentColor;
  opacity: 0.15;
}
#amp-sidemenu ul li:hover > .sub-menu {
  display: block;
}
#amp-sidemenu ul li > .sub-menu {
  display: none;
}
#amp-sidemenu ul li.menu-item-has-children {
  position: relative;
  background: inherit;
  cursor: pointer;
  display: block;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#amp-sidemenu ul li.menu-item-has-children:after {
  content: "";
  display: block;
  position: absolute;
  top: 17px;
  right: 25px;
  z-index: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(135deg) translate(0, -50%);
  transform: rotate(135deg) translate(0, -50%);
  opacity: 0.4;
}
#amp-sidemenu ul li.menu-item-has-children > a {
  padding-right: 30px;
}
#amp-sidemenu ul li a {
  display: block;
  position: relative;
  background: inherit;
  color: inherit;
  text-decoration: none;
  z-index: 1;
  padding: 13px 20px;
  padding: calc((var(--mm-spn-item-height) - var(--mm-spn-line-height)) / 2) var(--mm-spn-item-indent);
}
#amp-sidemenu ul li a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  margin-left: 20px;
  margin-left: var(--mm-spn-item-indent);
  width: calc(100% - var(--mm-spn-item-indent));
  opacity: 0.15;
  height: 1px;
  background: rgb(50, 51, 53);
}

.faq-wrapper amp-accordion.faq-list .faq-item:focus {
  outline: none;
}
.faq-wrapper amp-accordion.faq-list .faq-item[expanded] .faq-item-question::after {
  content: "o";
}
.faq-wrapper amp-accordion.faq-list .faq-item h4 {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #e8ecf2;
}
.faq-wrapper amp-accordion.faq-list .faq-item h4:focus {
  outline: none;
}
.faq-wrapper amp-accordion.faq-list .faq-item-answer {
  max-height: unset !important;
  padding: 1.25rem 1.875rem !important;
}

.i-amphtml-layout-size-defined {
  height: auto !important;
}

amp-base-carousel {
  position: relative !important;
}
amp-base-carousel > i-amphtml-sizer {
  padding-top: 400px;
}
amp-base-carousel > div {
  /*	.i-amphtml-carousel-content*/
  position: relative !important;
}
amp-base-carousel > div > div {
  /*			.i-amphtml-carousel-scroll*/
}
amp-base-carousel > div > div > div {
  /*			.i-amphtml-carousel-slotted*/
  padding-right: 10px;
}

i-amphtml-sizer {
  padding-top: 400px;
}

amp-selector > ul {
  font-size: 0;
  margin: 30px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 20px;
}
amp-selector > ul li {
  background-color: var(--secondary-color);
  border-radius: 50%;
  border: none;
  height: 18px;
  width: 18px;
  margin: 0 5px;
  padding: 0;
  opacity: 0.26;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  outline: none;
  cursor: pointer;
}
amp-selector > ul li[selected] {
  border-radius: var(--border-radius);
  height: 20px;
  width: 59px;
  opacity: 1;
  outline: none !important;
}

#amp-mobile-version-switcher {
  bottom: 0;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:FOOTER]
   ========================================================================== */
footer {
  background-color: var(--footer-background);
  z-index: 3;
}

.footer-section--padding {
  padding: 30px 0;
}

.footer-section--padding-alt {
  padding: 70px 0 50px;
}

.footer-section--padding-alt-nt {
  padding: 0 0 70px;
}

.footer-section--background {
  background-color: var(--boxes-background-color);
}

.footer-section--copyright p {
  color: var(--footer-text-color);
  font-size: 0.75rem;
}

.section-newsletter-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section-newsletter-flex-part {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.section-footer-widgets {
  padding: 75px 0;
}

.footer-widgets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-widgets > div {
  padding-right: 2.5rem;
}
.footer-widgets > div:first-child {
  min-width: 30%;
}
.footer-widgets .widget {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer-widgets .widget > h3 {
  color: var(--text-color);
  display: block;
  font-size: 1.3125rem;
  font-weight: var(--headings-font-weight);
  letter-spacing: 0;
  margin-bottom: 1.5625rem;
}
.footer-widgets .widget .wp-block-group__inner-container > h3 {
  color: var(--text-color);
  display: block;
  font-size: 1.3125rem;
  font-weight: var(--headings-font-weight);
  letter-spacing: 0;
  margin-bottom: 1.5625rem;
}
.footer-widgets .widget_text {
  max-width: 16.25rem;
}
.footer-widgets .widget_text .textwidget,
.footer-widgets .widget_text .wp-block-group__inner-container {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
  padding-right: 20px;
}

.awareness-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.awareness-logos img {
  margin: 0.625rem 1.25rem;
}

.newsletter-form {
  position: relative;
  max-width: 36.875rem;
  width: 100%;
}
.newsletter-form input[type=text] {
  border: none;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.3;
  min-width: none;
  padding: 1.0625rem 6.25rem 1.0625rem 1.6875rem;
  /* Chrome/Opera/Safari */
  /* Firefox 19+ */
  /* IE 10+ */
  /* Firefox 18- */
  display: block;
  width: 100%;
  border: 2px solid #fff;
  background: #fff;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
}
.newsletter-form input[type=text]::-webkit-input-placeholder {
  color: var(--text-color);
}
.newsletter-form input[type=text]::-moz-placeholder {
  color: var(--text-color);
}
.newsletter-form input[type=text]:-ms-input-placeholder {
  color: var(--text-color);
}
.newsletter-form input[type=text] ::-webkit-input-placeholder {
  color: var(--text-color);
}
.newsletter-form input[type=text] ::-moz-placeholder {
  color: var(--text-color);
}
.newsletter-form input[type=text] :-ms-input-placeholder {
  color: var(--text-color);
}
.newsletter-form input[type=text] ::-ms-input-placeholder {
  color: var(--text-color);
}
.newsletter-form input[type=text] ::placeholder {
  color: var(--text-color);
}
.newsletter-form input[type=text]:focus {
  outline: none;
  border-color: var(--secondary-button-color);
}
.newsletter-form input[type=submit] {
  background-color: var(--secondary-button-color);
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.3;
  min-width: 11.25rem;
  padding: 1.0625rem 0.9375rem;
  text-transform: var(--buttons-text-transform);
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  border: 2px solid var(--secondary-button-color);
}

/* ==========================================================================
   PokaTheme SCSS Styles [PARTIALS:HAS SIDEBAR]
   ========================================================================== */
.has-sidebar .reviews-table {
  /* Style 1 SCSS for review tables inside a page with sidebar */
  /* Style 2 SCSS for review tables inside a page with sidebar */
  /* Style 3 SCSS for review tables inside a page with sidebar */
  /* Style 4 scss for review tables inside a page with sidebar */
  /* Style 5 scss for review tables inside a page with sidebar */
  /* General box wrap styles for review tables inside a page with sidebar */
}
.has-sidebar .reviews-table--style1 .review-box-thumb {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
}
.has-sidebar .reviews-table--style1 .review-box-meta {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.has-sidebar .reviews-table--style1 .review-box-meta > * {
  margin: 0;
}
.has-sidebar .reviews-table--style2 .review-box-meta {
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.has-sidebar .reviews-table--style2 .review-box-meta .review-box-rating {
  padding-left: 0;
}
.has-sidebar .reviews-table--style2 .review-box-meta > * {
  margin: 0;
}
.has-sidebar .reviews-table--style3 .review-box-thumb--counter {
  padding: 0px;
}
.has-sidebar .reviews-table--style3 .review-box-thumb:after {
  left: 10px;
  top: 33%;
}
.has-sidebar .reviews-table--style3 .review-box-meta {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}
.has-sidebar .reviews-table--style3 .review-pros-cons {
  padding-left: 10px;
}
.has-sidebar .reviews-table--style4 .review-box-thumb {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 30px;
}
.has-sidebar .reviews-table--style4 .review-box-meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.has-sidebar .reviews-table--style4 .review-box-meta > * {
  margin: 0;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:FIXED-REVIEW-BOX]
   ========================================================================== */
.bottom-fixed-review-box {
  background: var(--boxes-background-color);
  display: none;
  padding: 20px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  height: auto;
  width: 100%;
  z-index: 10;
}
.bottom-fixed-review-box .review-logo {
  min-height: 80px;
  height: 80px;
  min-width: 80px;
  width: 80px;
}
.bottom-fixed-review-box .review-logo img {
  min-width: unset;
  height: 100%;
}
.bottom-fixed-review-box .review-name-and-rating {
  -webkit-transform: translate(0px, 4px);
          transform: translate(0px, 4px);
}
.bottom-fixed-review-box .review-box-rating {
  padding: 0;
}

.bottom-fixed-review-box-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bottom-fixed-review-box-grid-part--left {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.preloader {
  position: fixed;
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 999999;
}

.preloader-status {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.preloader-status img {
  height: 100px;
  max-height: 100%;
  opacity: 0.4;
  -webkit-animation: pokablink 4s infinite alternate;
          animation: pokablink 4s infinite alternate;
}
@-webkit-keyframes pokablink {
  0% {
    opacity: 0.4;
  }
  10% {
    opacity: 0.7;
  }
  30% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
  70% {
    opacity: 0.2;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pokablink {
  0% {
    opacity: 0.4;
  }
  10% {
    opacity: 0.7;
  }
  30% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
  70% {
    opacity: 0.2;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}
.preloader-status .preloader-text {
  margin-top: 8px;
  font-style: normal !important;
  font-weight: 400 !important;
  font-variant: normal !important;
}

.sponsored-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 10px;
  width: 100%;
  max-width: var(--container-width);
  padding: 0 var(--container-pad);
  margin: 0 auto;
  height: auto;
  overflow: hidden;
  background-color: #fefefe;
  -webkit-box-shadow: 1px 0px 49px -14px rgba(0, 0, 0, 0.75);
  box-shadow: 1px 0px 49px -14px rgba(0, 0, 0, 0.75);
}
.sponsored-modal--content {
  background-color: #fefefe;
  margin-bottom: 20px;
  padding: 20px;
}
.sponsored-modal--close {
  color: #aaa;
  float: right;
  font-size: 32px;
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 34px;
}
.sponsored-modal--close:hover, .sponsored-modal--close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.sponsored-modal .review-box-thumb {
  overflow: hidden;
  -ms-flex-preferred-size: 17%;
  flex-basis: 20%;
  height: 10%;
  max-width: 19%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin: auto 0;
}
.sponsored-modal .review-box-info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 30px;
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  margin: auto 0;
}
.sponsored-modal .review-logo:not(.review-logo--rounded) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 132px;
  padding: 30px 0;
}
.sponsored-modal .review-box-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 0;
  margin-bottom: auto;
}
.sponsored-modal .review-box-rating {
  margin: 0 auto;
  padding-left: 0;
}
.sponsored-modal .review-bonus {
  line-height: 1;
  text-align: center;
}
.sponsored-modal .review-pros-cons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  display: none;
}
.sponsored-modal .review-box-actions {
  background-color: var(--boxes-secondary-background-color);
  -ms-flex-preferred-size: 32%;
  flex-basis: 30%;
  max-width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4px;
  padding: 30px;
}
.sponsored-modal .review-box-actions .btn {
  margin-bottom: 10px;
  margin: auto 0;
}
.sponsored-modal .review-extra-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: row;
}
.sponsored-modal .editor-styles-wrapper .review-box-name,
.sponsored-modal .review-box-name,
.sponsored-modal .wp-block-cover .review-box-name,
.sponsored-modal .wp-block-cover .review-box-name:not(.has-text-color),
.sponsored-modal .wysiwyg-part .review-box-name {
  display: none;
}
.sponsored-modal .review-box-actions .review-bonus {
  /* margin-bottom: 20px; */
  margin: auto 10px;
}
.sponsored-modal .rating .icon {
  color: var(--rating-color);
  font-size: 0.7rem;
  line-height: 1;
  margin: 0 1px;
}
.sponsored-modal .review-rating > span {
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--boxes-text-color);
  margin-right: 10px;
}
.sponsored-modal .review-rating > span strong {
  font-size: 1.2rem;
  line-height: 1.15;
  color: var(--text-color);
  font-weight: 700;
}

/* ==========================================================================
   Print styles.
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media screen and (max-width: 1210px) {
  .text-xl-center {
    text-align: center;
  }
  .position-xl-relative {
    position: relative;
  }
  .d-xl-none {
    display: none!important;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .col-xl {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-xl-1 {
    -webkit-box-flex: 8.3333333333%;
        -ms-flex: 8.3333333333%;
            flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-xl-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 16.6666666667%;
        -ms-flex: 16.6666666667%;
            flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-xl-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 25%;
        -ms-flex: 25%;
            flex: 25%;
    max-width: 25%;
  }
  .off-xl-3 {
    margin-left: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 33.3333333333%;
        -ms-flex: 33.3333333333%;
            flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-xl-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 41.6666666667%;
        -ms-flex: 41.6666666667%;
            flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-xl-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    max-width: 50%;
  }
  .off-xl-6 {
    margin-left: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 58.3333333333%;
        -ms-flex: 58.3333333333%;
            flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-xl-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 66.6666666667%;
        -ms-flex: 66.6666666667%;
            flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-xl-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 75%;
        -ms-flex: 75%;
            flex: 75%;
    max-width: 75%;
  }
  .off-xl-9 {
    margin-left: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 83.3333333333%;
        -ms-flex: 83.3333333333%;
            flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-xl-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 91.6666666667%;
        -ms-flex: 91.6666666667%;
            flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-xl-11 {
    margin-left: 91.6666666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
  .off-xl-12 {
    margin-left: 100%;
  }
  /* Generate all gap classes */
  .gap-xl-20,
  .gap-xl-20-x {
    margin-left: -20px;
  }
  .gap-xl-20 > *,
  .gap-xl-20-x > * {
    padding-left: 20px;
  }
  .gap-xl-20,
  .gap-xl-20-y {
    margin-top: -20px;
  }
  .gap-xl-20 > *,
  .gap-xl-20-y > * {
    padding-top: 20px;
  }
  .gap-xl-30,
  .gap-xl-30-x {
    margin-left: -30px;
  }
  .gap-xl-30 > *,
  .gap-xl-30-x > * {
    padding-left: 30px;
  }
  .gap-xl-30,
  .gap-xl-30-y {
    margin-top: -30px;
  }
  .gap-xl-30 > *,
  .gap-xl-30-y > * {
    padding-top: 30px;
  }
  .gap-xl-50,
  .gap-xl-50-x {
    margin-left: -50px;
  }
  .gap-xl-50 > *,
  .gap-xl-50-x > * {
    padding-left: 50px;
  }
  .gap-xl-50,
  .gap-xl-50-y {
    margin-top: -50px;
  }
  .gap-xl-50 > *,
  .gap-xl-50-y > * {
    padding-top: 50px;
  }
  .reset-xl {
    margin-left: 0;
  }
  .sticker {
    padding: 1.875rem 3.125rem 1.875rem 1.875rem;
  }
  .section-review-hero.section-review-hero--style-1 .review-pros-cons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section-review-hero.section-review-hero--style-2 {
    padding-bottom: 1.875rem;
  }
  .review-cta-wrapper.review-cta-wrapper--style-2 {
    padding: 0.9375rem;
  }
  .review-pros-cons.vertical ul {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 992px) {
  .text-lg-center {
    text-align: center;
  }
  .position-lg-relative {
    position: relative;
  }
  .d-lg-none {
    display: none!important;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .col-lg {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-lg-1 {
    -webkit-box-flex: 8.3333333333%;
        -ms-flex: 8.3333333333%;
            flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-lg-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 16.6666666667%;
        -ms-flex: 16.6666666667%;
            flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-lg-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 25%;
        -ms-flex: 25%;
            flex: 25%;
    max-width: 25%;
  }
  .off-lg-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 33.3333333333%;
        -ms-flex: 33.3333333333%;
            flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-lg-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 41.6666666667%;
        -ms-flex: 41.6666666667%;
            flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-lg-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    max-width: 50%;
  }
  .off-lg-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 58.3333333333%;
        -ms-flex: 58.3333333333%;
            flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-lg-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 66.6666666667%;
        -ms-flex: 66.6666666667%;
            flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-lg-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 75%;
        -ms-flex: 75%;
            flex: 75%;
    max-width: 75%;
  }
  .off-lg-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 83.3333333333%;
        -ms-flex: 83.3333333333%;
            flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-lg-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 91.6666666667%;
        -ms-flex: 91.6666666667%;
            flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-lg-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
  .off-lg-12 {
    margin-left: 100%;
  }
  /* Generate all gap classes */
  .gap-lg-20,
  .gap-lg-20-x {
    margin-left: -20px;
  }
  .gap-lg-20 > *,
  .gap-lg-20-x > * {
    padding-left: 20px;
  }
  .gap-lg-20,
  .gap-lg-20-y {
    margin-top: -20px;
  }
  .gap-lg-20 > *,
  .gap-lg-20-y > * {
    padding-top: 20px;
  }
  .gap-lg-30,
  .gap-lg-30-x {
    margin-left: -30px;
  }
  .gap-lg-30 > *,
  .gap-lg-30-x > * {
    padding-left: 30px;
  }
  .gap-lg-30,
  .gap-lg-30-y {
    margin-top: -30px;
  }
  .gap-lg-30 > *,
  .gap-lg-30-y > * {
    padding-top: 30px;
  }
  .gap-lg-50,
  .gap-lg-50-x {
    margin-left: -50px;
  }
  .gap-lg-50 > *,
  .gap-lg-50-x > * {
    padding-left: 50px;
  }
  .gap-lg-50,
  .gap-lg-50-y {
    margin-top: -50px;
  }
  .gap-lg-50 > *,
  .gap-lg-50-y > * {
    padding-top: 50px;
  }
  .reset-lg {
    margin-left: 0;
  }
  .header-top {
    padding: 0.9375rem 0;
  }
  .header-top-flex-part--left {
    display: none;
  }
  .header-top-flex-part--right {
    max-width: 100px;
  }
  .header-top-flex-part--right .btn-mobile-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-logo {
    text-align: left;
  }
  .header-bottom {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    -webkit-box-shadow: 0px 8px 9px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 8px 9px 0px rgba(0, 0, 0, 0.1);
  }
  .site-header--style2 .header-bottom-inner {
    margin: 0 -15px;
  }
  .header-search-form-wrapper {
    position: relative;
    top: auto;
    max-height: 0;
    overflow: hidden;
  }
  .header-search-form {
    width: 100%;
  }
  .mobile-logo-link + * {
    display: none; /* Hide the next sibling */
  }
  .mobile-logo-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .section,
  .site-content-padding {
    padding: 50px 0;
  }
  .site-content-bottom-pad-90 {
    padding-bottom: 50px;
  }
  .section-review-hero.section-review-hero--style-1 .review-pros-cons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .section-review-hero.section-review-hero--style-3 .review-bonus {
    text-align: center;
    padding: 1.25rem 1.25rem 0;
  }
  .section-review-hero.section-review-hero--style-3 .review-terms {
    text-align: center;
    padding: 0 1.25rem;
    margin-bottom: 0;
  }
  .review-cta-wrapper.review-cta-wrapper--style-2 {
    padding: 1.875rem;
  }
  .section-related-reviews {
    padding: 50px 0 0;
  }
  .review-box-meta {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .review-box-rating {
    width: 100%;
    margin-top: 10px;
  }
  .review-box--style4 .review-box-rating {
    width: auto;
  }
  .table-header {
    display: block;
  }
  .table-header .sorting-items {
    padding: 6px;
  }
  .table-header .sorting-items:first-child {
    margin-bottom: 15px;
  }
  .table-header .sorting-items li {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    text-align: center;
  }
  .table-header .sorting-items li a {
    font-size: 0.75rem;
    padding: 4px 10px;
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .review-logo--boxed {
    padding: 0;
    height: 220px;
  }
  .comment-body__thumb img {
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
  }
  .comment .children {
    padding-left: 12%;
  }
  .section-related-posts,
  .section-post-comments {
    padding: 50px 0 0;
  }
  .section-newsletter-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section-newsletter-flex-part {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    min-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .section-newsletter-flex-part--left {
    margin-bottom: 15px;
  }
  .footer-widgets {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-widgets > div:first-child {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    min-width: 50%;
  }
  .footer-widgets > div:nth-child(even) {
    padding-right: 0;
  }
  .footer-widgets > div {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    min-width: 50%;
    margin-bottom: 1.875rem;
  }
  .newsletter-form input[type=submit] {
    min-width: 6.25rem;
  }
}

@media screen and (max-width: 768px) {
  .text-md-center {
    text-align: center;
  }
  .position-md-relative {
    position: relative;
  }
  .d-md-none {
    display: none!important;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .col-md {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-md-1 {
    -webkit-box-flex: 8.3333333333%;
        -ms-flex: 8.3333333333%;
            flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-md-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 16.6666666667%;
        -ms-flex: 16.6666666667%;
            flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-md-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 25%;
        -ms-flex: 25%;
            flex: 25%;
    max-width: 25%;
  }
  .off-md-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 33.3333333333%;
        -ms-flex: 33.3333333333%;
            flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-md-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 41.6666666667%;
        -ms-flex: 41.6666666667%;
            flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-md-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    max-width: 50%;
  }
  .off-md-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 58.3333333333%;
        -ms-flex: 58.3333333333%;
            flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-md-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 66.6666666667%;
        -ms-flex: 66.6666666667%;
            flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-md-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 75%;
        -ms-flex: 75%;
            flex: 75%;
    max-width: 75%;
  }
  .off-md-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 83.3333333333%;
        -ms-flex: 83.3333333333%;
            flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-md-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 91.6666666667%;
        -ms-flex: 91.6666666667%;
            flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-md-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
  .off-md-12 {
    margin-left: 100%;
  }
  /* Generate all gap classes */
  .gap-md-20,
  .gap-md-20-x {
    margin-left: -20px;
  }
  .gap-md-20 > *,
  .gap-md-20-x > * {
    padding-left: 20px;
  }
  .gap-md-20,
  .gap-md-20-y {
    margin-top: -20px;
  }
  .gap-md-20 > *,
  .gap-md-20-y > * {
    padding-top: 20px;
  }
  .gap-md-30,
  .gap-md-30-x {
    margin-left: -30px;
  }
  .gap-md-30 > *,
  .gap-md-30-x > * {
    padding-left: 30px;
  }
  .gap-md-30,
  .gap-md-30-y {
    margin-top: -30px;
  }
  .gap-md-30 > *,
  .gap-md-30-y > * {
    padding-top: 30px;
  }
  .gap-md-50,
  .gap-md-50-x {
    margin-left: -50px;
  }
  .gap-md-50 > *,
  .gap-md-50-x > * {
    padding-left: 50px;
  }
  .gap-md-50,
  .gap-md-50-y {
    margin-top: -50px;
  }
  .gap-md-50 > *,
  .gap-md-50-y > * {
    padding-top: 50px;
  }
  .reset-md {
    margin-left: 0;
  }
  .site-content-top-60 {
    margin-top: 40px;
  }
  .wysiwyg-part ul.list-columns > li {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .wysiwyg-part blockquote {
    margin: 2.5rem auto;
    padding: 0.625rem 0.9375rem;
    max-width: 95%;
  }
  .wp-block-column > * {
    margin-bottom: var(--container-pad);
  }
  .editor-styles-wrapper ul.wp-block-list.list-columns > li {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .author-card {
    padding: 20px 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .author-card.author-card--top {
    margin-top: 30px;
  }
  .author-card__avatar {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
  }
  .author-card .author-card__social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .review-overview.review-overview--style-1 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .review-overview.review-overview--style-1 .review-overview-list {
    max-height: 250px;
  }
  .review-grid-item.wide .review-grid-item-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .review-grid-item.wide .review-badge-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .review-grid-item.wide .review-title {
    text-align: center;
  }
  .review-grid-item.wide .review-rating {
    text-align: center;
  }
  .review-grid-item.first::after {
    left: 1.5625rem;
    right: 0;
  }
  .review-box-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .review-box-thumb {
    -ms-flex-preferred-size: unset;
        flex-basis: unset;
    max-width: unset;
  }
  .review-box-rating {
    width: auto;
    margin-top: 0;
  }
  .review-box-actions {
    -ms-flex-preferred-size: unset;
        flex-basis: unset;
    max-width: unset;
  }
  .review-box--narrow .review-bonus {
    max-width: unset;
    text-align: center;
  }
  .review-box--style2 .review-box-thumb {
    background-color: var(--theme-color);
    padding-right: 40px;
  }
  .review-box--style2 .review-box-thumb--counter {
    padding: 0 90px;
  }
  .review-box--style3 .review-box-thumb {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    max-width: unset;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .review-box--style3 .review-box-meta {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-right: 20px;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .review-box--style3 .review-box-actions {
    max-width: unset;
    padding: 0 30px 30px;
  }
  .review-box--style4 .review-box-thumb {
    -ms-flex-preferred-size: unset;
        flex-basis: unset;
    max-width: unset;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .review-box--style4 .review-box-info,
  .review-box--style4 .review-box-actions {
    -ms-flex-preferred-size: unset;
        flex-basis: unset;
    max-width: unset;
  }
  .review-box--style4 .review-box-info {
    background-color: #fff;
  }
  .table-header .sorting-order {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .table-header .sorting-order li a {
    font-size: 0.75rem;
  }
  .reviews-search-form-wrapper {
    padding: 0.9375rem 2.5rem 1.875rem;
  }
  .reviews-search-form input[type=text] {
    font-size: 1.125rem;
    line-height: 1.2;
    padding: 0.9375rem 1.875rem 0.9375rem 0.9375rem;
  }
  .reviews-search-form button[type=submit] {
    font-size: 1.25rem;
    right: 0;
    width: 40px;
    height: 36px;
  }
  .reviews-search-form .reviews-search-form-items {
    max-height: 550px;
  }
  .reviews-search-form .reviews-search-form-item {
    padding: 1.25rem;
  }
  .reviews-search-form .reviews-search-form-item h3 {
    text-align: center;
  }
  .reviews-search-form .reviews-search-form-item .review-bonus {
    text-align: center;
  }
  .reviews-search-form .reviews-search-form-item .review-logo--boxed {
    height: 150px;
  }
  ul.comments {
    padding-top: 0.9375rem;
  }
  .comment-body__thumb img {
    min-width: 34px;
    min-height: 34px;
    max-width: 34px;
    max-height: 34px;
  }
  .comment .children {
    padding-left: 6%;
  }
  .comment-reply-title small {
    display: block;
    margin-left: 0;
    margin-top: 0.9375rem;
  }
  .post-element--horizontal > a {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .post-element--horizontal .post-element-inner-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .widget ul:not(.review-pros, .faq-list) li::before {
    top: 22px;
  }
  .widget ul:not(.review-pros, .faq-list) a {
    padding: 15px 0;
  }
  .post-tile .post-tile-content {
    max-width: 70%;
    padding: 1.25rem 0;
  }
  .post-tile .post-tile-title {
    font-size: 1rem;
  }
  .post-tile .post-tile-cta {
    margin-bottom: 0.9375rem;
  }
  .post-tile .post-tile-date {
    margin-bottom: 0.625rem;
  }
  .post-tile .post-tile-date .post-element-info {
    font-size: 0.6875rem;
  }
  .posts-archives-wrapper h1,
  .posts-taxonomies-wrapper h1 {
    font-size: 2.25rem;
  }
  .tns-nav {
    height: 26px;
  }
  .tns-nav button {
    height: 24px;
    min-height: 24px;
    width: 24px;
    min-width: 24px;
  }
  .tns-nav button.tns-nav-active {
    height: 24px;
    min-height: 24px;
  }
  .footer-section--padding-alt {
    padding: 40px 0 20px;
  }
  .footer-section--padding-alt-nt {
    padding: 0 0 40px;
  }
  .footer-widgets {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-widgets > div {
    padding-right: 0;
  }
  .footer-widgets > div:first-child {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    min-width: 100%;
  }
  .bottom-fixed-review-box .btn {
    font-size: 1rem;
  }
  .sponsored-modal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    gap: 14px;
    padding: 30px;
  }
  .sponsored-modal .review-box-thumb {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sponsored-modal .review-logo:not(.review-logo--rounded) {
    padding: 0;
  }
  .sponsored-modal .review-box-actions {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  .sponsored-modal .review-extra-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (max-width: 500px) {
  .text-sm-center {
    text-align: center;
  }
  .position-sm-relative {
    position: relative;
  }
  .d-sm-none {
    display: none!important;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .col-sm {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-sm-1 {
    -webkit-box-flex: 8.3333333333%;
        -ms-flex: 8.3333333333%;
            flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-sm-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 16.6666666667%;
        -ms-flex: 16.6666666667%;
            flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-sm-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 25%;
        -ms-flex: 25%;
            flex: 25%;
    max-width: 25%;
  }
  .off-sm-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 33.3333333333%;
        -ms-flex: 33.3333333333%;
            flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-sm-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 41.6666666667%;
        -ms-flex: 41.6666666667%;
            flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-sm-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    max-width: 50%;
  }
  .off-sm-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 58.3333333333%;
        -ms-flex: 58.3333333333%;
            flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-sm-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 66.6666666667%;
        -ms-flex: 66.6666666667%;
            flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-sm-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 75%;
        -ms-flex: 75%;
            flex: 75%;
    max-width: 75%;
  }
  .off-sm-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 83.3333333333%;
        -ms-flex: 83.3333333333%;
            flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-sm-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 91.6666666667%;
        -ms-flex: 91.6666666667%;
            flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-sm-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
  }
  .off-sm-12 {
    margin-left: 100%;
  }
  /* Generate all gap classes */
  .gap-sm-20,
  .gap-sm-20-x {
    margin-left: -20px;
  }
  .gap-sm-20 > *,
  .gap-sm-20-x > * {
    padding-left: 20px;
  }
  .gap-sm-20,
  .gap-sm-20-y {
    margin-top: -20px;
  }
  .gap-sm-20 > *,
  .gap-sm-20-y > * {
    padding-top: 20px;
  }
  .gap-sm-30,
  .gap-sm-30-x {
    margin-left: -30px;
  }
  .gap-sm-30 > *,
  .gap-sm-30-x > * {
    padding-left: 30px;
  }
  .gap-sm-30,
  .gap-sm-30-y {
    margin-top: -30px;
  }
  .gap-sm-30 > *,
  .gap-sm-30-y > * {
    padding-top: 30px;
  }
  .gap-sm-50,
  .gap-sm-50-x {
    margin-left: -50px;
  }
  .gap-sm-50 > *,
  .gap-sm-50-x > * {
    padding-left: 50px;
  }
  .gap-sm-50,
  .gap-sm-50-y {
    margin-top: -50px;
  }
  .gap-sm-50 > *,
  .gap-sm-50-y > * {
    padding-top: 50px;
  }
  .reset-sm {
    margin-left: 0;
  }
  .wysiwyg-part ul.list-columns > li {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .editor-styles-wrapper ul.wp-block-list.list-columns > li {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .section-review-hero.section-review-hero--style-1 .review-pros-cons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .review-box-name,
  .wysiwyg-part .review-box-name,
  .editor-styles-wrapper .review-box-name,
  .wp-block-cover .review-box-name,
  .wp-block-cover .review-box-name:not(.has-text-color) {
    margin-right: 0;
    margin-bottom: 2px;
  }
  .review-box-info .review-pros-cons {
    display: block;
  }
  .review-box-info .review-pros-cons ul + ul {
    margin-top: 10px;
  }
  .review-box-info .review-badge {
    margin-bottom: 10px;
  }
  .review-box-info {
    padding: 20px;
  }
  .review-box-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
  .review-box-rating {
    margin-left: 0;
  }
  .review-box-actions {
    padding: 20px;
  }
  .review-box--style2 .review-box-info {
    display: block;
    padding: 20px;
  }
  .review-box--style2 .review-box-meta {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    max-width: unset;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
  }
  .review-box--style2 .review-box-actions {
    padding: 20px;
  }
  .review-box--style3 .review-box-thumb:after {
    top: 0;
    left: 0;
    -webkit-transform: none;
            transform: none;
    border-radius: 0;
  }
  .review-box--style3 .review-box-thumb {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
  }
  .review-box--style3 .review-box-meta {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
  }
  .review-box--style3 .review-box-actions {
    padding: 0 20px 20px;
  }
  .review-box--style4 .review-box-actions {
    padding: 20px;
  }
  .review-box--style4 .review-box-info {
    padding: 20px 20px 40px;
  }
  .reviews-search-form-wrapper {
    padding: 0.9375rem 0 1.875rem;
  }
  .post-element--horizontal > a {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .post-element--horizontal .post-element-inner-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .post-element--half {
    margin-bottom: 1.25rem;
  }
  .col-12:nth-child(even) .post-element--half {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
  .post-element--half > a {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .post-element--half .post-element-inner-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .posts-archives-wrapper h1,
  .posts-taxonomies-wrapper h1 {
    font-size: 1.875rem;
  }
  .pagination {
    margin: 0 -0.625rem -0.625rem 0;
  }
  .pagination a,
  .pagination span {
    font-size: 1rem;
    padding: 0.9375rem 1.25rem;
    margin-right: 0.625rem;
    margin-bottom: 0.625rem;
  }
  .bottom-fixed-review-box .review-logo {
    min-height: 50px;
    height: 50px;
    min-width: 50px;
    width: 50px;
  }
  .bottom-fixed-review-box .btn {
    padding: 10px;
  }
  .bottom-fixed-review-box .rating .icon {
    font-size: 1rem;
  }
  .bottom-fixed-review-box .review-box-name {
    font-size: 1rem;
  }
  .bottom-fixed-review-box .review-rating > span strong {
    font-size: 1rem;
  }
  .bottom-fixed-review-box-grid-part--left {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .breadcrumbs-wrapper span {
    font-size: 1em;
  }
  .banner-wrapper.banner-wrapper--top {
    margin-top: 2.5rem;
  }
}

@media (max-width: 992px) {
  .breadcrumb-separator {
    padding: 0 0.625rem;
  }
}

@media screen and (max-width: 1120px) {
  .site-header--style2 .header-menu > li {
    padding-left: 0.8rem;
    padding-right: 0.5rem;
  }
  .site-header--style2 .header-menu > li.menu-item-has-children {
    padding-right: 1.4rem;
  }
  .site-header--style2 .header-menu > li.menu-item-has-children > a::after {
    right: -18px;
  }
}

@media screen and (min-width: 992px) {
  .section-review-hero.section-review-hero--style-3 .review-logo--boxed {
    height: 100%;
  }
  .review-cta-wrapper--sticky {
    position: sticky;
    top: 20px;
    margin-bottom: 20px;
  }
  .footer-widgets > div:last-child {
    padding-right: 0;
  }
}

@media only screen and (max-width: 1210px) {
  .review-sidebar.review-sidebar--style-3 {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 992px) {
  .review-sidebar.review-sidebar--style-3 {
    margin-bottom: 45px;
  }
}

@media screen and (min-width: 1210px) {
  .col-9 .reviews-table.reviews-table--style4 .review-box.review-box--style3 .review-box-thumb {
    padding-left: 40px;
  }
  .col-9 .reviews-table.reviews-table--style4 .review-box.review-box--style3 .review-box-thumb::after {
    top: 15%;
  }
  .col-9 .reviews-table.reviews-table--style4 .review-box.review-box--style3 .review-logo--rounded {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .col-9 .reviews-table.reviews-table--style4 .review-box.review-box--style3 .review-box-meta {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  .site-content .col-9 .review-box--style2 .review-pros-cons {
    padding-left: 20px;
  }
  .review-box--style3 .review-box-thumb--single .review-badge {
    max-width: 190px;
  }
}

@media screen and (min-width: 768.01px) and (max-width: 1210px) {
  .main-col .review-box-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .review-box-thumb {
    -ms-flex-preferred-size: unset;
        flex-basis: unset;
    max-width: unset;
  }
  .main-col .review-box-name,
  .main-col .wysiwyg-part .review-box-name,
  .main-col .editor-styles-wrapper .review-box-name,
  .main-col .wp-block-cover .review-box-name,
  .main-col .wp-block-cover .review-box-name:not(.has-text-color) {
    margin-right: 0;
    margin-bottom: 2px;
  }
  .main-col .review-box-info .review-badge {
    margin-bottom: 10px;
  }
  .main-col .review-box-info {
    padding: 20px;
  }
  .main-col .review-box-meta {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
  .main-col .review-box-rating {
    width: auto;
    margin-top: 0;
    margin-left: 0;
  }
  .main-col .review-box-actions {
    -ms-flex-preferred-size: unset;
        flex-basis: unset;
    max-width: unset;
    padding: 20px;
  }
  .main-col .review-box--style2 .review-box-thumb {
    background-color: var(--theme-color);
    padding-right: 40px;
  }
  .main-col .review-box--style2 .review-box-thumb--counter {
    padding: 0 90px;
  }
  .review-box--style2 .review-box-meta {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
            flex: 0 0 55%;
    max-width: 55%;
  }
  .main-col .review-box--style2 .review-box-meta {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    max-width: unset;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
  }
  .review-box--style2 .review-pros-cons {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
    max-width: 45%;
  }
}

@media screen and (min-width: 768.01px) {
  .main-col .review-box-thumb {
    -ms-flex-preferred-size: unset;
        flex-basis: unset;
    max-width: unset;
  }
  .main-col .review-box--narrow .review-bonus {
    max-width: unset;
    text-align: center;
  }
  .main-col .review-box--style2 .review-box-info {
    display: block;
    padding: 20px;
  }
  .main-col .review-box--style2 .review-box-actions {
    padding: 20px;
  }
  .main-col .review-box--style3 .review-box-thumb:after {
    top: 0;
    left: 0;
    -webkit-transform: none;
            transform: none;
    border-radius: 0;
  }
  .main-col .review-box--style3 .review-box-thumb {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
    max-width: unset;
  }
  .main-col .review-box--style3 .review-box-meta {
    padding-right: 20px;
    margin-top: 20px;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main-col .review-box--style3 .review-box-actions {
    max-width: unset;
    padding: 0 20px 20px;
  }
  .main-col .review-box--style4 .review-box-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-col .review-box--style4 .review-box-thumb {
    -ms-flex-preferred-size: unset;
        flex-basis: unset;
    max-width: unset;
  }
  .main-col .review-box--style4 .review-box-info,
  .main-col .review-box--style4 .review-box-actions {
    -ms-flex-preferred-size: unset;
        flex-basis: unset;
    max-width: unset;
  }
  .main-col .review-box--style4 .review-box-actions {
    padding: 20px;
  }
  .main-col .review-box--style4 .review-box-info {
    padding: 20px 50px 40px;
  }
}

@media screen and (min-width: 500.01px) and (max-width: 1210px) {
  .review-box--style2 .review-box-meta {
    padding-right: 20px;
  }
}

@media screen and (max-width: 1210px) and (min-width: 768.01px) {
  .review-box--style3 .review-box-thumb {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    max-width: unset;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 29%;
    padding-right: 29%;
  }
  .review-box--style3 .review-box-meta {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-right: 20px;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .review-box--style3 .review-box-rating {
    width: auto;
    margin-left: auto;
  }
  .review-box--style3 .review-box-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .review-box--style3 .review-box-actions {
    max-width: unset;
    padding: 0 30px 30px;
  }
}

@media screen and (max-width: 768px) and (min-width: 500.01px) {
  .post-element--s1 .post-element-inner-wrapper {
    padding: 1.625rem;
  }
}

@media screen and (min-width: 500.01px) and (max-width: 768px) {
  .post-element--related .post-element-inner-wrapper {
    padding: 0.9375rem;
  }
}

@media screen and (max-width: 1210.01px) {
  .has-sidebar .reviews-table--style1 .review-box-thumb {
    -ms-flex-preferred-size: inherit;
        flex-basis: inherit;
    max-width: inherit;
  }
  .has-sidebar .reviews-table--style1 .review-box-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: inherit;
  }
  .has-sidebar .reviews-table--style1 .review-box-meta > * {
    margin: inherit;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .has-sidebar .reviews-table--style1 .review-rating {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .has-sidebar .reviews-table--style1 .review-box-actions {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  .has-sidebar .reviews-table--style3 .review-box-actions {
    -ms-flex-preferred-size: unset;
        flex-basis: unset;
    max-width: unset;
  }
  .has-sidebar .reviews-table--style3 .review-box-thumb {
    background-color: var(--theme-color);
  }
  .has-sidebar .reviews-table--style3 .review-box-thumb:after {
    left: 25px;
    top: 50%;
  }
  .has-sidebar .reviews-table--style3 .review-box-info {
    padding-left: 30px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .has-sidebar .reviews-table--style3 .review-box-meta {
    max-width: unset;
  }
  .has-sidebar .reviews-table--style5 .review-box-wrap > * {
    -ms-flex-preferred-size: unset;
        flex-basis: unset;
    max-width: unset;
  }
  .has-sidebar .reviews-table--style5 .review-box-thumb {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .has-sidebar .reviews-table .review-box-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* Affiliates table + has-sidebar: horizontal row */
@media screen and (max-width: 1210px) {
  .has-sidebar .reviews-table[class*="reviews-table--style"] .review-box .review-box-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .has-sidebar .reviews-table[class*="reviews-table--style"] .review-box .review-box-info {
    min-width: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .has-sidebar .reviews-table[class*="reviews-table--style"] .review-box .review-box-actions {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 32%;
            flex: 0 1 32%;
    max-width: 32%;
    min-width: 0;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .has-sidebar .reviews-table[class*="reviews-table--style"].reviews-table--style1 .review-box .review-box-thumb,
  .has-sidebar .reviews-table[class*="reviews-table--style"].reviews-table--style2 .review-box .review-box-thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 17%;
            flex: 0 0 17%;
    max-width: 17%;
    width: auto;
  }
  .has-sidebar .reviews-table[class*="reviews-table--style"].reviews-table--style1 .review-box .review-box-meta,
  .has-sidebar .reviews-table[class*="reviews-table--style"].reviews-table--style2 .review-box .review-box-meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border-bottom: solid 2px #e4e8ed;
    margin-bottom: 25px;
    padding-bottom: 15px;
  }
  .has-sidebar .reviews-table[class*="reviews-table--style"].reviews-table--style1 .review-box .review-box-meta > *,
  .has-sidebar .reviews-table[class*="reviews-table--style"].reviews-table--style2 .review-box .review-box-meta > * {
    margin: unset;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    display: unset;
  }
  .has-sidebar .reviews-table[class*="reviews-table--style"].reviews-table--style1 .review-box .review-box-rating,
  .has-sidebar .reviews-table[class*="reviews-table--style"].reviews-table--style2 .review-box .review-box-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-width: 0;
    margin-left: auto;
    margin-top: 0;
    padding-left: 10px;
    width: auto;
  }
  .has-sidebar .reviews-table[class*="reviews-table--style"].reviews-table--style1 .review-box .review-rating,
  .has-sidebar .reviews-table[class*="reviews-table--style"].reviews-table--style2 .review-box .review-rating {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media screen and (max-width: 768px) {
  .has-sidebar .reviews-table[class*="reviews-table--style"].reviews-table--style1 .review-box .review-box-meta,
  .has-sidebar .reviews-table[class*="reviews-table--style"].reviews-table--style2 .review-box .review-box-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 8px;
    padding-bottom: 6px;
  }
  .has-sidebar .reviews-table[class*="reviews-table--style"].reviews-table--style1 .review-box .review-box-meta > .review-box-rating,
  .has-sidebar .reviews-table[class*="reviews-table--style"].reviews-table--style2 .review-box .review-box-meta > .review-box-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-top: 6px;
    padding-left: 0;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
}

/* Affiliates table: bonus + CTA (all breakpoints) */
.reviews-table[class*="reviews-table--style"] .review-box .review-bonus {
  font-size: 1rem;
  line-height: 1.3;
}
.reviews-table[class*="reviews-table--style"] .review-box .review-bonus strong {
  font-size: 1.125rem;
  line-height: 1.25;
}
.reviews-table[class*="reviews-table--style"] .review-box .review-badge {
  font-size: 0.6875rem;
  line-height: 1.25;
  padding: 0.1875rem 0.625rem;
  border-radius: 6px;
}
.reviews-table[class*="reviews-table--style"] .review-box .review-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 4px;
  width: 100%;
}
.reviews-table[class*="reviews-table--style"] .review-box .review-rating > .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1px;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  line-height: 1;
  margin: 0;
}
.reviews-table[class*="reviews-table--style"] .review-box .review-rating > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  line-height: 1;
  margin: 0;
}
.reviews-table[class*="reviews-table--style"] .review-box .review-rating .rating .icon {
  margin: 0;
}
.reviews-table[class*="reviews-table--style"].reviews-table--style1 .review-box .review-box-meta > .review-box-rating,
.reviews-table[class*="reviews-table--style"].reviews-table--style2 .review-box .review-box-meta > .review-box-rating,
.reviews-table[class*="reviews-table--style"].reviews-table--style4 .review-box--style3 .review-box-thumb .review-box-meta > .review-box-rating,
.reviews-table[class*="reviews-table--style"].reviews-table--style5 .review-box--style4 .review-box-meta > .review-box-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
.reviews-table[class*="reviews-table--style"].reviews-table--style3 .review-box--style2 .review-box-meta > .review-box-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 0;
}
.reviews-table[class*="reviews-table--style"] .review-box .review-box-meta > .review-box-rating .review-rating {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}
.reviews-table[class*="reviews-table--style"] .review-box .review-box-actions {
  padding: 22px 14px;
}
.reviews-table[class*="reviews-table--style"] .review-box .review-box-actions .review-bonus {
  margin-bottom: 12px;
}
.reviews-table[class*="reviews-table--style"] .review-box .review-box-actions .btn.btn--full,
.reviews-table[class*="reviews-table--style"] .review-box .review-box-actions .btn,
.reviews-table[class*="reviews-table--style"] .review-box .review-box-actions .poka-affiliate-cta--unavailable {
  font-size: 1rem;
  line-height: 1.25;
  padding: 12px 22px;
  min-height: 2.75rem;
  width: auto;
  max-width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
}

.reviews-table[class*="reviews-table--style"] .review-box .review-box-thumb {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 6px 4px;
}
.reviews-table[class*="reviews-table--style"].reviews-table--style1 .review-box .review-box-thumb .review-logo,
.reviews-table[class*="reviews-table--style"].reviews-table--style2 .review-box .review-box-thumb .review-logo,
.reviews-table[class*="reviews-table--style"].reviews-table--style3 .review-box--style2 .review-box-thumb .review-logo,
.reviews-table[class*="reviews-table--style"].reviews-table--style5 .review-box--style4 .review-box-thumb .review-logo {
  position: static;
}
.reviews-table[class*="reviews-table--style"].reviews-table--style1 .review-box .review-box-thumb .review-logo .pokageo-flag-circle,
.reviews-table[class*="reviews-table--style"].reviews-table--style2 .review-box .review-box-thumb .review-logo .pokageo-flag-circle,
.reviews-table[class*="reviews-table--style"].reviews-table--style3 .review-box--style2 .review-box-thumb .review-logo .pokageo-flag-circle,
.reviews-table[class*="reviews-table--style"].reviews-table--style5 .review-box--style4 .review-box-thumb .review-logo .pokageo-flag-circle {
  top: 8px;
  right: 8px;
  left: auto;
  bottom: auto;
  z-index: 2;
}
.reviews-table[class*="reviews-table--style"].reviews-table--style4 .review-box--style3 .review-box-thumb .review-logo {
  position: relative;
}
.reviews-table[class*="reviews-table--style"].reviews-table--style4 .review-box--style3 .review-box-thumb .review-logo .pokageo-flag-circle {
  top: 10px;
  right: 10px;
  left: auto;
  bottom: auto;
  z-index: 2;
}
.reviews-table[class*="reviews-table--style"].reviews-table--style4 .review-box--style3 .review-box-thumb .review-logo.review-logo--rounded .pokageo-flag-circle {
  top: -3px;
}
.reviews-table[class*="reviews-table--style"] .review-box .review-box-thumb .review-logo:not(.review-logo--rounded) {
  min-height: 0;
  height: auto;
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.reviews-table[class*="reviews-table--style"] .review-box .review-box-thumb .review-logo--rounded {
  max-width: 100%;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.reviews-table[class*="reviews-table--style"] .review-box .review-box-thumb .review-logo > img,
.reviews-table[class*="reviews-table--style"] .review-box .review-box-thumb .review-logo picture > img,
.reviews-table[class*="reviews-table--style"] .review-box .review-box-thumb img.wp-post-image {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.reviews-table[class*="reviews-table--style"] .review-box .review-box-thumb .review-logo--rounded > img {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Affiliates table 1–5: horizontal row + phone zoom (see theme _reviews-listing.scss) */
@media screen and (max-width: 1210px) {
  .reviews-table[class*="reviews-table--style"] .review-box .review-box-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .reviews-table[class*="reviews-table--style"] .review-box .review-box-info {
    min-width: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .reviews-table[class*="reviews-table--style"] .review-box .review-box-actions {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 32%;
            flex: 0 1 32%;
    max-width: 32%;
    min-width: 0;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style1 .review-box .review-box-thumb,
  .reviews-table[class*="reviews-table--style"].reviews-table--style2 .review-box .review-box-thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 17%;
            flex: 0 0 17%;
    max-width: 17%;
    width: auto;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style1 .review-box .review-box-meta,
  .reviews-table[class*="reviews-table--style"].reviews-table--style2 .review-box .review-box-meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border-bottom: solid 2px #e4e8ed;
    margin-bottom: 25px;
    padding-bottom: 15px;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style2 .review-box .review-box-meta {
    margin-bottom: 25px;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style1 .review-box .review-box-rating,
  .reviews-table[class*="reviews-table--style"].reviews-table--style2 .review-box .review-box-rating {
    margin-left: auto;
    margin-top: 0;
    padding-left: 10px;
    width: auto;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style1 .review-box .review-box-name,
  .reviews-table[class*="reviews-table--style"].reviews-table--style2 .review-box .review-box-name {
    margin-right: 24px;
    margin-bottom: 0;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style3 .review-box--style2 .review-box-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px;
    padding-left: 14px;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style3 .review-box--style2 .review-box-thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: none;
    width: auto;
    background-color: var(--theme-color);
    padding-right: 40px;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style3 .review-box--style2 .review-box-meta {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 44%;
            flex: 0 0 44%;
    max-width: 44%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style3 .review-box--style2 .review-pros-cons {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
    max-width: 45%;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style4 .review-box--style3 .review-box-thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41%;
            flex: 0 0 41%;
    max-width: 41%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 90px;
    padding-right: 25px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style4 .review-box--style3 .review-box-thumb::after {
    top: 50%;
    left: 25px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-radius: 50%;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style4 .review-box--style3 .review-box-meta {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 0;
    padding-left: 14px;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style4 .review-box--style3 .review-box-info {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-width: 0;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style4 .review-box--style3 .review-box-actions {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 32%;
            flex: 0 1 32%;
    max-width: 32%;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style5 .review-box--style4 .review-box-thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24%;
            flex: 0 0 24%;
    max-width: 24%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style5 .review-box--style4 .review-box-info,
  .reviews-table[class*="reviews-table--style"].reviews-table--style5 .review-box--style4 .review-box-actions {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 38%;
            flex: 0 1 38%;
    max-width: 38%;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style5 .review-box--style4 .review-box-meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border-bottom: solid 2px #e4e8ed;
    padding-bottom: 15px;
    margin-bottom: 25px;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style5 .review-box--style4 .review-box-rating {
    margin-left: auto;
    margin-top: 0;
    padding-left: 10px;
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  .reviews-table[class*="reviews-table--style"] {
    zoom: clamp(0.3, calc((100vw - 12px) / 680), 1);
  }
  .reviews-table[class*="reviews-table--style"] .review-box .review-box-info {
    padding: 10px 8px;
  }
  .reviews-table[class*="reviews-table--style"] .review-box .review-box-actions {
    padding: 10px 8px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 36%;
            flex: 0 1 36%;
    max-width: 42%;
    min-width: 108px;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style1 .review-box .review-box-thumb,
  .reviews-table[class*="reviews-table--style"].reviews-table--style2 .review-box .review-box-thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 13%;
            flex: 0 0 13%;
    max-width: 13%;
  }
  .reviews-table[class*="reviews-table--style"] .review-box .review-box-meta {
    margin-bottom: 8px;
    padding-bottom: 6px;
  }
  .reviews-table[class*="reviews-table--style"] .review-box .review-box-name {
    font-size: clamp(0.8125rem, 3.4vw, 1.125rem);
    margin-right: 6px;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style1 .review-box .review-box-meta,
  .reviews-table[class*="reviews-table--style"].reviews-table--style2 .review-box .review-box-meta,
  .reviews-table[class*="reviews-table--style"].reviews-table--style5 .review-box--style4 .review-box-meta,
  .reviews-table[class*="reviews-table--style"].reviews-table--style4 .review-box--style3 .review-box-thumb .review-box-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style1 .review-box .review-box-meta > .review-box-rating,
  .reviews-table[class*="reviews-table--style"].reviews-table--style2 .review-box .review-box-meta > .review-box-rating,
  .reviews-table[class*="reviews-table--style"].reviews-table--style5 .review-box--style4 .review-box-meta > .review-box-rating,
  .reviews-table[class*="reviews-table--style"].reviews-table--style4 .review-box--style3 .review-box-thumb .review-box-meta > .review-box-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-top: 6px;
    padding-left: 0;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style3 .review-box--style2 .review-box-meta {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .reviews-table[class*="reviews-table--style"].reviews-table--style3 .review-box--style2 .review-box-meta > .review-box-rating {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding-left: 0;
    margin-top: 6px;
  }
  .reviews-table[class*="reviews-table--style"] .review-box .review-box-meta > .review-box-rating .review-rating {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .reviews-table[class*="reviews-table--style"] .review-box .review-badge {
    font-size: clamp(0.4375rem, 1.65vw, 0.5rem);
    padding: 1px 3px;
    line-height: 1.1;
    border-radius: 3px;
    letter-spacing: 0.02em;
  }
  .reviews-table[class*="reviews-table--style"] .review-box .review-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 3px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .reviews-table[class*="reviews-table--style"] .review-box .review-rating > .rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1px;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    line-height: 1;
    margin: 0;
  }
  .reviews-table[class*="reviews-table--style"] .review-box .review-rating > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    line-height: 1;
    margin: 0;
    font-size: clamp(0.5625rem, 2.3vw, 0.6875rem);
  }
  .reviews-table[class*="reviews-table--style"] .review-box .review-rating > span strong {
    font-size: clamp(0.625rem, 2.5vw, 0.75rem);
    line-height: 1;
  }
  .reviews-table[class*="reviews-table--style"] .review-box .review-rating .rating .icon {
    font-size: clamp(0.5rem, 2.2vw, 0.6875rem);
    margin: 0;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    vertical-align: middle;
  }
  .reviews-table[class*="reviews-table--style"] .review-box .review-bonus {
    font-size: clamp(0.75rem, 3.05vw, 0.9375rem);
    line-height: 1.35;
    margin-bottom: 6px;
    word-break: normal;
    overflow-wrap: break-word;
    -webkit-hyphens: none;
        -ms-hyphens: none;
            hyphens: none;
  }
  .reviews-table[class*="reviews-table--style"] .review-box .review-bonus strong {
    font-size: clamp(0.875rem, 3.35vw, 1.0625rem);
  }
  .reviews-table[class*="reviews-table--style"] .review-box .review-box-actions .btn.btn--full,
  .reviews-table[class*="reviews-table--style"] .review-box .review-box-actions .btn,
  .reviews-table[class*="reviews-table--style"] .review-box .review-box-actions .poka-affiliate-cta--unavailable {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: normal;
    width: 100%;
    max-width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    min-height: 2.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    font-size: clamp(0.625rem, 2.65vw, 0.75rem);
    line-height: 1.25;
    padding: 6px 5px;
  }
}

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
      * Don't show links that are fragment identifiers,
      * or use the `javascript:` pseudo protocol
      */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
      * Printing Tables:
      * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
      */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* Block editor: Affiliates Table — drag handles on FormTokenField chips (same idea as Casino Card block) */
.interface-interface-skeleton__sidebar .poka-review-token-wrap .components-form-token-field__token[draggable="true"],
.components-panel__body .poka-review-token-wrap .components-form-token-field__token[draggable="true"] {
	cursor: grab;
}
.interface-interface-skeleton__sidebar .poka-review-token-wrap .components-form-token-field__token.poka-token--dragging,
.components-panel__body .poka-review-token-wrap .components-form-token-field__token.poka-token--dragging {
	cursor: grabbing;
	opacity: 0.92;
}

/* Geolocation: affiliate table — unavailable row + text-only CTA (no icon / no pseudo “sign”) */
.reviews-table .review-box--geo-unavailable {
	opacity: 0.92;
}
.reviews-table .poka-affiliate-cta--unavailable,
.review-box .poka-affiliate-cta--unavailable,
.review-box-actions .poka-affiliate-cta--unavailable {
	cursor: not-allowed;
	pointer-events: none;
	opacity: 0.75;
	display: inline-block;
	text-align: center;
	box-sizing: border-box;
}
/* Strip theme decorations: icon fonts, SVG, pseudo-elements */
.poka-affiliate-cta--unavailable::before,
.poka-affiliate-cta--unavailable::after {
	content: none !important;
	display: none !important;
	width: 0 !important;
	height: 0 !important;
	box-shadow: none !important;
	opacity: 0 !important;
}
.poka-affiliate-cta--unavailable svg,
.poka-affiliate-cta--unavailable > i,
.poka-affiliate-cta--unavailable .icon {
	display: none !important;
}

/* ==========================================================================
   Games CPT — single (Casino Guru layout) + archive + modal + popular carousel
   ========================================================================== */
.poka-game-page {
	background: #ffffff;
	color: #1e293b;
	padding: 1.5rem 0 2.5rem;
	box-sizing: border-box;
	font-size: var(--main-font-size);
	font-family: var(--main-font-family, inherit);
}
/* Wide preview — full content width (e.g. 1400px shell), title + CTAs centered on image */
.poka-game-hero-wide {
	width: 100%;
	margin: 0 0 1.75rem;
	border-radius: 12px;
	overflow: hidden;
}
.poka-game-hero-wide__stage {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	min-height: 200px;
	max-height: min(62vh, 720px);
	background: #f1f5f9;
	border-radius: inherit;
}
@media (max-width: 600px) {
	.poka-game-hero-wide__stage {
		/* Slightly taller than 16:9 so title + CTAs breathe on narrow phones */
		aspect-ratio: 16 / 10;
		min-height: 252px;
		max-height: none;
	}
}
.poka-game-hero-wide__bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
	vertical-align: top;
	-webkit-user-drag: none;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	pointer-events: none;
}
.poka-game-hero-wide__bg--placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(165deg, #cbd5e1 0%, #94a3b8 50%, #64748b 100%);
	pointer-events: none;
}
.poka-game-hero-wide__stage > .poka-game-hero-wide__bg:not(.poka-game-hero-wide__bg--placeholder) {
	position: absolute;
	inset: 0;
}
.poka-game-hero-wide--no-image .poka-game-hero-wide__stage-overlay {
	background: rgba(15, 23, 42, 0.5);
}
.poka-game-hero-wide__mast {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	max-width: min(100%, 26rem);
	padding: 0 0.75rem;
	box-sizing: border-box;
	pointer-events: none;
}
.poka-game-hero-wide__heading {
	margin: 0;
	font-size: clamp(1.85rem, 7.5vw, 3.25rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #ffffff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45), 0 4px 24px rgba(0, 0, 0, 0.35);
}
.poka-game-hero-wide__by {
	margin: 0.5rem 0 0;
	font-size: var(--main-font-size);
	font-weight: 600;
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.35;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
.poka-game-hero-wide__rating {
	margin: 0.65rem 0 0;
	pointer-events: none;
}
.poka-game-hero-wide__rating.review-rating {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
}
.poka-game-hero-wide__rating.review-rating > span {
	color: rgba(255, 255, 255, 0.95);
	font-size: var(--main-font-size);
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
.poka-game-hero-wide__rating.review-rating > span strong {
	color: #fff;
	font-weight: 800;
}
.poka-game-hero-wide__rating .rating {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.12rem;
	margin: 0;
}
.poka-game-hero-wide__rating .rating .icon {
	font-size: clamp(1rem, 3vw, 1.25rem);
	color: var(--rating-color, #ffc106);
	filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}
.poka-game-main__rating {
	margin: 0.35rem 0 0.75rem;
}
.poka-game-main__rating .rating {
	display: inline-flex;
	align-items: center;
	gap: 0.12rem;
	vertical-align: middle;
}
.poka-game-sidecard__rating {
	position: absolute;
	top: 0.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	pointer-events: none;
}
.poka-game-sidecard__rating .rating {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.1rem;
	margin: 0;
}
.poka-game-sidecard__rating .rating .icon {
	font-size: 0.75rem;
	color: var(--rating-color, #ffc106);
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.65));
}
.poka-game-hero-wide__stage-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: clamp(1rem, 3vw, 1.65rem);
	padding: 1rem 1.25rem;
	box-sizing: border-box;
	pointer-events: none;
	background: rgba(15, 23, 42, 0.42);
}
.poka-game-hero-wide__stage-overlay .poka-game-cta-buttons {
	pointer-events: auto;
	flex-shrink: 0;
}
.poka-game-cta-buttons--wide {
	max-width: 20rem;
	gap: 0.65rem;
}
.poka-game-cta-buttons--wide .poka-game-cta-buttons__free {
	padding: 0.85rem 1.25rem;
	font-size: var(--button-font-size, var(--main-font-size));
}
.poka-game-cta-buttons--wide .poka-game-cta-buttons__real {
	padding: 0.7rem 1.25rem;
	font-size: var(--button-font-size, var(--main-font-size));
}
.poka-game-cta-buttons--wide .poka-game-cta-buttons__free--placeholder {
	padding: 0.85rem 1.25rem;
	min-height: 3.1rem;
}
.poka-game-cta-buttons--wide .poka-game-cta-buttons__real--placeholder {
	padding: 0.7rem 1.25rem;
	min-height: 2.85rem;
}
.poka-game-shell.container {
	max-width: 1400px;
}
/* Theme .container often has padding 0 — add mobile side inset for games UI */
@media (max-width: 899px) {
	main.poka-single-game .container,
	body.post-type-archive-games .poka-games-archive > .container,
	body.poka-games-browse .poka-games-archive > .container,
	body.tax-game_category .poka-games-archive > .container,
	body.tax-game_provider .poka-games-archive > .container {
		padding-left: max(1.125rem, env(safe-area-inset-left, 0px));
		padding-right: max(1.125rem, env(safe-area-inset-right, 0px));
		box-sizing: border-box;
	}
}
.poka-game-layout {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
	align-items: stretch;
}
@media (min-width: 900px) {
	.poka-game-layout {
		flex-direction: row;
		align-items: flex-start;
		gap: 2rem;
	}
	.poka-game-layout__sidebar {
		flex: 0 0 min(300px, 32%);
		max-width: 340px;
	}
	.poka-game-layout__main {
		flex: 1;
		min-width: 0;
	}
}
.poka-game-sidecard {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.poka-game-sidecard__thumb {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	background: #252830;
	aspect-ratio: 1;
	max-width: 100%;
	margin-bottom: 0.5rem;
}
.poka-game-sidecard__thumb-inner {
	position: absolute;
	inset: 0;
}
.poka-game-sidecard__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	vertical-align: top;
	-webkit-user-drag: none;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	pointer-events: none;
}
.poka-game-sidecard__img--placeholder {
	background: linear-gradient(160deg, #4a5568 0%, #2d3748 100%);
}
.poka-game-sidecard__thumb-cover {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
	padding-top: 1.85rem;
	box-sizing: border-box;
	background: rgba(15, 17, 20, 0.42);
	backdrop-filter: blur(2px);
}
.poka-game-sidecard__thumb-cover:not(:has(.poka-game-sidecard__rating)) {
	padding-top: 0.5rem;
}
/* CTA stack on thumbnail + hero */
.poka-game-cta-buttons {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.45rem;
	width: 100%;
	max-width: 17.5rem;
}
.poka-game-cta-buttons--real-only {
	gap: 0;
	max-width: 100%;
}
.poka-game-sidecard__thumb-cover .poka-game-cta-buttons--real-only {
	max-width: 100%;
}
.poka-game-cta-buttons--hero {
	max-width: 19rem;
	gap: 0.65rem;
}
.poka-game-cta-buttons__free {
	display: grid;
	grid-template-columns: var(--poka-game-cta-icon-col, 2.5rem) minmax(0, 1fr);
	align-items: center;
	column-gap: 0.55rem;
	width: 100%;
	margin: 0;
	padding: 0.55rem 1rem;
	border: none;
	border-radius: 8px;
	background-color: #48bb78;
	color: #fff;
	font-family: inherit;
	font-weight: 800;
	font-size: var(--button-font-size, var(--main-font-size));
	line-height: 1.2;
	text-align: left;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(72, 187, 120, 0.35);
	transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}
.poka-game-cta-buttons__free:hover {
	background-color: #38a169;
	box-shadow: 0 4px 18px rgba(56, 161, 105, 0.45);
	color: #fff;
}
.poka-game-cta-buttons__free:focus-visible {
	outline: 2px solid #276749;
	outline-offset: 2px;
}
.poka-game-cta-buttons--hero .poka-game-cta-buttons__free {
	padding: 0.75rem 1.1rem;
	font-size: var(--button-font-size, var(--main-font-size));
}
.poka-game-cta-buttons__free:active {
	transform: scale(0.98);
	background-color: #2f855a;
}
.poka-game-cta-buttons__free-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	justify-self: stretch;
	width: 100%;
	min-width: 0;
}
.poka-game-cta-buttons__free-icon svg {
	display: block;
	overflow: visible;
}
.poka-game-cta-buttons__free-label {
	min-width: 0;
	font-size: 1em;
	font-weight: 800;
}
.poka-game-cta-buttons__real {
	display: grid;
	grid-template-columns: var(--poka-game-cta-icon-col, 2.5rem) minmax(0, 1fr);
	align-items: center;
	column-gap: 0.55rem;
	width: 100%;
	margin: 0;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	background: #553c9a;
	color: #fff !important;
	font-weight: 700;
	font-size: var(--button-font-size, var(--main-font-size));
	line-height: 1.2;
	text-decoration: none !important;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.22);
	transition: filter 0.15s ease, transform 0.1s ease;
}
.poka-game-cta-buttons--hero .poka-game-cta-buttons__real {
	padding: 0.62rem 1.1rem;
	font-size: var(--button-font-size, var(--main-font-size));
}
.poka-game-cta-buttons__real:hover {
	filter: brightness(1.08);
	color: #fff !important;
}
.poka-game-cta-buttons__real:active {
	transform: scale(0.98);
}
.poka-game-cta-buttons__real-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	justify-self: stretch;
	width: 100%;
	min-width: 0;
	color: inherit;
	opacity: 0.95;
}
.poka-game-cta-buttons__real-icon svg {
	display: block;
	overflow: visible;
}
.poka-game-cta-buttons__real-label {
	text-align: left;
	min-width: 0;
}
/* Placeholder CTAs: same footprint as real buttons, no copy (unfilled demo / no hero image). */
.poka-game-cta-buttons__free--placeholder,
.poka-game-cta-buttons__real--placeholder {
	display: grid;
	grid-template-columns: var(--poka-game-cta-icon-col, 2.5rem) minmax(0, 1fr);
	align-items: center;
	column-gap: 0.55rem;
	width: 100%;
	margin: 0;
	padding: 0.55rem 1rem;
	border-radius: 8px;
	pointer-events: none;
	cursor: default;
	box-sizing: border-box;
}
.poka-game-cta-buttons__free--placeholder {
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.1);
	min-height: 2.75rem;
}
.poka-game-cta-buttons__real--placeholder {
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(0, 0, 0, 0.2);
	min-height: 2.55rem;
}
.poka-game-cta-buttons__free--placeholder .poka-game-cta-buttons__free-icon,
.poka-game-cta-buttons__free--placeholder .poka-game-cta-buttons__free-label,
.poka-game-cta-buttons__real--placeholder .poka-game-cta-buttons__real-icon,
.poka-game-cta-buttons__real--placeholder .poka-game-cta-buttons__real-label {
	display: block;
	min-height: 0.85rem;
}
.poka-game-sidecard__thumb-cover .poka-game-cta-buttons__free--placeholder {
	background: rgba(72, 187, 120, 0.22);
	border-color: rgba(72, 187, 120, 0.35);
}
.poka-game-sidecard__thumb-cover .poka-game-cta-buttons__real--placeholder {
	background: rgba(85, 60, 154, 0.35);
	border-color: rgba(255, 255, 255, 0.18);
}
.poka-game-themes {
	margin-top: 0.25rem;
}
.poka-game-themes__heading {
	margin: 0 0 0.65rem;
	font-size: var(--main-font-size);
	font-weight: 700;
	color: #0f172a;
}
.poka-game-themes__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.poka-game-themes__tag {
	display: inline-block;
	padding: 0.35rem 0.75rem;
	border-radius: 6px;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	color: #334155;
	font-size: var(--main-font-size);
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s ease, border-color 0.15s ease;
}
.poka-game-themes__tag:hover {
	background: #e2e8f0;
	border-color: #48bb78;
	color: #0f172a;
}
.poka-game-main__header {
	margin-bottom: 1.25rem;
}
.poka-game-main__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: 700;
	color: #0f172a;
	line-height: 1.2;
}
.poka-game-main__intro {
	margin: 0;
	font-size: inherit;
	line-height: 1.55;
	color: #64748b;
	max-width: 52rem;
}
.poka-game-main__demo {
	margin: 0 0 1.5rem;
}
.poka-game-main__demo .btn,
.poka-game-main__demo .jsGameDemoOpen {
	background-color: var(--main-color, #48bb78) !important;
	border-color: var(--main-color, #48bb78) !important;
	color: #fff !important;
	font-weight: 600;
	border-radius: 8px;
	padding: 0.55rem 1.25rem;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}
.poka-game-main__demo .btn:hover,
.poka-game-main__demo .jsGameDemoOpen:hover {
	background-color: #38a169 !important;
	border-color: #38a169 !important;
	color: #fff !important;
}
.poka-game-mstats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem 1rem;
	margin: 0 0 1.5rem;
}
@media (max-width: 480px) {
	.poka-game-mstats {
		grid-template-columns: 1fr;
	}
}
.poka-game-mstat {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 1rem 1rem 1rem 0.9rem;
	box-sizing: border-box;
	min-height: 5.5rem;
}
.poka-game-mstat__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background-color: #f1f5f9;
	background-position: center;
	background-size: 22px 22px;
	background-repeat: no-repeat;
}
.poka-game-mstat--rtp .poka-game-mstat__icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2363b3ed' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}
.poka-game-mstat--maxwin .poka-game-mstat__icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2348bb78' stroke-width='2'%3E%3Cpath d='M12 3v18M8 7h8l-1 4H9z'/%3E%3C/svg%3E");
}
.poka-game-mstat--payout .poka-game-mstat__icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ecc94b' stroke-width='2'%3E%3Cpath d='M8 21l4-16 4 16M6 9h12'/%3E%3C/svg%3E");
}
.poka-game-mstat__body {
	min-width: 0;
}
.poka-game-mstat__label {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	flex-wrap: wrap;
	font-size: inherit;
	color: #64748b;
	margin-bottom: 0.25rem;
	line-height: 1.35;
}
.poka-game-mstat__info {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	border: 1px solid #63b3ed;
	color: #63b3ed;
	font-size: 9px;
	font-weight: 700;
	font-style: italic;
	font-family: Georgia, serif;
	line-height: 1;
	cursor: help;
}
.poka-game-mstat__value {
	display: block;
	font-size: 1.125rem;
	font-weight: 700;
	color: #0f172a;
}
.poka-game-verdict {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	align-items: stretch;
	background: #f8fafc;
	border-radius: 12px;
	padding: 1.25rem 1.35rem;
	margin: 0 0 2rem;
	border: 1px solid #e2e8f0;
}
@media (min-width: 600px) {
	.poka-game-verdict {
		flex-direction: row;
		align-items: center;
		gap: 1.75rem;
		padding: 1.35rem 1.5rem;
	}
}
.poka-game-verdict__score-wrap {
	flex-shrink: 0;
	text-align: center;
	min-width: 6.5rem;
}
.poka-game-verdict__score-ring {
	width: 88px;
	height: 88px;
	margin: 0 auto 0.35rem;
	border-radius: 50%;
	background: conic-gradient(#48bb78 0deg 320deg, rgba(255, 255, 255, 0.12) 320deg 360deg);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.poka-game-verdict__score-ring::after {
	content: "";
	position: absolute;
	inset: 5px;
	border-radius: 50%;
	background: #ffffff;
}
.poka-game-verdict__score-num {
	position: relative;
	z-index: 1;
	font-size: 1.35rem;
	font-weight: 800;
	color: #0f172a;
	line-height: 1;
}
.poka-game-verdict__score-label {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #64748b;
}
.poka-game-verdict__copy {
	flex: 1;
	min-width: 0;
}
.poka-game-verdict__heading {
	margin: 0 0 0.5rem;
	font-size: 1.0625rem;
	font-weight: 700;
	color: #0f172a;
}
.poka-game-verdict__text {
	margin: 0 0 1rem;
	font-size: inherit;
	line-height: 1.55;
	color: #475569;
}
.poka-game-verdict__readmore {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: #553c9a;
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 600;
	font-size: var(--button-font-size, var(--main-font-size));
	padding: 0.55rem 1.1rem;
	border-radius: 8px;
	transition: filter 0.15s ease;
}
.poka-game-verdict__readmore::after {
	content: "\2193";
	font-size: 0.95rem;
	line-height: 1;
	opacity: 0.9;
}
.poka-game-verdict__readmore:hover {
	filter: brightness(1.08);
	color: #fff !important;
}
.poka-game-about {
	margin: 0 0 2rem;
	padding: 0;
	color: #334155;
}
.poka-game-about a {
	color: #2f855a;
}
.poka-game-about p {
	font-size: inherit;
	line-height: 1.6;
	margin: 0 0 1rem;
}
/* Pros/cons: same shell as casino card body (ccb-* from casino-card-block) */
.poka-game-pros-cons {
	margin: 0 0 2rem;
	max-width: 100%;
}
.poka-game-pros-cons__card > .poka-game-pros-cons__body.ccb-body {
	border-top: none;
	padding: 1.25rem 1.375rem;
}
/* In-page jump to casinos: stop below sticky header; avoids scrolling the target flush to the top. */
.poka-single-game #poka-game-casinos {
	scroll-margin-top: clamp(4.5rem, 12vh, 7.5rem);
}
.poka-single-game #poka-game-about {
	scroll-margin-top: clamp(4.5rem, 12vh, 7.5rem);
}
.poka-game-lower {
	padding-top: 2rem;
	padding-bottom: 3rem;
	background: var(--body-background, #f7fafc);
	color: var(--text-color, #1d2730);
	font-size: var(--main-font-size);
	font-family: var(--main-font-family, inherit);
}
.poka-game-lower .poka-game-casinos__title {
	color: var(--text-color, #1d2730);
}
/* Game information panel (light card) */
.poka-game-specs.poka-game-specs--panel {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 18px 20px 16px;
	box-sizing: border-box;
	font-family: var(--main-font-family, inherit);
}
.poka-game-specs--panel .poka-game-specs__heading {
	margin: 0 0 14px;
	font-size: 1.125rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.3;
}
.poka-game-specs--panel .poka-game-specs__list {
	margin: 0;
}
.poka-game-specs--panel .poka-game-specs__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px 16px;
	padding: 11px 0;
	border-bottom: 1px solid #e2e8f0;
	font-size: inherit;
	line-height: 1.45;
}
.poka-game-specs--panel .poka-game-specs__row:last-child {
	border-bottom: 0;
	padding-bottom: 2px;
}
.poka-game-specs--panel .poka-game-specs__label {
	margin: 0;
	font-weight: 400;
	color: #64748b;
	text-align: left;
}
.poka-game-specs--panel .poka-game-specs__label-inner {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.poka-game-specs--panel .poka-game-specs__info {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 1px solid #94a3b8;
	color: #64748b;
	font-size: 10px;
	font-weight: 700;
	font-style: italic;
	font-family: Georgia, "Times New Roman", serif;
	line-height: 1;
	cursor: help;
	flex-shrink: 0;
}
.poka-game-specs--panel .poka-game-specs__value {
	margin: 0;
	color: #0f172a;
	font-weight: 500;
	text-align: right;
	justify-self: end;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-height: 22px;
}
.poka-game-specs--panel .poka-game-specs__status {
	display: inline-flex;
	vertical-align: middle;
}
.poka-game-specs--panel .poka-game-specs__status svg {
	display: block;
	vertical-align: middle;
}
.poka-game-main-row {
	margin-bottom: 2rem;
}
.poka-game-casinos__title {
	margin: 0 0 1.25rem;
	font-size: 1.5rem;
}
.poka-games-browse-terms {
	margin-bottom: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.poka-games-browse-terms__group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.poka-games-browse-terms__label {
	margin: 0;
	font-size: inherit;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	opacity: 0.85;
}
.poka-games-browse-terms__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.65rem;
}
.poka-games-browse-terms__item {
	margin: 0;
}
.poka-games-browse-terms__chip {
	display: inline-block;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	font-size: inherit;
	line-height: 1.3;
	text-decoration: none;
	border: 1px solid rgba(0, 0, 0, 0.12);
	background: rgba(0, 0, 0, 0.03);
	color: inherit;
	transition: background 0.15s ease, border-color 0.15s ease;
}
.poka-games-browse-terms__chip:hover {
	background: rgba(0, 0, 0, 0.07);
	border-color: rgba(0, 0, 0, 0.2);
}
.poka-games-archive__hubs {
	margin-bottom: 1.5rem;
}
.poka-games-archive__hubs-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem 1.25rem;
}
.poka-games-archive__hubs-item {
	margin: 0;
}
.poka-games-archive__hubs-link {
	font-weight: 600;
	text-decoration: none;
	border-bottom: 2px solid currentColor;
	padding-bottom: 0.1em;
}
.poka-games-archive__hubs-link:hover {
	opacity: 0.85;
}
.poka-games-browse-hub__back {
	margin: 0.35rem 0 0;
	font-size: inherit;
}
.poka-games-browse-hub__back a {
	text-decoration: none;
}
.poka-games-browse-hub__back a:hover {
	text-decoration: underline;
}
.poka-games-taxonomy__hub-link {
	margin: 0.35rem 0 0.75rem;
	font-size: inherit;
}
.poka-games-taxonomy__hub-link a {
	text-decoration: none;
}
.poka-games-taxonomy__hub-link a:hover {
	text-decoration: underline;
}
.poka-game-specs__link,
.poka-game-mstat__link {
	text-decoration: underline;
	text-underline-offset: 0.12em;
}
.poka-game-mstat__link {
	font-weight: 600;
}
.poka-games-archive {
	font-size: var(--main-font-size);
	font-family: var(--main-font-family, inherit);
}
.poka-games-archive__header {
	margin-bottom: 1.5rem;
}
/*
 * Games archive grid: layout is CSS Grid so cards stay full-width on phones.
 * Many themes ship mobile-first Bootstrap where .col-1 is 1/12 of the row below the sm
 * breakpoint; our old col-1 + col-sm-12 combo conflicted and produced “sliver” columns.
 */
.poka-games-archive__grid.row {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.25rem 1rem;
	margin-left: 0;
	margin-top: 0;
	width: 100%;
	box-sizing: border-box;
}
.poka-games-archive__grid.row > .poka-games-archive__cell,
.poka-games-archive__grid.row > [class*="col-"] {
	padding-left: 0 !important;
	padding-top: 0 !important;
	margin-left: 0;
	max-width: none !important;
	-webkit-box-flex: unset !important;
	-ms-flex: none !important;
	flex: none !important;
	width: auto !important;
	min-width: 0;
	box-sizing: border-box;
}
@media (min-width: 480px) {
	.poka-games-archive__grid.row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 640px) {
	.poka-games-archive__grid.row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media (min-width: 900px) {
	.poka-games-archive__grid.row {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
@media (min-width: 1100px) {
	.poka-games-archive__grid.row {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}
@media (min-width: 1300px) {
	.poka-games-archive__grid.row {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}
@media (min-width: 1600px) {
	.poka-games-archive__grid.row {
		grid-template-columns: repeat(7, minmax(0, 1fr));
	}
}
/* Denser game grid (archive + taxonomy): slightly tighter card padding on small tiles. */
.poka-games-archive__grid .poka-game-card__link {
	padding: 0 0 0.5rem;
}
.poka-games-archive__grid .poka-game-card__title--below {
	margin: 0.4rem 0.5rem 0.15rem;
	font-size: inherit;
	line-height: 1.2;
}
.poka-games-archive__grid .poka-game-card__meta--below {
	margin: 0 0.5rem 0.25rem;
	font-size: inherit;
}
.poka-games-archive__grid .poka-game-card__excerpt {
	margin: 0 0.5rem;
	font-size: inherit;
	line-height: 1.35;
}
.poka-games-archive__grid .poka-game-card__rating .rating .icon {
	font-size: 0.5625rem;
}
.poka-games-archive__grid .poka-game-card__rating {
	left: 0.3rem;
	bottom: 0.3rem;
}
/* Game cards: default grid + optional 2:3 portrait + carousel overlay */
.poka-game-card {
	background: var(--boxes-background-color, #f0f3f7);
	border-radius: var(--border-radius, 8px);
	overflow: hidden;
	height: 100%;
	transition: box-shadow 0.2s ease;
}
.poka-game-card:hover {
	box-shadow: 0 8px 24px rgba(29, 39, 48, 0.08);
}
.poka-game-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
	padding: 0 0 1.25rem;
}
.poka-game-card__thumb {
	position: relative;
	overflow: hidden;
	border-radius: var(--border-radius, 8px) var(--border-radius, 8px) 0 0;
	background: var(--boxes-secondary-background-color, #e8ecf2);
}
.poka-game-card__thumb--placeholder {
	min-height: 200px;
	display: flex;
	align-items: flex-end;
}
.poka-game-card__thumb--placeholder .poka-game-card__overlay {
	background: linear-gradient(
		180deg,
		var(--boxes-secondary-background-color, #4a5b68) 0%,
		rgba(0, 0, 0, 0.65) 100%
	);
}
.poka-game-card__thumb--placeholder .poka-game-card__caption {
	position: relative;
	pointer-events: none;
}
.poka-game-card--thumb-normal .poka-game-card__thumb {
	aspect-ratio: 16 / 9;
}
.poka-game-card--thumb-portrait .poka-game-card__thumb {
	aspect-ratio: 2 / 3;
}
.poka-game-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	-webkit-user-drag: none;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	pointer-events: none;
}
.poka-game-card__rating {
	position: absolute;
	left: 0.5rem;
	bottom: 0.5rem;
	z-index: 2;
	pointer-events: none;
}
.poka-game-card__rating .rating {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0.1rem;
	margin: 0;
}
.poka-game-card__rating .rating .icon {
	font-size: 0.8125rem;
	color: var(--rating-color, #ffc106);
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.55));
}
.poka-game-card__rating--carousel {
	left: auto;
	right: 0.5rem;
	bottom: auto;
	top: 0.5rem;
}
.poka-game-card--carousel .poka-game-card__thumb:has(.poka-game-card__rating--carousel) .poka-game-card__caption {
	padding-top: 2.25rem;
}
.poka-game-card__title--below {
	margin: 1rem 1.25rem 0.35rem;
	font-size: 1.125rem;
	overflow-wrap: break-word;
	word-break: normal;
}
.poka-game-card__meta--below {
	margin: 0 1.25rem 0.5rem;
	font-size: inherit;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--boxes-text-color, #4a5b68);
	overflow-wrap: break-word;
	word-break: normal;
}
.poka-game-card__excerpt {
	margin: 0 1.25rem;
	font-size: inherit;
	color: var(--boxes-text-color, #4a5b68);
	line-height: 1.45;
	overflow-wrap: break-word;
	word-break: normal;
}
/* Carousel / “popular slots” style: title + category on image */
.poka-game-card--carousel .poka-game-card__link {
	padding: 0;
}
.poka-game-card--carousel.poka-game-card--thumb-normal .poka-game-card__thumb {
	aspect-ratio: 16 / 9;
}
.poka-game-card--carousel .poka-game-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0) 35%,
		rgba(0, 0, 0, 0.75) 100%
	);
	pointer-events: none;
}
.poka-game-card--carousel .poka-game-card__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.25rem 1rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	pointer-events: none;
}
.poka-game-card--carousel .poka-game-card__title {
	margin: 0;
	font-size: clamp(0.875rem, 2.5vw, 1.05rem);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	text-transform: uppercase;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.poka-game-card--carousel .poka-game-card__meta {
	margin: 0;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
}
.jsGameDemoOpen.is-loading {
	opacity: 0.65;
	pointer-events: none;
	cursor: wait;
}
body.poka-game-demo-modal-open {
	overflow: hidden;
}
.poka-game-demo-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(0.5rem, 2vw, 1.25rem);
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}
.poka-game-demo-modal.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}
.poka-game-demo-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(29, 39, 48, 0.72);
	cursor: pointer;
}
.poka-game-demo-modal__dialog {
	position: relative;
	width: min(96vw, 1680px);
	height: min(94vh, 1000px);
	max-height: 94vh;
	background: #0d1117;
	border-radius: var(--border-radius, 10px);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
/* Matches casino card gallery lightbox #ccb-lb-close (casino-card-block) */
.poka-game-demo-modal__close {
	position: absolute;
	top: max(1rem, env(safe-area-inset-top, 0px));
	right: max(1rem, env(safe-area-inset-right, 0px));
	z-index: 20;
	appearance: none;
	-webkit-appearance: none;
	border: none;
	margin: 0;
	padding: 0;
	width: 44px;
	height: 44px;
	min-width: 0;
	max-width: none;
	min-height: 0;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e53935;
	color: #fff;
	line-height: 0;
	font-size: 0;
	cursor: pointer;
	box-shadow: none;
	transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
	box-sizing: border-box;
}
.poka-game-demo-modal__close:hover,
.poka-game-demo-modal__close:focus-visible {
	background: #c62828;
	transform: translateY(2px);
	box-shadow: 0 2px 8px rgba(229, 57, 53, 0.4);
	outline: none;
}
.poka-game-demo-modal__close:active {
	background: #b71c1c;
	transform: translateY(4px);
}
.poka-game-demo-modal__close svg {
	display: block;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	stroke: #fff;
	fill: none;
	pointer-events: none;
}
.poka-game-demo-modal__frame-wrap {
	position: relative;
	flex: 1;
	min-height: 0;
	width: 100%;
	background: #0d1117;
}
.poka-game-demo-modal__iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
@media (max-width: 782px) {
	.poka-game-demo-modal {
		padding: 0;
		align-items: stretch;
		justify-content: stretch;
	}
	.poka-game-demo-modal__dialog {
		width: 100%;
		max-height: none;
		min-height: 100%;
		height: 100dvh;
		border-radius: 0;
		box-shadow: none;
	}
}

/* --------------------------------------------------------------------------
   Tiny Slider — screen-reader live region (bundled JS adds this; hide visually
   when tiny-slider.css is not loaded, or theme overrides break .tns-visually-hidden)
   -------------------------------------------------------------------------- */
.tns-liveregion.tns-visually-hidden,
.tns-liveregion {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	-webkit-clip-path: inset(50%) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* --------------------------------------------------------------------------
   Most popular slots (single game — view-based carousel)
   -------------------------------------------------------------------------- */
.poka-popular-slots {
	padding: 1.5rem 0 1.75rem;
	background: #f7fafc;
	border-top: 1px solid var(--line-separator-color, #e8ecf2);
	border-bottom: 1px solid var(--line-separator-color, #e8ecf2);
	margin-bottom: 0;
}
/* Between wide hero and sidebar + main (single column strip, same shell as game layout) */
.poka-popular-slots--under-hero {
	margin-top: 0;
	margin-bottom: 0;
	padding: 1.1rem 0 1.35rem;
	border-top: none;
	border-bottom: 1px solid var(--line-separator-color, #e8ecf2);
	background: #f8fafc;
}
.poka-game-shell > .poka-popular-slots--under-hero {
	width: 100%;
	box-sizing: border-box;
}
.poka-popular-slots__title {
	margin: 0 0 0.85rem;
	font-size: clamp(var(--main-font-size), 2.2vw, 1.25rem);
	font-weight: 700;
	color: var(--text-color, #1d2730);
	display: flex;
	align-items: center;
	gap: 0.35rem;
	flex-wrap: wrap;
}
.poka-popular-slots__title-arrow {
	color: var(--main-color, #44be4c);
	font-weight: 400;
}
.poka-popular-slots__carousel {
	/* Match game-popular-slots.js fixedWidth per breakpoint (prevents full-width slide flash before tns runs). */
	--poka-pop-slot-w: 118px;
	position: relative;
	margin: 0 -4px;
	max-width: 100%;
}
@media (min-width: 480px) {
	.poka-popular-slots__carousel {
		--poka-pop-slot-w: 124px;
	}
}
@media (min-width: 640px) {
	.poka-popular-slots__carousel {
		--poka-pop-slot-w: 128px;
	}
}
@media (min-width: 900px) {
	.poka-popular-slots__carousel {
		--poka-pop-slot-w: 132px;
	}
}
@media (min-width: 1200px) {
	.poka-popular-slots__carousel {
		--poka-pop-slot-w: 138px;
	}
}
@media (min-width: 1500px) {
	.poka-popular-slots__carousel {
		--poka-pop-slot-w: 144px;
	}
}
/* Before Tiny Slider inits, keep slides in one row at final card width (avoids huge images). */
.poka-popular-slots__track:not(.tns-slider) {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.poka-popular-slots__track:not(.tns-slider)::-webkit-scrollbar {
	display: none;
	height: 0;
	width: 0;
}
.poka-popular-slots__track:not(.tns-slider) > .poka-popular-slots__slide {
	flex: 0 0 var(--poka-pop-slot-w);
	width: var(--poka-pop-slot-w);
	max-width: var(--poka-pop-slot-w);
	min-width: 0;
}
.poka-popular-slots__carousel .tns-outer {
	position: relative;
	padding-bottom: 0.35rem;
}
.poka-popular-slots__carousel .tns-inner {
	overflow: visible;
}
.poka-popular-slots__carousel .tns-controls {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	pointer-events: none;
	z-index: 4;
	padding: 0;
	box-sizing: border-box;
	transform: translateY(-50%);
}
.poka-popular-slots__carousel .tns-controls button {
	pointer-events: auto;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid #e2e8f0;
	background: #fff;
	color: #4a5568;
	font-size: 1.1rem;
	line-height: 1;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.poka-popular-slots__carousel .tns-controls button:hover {
	background: var(--main-color, #44be4c);
	color: #fff;
	border-color: transparent;
}
.poka-popular-slots__carousel .tns-controls button:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}
.poka-popular-slots__slide {
	height: auto;
	box-sizing: border-box;
}
.poka-pop-slot {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 100%;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 10px rgba(29, 39, 48, 0.08);
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.poka-pop-slot:hover {
	box-shadow: 0 6px 18px rgba(29, 39, 48, 0.12);
	transform: translateY(-2px);
}
.poka-pop-slot__visual {
	position: relative;
	width: 100%;
	flex: 0 0 auto;
	aspect-ratio: 2 / 3;
	min-height: 0;
	overflow: hidden;
	background: #edf2f7;
}
.poka-pop-slot__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	display: block;
	-webkit-user-drag: none;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	pointer-events: none;
}
.poka-pop-slot__img--placeholder {
	position: absolute;
	inset: 0;
	min-height: 0;
	background: linear-gradient(160deg, #cbd5e0 0%, #a0aec0 100%);
}
.poka-pop-slot__new {
	position: absolute;
	top: 10px;
	right: -28px;
	width: 88px;
	padding: 3px 0;
	background: #e53e3e;
	color: #fff;
	font-size: 0.45rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-align: center;
	transform: rotate(45deg);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
	z-index: 2;
	pointer-events: none;
}
.poka-pop-slot__new-inner {
	display: block;
}
.poka-pop-slot__rating {
	position: absolute;
	left: 0.4rem;
	bottom: 0.4rem;
	z-index: 3;
	pointer-events: none;
}
.poka-pop-slot__rating .rating {
	display: flex;
	align-items: center;
	gap: 0.08rem;
	margin: 0;
}
.poka-pop-slot__rating .rating .icon {
	font-size: 0.6875rem;
	color: var(--rating-color, #ffc106);
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.55));
}
.poka-pop-slot__bar {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0.4rem 0.3rem 0.5rem;
	background: #2b6cb0;
	box-sizing: border-box;
	min-height: 0;
}
.poka-pop-slot__name {
	font-size: 0.6875rem;
	font-weight: 800;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.2;
	letter-spacing: 0.03em;
	word-break: break-word;
	hyphens: auto;
}
.poka-pop-slot__dev {
	margin-top: 0.15rem;
	font-size: 0.5625rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.92);
}
.poka-popular-slots__footer {
	margin: 0.85rem 0 0;
	font-size: 0.875rem;
	color: var(--boxes-text-color, #4a5b68);
}
.poka-popular-slots__footer a {
	color: #3182ce;
	font-weight: 600;
	text-decoration: none;
}
.poka-popular-slots__footer a:hover {
	text-decoration: underline;
}

/* -------------------------------------------------------------------------
 * Casino comparison (/comparison/) — two-column review layout + floating CTAs
 * ------------------------------------------------------------------------- */

/* Centre the page title */
.poka-comparison-single__header {
	text-align: center;
}

.poka-casino-compare {
	margin: 1.5rem 0 0;
}

/* ---- Verdict banner ---- */
.poka-verdict {
	margin: 1.25rem 0 2.5rem;
	border-radius: var(--ccb-border-radius, 10px);
	background: linear-gradient(135deg, #1a2a3a 0%, #0f1f2e 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-left: 4px solid var(--verdict-color, #ffc106);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
	overflow: hidden;
	color: #fff;
}
.poka-verdict__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 1.25rem;
	padding: 1.5rem 1.75rem;
}
.poka-verdict__label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #ffc106;
	opacity: 0.9;
}
.poka-verdict__trophy {
	font-size: 1.1rem;
	line-height: 1;
}
.poka-verdict__winner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 1.25rem;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.poka-verdict__logo {
	position: relative;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	border-radius: 8px;
	overflow: hidden;
	background: #243544;
}
/* Logo img — direct output, no theme wrapper interference */
.poka-verdict__logo-img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
	padding: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.poka-verdict__info {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 200px;
	flex: 1 1 200px;
	min-width: 0;
}
.poka-verdict__headline {
	margin: 0 0 0.35rem;
	font-size: 1.25rem;
	line-height: 1.3;
	color: #fff;
}
.poka-verdict__headline strong {
	color: #ffc106;
}
.poka-verdict__text {
	margin: 0 0 0.5rem;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.8);
}
.poka-verdict__rating {
	margin-top: 0.25rem;
}
.poka-verdict__rating,
.poka-verdict__rating * {
	color: rgba(255, 255, 255, 0.9) !important;
}
/* Keep stars their gold colour */
.poka-verdict__rating .icon,
.poka-verdict__rating .rating-icon,
.poka-verdict__rating [class*="star"] {
	color: #ffc106 !important;
}
/* CTA button: full width */
.poka-verdict__cta-wrap {
	width: 100%;
}
.poka-verdict__cta-wrap .poka-verdict__cta,
.poka-verdict__cta-wrap .btn,
.poka-verdict__cta-wrap a.btn {
	display: block !important;
	width: 100% !important;
	text-align: center;
	font-size: 1.0625rem !important;
	padding-top: 0.875rem !important;
	padding-bottom: 0.875rem !important;
	border-radius: 6px !important;
}
@media (min-width: 768px) {
	.poka-verdict__inner {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 1.5rem;
	}
	.poka-verdict__winner {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}
	.poka-verdict__cta-wrap {
		width: 220px;
		-ms-flex-negative: 0;
		flex-shrink: 0;
		-ms-flex-item-align: stretch;
		align-self: stretch;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.poka-verdict__cta-wrap .poka-verdict__cta,
	.poka-verdict__cta-wrap .btn,
	.poka-verdict__cta-wrap a.btn {
		font-size: 0.9375rem !important;
	}
}
/* ── Mobile: single column, natural height ── */
.poka-casino-compare__grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 1.25rem;
	position: relative;
}
.poka-casino-compare__cell {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.poka-casino-compare__cell .poka-casino-compare__card {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
/* ── Tablet & desktop: side-by-side, equal height ── */
@media (min-width: 768px) {
	.poka-casino-compare__grid {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		gap: 0 1rem;
	}
	.poka-casino-compare__cell {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 0%;
		flex: 1 1 0%;
		min-width: 0;
	}
	/* card fills the cell — flex:1 on a flex child is the reliable equal-height method */
	.poka-casino-compare__cell .poka-casino-compare__card {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}
}
.poka-casino-compare__vs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-item-align: center;
	align-self: center;
	z-index: 2;
	width: 2.5rem;
	height: 2.5rem;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--ccb-border, #e2e6ec);
	box-shadow: 0 2px 10px rgba(29, 39, 48, 0.12);
	font-size: 0.6875rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	color: var(--ccb-text-muted, #4a5b68);
	text-transform: uppercase;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	/* mobile: centre horizontally between the stacked cards */
	-ms-flex-item-align: center;
	align-self: center;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.poka-casino-compare__vs {
		-ms-flex-item-align: start;
		align-self: start;
		margin: 4rem auto 0;
	}
}
/* Cards use exact CCB (.ccb-casino-card) markup; casino-card.css provides the shell */
.poka-casino-compare__card.ccb-casino-card,
.poka-casino-compare__card {
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.poka-casino-compare__card--geo-unavailable {
	opacity: 0.95;
}
/* Logo: full-width banner at the very top of the card */
.poka-casino-compare__logo.ccb-logo-wrap {
	position: relative !important;
	width: 100% !important;
	max-width: 100% !important;
	height: 160px !important;
	min-height: unset !important;
	border-radius: 0 !important;
	border-bottom: 1px solid var(--ccb-border, #e2e6ec);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden !important;
	display: block !important;
	padding: 0 !important;
}
/* Inner logo wrapper: fill the banner, strip theme/CCB overrides, centre the image */
.poka-casino-compare__logo.ccb-logo-wrap .review-logo,
.poka-casino-compare__logo.ccb-logo-wrap .review-logo--boxed {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	min-height: unset !important;
	border-radius: 0 !important;
	margin: 0 !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	overflow: visible !important;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-align: center !important;
	-ms-flex-align: center !important;
	align-items: center !important;
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
}
/* The actual <img>: natural size, constrained, centred by the flex parent above */
.poka-casino-compare__logo.ccb-logo-wrap .review-logo img,
.poka-casino-compare__logo.ccb-logo-wrap img {
	position: relative !important;
	inset: auto !important;
	display: block !important;
	max-width: 200px !important;
	max-height: 110px !important;
	width: auto !important;
	height: auto !important;
	-o-object-fit: contain;
	object-fit: contain;
	margin: 0 !important;
}
/* Geo badge in the comparison logo banner: restore small top-right badge */
.poka-casino-compare__logo.ccb-logo-wrap .pokageo-flag-circle {
	position: absolute !important;
	inset: auto !important;
	top: 6px !important;
	right: 6px !important;
	width: 20px !important;
	height: 20px !important;
	display: block !important;
	z-index: 2;
}
/* Gallery: fix negative-margin overflow inside the constrained comparison grid */
.poka-casino-compare__card .ccb-gallery {
	margin: 0 !important;
	padding: 0 2rem !important;
	overflow: hidden;
}
.poka-casino-compare__card .ccb-gallery__track {
	overflow-x: auto;
}
.poka-casino-compare__card .ccb-gallery__item {
	width: calc(33% - 0.4rem);
	min-width: 70px;
}
.poka-casino-compare__card .ccb-gallery__item img {
	height: 120px;
}
/* Header: title + rating only, no CTA column */
.poka-casino-compare__card .ccb-header.poka-casino-compare__header {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
/* CTA: sits right after the header, above the body content */
.poka-casino-compare__footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	gap: 0.5rem;
	padding: 1rem 1.25rem;
	border-top: 1px solid var(--ccb-border, #e2e6ec);
	border-bottom: 1px solid var(--ccb-border, #e2e6ec);
	background: var(--ccb-card-bg, #fff);
}
.poka-casino-compare__play-btn.ccb-play-btn {
	display: block !important;
	width: 100% !important;
	text-align: center;
	font-size: 1.125rem !important;
	padding-top: 0.9rem !important;
	padding-bottom: 0.9rem !important;
}
.poka-casino-compare__footer .poka-casino-compare__cta-links {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 0.8125rem;
}
/* Body fills remaining space so footer sticks to the bottom */
.poka-casino-compare__card .ccb-body {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	height: auto !important;
}
/* Title size */
.poka-casino-compare__card .ccb-title {
	font-size: 1.375rem;
}
/* Prevent text from overflowing pros/cons boxes */
.poka-casino-compare__card .ccb-pros-cons__list li,
.poka-casino-compare__card .ccb-pros-cons__list {
	overflow-wrap: break-word;
	word-break: break-word;
	min-width: 0;
	white-space: normal;
}
.poka-casino-compare__card .ccb-pros-cons__col {
	min-width: 0;
	overflow: hidden;
}
/* Tablet: CCB wraps .ccb-header at ≤780px — keep it a row inside comparison cards */
@media (min-width: 768px) {
	.poka-casino-compare__card .ccb-header.poka-casino-compare__header {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		padding: 0.9rem 1rem 0.9rem 1.125rem;
		gap: 0.75rem;
	}
	.poka-casino-compare__card .ccb-title {
		font-size: 1.25rem;
	}
	.poka-casino-compare__card .ccb-body {
		padding: 1rem 1.125rem;
	}
}
@media (min-width: 1100px) {
	.poka-casino-compare__card .ccb-header.poka-casino-compare__header {
		padding: 1.125rem 1.375rem 1.125rem 1.75rem;
		gap: 1.25rem;
	}
	.poka-casino-compare__card .ccb-title {
		font-size: 1.5rem;
	}
	.poka-casino-compare__card .ccb-body {
		padding: 1.25rem 1.375rem;
	}
}
/* Pros/cons: always side by side in two equal columns */
.poka-casino-compare__card .ccb-pros-cons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 0.75rem;
}
.poka-casino-compare__card .ccb-pros-cons__col {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 120px;
	flex: 1 1 120px;
	min-width: 0;
}
.poka-casino-compare__card .ccb-pros-cons__list li {
	font-size: 0.8125rem;
}
.poka-casino-compare__card .ccb-pros-cons__head {
	font-size: 0.8125rem;
}

.poka-casino-compare__notice {
	padding: 1rem 1.25rem;
	margin: 1rem 0;
	background: rgba(0, 0, 0, 0.04);
	border-radius: 8px;
	font-size: 0.9375rem;
}

/* Fixed bottom bar — two casinos side-by-side on all breakpoints (same as desktop) */
.poka-casino-compare-float {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10050;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fff 35%);
	box-shadow: 0 -3px 14px rgba(15, 23, 42, 0.08);
	border-top: 1px solid rgba(0, 0, 0, 0.07);
	padding: 0.3rem 0 calc(0.4rem + env(safe-area-inset-bottom, 0));
}
.poka-casino-compare-float .container {
	padding-left: max(0.5rem, env(safe-area-inset-left, 0));
	padding-right: max(0.5rem, env(safe-area-inset-right, 0));
}
.poka-casino-compare-float__head {
	text-align: center;
	margin-bottom: 0.2rem;
	line-height: 1;
}
.poka-casino-compare-float__head-label {
	font-size: 0.5625rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--theme-color, #3182ce);
}
.poka-casino-compare-float__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 0.4rem;
	align-items: stretch;
	width: 100%;
}
.poka-casino-compare-float__side {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.12rem;
	padding: 0.3rem 0.35rem;
	background: rgba(0, 0, 0, 0.025);
	border-radius: 7px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}
.poka-casino-compare-float__brand-name {
	display: block;
	font-size: 0.625rem;
	font-weight: 800;
	line-height: 1.15;
	text-align: center;
	color: var(--boxes-heading-color, #1a202c);
	word-break: break-word;
}
.poka-casino-compare-float__rating {
	display: flex;
	justify-content: center;
}
.poka-casino-compare-float .review-rating {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	width: auto;
	max-width: 100%;
	margin: 0 auto;
}
.poka-casino-compare-float .review-rating > span {
	font-size: 0.5625rem;
	margin-right: 0.15rem;
	margin-bottom: 0;
	line-height: 1;
}
.poka-casino-compare-float .review-rating > span strong {
	font-size: 0.6875rem;
	line-height: 1;
}
.poka-casino-compare-float .rating {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	flex-shrink: 0;
}
.poka-casino-compare-float .rating .icon {
	font-size: 0.5625rem;
	margin: 0 0.5px;
	line-height: 1;
}
.poka-casino-compare-float__bonus .review-bonus {
	text-align: center;
	font-size: 0.625rem !important;
	line-height: 1.22;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-break: break-word;
}
.poka-casino-compare-float__bonus .review-bonus strong {
	font-size: inherit;
}
.poka-casino-compare-float__cta {
	margin-top: auto;
	padding-top: 0.12rem;
}
.poka-casino-compare-float__btn {
	width: 100%;
	text-align: center;
	justify-content: center;
}
.poka-casino-compare-float .btn,
.poka-casino-compare-float a.btn {
	padding: 0.35rem 0.3rem !important;
	font-size: 0.6875rem !important;
	line-height: 1.22 !important;
	min-height: 0 !important;
	border-radius: 5px;
	box-sizing: border-box;
}
.poka-casino-compare-float span.poka-affiliate-cta--unavailable {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 0;
	padding: 0.35rem 0.3rem !important;
	font-size: 0.6875rem !important;
	line-height: 1.22 !important;
	text-align: center;
	box-sizing: border-box;
	border-radius: 5px;
}

@media (min-width: 768px) {
	.poka-casino-compare-float__grid {
		gap: 0.5rem;
	}
	.poka-casino-compare-float__side {
		padding: 0.35rem 0.5rem;
		gap: 0.15rem;
	}
	.poka-casino-compare-float__brand-name {
		font-size: 0.6875rem;
	}
	.poka-casino-compare-float .review-rating > span {
		font-size: 0.625rem;
		margin-right: 0.25rem;
	}
	.poka-casino-compare-float .review-rating > span strong {
		font-size: 0.75rem;
	}
	.poka-casino-compare-float .rating .icon {
		font-size: 0.625rem;
	}
	.poka-casino-compare-float__bonus .review-bonus {
		font-size: 0.6875rem !important;
		line-height: 1.25;
	}
	.poka-casino-compare-float .btn,
	.poka-casino-compare-float a.btn {
		padding: 0.38rem 0.45rem !important;
		font-size: 0.75rem !important;
	}
	.poka-casino-compare-float span.poka-affiliate-cta--unavailable {
		padding: 0.38rem 0.45rem !important;
		font-size: 0.75rem !important;
	}
}

/* Desktop: bump bar scale (still two columns) */
@media (min-width: 992px) {
	.poka-casino-compare-float {
		padding: 0.4rem 0 calc(0.5rem + env(safe-area-inset-bottom, 0));
	}
	.poka-casino-compare-float__head {
		margin-bottom: 0.3rem;
	}
	.poka-casino-compare-float__head-label {
		font-size: 0.625rem;
		letter-spacing: 0.07em;
	}
	.poka-casino-compare-float__grid {
		gap: 0.65rem;
	}
	.poka-casino-compare-float__side {
		padding: 0.45rem 0.55rem;
		gap: 0.2rem;
		border-radius: 8px;
	}
	.poka-casino-compare-float__brand-name {
		font-size: 0.8125rem;
	}
	.poka-casino-compare-float .review-rating > span {
		font-size: 0.6875rem;
	}
	.poka-casino-compare-float .review-rating > span strong {
		font-size: 0.875rem;
	}
	.poka-casino-compare-float .rating .icon {
		font-size: 0.75rem;
		margin: 0 1px;
	}
	.poka-casino-compare-float__bonus .review-bonus {
		font-size: 0.8125rem !important;
		line-height: 1.3;
	}
	.poka-casino-compare-float__cta {
		padding-top: 0.15rem;
	}
	.poka-casino-compare-float .btn,
	.poka-casino-compare-float a.btn {
		padding: 0.4rem 0.55rem !important;
		font-size: 0.8125rem !important;
		line-height: 1.28 !important;
		min-height: 0 !important;
		border-radius: 6px;
	}
	.poka-casino-compare-float span.poka-affiliate-cta--unavailable {
		padding: 0.4rem 0.55rem !important;
		font-size: 0.8125rem !important;
		min-height: 0;
	}
}

body.poka-has-comparison-float {
	padding-bottom: calc(5.6rem + env(safe-area-inset-bottom, 0));
}
@media (min-width: 768px) {
	body.poka-has-comparison-float {
		padding-bottom: calc(5.35rem + env(safe-area-inset-bottom, 0));
	}
}
@media (min-width: 992px) {
	body.poka-has-comparison-float {
		padding-bottom: calc(5.85rem + env(safe-area-inset-bottom, 0));
	}
}

/* Archive quick form */
.poka-comparison-quick {
	margin: 0 0 2rem;
	padding: 1rem 1.25rem;
	background: rgba(0, 0, 0, 0.03);
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.06);
}
.poka-comparison-quick__fields {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 0.75rem 1rem;
}
.poka-comparison-quick__label {
	flex: 1 1 140px;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	margin: 0;
}
.poka-comparison-quick__label-text {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--boxes-text-color, #4a5b68);
}
.poka-comparison-quick__input {
	width: 100%;
	padding: 0.5rem 0.65rem;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 6px;
	font-size: 0.9375rem;
}
.poka-comparison-quick__vs {
	flex: 0 0 auto;
	font-weight: 800;
	font-size: 0.875rem;
	color: var(--theme-color, #3182ce);
	padding-bottom: 0.5rem;
}
.poka-comparison-quick__submit {
	flex: 0 0 auto;
	white-space: nowrap;
}

.poka-comparison-archive__lede {
	margin-top: 0.5rem;
	color: var(--boxes-text-color, #4a5b68);
	font-size: 1rem;
}
.poka-comparison-archive__list-title {
	margin: 2rem 0 0.75rem;
	font-size: 1.25rem;
}
.poka-comparison-archive__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.poka-comparison-archive__item {
	margin: 0 0 0.75rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.poka-comparison-archive__link {
	font-weight: 700;
	text-decoration: none;
}
.poka-comparison-archive__link:hover {
	text-decoration: underline;
}
.poka-comparison-archive__excerpt {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.875rem;
	color: var(--boxes-text-color, #4a5b68);
}

/* ================================================================
   Bonus pages (/bonus/) — hero-card design
   ================================================================ */

/* Remove theme border from bonus page content area */
.poka-bonus-single .site-content,
.poka-bonus-single main.site-content,
body.single-bonus .site-content,
body.single-bonus main {
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
}

/* Remove grey background/border from author box on bonus pages */
.author-card.author-card--bonus {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-top: 2rem;
}

/* Page wrappers */
.poka-bonus-single__header {
	text-align: center;
	margin-bottom: 1rem;
}
.poka-bonus-single__intro {
	text-align: center;
	max-width: 42rem;
	margin: 0 auto 1.5rem;
	color: var(--ccb-text-muted, #4a5b68);
	font-size: 0.9375rem;
}
.poka-bonus-single__notice,
.poka-bonus-single__content {
	margin-top: 1.5rem;
}

/* Cards stack */
.poka-bonus-cards {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 1.5rem;
	margin: 1.5rem 0 2rem;
}

/* ── Single bonus card ── */
.poka-bonus-card {
	background: #fff;
	border: 1px solid var(--ccb-border, #e2e6ec);
	border-radius: var(--ccb-radius, 10px);
	box-shadow: var(--ccb-shadow, 0 2px 16px rgba(29,39,48,.09));
	overflow: hidden;
	min-width: 0;
	color: var(--ccb-text, #1d2730);
}
.poka-bonus-card--geo-unavailable {
	opacity: 0.85;
}

/* ── Hero banner (logo + rating + geo) ── */
.poka-bonus-card__hero {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: var(--ccb-bg-alt, #eef0f4);
	border-bottom: 1px solid var(--ccb-border, #e2e6ec);
	min-height: 72px;
}
.poka-bonus-card__logo {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 148px;
	height: 72px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	background: var(--ccb-bg-alt, #eef0f4);
}
.poka-bonus-card__logo .review-logo,
.poka-bonus-card__logo .review-logo--boxed {
	width: 148px !important;
	height: 72px !important;
	min-height: 0 !important;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-align: center !important;
	-ms-flex-align: center !important;
	align-items: center !important;
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
	border-radius: 0 !important;
	margin: 0 !important;
	padding: 8px !important;
	box-sizing: border-box !important;
	overflow: hidden !important;
}
.poka-bonus-card__logo .pokageo-flag-circle,
.poka-bonus-card__logo .pokageo-status-icon {
	display: none !important;
}
.poka-bonus-card__logo .review-logo img,
.poka-bonus-card__logo .review-logo--boxed img {
	width: auto !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 56px !important;
	-o-object-fit: contain !important;
	object-fit: contain !important;
	display: block !important;
}
.poka-bonus-card__hero-rating {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
.poka-bonus-card__hero-rating .review-rating,
.poka-bonus-card__hero-rating .ccb-rating {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.poka-bonus-card__hero-rating .review-rating span,
.poka-bonus-card__hero-rating .review-rating strong {
	color: var(--ccb-text-muted, #4a5b68) !important;
}

/* Geo badge */
.poka-bonus-card__geo-badge {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	font-weight: 600;
	padding: 0.3rem 0.75rem;
	border-radius: 20px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.poka-bonus-card__geo-badge--ok {
	background: rgba(0,0,0,.18);
	color: #fff;
}
.poka-bonus-card__geo-badge--no {
	background: rgba(0,0,0,.18);
	color: #ffd0cc;
}
.poka-bonus-card__geo-badge img {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
}
.poka-bonus-card__geo-text {
	line-height: 1.3;
}

/* ── Body ── */
.poka-bonus-card__body {
	padding: 1.25rem;
}

/* Three-column layout */
.poka-bonus-card__columns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 1.5rem;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.poka-bonus-card__left {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 0%;
	flex: 1 1 0%;
	min-width: 0;
}
.poka-bonus-card__middle {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 0%;
	flex: 1 1 0%;
	min-width: 0;
}
.poka-bonus-card__right {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 220px;
	flex: 0 0 220px;
	min-width: 0;
}

/* Bonus label + promo text */
.poka-bonus-card__bonus-label,
.poka-bonus-card__steps-label,
.poka-bonus-card__code-label {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--ccb-text-muted, #4a5b68);
	margin-bottom: 0.45rem;
}
.poka-bonus-card__promo {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--ccb-green, #44be4c);
	line-height: 1.4;
	margin-bottom: 0.85rem;
}
.poka-bonus-card__promo p { margin: 0; }
.poka-bonus-card__promo strong { color: var(--main-color, #44be4c); }

/* Stats / pros checklist */
.poka-bonus-card__stats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 0.35rem;
}
.poka-bonus-card__stat {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 0.4rem;
	font-size: 0.875rem;
	color: var(--ccb-text, #1d2730);
	line-height: 1.4;
}
.poka-bonus-card__stat-icon {
	color: var(--ccb-green, #44be4c);
	font-size: 0.8125rem;
	margin-top: 0.05em;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

/* Signup steps */
.poka-bonus-card__steps {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: bonus-step;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 0.65rem;
}
.poka-bonus-card__steps li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 0.65rem;
	font-size: 0.875rem;
	line-height: 1.4;
	counter-increment: bonus-step;
}
.poka-bonus-card__steps li::before {
	content: counter(bonus-step);
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	background: var(--ccb-bg-alt, #eef0f4);
	color: var(--ccb-text-muted, #4a5b68);
	font-size: 0.75rem;
	font-weight: 700;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 0.05em;
}
.poka-bonus-card__steps li strong {
	display: block;
	font-weight: 600;
	color: var(--ccb-text, #1d2730);
}
.poka-bonus-card__steps li span {
	display: block;
	color: var(--ccb-text-muted, #4a5b68);
	font-size: 0.8125rem;
}

/* Promo code input + copy */
.poka-bonus-card__code-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.85rem;
}
.poka-bonus-card__code-input {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	min-width: 0;
	padding: 0.65rem 1.25rem;
	border: 2px solid var(--ccb-text, #1d2730);
	border-radius: 999px;
	font-size: 1rem;
	font-family: inherit;
	font-weight: 700;
	letter-spacing: 0.05em;
	background: #fff;
	color: var(--ccb-text, #1d2730);
	outline: none;
	box-shadow: none;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-transition: border-color 0.15s;
	transition: border-color 0.15s;
}
.poka-bonus-card__code-input:focus {
	border-color: var(--ccb-green, #44be4c);
}
.poka-bonus-card__copy-btn {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 2px solid var(--ccb-border, #e2e6ec);
	border-radius: 50%;
	background: var(--ccb-bg-alt, #eef0f4);
	color: var(--ccb-text-muted, #4a5b68);
	cursor: pointer;
	-webkit-transition: background 0.15s, border-color 0.15s, color 0.15s;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.poka-bonus-card__copy-btn:hover {
	background: var(--ccb-border, #e2e6ec);
	border-color: var(--ccb-text-muted, #4a5b68);
	color: var(--ccb-text, #1d2730);
}
.poka-bonus-card__copy-btn svg {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	pointer-events: none;
}

/* CTA button */
.poka-bonus-card__cta {
	margin-bottom: 0.5rem;
}
.poka-bonus-card__cta .btn,
.poka-bonus-card__cta a.btn,
.poka-bonus-card__claim-btn,
a.poka-bonus-card__claim-btn,
span.poka-bonus-card__claim-btn {
	display: block !important;
	width: 100% !important;
	text-align: center !important;
	font-size: 1rem !important;
	font-weight: 700 !important;
	padding: 0.85rem 1rem !important;
	border-radius: var(--ccb-btn-radius, 6px) !important;
	box-sizing: border-box !important;
	letter-spacing: 0.01em;
}
.poka-bonus-card__claim-btn--disabled,
span.poka-bonus-card__claim-btn {
	opacity: 0.65;
	cursor: not-allowed;
	pointer-events: none;
}

/* Links (terms / review) */
.poka-bonus-card__links {
	margin-top: 0.4rem;
	font-size: 0.8rem;
	color: var(--ccb-text-muted, #4a5b68);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 0.2rem;
}
.poka-bonus-card__links a {
	color: var(--ccb-text-muted, #4a5b68);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.poka-bonus-card__links .review-extra-links-item {
	display: block;
}

/* Gallery + pros/cons spacing */
.poka-bonus-card__gallery {
	margin-top: 1.25rem;
	margin-bottom: 1.25rem;
}
.poka-bonus-card__pros-cons {
	margin-top: 1.25rem;
}

/* Terms text */
.poka-bonus-card__terms {
	margin-top: 0.85rem;
	padding-top: 0.75rem;
	border-top: 1px solid var(--ccb-border, #e2e6ec);
	font-size: 0.9375rem;
	color: var(--ccb-text-muted, #4a5b68);
	line-height: 1.6;
}

/* ── Responsive ── */

/* Tablet: collapse right column below on sm */
@media (max-width: 767px) {
	.poka-bonus-card__hero {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.poka-bonus-card__geo-badge {
		width: 100%;
	}
	.poka-bonus-card__columns {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 1rem;
	}
	.poka-bonus-card__right {
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}
}

/* Desktop: keep three columns, expand a bit */
@media (min-width: 992px) {
	.poka-bonus-card__right {
		-ms-flex: 0 0 240px;
		flex: 0 0 240px;
	}
}

/* Archive list */
.poka-bonus-archive__header {
	text-align: center;
	margin-bottom: 1.5rem;
}
.poka-bonus-archive__list {
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
}
.poka-bonus-archive__item {
	margin: 0 0 1.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.poka-bonus-archive__item a {
	font-weight: 700;
	font-size: 1.125rem;
	text-decoration: none;
}
.poka-bonus-archive__item a:hover {
	text-decoration: underline;
}
.poka-bonus-archive__excerpt {
	margin: 0.35rem 0 0;
	font-size: 0.875rem;
	color: var(--ccb-text-muted, #4a5b68);
}

/*# sourceMappingURL=maps/bundle.css.map */
/* ==========================================================================
   Page-specific overrides  (poka-page-{slug} body class added by hooks.php)
   ========================================================================== */

/* Testing page: compact card — hide body section, keep header row only */
body.poka-page-testing .ccb-body {
	display: none !important;
}
body.poka-page-testing .ccb-header {
	border-bottom: none !important;
}

/* Brand / company archive (/brand/{slug}/) */
body.tax-casino_company .ccb-pros-cons {
	display: none !important;
}
body.tax-casino_company .container {
	max-width: 1400px !important;
	width: 100% !important;
}

/* Casino list pages (/list/{slug}/) — hide pros/cons */
body.tax-lists .ccb-pros-cons {
	display: none !important;
}

/* Casino list / company taxonomy — 1400px wide container */
body.tax-lists .group-category .container,
body.tax-casino_company .group-category .container {
	max-width: 1400px;
}

/* Hide empty breadcrumbs bar on taxonomy index pages */
body.poka-tax-index-page .breadcrumbs-wrapper {
	display: none;
}

/* Brand index page — card grid */
.poka-brand-index-container {
	max-width: 1400px;
}
.poka-brand-index__title {
	margin-bottom: 30px;
}
.poka-brand-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 160px, 1fr ) );
	gap: 20px;
}
.poka-brand-card__inner {
	display: flex;
	flex-direction: column;
	border-radius: var(--border-radius, 8px);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	background: var(--boxes-background-color, #fff);
	box-shadow: 0 2px 8px rgba(0,0,0,.08);
	transition: box-shadow .2s, transform .2s;
}
.poka-brand-card__inner:hover {
	box-shadow: 0 6px 24px rgba(0,0,0,.16);
	transform: translateY(-2px);
}
.poka-brand-card__logo-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px 20px;
	min-height: 120px;
}
.poka-brand-card__logo {
	max-width: 120px;
	max-height: 70px;
	width: auto;
	height: auto;
	object-fit: contain;
}
.poka-brand-card__no-logo {
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	text-align: center;
}
.poka-brand-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 16px 12px;
	text-align: center;
}
.poka-brand-card__name {
	font-weight: 700;
	font-size: .95rem;
	color: var(--boxes-text-color, #222);
}
.poka-brand-card__count {
	font-size: .75rem;
	color: #888;
}
.poka-brand-card__btn {
	margin-top: 4px;
	font-size: .8rem;
	padding: 6px 20px;
}

/* * badge star — always inline; parent .poka-geo-avail is display:none on desktop already */
.poka-geo-avail__star {
	font-weight: 700;
}

/* Remove the divider border below casino name/rating on list pages */
body.tax-lists .review-box-meta,
body.tax-casino_company .review-box-meta {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}
