@charset "UTF-8";
:root {
  --math: 1;
  --white-color: white;
  --black-color: black;
  --header-height: 72px;
  --small-column-dekstop-width: 302px;
  --header-offset: 30px;
}
:root .admin-bar {
  --header-offset: 32px;
}

html[dir=rtl] {
  --math: -1;
}

.highlight {
  color: var(--white-color-3);
}

.content-main-text-wrapper {
  padding-top: 10px;
  overflow: hidden;
  position: relative;
  max-height: var(--initial-text-height);
}
@media (min-width: 576px) {
  .content-main-text-wrapper {
    transition: max-height 0.3s ease-in-out;
  }
}
.content-main-text-wrapper .uncollapsed-content {
  font-size: 1.6rem;
  position: relative;
}
.content-main-text-wrapper .uncollapsed-content .elipsis {
  display: none;
}
.content-main-text-wrapper #topContent {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .content-main-text-wrapper #topContent {
    display: block;
  }
  .content-main-text-wrapper #topContent.collapse {
    margin-bottom: 20px;
  }
}
.content-main-text-wrapper.closed {
  max-height: var(--text-height);
}
@media (min-width: 768px) {
  .content-main-text-wrapper.closed {
    transition: max-height 0.3s;
  }
}
.content-main-text-wrapper.closed:after {
  bottom: 0;
  position: absolute;
  content: "";
  max-height: 30ch;
  height: 100%;
  width: 100%;
  background: #020024;
  background: linear-gradient(0deg, #020024 0%, white 0%, rgba(255, 255, 255, 0) 100%);
}
.content-main-text-wrapper h2, .content-main-text-wrapper h3, .content-main-text-wrapper h4, .content-main-text-wrapper h5 {
  scroll-margin-top: var(--header-height);
  color: var(--titles-color, #000000);
}
@media (min-width: 992px) {
  .content-main-text-wrapper h2, .content-main-text-wrapper h3, .content-main-text-wrapper h4, .content-main-text-wrapper h5 {
    margin-top: 30px;
  }
}
.content-main-text-wrapper h2 {
  font-size: 2.2rem;
  line-height: 3rem;
  font-weight: 700;
}
.content-main-text-wrapper h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 700;
}
.content-main-text-wrapper h4 {
  font-size: 1.8rem;
  line-height: 3rem;
  font-weight: 700;
}
.content-main-text-wrapper p, .content-main-text-wrapper li {
  font-size: var(--min-font-size);
  line-height: var(--text-line-hight);
}
@media (min-width: 992px) {
  .content-main-text-wrapper p, .content-main-text-wrapper li {
    line-height: 2;
  }
}
.content-main-text-wrapper img:after {
  content: "";
  clear: both;
  display: block;
}
@media (min-width: 768px) {
  .content-main-text-wrapper img {
    position: static;
  }
}
.content-main-text-wrapper .blocks-gallery-grid .wp-block-gallery {
  display: block;
}
@media (min-width: 768px) {
  .content-main-text-wrapper .blocks-gallery-grid .wp-block-gallery {
    display: flex;
  }
}
.content-main-text-wrapper figure {
  border-radius: 10px;
  position: relative;
}
@media (min-width: 768px) {
  .content-main-text-wrapper figure {
    padding-top: 0;
    margin-inline-end: 20px;
    float: inline-start;
    overflow: hidden;
  }
}
.content-main-text-wrapper .wp-block-group:after {
  content: "";
  clear: both;
  display: block;
}
.content-main-text-wrapper .simple-btn {
  margin-top: 23px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: fit-content;
}
.content-main-text-wrapper img {
  border-radius: 10px;
  max-width: 100%;
  object-fit: cover;
}

.table-of-contents-trigger {
  border: none;
  width: calc(100% - 10px);
  margin: auto;
  display: flex;
  height: 50px;
  background-color: white;
  align-items: center;
  justify-content: space-between;
}
.table-of-contents-trigger .minus {
  display: none;
}
.table-of-contents-trigger[aria-expanded=true] .plus {
  display: none;
}
.table-of-contents-trigger[aria-expanded=true] .minus {
  fill: #707070;
  display: block;
}
.table-of-contents-trigger .icon {
  width: 25px;
  height: 25px;
  fill: var(--theme-color-7);
}
.table-of-contents-trigger .open-icon {
  position: relative;
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 100%;
  fill: var(--theme-color-1);
  box-shadow: 0px 1px 3px 0px #0000004D;
  color: var(--theme-color-1);
}
.table-of-contents-trigger .text {
  font-size: 1.8rem;
  margin-inline-start: 10px;
  display: inline-block;
  transform: translateY(2px);
  color: var(--theme-color-7);
}

.table-of-contents {
  margin-bottom: 10px;
  margin-top: 20px;
  background: white;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid #C9C9C9;
}
.table-of-contents .table-of-contents-trigger[aria-expanded=true] {
  border-bottom: 1px solid #C9C9C9;
}
.table-of-contents .contents {
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 0;
  padding-top: 0;
}
.table-of-contents .contents li {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.table-of-contents .contents li:first-of-type {
  margin-top: 10px;
}
.table-of-contents .contents li:last-of-type {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .table-of-contents .contents li {
    font-size: 1.6rem;
  }
}
.table-of-contents .contents li a {
  padding: 0;
  color: black;
  transition: text-shadow 0.3s ease;
}
.table-of-contents .contents li a:hover {
  text-shadow: 0 1px 1px currentColor;
}

.read-more-link.plain {
  position: relative;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .read-more-link.plain {
    display: none;
  }
}
.read-more-link.plain:before {
  top: -100%;
  position: absolute;
  content: "";
  max-height: 30ch;
  inset-inline-start: 0;
  height: 100%;
  width: 100%;
  background: #020024;
  background: linear-gradient(0deg, #020024 0%, white 0%, rgba(255, 255, 255, 0) 100%);
}
.read-more-link.plain[aria-expanded=true]:before {
  display: none;
}

header {
  position: fixed;
  height: var(--header-height);
  top: -100%;
  transition: top 1s ease-in-out;
  z-index: 1050;
  width: 100%;
  box-shadow: 0 1px 10px 0 #00000066;
  background: var(--theme-gradient-2);
}
@media (min-width: 992px) {
  header.show-shaddow {
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.4);
  }
}
header.show-header {
  transition: top 0.3s ease-out;
  top: 0;
}
header .navbar {
  padding: 0;
  height: 100%;
}
header .navbar-brand {
  margin: auto;
}
header .navbar-brand img {
  max-width: 200px;
  max-height: 50px;
}
@media (min-width: 768px) {
  header .navbar-brand {
    margin: initial;
  }
}
header .navbar-toggler {
  border: none;
}
header .navbar-toggler .close-mobile-menu {
  pointer-events: none;
  display: none;
  color: white;
  width: 25px;
  height: 25px;
}
header .navbar-toggler.open .hamburger {
  display: none;
}
header .navbar-toggler.open .close-mobile-menu {
  display: block;
}
header .actions {
  display: flex;
}
header .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border: none;
  box-shadow: none !important;
  opacity: 1 !important;
}
header .hamburger .hamburger-inner {
  background-color: white !important;
}
header .hamburger .hamburger-inner:before, header .hamburger .hamburger-inner:after {
  background-color: white !important;
}
header .hamburger .hamburger-box {
  pointer-events: none;
}
header .hamburger-stripe {
  display: block;
  height: 3.91px;
  border-radius: 3px;
  background-color: var(--white-color);
  width: 100%;
}

#search-action {
  color: white;
  background: transparent;
  height: 29px;
  display: block;
}
@media (min-width: 992px) {
  #search-action {
    display: none;
  }
}
#search-action svg {
  width: 30px;
  height: 30px;
}

#searchModal {
  z-index: 10000;
}
#searchModal .modal-dialog {
  min-width: 100%;
  right: 0;
  position: fixed;
  top: 0;
  padding: 0;
  margin: 0;
  left: 0;
}
#searchModal .modal-body {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  background: var(--header-gradient);
}
#searchModal .modal-body form {
  width: 100%;
  display: flex;
  align-items: center;
}
#searchModal .modal-body input {
  border: none;
  border-radius: 9px;
  height: 30px;
  width: 100%;
  margin-right: 16px;
  margin-left: 16px;
  padding-inline-start: 18px;
}
#searchModal .modal-body #search-action svg {
  color: white;
  width: 30px;
}
#searchModal .modal-body .close-search {
  color: white;
  background: transparent;
}
#searchModal .modal-body .close-search svg {
  height: 30px;
  width: 30px;
}

.admin-bar header {
  top: var(--header-offset);
}

.form-modal {
  z-index: 10001;
}
.form-modal .modal-content {
  overflow: hidden;
  text-align: center;
  border-radius: 10px;
  max-width: 90%;
  margin: auto;
}
@media (min-width: 768px) {
  .form-modal .modal-content {
    max-width: 50vw;
    min-width: 600px;
    width: 100%;
  }
}
.form-modal .modal-content .modal-body {
  padding: 0 0 15px;
}
@media (min-width: 768px) {
  .form-modal .modal-content .modal-body {
    padding: 0 0 30px;
  }
}
.form-modal .modal-content .modal-body .content-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 15px;
  margin-bottom: 15px;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .form-modal .modal-content .modal-body .content-wrap {
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 36px;
    margin-bottom: 30px;
    gap: 30px;
  }
}
.form-modal .modal-content .modal-body .content-wrap h2, .form-modal .modal-content .modal-body .content-wrap h3, .form-modal .modal-content .modal-body .content-wrap h4, .form-modal .modal-content .modal-body .content-wrap h5, .form-modal .modal-content .modal-body .content-wrap h6 {
  font-size: 2.8rem;
  color: var(--theme-color-1);
  font-weight: 700;
}
@media (min-width: 768px) {
  .form-modal .modal-content .modal-body .content-wrap h2, .form-modal .modal-content .modal-body .content-wrap h3, .form-modal .modal-content .modal-body .content-wrap h4, .form-modal .modal-content .modal-body .content-wrap h5, .form-modal .modal-content .modal-body .content-wrap h6 {
    font-size: 3.2rem;
  }
}
.form-modal .modal-content .modal-body .content-wrap p {
  font-size: 1.6rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .form-modal .modal-content .modal-body .content-wrap p {
    font-size: 2.2rem;
  }
}
.form-modal .modal-content .modal-body .content-wrap strong {
  font-size: 1.6rem;
  line-height: 1.2;
}
.form-modal .modal-content .modal-header {
  padding-left: 20px;
  padding-right: 20px;
  background-color: var(--theme-color-1);
  min-height: 70px;
}
.form-modal .modal-content .modal-header img {
  max-height: 41px;
  margin-inline-start: auto;
}
.form-modal .modal-content .btn-close {
  background-size: 100% !important;
  filter: invert(1);
  opacity: 1;
  margin-inline: auto 0;
}
.form-modal .modal-content input {
  border-radius: 50px;
  border: 1px solid #000000;
  margin: auto;
  text-align: center;
  color: #676767;
  font-size: 1.6rem;
  min-height: 43px;
}
.form-modal .modal-content input:focus::placeholder {
  color: transparent;
}
.form-modal .modal-content .form-holder {
  max-width: 70%;
  position: relative;
  margin: auto;
  min-height: 43px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-modal .modal-content .form-holder .spinner-container.hide {
  display: none;
}
.form-modal .modal-content .form-holder .button-text.hide {
  display: none;
}
.form-modal .modal-content .form-holder form {
  max-width: 384px;
}
.form-modal .modal-content .form-holder button[type=submit] {
  appearance: none;
  border: none;
  background-color: var(--theme-color-5);
  border-radius: 50px;
  color: white;
  min-height: 43px;
  width: 100%;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-modal .modal-content .form-holder button[type=submit].hide {
  display: none;
}
.form-modal .modal-content .form-holder .invalid-feedback {
  position: absolute;
  bottom: -45px;
  font-size: 1.6rem;
}
.form-modal .modal-footer {
  justify-content: center;
  border-top: unset;
}
.form-modal .modal-footer p {
  font-size: 1.4rem;
}
.form-modal .modal-header {
  position: relative;
}
.form-modal .round-checkmark {
  max-width: 75px;
  position: absolute;
  left: 50%;
  bottom: -50%;
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 100%;
  overflow: hidden;
  background-color: white;
  color: var(--theme-color-5);
}

.thank-you-modal h2 {
  font-size: 3rem;
  font-weight: 700;
}
.thank-you-modal p {
  font-size: 1.8rem;
  margin-bottom: 13px;
}
.thank-you-modal.form-modal .modal-content .modal-body {
  padding-top: 58px;
}
.thank-you-modal .modal-bonus-wrapper {
  position: relative;
  padding-top: 50%;
}
.thank-you-modal .modal-bonus-wrapper .modal-bonus img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: 10px;
}
.thank-you-modal .modal-body {
  margin: auto;
  max-width: 90%;
}
@media (min-width: 768px) {
  .thank-you-modal .modal-body {
    max-width: 70%;
  }
}
.thank-you-modal .modal-body .prefix-btn {
  margin-bottom: 12px;
  max-width: 100%;
  margin-top: 27px;
}
@media (min-width: 768px) {
  .thank-you-modal .modal-body .prefix-btn {
    margin-bottom: 0;
  }
}

footer {
  --main-color: var(--white-color);
  --secondary-color: var(--theme-color-8);
  --third-color: var(--footer_third_color-theme-color);
  color: var(--main-color);
  overflow: hidden;
}
footer .footer-lower {
  padding-top: 30px;
  background: var(--theme-gradient-3);
  padding-bottom: 30px;
}
footer .footer-upper {
  background: var(--theme-gradient-2);
}
footer .footer-navigation {
  margin-top: 41px;
}
footer .footer-navigation hr {
  display: none;
}
footer .footer-navigation > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .footer-navigation li {
  flex-direction: column;
  flex: 1 1 100%;
}
@media (min-width: 366px) {
  footer .footer-navigation {
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  footer .footer-navigation {
    justify-content: center;
    flex-wrap: wrap;
  }
  footer .footer-navigation li {
    flex: 1 1 33%;
  }
  footer .footer-navigation hr {
    display: block;
  }
}
@media (min-width: 992px) {
  footer .footer-navigation > ul {
    justify-content: space-between;
  }
  footer .footer-navigation li {
    flex: 1 1 25%;
  }
}
@media (min-width: 1200px) {
  footer .footer-navigation > ul {
    justify-content: space-between;
  }
  footer .footer-navigation li {
    flex: 1 1 auto;
  }
}
@media (min-width: 992px) {
  footer a:hover {
    text-decoration: underline;
  }
}
footer .form-container {
  padding: 30px 0;
  text-align: center;
}
footer .form-container .hide {
  display: none;
}
@media (min-width: 1200px) {
  footer .form-container {
    max-width: 70%;
    margin: auto;
  }
  footer .form-container .footer-form-header {
    text-align: center;
  }
  footer .form-container hr {
    display: none;
  }
}
footer .footer-form-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 29px;
}
@media (min-width: 768px) {
  footer .footer-form-title {
    font-size: 3rem;
  }
}
footer .footer-form-title p {
  margin-bottom: 0;
}
footer .sub-title {
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 15px;
  font-weight: 700;
  margin-bottom: 26px;
}
@media (min-width: 992px) {
  footer .sub-title {
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: normal;
  }
}
footer .input-title {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  footer .input-title {
    font-size: 3rem;
    text-align: left;
  }
}
footer .checkbox-container {
  display: flex;
  gap: 20px;
}
footer .checkbox-container label {
  display: flex;
  font-size: 1.2rem;
  text-align: left;
}
footer .checkbox-container label small {
  margin-inline-start: 10px;
}
footer [name=footer-form] .prefix-btn {
  max-width: 100%;
  margin-top: 10px;
  width: 100%;
}
footer [name=footer-form] .checkbox-container {
  margin-top: 20px;
  margin-bottom: 20px;
}
footer [name=footer-form] .terms {
  font-size: 1.3rem;
  margin-top: 30px;
  text-align: center;
}
footer [name=footer-form] .terms p {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  footer [name=footer-form] .terms {
    font-weight: 700;
  }
}
footer [name=footer-form] .terms a {
  color: var(--theme-color-9);
}
footer [name=footer-form] label:first-of-type {
  flex: 1;
}
footer [name=footer-form] label:last-of-type {
  flex-basis: 48%;
}
footer [name=footer-form] .inner-form-container {
  position: relative;
}
footer [name=footer-form] .inner-form-container .invalid-feedback {
  position: absolute;
  bottom: -80px;
  font-size: 1.2rem;
}
@media (min-width: 992px) {
  footer [name=footer-form] .inner-form-container .prefix-btn {
    border-radius: 10px;
    margin-top: 0;
    min-width: 100%;
  }
}
footer nav:not(.sub-footer) ul {
  padding: 0;
  list-style: none;
  text-align: center;
}
footer nav:not(.sub-footer) ul .footer-column-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--theme-color-3);
  margin-bottom: 19px;
}
footer nav:not(.sub-footer) ul .footer-nav-item {
  margin-bottom: 41px;
}
footer nav:not(.sub-footer) ul .footer-nav-item a {
  font-size: 1.6rem;
  color: var(--main-color);
  margin-bottom: 10px;
  display: block;
}
footer hr {
  height: 1px;
  background: var(--main-color);
  opacity: 1;
  margin-bottom: 20px;
}

.submit-success {
  font-size: 2rem;
  border: 2px solid var(--white-color);
  border-radius: 10px;
  max-width: max-content;
  padding: 20px;
  margin: auto;
}
@media (min-width: 992px) {
  .submit-success {
    font-size: 2.8rem;
  }
}
.submit-success.hide {
  display: none;
}
.submit-success a {
  text-decoration: underline;
  color: inherit;
}

.logos-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .logos-block {
    flex-direction: row;
  }
}
.logos-block img {
  transform: translateZ(0);
  margin-bottom: 20px;
  max-width: 100%;
}
@media (min-width: 992px) {
  .logos-block img {
    height: 70px;
  }
  .logos-block img:not(:last-of-type) {
    margin-inline-end: 40px;
  }
}

.sub-footer ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sub-footer ul li {
  margin-inline-end: 10px;
}
.sub-footer ul li a {
  color: var(--theme-color-3);
  margin-bottom: 20px;
  display: block;
  font-size: 1.4rem;
}
.sub-footer ul li a:hover {
  text-decoration: underline;
}
.sub-footer + hr {
  display: none;
}
@media (min-width: 768px) {
  .sub-footer + hr {
    display: block;
  }
}

.payment-methods {
  filter: grayscale(1);
}
.payment-methods ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.payment-methods .payment-method {
  padding-inline-end: 30px;
}
.payment-methods .payment-method img {
  height: 30px;
  object-fit: cover;
  margin-bottom: 20px;
}

.copyrights {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
}
.copyrights p {
  font-size: 1.2rem;
}
.copyrights a {
  color: var(--theme-color-3);
}

.social-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.social-menu ul li {
  margin-inline-end: 19px;
}
.social-menu ul li a {
  font-size: 2.5rem;
  color: white;
}
.social-menu svg {
  color: white;
  width: 32px;
  height: 27px;
}

.mega-menu-desktop {
  position: initial !important;
  display: none;
}
@media (min-width: 992px) {
  .mega-menu-desktop {
    display: flex;
  }
}
.mega-menu-desktop ul {
  list-style: none;
}
.mega-menu-desktop .second-level-title {
  max-width: fit-content;
  font-size: 2.2rem;
  font-weight: 700;
  white-space: nowrap;
  border-bottom: 3px solid var(--theme-color-1);
  padding-bottom: 20px;
  margin-bottom: 27px;
}
.mega-menu-desktop .header-column-level2 {
  position: relative;
  flex-basis: 25%;
}
.mega-menu-desktop .dropdown-toggle:after {
  border: 0;
  display: none;
}
.mega-menu-desktop .dropdown-toggle.show {
  position: relative;
}
.mega-menu-desktop .dropdown {
  display: flex;
  align-items: center;
  position: static !important;
  margin-inline-end: 15px;
}
@media (min-width: 1200px) {
  .mega-menu-desktop .dropdown {
    margin-inline-end: 40px;
  }
}
.mega-menu-desktop .dropdown .menu-icon {
  color: var(--theme-color-3);
}
.mega-menu-desktop .dropdown .menu-icon:before {
  color: var(--theme-color-3);
}
.mega-menu-desktop .dropdown .nav-link, .mega-menu-desktop .dropdown .nav-link.active {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
  color: white !important;
}
.mega-menu-desktop .dropdown .nav-link:hover, .mega-menu-desktop .dropdown .nav-link:focus, .mega-menu-desktop .dropdown .nav-link.active:hover, .mega-menu-desktop .dropdown .nav-link.active:focus {
  color: var(--theme-color-3) !important;
}
.mega-menu-desktop .dropdown .nav-link:after, .mega-menu-desktop .dropdown .nav-link.active:after {
  content: "";
  position: absolute;
  width: 0;
  z-index: 1001;
  height: 5px;
  bottom: -23px;
  display: block;
  transition: width 0.3s ease;
  background: var(--theme-color-4);
}
.mega-menu-desktop .dropdown .nav-link.show:after {
  width: 100%;
}
.mega-menu-desktop .mega-icon-1 {
  font-size: 25px;
  margin-inline-end: 14px;
}
.mega-menu-desktop .dropdown-menu {
  padding: 30px 13% 0;
  border: 0;
  transition: opacity 0.3s ease;
  inset-inline-start: 0;
  width: 100%;
  box-shadow: 0px 20px 25px 0px #00000026;
  top: var(--header-height);
}
.mega-menu-desktop .dropdown-menu .container {
  display: flex;
  gap: 20px;
}
.mega-menu-desktop .dropdown-menu.show {
  display: flex;
  justify-content: space-evenly;
}
.mega-menu-desktop .dropdown-item {
  color: var(--theme-color-1);
  font-size: 1.6rem;
  white-space: nowrap;
  transition: text-shadow 0.3s ease;
  width: auto;
}
.mega-menu-desktop .dropdown-item:hover, .mega-menu-desktop .dropdown-item:focus {
  background-color: transparent;
  text-shadow: 0 0 1px currentColor;
}
.mega-menu-desktop .swiper-parent-container {
  overflow: hidden;
}
.mega-menu-desktop .swiper-parent-container ul {
  padding: 0;
}
.mega-menu-desktop .swiper-parent-container .swiper-wrapper .header-slide-link {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 50%;
}
.mega-menu-desktop .swiper-parent-container .swiper-wrapper .header-slide-link .header-menu-img {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mega-menu-desktop .swiper-parent-container .swiper-wrapper .header-slide-link img {
  border-radius: 10px;
}
.mega-menu-desktop .swiper-parent-container .swiper-slide {
  border-radius: 0;
}
.mega-menu-desktop .swiper-parent-container .swiper-container {
  max-height: 100%;
}
.mega-menu-desktop .swiper-pagination {
  left: 50%;
  bottom: 35px;
  display: flex;
  position: absolute;
  z-index: 2;
  transform: translateX(-50%);
}
.mega-menu-desktop .swiper-pagination .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  display: block;
  border-radius: 100%;
  background: #C4C4C4;
  margin-inline-end: 10px;
}
.mega-menu-desktop .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--theme-color-1);
}

.additional-menu-desktop {
  display: none;
}
@media (min-width: 992px) {
  .additional-menu-desktop {
    display: block;
  }
}
.additional-menu-desktop ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin-bottom: 0;
}
.additional-menu-desktop ul li:not(:last-of-type) {
  margin-inline-end: 24px;
}
.additional-menu-desktop ul li a:not(.subscribe-btn) {
  color: white;
  font-weight: 700;
  font-size: 1.4rem;
}

.promotion-article {
  position: relative;
  max-width: 60%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.promotion-article .inner-wrapper {
  flex: 1;
}
.promotion-article .promotion-article-image-container {
  position: relative;
  padding-top: 50%;
  margin-bottom: 5px;
}
.promotion-article .promotion-article-link {
  color: black;
}
.promotion-article .promotion-article-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.promotion-article .promotion-article-title {
  font-size: 1.2rem;
  max-width: 218px;
}
.promotion-article .author-block {
  flex: 1;
  display: flex;
  font-size: 1.2rem;
  color: #8B8B8B;
}
.promotion-article .author-block .author-avatar {
  height: 15px;
  width: 15px;
  border-radius: 100%;
  object-fit: cover;
  margin-inline-end: 5px;
}

.off-canvas-menu {
  max-width: 80%;
}

.offcanvas-body {
  padding-top: calc(var(--header-height) + var(--header-offset));
  padding-left: 0;
  padding-right: 0;
}
.offcanvas-body .mega-menu .mega-menu-title {
  color: #7E7E7E;
  font-weight: 700;
  font-size: 1.2rem;
  text-indent: 17px;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0;
  text-transform: uppercase;
}
.offcanvas-body .menu-wrap {
  padding-left: 17px;
  padding-right: 17px;
}
.offcanvas-body .mobile-top-menu .top-menu-container {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}
.offcanvas-body .mobile-top-menu .top-item {
  background: var(--theme-color-1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  min-height: 65px;
  box-shadow: 0px 1px 3px 0px #00000026;
  border: 2px solid var(--theme-color-5);
}
.offcanvas-body .mobile-top-menu .top-item svg {
  width: 38px;
  height: 38px;
  flex: 1 1 50%;
}
.offcanvas-body .mobile-top-menu .top-item a {
  font-size: 1.2rem;
  line-height: 1.7rem;
  color: white;
  flex: 1 1 50%;
  padding-inline-end: 10px;
}
.offcanvas-body .mobile-top-menu .top-mobile-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: var(--theme-color-1);
  display: block;
  margin-bottom: 20px;
}
.offcanvas-body .mobile-top-menu hr {
  margin-top: 20px;
  margin-bottom: 0;
}
.offcanvas-body .toggle-arrow {
  position: absolute;
  inset-inline-end: 20px;
  width: 13px;
  height: 13px;
}
.offcanvas-body .accordion-flush .accordion-button {
  background-color: var(--theme-color-1);
  color: white;
  position: relative;
  min-height: 64px;
  font-size: 2rem;
}
.offcanvas-body .accordion-flush .accordion-button:after {
  display: none;
}
.offcanvas-body .accordion-flush .accordion-button:not(.collapsed) .toggle-arrow {
  transform: scaleY(-1);
}
.offcanvas-body .accordion-flush .accordion-item {
  border: 1px solid #CDCDCD;
}
.offcanvas-body .accordion-flush .accordion-inner-wrapper {
  padding-inline-start: 20px;
  padding-top: 20px;
}
.offcanvas-body .accordion-flush .accordion-inner-wrapper ul {
  list-style: none;
}
.offcanvas-body .accordion-flush .accordion-inner-wrapper .sub-menus-title {
  font-weight: 700;
  margin-bottom: 20px;
}
.offcanvas-body .accordion-flush .accordion-inner-wrapper .third-level-link {
  padding-top: 10px;
  padding-bottom: 10px;
  color: var(--theme-color-1);
}
.offcanvas-body .accordion-flush .accordion-inner-wrapper .third-level-link:first-of-type {
  border-top: 1px solid #005B4226;
  border-bottom: 0;
}
.offcanvas-body .accordion-flush .accordion-inner-wrapper .mobile-third-level {
  display: flex;
  align-items: center;
}
.offcanvas-body .accordion-flush .accordion-inner-wrapper .sub-menus-title, .offcanvas-body .accordion-flush .accordion-inner-wrapper .third-level-link {
  font-size: 1.6rem;
  flex: 1;
}
.offcanvas-body .lower-links-mobile {
  margin: 30px auto 0;
}
.offcanvas-body .lower-links-mobile ul {
  display: flex;
  list-style: none;
  padding: 0;
}
.offcanvas-body .lower-links-mobile ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  flex: 1;
}
.offcanvas-body .lower-links-mobile ul li a {
  font-size: 1.4rem;
  color: var(--theme-color-1);
  font-weight: 700;
}
.offcanvas-body .lower-links-mobile svg {
  color: var(--theme-color-1);
  flex-basis: 40px;
}

:root {
  --min-font-size: 1.6rem;
  --text-line-hight: initial;
}
@media (min-width: 992px) {
  :root {
    --text-line-hight: 1.8;
    --min-font-size: 1.7rem;
  }
}

html:not(.wp-toolbar) {
  font-size: var(--font_percentage_basis, 62.5%);
  scroll-margin-top: -50px;
}

*:focus {
  outline-color: var(--theme-color-1);
  outline-offset: 2px;
}

a {
  text-decoration: none;
}

main {
  margin-top: calc(var(--header-height));
  padding-bottom: 1px;
  background-color: white;
}
@media (min-width: 992px) {
  main {
    margin-top: calc(var(--header-height));
    background-color: #E5E5E5;
  }
}

.floated-left {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .floated-left {
    margin-right: 20px;
    float: left;
  }
}

.content-main-text-wrapper .floated-left {
  min-width: 100%;
}
@media (min-width: 992px) {
  .content-main-text-wrapper .floated-left {
    max-width: 40%;
    min-width: auto;
  }
}

body:not(.home) .content-main-text-wrapper .collapsible p {
  text-align: start;
}
body:not(.home) .content-main-text-wrapper .collapsible .read-more, body:not(.home) .content-main-text-wrapper .collapsible .read-less, body:not(.home) .content-main-text-wrapper .collapsible svg {
  align-self: flex-start;
}
body:not(.home) .content-main-text-wrapper .collapsible svg {
  margin-top: 5px;
}
body:not(.home) .content-main-text-wrapper .collapsible .read-more-link {
  color: var(--theme-color-1);
  box-shadow: none;
  min-height: 30px;
}
body:not(.home) .content-main-text-wrapper .collapsible .read-more-link[aria-expanded=true] {
  margin-top: 10px;
}
@media (min-width: 992px) {
  body:not(.home) .content-main-text-wrapper .collapsible {
    margin-bottom: 20px;
  }
  body:not(.home) .content-main-text-wrapper .short-content-collapse {
    display: block;
  }
  body:not(.home) .content-main-text-wrapper .read-more-link {
    display: none;
  }
}

.col-max {
  background-color: white;
}

.col-small {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.col-small aside:last-of-type {
  margin-bottom: 30px;
}

.not-recommended {
  color: red;
  font-weight: 700;
}

.g-scale {
  filter: grayscale(1);
}

.offcanvas-backdrop.show {
  opacity: 0.8;
}

@media (max-width: 576px) {
  body:not(.wp-admin) ::-webkit-scrollbar {
    height: 0;
    width: 0;
    background: transparent;
  }
}

#symbols {
  display: none;
}

.verify-error-container {
  background-color: black;
  padding: 10%;
  border: 2px solid red;
  color: white;
}
.verify-error-container strong {
  color: red;
}
.verify-error-container .field-name {
  font-size: 1.6rem;
}

.read-more-link {
  color: var(--main_content_readmore_color-theme-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.4rem;
  justify-content: flex-end;
  display: inline-flex;
  align-items: center;
}
.read-more-link.centered {
  flex-direction: column;
  justify-content: center;
}
.read-more-link.centered svg {
  margin: 0;
}
.read-more-link.open-state svg {
  transform: scaleY(-1);
}
.read-more-link svg {
  width: 20px;
  height: 10px;
  margin-inline-start: 10px;
}
.read-more-link .read-less {
  display: none;
}
.read-more-link[aria-expanded=true] .read-less {
  display: inline;
}
.read-more-link[aria-expanded=true] .read-more {
  display: none;
}
.read-more-link[aria-expanded=true] svg {
  transform: scaleY(-1);
}
.read-more-link.plain {
  margin-top: 10px;
  box-shadow: none;
  border: none;
  background: none;
  align-items: center;
  min-height: auto;
}
.read-more-link.plain .read-more {
  margin: auto;
}
.read-more-link.plain svg {
  margin: auto;
}

.menu-icon {
  color: white;
  margin-inline-end: 20px;
  font-size: 2.5rem;
}

.link-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (min-width: 992px) {
  .link-wrapper {
    margin-bottom: 20px;
    width: auto;
  }
}

.menu-icon-bottom {
  color: var(--theme-color-1);
  font-size: 2.5rem;
  margin-inline-end: 15px;
}
.menu-icon-bottom:before {
  color: var(--theme-color-1) !important;
}

.menu-icon-top {
  margin-inline-end: 20px;
  color: var(--theme-color-3);
}
.menu-icon-top:before {
  color: var(--theme-color-3) !important;
}

.menu-icon-third {
  color: var(--theme-color-1);
  font-size: 2.5rem;
  margin-inline-end: 20px;
}

.menu-icon-top-mobile {
  font-size: 30px;
  color: white;
  margin-left: 5px;
  margin-right: 5px;
}

.menu-icon-bottom-mobile {
  font-size: 3.5rem;
  margin-inline-end: 0;
  color: var(--theme-color-1);
}
.menu-icon-bottom-mobile:before {
  color: var(--theme-color-1) !important;
}

.bread-crumb-container {
  min-height: 30px;
  background: linear-gradient(180deg, #FFFFFF -18%, #D3D3D3 119%);
  display: flex;
  position: relative;
  white-space: nowrap;
  align-items: center;
  font-weight: 700;
  overflow-x: scroll;
  overflow-y: hidden;
  margin-bottom: 15px;
  font-size: 1.2rem;
}
@media (min-width: 576px) {
  .bread-crumb-container {
    overflow-x: unset;
    overflow-y: unset;
  }
}
@media (min-width: 768px) {
  .bread-crumb-container {
    font-size: 1.4rem;
    margin-bottom: 0;
  }
}
.bread-crumb-container .last {
  color: black;
}
.bread-crumb-container a {
  color: var(--theme-color-1);
  font-weight: normal;
}
.bread-crumb-container .home-icon {
  width: 15px;
  height: 15px;
  fill: var(--theme-color-1);
  margin-inline-end: 10px;
}
.bread-crumb-container p {
  margin-bottom: 0;
}

.desktop-only {
  display: none;
}
@media (min-width: 992px) {
  .desktop-only {
    display: block;
  }
}

@-webkit-keyframes shine {
  100% {
    inset-inline-start: 125%;
  }
}
@keyframes shine {
  100% {
    inset-inline-start: 125%;
  }
}
.prefix-btn {
  background: var(--theme-gradient-1);
  text-transform: uppercase;
  text-align: center;
  color: white;
  box-shadow: 0 1px 3px 0 #0000004D;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  display: block;
  min-height: 45px;
  line-height: 45px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  font-size: 1.6rem;
  text-shadow: 0 0.5px 1px rgba(0, 0, 0, 0.5);
}
.prefix-btn {
  font-size: 13px;
}
@media screen and (min-width: 320px) {
  .prefix-btn {
    font-size: calc(13px + 3 * ((100vw - 320px) / 60));
  }
}
@media screen and (min-width: 380px) {
  .prefix-btn {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .prefix-btn {
    max-width: max-content;
  }
}
.prefix-btn:active {
  color: white;
}
.prefix-btn:hover {
  color: white;
  background: var(--theme-gradient-1-hover) !important;
  box-shadow: 0px 1px 3px 0px #0000004D;
}

.simple-btn {
  background-color: var(--theme-color-5);
  color: white;
  border-radius: 50px;
  padding: 5px 10px;
  font-size: 1.2rem;
  box-shadow: 0px 1px 3px 0px #0000004D;
}
.simple-btn:focus, .simple-btn:hover {
  color: white;
}

.prefix-title {
  font-size: 2.2rem;
  font-weight: 700;
  padding-bottom: 10px;
  display: inline-block;
  border-bottom: 3px solid var(--theme-color-5);
}
.prefix-title p {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .prefix-title {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.form-floating label {
  color: #535353;
}

body:not(.wp-admin) footer input:not([type=checkbox]) {
  appearance: none;
  font-size: 1.6rem;
  outline: none;
  border-radius: 10px;
  border: 1px solid #535353;
  width: 100%;
  min-height: 56px;
}
body:not(.wp-admin) label {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}

.rating {
  position: relative;
  display: inline-block;
  pointer-events: none;
  width: 128px;
  height: 20px;
}
.rating:before {
  content: "";
  position: absolute;
  inset-inline-end: 1px;
  display: block;
  transition: width 0.1s linear;
  width: calc(27 * (5 - var(--rating-width)) * 1px - 4px);
  height: 20px;
  z-index: 5;
  background: var(--rating-mask-color, white);
}
.rating .filled {
  width: 128px;
  position: absolute;
  z-index: 3;
  right: 0;
  display: flex;
}
.rating .not-filled {
  width: 128px;
  right: 0;
  position: absolute;
  z-index: 6;
  display: flex;
}
.rating svg {
  width: 20px;
  height: 20px;
  color: var(--star-color_theme-color);
}
.rating svg:not(:last-of-type) {
  margin-inline-end: 7px;
}

.prefix-tab {
  height: 40px;
  max-width: 127px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px !important;
  box-shadow: 0px 1px 3px 0px #0000004D;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: normal;
  border: 1px solid var(--theme-color-3) !important;
  color: var(--tab_not_active_theme-color);
}
.prefix-tab:hover {
  color: var(--tab_not_active_theme-color);
}
.prefix-tab.active {
  font-weight: 700;
  background-color: var(--theme-color-3) !important;
  color: var(--white-color);
}
.prefix-tab.active:hover {
  color: var(--white-color);
}

.subscribe-btn {
  border: 1px solid white;
  border-radius: 10px;
  padding: 4px 8px;
  font-size: 1.3rem;
  color: white;
  box-shadow: 0px 2px 5px 0px #00000026;
}
.subscribe-btn:hover {
  color: white;
}
@media (min-width: 1200px) {
  .subscribe-btn {
    font-size: 1.8rem;
  }
}

#scroll-top-top {
  position: fixed;
  z-index: 20;
  opacity: 0;
  background-color: transparent;
  border-radius: 100%;
  display: block;
  transition: opacity 0.15s ease-in-out;
  inset-inline-end: 20px;
  bottom: 20px;
}
@media (min-width: 992px) {
  #scroll-top-top {
    inset-inline-end: 30px;
    bottom: 30px;
  }
}
#scroll-top-top svg {
  width: 35px;
  height: 35px;
  border-radius: 100%;
}
#scroll-top-top.show-scroll-top {
  opacity: 1;
}
@media (min-width: 992px) {
  #scroll-top-top svg {
    width: 50px;
    height: 50px;
  }
  #scroll-top-top.show-scroll-top {
    opacity: 0.75;
  }
  #scroll-top-top.show-scroll-top::before {
    transition: opacity 0.2s linear;
    opacity: 0;
    border-radius: 10px;
    top: 0;
    inset-inline-start: 0;
    content: "";
    box-shadow: 0px 8px 15px 0px #00000033;
    display: block;
    width: 100%;
    position: absolute;
    height: 100%;
  }
  #scroll-top-top.show-scroll-top:hover, #scroll-top-top.show-scroll-top:focus-within {
    border-color: var(--icons_menu_item_hover_border-theme-color);
  }
  #scroll-top-top.show-scroll-top:hover:before, #scroll-top-top.show-scroll-top:focus-within:before {
    opacity: 1;
  }
  #scroll-top-top.show-scroll-top:before {
    inset-inline-start: 50%;
    top: 50%;
    border-radius: 100%;
    transform: translate(calc(var(--math) * -50%), -50%);
    width: 52px;
    height: 52px;
    box-shadow: 0px 0px 8px 2px #0000003b !important;
  }
  #scroll-top-top:hover {
    opacity: 1;
  }
}
#scroll-top-top svg {
  border-radius: 100%;
  overflow: hidden;
  min-width: 100%;
  min-height: 100%;
}

.content-text {
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  max-height: var(--initial-text-height);
}
.content-text p:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .content-text.closed {
    max-height: calc(var(--initial-text-height) / 2 - 5px);
  }
}
.content-text p {
  font-size: var(--min-font-size);
}

.read-more-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .read-more-wrapper {
    display: none;
  }
}

.review-content-container {
  margin-top: 0;
}

body:not(.page-template-bonuses) .card-grid {
  padding: 1px;
  width: 100%;
}
@media (min-width: 992px) {
  body:not(.page-template-bonuses) .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1400px) {
  body:not(.page-template-bonuses) .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stretched-link:before {
  z-index: 2;
}

.col-max {
  border: 1px solid #C9C9C9;
  border-radius: 10px;
  margin-bottom: 20px;
  padding-left: 5px;
  padding-right: 5px;
}
@media (min-width: 992px) {
  .col-max {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 20px;
  }
}
.col-max.stand-alone {
  margin-bottom: 30px;
}

.table-of-contents-wrapper h1, .table-of-contents-wrapper .content-title {
  font-weight: 700;
  font-size: 2.6rem;
}
@media (min-width: 992px) {
  .table-of-contents-wrapper h1, .table-of-contents-wrapper .content-title {
    font-size: 3.2rem;
  }
}

.exclusive {
  background-color: var(--theme-color-6);
  color: white;
  max-width: fit-content;
  font-weight: 700;
  border-radius: 20px;
  padding: 2px 9px;
  font-size: 1.2rem;
}

.columns-wrap {
  background-color: white;
}
@media (min-width: 1200px) {
  .columns-wrap {
    padding-top: 30px;
    background-color: unset;
    display: grid;
    grid-template-columns: 1fr 302px;
    gap: 30px;
  }
}

.features {
  display: flex;
  padding: 10px;
  flex: 1;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #03C1DB;
}
.features ul {
  padding: 0;
  margin-bottom: 0;
}
.features.features-desktop {
  justify-content: unset;
  grid-column: 2/4;
  border-bottom: 0;
  padding: 0;
  align-items: flex-end;
}
.features.features-desktop ul {
  display: flex;
  justify-content: space-between;
}
.features.features-desktop ul li {
  margin-inline-end: 20px;
}
@media (min-width: 1400px) {
  .features.features-desktop ul li {
    font-size: 1.6rem;
  }
  .features.features-desktop ul li:before {
    top: 5px;
  }
}
.features li {
  list-style: none;
  font-size: 1.2rem;
  align-items: center;
  position: relative;
  padding-inline-start: 20px;
}
.features li:not(:last-of-type) {
  margin-bottom: 7px;
}
.features li:before {
  content: "✓";
  inset-inline-start: 0;
  position: absolute;
  display: inline-block;
  color: white;
  width: 14px;
  top: 2px;
  font-size: 1rem;
  height: 14px;
  text-indent: 3px;
  border-radius: 100%;
  background-color: var(--theme-color-3);
  margin-inline-end: 10px;
}

.code-segment {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  gap: 10px;
  color: #6C757D;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='10' ry='10' stroke='%234D4D4DFF' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  border-radius: 10px;
}
.code-segment .copied-to-clipboard {
  display: none;
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
}
.code-segment.copied {
  background-color: var(--theme-color-1);
  background-image: unset;
}
.code-segment.copied .copied-to-clipboard {
  display: block !important;
}
.code-segment.copied > :not(.copied-to-clipboard):not(.checkmark) {
  display: none;
}
.code-segment > * {
  pointer-events: none;
}
.code-segment svg {
  width: 15px;
  height: 15px;
}
.code-segment .text {
  font-size: 1.4rem;
  color: #6C757D;
}
.code-segment .code {
  font-size: 1.6rem;
  color: var(--theme-color-1);
  font-weight: 700;
}
.code-segment .checkmark {
  color: white;
  width: 25px;
  height: 18px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='17' viewBox='0 0 19 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.2321 16C10.4623 17.3333 8.53775 17.3333 7.76795 16L0.406735 3.25C-0.363065 1.91667 0.599185 0.249998 2.13879 0.249998L16.8612 0.25C18.4008 0.25 19.3631 1.91667 18.5933 3.25L11.2321 16Z' fill='%23676767'/%3E%3C/svg%3E%0A") !important;
}

#root {
  margin-bottom: 20px;
}

.casino-list-wrapper {
  clear: both;
}

.short-content p {
  text-align: center;
  font-size: 1.6rem;
  position: relative;
}

.single-guide .collapsible .read-more-link, .single-bonus_type .collapsible .read-more-link {
  background: none;
}

.collapsible p {
  font-size: var(--min-font-size);
  text-align: center;
}

.read-more, .read-less {
  position: relative;
  align-self: flex-end;
  margin-inline-start: 20px;
  font-size: 1.2rem;
  font-weight: 700;
}
.read-more.collapsed, .read-less.collapsed {
  display: block;
}

.char-counter {
  display: flex;
  gap: 5px;
  font-size: 1.8rem;
  color: #505050;
}
.char-counter.max {
  color: #b71818;
  font-weight: 700;
}

.form-group {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-direction: column;
}
@media (min-width: 992px) {
  .form-group {
    flex-direction: initial;
  }
}
.form-group .captcha-wrapper {
  display: flex;
  flex: 1;
  width: 100%;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 992px) {
  .form-group .captcha-wrapper {
    flex-direction: initial;
    width: auto;
  }
}
.form-group .captcha-wrapper .form-floating {
  width: 100%;
}
.form-group .captcha-wrapper input {
  margin-bottom: 0;
}
.form-group .captcha-wrapper img {
  border: 1px solid #ABABAB;
  border-radius: 10px;
}
@media (min-width: 992px) {
  .form-group .captcha-wrapper img {
    max-height: 49px;
  }
}
.form-group [type=submit] {
  flex: 0;
}
.form-group [name=captcha] {
  width: 100%;
}

@media (max-width: 768px) {
  .content .wp-block-image figure {
    float: none;
    display: block;
    margin-inline: 0;
  }
  .content .wp-block-image.alignleft, .content .wp-block-image.alignright {
    display: block;
  }
  .content .wp-block-image img {
    width: 100%;
  }
}

.global-error-message {
  text-align: center;
  font-weight: 700;
  color: red;
  font-size: 1.6rem;
}

.App {
  position: relative;
  overflow: hidden;
  padding: 2px;
}

body:not(.wp-admin) .hidden {
  visibility: hidden;
}
body:not(.wp-admin) .clear-btn, body:not(.wp-admin) #scroll-top-top {
  -webkit-appearance: none;
  appearance: none;
  border: none;
}
body:not(.wp-admin) img:not([src]) {
  position: relative;
}
@-webkit-keyframes shimmer {
  0% {
    background-position: calc(var(--math) * -100%) 0;
  }
  100% {
    background-position: calc(var(--math) * 100%) 0;
  }
}
@keyframes shimmer {
  0% {
    background-position: calc(var(--math) * -1200px) 0;
  }
  100% {
    background-position: calc(1200px * var(--math)) 0;
  }
}
body:not(.wp-admin) .loader {
  color: var(--spinner-color);
  font-size: 20px;
  margin: 100px auto;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load4 1.3s infinite linear;
  animation: load4 1.3s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
@-webkit-keyframes load4 {
  0%, 100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
@keyframes load4 {
  0%, 100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.faq-container {
  padding-bottom: 10px;
}
@media (min-width: 1200px) {
  .faq-container {
    padding-bottom: 0;
  }
}

.go-page header, .go-page footer {
  display: none;
}

/*# sourceMappingURL=shared.css.map */
