: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) {
  .bethall-7fbagg {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .bethall-68dvrw {
    display: none;
  }
}

.bethall-ci0c63 {
  background: var(--menu-color);
  border-radius: var(--border-radius-sm);
}

.bethall-k5bljt {
  overflow-y: hidden;
}

.bethall-qddqch {
  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;
  }
}

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

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

.bethall-id9llx,
body,
html {
  height: 100%;
}

.bethall-ogsehr {
  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;
}

.bethall-ogsehr.bethall-6i710p {
  display: block;
  max-width: var(--sidebar-width);
  transform: scaleX(var(--sidebar-width));
}

.bethall-8p4ofg {
  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%;
}

.bethall-8p4ofg.bethall-6i710p {
  margin-left: var(--sidebar-width);
  max-width: calc(100% - var(--sidebar-width));
}

.bethall-1cqd1p {
  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;
}

.bethall-1cqd1p.bethall-6i710p {
  margin-left: var(--sidebar-width);
  max-width: calc(100% - var(--sidebar-width));
  transform: scaleX(calc(100% - var(--sidebar-width)));
}

.bethall-1cqd1p.bethall-6i710p .bethall-3dvdo2 {
  display: none;
}

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

@media screen and (max-width: 1024px) {
  .bethall-1cqd1p,
  .bethall-8p4ofg {
    margin-left: 0;
    max-width: 100%;
  }
}

.bethall-ovca2j {
  background: var(--sidebar-bg-color);
  display: block;
}

.bethall-ovca2j.bethall-6i710p .bethall-3dvdo2 {
  display: inline-block;
}

.bethall-ovca2j.bethall-6i710p .bethall-35i2xx {
  display: flex;
}

.bethall-ovca2j.bethall-6i710p .bethall-ew7a87 {
  transform: translateY(0);
  visibility: visible;
}

.bethall-00e26z {
  align-items: center;
  background: var(--fh-bg-color);
  display: flex;
  height: var(--header-height);
  max-height: var(--header-height);
}

.bethall-ovca2j .bethall-3dvdo2 {
  display: none;
  margin: 0 auto;
  transform: translateX(calc(var(--header-height) * -1 / 2));
}

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

.bethall-35i2xx::-webkit-scrollbar {
  width: 0;
}

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

.bethall-jtvzik.bethall-6i710p {
  display: none;
}

.bethall-jsu78p {
  filter: var(--button-text-color);

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

.bethall-87lrkw {
  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;
}

.bethall-wb8rrk {
  max-width: 40px;
}

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

.bethall-aqpzwb svg {
  color: var(--success-color-light);
}

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

.bethall-5e4fva {
  border-top: 1px solid var(--divider-color);
}

@media (any-hover: hover) {
  .bethall-87lrkw:hover {
    background: var(--menu-color);
  }
}

@media screen and (max-width: 1024px) {
  .bethall-ovca2j {
    display: none;
  }
  .bethall-ovca2j: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;
  }
}

.bethall-mwzzxi {
  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%;
}

.bethall-ctfemi {
  max-width: 40px;
}

.bethall-tryfxx {
  font-size: 0.75rem;
  font-weight: 700;
}

.bethall-qmz2o0 {
  background: var(--fh-bg-color);
}

.bethall-sz1jbg,
.bethall-1bwbyn {
  align-items: center;
  display: flex;
}

.bethall-sz1jbg {
  gap: 0.5rem;
}

.bethall-1bwbyn {
  gap: 2rem;
  height: 100%;
  justify-content: space-between;
}

.bethall-qmz2o0 .bethall-3dvdo2 {
  margin-right: 2rem;
}

@media (max-width: 768px) {
  .bethall-1bwbyn {
    gap: 0rem;
    padding: 0;
  }

  .bethall-qmz2o0 .bethall-3dvdo2 {
    margin-right: 0rem;
  }
}

@media screen and (max-width: 768px) {
  .bethall-qmz2o0 .bethall-c5g0zx {
    display: none;
  }
  .bethall-g7l7md {
    font-size: 0.bethall-q27oza !important;
  }
  .bethall-qmz2o0 .bethall-3dvdo2 {
    max-width: 100px;
  }
}

.bethall-9q2339 svg {
  color: var(--icon-color);
}

@media screen and (max-width: 768px) {
  .bethall-9q2339 {
    display: none;
  }
}

.bethall-3dvdo2 {
  display: inline-block;
  max-width: 125px;
}

.bethall-5kv2jw {
  width: 100%;
}

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

.bethall-r9vhmb {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.bethall-ayzu5m,
.bethall-cj6a3g {
  cursor: pointer;
  background: var(--border-color);
  border-radius: 6px;
  transition: var(--transition-duration);
}

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

.bethall-ayzu5m: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;
}

.bethall-c5ony2 {
  font-size: 0.875rem;
  justify-content: center;
}

.bethall-ct0lqf,
.bethall-rxhsio {
  position: relative;
  z-index: 2;
}

.bethall-ct0lqf {
  max-width: 40px;
}

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

.bethall-2htk12:last-child:nth-child(odd) {
  grid-column: 1/-1;
}

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

.bethall-cj6a3g {
  padding: 0.5rem;
}

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

@media (any-hover: hover) {
  .bethall-ayzu5m:hover,
  .bethall-cj6a3g:hover {
    background: var(--border-color);
  }
}

.bethall-1n1vbo {
  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;
}

.bethall-b369ix {
  color: var(--button-text-color);
}

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

.bethall-tj95y0 .bethall-b369ix {
  color: var(--button-text-color);
}

.bethall-ke362l {
  padding: 0.bethall-z3u47d 0.625em;
  width: 100%;
}

.bethall-eknqwe {
  font-size: 0.875rem;
}

.bethall-pq3fo5 {
  background: var(--success-color);
  border-color: var(--success-color);
}

.bethall-pq3fo5 .bethall-b369ix,
.bethall-pq3fo5 svg {
  color: var(--button-text-color);
}

.bethall-92bp6b svg {
  color: var(--btn-text-color);
}

@media (any-hover: hover) {
  .bethall-1n1vbo:hover {
    background: var(--button-bg-hover);
    border-color: var(--button-bg-hover);
  }
  .bethall-tj95y0:hover {
    background: var(--btn-border-color-outline);
    border-color: var(--btn-border-color-outline);
  }
  .bethall-pq3fo5:hover {
    background: var(--success-color-light);
    border-color: var(--success-color-light);
  }
}

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

.bethall-c5g0zx {
  background: var(--border-color);
  display: inline-flex;
}

.bethall-c5g0zx,
.bethall-101grm {
  border-radius: var(--round-l);
}

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

.bethall-101grm span,
.bethall-101grm svg {
  color: var(--icon-color);
  transition: var(--transition-duration);
}

.bethall-2rkzm5 {
  background: var(--button-bg-color);
}

.bethall-2rkzm5 span,
.bethall-2rkzm5 svg {
  color: var(--button-text-color);
}

.bethall-cl36j7 {
  display: none;
  height: 0;
  margin: 0.bethall-mq5kw9 0 1rem;
  width: 0;
}

.bethall-cl36j7 .bethall-101grm {
  flex: 1 1 50%;
  justify-content: center;
}

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

@media (any-hover: hover) {
  .bethall-101grm:hover span,
  .bethall-101grm:hover svg {
    color: var(--text-color);
  }
}

.bethall-wg6xgr {
  height: 200px;
  min-height: 175px;
  overflow-y: hidden;
}

.bethall-z4ig88,
.bethall-jauvt6 {
  height: 100%;
}

.bethall-z4ig88 {
  overflow-x: auto;
}

.bethall-z4ig88::-webkit-scrollbar {
  width: 0;
}

.bethall-jauvt6 {
  display: flex;
  gap: 0.5rem;
  width: auto;
}

.bethall-5vjgvu {
  flex: 1 0 33%;
  max-width: 33%;
}

@media screen and (max-width: 1024px) {
  .bethall-wg6xgr {
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .bethall-wg6xgr {
    height: auto;
    min-height: auto;
  }
  .bethall-5vjgvu {
    flex: 1 0 100%;
  }
}

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

.bethall-zlgt67 {
  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) {
  .bethall-zlgt67 {
    gap: 0;
  }
}

.bethall-l4kivx {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

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

.bethall-mfra43 {
  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;
}

.bethall-qpl05c {
  color: var(--text-color);
}

.bethall-gmlq27 {
  font-size: 1rem;
  font-weight: 900;
  max-width: 200px;
}

@media (max-width: 1026px) {
  .bethall-gmlq27 {
    font-size: 16px;
  }
}

.bethall-mw1x0v {
  font-weight: 600;
}

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

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

.bethall-73caq1 {
  display: flex;
  gap: 1rem;
}

@media (any-hover: hover) {
  .bethall-lazbpz:hover .bethall-9tmjvp {
    color: var(--accent-color);
  }
}

.bethall-ystqiq {
  text-align: center;
}

.bethall-xzbtrr {
  margin: 2rem 0;
}

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

.bethall-7fufq4 {
  font-size: 2rem;
  font-weight: 700;
}

.bethall-psoaco {
  overflow-x: auto;
}

.bethall-psoaco::-webkit-scrollbar {
  width: 0;
}

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

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

.bethall-tkly37 {
  display: inline-flex;
  flex-direction: column;
  max-width: 208px;
}

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

.bethall-27vpyn {
  -o-object-fit: cover;
  object-fit: cover;
}

.bethall-tvpr6r,
.bethall-27vpyn {
  height: 100%;
  transition: var(--transition-duration);
  width: 100%;
}

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

.bethall-0rtyjm {
  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;
}

.bethall-5oeaw7 {
  color: var(--text-color-label);
  font-size: 0.75rem;
  font-weight: 500;
}

.bethall-gnj7ov {
  padding: 0.5rem;
}

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

.bethall-rtfzmd .bethall-27vpyn {
  height: 100%;
  max-height: 235px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.bethall-rtfzmd .bethall-xqrsfq {
  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%;
}

.bethall-rtfzmd .bethall-5oeaw7 {
  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;
}

.bethall-rtfzmd .bethall-7u8byy {
  height: 100%;
  margin-bottom: 0;
  max-height: 235px;
  max-width: 175px;
  width: 100%;
}

.bethall-rtfzmd .bethall-tvpr6r {
  display: none;
}

@media (any-hover: hover) {
  .bethall-tkly37:hover .bethall-tvpr6r {
    opacity: 1;
  }
  .bethall-tkly37:hover .bethall-27vpyn {
    transform: scale(1.1);
    will-change: transform;
  }
}

.bethall-4jfqo0 {
  padding: 2rem 0;
}

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

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

.bethall-p8y7be {
  font-size: 0.75rem;
  font-weight: 600;
}

.bethall-w3dqli {
  color: var(--footer-text-color);
}

.bethall-q6onbp {
  font-size: 1.25rem;
  font-weight: 600;
}

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

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

.bethall-4ojymv {
  transition: var(--transition-duration);
}

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

.bethall-4jfqo0 .bethall-mwzzxi {
  margin-top: 0;
  max-width: 150px;
}

@media (any-hover: hover) {
  .bethall-q7j5cz:hover .bethall-4ojymv {
    color: var(--footer-text-color);
  }
}

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

.bethall-rmprok {
  margin-bottom: 2rem;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

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

.bethall-qx8c6z p img {
  display: block;
  margin: 0 auto;
}

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

.bethall-rmprok h1,
.bethall-rmprok h2 {
  margin-top: 2rem;
}

.bethall-rmprok h3,
.bethall-rmprok h4 {
  margin-top: 1rem;
}

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

.bethall-rmprok p {
  margin-top: 1rem;
}

.bethall-rmprok li {
  margin-left: 2.5rem;
  margin-top: 0.5rem;
}

.bethall-rmprok ol li,
.bethall-rmprok ul li {
  font-size: 1rem;
}

.bethall-rmprok ul li {
  list-style-type: disc;
}

.bethall-rmprok .bethall-51gq0m {
  max-width: 100%;
  overflow-x: scroll;
}

.bethall-rmprok .bethall-51gq0m::-webkit-scrollbar {
  height: 5px;
}

.bethall-rmprok .bethall-51gq0m::-webkit-scrollbar-thumb {
  background-color: var(--menu-color);
  border-radius: 20px;
}

.bethall-rmprok .bethall-51gq0m::-webkit-scrollbar-track {
  background: transparent;
}

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

.bethall-rmprok table {
  margin: 1rem 0;
}

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

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

.bethall-rmprok td {
  padding: 1rem 2rem 1rem 1rem;
  text-align: center;
}

.bethall-rmprok th {
  padding: 1rem 4rem 1rem 1rem;
}

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

.bethall-rmprok img {
  display: inline-block;
  margin: 1rem 0;
}

.bethall-rmprok .bethall-tkly37 img,
.bethall-rmprok .bethall-se2j08 img {
  margin: 0;
}

.bethall-rmprok .bethall-tkly37 {
  border: 2px solid var(--menu-color);
  border-radius: var(--round-base);
  overflow-x: hidden;
}

.bethall-rmprok .bethall-xqrsfq {
  padding: 0.5rem;
}

.bethall-rmprok .bethall-0rtyjm {
  color: var(--text-color);
}

.bethall-rmprok .bethall-se2j08 {
  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%;
}

.bethall-rmprok .bethall-77wqhc {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.bethall-rmprok .bethall-se2j08 img {
  flex: 1 1 50%;
  height: auto;
  min-height: 150px;
}

.bethall-rmprok .bethall-3o3mgy {
  height: 100%;
  min-width: 160px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.bethall-rmprok .bethall-i5dnzt {
  flex: 1 1 30%;
  padding: 1rem;
}

.bethall-rmprok .bethall-doynru {
  color: var(--text-color);
  font-weight: 700;
}

.bethall-rmprok .bethall-yrei89 {
  color: var(--text-color);
  font-weight: 600;
}

.bethall-rmprok .bethall-47ht5i {
  color: var(--button-text-color);
}

@media screen and (max-width: 768px) {
  .bethall-rmprok .bethall-se2j08 {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }
  .bethall-rmprok .bethall-yrei89 {
    font-size: 1rem;
  }
  .bethall-rmprok .bethall-doynru {
    font-size: 0.875rem;
  }
  .bethall-rmprok .bethall-se2j08 img {
    flex: 1 1 auto;
  }
}

.bethall-rmprok .bethall-1n1vbo {
  margin: 0.bethall-8iv74f 0;
}

@media screen and (max-width: 1024px) {
  .bethall-rmprok,
  .bethall-rmprok .bethall-4kslaa,
  .bethall-qx8c6z {
    max-width: 100vw;
  }
}

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

.bethall-itu3gs {
  color: var(--text-color);
  text-align: center;
}

.bethall-2x3k8d {
  margin: 2rem 0;
}

.bethall-skhf7j,
.bethall-s1bfxs {
  margin-bottom: 1rem;
}

.bethall-skhf7j {
  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%;
}

.bethall-skhf7j.bethall-6i710p .bethall-nwv5g2 {
  display: block;
}

.bethall-skhf7j.bethall-6i710p .bethall-mfo5zh {
  transform: rotate(45deg);
}

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

.bethall-mfo5zh {
  height: 1.5rem;
  min-width: 1.5rem;
  transition: 0.2s;
  will-change: transform;
}

.bethall-nwv5g2 {
  display: none;
  padding-top: 1rem;
}

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

.bethall-h3fjqu.bethall-6i710p {
  transform: scaleX(-1);
}

.bethall-pmxufx {
  color: var(--icon-color);
}

@media screen and (min-width: 1025px) {
  .bethall-lsfguh {
    display: none;
  }
}

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

.bethall-tyfm2b {
  display: flex;
  align-items: center;
}

.bethall-tyfm2b a {
  margin: 0 10px;
}

/* social */

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

@media only screen and (max-width: 767px) {
  .bethall-o5gz19 {
    flex-wrap: wrap;
  }
}

.bethall-o5gz19 li {
  display: flex;
  margin: 0 7px;
}

.bethall-o5gz19 li svg {
  transition: 0.bethall-l1w491 ease-in-out;
}

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

/* faq */

.bethall-hyhbhg {
  margin-bottom: 2rem;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

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

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

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

.bethall-curw9b h2 {
  margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .bethall-hyhbhg,
  .bethall-curw9b {
    max-width: 100vw;
  }
}

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

.bethall-gdz9r3 {
  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.bethall-g471zj ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bethall-gdz9r3::after {
  content: "+";
  font-weight: bold;
  transition: transform 0.bethall-g471zj ease;
}

.bethall-hiuqag.bethall-d4te8v .bethall-gdz9r3::after {
  transform: rotate(45deg);
}

.bethall-01crzj {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.bethall-l1w491 ease, padding 0.bethall-l1w491 ease;
  padding: 0 20px;
  background: var(--table-2-color);
}

.bethall-hiuqag.bethall-d4te8v .bethall-01crzj {
  max-height: 200px;
  padding: 15px 20px;
}

/* review */

.bethall-axyzfp {
  margin: 25px 0;
}

.bethall-1jml3i > input:not(:checked) ~ label:hover,
.bethall-1jml3i > input:not(:checked) ~ label:hover ~ label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.bethall-gtfwsy.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23d8b11e' d='M121.bethall-euiscb 44.bethall-e71pb3.bethall-r3ntpo.bethall-sgjmhq.bethall-ii1s39.bethall-unfiff.bethall-csk07h.bethall-82umw2.bethall-1pjf1h.bethall-lqa984.bethall-8ymhbk.bethall-j1w2t9.bethall-0wn1gj 0l-12.bethall-bmcn2x 30.bethall-xix6xr.bethall-bip9d6 2.bethall-i2fv7u.bethall-bip9d6 3.bethall-7kw5o9 3.bethall-gojpe1.bethall-4ptmif 3.bethall-h9y3r5.bethall-83ugh6.bethall-u1jdzi.bethall-gq5qi0 7-3.bethall-bmcn2x 10.bethall-f19ej8.bethall-gq5qi0 23.bethall-f1dy1y.bethall-aznh73 1.bethall-2pwjco 2.bethall-bmcn2x 3.bethall-aznh73 1.bethall-4ptmif 5.bethall-z9otve.bethall-4ptmif 32.bethall-fg6ti1.bethall-83ugh6 5.bethall-0wn1gj 4.bethall-gq5qi0 9.bethall-gq5qi0 8.bethall-4ptmif 6.bethall-cjlh2l.bethall-dcexbg.bethall-e88kfh.bethall-j9ukcw.bethall-rox7gm 4.bethall-y9c5jx.bethall-rox7gm 6.bethall-rox7gm 0l29.bethall-0wn1gj 17.bethall-fv8pnn.bethall-p072a5 2.bethall-v9o58z 10.bethall-b2c6vz.bethall-bmcn2x 8.bethall-j1he7i.bethall-9byb6i.bethall-erz2jb.bethall-9a7z81.bethall-mwu06u.bethall-83ugh6.bethall-unfiff.bethall-bmcn2x 1.bethall-8pe2v5.bethall-nr1gha.bethall-vxee7a.bethall-v5rfmn.bethall-vpko1n.bethall-2pwjco 1.bethall-7gl97p.bethall-50k3bj.5z'/%3e%3c/svg%3e");
}

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

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

.bethall-tl5nrw {
  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);
}

.bethall-tl5nrw.bethall-idk1ko {
  display: block;
}

.bethall-tl5nrw.bethall-touk4c {
  display: none;
}

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

.bethall-qtnzj0 {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.bethall-2sgbo8 {
  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);
}

.bethall-ym34ug {
  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;
}

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

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

.bethall-zphqb0 {
  font-size: 16px;
  line-height: 140%;
}

.bethall-mqhs9h {
  width: 88px;
  height: 16px;
  margin-bottom: 14px;
}

.bethall-mqhs9h .bethall-22b17k {
  fill: #c2c0ce;
}

.bethall-mqhs9h [rating="1"] .bethall-22b17k:not(:nth-child(n + 2)) {
  fill: #ffbe16;
}

.bethall-mqhs9h [rating="2"] .bethall-22b17k:not(:nth-child(n + 3)) {
  fill: #ffbe16;
}

.bethall-mqhs9h [rating="3"] .bethall-22b17k:not(:nth-child(n + 4)) {
  fill: #ffbe16;
}

.bethall-mqhs9h [rating="4"] .bethall-22b17k:not(:nth-child(n + 5)) {
  fill: #ffbe16;
}

.bethall-mqhs9h [rating="5"] .bethall-22b17k: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;
}

.bethall-m97dff 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;
}

.bethall-m97dff 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;
  }
}

.bethall-ajqbi2 {
  text-align: center;
  color: var(--success-color);
}

.bethall-g61cyt {
  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;
}

.bethall-51gq0m table {
  width: 100%;
}

.bethall-lu39j0 {
  display: flex;
  justify-content: center;
}

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

.bethall-l4kivx {
  position: relative;
  z-index: 1;
}

.bethall-mfra43 {
  position: relative;
  z-index: 2;
}

.bethall-qpl05c {
  position: relative;
  z-index: 3;
}

.bethall-om33ii {
  position: relative;
  z-index: 4;
}

.bethall-ub8loy {
  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);
}
