.promo-section {
  margin-bottom: 15px;
  padding: 30px;
  border-radius: 10px;
  /* &__conteiner {

  }

  &__content {

  } */
}
@media (max-width: 767px) {
  .promo-section {
    padding: 20px;
  }
}
.promo-section--fill {
  background: linear-gradient(rgb(126, 9, 24), rgb(139, 18, 33) 32.29%, rgb(118, 17, 38));
}
.promo-section--border {
  border: 1px solid rgb(126, 9, 24);
}
.promo-mobile {
  text-align: center;
}
.promo-mobile__title {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: bold;
}
.promo-mobile__content p {
  margin: 0 0 30px;
  font-size: 18px;
}
.promo-mobile__content ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .promo-mobile__content ul {
    flex-direction: column;
  }
}
.promo-mobile__content ul li {
  text-transform: uppercase;
  white-space: nowrap;
}
.promo-mobile__content ul li .reflink_2 span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.promo-mobile__content ul li .reflink_2 span:before {
  width: 24px;
  height: 24px;
  content: "";
}
.promo-mobile__content ul li:first-child .reflink_2 span:before {
  background: url(/wp-content/uploads/2025/05/android.svg) 0 0 no-repeat;
}
.promo-mobile__content ul li:last-child .reflink_2 span:before {
  background: url(/wp-content/uploads/2025/05/ios.svg) 0 0 no-repeat;
}
.promo-opportunities__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.promo-opportunities__content li {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .promo-opportunities__content li {
    flex-direction: column;
  }
}
.promo-opportunities__content li img {
  width: 120px;
  height: auto;
}
.promo-opportunities__content li strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}
.promo-opportunities__content li p {
  margin: 0;
  font-size: 18px;
}
.promo-benefits {
  text-align: center;
}
.promo-benefits__title {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: bold;
}
.promo-benefits__content {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .promo-benefits__content {
    flex-direction: column;
  }
}
.promo-benefits__content li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.promo-benefits__content li img {
  width: 120px;
  height: 120px;
  vertical-align: top;
}
.promo-benefits__content li strong {
  font-size: 18px;
}

.faqSection {
  position: relative;
}
.faqSection .contentWrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1250px;
  margin: auto;
}
.faqSection .contentWrapper .titleContainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  justify-content: center;
}
.faqSection .contentWrapper .titleContainer .title {
  font-weight: 700;
  font-size: 24px;
}
.faqSection .contentWrapper .questionsBlock {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.faqSection .contentWrapper .questionsBlock .collapseBlock {
  width: 100%;
  margin-bottom: 5px;
  border-radius: 10px;
  background: rgba(231, 219, 219, 0.1019607843);
}
.faqSection .contentWrapper .questionsBlock .collapseBlock .top {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  height: auto;
}
.faqSection .contentWrapper .questionsBlock .collapseBlock .top .btn {
  position: relative;
  right: 0;
  left: 0;
  width: 100%;
  color: #fff;
  text-align: left;
  font-size: 16px;
  height: auto;
  border-radius: 10px;
  padding: 12px 48px 12px 20px;
  border: 0 !important;
  background: none;
  cursor: pointer;
}
.faqSection .contentWrapper .questionsBlock .collapseBlock .top .btn:hover {
  background: #2a2a2a;
}
.faqSection .contentWrapper .questionsBlock .collapseBlock .top .after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  transition: all 0.3s;
  pointer-events: none;
  fill: #fff;
}
.faqSection .contentWrapper .questionsBlock .collapseBlock .top .after svg {
  width: 100%;
  height: 100%;
}
.faqSection .contentWrapper .questionsBlock .collapseBlock .collapse {
  height: auto;
  max-height: 1000px;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 16px;
}
.faqSection .contentWrapper .questionsBlock .collapseBlock .collapse:not(.open) {
  max-height: 0;
}
.faqSection .contentWrapper .questionsBlock .collapseBlock .collapse .collapseContent {
  padding: 15px 20px;
  color: #fff;
}
.faqSection .contentWrapper .questionsBlock .collapseBlock.open {
  border-color: #d1021b;
}
.faqSection .contentWrapper .questionsBlock .collapseBlock.open .top {
  border-radius: 10px 10px 0 0;
}
.faqSection .contentWrapper .questionsBlock .collapseBlock.open .top .after {
  transform: translateY(-50%) rotate(-180deg);
}
.faqSection .contentWrapper .desktopCta {
  display: none;
}
.faqSection .contentWrapper .desktopCta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.faqSection .contentWrapper .mobileCta {
  display: inline-flex;
  width: 100%;
  margin-top: 15px;
}
.faqSection .contentWrapper .mobileCta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media (min-width: 1201px) {
  .faqSection .contentWrapper {
    flex-direction: row;
    gap: 60px;
  }
}
@media (max-width: 1100px) {
  .faqSection .contentWrapper .titleContainer .title {
    font-size: 32px;
  }
}
@media (max-width: 1200px) {
  .faqSection .contentWrapper .titleContainer {
    margin-bottom: 20px;
  }
}
@media (min-width: 1201px) {
  .faqSection .contentWrapper .desktopCta {
    display: inline-flex;
  }
}
@media (min-width: 1201px) {
  .faqSection .contentWrapper .mobileCta {
    display: none;
  }
}
/* .homeSection {
    margin-bottom: 15px;
    padding: 30px;
    border-radius: 5px;

    &.vipSection,
    &.faqSection {
        padding: 0;
    }

    button {
        color: #fff;
        background-color: initial;
        border: 0;
        outline: none !important
    }

    a {
        color: #00c8e6
    }

    a:hover {
        color: #79a6f8
    }

    a:active, a:focus {
        outline: none !important
    }

    p {
        margin-top: 0;
        margin-bottom: 1rem
    }

    svg {
        overflow: hidden;
        vertical-align: middle
    }

    img {
        vertical-align: middle;
        border-style: none
    }

    .title {
        margin-bottom: .5rem;
        font-weight: 500;
        line-height: 1.2
    }

    .icon {
        display: inline-block;
        width: 1em;
        height: 1em;
        fill: currentColor;
        stroke: currentColor;
        stroke-width: 0
    }

    .btn {
        align-items: center;
        height: 40px;
        padding: 6px 30px;
        color: #ffffff;
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        // background: linear-gradient(180deg, #11e6ed, #00a5e6);
        background: #ef8b5b;
        // background: linear-gradient(180deg, #11e6ed, #00a5e6);
        border: 1px solid transparent;
        border-radius: 5px;
        outline: none !important;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

    .btn:hover {
        border-color: #c46c40;
        background: #c46c40;
    }

    .btn:not(.btnLight).btnTransparent, .btn:not(.btnLight).btnTransparent:not(.disabled):hover {
        background: transparent
    }

    .btn:not(.btnLight).btnTransparent {
        color: #7d8a98
    }

    .btn:not(.btnLight).btnTransparent:hover {
        color: #fff
    }
}




.contentWrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden
}

@keyframes animateCard1 {
    4% {
        transform: translate3d(-50%, 200%, 0);
        z-index: 4;
        opacity: 1
    }
    4.1% {
        transform: translate3d(-50%, 200%, 0);
        z-index: -1;
        opacity: 0
    }
    5% {
        transform: translate3d(-50%, -80%, -300px);
        z-index: -1;
        opacity: 0
    }
    5.1% {
        transform: translate3d(-50%, -80%, -300px);
        z-index: 1;
        opacity: 1
    }
    7% {
        transform: translate3d(-50%, -105%, -300px);
        z-index: 1;
        opacity: 1
    }
    25% {
        transform: translate3d(-50%, -105%, -300px);
        z-index: 1;
        opacity: 1
    }
    25.1% {
        transform: translate3d(-50%, -105%, -300px);
        z-index: 2;
        opacity: 1
    }
    29% {
        transform: translate3d(-50%, -80%, -200px);
        z-index: 2
    }
    50% {
        transform: translate3d(-50%, -80%, -200px);
        z-index: 2
    }
    50.1% {
        transform: translate3d(-50%, -80%, -200px);
        z-index: 3
    }
    54% {
        transform: translate3d(-50%, -55%, -100px);
        z-index: 3
    }
    75% {
        transform: translate3d(-50%, -55%, -100px);
        z-index: 3
    }
    75.1% {
        transform: translate3d(-50%, -55%, -100px);
        z-index: 4
    }
    79% {
        transform: translate3d(-50%, -30%, 0);
        z-index: 4
    }
    to {
        transform: translate3d(-50%, -30%, 0);
        z-index: 4
    }
}

@keyframes animateCard2 {
    4% {
        transform: translate3d(-50%, -30%, 0);
        z-index: 3
    }
    25% {
        transform: translate3d(-50%, -30%, 0);
        z-index: 3
    }
    25.1% {
        transform: translate3d(-50%, -30%, 0);
        z-index: 4
    }
    29% {
        transform: translate3d(-50%, 200%, 0);
        z-index: 4;
        opacity: 1
    }
    29.1% {
        transform: translate3d(-50%, 200%, 0);
        z-index: -1;
        opacity: 0
    }
    30% {
        transform: translate3d(-50%, -80%, -300px);
        z-index: -1;
        opacity: 0
    }
    30.1% {
        transform: translate3d(-50%, -80%, -300px);
        z-index: 1;
        opacity: 1
    }
    32% {
        transform: translate3d(-50%, -105%, -300px);
        z-index: 1;
        opacity: 1
    }
    50% {
        transform: translate3d(-50%, -105%, -300px);
        z-index: 1;
        opacity: 1
    }
    50.1% {
        transform: translate3d(-50%, -105%, -300px);
        z-index: 2;
        opacity: 1
    }
    54% {
        transform: translate3d(-50%, -80%, -200px);
        z-index: 2
    }
    75% {
        transform: translate3d(-50%, -80%, -200px);
        z-index: 2
    }
    79% {
        transform: translate3d(-50%, -55%, -100px);
        z-index: 3
    }
    to {
        transform: translate3d(-50%, -55%, -100px);
        z-index: 3
    }
}

@keyframes animateCard3 {
    4% {
        transform: translate3d(-50%, -55%, -100px);
        z-index: 2
    }
    25% {
        transform: translate3d(-50%, -55%, -100px);
        z-index: 2
    }
    25.1% {
        transform: translate3d(-50%, -55%, -100px);
        z-index: 3
    }
    29% {
        transform: translate3d(-50%, -30%, 0);
        z-index: 3
    }
    50% {
        transform: translate3d(-50%, -30%, 0);
        z-index: 3
    }
    50.1% {
        transform: translate3d(-50%, -30%, 0);
        z-index: 4
    }
    55% {
        transform: translate3d(-50%, 200%, 0);
        z-index: 4;
        opacity: 1
    }
    55.1% {
        transform: translate3d(-50%, 200%, 0);
        z-index: -1;
        opacity: 0
    }
    56% {
        transform: translate3d(-50%, -80%, -300px);
        z-index: -1;
        opacity: 0
    }
    56.1% {
        transform: translate3d(-50%, -80%, -300px);
        z-index: 1;
        opacity: 1
    }
    58% {
        transform: translate3d(-50%, -105%, -300px);
        z-index: 1;
        opacity: 1
    }
    75% {
        transform: translate3d(-50%, -105%, -300px);
        z-index: 1;
        opacity: 1
    }
    79% {
        transform: translate3d(-50%, -80%, -200px);
        z-index: 2
    }
    to {
        transform: translate3d(-50%, -80%, -200px);
        z-index: 2
    }
}

@keyframes animateCard4 {
    4% {
        transform: translate3d(-50%, -80%, -200px);
        z-index: 1
    }
    25% {
        transform: translate3d(-50%, -80%, -200px);
        z-index: 1
    }
    25.1% {
        transform: translate3d(-50%, -80%, -200px);
        z-index: 2
    }
    29% {
        transform: translate3d(-50%, -55%, -100px);
        z-index: 2
    }
    50% {
        transform: translate3d(-50%, -55%, -100px);
        z-index: 2
    }
    50.1% {
        transform: translate3d(-50%, -55%, -100px);
        z-index: 3
    }
    54% {
        transform: translate3d(-50%, -30%, 0);
        z-index: 3
    }
    75% {
        transform: translate3d(-50%, -30%, 0);
        z-index: 3
    }
    75.1% {
        transform: translate3d(-50%, -30%, 0);
        z-index: 4
    }
    80% {
        transform: translate3d(-50%, 200%, 0);
        z-index: 4;
        opacity: 1
    }
    80.1% {
        transform: translate3d(-50%, 200%, 0);
        z-index: -1;
        opacity: 0
    }
    81% {
        transform: translate3d(-50%, -80%, -300px);
        z-index: -1;
        opacity: 0
    }
    81.1% {
        transform: translate3d(-50%, -80%, -300px);
        z-index: 1;
        opacity: 1
    }
    83% {
        transform: translate3d(-50%, -105%, -300px);
        z-index: 1;
        opacity: 1
    }
    to {
        transform: translate3d(-50%, -105%, -300px);
        z-index: 1;
        opacity: 1
    }
}

.payWaysSection {
    background-color: #3228B3 !important;
    color: #fff;
}

.payWaysSection .payWaysContainer .payWaysContentWrapper {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    max-width: 1250px;
    min-height: 530px;
    margin: auto;
    overflow: hidden
}

@media (min-width: 768px) and (max-width: 900px) {
    .payWaysSection .payWaysContainer .payWaysContentWrapper {
        flex-direction: row;
        gap: 4rem;
        min-height: 430px
    }
}

.payWaysSection .payWaysContainer .payWaysContentWrapper .cardsContainer {
    aspect-ratio: 343/300;
    position: relative;
    width: 50%;
    height: auto;
    perspective: 600px
}

@media (max-width: 360px) {
    .payWaysSection .payWaysContainer .payWaysContentWrapper .cardsContainer {
        aspect-ratio: auto;
        height: 24rem
    }
}

@media (min-width: 768px) and (max-width: 900px) {
    .payWaysSection .payWaysContainer .payWaysContentWrapper .cardsContainer {
        height: auto;
        width: 50%
    }
}

.payWaysSection .payWaysContainer .payWaysContentWrapper .cardsContainer .card {
    position: absolute;
    width: 100%;
    max-width: 440px;
    top: 50%;
    left: 50%
}

.payWaysSection .payWaysContainer .payWaysContentWrapper .cardsContainer .card:nth-child(1) {
    z-index: 4;
    transform: translate3d(-50%, -30%, 0);
    animation: animateCard1 8s 2s infinite linear
}

.payWaysSection .payWaysContainer .payWaysContentWrapper .cardsContainer .card:nth-child(2) {
    z-index: 3;
    transform: translate3d(-50%, -55%, -100px);
    animation: animateCard2 8s 2s infinite linear
}

.payWaysSection .payWaysContainer .payWaysContentWrapper .cardsContainer .card:nth-child(3) {
    z-index: 2;
    transform: translate3d(-50%, -80%, -200px);
    animation: animateCard3 8s 2s infinite linear
}

.payWaysSection .payWaysContainer .payWaysContentWrapper .cardsContainer .card:nth-child(4) {
    z-index: 1;
    transform: translate3d(-50%, -105%, -300px);
    animation: animateCard4 8s 2s infinite linear
}

.payWaysSection .payWaysContainer .payWaysContentWrapper .cardsContainer .card .currencyImage {
    object-fit: cover;
    max-width: 880px;
    max-height: 538px;
    aspect-ratio: 1.63569/1;
    width: 100%
}

.payWaysSection .payWaysContainer .payWaysContentWrapper .textContainer {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: flex-start;
    justify-content: center;
    width: 50%;
    margin-bottom: 0
}

@media (min-width: 768px) and (max-width: 900px) {
    .payWaysSection .payWaysContainer .payWaysContentWrapper .textContainer {
        width: 50%;
        align-items: flex-start;
        margin-bottom: 0
    }
}

.payWaysSection .payWaysContainer .payWaysContentWrapper .textContainer .title {
    font-weight: 700;
    line-height: normal;
    text-align: left;
    font-size: 38px;
    color: #fff
}

@media (max-width: 1100px) {
    .payWaysSection .payWaysContainer .payWaysContentWrapper .textContainer .title {
        font-size: 32px
    }
}

.payWaysSection .payWaysContainer .payWaysContentWrapper .textContainer .title .titleSpan {
    margin-bottom: .25rem
}

.payWaysSection .payWaysContainer .payWaysContentWrapper .textContainer .description {
    font-weight: 400;
    text-align: left;
    font-size: 18px
}

.payWaysSection .payWaysContainer .payWaysContentWrapper .textContainer .btn {
    justify-content: center;
    display: inline-flex;
    position: relative;
    font-weight: 600;
    white-space: nowrap;
    width: auto;
    height: 40px;
    margin-top: 2rem
}

@media (max-width: 768px) {
    .payWaysContentWrapper {
        flex-direction: column-reverse !important;
        gap: 0 !important
    }

    .payWaysContentWrapper .textContainer {
        align-items: normal !important;
        width: 100% !important;
        margin-bottom: 1.5rem !important
    }

    .payWaysContentWrapper .cardsContainer {
        width: 100% !important
    }
}

.authenticatedWelcomeSection .welcomeWrapper .welcomeContentWrapper .cardWrapper .progressButton:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px
}

.vipSection {
    // background: #01025c;
}

.vipSection .contentWrapper {
    display: flex;
    flex-direction: column;
    place-content: center;
    max-width: 1250px;
    margin: auto;
    gap: 1.5rem
}

@media (min-width: 1200px) {
    .vipSection .contentWrapper {
        flex-direction: row;
        gap: 4rem
    }
}

.vipSection .contentWrapper .textContainer {
    display: flex;
    flex-direction: column;
    place-content: center;
    gap: .5rem
}

@media (min-width: 1200px) {
    .vipSection .contentWrapper .textContainer {
        max-width: 50%
    }
}

.vipSection .contentWrapper .textContainer .title {
    font-weight: 700;
    line-height: normal;
    text-align: left;
    font-size: 38px;
    // color: #fff
}

@media (max-width: 1100px) {
    .vipSection .contentWrapper .textContainer .title {
        font-size: 32px
    }
}

.vipSection .contentWrapper .textContainer .description {
    font-weight: 400;
    text-align: left;
    font-size: 18px
}

.vipSection .contentWrapper .textContainer .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    width: 100%;
    height: 40px;
}

@media (min-width: 1200px) {
    .vipSection .contentWrapper .textContainer .btn {
        max-width: max-content;
        width: auto
    }
}

.vipSection .contentWrapper .featuresContainer {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

@media (min-width: 1200px) {
    .vipSection .contentWrapper .featuresContainer {
        max-width: 50%
    }
}

.vipSection .contentWrapper .featuresContainer .featureItem {
    display: flex;
    flex-direction: row;
    padding: 16px;
    background-color: #3228B3;
    border-radius: 5px;
    color: #fff;
    gap: 18px
}

.vipSection .contentWrapper .featuresContainer .featureItem .featureIcon {
    max-width: 2.5rem
}

.vipSection .contentWrapper .featuresContainer .featureItem .featureTitle {
    font-weight: 700;
    text-align: left;
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 5px
}

.vipSection .contentWrapper .featuresContainer .featureItem .featureDescription {
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    font-size: 16px
}

.supportSection {
    background-color: #3228B3 !important;
    color: #fff;
    position: relative
}

.supportSection .supportContainer {
    display: flex;
    flex-direction: column-reverse;
    max-width: 1250px;
    margin: auto;
    overflow: hidden
}

.supportSection .supportContainer .contentWrapper {
    isolation: isolate;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1250px;
    margin: auto
}

@media (min-width: 1100px) {
    .supportSection .supportContainer .contentWrapper {
        flex-direction: row;
        gap: 3rem
    }
}

.supportSection .supportContainer .contentWrapper .textContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: .5rem;
    max-width: 568px
}

@media (max-width: 1100px) {
    .supportSection .supportContainer .contentWrapper .textContainer {
        max-width: none;
    }
}

.supportSection .supportContainer .contentWrapper .textContainer .title {
    font-weight: 700;
    line-height: normal;
    text-align: left;
    font-size: 38px;
}

@media (max-width: 1100px) {
    .supportSection .supportContainer .contentWrapper .textContainer .title {
        font-size: 32px
    }
}

.supportSection .supportContainer .contentWrapper .textContainer .description {
    font-weight: 400;
    text-align: left;
    font-size: 18px
}

.supportSection .supportContainer .contentWrapper .textContainer .btn {
    margin-top: 2rem;
    width: auto;
    height: 40px;
    text-align: center;
    box-sizing: border-box;
}

@media (max-width: 1199px) {
    .supportSection .supportContainer .contentWrapper .textContainer .btn {
        width: 100%;
        margin-bottom: 20px;
    }
}

.supportSection .supportContainer .contentWrapper .supportImage {
    max-width: 386px;
    margin: auto;
    padding: 0 1rem
}

@media (min-width: 640px) {
    .supportSection .supportContainer .contentWrapper .supportImage {
        padding: 0
    }
}

@media (min-width: 1100px) {
    .supportSection .supportContainer .contentWrapper .supportImage {
        margin-left: auto;
        margin-right: 0
    }
}

@media (max-width: 390px) {
    .supportSection .supportContainer .contentWrapper .supportImage {
        max-width: 275px
    }
}

.faqSection {
    // background: #01025c;
    position: relative
}

.faqSection .contentWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1250px;
    margin: auto
}

@media (min-width: 1201px) {
    .faqSection .contentWrapper {
        flex-direction: row;
        gap: 60px
    }
}

.faqSection .contentWrapper .titleContainer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    justify-content: center
}

.faqSection .contentWrapper .titleContainer .title {
    font-weight: 700;
    font-size: 38px;
}

@media (max-width: 1100px) {
    .faqSection .contentWrapper .titleContainer .title {
        font-size: 32px
    }
}

@media (max-width: 1200px) {
    .faqSection .contentWrapper .titleContainer {
        margin-bottom: 20px
    }
}

.faqSection .contentWrapper .questionsBlock {
    display: flex;
    flex-direction: column;
    width: 100%
}

.faqSection .contentWrapper .questionsBlock .collapseBlock {
    width: 100%;
    margin-bottom: 15px;
    // border: 1px solid #3428ba;
    // border: 1px solid #ffffff;
    border-radius: 6px
}

.faqSection .contentWrapper .questionsBlock .collapseBlock .top {
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    height: auto;
    background-color: #3228B3;
}

.faqSection .contentWrapper .questionsBlock .collapseBlock .top .btn {
    position: relative;
    right: 0;
    left: 0;
    width: 100%;
    color: #fff;
    text-align: left;
    height: auto;
    padding: 10px 30px 10px 10px;
    border: 0 !important;
}

.faqSection .contentWrapper .questionsBlock .collapseBlock .top .after {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    transition: all .3s;
    pointer-events: none;
    fill: #fff
}

.faqSection .contentWrapper .questionsBlock .collapseBlock .top .after svg {
    width: 100%;
    height: 100%
}

.faqSection .contentWrapper .questionsBlock .collapseBlock .collapse {
    height: auto;
    max-height: 1000px;
    overflow: hidden;
    transition: max-height .35s ease;
    font-size: 16px;
    background-color: #01025c
}

.faqSection .contentWrapper .questionsBlock .collapseBlock .collapse:not(.open) {
    max-height: 0
}

.faqSection .contentWrapper .questionsBlock .collapseBlock .collapse .collapseContent {
    padding: 15px 20px;
    color: #fff
}

.faqSection .contentWrapper .questionsBlock .collapseBlock.open .top {
    border-radius: 6px 6px 0 0
}

.faqSection .contentWrapper .questionsBlock .collapseBlock.open .top .btn {
    color: #fff;
    border-bottom: 1px solid #3428ba;
    border-radius: 6px 6px 0 0
}

.faqSection .contentWrapper .questionsBlock .collapseBlock.open .top .after {
    transform: translateY(-50%) rotate(-180deg)
}

.faqSection .contentWrapper .desktopCta {
    display: none
}

.faqSection .contentWrapper .desktopCta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1201px) {
    .faqSection .contentWrapper .desktopCta {
        display: inline-flex
    }
}

.faqSection .contentWrapper .mobileCta {
    display: inline-flex;
    width: 100%;
    margin-top: 15px
}

.faqSection .contentWrapper .mobileCta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media (min-width: 1201px) {
    .faqSection .contentWrapper .mobileCta {
        display: none
    }
}

.betsSection {
    // background: #030047 !important
}

@media (min-width: 900px) {
    .betsSection {
        padding-top: 3rem;
        padding-left: 2rem;
        padding-right: 2rem
    }
}

.betsSection .betsContainer {
    max-width: 1250px;
    margin: auto
}

.betsSection .betsHeader {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    text-align: center;
    margin-bottom: 30px
}

@media (max-width: 900px) {
    .betsSection .betsHeader {
        text-align: left
    }
}

.betsSection .title {
    font-weight: 700;
    font-size: 30px
}

.betsSection .subtitle {
    font-weight: 400;
    font-size: 18px
}

.betsSection .tableWrapper {
    overflow-x: auto;
    padding: 0 15px
}

.betsSection .table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #3228B3;
    border-radius: 5px;
    padding: 15px;
}

.betsSection .table th, .betsSection .table td {
    padding: 1rem;
    text-align: left;
    border: 0;
}

.betsSection .table th {
    font-weight: 600;
    color: #11e6ed;
    border-bottom: 1px solid #11e6ed
}

.betsSection .table td {
    color: #fff;
}

.betsSection .table tr:nth-child(2n) {
    background-color: #3f36c0
}

.betsSection .table thead tr th {
    width: 20%;
    height: 36px;
    color: #11e6ed;
    font-weight: 400;
    font-size: 11px;
    text-align: center;
    text-transform: uppercase;
    border-bottom: 1px solid #11e6ed
}

@media (max-width: 740px) {
    .betsSection .table thead tr th:nth-child(2) {
        display: none
    }
}

@media (max-width: 560px) {
    .betsSection .table thead tr th:nth-child(3) {
        display: none
    }
}

@media (max-width: 400px) {
    .betsSection .table thead tr th:nth-child(4) {
        display: none
    }
}

.betsSection .table thead tr th:first-child {
    text-align: left
}

.betsSection .table thead tr th:last-child {
    text-align: right
}

.betsSection .table thead tr th span {
    z-index: 1;
    color: #11e6ed;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    cursor: pointer
}

.betsSection .table tbody tr td {
    width: 20%;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: .2px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.betsSection .table tbody tr td:first-child {
    text-align: left
}

.betsSection .table tbody tr td:last-child {
    text-align: right
}

@media (max-width: 740px) {
    .betsSection .table tbody tr td:nth-child(2) {
        display: none
    }
}

@media (max-width: 560px) {
    .betsSection .table tbody tr td:nth-child(3) {
        display: none
    }
}

@media (max-width: 400px) {
    .betsSection .table tbody tr td:nth-child(4) {
        display: none
    }
}

.betsSection .table tbody tr td .game, .betsSection .table tbody tr td .name {
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: transform .1s ease-in-out;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.betsSection .table tbody tr td .game:active, .betsSection .table tbody tr td .name:active {
    transform: scale(.95)
}

.betsSection .table .currency {
    color: #73d94f
}

.betsSection .table .multiplier {
    font-weight: 600
}

.communitySection {
    background-color: #3228B3 !important
}

.communitySection .contentWrapper {
    gap: 4rem;
    flex-direction: row;
    max-width: 1250px;
    display: flex;
    margin: auto
}

@media (max-width: 1200px) {
    .communitySection .contentWrapper {
        gap: 2rem
    }
}

@media (max-width: 800px) {
    .communitySection .contentWrapper .right {
        max-width: 400px
    }
}

@media (max-width: 700px) {
    .communitySection .contentWrapper {
        flex-direction: column-reverse
    }

    .communitySection .contentWrapper .right {
        max-width: none
    }
}

.communitySection .contentWrapper .left {
    width: 100%;
    margin: auto
}

.communitySection .contentWrapper .left img {
    object-fit: cover;
    width: 100%;
    height: auto;
    display: block;
    -webkit-user-select: none;
    user-select: none
}

@media (min-width: 1200px) {
    .communitySection .contentWrapper .left {
        max-width: 600px
    }
}

.communitySection .contentWrapper .right {
    justify-content: center;
    flex-direction: column;
    display: flex
}

.communitySection .contentWrapper .right .title {
    font-size: 38px;
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center
}

@media (max-width: 1199px) {
    .communitySection .contentWrapper .right .title {
        font-size: 32px
    }
}

.communitySection .contentWrapper .right .subtitle {
    font-size: 18px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    margin-top: .5rem
}

.communitySection .contentWrapper .right .btn {
    margin-top: 2rem;
    width: auto;
    max-width: max-content
}

@media (max-width: 1199px) {
    .communitySection .contentWrapper .right .btn {
        width: 100%;
        max-width: 100%
    }
}

.category-tabs__item:focus-visible {
    outline-color: #fff
} */

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