/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

  0. Resets are done with Bootstrap "Reboot", no need to add them here
	1. Font Imports
	2. Global Vars
  3. Bootstrap Overrides
  4. Global Styles
  5. Helper Classes
  6. Elements
  7. Plugin Overrides

----------------------------------------------------------------------------- */

/*** 1. Font Imports ***/
/* open-sans-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* open-sans-600 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/open-sans-v40-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* open-sans-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v40-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

  /* open-sans-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/open-sans-v40-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/*** 2. Global Vars ***/
:root {

  /* Colors */
  --ps-primary-orange: #FF9500;
  --ps-primary-orange-dark: #E68600;
  --ps-primary-red: #B71D1D;
  --ps-primary-red-light: #d73430;
  --ps-primary-blue: #006CB0;

  --ps-neutral-0: #1D1D1D;
  --ps-neutral-100: #333333;
  --ps-neutral-200: #3c3c3c;
  --ps-neutral-300: #808080;
  --ps-neutral-400: #999999;
  --ps-neutral-500: #B0B0B0;
  --ps-neutral-700: #CCCCCC;
  --ps-neutral-800: #E6E6E6;
  --ps-neutral-900: #E9E9E9;
  --ps-neutral-950: #F3F3F3;
  --ps-neutral-1000: #ffffff;
  --ps-neutral-silver: #C9C9C9;

  /* Fonts */
  --ps-font-primary:  "Open Sans", Arial, Helvetica, sans-serif;
  --ps-font-secondary:  Verdana, Geneva, "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", "Verdana Ref", sans-serif;
  --ps-body-fs: 15px;
  --ps-input-fs: 11px;
  --ps-main-menu-fs: 12px;
  --ps-footer-links-fs: 12px;
  --ps-sub-menu-fs: 11px;
  --ps-body-lh: 22px;

  /* Transitions */
  --ps-primary-transition: .25s ease;

}

/*** 3. BootStrap Overrides ***/
.container {
  max-width: 100%;
  padding-right: 10px;
  padding-left: 10px;
}

.form-control {
  font-size: var(--ps-input-fs);
  color: #212529bf;
}

.form-control::placeholder {
  color: #999;
  font-family: Arial, "Helvetica Neue", Helvetica;
}

.modal-content {
  border-radius: 0;
}

header .btn {
  border: none;
}

.modal-open { 
  overflow-y: auto !important;
  padding-right: 0 !important;
}

.popover {
  border: 2px solid var(--ps-neutral-700);
  border-radius: 0;
}

.author-top-social-share.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before {
  border-width: 12px;
  left: -4px;
  top: -17px;
}

.author-top-social-share.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
  border-width: 15px;
  top: -17px;
  left: -7px;
}

.author-top-social-share { 
  --bs-popover-max-width: 68px;
  width: 68px;
  margin-top: 9px !important;
}

.popover-body {
  display: flex;
  padding: 20px 0px;
  justify-content: center;
}

@media (min-width: 768px) {
  .container {
      max-width: 740px;
  }
}

@media (min-width: 992px) { 
  .container {
      max-width: 960px;
  }
}

@media (min-width: 1024px) {
  .container {
      max-width: 960px;
  }
}

/*** 4. Global Styles ***/

/* Typography */
body {
  font-family:  var(--ps-font-primary);
  font-size: var(--ps-body-fs);
  font-weight: 400;
  line-height: 1.5;
}


h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5 {
  margin-bottom: 20px;
}

.entry-content > h1, .entry-content > .h1,
.entry-content > h2, .entry-content > .h2,
.entry-content > h3, .entry-content > .h3,
.entry-content > h4, .entry-content > .h4 {
  margin-top: 40px;
}

h1, .h1 {
  font-size: 33px;
  line-height: 40px;
  font-weight: 800;
}

h2, .h2 {
  font-size: 27px;
  line-height: 32px;
  font-weight: 700;
}

h3, .h3 {
  font-size: 19px;
  line-height: 25px;
  font-weight: 700;
}

h4, .h4 {
  font-size: 19px;
  line-height: 25px;
  font-weight: 700;
}

h5, .h5 {
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
}

p {
  font-size: var(--ps-body-fs);
  line-height: var(--ps-body-lh);
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: var(--ps-primary-blue);
}

ul,
ol {
  margin-bottom: 20px;
  padding-left: 40px;
}

ul ul {
  list-style: disc;
}

ul li ul {
  margin-top: 10px;
}

li {
  font-size: var(--ps-body-fs);
  line-height: var(--ps-body-lh);
  margin-bottom: 10px;
  color: var(--ps-neutral-100);
}

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

li:last-child,
ol:last-child {
  margin-bottom: 0;
}

b, strong {
  font-weight: 700;
}

input {
  font-size: 11px;
}

table ul {
  padding-left: 20px;
  margin-bottom: 0;
}

iframe {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

.entry-content > .header {
  margin-bottom: 25px;
}

@media (max-width: 767px) {

  h1, .h1 {
    margin-bottom: 18px;
  }

  .entry-content {
    word-wrap: break-word;
  }
}

/*** 5. Helper Classes ***/
.wp-caption {
  width: max-content !important;
}

.wp-caption img {
  max-width: 240px;
}

.alignright {
  float: right;
  margin-left: 40px;
  margin-bottom: 40px;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin-right: 40px;
  margin-bottom: 40px;
}

.wp-caption-text {
  margin-top: 4px;
  margin-bottom: 0;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  color: var(--ps-neutral-300);
  font-style: italic;
}

@media (min-width: 1024px) {
  .container--header {
      max-width: 980px;
  }

  .container--footer {
    max-width: 980px;
}
}

@media (max-width: 767px) {
  .container--header {
    padding-left: 10px;
    padding-right: 10px;
  }

  .wp-caption {
    width: 100% !important;
    max-width: 335px;
  }

  .wp-caption img {
    max-width: 335px;
    width: 100%;
  }

  .alignleft,
  .alignright {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

/*** 6. Elements ***/

/* Header Top */
.header-top {
  background-color: var(--ps-neutral-1000);
}

#branding {
  margin: 14px 0 18px;
}

.rafflebox {
  background-color: var(--ps-neutral-900);
  padding: 10px 20px 10px 10px;
  margin-top: 10px;
  border-radius: 10px;
}

.rafflebox .taskbubble {
  padding: 0;
  border-radius: 50%;
  background-color: #F9902A;
  font-size: 14px;
  font-family: Verdana, Geneva, "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", "Verdana Ref", sans-serif;
  line-height: 10px;
  font-weight: 600;
  color: #fff; 
  height: 28px;
  width: 28px;
  text-align: center;
  margin-left: 10px;
  transition: none;
}

.rafflebox .taskbubble:hover {
  background-color: #e97607;
  border-color: #b35b05;
}

.rafflebox .taskbubble:active {
  color: #fff;
  background-color: #e97607;
  border-color: #b35b05;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.rafflebox .taskbubble:focus {
  outline: 5px auto -webkit-focus-ring-color;
}

.bubble--user-menu {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-top: 22px;
  margin-left: 21px;
  position: relative;
}

.button--user-menu.active,
.button--user-menu {
  background: var(--ps-neutral-900);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  padding: 0;
}

.button--user-menu:hover {
  background-color: #d5d5d5;
}

.btn.button--user-menu:focus-visible,
.btn.button--user-menu:active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  background-color: #d5d5d5;
}

.user-menu-modal-dialog {
  min-width: 69px;
  width: max-content;
  position: relative;
  left: 38px;
  top: 30px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
}

#user-menu-container {
  display: none;
  font-size: 12px;
  width: max-content;
  padding: 5px 0 8px 0;
  position: absolute;
  z-index: 999;
  top: 42px;
  left: -42px;
  background-color: var(--ps-neutral-1000);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
  z-index: 9999;
}

#user-menu-container.active {
  display: block;
}

#user-menu-container .header-login-btn {
  width: 100%;
  padding: 3px 9px;
  white-space: nowrap;
}

#user-menu-bubble:after {
  right: 1px;
  bottom: -19px;
  border-width: 0 12px 12px;
  z-index: 10000;
  content: "";
  position: absolute;
  display: none;
  width: 0;
  
  border-style: solid;
  border-color: #fff transparent;
}

#user-menu-bubble.active:after {
  display: block;
}

.dropdown--item--second-level {
  position: relative;
  padding: 3px 20px 3px 10px;
  margin-bottom: 0;
  line-height: 20px;
  text-align: left;
  font-size: 12px;
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: #000;
  cursor: default;
}

.dropdown--item--second-level a {
  color: #000;
}

.dropdown--item--second-level:has(a):hover {
  background-color: var(--ps-neutral-silver);
}

.dropdown--item--second-level.has-children:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  right: 10px;
  display: inline-block;
  height: 7px;
  width: 7px;
  border: solid #8d8d8d;
  border-width: 0 2px 2px 0;
  display: inline-block;
}

.dropdown-menu--second-level {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: 0;
  background-color: var(--ps-neutral-silver);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
}

.dropdown-menu--second-level li {
  margin-bottom: 0;
  display: block;
  text-align: left;
}

.dropdown-menu--second-level li:hover {
  background-color: #a6a6a6;
}

.dropdown-menu--second-level a {
  display: block;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 14px;
  color: #000;
}

.dropdown--item--second-level:hover .dropdown-menu--second-level {
  display: block;
 }

.button--user-menu--ico {
  fill: var(--ps-neutral-1000);
  width: 18px;
}

.button--user-menu--ico path {
  stroke-width: 4px;
}

.header-login-form {
  background-color: #c6dce4;
  padding: 10px 10px 3px 0;
  color: #1a7391;
  align-self: flex-start;
  font-size: var(--ps-input-fs);
  font-family: Arial, "Helvetica Neue", Helvetica;
  margin-left: 20px;
  position: relative;
  right: -10px;
}

.header-login-inputs {
  gap: 3px;
  align-items: center;
  padding-left: 8px;
}

.header-login-inputs .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.header-login-group {
  position: relative;
}

.header-login-input {
  padding-left: 26px;
  padding-right: 3px;
  max-width: 130px;
  height: 25px;
  border-radius: 0;
  border: none;
  background-position: 5px 5px;
  background-repeat: no-repeat;
  color: #1a7391;
}

.header-login-input:focus {
  border: none;
  color: #1a7391;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.header-login-links {
  padding-left: 5px;
}

.header-login-links a {
  color: #1a7391;
  line-height: 1.66666667;
}

.header-cookie-login {
  margin: 4px 0;
}

.header-login-username {
  background-image: url(../img/login-form-profile.png);
}

.header-login-password {
  background-image: url(../img/login-form-key.png);
}

.header-login-btn {
  background-color: #5396ad;
  margin-right: 2px;
  padding: 2px 12px;
  font-size: 12px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  border-radius: 0;
  color: #fff;
  box-shadow: inset 0 -2px rgba(0, 0, 0, 0.1);
  line-height: 1.66666667;
  flex-grow: 0;
  transition: none;
}

.header-login-btn.btn-default {
  background-color: #a6a6a6;
}

.header-login-btn:hover,
.btn.header-login-btn:active {
  color: #fff;
  background-color: #42788b;
  border-color: #376373;
}

.header-login-btn.btn-default:hover,
.header-login-btn.btn-default:active {
  background-color: #8d8d8d;
}

.bubble--content-wrapper .logout {
  margin-top: 4px;
  padding-right: 10px;
  padding-left: 10px;
}

header.logged-in .logout .btn-header--dropdown-login {
  display: none;
}

.logged-in-only {
  display: none;
}

header.logged-in .logged-in-only {
  display: block;
}

/* Header Bottom */
.header--dropdown-menu {
  list-style: none;
}

.header-bottom {
  background-color: var(--ps-neutral-200);
}

/* Main Nav */
#menu {
  padding: 0;
}

.sub-nav,
#menu-main-menu {
  display: flex;
  font-family: Verdana, Geneva, "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", "Verdana Ref", sans-serif;
}

.sub-nav a,
#menu-main-menu a {
  color: var(--ps-neutral-900);
  display: inline-block;
  transition: background-color var(--ps-primary-transition);
}

#menu-main-menu ul,
.sub-nav ul {
  list-style: none;
}

.sub-nav li,
#menu-main-menu li {
  margin-bottom: 0;
}

#menu-main-menu a {
  font-size: var(--ps-main-menu-fs);
  line-height: 20px;
  padding: 6px 12px;
}

.sub-nav a {
  font-size: var(--ps-sub-menu-fs);
  padding: 0 10px;
  line-height: 23px;
}

.sub-nav a:hover {
  background-color: #a6a6a6;
}

.sub-nav-inner {
  padding-left: 0;
}

.sub-nav li.current-menu-item {
  font-weight: 700;
}

#menu-main-menu a:hover {
  background-color: var(--ps-primary-red-light);
}

.current-menu-item {
  background-color: var(--ps-neutral-300);
}

#menu-main-menu .current-menu-item a:hover {
  background-color: var(--ps-neutral-300);
}

.sub-nav {
  background-color: var(--ps-neutral-300);
  width: 100%;
}

.current-page-link {
  font-weight: 700;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='53' height='38' viewBox='0 0 53 38' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='53' height='6.33333' rx='3.16667' fill='%233C3C3C'/%3E%3Crect y='15.8333' width='53' height='6.33333' rx='3.16667' fill='%233C3C3C'/%3E%3Crect y='31.6667' width='53' height='6.33333' rx='3.16667' fill='%233C3C3C'/%3E%3C/svg%3E%0A");
  background-size: cover;
  width: 30px;
  height: 24px;
}

@media (max-width: 991px) {
  .bubble--user-menu {
    width: 35px;
    height: 35px;
    margin-top: 18px;
  }

  #user-menu-container {
    top: 45px;
    left: -36px;
  }

  #user-menu-bubble:after {
    right: 6px;
    bottom: -15px;
  }

  #menu-main-menu a {
    padding: 6px 4px;
  }

  .sub-nav a {
    padding: 0 10px;
  }
}


@media (max-width: 1300px) {
  .dropdown-menu--second-level {
    left: unset;
    right: 100%;
  }
}

@media (max-width: 767px) {

  .rafflebox-wrap {
    margin-left: auto;
    margin-right: 18px;
  }

  #menu-main-menu a {
    display: block;
  }

  #menu-main-menu {
    margin-top: 2px;
  }

  .sub-nav-inner {
    flex-direction: column;
    padding-left: 8px;
  }

}

@media (min-width: 768px) {
  #menu-main-menu li {
    flex-grow: 1;
    text-align: center;
  }

  #menu-main-menu a {
    width: 100%;
    padding: 6px 4px;
    text-align: center;
  }
}

/* Main Content */
#wrapper {
  background-color: var(--ps-neutral-900);
}

.container--main {
  display: flex;
  background-color: var(--ps-neutral-1000);
  box-shadow: 0px 0px 3px 0px #00000040;
  margin-top: 10px;
  padding-left: 0;
  padding-right: 0;
}

.site-main {
  padding: 40px;
}

#content {
  padding: 40px;
  width: 100%;
  max-width: 640px;
  border-right: 1px solid var(--ps-neutral-800);
}

@media (max-width: 767px) {
  .container--main {
    flex-direction: column;
  }

  #content {
    max-width: unset;
    padding: 20px;
  }
}


/* Author */ 
#author {
  color: var(--ps-neutral-300);
  margin-bottom: 16px;
  line-height: 20px;
  font-size: 13px;
}

.author-info {
  gap: 5px;
}

.author-left {
  gap: 5px;
  flex-wrap: wrap;
}

.author-profile-img img {
  border-radius: 50%;
}

.author-profile-link {
  border-right: 1px solid var(--ps-neutral-800);
  padding-right: 5px;
}

.page-share {
  position: relative;
}

.page-share-rss {
  padding-right: 10px;
  border-right: 1px solid var(--ps-neutral-800);
}

.page-share-social {
  padding-left: 10px;
}

@media (max-width: 767px) {
  #author {
    font-size: 12px;
  }

  .author-profile-img img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 370px) {
  .author-info {
    flex-wrap: wrap;
  }
}

/* Author About */ 
#author-about {
  padding: 20px 0;
  border-top: 1px solid var(--ps-neutral-900);
  display: flex;
  gap: 20px;
}

.author-about-img img {
  max-width: 80px;
}

.author-about-name {
  margin-bottom: 5px;
}

.author-about-title { 
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 10px;
  display: inline-block;
}

.author-about-text {
  margin-bottom: 10px;
}

.author-about-links a {
  font-size: 11px;
  color: var(--ps-neutral-300);
  margin-right: 14px;
}

@media (max-width: 767px) {
  #author-about {
    flex-direction: column;
  }
}

/* Disclosure */
#disclosure {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid var(--ps-neutral-800);
}

.disclosure-statement {
  line-height: 18px;
  font-style: italic;
  font-size: 12px;
}

@media (max-width: 991px) {
  .disclosure-statement {
    line-height: 17px;
    font-style: italic;
    font-size: 11px;
  }
}

/* Page Social Share */ 
.page-social-share {
  padding-top: 20px;
  margin-bottom: 40px;
  border-top: 1px solid var(--ps-neutral-900);
}

.page-social-share-links {
  gap: 5px;
}

@media (max-width: 767px) {
  .page-social-share {
    gap: 10px;
  }

  .page-social-share-links {
    flex-wrap: wrap;
  }
  
}
/* Author Single */ 
.author-single-about-top {
  gap: 20px;
}

.author-single-img {
  max-width: 203px;
}

.author-single-name {
  margin-bottom: 10px;
}

.author-social-links {
  margin-top: auto;
}

.author-single-about-top {
  margin-bottom: 20px;
}

.author-single-about-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--ps-neutral-700);
}

@media (max-width: 991px) {
  .author-single-img {
    max-width: 160px;
  }
}

@media (max-width: 767px) {
  .author-single-img {
    max-width: 335px;
    margin-bottom: 10px;
  }
}

/* Related Guides */ 
.related-guide {
  display: grid;
  grid-template-areas:
  "image title"
  "image text";
  grid-template-columns: 176px 1fr;
  grid-template-rows: max-content 1fr;
  gap: 10px 20px;
  padding-top: 15px;
  padding-bottom: 37px;
  border-bottom: 1px solid var(--ps-neutral-950);
}

.related-guides-list .related-guide:first-child {
  padding-top: 0;
}

.related-guide-img  {
  grid-area: image;
}

.related-guide-img img {
  height: 100%;
  object-fit: cover;
}

.related-guide-img.related-guide-img-placeholder img {
  object-fit: contain;
}

.related-guide-link {
  grid-area: title;
  font-size: 17px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

.related-guide-text {
  grid-area: text;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .related-guide {
    grid-template-areas:
      "title title"
      "image text";
    grid-template-columns: 104px 1fr;
    gap: 10px;
    padding-bottom: 15px;
  }

  .related-guide-text {
    font-size: 13px;
    line-height: 20px;
  }
}

/* Pagination */
.single-pagination {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  gap: 7px;
}

.single-pagination .page-numbers {
  padding: 0;
  color: var(--ps-neutral-300);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ps-neutral-700);
  border-radius: 50%;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  transition: background-color var(--ps-primary-transition);
}

.single-pagination .page-numbers:hover {
  background-color: var(--ps-neutral-800);
}

.single-pagination .page-numbers.current {
  background-color: var(--ps-neutral-800);
  cursor: default;
}

.single-pagination .page-numbers.prev {
  transform: rotate(180deg);
}

.single-pagination .page-numbers-first,
.single-pagination .page-numbers-last {
  width: unset;
  border-radius: 200px;
  background-repeat: no-repeat;
}

.single-pagination .page-numbers-first {
  padding: 10px 10px 10px 33px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.65405 0.601562H0.700928V13.3984H3.65405V0.601562ZM13.2791 11.5117L11.365 13.3984L4.96655 7L11.3923 0.601562L13.2791 2.48828L8.79468 7L13.2791 11.5117Z' fill='%23808080'/%3E%3C/svg%3E%0A"); 
  background-position: 10% center;
  order: -1;
}

.single-pagination .page-numbers-last {
  padding: 10px 33px 10px 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.3259 0.601562H13.2791V13.3984H10.3259V0.601562ZM0.700928 11.5117L2.61499 13.3984L9.01343 7L2.58765 0.601562L0.700928 2.48828L5.1853 7L0.700928 11.5117Z' fill='%23808080'/%3E%3C/svg%3E%0A");
  background-position: 90% center;
  order: 2;
}

@media (min-width: 768px) and (max-width: 991px),
  (max-width: 540px) {

  .single-pagination {
    flex-wrap: wrap;
  }

  .single-pagination.nav-newline {
    position: relative;
    margin-bottom: 40px;
  }

  .single-pagination.nav-newline .page-numbers-first,
  .single-pagination.nav-newline .page-numbers-last {
    position: absolute;
    bottom: -41px;
  }

  .single-pagination.nav-newline .page-numbers-first {
    right: 106px;
  }

  .single-pagination.nav-newline:not(:has(.page-numbers-last)) .page-numbers-first {
    right: 0;
  }
}

/* Sidebar/Widgets */
#sidebar {
  width: 100%;
  max-width: 320px;
}

#widgets {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

#widgets ul {
  padding-left: 0;
}

.widget-container {
  margin-bottom: 0;
  padding: 40px;
}

.widget-container:not(:last-of-type) {
  border-bottom: 1px solid var(--ps-neutral-800);
}

.widget-title {
  margin-bottom: 15px;
}
 
.widgets-recent-post {
  gap: 10px;
  display: flex;
  padding: 15px 0 11px 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--ps-neutral-800);
}

.widgets-recent-post:first-child {
  padding-top: 0;
}

.widgets-recent-post:last-child {
  border: none;
}

.recent-post-thumb {
  max-width: 50px;
  flex-shrink: 0;
}

.recent-posts-link {
  color: var(--ps-neutral-100);
}

.LatestNewsFeed .recent-posts-link {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 16px;
}

.LatestForumPosts .recent-posts-link {
  font-size: 13px;
  font-weight: 700;
  line-height: 19px;
}

.recent-posts-show-more {
  font-size: 13px;
  padding-top: 16px;
  display: inline-block;
}

.links-widget-group {
  margin-top: 0;
  margin-bottom: 9px;
  list-style-type: none;
}

.links-widget-group:not(:last-of-type) {
  padding-bottom: 9px;
  border-bottom: 1px solid #eee;
}

.links-widget-title {
  color: #ff0000;
}

.links-widget-link {
  margin-bottom: 8px;
}

.links-widget-title,
.links-widget-link {
  font-size: 13.3px;
}

@media (min-width: 768px) and (max-width: 991px) {
  #sidebar {
    max-width: 280px;
  }
}

@media (max-width: 767px) {
  #sidebar {
    max-width: unset;
  }

  .widget-container {
    padding: 36px 20px;
  }

  .recent-posts-link {
    font-size: 13px;
  }
}

/* Footer */
#footer {
  margin-top: 20px;
  font-family: var(--ps-font-secondary);
  background-color: var(--ps-neutral-300);
}

.footer-nav {
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-nav ul{
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0;
  line-height: 16px;
}

.footer-mainlinks {
  margin-bottom: 23px;
}

.play-responsibly,
.footer-copyright,
.footer-mainlinks a {
  font-size: var(--ps-footer-links-fs);
  line-height: 20px;
  color: var(--ps-neutral-900);
  transition: color var(--ps-primary-transition);
}

.footer-mainlinks li:not(:last-child) a {
  border-right: 1px solid #c3c3c3;
}

.footer-mainlinks a:hover {
  color: #a6a6a6;
}

.footer-mainlinks > ul {
  margin-bottom: 9px;
}

.footer-mainlinks li {
  padding-left: 5px;
}

.footer-mainlinks a {
  padding-right: 5px;
}

.footer-copyright {
  color: var(--ps-neutral-500);
}

.footer-languages {
  margin-bottom: 11px;
  padding: 0 4px;
}

.footer-languages > ul {
  gap: 0 12px;
}

.footer-languages a {
  color: var(--ps-neutral-silver);
  font-size: 10px;
  line-height: 16px;
  transition: color var(--ps-primary-transition);
}

.footer-languages a:hover {
  color: var(--ps-neutral-1000);
}

.footer-disclaimer > ul {
  gap: 10px;
}

.footer-disclaimer img {
  max-width: 91px;
}

/* Popover Share */
.popover-social-sharing {
  list-style: none;
  padding: 0;
  margin: 0;
}

.popover-social-sharing li {
  margin-bottom: 4px;
}

.sharing-icon-gray {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--ps-neutral-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--ps-primary-transition);
}

.sharing-icon-gray:hover,
.popover-sharing-link:hover {
  background-color: var(--ps-neutral-300);
}

.popover-sharing-link-ico {
  width: 12px;
}

.popover-sharing-link-ico-fb {
  height: 14px;
}

/*** 6. Plugin Overrides and Styling ***/

/* Shortcode Ultimate */
div.su-table {
  margin-bottom: 40px;
}

div.su-table table {
  color: var(--ps-neutral-100);
  border-color: var(--ps-neutral-0) !important;
}

div.su-table table th {
  background: var(--ps-neutral-0) !important;
  color: var(--ps-neutral-1000) !important;
  border: transparent !important;
  font-weight: 700 !important;
  vertical-align: top;
}

div.su-table table th strong {
  font-weight: 700 !important;
}

div.su-table table td {
  border: 1px solid var(--ps-neutral-700) !important;
}

div.su-table table td, 
div.su-table table th {
  text-align: left !important;
  font-size: 13px !important;
  line-height: 20px;
  padding: 5px 10px !important;
}

div.su-table-alternate table tr:nth-child(even) td {
  background-color: var(--ps-neutral-1000) !important;
}

div.su-note,
div.su-box {
  margin-bottom: 20px;
  border: none !important;
  border-radius: 0 !important;
}

.entry-content > .su-note,
.entry-content > .su-box {
  margin-top: 40px;
}

div.su-list {
  margin-bottom: 20px;
}

div.su-box-title {
  border-top: 5px solid var(--ps-primary-red) !important;
  background-color: var(--ps-neutral-950) !important;
  color: var(--ps-neutral-100) !important;
  padding: 15px 20px 20px;
  font-size: 19px;
  line-height: 25px;
  font-weight: 700;
  position: relative;
}

div.su-note-inner,
div.su-box-content {
  background-color: var(--ps-neutral-950) !important;
  padding: 20px;
  color: var(--ps-neutral-100);
  line-height: var(--ps-body-lh);
}

div.su-box-title:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: calc(100% - 40px);
  height: 1px;
  background-color: var(--ps-neutral-800);
}

div.su-list ul li {
  line-height: var(--ps-body-lh);
}

div.su-spoiler-style-fancy>.su-spoiler-title {
  background-color: var(--ps-neutral-950);
}

div.su-spoiler-style-fancy, 
div.su-spoiler-style-fancy>.su-spoiler-title {
  border-radius: 0;
}

div.su-list ul li>i {
  left: 5px;
  top: 5px;
}

a.su-button {
  border-radius: 100px !important;
  padding: 7px 20px;
  font-weight: 700;
}

a.su-button span {
  font-size: 13px !important;
  line-height: 19px !important;
  padding: 0 !important
}

.su-button:hover span {
  top: 0 !important;
}

@media (min-width: 767px) and (max-width: 992px) {
  div.su-table.su-table-responsive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 767px) {
  div.su-row .su-column+.su-column {
    margin-top: 10px;
  }
}

/* Fi FAQ Content */
section.fi-faq-content-shortcode:first-of-type  {
  margin-top: -12px;
}

div.fi-faq-content-shortcode__question {
  padding-top: 12px;
  padding-bottom: 3px;
}

.fi-faq-content-shortcode .fi-faq-content-shortcode__question > * {
  font-weight: 700;
}

.fi-faq-content-shortcode .fi-faq-content-shortcode__question > *,
div.fi-faq-content-shortcode__answer p {
  font-size: var(--ps-body-fs);
  line-height: var(--ps-body-lh);
  color: var(--ps-neutral-0);
}

section.fi-faq-content-shortcode:first-of-type .fi-faq-content-shortcode__question,
div.fi-faq-content-shortcode__question,
div.fi-faq-content-shortcode__answer {
  border: none;
}

div.fi-faq-content-shortcode__answer {
  padding-bottom: 3px;
}

div.fi-faq-content-shortcode__question:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: rotate(0) translateY(-50%);
  right: 0;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L6 9L11 4' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--ps-neutral-700);
  border-radius: 50%;
}

div.fi-faq-content-shortcode__question.active:after {
  background-position: center;
  transform: rotate(180deg) translateY(50%);
}


/* Sassy Social Share */
.page-social-share .heateor_sss_svg {
  background-color: unset !important;
  width: 40px !important;
  height: 40px !important;
  background-repeat: no-repeat !important;
  background-position: center;
  opacity: 0.75 !important; 
  transition: opacity var(--ps-primary-transition);
}

.page-social-share .heateor_sss_svg:hover {
  opacity: 1 !important; 
}

.page-social-share div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a {
  margin-right: 3px;
}

.page-social-share .heateor_sss_svg svg {
  display: none !important;
}

.page-social-share .heateor_sss_facebook .heateor_sss_svg {
  background-image: url("../img/icons/facebook.svg");
}

.page-social-share .heateor_sss_button_x .heateor_sss_svg {
  background-image: url("../img/icons/x.svg");
}

.page-social-share .heateor_sss_button_vkontakte .heateor_sss_svg {
  background-image: url("../img/icons/vk.svg");
}

.page-social-share .heateor_sss_button_odnoklassniki .heateor_sss_svg {
  background-image: url("../img/icons/page-share-ico.svg");
}

.page-social-share .heateor_sss_email .heateor_sss_svg {
  background-image: url("../img/icons/email.svg");
}

.toplist-pokerstrategy__offer-rating-score {
	align-items: baseline !important;
}
