@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background-color: #ebebeb;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #246394;
}
body {
    font-family: "Inter", serif;
    font-weight: 400;
    font-style: normal;
    background-color: #14182b; /* Fallback color */
}

.main_banner {
    background-size: cover;
    max-height: 600px;
    height: 100%;
    position: relative;
}
.login_main_banner {
    background: url("../media/images/home_banner.png") no-repeat top center;
    background-size: cover; /* Ensures the image covers the entire section */
    min-height: 100vh;
    height: 100%;
}
.main_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar_cs {
    background: linear-gradient(
        180deg,
        rgba(43, 255, 255, 0.12) 0%,
        rgba(43, 255, 255, 0.04) 50%,
        rgba(43, 255, 255, 0.07) 100%
    );
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn_primary_cs {
    padding: 10px 20px;
    background-color: rgb(5, 220, 130);
    color: black;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 300ms ease-in-out;
}

.btn_primary_cs:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgb(5, 220, 130)
    );
}

.btn_primary_cs:active {
    background: linear-gradient(
        40deg,
        rgba(255, 255, 255, 0.1),
        rgb(5, 220, 130)
    );
}

.slider-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    /* margin: auto; */
    margin-top: 1.5rem;
    /* height: calc(100% - 87px); */
    display: flex;
    align-items: center;
    padding: 4% 100px;
}

.slider-container .banner-title {
    font-size: 35px;
    font-weight: 600;
}

/* Slick Slider Custom Styles */
.slick-slider {
    width: 100%;
    height: 100%;
}

.slick-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-slide h1,
.slick-slide p {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slick-slide.slick-active h1,
.slick-slide.slick-active p {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.slick-slide:not(.slick-active) h1,
.slick-slide:not(.slick-active) p {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
}

.progress-fill {
    position: absolute;
    width: 8px; /* Active progress thickness */
    background: var(--bs-primary, #007bff);
    height: 0%;
    left: -3px; /* Adjust to center the fill */
    transition: height 0.4s ease-in-out;
}

.start-number,
.end-number {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.start-number {
    margin-bottom: 24px;
}

.end-number {
    margin-top: 24px;
}

.banner_desc {
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #ffffff;
}

.banner_title {
    font-weight: 700;
    font-size: 40px;
    line-height: 45px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 24px;
    max-width: 440px;
}
/* .banner_title span{
  display: block;
} */

/*
.slick-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.1);
  height: 300px;
  border-radius: 10px;
} */
.progress-container {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 300px;
}
.progress-bar {
    width: 2px;
    height: 300px;
    background: white;
    position: relative;
    overflow: hidden;
}
.progress-fill {
    position: absolute;
    /* width: 8px;  */
    height: 0%;
    left: -3px;
    top: 0; /* Ensure it fills from bottom to top */
    background: red;
    transition: height 0.6s ease-in-out, background-color 0.6s ease-in-out;
}
.start-number,
.end-number {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fs-8 {
    font-size: 8px;
}
.fs-10 {
    font-size: 10px;
}
.fs-11 {
    font-size: 11px;
}
.fs-12 {
    font-size: 12px;
}
.fs-13 {
    font-size: 13px;
}
.fs-14 {
    font-size: 14px;
}
.fs-15 {
    font-size: 15px;
}
.fs-16 {
    font-size: 16px;
}
.fs-18 {
    font-size: 18px;
}
.fs-20 {
    font-size: 20px;
}
.fs-22 {
    font-size: 22px;
}
.fs-24 {
    font-size: 24px;
}
.fs-32 {
    font-size: 32px;
}
.fs-36 {
    font-size: 36px;
}
.fs-40 {
    font-size: 40px;
}
.fw-300 {
    font-weight: 300;
}
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-800 {
    font-weight: 800;
}
.fw-900 {
    font-weight: 900;
}
.offers_section {
    margin-top: -44px;
}
.offers_slider_sec {
    background: linear-gradient(
        180deg,
        rgba(43, 255, 255, 0.12) 0%,
        rgba(43, 255, 255, 0.04) 50%,
        rgba(43, 255, 255, 0.07) 100%
    );
    backdrop-filter: blur(42px);
    /* background-color: #1e1e1e; */
    border-top: 1px solid #126970;
    border-bottom: 1px solid #126970;
    padding: 18px 0px;
}
.offer_slider_img {
    border-radius: 16px;
}
.slider_item {
    position: relative;
}
.slider_item::after {
    content: "";
    width: 2px;
    background-color: #ffffff;
    height: 26px;
    position: absolute;
    right: 16px;
    top: 45%;
}

/* offer slider  */
.slider-container-offer {
    position: relative;
    padding: 0px 10px;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: -45px;
    z-index: 10;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.slick-prev {
    right: 40px;
    left: auto;
}

.slick-next {
    right: 10px;
}

.slider_item {
    padding: 4px 7px;
    border-radius: 10px;
}

.offer_slider_img {
    object-fit: cover;
}
.payment-slider .offer_slider_img {
    object-fit: contain;
    height: 70px;
}
.popular_games_cards {
    height: 100%;
    /* border-radius: 12px; */
    transition: transform 0.3s ease-in-out;
    position: relative;
}
.popular_games_cards .popular_games_cards_body {
    background: linear-gradient(
        180deg,
        rgba(43, 255, 255, 0.12) 0%,
        rgba(43, 255, 255, 0.04) 50%,
        rgba(43, 255, 255, 0.07) 100%
    );
    backdrop-filter: blur(42px);
    border-radius: 0 0 12px 12px;
}

.popular_games_cards:hover {
    transform: scale(1.06);
}
.popular_games_section {
    background-size: cover;
    position: relative;
}

/* .popular_games_section::before {
  content: '';
  padding: 60px 0 40px 0;
  background: url("../media/images/box_ptrn.png") no-repeat top center;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
} */
.checkout_page_bg {
    background: url("../media/images/checkout-ptrn.png") no-repeat top center;
    background-size: cover;
}
.about_us_section {
    padding: 30px 0 0px 0;
}
.section {
    padding: 100px 0 50px 0;
}
.popular_games_cards_body {
    padding: 16px;
}

.game_img.pubg_game {
    background: url("../media/images/pubg_bg.png");
}
.game_img.bangbang_game {
    background: url("../media/images/bangbang_bg.png");
}
.game_img.freefire_game {
    background: url("../media/images/freefire_bg.jpg");
}
.game_img.counter_strike_game {
    background: url("../media/images/counter_strike_bg.png");
}
.game_img {
    position: relative;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    height: 240px;
    border-radius: 12px 12px 0 0;
    text-align: center;
}

.game_img.bangbang_game img {
    /* text-align: center;
  position: absolute;
  top: -42px;
  left: -14%;
  max-width: 342px; */
    margin-top: -21px;
    transform: scale(1.25);
}
.game_img.freefire_game img {
    /* text-align: center;
    position: absolute;
    top: -65px;
    left: -6%;
    max-width: 316px; */
    /* position: absolute;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%); */
    margin-top: -38px;
    transform: scale(1.05);
    width: 100%;
}
.game_img.pubg_game img {
    /*
  text-align: center;
  position: absolute;
  top: -43px;
  left: 11%;
  max-width: 223px; */
    /* width: 100%; */
    margin-top: -60px;
}
.game_img.counter_strike_game img {
    /* text-align: center;
    position: absolute;
    top: -44px;
    left: -13%;
    max-width: 125%; */
    width: 100%;
    margin-top: -28px;
    transform: scale(1.2);
}
.view_more_arrw {
    text-align: end;
    position: absolute;
    right: 11px;
    bottom: 10px;
    transition: 0.4s all;
}
.view_more_arrw:hover {
    transform: scale(1.05);
}
.about_segent_box {
    background: url("../media/images/about_banner.png") no-repeat top center;
    background-size: cover;
}

@media (min-width: 768px) {
    .about_segent_box {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .about_segent_box {
        background: url("../media/images/about-banner-mobile.jpg") no-repeat top
            center;
        background-size: cover;
        height: 242px;
    }
}

.why_us_section {
    background: url("../media/images/why_us_bg.png") no-repeat top center;
    background-size: cover;
    padding: 0px;
    position: relative;
}
.afflilate_section {
    padding: 0px 0 50px 0px;
}
.payment_getway_section {
    padding: 30px 0 0px 0px;
}
.note_img {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.afliate_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        195.05deg,
        rgba(43, 255, 255, 0.1) 0%,
        rgba(43, 255, 255, 0.02) 50%,
        rgba(43, 255, 255, 0.06) 100%
    );
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px 30px;
    border: 1px solid #9a9a9a00;
    height: 280px;
}

.afliate_card:hover {
    border: 1px solid #245677;
}
.footer_section {
    background: url("../media/images/ellipse_9.png") no-repeat right center;
    background-size: cover;
    position: relative;
}
.text_grey_500 {
    color: #bcbcbc;
}
.banner_sec {
    display: flex;
    align-items: center;
    padding: 30px 2%;
    height: 513px;
}
.details_listing {
    margin-bottom: 50px;
}
.details_listing:last-child {
    margin-bottom: 0px;
}
.checkout_details_wrapper {
    padding: 20px 0 0px 0;
}
.cart_form_card {
    background: linear-gradient(
        180deg,
        rgba(43, 255, 255, 0.12) 0%,
        rgba(43, 255, 255, 0.04) 50%,
        rgba(43, 255, 255, 0.07) 100%
    );
    backdrop-filter: blur(42px);
    border-radius: 12px;
    padding: 12px 16px 16px 16px;

    border: 2px solid #1e717c;
}
.btn-transparent {
    background-color: transparent;
    border: 0;
}
.popover-body {
    padding: 0 !important;
}
.badge_purple {
    background: #7f39fb;
    border-radius: 16px;
    padding: 4px 10px;
}
.category_card {
    background-color: #1b4354;
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(42px);
    border-radius: 12px;
    padding: 16px;
    height: 100%;
}

@media (max-width: 768px) {
    .custom-mt {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .thank_you_res {
        margin-top: 40px;
    }
}

.items_card {
    backdrop-filter: blur(42px);
    border-radius: 12px 12px 0 0;
    padding: 8px 8px 0px 8px;
    border: 1px solid #1e717c;
    border-bottom: 0;
    position: relative;
    background-color: #1b4354;
    background-size: cover;
    background-position: center;
}

.items_card_sub {
    /* background: rgba(255, 255, 255, 0.05); */
    /* background: url("../media/images/card_bg_img.png"); */
    background-color: #1b4354;

    background-size: cover;
    background-position: center;
    border: 0.68633px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12.0108px);
    border-radius: 0px 0px 12px 12px;
    padding: 16px;
    border: 1px solid #0dab74;
}

.cardContainer {
    background-color: #1b4354;
    border-radius: 12px;
}

.cardContainer:hover {
    .items_card,
    .items_card_sub {
        background-color: #7f39fb;
    }
    .items_card {
        border: 1px solid white;
    }
    .items_card_sub {
        border: 1px solid white;
    }
    .badge_purple_border {
        border: 1px solid white;
    }
}
.text_line {
    text-decoration-line: line-through;
    text-decoration-color: rgba(224, 22, 26, 1);
    text-decoration-thickness: 2px;
}
.text_purple {
    color: #b000dc;
}
.badge_purple_border {
    background-color: #7f39fb;
    border-radius: 16px;
    padding: 2px 12px;
    text-align: center;
    border: 1px solid #0da774;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    position: absolute;
    top: 0px;
    display: flex;
    align-items: center;
    left: 50%;
    transform: translate(-50%, -50%);
}
.payment_img img {
    height: 70px;
    object-fit: contain;
}
.checkout_card_inner {
    /* background: linear-gradient(
        180deg,
        rgba(43, 255, 255, 0.12) 0%,
        rgba(43, 255, 255, 0.04) 50%,
        rgba(43, 255, 255, 0.07) 100%
    ); */
    background: url("../media/images/card_bg_img.png");
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(42px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 12px;
    border: 1px solid #1e717c;
    padding: 32px 16px 16px 16px;
}
.cross_btn {
    position: absolute;
    right: -26px;
    top: -18px;
}
.cross_btn img {
    width: 30px;
    height: 30px;
}
.confirmation_category_card {
    border: 0;
}
.confirmation_category_card .badge_purple_border {
    border-radius: 16px;
    padding: 4px 16px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    left: 70px;
    transform: translate(-50%, -50%);
}
.confirm_item_detail {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(232, 232, 232, 0.4);
}
.thankyou_inner_box {
    max-width: 540px;
    margin: 0 auto;
}
.payment-slider .slider_item::after {
    display: none;
}
.payment-slider .slick-slide {
    display: flex !important;
    height: 80px;
}
.select_cate_outer_wrap {
    overflow-x: auto;
    padding-top: 14px;
    display: flex;
    align-items: stretch;
    gap: 12px;
}
.select_cate_outer {
    min-width: 150px;
    width: 150px;
    flex: 0 0 auto;
    margin-bottom: 6px;
}

.offcanvas-header {
    background: linear-gradient(
        180deg,
        rgba(43, 255, 255, 0.12) 0%,
        rgba(43, 255, 255, 0.04) 50%,
        rgba(43, 255, 255, 0.07) 100%
    );
    background-image: url("../media/images/sidebar_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.offcanvas-header .btn-close {
    filter: invert(1);
}
.offcanvas.offcanvas-start {
    width: 300px;
}
.main_banner_wrap {
    display: block;
}
.mobile_banner_wrap {
    display: none;
}
.modal_btn {
    display: block;
}
.responsive_affli {
    display: none;
}
.navbar-brand img {
    width: 170px;
}
.menu_icon_text {
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 16px;
    text-transform: uppercase;
    color: #ffffff;
    margin-left: 10px;
}
.sidebar_ul_pub {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}
.sidebar_ul_pub li {
    padding: 10px 18px;
    background: #ffffffad;
    margin-bottom: 8px;
    border-radius: 8px;
    color: #541d90;
    border-left: 8px solid transparent;
}

.sidebar_ul_pub li a {
    text-decoration: none;
    font-size: 16px;
    color: #541d90;
}
.sidebar_ul_pub li:hover {
    border-left: 8px solid #541d90;
}
.sidebar_ul_pub li.active {
    border-left: 8px solid #541d90;
}

.offcanvas-body {
    scrollbar-width: none;
    background: linear-gradient(
        180deg,
        rgba(43, 255, 255, 0.12) 0%,
        rgba(43, 255, 255, 0.04) 50%,
        rgba(43, 255, 255, 0.07) 100%
    );
    background-image: url(../media/images/sidebar_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.main_header .navbar_cs .container-fluid {
    padding-left: 2%;
    padding-right: 2%;
}
.footer_logo_icon {
    position: absolute;
    bottom: 0%;
}
.footer_logo {
    width: 50px;
}
.main_banner.term_condition {
    height: auto !important;
}
@media only screen and (max-width: 1200.5px) {
    .navbar-brand img {
        width: 180px;
    }
    .banner_title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 18px;
    }
    .slider-container {
        padding: 4% 70px;
    }
    .progress-bar {
        height: 150px;
    }
    .game_img {
        height: 184px;
    }
    .game_img.bangbang_game img {
        margin-top: 0.4%;
        transform: scale(1.3);
    }
    .game_img.freefire_game img {
        margin-top: -5.7%;
        transform: scale(1.1);
        width: 100%;
    }
}
@media only screen and (max-width: 992.5px) {
    .navbar-brand img {
        width: 170px;
    }
    .slider-container .banner-desc {
        font-size: 11px;
        font-weight: 400;
    }
    .slider-container .banner-title {
        font-size: 35px;
        font-weight: 600;
    }

    .popover_btn {
        display: none;
    }
    .modal_btn {
        display: block;
    }

    .slick-slide .btn_primary_cs {
        background: rgba(255, 255, 255, 0.1);
        font-size: 12px;
        padding: 8px 22px;
    }
    .progress-container {
        height: 140px;
    }
    .banner_title {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 0px;
        max-width: 350px;
    }
    .game_img {
        height: 240px;
    }
    .game_img.bangbang_game img {
        margin-top: -12%;
        transform: scale(1.15);
    }
    .game_img.freefire_game img {
        margin-top: -19.5%;
        transform: scale(1);
        width: 100%;
    }
    .slick-slide .btn_primary_cs {
        padding: 6px 22px;
    }

    .banner_social {
        display: none !important;
    }
    .why_us_section.why_us_section_res .note_img {
        top: 31.5%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 150px;
    }
    @media screen and (max-width: 450px) {
        .why_us_section.why_us_section_res .note_img {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 150px;
        }
    }
    .why_us_section.why_us_section_res .fs-24 {
        font-size: 15px;
    }
    .fs-40 {
        font-size: 30px;
    }
    .afflilate_section {
        padding: 0px 0 50px 0px;
    }

    h2.fs-30 {
        font-size: 20px;
    }
}
@media only screen and (max-width: 767.5px) {
    .afliate_card {
        height: 210px;
    }
    .body-content {
        font-size: 16px;
    }

    .slider-container {
        top: 50%;
        padding: 12px 16px;
    }

    .slider-container .banner-desc {
        font-size: 11px;
        font-weight: 400;
    }
    .slider-container .banner-title {
        font-size: 18px;
        font-weight: 600;
        width: 50%;
    }

    .why_us_section {
        padding: 0px 0 0px 0px;
    }

    .game_img.bangbang_game img {
        margin-top: -17%;
    }
    .banner_title {
        font-weight: 700;
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 0px;
        max-width: 320px;
    }

    .section {
        padding: 50px 0 30px 0;
    }
    .about_us_section {
        padding: 40px 0 30px 0;
    }
    .afflilate_section {
        padding: 0px 0 40px 0px;
    }
    .note_img {
        display: none;
    }
    .trusted_sec {
        flex-direction: column;
    }
    .game_img.freefire_game img {
        margin-top: -9.5%;
        transform: scale(1.4);
        width: 100%;
        height: 100%;
        object-fit: contain;
        max-height: 150px;
    }
    .offers_section {
        /* background: url('../media/images/circle_ptrn.png'); */
        margin-top: 16px;
    }
    .main_banner_img {
        min-height: 300px;
    }
    .banner_desc {
        font-size: 14px;
    }
    .banner_sec {
        height: 370px;
        position: relative;
        display: flex;
        align-items: center;
    }
    .banner_sec > div {
        position: absolute;
        bottom: 6%;
    }
    .banner_sec .banner_title {
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 32px;
    }
    .banner_sec h5 {
        font-size: 20px;
    }
    .game_img {
        height: 160px;
    }
    .game_img.pubg_game img {
        margin-top: -30px;
        height: 100%;
        min-height: 190px;
    }
    .navbar-brand img {
        width: 100px;
    }
}
@media only screen and (max-width: 575.6px) {
    .body-content {
        font-size: 12px;
    }

    .banner_desc {
        font-size: 12px;
        max-width: 250px;
    }
    .header_btns a {
        width: 100%;
        margin-right: 0 !important;
    }
    .header_btns .btn_primary_cs {
        font-size: 10px;
        padding: 8px 10px;
        width: fit-content;
    }
    .btn-close:not(.btn_mobile_info) {
        filter: invert(1);
    }
    /* .navbar-toggler-icon{
    filter: invert(1);

  } */
    .navbar-toggler {
        filter: invert(1);
    }
    .navbar-brand img {
        width: 100px;
    }
    .banner_sec {
        height: 250px;
        position: relative;
        display: flex;
        align-items: center;
    }
    .banner_sec .banner_title {
        margin-bottom: 20px;
        font-size: 20px;
        line-height: 24px;
    }
    .checkout_upper_content .fs-40 {
        font-size: 26px;
    }
    .checkout_upper_content .fs-15 {
        font-size: 13px;
    }
    /* .checkout_upper_content .text-white.text_white_cs{
    color: #29339b !important;
  } */
    .checkout_upper_content .fw-500 {
        font-weight: 400;
    }
    .checkout_details_wrapper {
        padding: 18px 0 0px 0;
    }
    .modal_btn img {
        min-width: 28px;
        min-height: 28px;
        object-fit: contain;
    }
}
@media only screen and (max-width: 540px) {
    .game_img.bangbang_game img {
        margin-top: -20%;
        transform: scale(1.1);
    }
    .game_img.freefire_game img {
        margin-top: -12.5%;
    }
    .game_img.counter_strike_game img {
        transform: scale(1.1);
    }
    .main_banner_wrap {
        display: none;
    }
    .mobile_banner_wrap {
        display: block;
    }

    .category_card p {
        font-size: 13px;
    }
    .category_card p.badge_purple_border {
        font-size: 9px;
    }
    .items_card_sub p.fs-20 {
        font-size: 16px;
    }
    .category_card {
        padding: 8px;
    }
    .items_card_sub {
        padding: 16px 8px;
    }
}
@media only screen and (max-width: 450px) {
    .popular_games_section.privacy_policy_page {
        padding: 65px 0 16px 0;
    }
    .privacy_policy_page .fs-40 {
        font-size: 16px;
    }
    .privacy_policy_page p {
        font-size: 10px;
    }
    .game_img.pubg_game img {
        margin-top: -24px;
        height: 100%;
        min-height: 145px;
    }
    .game_img {
        height: 120px;
    }
    .game_img.bangbang_game img {
        margin-top: -15%;
        height: 140px;
    }
    .game_img.freefire_game img {
        margin-top: -6.5%;
        max-height: 110px;
    }
    .popular_games_cards_body {
        padding: 8px;
        font-size: 8px;
    }
    .progress-container {
        display: none;
    }
    .offer_content_res .fs-14 {
        font-size: 8px;
    }
    .offer_content_res .fs-13 {
        font-size: 6px;
    }
    .offer_img_res img {
        max-width: 100px;
    }
    .banner_desc {
        font-size: 7px;
        margin-bottom: 2px;
    }
    .banner_title {
        font-size: 14px;
        line-height: 16px;
        max-width: 165px;
        margin-bottom: 24px;
    }
    .banner_title_res_1 {
        max-width: 150px;
    }

    .banner_social {
        display: flex !important;
    }
    .banner_social a img {
        width: 10px;
    }
    .banner_wrap_res {
        padding-top: 5%;
    }
    .exclu_title_res.fs-24 {
        font-size: 12px;
    }
    .popular_game_res .fs-40 {
        font-size: 16px;
    }
    .popular_games_section {
        padding: 24px 0 16px 0;
    }
    .popular_game_res .popular_games_cards_body .fs-14 {
        font-size: 10px;
    }
    .popular_game_res .popular_games_cards_body .fs-12 {
        font-size: 8px;
    }
    .popular_game_res .popular_games_cards_body a {
        text-decoration: none;
    }
    .about_segent_box .fs-40 {
        font-size: 16px;
    }
    .about_segent_box .fs-18 {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 10px;
    }
    .about_segent_box .fs-14 {
        font-size: 12px;
    }
    .about_segent_box .btn_primary_cs {
        font-size: 7px;
        padding: 4px 10px;
    }

    .why_us_section {
        padding: 20px 0 0px 0px;
    }

    .why_us_section_res .content_p {
        padding: 0 12px;
    }
    .why_us_res {
        font-size: 16px;
    }
    @media screen and (max-width: 450px) {
        .why_us_res {
            font-size: 14px;
        }
    }

    .why_us_res {
        position: relative;
    }

    .note_img {
        display: block;
        max-width: 180px;
        top: 34%;
    }
    .p_res_why {
        padding-bottom: 140px !important;
    }

    .trusted_sec {
        flex-direction: row;
    }
    .trusted_sec svg {
        width: 24px;
    }
    .payment-slider .offer_slider_img {
        /* object-fit: contain; */
        height: 40px;
    }
    .offers_slider_sec {
        padding: 0;
    }
    .footer_contact_link li a {
        font-size: 12px;
    }
    .footer_social_icon img {
        width: 16px;
    }
    .copy_right_res p {
        font-size: 10px;
    }
    .afflilate_section {
        padding: 20px 0 10px 0px;
    }
    .slide_affi_items {
        margin: 0 2px;
    }
    .responsive_affli_desk {
        display: none;
    }
    .responsive_affli {
        display: block;
    }
    .responsive_affli .afliate_card .fs-18 {
        font-size: 12px;
    }
    .slick-prev,
    .slick-next {
        top: -24px;
    }
    .navbar-brand img {
        width: 90px;
    }
    .checkout_upper_content .fs-40 {
        font-size: 16px;
    }
    .checkout_upper_content .fs-15 {
        font-size: 9px;
    }
    .cart_form_title_res img {
        min-width: 45px;
        max-width: 45px;
    }
    .cart_form_title_res .fs-22 {
        font-size: 12px;
        line-height: 18px;
    }
    .cart_form_card input {
        font-size: 16px;
        font-weight: 500;
    }
    .user_email_res {
        font-size: 12px;
        margin-bottom: 6px;
    }
    .badge_purple.fs-16 {
        font-size: 11px;
    }
    .badge_select.fs-16 {
        font-size: 13px;
    }
    .badge_purple {
        margin-bottom: 8px;
    }
    .category_card p {
        font-size: 9px;
    }
    .category_card img {
        width: 40px;
    }
    .select_cate_outer {
        min-width: 95px;
        width: 95px;
    }
    .badge_purple_border {
        font-size: 8px;
    }
    .items_card .fs-15 {
        font-size: 10px;
    }
    .items_card .fs-13 {
        font-size: 10px;
        margin-bottom: 2px;
    }
    .items_card_sub .fs-14 {
        font-size: 8px;
    }
    .items_card_sub p.fs-20 {
        font-size: 10px;
    }
    .items_card_sub p.fs-14.fw-400 {
        font-size: 12px;
    }
    .items_card_sub span.fs-12 {
        font-size: 8px;
    }
    .items_card {
        padding: 20px 10px 10px 10px;
    }
    .items_card_sub {
        padding: 10px 8px;
    }
    .btn_primary_cs {
        font-size: 10px;
        padding: 6px 20px !important;
    }
    .header_btns .btn_primary_cs {
        font-size: 8px;
        padding: 8px 10px !important;
    }
    .menu_icon_text {
        font-size: 10px;
        line-height: 14px;
        margin-left: 8px;
    }
    .menu_icon_sidebar svg {
        width: 16px;
        height: 16px;
    }
    .checkout_card_inner .fs-16 {
        font-size: 10px;
    }
    .checkout_card_inner .fs-22 {
        font-size: 16px;
    }
    .checkout_card_inner .fs-14 {
        font-size: 10px;
    }
    .checkout_card_inner .col-8 {
        font-size: 10px;
    }
    .order_details_res .fs-40 {
        font-size: 16px;
    }
    .order_details_res .fs-15 {
        font-size: 9px;
        margin-bottom: 0;
    }
    .section {
        padding: 20px 0 15px 0;
    }
    .cart_form_card.p-5 {
        padding: 24px !important;
    }
    .cart_form_card.p-5 .fs-12 {
        font-size: 10px;
    }
    .cart_form_card.p-5 .fs-16 {
        font-size: 12px;
    }
    .cart_form_card.p-5 .fs-24 {
        font-size: 16px;
    }
    .thank_you_res .fs-40 {
        font-size: 18px;
    }
    .thank_you_res svg {
        width: 80px;
        height: 80px;
    }
    .confirmation_category_card svg {
        width: 24px;
        height: 30px;
    }
    .banner_sec .banner_title {
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 16px;
    }
    .banner_sec h5 {
        font-size: 14px;
    }
    .banner_sec > div {
        position: absolute;
        bottom: 15%;
    }
    .slider_item::after {
        display: none;
    }
    .view_more_arrw {
        bottom: 2px;
    }
    .footer_logo {
        max-width: 80px;
    }
}

@media only screen and (max-width: 391px) {
    .offer_img_res img {
        max-width: 80px;
    }
}
@media only screen and (max-width: 375.5px) {
    .banner_title {
        max-width: 270px;
    }
    .game_img.bangbang_game img {
        margin-top: -13.4%;
        transform: scale(1.1);
    }
    .game_img.freefire_game img {
        margin-top: -7.5%;
        transform: scale(1.2);
    }
}
/* admin style  */
.login_inner_wrapper {
    min-height: 100vh;
    padding: 110px 0 16px 0;
}
.login_card {
    background: linear-gradient(
        180deg,
        rgba(43, 255, 255, 0.12) 0%,
        rgba(43, 255, 255, 0.04) 50%,
        rgba(43, 255, 255, 0.07) 100%
    );
    border: 1px solid #ffffff;
    backdrop-filter: blur(42px);
    border-radius: 20px;
    padding: 8%;
}
label {
    color: #666666;
}
.text-danger {
    color: #eb5b5b !important;
}
.btn_blue {
    background: #246394;
    border-radius: 5px;
    border: 1px solid #fff;
}
.admin_wrapper {
    background: linear-gradient(to right, #271e47, #123135);
    padding: 18px;
    min-height: 100vh;
}
@media only screen and (max-width: 768px) {
    .admin_wrapper {
        padding: 18px 0 18px 0;
    }
}

.sidebar {
    overflow: hidden;
    background: linear-gradient(
        180deg,
        rgba(43, 255, 255, 0.12) 0%,
        rgba(43, 255, 255, 0.04) 50%,
        rgba(43, 255, 255, 0.07) 100%
    );
    background-image: url("../media/images/sidebar_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* opacity: 0.8; */
    border: 0.5px solid #ffffff;
    backdrop-filter: blur(42px);
    border-radius: 24px;
    height: calc(100vh - 36px);
    overflow-y: auto;
    width: 280px;
    position: fixed;
    top: 18px;
    left: 18px;
    padding: 16px;
    transition: width 0.3s ease;
    scrollbar-width: none;
}

.sidebar_menu_wrapper {
    padding-top: 16px;
    position: relative;
}
.sidebar_menu_wrapper_inner {
    margin-bottom: 18px;
    /* min-height: 450px; */
    /* height: calc(100vh); */
    position: relative;
    overflow-y: auto;
}
.sidebar_menu_wrapper_inner {
    overflow-y: scroll; /* Allows scrolling */
    -ms-overflow-style: none; /* For Internet Explorer */
    scrollbar-width: none; /* For Firefox */
}

.sidebar_menu_wrapper_inner::-webkit-scrollbar {
    display: none; /* Hides scrollbar for Chrome, Safari, and Opera */
}

.btn_menu_item {
    background: linear-gradient(
        195.05deg,
        rgba(43, 255, 255, 0.1) 0%,
        rgba(43, 255, 255, 0.02) 50%,
        rgba(43, 255, 255, 0.06) 100%
    );
    border: 0.2px solid white;
    backdrop-filter: blur(20px);
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.03em;
    text-transform: capitalize;
    color: #ffffff;
    width: 100%;
    display: flex;
    align-items: center;
}
.btn_menu_item:hover,
.btn_menu_item.active {
    background: linear-gradient(
        195.05deg,
        rgba(20, 241, 149, 0.3) 0%,
        rgba(3, 61, 61, 0.02) 50%,
        rgba(153, 69, 255, 0.3) 100%
    );
    border: 0.2px solid white;
    backdrop-filter: blur(20px);
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
}
.btn_menu_item .menu_icon {
    margin-right: 14px;
}
.sidebar_listing li,
.bottom_buttom_sidebar li {
    margin-bottom: 16px;
}
.sidebar_listing li:last-child,
.bottom_buttom_sidebar li:last-child {
    margin-bottom: 0px;
}
.btn_menu_item .menu_text {
    text-wrap: nowrap;
    margin-top: 2px;
}
/* .bottom_buttom_sidebar {
  position: absolute;
  bottom: 10px;
  width: 100%;
} */
.main_content {
    padding: 0px 20px 0px 300px;
    /* transition: width 0.3s ease; */
    width: 100%;
    transition: padding-left 0.3s ease;
}
.admin_banner {
    height: 150px;
    background-color: #022837;
    background-image: url("../media/icons/admin_banner.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    border: 0.5px solid #ffffff;
    backdrop-filter: blur(42px);
    border-radius: 26px;
    padding: 24px;
    display: flex;
    align-items: center;
    position: relative;
}
.dashboard_tiles {
    background: linear-gradient(
        195.05deg,
        rgba(43, 255, 255, 0.1) 0%,
        rgba(43, 255, 255, 0.02) 50%,
        rgba(43, 255, 255, 0.06) 100%
    );
    border: 0.5px solid #d9d9d9;
    backdrop-filter: blur(20px);
    border-radius: 8px;
    padding: 16px;
}
.text_dark_33 {
    color: #e0e0e0;
}
.text_8c {
    color: cyan;
}
.highcharts-legend-item.highcharts-areaspline-series {
    display: none !important;
}
.highcharts-credits {
    display: none !important;
}

.search_icon {
    position: absolute;
    right: 8px;
    top: 16px;
}
.sort_by {
    width: 140px;
}
.sort_by select {
    padding: 10px 12px;
}

/* Make Table Responsive */
.dataTables_wrapper {
    width: 100%;
}
.badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 70px;
    font-weight: 500;
    position: relative;
    /* color: white; */
    /* font-weight: bold; */
    padding-left: 20px;
}
.badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    z-index: 0;
    top: 8px;
    left: 8px;
}

.badge-success {
    background: #05dc82;
}
.badge-success::before {
    background: #0eb26e;
}

.badge-cancelled {
    background: rgba(212, 38, 38, 0.3);
    color: #d42626;
}
.badge-cancelled::before {
    background-color: #d42626;
}
.table_dark {
    background-color: #323e3c;
    color: #fff;
    font-size: 13px;
}
table tbody tr td {
    font-size: 14px;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}
.btn_action_view {
    border: 2px solid #246394;
    color: #246394;
}
.btn_action_view:hover,
.btn_action_view:active,
.btn_action_view:focus {
    background: #246394;
    color: #fff;
}
.btn_action_edit {
    border: 2px solid #0077ce;
    color: #0077ce;
}
.btn_action_edit:hover,
.btn_action_edit:active,
.btn_action_edit:focus {
    background: #0077ce;
    color: #fff;
}
.btn_action_trash {
    background-color: #ffdcda;
    border: 2px solid #ff0a00;
    color: #ff0a00;
}
.btn_action_trash:hover,
.btn_action_trash:active,
.btn_action_trash:focus {
    background: #ff0a00;
    color: #fff;
}
.table_user_icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.btn_blue,
.btn.btn-outline-secondary {
    min-height: 45.6px;
}
.toggle_menu {
    background-color: white;
    border: 3px solid #eee;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    color: #14182b;
    cursor: pointer;
    animation: heartbeat 1s infinite;
    /* Apply the heartbeat animation */
    z-index: 1;
    left: 256px;
    transition: all 0.3s ease;
    font-weight: 600;
    /* position: absolute; */
    left: 260px;
    top: 35px;
}

.toggle_menu:hover {
    opacity: 1;
    animation: none;
    /* Disable the animation on hover */
}
@keyframes heartbeat {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

body.collapsed .toggle_menu {
    left: 10px;
}
body.collapsed .sidebar {
    width: 0;
    padding-inline: 0;
    border: none;
    overflow: hidden;
}
body.collapsed .sidebar .sidebar_menu_wrapper {
    opacity: 0;
    overflow: hidden; /* Hide content overflow */
    transition: opacity 0.3s ease;
}
body.collapsed .main_content {
    padding: 0px 15px 0px 15px;
    transition: padding-left 0.3s ease;
}
.toggle_menu.mobile_view {
    display: none;
}

.affi_refrr_wrap {
    background: rgba(20, 241, 149, 0.15);
    border: 1px solid rgba(0, 88, 170, 0.15);
    border-radius: 5px;
    padding: 16px;
}

.radio-pill .form-check-input {
    display: none;
}
.radio-pill .form-check-label {
    padding: 10px 20px;
    cursor: pointer;
    color: #313131;
    font-weight: 500;
    background: #f4f4f4;
    border: 1.29887px solid #cbcbcb;
    border-radius: 5.19547px;
    text-align: center;
}
.radio-pill .form-check-input:checked + .form-check-label {
    background-color: #246394;
    border-color: #246394;
    color: #fff;
}
.radio-pill .form-check {
    padding-left: 0px;
    padding-right: 10px;
}
.radio-pill .form-check:last-child {
    padding-right: 0;
}
.radio_pills_payment .form-check-label {
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.form-check-label .payment_main_info {
    font-weight: 700;
    font-size: 18px;
    color: #313131;
    display: block;
}
.form-check-label .payment_sub_info {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #313131;
}
.radio-pill .form-check-input:checked + .form-check-label .payment_sub_info,
.radio-pill .form-check-input:checked + .form-check-label .payment_main_info {
    color: #fff;
}
.card .card-body input,
.card .card-body select {
    background-color: #f4f4f4;
    border-color: #cbcbcb;
}
.card .card-body .form-floating > .form-control-plaintext ~ label::after,
.card .card-body .form-floating > .form-control:focus ~ label::after,
.card
    .card-body
    .form-floating
    > .form-control:not(:placeholder-shown)
    ~ label::after,
.card .card-body .form-floating > .form-select ~ label::after {
    background-color: #f4f4f4;
}
@media only screen and (max-width: 1024.5px) {
    .main_content {
        padding: 0px 20px 0px 20px;
        /* background:red; */
    }
    .sidebar {
        width: 280px;
        z-index: 20;
        padding: 16px;
        left: 0;
        border-radius: 0 24px 24px 0;
        height: 100%;
        top: 0;
    }
    body.collapsed .sidebar {
        width: 0px;
        padding-inline: 0px;
        border: 0;
    }
    body.collapsed .sidebar .sidebar_menu_wrapper {
        opacity: 1;
        transition: opacity 0.3s ease;
    }
    body:not(.collapsed) .toggle_menu {
        left: 245px;
        top: 15px;
        z-index: 50;
    }
}
.thank_you_small_box {
    max-width: 430px;
}
@media only screen and (min-width: 1445px) {
    .note_img {
        top: 32%;
    }
}
@media only screen and (min-width: 1994px) {
    .menu_icon_text {
        font-size: 18px;
        line-height: 20px;
        margin-left: 14px;
    }
    .menu_icon_sidebar svg {
        width: 30px;
        height: 30px;
    }
    .navbar-brand img {
        width: 250px;
    }
    .main_banner {
        background-size: cover;
        max-height: 100%;
        height: calc(100vh - 210px);
    }
    .banner_title {
        font-weight: 800;
        font-size: 80px;
        line-height: 1.07;
        max-width: 1000px;
        margin-bottom: 40px;
    }
    .banner_desc {
        font-size: 32px;
        line-height: 1;
        letter-spacing: 0.1em;
    }
    .btn_primary_cs {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        font-weight: 600;
        font-size: 32px;
        text-transform: uppercase;
        color: #ffffff;
        padding: 20px 42px;
        border-color: #fff;
    }
    .banner_social img {
        width: 50px;
    }
    .offer_slider_img {
        width: 310px;
    }
    .fs-14 {
        font-size: 28px;
    }
    .fs-13 {
        font-size: 24px;
    }
    .fs-24 {
        font-size: 40px;
    }
    .slick-prev:before,
    .slick-next:before {
        font-family: "slick";
        font-size: 40px;
    }
    .slick-prev {
        right: 56px;
    }
    .progress-container {
        height: 380px;
    }
    .start-number,
    .end-number {
        font-size: 30px;
    }
    .progress-bar {
        width: 6px;
    }
    .fs-40 {
        font-size: 70px;
    }
    .container {
        max-width: 1960px;
    }
    .game_img_updated img {
        width: 100%;
    }
    .fs-12 {
        font-size: 24px;
    }
    .view_more_arrw svg {
        width: 50px;
        height: 40px;
    }
    .about_segent_box div.mx-auto {
        max-width: 50% !important;
    }
    .fs-18 {
        font-size: 32px;
    }
    .why_us_svg svg {
        width: 70px;
        height: 70px;
    }
    .note_img {
        width: 500px;
        top: 35%;
    }
    .mb-5 {
        margin-bottom: 5rem !important;
    }
    .py-sm-4 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    .footer_logo {
        width: 150px;
    }
    .footer_social_icon img {
        width: 40px;
    }
    .fs-16 {
        font-size: 28px;
    }
    .footer_contact_link li svg {
        width: 26px;
        height: 26px;
    }
    .footer_upper_section {
        padding-bottom: 30px;
    }
    .payment-slider .offer_slider_img {
        object-fit: contain;
        height: 100px;
    }
    .fs-15 {
        font-size: 30px;
    }
    .select_cate_outer {
        width: 260px;
        margin-bottom: 26px;
    }
    .category_card img {
        width: 90px;
    }
    .form-control {
        height: 90px;
        font-size: 24px;
    }
    .badge_purple_border {
        font-size: 20px;
    }
    .cross_btn {
        right: -32px;
        top: -35px;
    }
    .cross_btn img {
        width: 60px;
        height: 60px;
    }
    .checkout_card_inner .row {
        margin-bottom: 30px;
    }
    .mb-4 {
        margin-bottom: 3rem !important;
    }
    .mb-1 {
        margin-bottom: 0.5rem !important;
    }
    p {
        font-size: 20px;
    }
    .badge_purple svg {
        width: 24px;
        height: 22px;
    }
    .checkout_card_inner {
        padding: 50px 28px 28px 28px;
    }
    .banner_sec {
        height: 1000px;
        display: flex;
        align-items: center;
    }
    .thankyou_inner_box {
        max-width: 900px;
        margin: 0 auto;
    }
    .thank_you_small_box {
        max-width: 600px;
    }
    .mb-2 {
        margin-bottom: 1rem !important;
    }
    .thank_svg svg {
        width: 220px;
        height: 220px;
    }
    .confirm_item_detail {
        padding: 20px 20px;
    }
    .popover_btn img {
        width: 40px;
    }
    .popover {
        max-width: 500px;
        width: 500px !important;
    }
    .popover-body img {
        width: 500px !important;
    }
}

@media only screen and (min-width: 3200px) {
    .menu_icon_text {
        font-size: 22px;
        line-height: 22px;
    }
    .menu_icon_sidebar svg {
        width: 36px;
        height: 36px;
    }
    .container {
        max-width: 2400px;
    }
    .banner_title {
        font-size: 100px;
    }
    .banner_desc {
        font-size: 40px;
    }
    .btn_primary_cs {
        font-size: 36px;
        padding: 24px 52px;
    }
    .fs-14 {
        font-size: 32px;
    }
    .fs-13 {
        font-size: 28px;
    }
    .fs-24 {
        font-size: 48px;
    }
    .fs-40 {
        font-size: 90px;
    }
    .fs-16 {
        font-size: 34px;
    }
    .fs-15 {
        font-size: 36px;
    }
    .fs-12 {
        font-size: 28px;
    }
    .fs-18 {
        font-size: 40px;
    }

    .note_img {
        width: 600px;
    }
    .footer_logo {
        width: 180px;
    }
    .banner_social img,
    .footer_social_icon img,
    .popover_btn img {
        width: 60px;
    }
    .thank_svg svg {
        width: 280px;
        height: 280px;
    }
    .form-control {
        height: 100px;
        font-size: 28px;
    }
    .category_card img {
        width: 110px;
    }
    .view_more_arrw svg {
        width: 60px;
        height: 50px;
    }
    .popover,
    .popover-body img {
        width: 600px !important;
        max-width: 600px;
    }
    .navbar-brand img {
        width: 280px;
    }
}

/* Breakpoint 2: Super Ultra-Wide Screens (5K and above, e.g., 5120px) */
@media only screen and (min-width: 5120px) {
    .menu_icon_text {
        font-size: 28px;
        line-height: 28px;
    }
    .menu_icon_sidebar svg {
        width: 42px;
        height: 42px;
    }
    .banner_title {
        font-size: 140px;
        max-width: 2000px;
    }
    .main_banner {
        height: 100vh;
    }
    .container {
        max-width: 3200px;
    }
    .banner_title {
        font-size: 120px;
    }
    .banner_desc {
        font-size: 50px;
    }
    .btn_primary_cs {
        font-size: 70px;
        padding: 32px 100px;
    }
    .mb-2 {
        margin-bottom: 3rem !important;
    }
    .slider_item .mb-2 {
        margin-bottom: 2rem !important;
    }
    .offer_slider_img {
        width: 550px;
    }
    .fs-14 {
        font-size: 40px;
    }
    .fs-13 {
        font-size: 36px;
    }
    .fs-24 {
        font-size: 56px;
    }
    .fs-40 {
        font-size: 110px;
    }
    .fs-16 {
        font-size: 40px;
    }
    .fs-15 {
        font-size: 42px;
    }
    .fs-12 {
        font-size: 32px;
    }
    .fs-18 {
        font-size: 48px;
    }

    .note_img {
        width: 800px;
    }
    .footer_logo {
        width: 210px;
    }
    .banner_social img,
    .footer_social_icon img,
    .popover_btn img {
        width: 70px;
    }
    .thank_svg svg {
        width: 350px;
        height: 350px;
    }
    .form-control {
        height: 110px;
        font-size: 32px;
    }
    .category_card img {
        width: 130px;
    }
    .view_more_arrw svg {
        width: 70px;
        height: 60px;
    }
    .popover,
    .popover-body img {
        width: 700px !important;
        max-width: 700px;
    }
    .banner_sec {
        height: 80vh;
        display: flex;
        align-items: center;
    }
    .navbar-brand img {
        width: 300px;
    }
}
@media only screen and (max-width: 575.6px) {
    .login_main_banner {
        background: unset;
    }
    .admin_banner {
        background-size: cover;
    }
}

.offcanvas {
    transform: translate3d(0, 0, 0);
}
.offcanvas {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.toggleSearch {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 12px 8px 12px;
    border-radius: 5px;
}

.search_area_wrapper {
    z-index: 12;
}

.search_input {
    border: 1px solid transparent;
    font-size: 14px;
    font-size: 16px;
    padding: 8px 18px 8px 53px;
    /* width: 280px; */
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px;
    color: #fff !important;
}
.search_input::placeholder {
    color: #fff;
    opacity: 1; /* Ensure the color shows fully */
}
.search_input:focus {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid #fff !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.search_icon_searchbar {
    position: absolute;
    left: 0;
    border-radius: 24px 0px 0px 24px;
    z-index: 1;
    cursor: auto;
    font-size: 20px;
    height: 50px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #d3d3d3;
}

.search_listing_wrapper {
    position: absolute;
    /* background: rgba(119, 243, 237, 0.4); */
    width: 100%;

    padding: 10px 0;
    border-radius: 12px;
    z-index: 11;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    top: 46px;
    padding-top: 0px;
    left: 0;
    /* display: block !important; */
    background: url("../media/images/searc_bg.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    border: 2px solid #2bffff29;
}
.search_listing_wrapper ul {
    list-style: none;
    /* border-top: 1px solid #96969695; */
    padding-top: 10px !important;
    max-height: 400px;
    overflow-y: auto;
}
.search_listing_wrapper ul li {
    margin: 0;
    padding: 2px 16px;
}
.search_listing_wrapper ul li a {
    padding: 8px 16px;
    display: inline-block;
    width: 100%;

    font-weight: 400;
    font-size: 15px;
    line-height: 19px;

    letter-spacing: 0.0805145px;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid transparent;
    border-radius: 12px;
}
.search_listing_wrapper ul li a:hover {
    border: 1px solid #fff;
}
.search_listing_wrapper ul li a img {
    width: 41px;
    height: 39px;
    border-radius: 8px;
    margin-right: 16px;
}
.search_close_btn {
    position: absolute;
    right: 0px;
    top: 6px;
    color: #d3d3d3;
    font-size: 12px;
}
.logo_area,
.searchbar_area {
    width: 50%;
}
.header_container {
    flex-wrap: nowrap;
}
.mobile_icon {
    display: none;
}
@media only screen and (max-width: 1235px) {
    .logo_area,
    .searchbar_area {
        width: auto;
    }
}

@media only screen and (max-width: 600px) {
    .logo_area {
        display: none;
    }

    .menu_icon_text {
        display: none;
    }
}

.white-placeholder::placeholder {
    color: white !important;
}

/* for type file */
.custom-file-bg {
    background: rgba(22, 149, 149, 0.2) !important;
    color: white !important;
}

.custom-file-bg::file-selector-button {
    background: transparent !important;
    color: white !important;
}

