body,
.body-overlay {
    background-color: #dfe8e9 !important;
}

p,
.text-theme {
    color: var(--theme-gradient) !important;
}

.highlight-text {
    color: var(--theme-secondary);
}

.button-primary img {
    transition: all 0.3s;
}

.button-primary:hover img {
    filter: invert();
}

.title--holder {
    background-color: var(--theme-gradient);
    padding: 10px 10px;
    width: 100%;
}

/* Banner */

.image-block {
    display: flex;
    flex-direction: column;
}

.sticky-block {
    position: sticky;
    top: 80px;
}

.image-block img {
    width: 100%;
    height: 100%;
}

.listing--block {
    color: var(--theme-gradient) !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* New Addon */

.mobile-exch-main-box {
    display: grid;
    width: 100%;
    gap: 20px;
    justify-content: space-between;
    grid-template-columns: repeat(4, 1fr);
}

.exch-coupon-card {
    width: 100%;
    height: 100%;
}

.mobile-exch-main-box .exch-coupon-card {
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
    height: 220px;
}

.exch-coupon-card img {
    height: 100%;
    width: 100%;
    border-radius: 4px;
}

/* Commentary BLock */

.commentary--block {
    border-radius: 15px;
    border: 3px solid var(--theme-gradient);
    width: 100%;
    height: 170px;
}

.commentary--block img {
    border-radius: 10px;
}

.new_launch {
    position: absolute;
    right: 25px;
    bottom: 20px;
    color: #fff;
    font-size: 10px;
    white-space: break-spaces;
    width: 40px;
    border-radius: 25px;
    text-align: center;
    line-height: 1;
    text-transform: capitalize;
    height: 40px;
    display: flex;
    align-items: center;
    font-weight: 900;
    animation: new_launch 3s linear infinite;
}

.commentary .new_launch {
    bottom: 10px;
    right: 10px;
}

@keyframes new_launch {
    0% {
        background: green;
        transform: scale(1);
    }
    50% {
        background: #003ea6;
        transform: scale(1.1);
    }
    100% {
        background: #a60003;
        transform: scale(1.2);
    }
}

/* Step Block */

.step--block {
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #000;
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s;
}

.step--block img {
    max-width: 90px;
}

.step--block:hover {
    transform: translateY(-5px);
    border-color: var(--theme-secondary);
}

.step--block.bonus-wrap {
    border: none;
    box-shadow: 0px 5px 2px #409d284d;
}

.step--block.bonus-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 2px var(--theme-secondary);
}

/* App Block */

.app-block {
    padding: 30px 30px;
    backdrop-filter: blur(12px);
    transition: all 0.3s;
    background: rgba(10, 10, 10, 1);
    height: 100%;
    border-radius: 10px;
}

.app-block:not(.app-account-card):hover {
    box-shadow: 0px 0px 11px 0px rgba(245, 245, 245, 0.19);
    transform: translateY(-5px);
}

.app-block.app-account-card:hover {
    background-color: var(--theme-secondary);
}

.app-block .count {
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background-color: var(--theme-secondary);
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

/* Review Block */

.review-slider .swiper-slide {
    height: auto;
}

.review-block {
    position: relative;
    padding: 30px 30px;
    border: 1px solid rgba(61, 61, 61, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    height: 100%;
    border-radius: 10px;
    transition: all .3s ease;
}

.review-slider .swiper-slide.swiper-slide-active .review-block {
    background-color: var(--theme-secondary);
}

.review-sep {
    width: 30px;
    height: 30px;
    min-width: 30px;
}

.review-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.review-details {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.slider-button {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 20px;
    margin: 50px 0 0;
}

.slider-button .swiper-button-next,
.slider-button .swiper-button-prev {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border: unset;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    color: var(--white-color);
    margin: unset !important;
    z-index: 1 !important;
    border: 1px solid var(--white-color);
    transition: ease-in 0.3s;
}

.slider-button .swiper-button-next:hover,
.slider-button .swiper-button-prev:hover {
    background: var(--theme-secondary);
    border-color: var(--theme-secondary);
    color: var(--white-color);
    transition: ease-in 0.3s;
}

.slider-button .swiper-button-next:after,
.slider-button .swiper-button-prev:after {
    font-size: 18px;
}

.main-wrapper .new-faq .accordion-item {
    border-bottom: 1px solid #0000002e;
}

.main-wrapper .new-faq .accordion-item h3.accordion-header button.accordion-button,
.main-wrapper .new-faq .accordion-body  {
    color: var(--black-color) !important;
}

.main-wrapper .new-faq .accordion-button::after {
    filter: unset !important;
}

@media screen and (max-width: 991px) {

    .mobile-exch-main-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-exch-main-box .exch-coupon-card {
        height: 120px;
    }
}



@media screen and (max-width: 767px) {

    .review-sep {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }

    .app-block-inner {
        grid-template-columns: repeat(1, 1fr);
    }

    .app-block-inner .tick-list {
        width: 100%;
    }

    .app-block,
    .review-block {
        padding: 20px 20px;
    }

    .review-details {
        align-items: flex-start;
        gap: 15px;
        flex-direction: column-reverse;
        justify-content: left;
    }

}
