@charset "UTF-8";
/*demo-item*/
.demo-box {
  margin-top: 40px;
}

.demo-item {
  position: relative;
}
.demo-item__wrap {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.demo-item__demo-btn {
  padding: 0px 40px;
  border-radius: 35px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
}
.demo-item__ref-btn {
  background: var(--global-palette-btn-bg);
  padding: 0px 40px;
  border-radius: 35px;
  color: var(--global-palette9);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 14px;
  text-decoration: none;
}
.demo-item__ref-btn:hover {
  background: var(--global-palette-btn-bg-hover);
  color: var(--global-palette9);
}
.demo-item__close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  z-index: 50;
}
.demo-item__close-btn::before, .demo-item__close-btn::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  background-color: red;
}
.demo-item__close-btn::after {
  transform: rotate(45deg);
}
.demo-item__close-btn::before {
  transform: rotate(-45deg);
}
.demo-item__wrap-btn {
  position: absolute;
  top: 10px;
  right: 70px;
  border: 1px solid rgb(0, 182, 0);
  width: 40px;
  height: 40px;
  z-index: 50;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.demo-item__wrap-btn::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 20px;
  background-color: rgb(0, 182, 0);
}
.demo-item iframe {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: none;
}
.demo-item iframe.active {
  opacity: 1;
  transform: translateY(0);
  display: block;
}
.demo-item.fade-out {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.demo-item__loader {
  width: 24px;
  height: 24px;
  margin: 40px auto;
  background-color: var(--global-palette-btn-bg);
  border-radius: 50%;
  animation: pulse 0.8s ease-in-out infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.demo-item.fullscreen {
  position: fixed;
  top: 140px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 80%;
  height: 100%;
  z-index: 9999;
  transition: all 0.4s ease;
}
.demo-item.fullscreen iframe {
  height: 680px;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}
/*count-box*/
.count-box__number {
  margin: 0 auto;
}

/*block-img-1*/
.block-img-1 img {
  border-radius: 14px;
}

/*btn-block*/
.btn-block {
  margin: 40px auto;
}
.btn-block .wp-block-button a.wp-block-button__link {
  border-radius: 35px !important;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

/*list-block*/
.list-block {
  margin-top: 60px;
}
.list-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-block ul li {
  font-weight: 700;
  line-height: 28px;
  padding-left: 24px;
  position: relative;
}
.list-block ul li:before {
  content: "";
  position: absolute;
  color: #ff9100;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8L7 11L12 5' stroke='%23FF9100' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.list-block ol {
  list-style: none;
  counter-reset: step;
  padding-left: 0;
}
.list-block ol li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 500;
  counter-increment: step;
  position: relative;
  padding-left: 70px;
}
.list-block ol li::before {
  content: counter(step);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #f5f5fa;
  color: #1c1c38;
  font-weight: 600;
  margin-right: 12px;
  font-size: 14px;
  left: 0;
  position: absolute;
}
.list-block ol li::after {
  content: "❯❯";
  color: #1c1c38;
  font-weight: bold;
  margin-left: 12px;
  font-size: 16px;
  position: absolute;
  left: 30px;
}

/*faq-wrapper*/
.faq {
  margin-top: 40px;
}
.faq__wrapper {
  margin-top: 30px;
}

/*FAQ*/
.faq__wrapper .rank-math-list-item {
  margin-bottom: 0;
}

.rank-math-list {
  padding: 24px;
  border-radius: 16px;
}

.rank-math-list-item {
  padding: 10px 20px;
  border-radius: 8px;
}

.rank-math-question {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.rank-math-question:hover {
  transition: all 0.3s ease;
}

.rank-math-question::after {
  content: url("../img/faq-icon.webp");
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.rank-math-question.active::after {
  transform: rotate(-90deg);
}

.rank-math-answer {
  opacity: 0;
  max-height: 0;
  transition: opacity 0.2s ease, height 0.4s ease;
}
.rank-math-answer p {
  max-height: 0;
}

.rank-math-show {
  opacity: 1;
  max-height: -moz-fit-content;
  max-height: fit-content;
  transition: opacity 0.2s ease, height 0.4s ease;
}
.rank-math-show p {
  max-height: -moz-fit-content;
  max-height: fit-content;
}

/*casino-box*/
.casino-box {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--global-palette7);
}
.casino-box__wrapper {
  width: 70%;
}
.casino-box__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 24px;
}
.casino-box__thumb {
  width: 30%;
}
.casino-box__card {
  width: 33%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 14px;
}
.casino-box__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.casino-box__img {
  width: 50px;
}
.casino-box__title {
  margin-left: 20px;
}
.casino-box__text {
  text-align: center;
  margin-top: 24px;
  font-size: 18px;
  font-weight: 600;
}
.casino-box__btn {
  margin-top: 14px;
  max-width: 220px;
  width: 100%;
  height: 70px;
  border-radius: 14px;
  color: #000;
  background-color: #FB9F00;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}
.casino-box__btn:hover {
  background-color: #db7c00;
  color: #000;
}
.casino-box .block__title {
  padding-left: 14px;
}

/*secondary-menu*/
#secondary-menu .menu-item {
  background: var(--global-palette-btn-bg);
  padding: 5px 30px;
  border-radius: 35px;
  color: var(--global-palette9);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
#secondary-menu .menu-item a {
  padding: 0;
  text-align: center;
}

@media screen and (max-width: 992px) {
  .casino-box__card {
    width: 100%;
  }
  .casino-box__thumb {
    width: 50%;
  }
  .block__title {
    text-align: center;
  }
  .rank-math-question {
    font-size: 22px;
    padding-right: 36px;
  }
  .demo-item__demo-btn,
  .demo-item__ref-btn {
    width: auto;
    height: auto;
    padding: 0px 15px;
  }
}
@media screen and (max-width: 756px) {
  .demo-item.fullscreen {
    top: 60px;
    left: 0;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
    z-index: 9999;
    transition: all 0.4s ease;
  }
  .demo-item.fullscreen iframe {
    height: calc(100vh - 140px);
    width: calc(100vw - 40px);
    margin: 0 auto;
    border-radius: 14px;
  }
  .demo-item.fullscreen .demo-item__wrap-btn {
    right: 80px;
  }
  .demo-item.fullscreen .demo-item__close-btn {
    right: 30px;
  }
  .faq .wp-block-column:last-child {
    margin-top: -80px;
  }
}
@media screen and (max-width: 576px) {
  .casino-box {
    flex-wrap: wrap;
  }
  .casino-box__thumb {
    width: 100%;
  }
  .casino-box__wrapper {
    width: 100%;
  }
  .list-block ol {
    margin-left: 0;
  }
  .list-block ul li {
    margin-bottom: 14px;
  }
  .demo-item__wrap-btn {
    width: 25px;
    height: 15px;
    top: 15px;
    right: 55px;
  }
  .demo-item__wrap-btn::before {
    width: 15px;
    height: 10px;
  }
  .demo-item__close-btn {
    width: 25px;
    height: 25px;
  }
  .demo-item__close-btn::before, .demo-item__close-btn::after {
    width: 1px;
    height: 15px;
  }
  h1.has-text-align-left {
    text-align: center;
    font-size: 28px;
  }
  .casino-box__card {
    margin-bottom: 40px;
  }
  .casino-box .block__title {
    padding-left: 0;
  }
  .demo-item__demo-btn,
  .demo-item__ref-btn {
    width: auto;
    height: auto;
    padding: 5px 20px;
    font-size: 28px;
  }
  .rank-math-answer p {
    margin: 0px;
  }
  .site-branding a.brand img {
    max-width: 120px !important;
    height: auto !important;
  }
}
@media screen and (max-width: 480px) {
  .demo-item__demo-btn,
  .demo-item__ref-btn {
    font-size: 20px;
  }
  .rank-math-question {
    font-size: 18px;
  }
  .rank-math-answer p {
    margin: 5px;
  }
}