:root {
  /* pinned */
  --success-color: #069814;
  --success-color-light: #07be1a;
  --icon-color: #cbabff;
  --icon-filter: brightness(0) saturate(100%) invert(69%) sepia(10%)
    saturate(2143%) hue-rotate(213deg) brightness(104%) contrast(102%);
  --header-bg-color: var(--primary-color-dark);
  --sidebar-bg-color: var(--menu-color);
  --bonus-card-bg-color: var(--menu-color);
  --btn-border-color: var(--accent-color);
  --btn-border-color-outline: var(--border-color);
  --btn-round: var(--round-l);
  --btn-text-color: var(--white-color);
  --btn-text-color-outline: var(--white-color);
  --table-head-bg-color: var(--table-1-color);
  --table-head-text-color: var(--text-color);
  --table-cell-bg-color: var(--bg-color);
  --table-cell-text-color: var(--text-color);
  --faq-bg-color: var(--menu-color);
  --faq-divider-color: var(--divider-color);
  --faq-border-color: var(--border-color);
  --faq-round: var(--round-base);
  --base: 1rem;
  --container-width: 1130px;
  --container-padding-x: 15px;
  --header-height: calc(var(--base) * 4);
  --sidebar-width-short: calc(var(--base) * 4);
  --sidebar-width: calc(var(--base) * 20);
  --transition-duration: 0.2s;
  --games-grid-cols: 7;
  --games-grid-cols-mobile: calc(var(--games-grid-cols) * 2);
  --new-game-card-bg-color: linear-gradient(
    180deg,
    rgba(109, 0, 216, 0),
    #47008d
  );
  --seo-content-width: 80%;
  --round-sm: calc(var(--base) * 0.5);
  --round-base: var(--base);
  --round-l: calc(var(--base) * 2);
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Arial", sans-serif;
  --font-render-type: swap;
}

* {
  border: none;
  margin: 0;
  padding: 0;
}

*,
:after,
:before {
  box-sizing: border-box;
}

a,
a:link,
a:visited {
  color: inherit;
}

a,
a:hover,
a:link,
a:visited {
  text-decoration: none;
}

aside,
footer,
header,
main,
nav,
section {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

address {
  font-style: normal;
}

button,
input,
select,
textarea {
  background-color: transparent;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}

input::-ms-clear {
  display: none;
}

button,
input[type="submit"] {
  background-color: transparent;
  background: none;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
}

button:active,
button:focus,
input:active,
input:focus {
  outline: none;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

body,
html {
  scroll-behavior: smooth;
  scroll-margin-top: 5rem;
}

html {
  font-size: 100%;
}

body {
  background-color: var(--main-theme-color);
  color: var(--text-color);
  font-family: var(--font-primary);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media screen and (max-width: 1024px) {
  .pistolo-8a0mko {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .pistolo-2ycndu {
    display: none;
  }
}

.pistolo-jhbo6z {
  background: var(--menu-color);
  border-radius: var(--border-radius-sm);
}

.pistolo-jwvmay {
  overflow-y: hidden;
}

.pistolo-7t6njg {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.239), 0 0 1px 0 rgba(0, 0, 0, 0.322);
}

h1,
h2,
h3,
h4 {
  line-height: 120%;
}

p {
  line-height: 140%;
}

h1 {
  font-size: 3rem;
}

@media screen and (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2.25rem;
}

@media screen and (max-width: 992px) {
  h2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 576px) {
  h2 {
    font-size: 1.8rem;
  }
}

h3 {
  font-size: 1.6rem;
}

@media screen and (max-width: 992px) {
  h3 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 576px) {
  h3 {
    font-size: 1.2rem;
  }
}

p {
  font-size: 1rem;
}

@media screen and (max-width: 992px) {
  p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 576px) {
  p {
    font-size: 1rem;
  }
}

.pistolo-qi422l {
  margin-left: auto;
  margin-right: auto;
  max-width: 1414px;
  padding: 0 15px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .pistolo-qi422l {
    max-width: 100%;
  }
}

.pistolo-a2u6oy,
body,
html {
  height: 100%;
}

.pistolo-tc56yp {
  bottom: 0;
  height: 100%;
  left: 0;
  max-width: var(--sidebar-width-short);
  position: fixed;
  top: 0;
  transform: scaleX(1);
  transition: 0.25s;
  width: 100%;
  will-change: transform;
  z-index: 900;
}

.pistolo-tc56yp.pistolo-g21em6 {
  display: block;
  max-width: var(--sidebar-width);
  transform: scaleX(var(--sidebar-width));
}

.pistolo-13n1u4 {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-left: var(--sidebar-width-short);
  max-width: calc(100% - var(--sidebar-width-short));
  transition: 0.25s;
  width: 100%;
}

.pistolo-13n1u4.pistolo-g21em6 {
  margin-left: var(--sidebar-width);
  max-width: calc(100% - var(--sidebar-width));
}

.pistolo-hv69nz {
  height: var(--header-height);
  left: 0;
  margin-left: var(--sidebar-width-short);
  max-width: calc(100% - var(--sidebar-width-short));
  position: fixed;
  right: 0;
  top: 0;
  transition: transform 0.25s;
  width: 100%;
  will-change: transform;
  z-index: 900;
}

.pistolo-hv69nz.pistolo-g21em6 {
  margin-left: var(--sidebar-width);
  max-width: calc(100% - var(--sidebar-width));
  transform: scaleX(calc(100% - var(--sidebar-width)));
}

.pistolo-hv69nz.pistolo-g21em6 .pistolo-95byn9 {
  display: none;
}

.pistolo-uvijp7 {
  padding-top: calc(var(--header-height) + 1rem);
}

@media screen and (max-width: 1024px) {
  .pistolo-hv69nz,
  .pistolo-13n1u4 {
    margin-left: 0;
    max-width: 100%;
  }
}

.pistolo-nwll7m {
  background: var(--sidebar-bg-color);
  display: block;
}

.pistolo-nwll7m.pistolo-g21em6 .pistolo-95byn9 {
  display: inline-block;
}

.pistolo-nwll7m.pistolo-g21em6 .pistolo-tgn2yt {
  display: flex;
}

.pistolo-nwll7m.pistolo-g21em6 .pistolo-hdujuj {
  transform: translateY(0);
  visibility: visible;
}

.pistolo-05xbr7 {
  align-items: center;
  background: var(--fh-bg-color);
  display: flex;
  height: var(--header-height);
  max-height: var(--header-height);
}

.pistolo-nwll7m .pistolo-95byn9 {
  display: none;
  margin: 0 auto;
  transform: translateX(calc(var(--header-height) * -1 / 2));
}

.pistolo-tgn2yt {
  display: none;
  flex-direction: column;
  height: 90%;
  justify-content: space-between;
  max-height: 90%;
  overflow-y: scroll;
  padding: 1rem 0.5rem;
}

.pistolo-tgn2yt::-webkit-scrollbar {
  width: 0;
}

.pistolo-25p975 {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 0 0.5rem;
}

.pistolo-25p975.pistolo-g21em6 {
  display: none;
}

.pistolo-kk0101 {
  filter: var(--button-text-color);

  max-width: 1.5rem;
  min-width: 1.5rem;
}

.pistolo-1led9n {
  align-items: center;
  aspect-ratio: 1/1;
  background: transparent;
  border-radius: var(--round-sm);
  display: flex;
  height: auto;
  justify-content: center;
  transition: var(--transition-duration);
  width: 3rem;
}

.pistolo-0bnxgz {
  max-width: 40px;
}

.pistolo-rlqux9 {
  display: inline-flex;
  justify-content: center;
  padding: 5px 0;
  width: 100%;
}

.pistolo-rlqux9 svg {
  color: var(--success-color-light);
}

.pistolo-v4c5uh {
  border-bottom: 1px solid var(--divider-color);
}

.pistolo-vup89f {
  border-top: 1px solid var(--divider-color);
}

@media (any-hover: hover) {
  .pistolo-1led9n:hover {
    background: var(--menu-color);
  }
}

@media screen and (max-width: 1024px) {
  .pistolo-nwll7m {
    display: none;
  }
  .pistolo-nwll7m:after {
    background: var(rgba(0, 0, 0, 0.523) city);
    content: "";
    height: 100%;
    left: var(--sidebar-width);
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 900;
  }
}

.pistolo-00i02p {
  align-items: center;
  background: var(--button-bg-color);
  border-radius: 5px;
  display: inline-block;
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem;
  width: 100%;
}

.pistolo-g4qmyl {
  max-width: 40px;
}

.pistolo-e4zqmj {
  font-size: 0.75rem;
  font-weight: 700;
}

.pistolo-yvzqtk {
  background: var(--fh-bg-color);
}

.pistolo-wmfe6n,
.pistolo-bt47rs {
  align-items: center;
  display: flex;
}

.pistolo-wmfe6n {
  gap: 0.5rem;
}

.pistolo-bt47rs {
  gap: 2rem;
  height: 100%;
  justify-content: space-between;
}

.pistolo-yvzqtk .pistolo-95byn9 {
  margin-right: 2rem;
}

@media (max-width: 768px) {
  .pistolo-bt47rs {
    gap: 0rem;
    padding: 0;
  }

  .pistolo-yvzqtk .pistolo-95byn9 {
    margin-right: 0rem;
  }
}

@media screen and (max-width: 768px) {
  .pistolo-yvzqtk .pistolo-qbrvwm {
    display: none;
  }
  .pistolo-fy67e4 {
    font-size: 0.pistolo-rket4k !important;
  }
  .pistolo-yvzqtk .pistolo-95byn9 {
    max-width: 100px;
  }
}

.pistolo-i0ibbn svg {
  color: var(--icon-color);
}

@media screen and (max-width: 768px) {
  .pistolo-i0ibbn {
    display: none;
  }
}

.pistolo-95byn9 {
  display: inline-block;
  max-width: 125px;
}

.pistolo-f8nnrt {
  width: 100%;
}

.pistolo-hdujuj {
  transform: translateY(10%);
  transition-delay: 10s;
  visibility: hidden;
}

.pistolo-ya269f {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.pistolo-jpehr9,
.pistolo-fjqv4g {
  cursor: pointer;
  background: var(--border-color);
  border-radius: 6px;
  transition: var(--transition-duration);
}

.pistolo-jpehr9 {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  font-weight: 700;
  gap: 0.5rem;
  overflow: hidden;
  padding: 5px 0.5rem;
  position: relative;
}

.pistolo-jpehr9:before {
  background: var(--decor-gradient);
  content: "";
  filter: blur(30px);
  height: 120px;
  left: -15px;
  opacity: 0.7;
  position: absolute;
  top: -80px;
  width: 120px;
  z-index: 1;
}

.pistolo-0q2t7q {
  font-size: 0.875rem;
  justify-content: center;
}

.pistolo-ll4kd0,
.pistolo-mfr1bc {
  position: relative;
  z-index: 2;
}

.pistolo-ll4kd0 {
  max-width: 40px;
}

.pistolo-frfyqn {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.pistolo-bocgz9:last-child:nth-child(odd) {
  grid-column: 1/-1;
}

.pistolo-q89gz5 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 1rem;
}

.pistolo-fjqv4g {
  padding: 0.5rem;
}

.pistolo-vf8229 {
  filter: var(--button-text-color);
  max-width: 1.25rem;
}

@media (any-hover: hover) {
  .pistolo-jpehr9:hover,
  .pistolo-fjqv4g:hover {
    background: var(--border-color);
  }
}

.pistolo-n5umm7 {
  align-items: center;
  background: var(--button-bg-color);
  border: 2px solid var(--border-color);
  border-radius: var(--btn-round);
  display: inline-flex;
  font-weight: 600;
  gap: 5px;
  justify-content: center;
  padding: 6px 10px;
  text-align: center;
  transition: var(--transition-duration);
  cursor: pointer;
}

.pistolo-2cpyzf {
  color: var(--button-text-color);
}

.pistolo-rofqm9 {
  /* background: transparent; */
  border-color: var(--btn-border-color-outline);
}

.pistolo-rofqm9 .pistolo-2cpyzf {
  color: var(--button-text-color);
}

.pistolo-00n7ya {
  padding: 0.pistolo-sbo76u 0.625em;
  width: 100%;
}

.pistolo-sba5c6 {
  font-size: 0.875rem;
}

.pistolo-nqr7na {
  background: var(--success-color);
  border-color: var(--success-color);
}

.pistolo-nqr7na .pistolo-2cpyzf,
.pistolo-nqr7na svg {
  color: var(--button-text-color);
}

.pistolo-w408dc svg {
  color: var(--btn-text-color);
}

@media (any-hover: hover) {
  .pistolo-n5umm7:hover {
    background: var(--button-bg-hover);
    border-color: var(--button-bg-hover);
  }
  .pistolo-rofqm9:hover {
    background: var(--btn-border-color-outline);
    border-color: var(--btn-border-color-outline);
  }
  .pistolo-nqr7na:hover {
    background: var(--success-color-light);
    border-color: var(--success-color-light);
  }
}

.pistolo-ovmokq {
  margin-left: 10px;
  margin-right: 5px;
  transform: scaleX(-1);
}

.pistolo-qbrvwm {
  background: var(--border-color);
  display: inline-flex;
}

.pistolo-qbrvwm,
.pistolo-mbn99j {
  border-radius: var(--round-l);
}

.pistolo-mbn99j {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  font-weight: 600;
  gap: 5px;
  padding: 0.4rem;
}

.pistolo-mbn99j span,
.pistolo-mbn99j svg {
  color: var(--icon-color);
  transition: var(--transition-duration);
}

.pistolo-ocvq9o {
  background: var(--button-bg-color);
}

.pistolo-ocvq9o span,
.pistolo-ocvq9o svg {
  color: var(--button-text-color);
}

.pistolo-65mf46 {
  display: none;
  height: 0;
  margin: 0.pistolo-8vcvnj 0 1rem;
  width: 0;
}

.pistolo-65mf46 .pistolo-mbn99j {
  flex: 1 1 50%;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .pistolo-65mf46 {
    display: inline-flex;
    height: auto;
    width: 100%;
    margin-bottom: 15px;
  }
}

@media (any-hover: hover) {
  .pistolo-mbn99j:hover span,
  .pistolo-mbn99j:hover svg {
    color: var(--text-color);
  }
}

.pistolo-5ftrvp {
  height: 200px;
  min-height: 175px;
  overflow-y: hidden;
}

.pistolo-q17x3o,
.pistolo-cr1zyv {
  height: 100%;
}

.pistolo-q17x3o {
  overflow-x: auto;
}

.pistolo-q17x3o::-webkit-scrollbar {
  width: 0;
}

.pistolo-cr1zyv {
  display: flex;
  gap: 0.5rem;
  width: auto;
}

.pistolo-2ay0u0 {
  flex: 1 0 33%;
  max-width: 33%;
}

@media screen and (max-width: 1024px) {
  .pistolo-5ftrvp {
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .pistolo-5ftrvp {
    height: auto;
    min-height: auto;
  }
  .pistolo-2ay0u0 {
    flex: 1 0 100%;
  }
}

.pistolo-fr3wej {
  background: var(--bonus-card-bg-color);
  border-radius: var(--round-base);
  display: inline-block;
  height: 100%;
  overflow-y: hidden;
  position: relative;
}

.pistolo-sahcmh {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  inset: 0;
  justify-content: space-between;
  padding: 0.75rem;
  position: absolute;
  width: 100%;
}

@media (max-width: 1026px) {
  .pistolo-sahcmh {
    gap: 0;
  }
}

.pistolo-ukimmr {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 768px) {
  .pistolo-ukimmr {
    height: 150px !important;
  }
}

.pistolo-l72kib {
  background: var(--button-bg-color);
  border-radius: var(--round-sm);
  color: var(--button-text-color);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 0.5rem;
  text-transform: uppercase;
}

.pistolo-fzvptf {
  color: var(--text-color);
}

.pistolo-14rlkr {
  font-size: 1rem;
  font-weight: 900;
  max-width: 200px;
}

@media (max-width: 1026px) {
  .pistolo-14rlkr {
    font-size: 16px;
  }
}

.pistolo-2wymb7 {
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  .pistolo-fr3wej {
    height: 175px;
  }
}

@media screen and (max-width: 768px) {
  .pistolo-fr3wej {
    flex: 1 0 90%;
    height: auto;
    max-width: 900px;
    min-height: 190px;
  }
  .pistolo-l72kib {
    font-size: 0.675rem;
    padding: 5px;
  }
}

.pistolo-ax5pmy {
  display: flex;
  gap: 1rem;
}

@media (any-hover: hover) {
  .pistolo-v3a27w:hover .pistolo-exfarj {
    color: var(--accent-color);
  }
}

.pistolo-mmigex {
  text-align: center;
}

.pistolo-fokvf1 {
  margin: 2rem 0;
}

.pistolo-rw4frh {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.pistolo-zy0dt8 {
  font-size: 2rem;
  font-weight: 700;
}

.pistolo-czfg1r {
  overflow-x: auto;
}

.pistolo-czfg1r::-webkit-scrollbar {
  width: 0;
}

.pistolo-3grxoy {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(var(--games-grid-cols), minmax(0, 1fr));
}

@media screen and (max-width: 768px) {
  .pistolo-3grxoy {
    gap: 0.5rem;
    grid-template-columns: repeat(
      var(--games-grid-cols-mobile),
      minmax(120px, 1fr)
    );
  }
  .pistolo-zy0dt8 {
    font-size: 1.25rem;
  }
}

.pistolo-czo18j {
  display: inline-flex;
  flex-direction: column;
  max-width: 208px;
}

.pistolo-kfdc0n {
  aspect-ratio: 1/1;
  background: var(--menu-color);
  border-radius: var(--round-base);
  margin-bottom: 0.5rem;
  overflow: hidden;
  position: relative;
}

.pistolo-l0tsc5 {
  -o-object-fit: cover;
  object-fit: cover;
}

.pistolo-2qgkqn,
.pistolo-l0tsc5 {
  height: 100%;
  transition: var(--transition-duration);
  width: 100%;
}

.pistolo-2qgkqn {
  align-items: center;
  background: var(rgba(0, 0, 0, 0.523) city);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  position: absolute;
}

.pistolo-dseffl {
  display: -moz-box;
  display: -webkit-box;
  font-size: 0.875rem;
  font-weight: 700;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
  color: #fff;
  margin-bottom: 5px;
  white-space: wrap;
}

.pistolo-flw0uw {
  color: var(--text-color-label);
  font-size: 0.75rem;
  font-weight: 500;
}

.pistolo-y8j2wz {
  padding: 0.5rem;
}

.pistolo-airb4y {
  border-radius: var(--round-base);
  max-height: 235px;
  max-width: 175px;
  overflow: hidden;
  position: relative;
}

.pistolo-airb4y .pistolo-l0tsc5 {
  height: 100%;
  max-height: 235px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.pistolo-airb4y .pistolo-rnls9p {
  background: var(--new-game-card-bg-color);
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  left: 0;
  padding: 0.5rem;
  position: absolute;
  right: 0;
  text-align: center;
  width: 100%;
}

.pistolo-airb4y .pistolo-flw0uw {
  color: var(--white-color);
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.5;
  overflow-x: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.pistolo-airb4y .pistolo-kfdc0n {
  height: 100%;
  margin-bottom: 0;
  max-height: 235px;
  max-width: 175px;
  width: 100%;
}

.pistolo-airb4y .pistolo-2qgkqn {
  display: none;
}

@media (any-hover: hover) {
  .pistolo-czo18j:hover .pistolo-2qgkqn {
    opacity: 1;
  }
  .pistolo-czo18j:hover .pistolo-l0tsc5 {
    transform: scale(1.1);
    will-change: transform;
  }
}

.pistolo-u5xgdy {
  padding: 2rem 0;
}

.pistolo-dvwkgf {
  border-bottom: 1px solid var(--divider-color);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  padding-bottom: 2.5rem;
}

.pistolo-jqq432 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pistolo-ip4y0y {
  font-size: 0.75rem;
  font-weight: 600;
}

.pistolo-yoz49e {
  color: var(--footer-text-color);
}

.pistolo-pqacng {
  font-size: 1.25rem;
  font-weight: 600;
}

.pistolo-tlo982 {
  color: var(--footer-text-color);
  margin-bottom: 1rem;
}

.pistolo-zwb5iz {
  align-items: center;
  display: inline-flex;
  font-weight: 600;
  gap: 5px;
}

.pistolo-uhdc8y {
  transition: var(--transition-duration);
}

.pistolo-fv69w9 {
  align-items: center;
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}

.pistolo-u5xgdy .pistolo-00i02p {
  margin-top: 0;
  max-width: 150px;
}

@media (any-hover: hover) {
  .pistolo-zwb5iz:hover .pistolo-uhdc8y {
    color: var(--footer-text-color);
  }
}

@media screen and (max-width: 768px) {
  .pistolo-fv69w9 {
    justify-content: center;
    flex-direction: column;
  }
}

.pistolo-yowp6i {
  margin-bottom: 2rem;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

.pistolo-4wx6ul {
  margin: 0 auto;
  max-width: var(--seo-content-width);
}

.pistolo-4wx6ul p img {
  display: block;
  margin: 0 auto;
}

.pistolo-yowp6i h1,
.pistolo-yowp6i h2,
.pistolo-yowp6i h3,
.pistolo-yowp6i h4,
.pistolo-yowp6i h5,
.pistolo-yowp6i h6 {
  font-weight: 700;
}

.pistolo-yowp6i h1,
.pistolo-yowp6i h2 {
  margin-top: 2rem;
}

.pistolo-yowp6i h3,
.pistolo-yowp6i h4 {
  margin-top: 1rem;
}

.pistolo-yowp6i ol li,
.pistolo-yowp6i p,
.pistolo-yowp6i ul li {
  color: var(--text-color);
}

.pistolo-yowp6i p {
  margin-top: 1rem;
}

.pistolo-yowp6i li {
  margin-left: 2.5rem;
  margin-top: 0.5rem;
}

.pistolo-yowp6i ol li,
.pistolo-yowp6i ul li {
  font-size: 1rem;
}

.pistolo-yowp6i ul li {
  list-style-type: disc;
}

.pistolo-yowp6i .pistolo-fbwth7 {
  max-width: 100%;
  overflow-x: scroll;
}

.pistolo-yowp6i .pistolo-fbwth7::-webkit-scrollbar {
  height: 5px;
}

.pistolo-yowp6i .pistolo-fbwth7::-webkit-scrollbar-thumb {
  background-color: var(--menu-color);
  border-radius: 20px;
}

.pistolo-yowp6i .pistolo-fbwth7::-webkit-scrollbar-track {
  background: transparent;
}

.pistolo-yowp6i table,
.pistolo-yowp6i td,
.pistolo-yowp6i th {
  border: 2px solid var(--border-color);
  border-collapse: collapse;
}

.pistolo-yowp6i table {
  margin: 1rem 0;
}

.pistolo-yowp6i thead td,
.pistolo-yowp6i thead th {
  background: var(--table-head-bg-color);
  color: var(--table-head-text-color);
  padding: 0.5rem;
}

.pistolo-yowp6i tbody td {
  background: var(--table-cell-bg-color);
  color: var(--table-cell-text-color);
}

.pistolo-yowp6i td {
  padding: 1rem 2rem 1rem 1rem;
  text-align: center;
}

.pistolo-yowp6i th {
  padding: 1rem 4rem 1rem 1rem;
}

@media (max-width: 768px) {
  .pistolo-yowp6i th,
  td {
    padding: 5px !important;
    font-size: 12px;
  }
}

.pistolo-yowp6i img {
  display: inline-block;
  margin: 1rem 0;
}

.pistolo-yowp6i .pistolo-czo18j img,
.pistolo-yowp6i .pistolo-qpsjkj img {
  margin: 0;
}

.pistolo-yowp6i .pistolo-czo18j {
  border: 2px solid var(--menu-color);
  border-radius: var(--round-base);
  overflow-x: hidden;
}

.pistolo-yowp6i .pistolo-rnls9p {
  padding: 0.5rem;
}

.pistolo-yowp6i .pistolo-dseffl {
  color: var(--text-color);
}

.pistolo-yowp6i .pistolo-qpsjkj {
  align-items: center;
  background: var(--bonus-card-bg-color);
  border-radius: var(--round-base);
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  max-height: 400px;
  min-width: 200px;
  overflow-y: hidden;
  width: 60%;
}

.pistolo-yowp6i .pistolo-i1dm2v {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.pistolo-yowp6i .pistolo-qpsjkj img {
  flex: 1 1 50%;
  height: auto;
  min-height: 150px;
}

.pistolo-yowp6i .pistolo-qjo210 {
  height: 100%;
  min-width: 160px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.pistolo-yowp6i .pistolo-7guzt4 {
  flex: 1 1 30%;
  padding: 1rem;
}

.pistolo-yowp6i .pistolo-szwude {
  color: var(--text-color);
  font-weight: 700;
}

.pistolo-yowp6i .pistolo-f289pd {
  color: var(--text-color);
  font-weight: 600;
}

.pistolo-yowp6i .pistolo-fp61ha {
  color: var(--button-text-color);
}

@media screen and (max-width: 768px) {
  .pistolo-yowp6i .pistolo-qpsjkj {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }
  .pistolo-yowp6i .pistolo-f289pd {
    font-size: 1rem;
  }
  .pistolo-yowp6i .pistolo-szwude {
    font-size: 0.875rem;
  }
  .pistolo-yowp6i .pistolo-qpsjkj img {
    flex: 1 1 auto;
  }
}

.pistolo-yowp6i .pistolo-n5umm7 {
  margin: 0.pistolo-vx7y12 0;
}

@media screen and (max-width: 1024px) {
  .pistolo-yowp6i,
  .pistolo-yowp6i .pistolo-y61lhm,
  .pistolo-4wx6ul {
    max-width: 100vw;
  }
}

@media screen and (max-width: 768px) {
  .pistolo-yowp6i ol li,
  .pistolo-yowp6i ul li {
    font-size: 1rem;
  }
}

.pistolo-db3lh5 {
  color: var(--text-color);
  text-align: center;
}

.pistolo-a3j8ut {
  margin: 2rem 0;
}

.pistolo-gmuqx2,
.pistolo-n6r1e5 {
  margin-bottom: 1rem;
}

.pistolo-gmuqx2 {
  background: var(--faq-bg-color);
  border: 1px solid var(--faq-border-color);
  border-radius: var(--faq-round);
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  height: auto;
  padding: 1rem 1rem 0.5rem;
  width: 100%;
}

.pistolo-gmuqx2.pistolo-g21em6 .pistolo-e60d5g {
  display: block;
}

.pistolo-gmuqx2.pistolo-g21em6 .pistolo-6g5z2j {
  transform: rotate(45deg);
}

.pistolo-7gs3zc {
  align-items: flex-start;
  border-bottom: 1px solid var(--faq-divider-color);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-bottom: 0.5rem;
}

.pistolo-6g5z2j {
  height: 1.5rem;
  min-width: 1.5rem;
  transition: 0.2s;
  will-change: transform;
}

.pistolo-e60d5g {
  display: none;
  padding-top: 1rem;
}

.pistolo-xwhfkl {
  align-items: center;
  aspect-ratio: 1/1;
  display: inline-flex;
  height: auto;
  justify-content: center;
  max-height: 100%;
  width: 4rem;
}

.pistolo-xwhfkl.pistolo-g21em6 {
  transform: scaleX(-1);
}

.pistolo-s85lmn {
  color: var(--icon-color);
}

@media screen and (min-width: 1025px) {
  .pistolo-5fg8jm {
    display: none;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--title-color);
}

.pistolo-kuzwqb {
  display: flex;
  align-items: center;
}

.pistolo-kuzwqb a {
  margin: 0 10px;
}

/* social */

.pistolo-1gkj3i {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0 -7px 48px;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .pistolo-1gkj3i {
    flex-wrap: wrap;
  }
}

.pistolo-1gkj3i li {
  display: flex;
  margin: 0 7px;
}

.pistolo-1gkj3i li svg {
  transition: 0.pistolo-4eyx6i ease-in-out;
}

@media only screen and (min-width: 1025px) {
  .pistolo-1gkj3i li:hover svg {
    transform: scale(1.2);
  }
}

/* faq */

.pistolo-6srkmu {
  margin-bottom: 2rem;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

.pistolo-cnoe34 {
  margin-left: auto;
  margin-right: auto;
  max-width: 1414px;
  padding: 0 15px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .pistolo-cnoe34 {
    max-width: 100%;
  }
}

.pistolo-wocp2v {
  margin: 0 auto;
  max-width: var(--seo-content-width);
}

.pistolo-wocp2v h2 {
  margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .pistolo-6srkmu,
  .pistolo-wocp2v {
    max-width: 100vw;
  }
}

.pistolo-dldvcu {
  margin-bottom: 10px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  user-select: none;
}

.pistolo-6vn874 {
  color: var(--text-color);
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 20px;
  font-weight: 500;
  background: var(--table-1-color);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.pistolo-4r9e5l ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pistolo-6vn874::after {
  content: "+";
  font-weight: bold;
  transition: transform 0.pistolo-4r9e5l ease;
}

.pistolo-dldvcu.pistolo-ymfe5r .pistolo-6vn874::after {
  transform: rotate(45deg);
}

.pistolo-vruh4q {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.pistolo-4eyx6i ease, padding 0.pistolo-4eyx6i ease;
  padding: 0 20px;
  background: var(--table-2-color);
}

.pistolo-dldvcu.pistolo-ymfe5r .pistolo-vruh4q {
  max-height: 200px;
  padding: 15px 20px;
}

/* review */

.pistolo-6p78dc {
  margin: 25px 0;
}

.pistolo-ja70o1 > input:not(:checked) ~ label:hover,
.pistolo-ja70o1 > input:not(:checked) ~ label:hover ~ label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.pistolo-ueyg7t.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23d8b11e' d='M121.pistolo-k7937w 44.pistolo-miily6.pistolo-qx5851.pistolo-3ve0cp.pistolo-mjx37i.pistolo-38hali.pistolo-1tsdpl.pistolo-h5o5jk.pistolo-y6mnr0.pistolo-3f6lkn.pistolo-rnwrdy.pistolo-k844yy.pistolo-vdi2xw 0l-12.pistolo-ga0yn0 30.pistolo-5f1m7l.pistolo-dq4gps 2.pistolo-jj3ppg.pistolo-dq4gps 3.pistolo-0y81t7 3.pistolo-7qkhjd.pistolo-g4qiqc 3.pistolo-ink7e2.pistolo-ejy26h.pistolo-mgkcee.pistolo-aesxef 7-3.pistolo-ga0yn0 10.pistolo-q1u1jl.pistolo-aesxef 23.pistolo-nnmq4i.pistolo-l7fw1s 1.pistolo-5u3ycb 2.pistolo-ga0yn0 3.pistolo-l7fw1s 1.pistolo-g4qiqc 5.pistolo-sjnc18.pistolo-g4qiqc 32.pistolo-74bunb.pistolo-ejy26h 5.pistolo-vdi2xw 4.pistolo-aesxef 9.pistolo-aesxef 8.pistolo-g4qiqc 6.pistolo-7zc8d2.pistolo-nny1u8.pistolo-29fvy1.pistolo-q5tihi.pistolo-ekpf4z 4.pistolo-251is2.pistolo-ekpf4z 6.pistolo-ekpf4z 0l29.pistolo-vdi2xw 17.pistolo-plepf8.pistolo-qaa8ew 2.pistolo-nx9wa3 10.pistolo-w2r04e.pistolo-ga0yn0 8.pistolo-1ww5yf.pistolo-m4hnxz.pistolo-nzic27.pistolo-2m7tck.pistolo-a7sz0o.pistolo-ejy26h.pistolo-38hali.pistolo-ga0yn0 1.pistolo-7x1fxe.pistolo-tu36jy.pistolo-7hjiyu.pistolo-dc2ihc.pistolo-elr2bd.pistolo-5u3ycb 1.pistolo-d9aajj.pistolo-a5bkae.5z'/%3e%3c/svg%3e");
}

.pistolo-jl2pb7 {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 -10px;
  gap: 20px 0;
  margin-top: 50px;
}

@media only screen and (max-width: 767px) {
  .pistolo-jl2pb7 {
    gap: 16px 0;
  }
}

.pistolo-ui481n {
  max-width: calc(33.33333% - 20px);
  width: 100%;
  flex-basis: calc(33.33333% - 20px);
  border-radius: 10px;
  padding: 24px;
  margin: 0 10px;
  background: var(--border-color);
}

.pistolo-ui481n.pistolo-u806o7 {
  display: block;
}

.pistolo-ui481n.pistolo-0f2h1j {
  display: none;
}

@media only screen and (max-width: 767px) {
  .pistolo-ui481n {
    max-width: 100%;
    flex-basis: auto;
    padding: 16px;
  }
}

.pistolo-tc7ngw {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.pistolo-se2kr4 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c2c0ce;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  margin-right: 10px;
  color: var(--fh-bg-color);
}

.pistolo-rqqj70 {
  content: "";
  position: absolute;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  padding: 1px;
  width: 18px;
  height: 18px;
  background-color: var(--fh-bg-color);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.pistolo-p6alw1 small {
  font-size: 14px;
  display: block;
  color: var(--text-color);
}

.pistolo-p6alw1 span {
  font-weight: 600;
  font-size: 16px;
  display: block;
  color: var(--text-color);
}

.pistolo-zt97tv {
  font-size: 16px;
  line-height: 140%;
}

.pistolo-454m9k {
  width: 88px;
  height: 16px;
  margin-bottom: 14px;
}

.pistolo-454m9k .pistolo-kpk71z {
  fill: #c2c0ce;
}

.pistolo-454m9k [rating="1"] .pistolo-kpk71z:not(:nth-child(n + 2)) {
  fill: #ffbe16;
}

.pistolo-454m9k [rating="2"] .pistolo-kpk71z:not(:nth-child(n + 3)) {
  fill: #ffbe16;
}

.pistolo-454m9k [rating="3"] .pistolo-kpk71z:not(:nth-child(n + 4)) {
  fill: #ffbe16;
}

.pistolo-454m9k [rating="4"] .pistolo-kpk71z:not(:nth-child(n + 5)) {
  fill: #ffbe16;
}

.pistolo-454m9k [rating="5"] .pistolo-kpk71z:not(:nth-child(n + 6)) {
  fill: #ffbe16;
}

review-send {
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--fh-bg-color);
  font-family: sans-serif;
}

.pistolo-gda3zl textarea {
  width: 100%;
  height: 80px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  resize: none;
  box-sizing: border-box;
  font-size: 18px;
}

.pistolo-gda3zl button {
  margin-top: 10px;
  padding: 8px 16px;
  background: var(--button-bg-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 576px) {
  table {
    word-break: break-all;
  }
}

.pistolo-hukh0y {
  text-align: center;
  color: var(--success-color);
}

.pistolo-cj6yjf {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 350px;
  width: 100%;
  height: 60px;
  font-size: 18px;
  font-weight: 600;
  color: var(--button-text-color);
  cursor: pointer;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  background: var(--button-bg-color);
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  margin: 25px auto;
}

.pistolo-fbwth7 table {
  width: 100%;
}

.pistolo-0viput {
  display: flex;
  justify-content: center;
}

.pistolo-sahcmh {
  background: linear-gradient(
    161deg,
    var(--fh-bg-color) 0%,
    var(--table-1-color) 90%
  );
}

.pistolo-ukimmr {
  position: relative;
  z-index: 1;
}

.pistolo-l72kib {
  position: relative;
  z-index: 2;
}

.pistolo-fzvptf {
  position: relative;
  z-index: 3;
}

.pistolo-qji80k {
  position: relative;
  z-index: 4;
}

.pistolo-2zvyfi {
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 20px;
  background: var(--fh-bg-color);
  color: var(--updated-block-color);
  border-left: 5px solid var(--button-bg-color);
  border-color: var(--border-color);
}
