@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
  font-size: 20px;
}

body {
  font-family: "Roboto Flex", sans-serif;
  font-style: normal;
  font-weight: 400;
  background-color: #061e2d;
  color: #ffffff;
  background-position: center 50px;
  background-repeat: no-repeat;
  background-size: 100%;
}

.biggie {
  font-family: "Roboto Flex", sans-serif;
  font-style: normal;
  font-weight: 400;
  background-color: #061e2d;
  color: #ffffff;
  background-image: url(../images/bg.png);
  background-position: center 50px;
  background-repeat: no-repeat;
  background-size: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: "Roboto Flex", sans-serif;
}

p {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.3;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #ffffff;
}

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

.wrapper {
  max-width: calc(100% - 20px);
  margin-left: auto;
  margin-right: auto;
}

/* NavMenu  */

.navMenu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  max-width: 1150px;
  margin: auto;
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  cursor: pointer;
  margin-left: 24px;
  margin-top: 20px;
  z-index: 1001; /* Ensure the burger menu is above the header */
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease-in-out;
}

/* Header  */
.header-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #125785;
  color: #fff;
  height: 40px;
  gap: 24px;
}

.header-disclaimer p {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

header.header-main {
  height: 60px;
  padding: 0 24px;
  background: #22315b;
  font-family: Roboto, sans-serif;
  position: relative;
  z-index: 1000;
  display: flex;
}

.header-logo img {
  max-width: 150px;
  height: auto;
}

.header-main .wrapper {
  max-width: calc(100% - 40px);
}

.header-main ul {
  display: flex;
  font-family: Roboto, sans-serif;
  gap: 36px;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}
@media screen and (max-width: 1150px) {
  .header-main ul {
    gap: 20px;
  }
}

.header-main ul li a {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 126.8%;
}

@media (max-width: 1050px) {
  .burger-menu {
    display: flex;
  }

  .header-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .navMenu {
    padding-bottom: 10px;
  }

  .header-main ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    background: #024285;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow-y: scroll;
    gap: 10px;
    padding-bottom: 20px;
  }

  .header-main ul.show {
    display: flex;
    max-height: 300px; /* Adjust as needed */
    opacity: 1;
  }

  .header-main ul li {
    margin: 0;
    padding: 12px 0;
    text-align: center;
  }

  .header-main ul li a {
    font-size: 18px;
  }
  .burger-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger-menu.open span:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .header-disclaimer p {
    font-size: 9px;
  }
}

/* Sub-header  */

.sub-header_container {
  color: #f7f7fd;
  position: relative;
  text-align: center;
}

.sub-header_txt h1 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 7px;
  margin-top: 0.5em;
}

.sub-header_txt p {
  max-width: 768px;
  font-size: 0.6875em;
  line-height: 1.277777777777778;
  color: #efeefd;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  margin-bottom: 1em;
}

/* Offers  */

.offer-logo img {
  width: -moz-fit-content;
  width: fit-content;
}

.offer-btn {
  /* margin-left: auto;
  margin-right: auto; */
  margin-right: 2.25em;
  display: grid;
}
.offer-btn a {
  transition: transform 0.4s ease-in-out;
}
.offer-btn a:hover {
  transform: scale(1.05);
}

.offer-btn:hover:before {
  left: 0;
}

.offer-btn:hover:after {
  left: calc(100% - 35px);
}

.min-deposit {
  text-align: center;
}

@keyframes play {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.operators-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  margin-left: auto;
}

.operator-item {
  display: flex;
  position: relative;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 1.3em;
  border-radius: 10px 2.5em 0 2.5em;
  min-height: 7em;
}

.operator-item .border {
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: -2px;
  left: -2px;
  border-radius: 4px 4px 4px 4px;
  z-index: -1;
}

span + .operator-item {
  margin-top: 0;
}

.operator-item + span {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.222222222222222;
  letter-spacing: 0em;
  text-align: center;
  margin-top: 6px;
  margin-bottom: 8px;
  color: #ffffff80;
}

.operator-item + span a {
  text-decoration: underline;
  color: #ffffff80;
}

.operator-item__inner {
  display: flex;
  position: relative;
  width: 100%;
  background: #18284c;
  /* padding: 1.25em 2.25em; */
  border-radius: 0px 0px 0px 0px;
  justify-content: space-between;
  column-gap: 10px;
  background: #18284c;
}

.operator-item__inner .number {
  position: absolute;
  right: calc(100% + 1em);
  color: #0d4b6c;
  text-align: center;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.33);
  font-size: 2em;
  font-weight: 600;
  top: 50%;
  transform: translateY(-50%);
}

.operator-item__inner .ribbon {
  top: 0;
  left: 0;
}

.operator-item__inner .ribbon.right {
  right: -1px;
  left: unset;
  border-radius: 0 10px 0 10px;
  top: -1px;
  background-color: #0036c0;
}

.operator-item__inner .offer-bonus {
  text-align: center;
  position: relative;
  max-width: 7.8em;
}

.operator-item__inner .offer-bonus .bonus {
  color: #fff;
  text-align: center;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.01em;
  text-transform: capitalize;
}

.operator-item__inner .offer-rating {
  text-align: center;
  position: relative;
}

.operator-item__inner .offer-rating .rating {
  color: #4078fe;
  text-align: center;
  font-size: 1.4em;
  font-weight: 800;
  line-height: 71.429%;
}

.operator-item__inner.expanded .offer-rating {
  padding-top: 20px; /* Adjust as needed */
}

.operator-item__inner.expanded .offer-btn {
  padding-top: 20px; /* Adjust as needed */
}

.operator-item__inner .min-deposit {
  color: #fff;
  text-align: center;
  font-size: 0.7em;
  font-style: normal;
  font-weight: 400;
  line-height: 142.857%;
  margin-top: 0.33em;
}

/* .min-deposit__text {
  color: #C7C8F6;
} */

.operator-item__inner .offer-btn .play-now-btn {
  font-size: 16px;
  font-weight: 800;
  line-height: 133.333%;
  text-align: center;
  margin: 0 auto;
  background: linear-gradient(180deg, #03a55e 0%, #08c564 100%);
  border-radius: 6px;
  color: #fff;
  text-transform: uppercase;
  padding: 0.447em 2.478em;
  text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
}

.operator-item__inner .offer-btn .promocode.play-now-btn {
  background: transparent;
  border: 1px solid #d1d5dd;
  color: #d1d5dd;
  font-weight: 500;
  letter-spacing: 4px;
  margin-top: 0.5em;
  line-height: 1;
  position: relative;
}

.operator-item__inner .offer-btn .promocode.play-now-btn input {
  display: none;
}

.tooltiptext {
  visibility: hidden;
  width: 115px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 6px;
  position: absolute;
  z-index: 1;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;

  font-size: 10px;
  letter-spacing: normal;
}

.tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.operator-item__inner .offer-btn .promocode.play-now-btn:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.offers-inner-container > .wrapper {
  position: relative;
  z-index: 1;
}

.offers-inner-container::after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: hard-light;
}

.operator-item__inner > * {
  display: grid;
  align-content: center;
}

.operator-item__inner .offer-logo {
  justify-content: center;
  background-color: #081661;
  padding: 1.15em;
  width: 12.35em;
  border-bottom-left-radius: 2.5em;
  border-top-left-radius: 10px;
}

.operator-item__inner .offer-logo img {
  max-width: 100%;
  width: 100%;
  object-fit: contain;
}

.ribbon {
  display: block;
  position: absolute;
  border-radius: 0px 0 10px 0;
  background-color: #ec9d04;
  overflow: visible;

  z-index: 10;
  padding: 6px 13px;

  color: #fff;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  font-size: 0.6em;
  font-style: normal;
  font-weight: 700;
}

.operator-item__inner .offer-rating {
  padding: 0 1em;
}

.offers-inner-container {
  padding: 1.5em 0;
}

/* Popup */
.popup {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

.popup-underlay {
  background: rgba(6, 12, 31, 0.66);
  backdrop-filter: blur(4.5px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.popup-body {
  max-width: calc(100% - 20px);
  position: relative;
  width: 100%;
  z-index: 2;
  box-shadow: 0px 5px 33px 0px rgba(255, 138, 0, 0.6);
  border-radius: 7px;
  /* border: 1px solid #08C9E3; */
  background: linear-gradient(106deg, #101f33 20.75%, #151b2c 92.41%);
}

.popup-body .border {
  background: linear-gradient(86.2deg, #fcd400 0%, #ec9d04 100%);
  position: absolute;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  z-index: -1;
  border-radius: 7px;
}

/* .popup-body__inner {
  overflow: hidden;
} */

.close-popup-btn {
  transform: rotate(45deg);
  font-size: 1.5em;
  color: #7477bf;
  cursor: pointer;
  border: none;
  position: absolute;
  z-index: 9;
  background: transparent;
  font-weight: 100;
  right: 10px;
}

.popup-logo-cover {
  display: block;
  margin: 0 auto 1px;
  position: relative;
}

.popup-logo-cover .img-con {
  width: calc(100% - 0px);
  min-height: 140px;
  background: linear-gradient(106deg, #0f213c 20.75%, #171e33 92.41%);
  border-radius: 7px 7px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
}

.popup-logo-cover img {
  display: block;
  margin: 0 auto;
}

.popup .offer-buttons .get-bonus {
  margin: 10px 0 30px;
}

.popup-button-cover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(106deg, #101f33 20.75%, #151b2c 92.41%);
  border-radius: 0 0 7px 7px;
}

/* .popup .offer-buttons {
  margin-bottom: 1em;
} */

.popup .offer-buttons a {
  position: relative;
  left: 0%;
  text-decoration: none;
  top: auto;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: fit-content;
  letter-spacing: 0em;
  min-width: 8.4em;
  text-shadow: 1px 2px 10px #00000040;
  display: block;
  font-size: 0.9em;
  font-weight: 800;
  line-height: 133.333%;
  text-align: center;
  text-transform: capitalize;
  background: linear-gradient(180deg, #03a55e 0%, #08c564 100%);
  border-radius: 10px;
  color: #fff;
  padding: 0.447em 2.478em;
}

.popup-button-cover .welcome-bonuses {
  font-size: 20px;
  text-align: center;
  font-weight: 300;
  line-height: 1.2;
  max-width: 80%;
  margin: 21px auto 16px;
  text-transform: capitalize;
}

/* Rating stars */
.average-rating {
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  color: transparent;
  width: auto;
  display: inline-block;
  vertical-align: baseline;
  font-size: 1.2em;
  margin-top: 0.1em;
}

.average-rating::before {
  content: "★★★★★";
  position: relative;
  transform: translateX(-50%);
  color: #fff;

  -webkit-background-clip: text;
  background-clip: text !important;
  -webkit-text-fill-color: transparent;
}

.average-rating.s-1::before {
  --percent: 2%;
  background: linear-gradient(
    90deg,
    #fcd400 var(--percent),
    #fff var(--percent)
  );
}

.average-rating.s-2::before {
  --percent: 40%;
  background: linear-gradient(
    90deg,
    #fcd400 var(--percent),
    #fff var(--percent)
  );
}

.average-rating.s-3::before {
  --percent: 60%;
  background: linear-gradient(
    90deg,
    #fcd400 var(--percent),
    #fff var(--percent)
  );
}

.average-rating.s-3_5::before {
  content: "★★★★★";
  --percent: 70%;
  background: linear-gradient(
    90deg,
    #fcd400 var(--percent),
    #fff var(--percent)
  );
}

.average-rating.s-4::before {
  --percent: 80%;
  background: linear-gradient(
    90deg,
    #fcd400 var(--percent),
    #fff var(--percent)
  );
}

.average-rating.s-4_5::before {
  content: "★★★★★";
  --percent: 90%;
  background: linear-gradient(
    90deg,
    #fcd400 var(--percent),
    #fff var(--percent)
  );
}

.average-rating.s-5::before {
  content: "★★★★★";
  --percent: 100%;
  background: linear-gradient(
    90deg,
    #fcd400 var(--percent),
    #fff var(--percent)
  );
}

.average-rating + hr {
  height: 0.5px;
  border: none;
  background-color: #fff;
  margin-top: 6px;
}

/* Offers header */
.offers-header {
  color: #fff;
  font-size: 0.8em;
  position: relative;
  background: linear-gradient(180deg, #1d2e61 0%, #18284c 100%);
  border-radius: 0 1.5em;
}

.offers-header__inner {
  display: flex;
  align-items: center;
  min-height: 3.125em;
}

.offers-header .header-item {
  width: 100%;
  text-align: center;
  font-weight: 600;
  line-height: 1;
}

.offers-header .header-item:last-of-type {
  /* border: none; */
}

.offers-header .header-item.top {
  flex: 1;
}

.offers-header .header-item.welcome {
  flex: 1;
}

.offers-header .header-item.rating {
  flex: 1;
}

.offers-header .header-item.payment {
  flex: 1;
}

.offers-header .header-item.play {
  flex: 1;
}

/* Payments Block */
.payments-block {
  display: grid;
  grid-template-columns: repeat(6, 22px);
  align-items: center;
  justify-content: center;
  gap: 4px;
  /* padding: 13px 7px 7px; */
  overflow: hidden;
  max-height: 25px;

  transition: max-height 0.4s ease-out;
}

.mobile-payments {
  display: flex;
  align-items: center;
  padding: 13px 7px 13px;
}

.payments-block.open {
  max-height: 500px;
  transition: max-height 0.3s ease-in;
}

.payments-block + svg {
  cursor: pointer;
  margin: 0 auto;
  display: block;
}

.payment-svg .chevron {
  transform-origin: center;
  transition: rotate 0.4s ease-out;
}

.payments-block.open + .payment-svg .chevron {
  rotate: 180deg;
}

.payments-block .img-block {
  width: 22px;
  height: 22px;
}

.payments-block .img-block img {
  max-width: 100%;
}

/* Secure icons */

.secure-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  row-gap: 0.5em;
  flex-wrap: wrap;
  column-gap: 50px;
  margin-top: 0;
}

.secure-icons .icon-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.secure-icons .icon-flex .text {
  font-size: 0.6666666666666667em;
  color: #c1c1c3;
  line-height: 1.166666666666667;
}

.secure-icons .icon-flex .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FAQ */

.faq {
  max-width: 100%;
  margin-top: 1.55em;
  text-align: center;
}

.faq h2 {
  color: #fff;
  font-size: 1.6em;
  font-weight: 700;
  line-height: 195%;
  text-align: center;
  margin-bottom: 0.84375em;
}

.faq .faq-tab {
  padding: 1.1em 1.5em;
  margin-bottom: 1em;
  border-radius: 1rem;
  border: 1px solid#04b160;
  background: #1c2b5a;
}

.faq .faq-tab button {
  background-color: transparent;
  border: none;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  padding: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 2em;
  cursor: pointer;

  color: #e3e4ff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.027rem;
}

.faq .faq-tab button:focus {
  border: none;
  outline: none;
}

.faq .faq-tab button .icon {
  max-width: 1.333333333333333em;
  height: 1.333333333333333em;
  background: #04b160;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 1.333333333333333em;
}

.faq .faq-tab button .icon svg {
  margin-top: 2px;
  transform-origin: center;
  transition: all 0.4s ease-in;
}

.faq .faq-tab .content {
  letter-spacing: 0em;
  text-align: left;
  max-width: 85.3%;
  padding-top: 1.2em;
  display: none;
  overflow: hidden;
  border-top: 1px solid #543660;
  margin-top: 1em;
  color: rgba(255, 255, 255, 0.66);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.question.is-open .plus {
  display: none;
}

.faq .faq-tab button.is-open .icon .minus {
  display: block;
}

.faq .faq-tab .question.is-open svg {
  transform: rotate(180deg) translateX(-1px);
  margin-top: 0;
}

/* Why  */
.why {
  background: #18284c;
  /* padding: 2rem 1rem; */
}

.why .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2rem;
  padding-top: 2rem;
}
.whyTitle {
  padding-bottom: 30px;
}

.why-row {
  display: grid;
  grid-template-columns: 10.45em 1fr;
  gap: 2.05em;
  border-radius: 16px;
  background: #14203b;
  align-items: center;
  padding: 21px;
  max-width: 1077px;
  /* height: 226px; */
  flex: 1 1 50%;
}

.why-col.image {
  display: flex;
  justify-content: center;
}

.why-row + .why-row {
  margin-top: 1.85em;
}

.why h2 {
  color: #fff;
  font-size: 1.6em;
  font-weight: 700;
  line-height: 56.25%;
  text-transform: capitalize;
  text-align: center;
}

.why h3 {
  color: #fff;
  font-style: normal;
  font-weight: 700;
  line-height: 90%;
  text-transform: uppercase;
  margin-bottom: 1.6em;
}

.why p {
  color: #f5f5f5;
  font-size: 0.75em;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.why img {
  max-width: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .why-row {
    flex-direction: column;
  }

  .why-col {
    flex: 1 1 100%;
  }

  .why h2,
  .why h3 {
    font-size: 1.5rem;
  }

  .why p {
    font-size: 1rem;
  }
  .header-logo img {
    max-width: 100px;
  }
}

@media (max-width: 1024px) {
  .header-logo img {
    max-width: 7rem;
  }
}

@media (max-width: 480px) {
  /* .why {
    padding: 1rem;
  } */

  .why h2,
  .why h3 {
    font-size: 1.25rem;
  }

  .why p {
    font-size: 0.9rem;
    text-align: center;
  }
  .why h3 {
    text-align: center;
  }
  .privacy-links {
    padding: 21px 10px 0;
  }
  .footer-logo {
    max-width: 162px !important;
  }
}

/* Bonuses */

.bonuses h2,
.bonuses h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.166666666666667;
  letter-spacing: 0em;
  margin-bottom: 16px;
}

.bonuses {
  margin-top: 50px;
  background: #131420;
  padding: 1.1em;
}

.bonus__text {
  color: #fff;
  text-align: center;
  font-size: 0.9em;
  font-style: normal;
  font-weight: 400;
  line-height: 155.556%;
  text-transform: capitalize;
  margin-top: 0.7em;
  display: block;
}

.bonuses_inner .column {
  background-color: #1b1c2d;
  border-radius: 11.21px;
  padding: 1.1em;
  height: auto;
}

.bonuses_inner .column h3 {
  font-family: Inter;
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-align: center;
  margin-top: 1rem;
}

.bonuses_inner .text p {
  margin: 0 auto;

  font-size: 0.8em;
  font-weight: 400;
  text-align: center;
  line-height: 1.25;
  color: #c7c8f6a8;
}

/* Footer */

.page-footer {
  width: 100%;
  padding: 0em 0 1.85em;
  margin-top: 1.65em;
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer-container {
  max-width: 800px; /* Center the content with a max-width */
  margin: 0 auto;
  padding: 0 30px;
}

.footer-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  min-height: 10px;
  margin-bottom: 1em;
}

.privacy-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1.5em;
  justify-content: center;
  margin-bottom: 1em;
}

.privacy-links ul li a {
  color: #e0e0fe;
  text-decoration: none;
  font-size: 16px;
}

.footer-container p {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin-top: 1.2em;
}

.page-footer .copyright {
  color: #e0e0fe;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7em;
  font-weight: 300;
  margin-top: 1.5em;
}

.reg h2,
.footer-container h2 {
  color: #fff;
  font-size: 1.6em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.4em;
}

.regulations-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.7em;
  margin-bottom: 0.8em;
  flex-wrap: wrap;
}

.regulations-icons img {
  height: 40px;
}

.footer-nav {
  font-size: 0.7em;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
}

.footer-nav a + a {
  margin-left: 3em;
}

.content-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  flex-wrap: wrap;
  /* row-gap: 24px; */
}

.av-games {
  width: 100%;
  transition: padding 0.4s ease-in;
}

@media (min-width: 790px) {
  .av-games {
    flex: 1 0 100%;
  }
}

.av-games .av-games-content {
  /* display: flex; */
  gap: 20px;
  align-items: center;
  /* padding-left: 1em; */
  padding-left: 10px;
  /* padding-top: 20px;
  padding-bottom: 12px; */
  /* transition: all 0.4s ease-in-out; */
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;

  display: none;
}

/* .av-games.is-open { */
/* padding-top: 20px; */
/* padding-bottom: 12px;
  max-height: 500px;
} */

.av-games > span,
.av-games-content > span {
  font-family: Roboto Flex;
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
  text-align: left;
  text-transform: uppercase;
}

.av-games .section-togle {
  font-family: Roboto Flex;
  font-size: 10px;
  font-weight: 300;
  text-align: center;
  position: absolute;
  right: 11px;
  bottom: 7px;
  cursor: pointer;
}

.av-games .section-togle svg {
  transform-origin: center;
  transform: rotate(180deg);
  transition: transform 0.6s ease-in-out;
}

.av-games.is-open .section-togle svg {
  transform: rotate(0deg);
}

.av-games li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.av-games li span {
  font-family: Roboto Flex;
  font-size: 10px;
  font-weight: 300;
  text-align: left;
  text-transform: capitalize;
}

.av-games ul {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  align-items: center;
}

@media screen and (max-width: 920px) {
  /* body {
    background: linear-gradient(180deg, #111725 0%, #1e3157 85.75%);
  } */
}

.desktop {
  display: flex;
  flex-direction: column;
}

.mobile {
  display: none;
}

.mobile .operators-list span + .operator-item {
  margin-top: 0;
}

@media (max-width: 718px) {


  .desktop {
    display: none;
  }

  .icon-flex.desktop-only {
    display: none;
  }

  .mobile {
    display: flex;
    flex-direction: column;
  }

  .l-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
    max-width: 42%;
  }

  .r-side {
    max-width: 56%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  }

  .offer-btn {
    margin: 0;
  }

  .operator-list {
    width: 100%;
    margin: 0;
    position: relative;
  }

  .operator-item__inner {
    background-color: transparent;
  }

  .operator-item__inner .offer-logo {
    background-color: transparent;
    max-height: 90px;
    height: 100%;
  }

  .operator-item__inner .offer-logo img {
    height: 100%;
  }

  .offer-logo {
    max-width: 160px;
  }

  .bonus__text {
    font-size: 12px;
  }



  .why-row {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }
  .why img {
    max-width: 93px;
  }

  .img-block img {
    /* width: 105px;
    height: 105px; */
  }

  .why h3 {
    margin-bottom: 10px;
  }

  .payment-svg {
    display: none;
  }

  .show-more-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 9px;
    background-color: transparent;
    border: none;
    color: inherit;
  }

  .operator-item__inner {
    padding: 7px 0;
    background: #18284c;
  }

  .av-games ul {
    padding-top: 4px;
  }

  .operator-item__inner .offer-logo {
    padding: 0 1.15em 12px;
  }

  .operator-item__inner .min-deposit {
    font-size: 12px;
  }
}

.av-games.is-open {
  padding-bottom: 10px;
}

@media (max-width: 718px) {
  .title-flex {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
  }
}
@media (min-width: 700px) {
  .header-main .wrapper {
    max-width: 60%;
  }

  .wrapper {
    max-width: 1137px;
  }

  .popup-body {
    max-width: 400px;
  }

  .sub-header_txt p {
    font-size: 0.9em;
  }

  .operator-item__inner .offer-btn .play-now-btn {
    font-size: 18px;
  }

  .payments-block .img-block {
    width: 27px;
    height: 27px;
  }

  .payments-block {
    grid-template-columns: repeat(3, 27px);
    gap: 11px 8px;
    padding: 0.75em 1em;

    max-height: 90px;
  }

  .av-games {
    display: flex;
  }

  .operator-item__inner {
    column-gap: 25px;
  }

  .av-games {
    padding-left: 1em;
  }

  .av-games.is-open {
    padding-top: 20px;
  }

  .av-games ul {
    gap: 20px;
  }

  .operator-item + span {
    font-size: 0.6428571428571429em;
  }

  .faq .faq-tab button {
    font-size: 0.9em;
  }

  .faq .faq-tab .content {
    font-size: 0.8em;
  }

  .reg h2 {
    margin-bottom: 2.40625em;
  }

  .footer-container p {
    font-size: 0.8em;
  }
}
@media (max-width: 700px) {
  .sub-header_txt h1 {
    font-size: 21px;
  }

  .title-flex {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
  }

  .offers-inner-container > .wrapper {
    max-width: 100%;
  }

  .sub-header_txt p {
    display: none;
  }

  .offers-inner-container {
    padding-top: 0;
  }

  .operator-item {
    margin-top: 12px;
  }
}

@media (max-width: 500px) {
  .secure-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .secure-icons .icon-flex .text {
    font-size: 10px;
  }
}

.stars-container {
  position: relative;
  display: inline-block;
  color: transparent;
  font-size: 20px;
  margin-bottom: 0.5rem;
}

.stars-container:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "★★★★★";
  color: #d3d3d3;
}

.stars-container:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "★★★★★";
  color: #ffcb0f;
  overflow: hidden;
}

.star-100:after {
  width: 100%;
}

.star-95:after {
  width: 95%;
}

.star-90:after {
  width: 90%;
}

.star-85:after {
  width: 85%;
}

.star-80:after {
  width: 80%;
}

.star-75:after {
  width: 75%;
}

.star-70:after {
  width: 70%;
}

.star-65:after {
  width: 65%;
}

.star-60:after {
  width: 60%;
}

.star-55:after {
  width: 55%;
}

.star-50:after {
  width: 50%;
}

.star-40:after {
  width: 40%;
}

.star-45:after {
  width: 45%;
}

.star-35:after {
  width: 35%;
}

.star-30:after {
  width: 30%;
}

.star-25:after {
  width: 25%;
}

.star-20:after {
  width: 20%;
}

.star-15:after {
  width: 15%;
}

.star-10:after {
  width: 10%;
}

.user-rating {
  font-family: inherit;
  font-size: 14px;
  padding-bottom: 4px;
}
a.visit.site {
  color: #ff8a00;
  text-align: center;
  font-family: "Roboto Flex";
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px;
  text-decoration-line: underline;
  padding-top: 5px;
}

.faq.with-background {
  background-image: url(../images/image7.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px;
  color: #fff; /* Adjust text color as needed for contrast */
}

/* General FAQ section styling */
#faq.with-background {
  background-image: url(../images/image7.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 20px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Heading styling */
#faq h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
}

/* FAQ content wrapper */
.wrapper-faq {
  max-width: 1200px;
  width: 100%;
}

.faq .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
}
/* FAQ tab styling */
.faq-tab {
  background-color: rgba(0, 0, 50, 0.7); 
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* FAQ tab hover effect */
.faq-tab:hover {
  background-color: rgba(0, 0, 50, 0.9);
}

/* Question button styling */
.faq-tab .question {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 10px;
  cursor: pointer;
}

/* Icon styling */
.faq-tab .icon svg {
  fill: #00ff66;
  transition: transform 0.3s ease;
}

/* Rotate icon on expand */
.faq-tab.active .icon svg {
  transform: rotate(180deg);
}

/* Content styling */
.faq-tab .content {
  display: none;
  font-size: 1rem;
  line-height: 1.5;
  padding: 10px 0 0;
}

/* Show content when active */
.faq-tab.active .content {
  display: block;
}

/* Responsive grid layout */
@media (max-width: 768px) {
  .wrapper-faq {
    grid-template-columns: 1fr; /* Stack on smaller screens */
  }
}

div#lg {
  background: linear-gradient(
    180deg,
    rgba(8, 41, 63, 0) 0%,
    rgba(21, 31, 53, 0.66) 76.5%
  );
  position: absolute;
  top: 0;
  left: 0;
  /* width: 100vw; */
  height: 200vh;
  z-index: 0;
}

section#faq {
  z-index: 2;
  position: relative;
}

.footer-logo {
  display: flex;
  justify-content: center;
  max-width: 237px;
}

.privacy-links {
  width: 100%;
  margin: 0 auto;
  padding: 50px 10px 0;
  box-sizing: border-box;
}

.privacy-links ul {
  width: 80%;
  font-size: 14px;
  padding: 0;
  font-weight: 500;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
}

.privacy-links ul li a {
  color: #fff;
}

.privacy-links ul li a:hover {
  text-decoration: underline;
  color: #21ffac;
}

.privacy-links p {
  color: #fff;
  text-align: justify;
  font-size: 14px;
  line-height: 20px;
  width: 80%;
  margin: auto;
}

@media (max-width: 656px) {
  .privacy-links ul {
    flex-direction: column;
    text-align: center;
    row-gap: 10px;
  }

  .privacy-links {
    padding-left: 10px;
    padding-right: 10px;
  }

  .privacy-links p {
    font-size: 12px;
  }
}

img#footerimg {
  padding-top: 18px;
}

.offers-container__title h2 {
  text-align: center;
  text-transform: capitalize;
  margin: 17px 20px 0px;
  font-size: 30px;
}

.operators-list .offers-container__title:first-of-type {
  display: none;
}

/* @media (max-width: 1181px) {
  .operator-item__inner .content-flex {
    display: flex;
    justify-content: space-around;
    padding-top: 7px;
    font-size: 19px;
  }
  .operator-item__inner .offer-btn {
    display: grid;
    margin-right: unset;
  }
  .operator-item__inner .offer-btn .play-now-btn {
    font-size: 10px;
  }
} */
.content-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000; /* Ensure it sits above other content */
  border-radius: 8px;
  text-align: center;
}

.content-overlay h2 {
  color: #333;
  margin-bottom: 10px;
}

.content-overlay p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.legal-section {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, 0.5) 80%,
      rgb(6, 30, 45)
    ),
    url(../images/bg.png);
  background-color: rgba(0, 0, 0, 0.6);
  background-size: cover;
  background-position: center;
  color: white;
  padding: 56px 112px;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-content h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Additional global styles for consistent spacing and fonts may be added as needed */
/* Menu  */
.nav-bar nav ul {
  display: flex;
  gap: 2%;
  transition: all 0.4s ease-in-out;
  justify-content: end;
}

.nav-bar a {
  color: #fff;
}

.nav-bar a:hover {
  color: #21ffac;
  text-decoration: underline;
}
.nav-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.nav-bar ul {
  width: 80%;
  font-size: 14px;
  padding: 1rem 0rem;
  font-weight: 500;
  margin: auto;
  display: flex;
  justify-content: space-around;
}
.nav-bar li {
  font-size: 16px;
}

.menu-toggle {
  text-align: right;
}

#hamburger {
  width: 40px;
}

.oc-1 .offer-cover.glow {
  box-shadow: 1px 1px 20px rgb(255, 220, 111);
}

@media (min-width: 1161px) {
  #hamburger {
    display: none;
  }
}

@media (max-width: 1160px) {
  #hamburger {
    z-index: 9;
    position: relative;
  }

  .nav-bar nav ul {
    background: #fff;
    position: fixed;
    left: -100%;
    top: 38px;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    z-index: 7;
    padding: 100px 22px 20px;
    justify-content: start;
  }

  .nav-bar nav ul.open {
    left: 0;
  }

  .header-logo {
    z-index: 9;
  }
}

@media (max-width: 529px) {
  .sub-header li {
    flex: 1 0 45%;
    justify-content: center;
  }
}

.offer-rate {
  text-align: center;
}

.header-disclamer {
  width: 100%;
  padding: 4px 20px;
  box-sizing: border-box;
  text-align: center;
  font-size: 14px;
  color: #c5c5c5;
  background-color: #1a1664;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.header-disclamer img {
  max-height: 30px;
}

@media screen and (max-width: 680px) {
  .header-disclamer {
    font-size: 8px;
    padding: 6px 10px 3px;
  }
}

.footer-bar {
  background-color: #212121;
  color: white;
  padding: 20px 0;
  text-align: center;
  font-size: 16px;
  border-top: 3px solid #c00;
  border-bottom: 3px solid #c00;
}

.nav-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 auto;
  gap: 18px;
}

.header-main .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  max-width: 1150px;
  margin: auto;
}

.header-legal .wrapper {
  display: flex !important;
  position: initial;
  align-items: center;
  width: auto;
  justify-content: center;
}

header.header-legal {
  background-color: #22315b;
  min-height: 50px;
  height: 100%;
}

.legal-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 10px 0;
  color: #ffffff;
}

.legal-content ul li {
  margin-bottom: 5px;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 400;
}

.legal-content ul li::marker {
  color: #ffd700;
}

.legal-content h1,
.legal-content h2 {
  color: #ffffff;
  font-weight: 700;
  margin-top: 20px;
}

.legal-content p {
  color: #ffffff;
  line-height: 1.6;
}

@media (max-width: 1050px) {
  .header-main ul.show {
    display: flex;
    max-height: 300px;
    opacity: 1;
  }
}


@media (max-width: 801px) {
  .faq .grid {
    display: flex;
    gap: 3px;
    width: 100%;
    max-width: 1203px;
    flex-direction: column;
  }
  .faq .faq-tab button {
    font-size: 17px;
  }
}

/* cookies popup*/
.cookies-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #125785;
  color: #fff;
  z-index: 999;
  display: none;
  justify-content: center;
  padding: 10px 20px;
}

.cookies-popup a {
  color: inherit;
  text-decoration: underline;
}

.cookies-popup .confirm-cookie {
  margin-left: 20px;
  cursor: pointer;
  background-color: #07BD63;
  font-size: 18px;
  padding: 2px;
  color: white;
  border: blue;
}

@media (max-width: 458px) {
  .cookies-popup p {
    font-size: 12px;
  }
}


/*Age popup */
.popup-age .popup-body {
  background-color: #333; 
  color: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  margin: auto;
  text-align: center;
}

.popup-age .popup-underlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.popup-age .checkbox-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.popup-age .custom-checkbox {
  position: relative;
  padding-right: 10px;
}

.popup-age .custom-checkbox input[type="checkbox"] {
  display: none;
}

.popup-age .custom-checkbox .checkmark {
  width: 20px;
  height: 20px;
  background-color: #f0f0f0;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
}

.popup-age .custom-checkbox input:checked + .checkmark {
  background-color: #EC9D04; 
}

.popup-age .agree-terms {
  color: white;
  font-size: 14px;
}

.popup-age .agree-terms a {
  color: #EC9D04; 
  text-decoration: underline;
}

.popup-age #checkboxErrorMsg {
  color: #ff4d4d;
  font-size: 12px;
  margin-top: 5px;
}

.popup-age .popup-buttons-cover {
  margin-top: 20px;
}

.popup-age .popup-btns {
  background-color: #072D47;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 5px;
}

.popup-age .popup-btns:hover {
  background-color: #EC9D04; 
}

/* Legal pages in mobile*/

@media (max-width: 801px) {
  .legal-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-content p,
  .legal-content h2 {
    align-self: flex-start;
  }
  .legal-section {
    padding: 14px 14px;
  }
}