@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');


body {
    font-family: "Inter" !important;
}

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

/* <---header---> */

a {
    text-decoration: none !important;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
}

.password-field {
    display: flex;
    align-items: center;
}

.toggle-password {
    margin-left: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #007bff;
}

.transparent-button {
    background-color: #fff;
    border: none transparent;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Modern Accordion Styles */
.x-accordions {
    margin-top: 1rem !important;
}

.product-detailed-info .xb-accordion {
    border: 1px solid rgba(237, 237, 237, 0.6) !important;
    border-radius: 16px !important;
    margin-bottom: 20px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: hidden !important;
    position: relative !important;
}

.product-detailed-info .xb-accordion::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(67, 172, 233, 0.3), transparent) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

.product-detailed-info .xb-accordion:hover {
    border-color: rgba(67, 172, 233, 0.4) !important;
    box-shadow:
        0 8px 32px rgba(67, 172, 233, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.06) !important;
    transform: translateY(-2px) !important;
}

.product-detailed-info .xb-accordion:hover::before {
    opacity: 1 !important;
}

.product-detailed-info .xb-accordion.open {
    border-color: rgba(67, 172, 233, 0.6) !important;
    box-shadow:
        0 12px 40px rgba(67, 172, 233, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-1px) !important;
}

.product-detailed-info .xb-accordion.open::before {
    opacity: 1 !important;
    background: linear-gradient(90deg, transparent, rgba(67, 172, 233, 0.6), transparent) !important;
}

.product-detailed-info .xb-acc-head {
    width: 100% !important;
    background: transparent !important;
    color: #23262F !important;
    border: 0 !important;
    padding: 20px 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 16px !important;
    position: relative !important;
    overflow: hidden !important;
    outline: none !important;
}

.product-detailed-info .xb-acc-head::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(67, 172, 233, 0.05), transparent) !important;
    transition: left 0.6s ease !important;
}

.product-detailed-info .xb-acc-head:hover::before {
    left: 100% !important;
}

.product-detailed-info .xb-acc-head:hover {
    background: rgba(249, 249, 249, 0.8) !important;
    color: #43ACE9 !important;
    transform: translateX(2px) !important;
}

.product-detailed-info .xb-acc-head span {
    position: relative !important;
    z-index: 2 !important;
    transition: all 0.3s ease !important;
}

.product-detailed-info .xb-acc-head i {
    color: #43ACE9 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-size: 14px !important;
    position: relative !important;
    z-index: 2 !important;
    transform-origin: center !important;
}

.product-detailed-info .xb-accordion.open .xb-acc-head i {
    transform: rotate(180deg) scale(1.1) !important;
}

.product-detailed-info .xb-accordion.open .xb-acc-head span {
    color: #43ACE9 !important;
    font-weight: 700 !important;
}

.product-detailed-info .xb-acc-body {
    padding: 24px !important;
    color: #606060 !important;
    line-height: 1.7 !important;
    animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
}

.product-detailed-info .xb-acc-body::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 24px !important;
    right: 24px !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(67, 172, 233, 0.2), transparent) !important;
}

.product-detailed-info .bg-dark-subtle {
    background: rgba(249, 249, 249, 0.9) !important;
    color: #23262F !important;
    border: 1px solid rgba(237, 237, 237, 0.8) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

    50% {
        opacity: 0.7;
        transform: translateY(-5px) scale(0.98);
    }

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

/* Enhanced responsive design */
@media (max-width: 768px) {
    .product-detailed-info .xb-accordion {
        border-radius: 12px !important;
        margin-bottom: 16px !important;
    }

    .product-detailed-info .xb-acc-head {
        padding: 16px 20px !important;
        font-size: 15px !important;
    }

    .product-detailed-info .xb-acc-body {
        padding: 0 20px 20px 20px !important;
    }

    .product-detailed-info .xb-acc-body::before {
        left: 20px !important;
        right: 20px !important;
    }
}

@media (max-width: 480px) {
    .product-detailed-info .xb-accordion {
        border-radius: 10px !important;
        margin-bottom: 12px !important;
    }

    .product-detailed-info .xb-acc-head {
        padding: 14px 16px !important;
        font-size: 14px !important;
    }

    .product-detailed-info .xb-acc-body {
        padding: 0 16px 16px 16px !important;
    }

    .product-detailed-info .xb-acc-body::before {
        left: 16px !important;
        right: 16px !important;
    }
}

.navbar-nav a {
    font-family: "Inter";
    font-size: 16px;
    font-weight: 600;
    list-style: none;
    font-style: normal;
    color: #606060;
}

header {
    width: 100%;
    max-width: 100%;
    background-color: #F9F9F9;
}

.header-inner {
    padding: 15px 30px 15px 30px;
    background-color: #ffff;
}

a.logo {
    margin-right: 20px;
}

.search-forms {
    background-color: #EDEDED;
    padding: 10px;
    border-radius: 8px;
    margin-right: 20px;
    margin-top: 10px;
}

.search-forms button {
    border: 0;
    display: flex;
    align-items: center;
    background-color: transparent;
    width: 20px;
}

.search-forms input {
    background-color: transparent;
    border: oldlace;
    padding-left: 10px;
    width: 100%;
}

.registration-btns {
    width: fit-content;
    display: flex;
    justify-content: end;
    align-items: center;

}

a.signup {
    padding: 12px 16px;
    border: 1px solid #43ACE9;
    border-radius: 6px;
    color: #43ACE9;
    text-decoration: none;
    margin-right: 40px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    list-style: none;
    font-style: normal;
}

a.signup-for-dashboard {
    padding: 12px 16px;
    border: 1px solid #43ACE9;
    color: #43ACE9;
    border-radius: 6px;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    list-style: none;
    font-style: normal;
}

button.signup {
    padding: 12px 16px;
    border: 1px solid #43ACE9;
    border-radius: 6px;
    color: #43ACE9;
    background-color: transparent;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    list-style: none;
    font-style: normal;
}

.explore-more {
    padding: 18px 20px;
    border: 1px solid #23262F;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    background-color: #23262F;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 600;
    list-style: none;
    font-style: normal;
    align-content: center;
    text-align: center;
    margin-right: 20px;
}

button.login {
    text-decoration: none;
    color: #606060;
    margin-left: 20px;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 600;
    list-style: none;
    font-style: normal;
    color: #606060;
    border: 0;
    background-color: transparent;
}

button.navbar-toggler.desktop {
    border: 0;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.mobileMenuOpen,
.closeMobileMenu {
    cursor: pointer;
}

.mobile-menu-bar .menu li a {
    display: inline-block;
    padding: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-menu-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
    transition: all 0.3s ease;
}

#mobile-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #F9F9F9;
    text-align: center;
    transition: all 0.3s ease;
    right: -100%;
    z-index: 999999;
}

#closeMobileMenu {
    text-align: end;
    margin: 15px 20px 0 0;
}

.mobileMenuOpen,
#closeMenuIcon i {
    background-color: #EDEDED;
    padding: 10px 12px;
    font-size: 20px;
    border-radius: 100%;
}


#mobile-menu.active {
    right: 0;
}


.mobile-item a {
    border-radius: 12px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #606060;
    text-decoration: none;
}

.mobile-item {
    margin-bottom: 15px;
    padding: 8px 15px;
    border-radius: 5px;
}

.mobile-menu-bar {
    padding-left: 0;
}



#notificationPopup.show,
#userProfileSettingPopup.show {
    display: block;
    /* Show when the 'show' class is added */
}




/* <---header---> */

/* <---homehero---> */

.left-section {
    padding-left: 100px !important;
}

.left-section p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    color: #606060;
    max-width: 32ch;
}



h2.hero-sec {
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 52px;
}


h1.hero-sec {
    font-family: "Inter", sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 62px;
    color: #43ACE9;
    margin-bottom: 15px;
    max-width: 16ch;
}

.hero-section {

    padding: 50px 0px;
    overflow-x: hidden;
}

p {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
}

.sellnow {
    padding: 18px 20px;
    border: 1px solid #000;
    border-radius: 12px;
    text-decoration: none;
    color: #000;
    background-color: transparent;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 600;
    list-style: none;
    font-style: normal;
    margin-right: 20px;
    display: inline-block;
    cursor: pointer;
}

button.sellnow {
    border: 1px solid #000;
    background-color: transparent;
    text-decoration: none;
}

.hero-sec-btn {
    padding: 20px 0 40px;
}

.happy-clients {
    display: flex;
    margin-top: 8px;
}

.client-ratings {
    margin-right: 30px;
}

.client-ratings h3 {
    font-size: 36px;
    line-height: 46px;
    text-align: center;
    font-family: "Public Sans", sans-serif;
    font-weight: 600;
}

.client-ratings span {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    color: #606060;
}

.hero-img-1 img {
    height: 100%;
    width: 250px;
    border-radius: 25px;
}

.right-section {
    padding-right: 70px !important;
    position: relative;
    display: block !important;
    visibility: visible !important;
}

.hero-img-1 {
    position: absolute;
    bottom: 0;
    right: -80px;
}

.right-section .swiper-container {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;

    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
}

.filter-section {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 20px;
}

.category-list {
    list-style: none;

}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    bottom: 10px;
    width: 44px;
    height: 44px;
    /* margin-inline: 20px; */
}

.right-section img {
    height: 390px !important;
    width: 395px !important;
    border-radius: 25px;
    box-shadow: 0 29px 55px 0 #43ACE942;
    object-fit: cover;
    margin-bottom: 70px;
}

.right-section .swiper-slide {
    background-color: transparent;
}

.right-section .swiper-button-prev::after,
.right-section .swiper-button-next::after {
    content: '' !important;

}

.right-section .swiper-arrows {
    position: absolute;
    right: 48%;
    bottom: -14px;
    background-color: #fff;
    height: 40px;
    width: 85px;
    border-radius: 12px;
    box-shadow: 0 43px 74px 0 #0f0f0f1f;
}

.right-section .swiper-arrows .swiper-button-prev {
    left: 0;
}

.right-section .swiper-arrows .swiper-button-next {
    right: 0;
}

.right-section .swiper-arrows div {
    width: 8% !important;
    height: 101%;
    font-size: larger;
}

/* <---homehero---> */

/* featuredproduct */

.featured-product {
    overflow: hidden;
    padding: 50px 0px;
    background-color: #F1F1F1;
}

.page-item {
    cursor: pointer;

}

.page-item.active {
    background-color: transparent !important;
    padding: 0px !important;
}

.pal-1 {
    background-color: transparent !important;
}

.featured-product img {
    height: 100%;
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.featured-product {
    position: relative;
}

.featured-product .swiper-slide {
    border-radius: 20px;
    padding: 18px;
    /* box-shadow: 0 49px 89px 0 #0000001A; */
    box-shadow: var(--bs-box-shadow) !important;
    background-color: #fff;
}



.featured-product .swiper-arrows {
    position: absolute;
    right: 45%;
    bottom: 50px;
    background-color: #fff;
    height: 40px;
    width: 85px;
    border-radius: 12px;
    box-shadow: 0 43px 74px 0 #0f0f0f1f;
}

.featured-product .swiper-arrows .swiper-button-prev {
    left: 0;
}

.featured-product .swiper-arrows .swiper-button-next {
    right: 0;
}

.featured-product .swiper-arrows div {
    width: 50% !important;
    height: 100%;
}

.pro-image-main {
    margin-bottom: 10px;
    position: relative;
    object-fit: contain;
    height: 400px;
}

.pro-image {
    margin-bottom: 20px;
    position: relative;
    object-fit: contain;
    height: 300px;
    border-radius: 5px;
    border: 2px solid #fff;
}

.pro-price {
    line-height: 38px;
}

.pro-price span {
    color: #606060;
}

.text-color-black {
    color: #23262F !important;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
}

.pro-image .counter {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(28, 29, 32, 0.55);
    padding: 12px 16px;
    border-radius: 12px;
    z-index: 10;
    width: clamp(260px, 80%, 380px);
    box-sizing: border-box;
}

/* Counter width presets */
@media (min-width: 1200px) {
    .pro-image .counter {
        width: 300px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .pro-image .counter {
        width: 250px;
    }
}

@media (max-width: 767px) {
    .pro-image .counter {
        width: calc(100% - 32px);
        min-width: 220px;
    }
}

.pro-image .counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
    align-items: stretch;
}

.pro-image .counter-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.pro-image .counter-value {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    display: block;
    margin-bottom: 4px;
}

.pro-image .counter-label {
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    text-align: center;
    white-space: nowrap;
    display: block;
}

.pro-image .counter span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

.owner-info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 12px;
}

.owner-info-row img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.owner-info-row span {
    font-size: 14px;
    color: #23262F;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Mobile responsive for counter */
@media (max-width: 1024px) {
    .pro-image .counter {
        padding: 10px 14px;
    }

    .pro-image .counter-grid {
        gap: 10px;
    }

    .pro-image .counter-value {
        font-size: 22px;
    }

    .pro-image .counter-label {
        font-size: 9px;
    }
}

@media (max-width: 768px) {
    .pro-image .counter {
        padding: 8px 12px;
        bottom: 8px;
    }

    .pro-image .counter-grid {
        gap: 8px;
    }

    .pro-image .counter-value {
        font-size: 18px;
    }

    .pro-image .counter-label {
        font-size: 8px;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .pro-image .counter {
        padding: 6px 10px;
        bottom: 6px;
        min-width: 240px;
    }

    .pro-image .counter-grid {
        gap: 6px;
    }

    .pro-image .counter-value {
        font-size: 16px;
    }

    .pro-image .counter-label {
        font-size: 7px;
        letter-spacing: 0.2px;
    }
}

@media (max-width: 360px) {
    .pro-image .counter {
        padding: 5px 8px;
        bottom: 5px;
        border-radius: 5px;
    }

    .pro-image .counter-grid {
        gap: 4px;
    }

    .pro-image .counter-value {
        font-size: 14px;
    }

    .pro-image .counter-label {
        font-size: 6px;
        letter-spacing: 0.1px;
    }
}

.pro-title h2 {
    font-size: 20px;
    text-align: start;
    font-weight: 600;
    line-height: 36px;
    overflow: hidden;
    word-break: break-all;
    height: 30px;
    font-family: "Inter", sans-serif;
}

.pro-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pro-price span {
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

.pro-meta .price {
    font-size: 17px;
    font-weight: 500;
    font-family: "poppins", sans-serif;
    color: #23262F;
    display: flex;
    align-items: center;
}

.pro-meta .price i {
    background-color: #23262F;
    border-radius: 100%;
    padding: 3px 5px;
    color: #fff;
    font-size: 12px;
    margin-right: 5px;
}

.pro-bid-btn a {
    color: #fff;
    background-color: #23262F;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    font-family: "Inter", sans-serif;
}

.swiper-button-prev {
    position: relative;
}

.swiper-button-prev::after {
    content: '';
    /* position: absolute;
    height: 18px;
    top: 13px;
    width: 1px;
    background-color: #EDEDED;
    right: 0; */
}

.swiper-arrows i {
    color: #23262F;
}

.topbid .bid-card img {
    width: 75px;
    height: 75px;
    border-radius: 100%;
}

.featured-heading h2 {
    text-align: center;
    color: #23262F;
    font-family: "Inter", sans-serif;
    font-size: 35px;
    font-weight: 800;
    line-height: 48px;
}

.featured-heading {
    margin-bottom: 50px;
}

/* featuredproduct */

/* brwosecategories */

.browsecategories {
    background-color: #F9F9F9;
    padding: 50px 70px;
    color: #fff;
}

.browsecategories img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}


.cate-cards-parent {
    margin-bottom: 25px;
}

.browsecategories .image-2 {
    display: grid;
    gap: 10px;
    padding: 0 10px 0 5px;
}

.browsecategories .image-1 img {
    height: 100%;
    height: 235px;
}

.cate-card {
    background-color: #fff;
    padding: 15px 15px;
    border-radius: 10px;
    box-shadow: 5px 10px 30px 0px rgba(0, 0, 0, 0.05);



}

.images-portion {
    margin-bottom: 10px;
}

.cate-title h2 {
    font-size: 20px;
    /* //  line-height:15px; */
    font-weight: 700;
    font-family: "Inter", sans-serif;
    margin-bottom: 0;

    /* word-break: break-all; */
    margin-block: 10px;


    text-transform: uppercase;
    white-space: nowrap;
    /* Prevents text from wrapping */
    overflow: hidden;
    /* Hides anything that overflows */
    text-overflow: ellipsis;

}

.cate-title a {
    text-decoration: none;
    color: #23262F;
}

.cate-lisitng span {
    font-size: 16px;
    color: #606060;
    font-weight: 400;
    line-height: 18px;
    font-family: "Inter", sans-serif;
}

.cate-heading-parent {
    margin-bottom: 30px;
}

.cate-heading h2 {
    font-family: "Inter", sans-serif;
    font-size: 35px;
    font-weight: 800;
    line-height: 48px;
    margin-bottom: 0;
    color: #23262F;
}

.cate-padd {
    padding: 16px 25px !important;
    font-size: 18px !important;
}

.categories-btn {
    display: flex;
    align-items: center;
    justify-content: end;
}

.categories-btn a {
    color: #fff;
    background-color: #23262F;
    padding: 10px 14px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    font-family: "Inter", sans-serif;
}

/* brwosecategories */

/* topbid */

.topbid {
    padding: 80px 70px;
    background-color: #23262F;
    display: none;
}

.topbid thead th {
    background-color: transparent !important;
    color: #fff !important;
    border-bottom: 1px solid #454A59 !important;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.topbid tbody td {
    background-color: transparent !important;
    border-bottom: 1px solid #454A59;
}

.topbid .bid-card .bid-parent-table {
    display: flex;
}

.topbid .bid-card .bid-info {
    padding-left: 15px;
}

.bid-info p {
    color: #C2C3CB;
}

.bid-info h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    color: #fff;
    font-family: "Inter", sans-serif;
}

p.bid-rank {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Inter", sans-serif;
    color: #43ACE9;
}

.bid-price {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: #fff;
    font-family: "Inter", sans-serif;
    display: flex;
    align-items: center;
}

.bid-price i {
    background-color: #fff;
    color: #23262F;
    padding: 4px 6px;
    border-radius: 100%;
    margin-right: 5px;
    font-size: 12px;
}

.bid-date {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: #fff;
    font-family: "Inter", sans-serif;
    display: flex;
    align-items: center;
}

.bid-end {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Inter", sans-serif;
    color: #E94343;
}

.bid-place-btn a {
    background-color: #fff;
    color: #23262F;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    font-family: "Inter", sans-serif;
}

.bid-place-btn {
    display: flex;
}

.main-heading {
    margin-bottom: 40px;
}

.main-heading h2 {
    text-align: center;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 48px;
}

.topbid .dt-empty {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.topbid ul.pagination li button {
    background-color: #fff !important;
    font-family: "Poppins", sans-serif;
}

.topbid .active>.page-link {
    background-color: #23262F !important;
    border: 1px solid#fff !important;
    font-family: "Poppins", sans-serif;
}

.topbid .bid-card-parent {
    width: 40%;
}

.dt-length label,
.dt-search label,
div#topbid_info {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.bid-price span {
    padding-right: 5px;
}

/* topbid */

/* marketplace */

.mkt-img img {
    width: 100%;
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
}

.mkt-child {
    padding-bottom: 25px;
}

.mkt-img {
    margin-bottom: 20px;
    position: relative;
}

.marketplace {
    padding: 70px 70px;
    background-color: #F9F9F9;
}

.mkt-plc-hdig {
    margin-bottom: 80px;
}

.mkt-plc-hdig h2 {
    color: #23262F;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 48px;
}

.market-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
}

h3 a {
    color: #000;
    text-decoration: none;
}

.mkt-pro-head h3 {
    font-size: 20px;
    text-align: start;
    font-weight: 700;
    line-height: 28px;
    font-family: "Inter", sans-serif;
    color: #23262F !important;
    overflow: hidden;
    word-break: break-all;
    height: 30px;

}

.mkt-pro-head h3 a {
    color: #23262F !important;
    text-transform: uppercase;
}

.mkt-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mkt-bid-price i {
    background-color: #23262F;
    border-radius: 100%;
    padding: 3px 5px;
    color: #fff;
    font-size: 12px;
    margin-right: 5px;
}

.mkt-crt-bid .crnt-bid {
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

.mkt-bid-price {
    font-size: 16px;
    font-weight: 500;
    font-family: "poppins", sans-serif;
    color: #23262F;
    display: flex;
    align-items: center;
}

.mkt-bid-price span.price {
    padding-right: 5px;
    font-size: 18px;
}

.mkt-bid-btn a {
    color: #fff;
    background-color: #23262F;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    font-family: "Inter", sans-serif;
}

.market-card {
    box-shadow: 0px 45px 89.4px 0px rgba(0, 0, 0, 0.10);
}


.mkt-child {
    padding-bottom: 25px;
}

/* marketplace */

/* startselling */

.start-selling {
    padding: 40px 70px 80px;
    background-color: #F9F9F9;
}

.start-selling-parent {
    background-color: #23262F;
    padding-inline: 50px;
    border-radius: 50px;
    min-height: 390px;
    align-content: center;
}

.start-slelling-left h2 {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 72px;
    margin-bottom: 20px;
}



.start-slelling-left p {
    color: #fff;
    margin-bottom: 40px;
    max-width: 50ch;
}

.start-slelling-left {
    padding-inline-start: 50px;
}

.selling-btns .exp-more {
    color: #23262F;
    background-color: #fff;
    padding: 10px 14px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    font-family: "Inter", sans-serif;
}

.selling-btns .start-sell-now {
    color: #fff;
    background-color: transparent;
    padding: 10px 14px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    font-family: "Inter", sans-serif;
    border: 1px solid #fff;
}

.selling-btns {
    display: flex;
    gap: 20px;
}

.selling-btns {
    display: flex;
    gap: 20px;
}



.start-slelling-right img {
    height: 100%;
    width: 100%;
    border-radius: 20px;
}

/* startselling */

/* marketherosec */


.mkt-hero-section {
    background-color: #F9F9F9;
    padding: 80px 0;
    overflow-x: hidden;
    /* // background-image: url(../images/dot-ornament.svg); */
    background-repeat: no-repeat;
    background-size: contain;
}

.our-partner {
    background-image: url(../images/our-partner.svg);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: auto;
    z-index: 1;
    position: relative;
}

/* Partner page improvements */
.partner-image-container {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Ensure proper spacing and prevent overlapping */
.our-partner .row {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.our-partner .row.mb-5 {
    margin-bottom: 3rem !important;
}

.our-partner .container {
    position: relative;
    z-index: 2;
}

/* Responsive improvements for partner images */
@media (max-width: 768px) {
    .partner-image-container {
        height: 250px !important;
        margin-bottom: 2rem;
    }

    .our-partner .row {
        margin-bottom: 2rem;
    }

    .our-partner .row.g-4 {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }
}

@media (max-width: 576px) {
    .partner-image-container {
        height: 200px !important;
    }

    .our-partner .row.g-4 {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }
}

.about-bg-image-top {
    background-image: url(../images/about-ornament.svg);
    background-repeat: no-repeat;
    background-position: top right;

}

h1.mkt-sec {
    font-family: "Inter", sans-serif;
    font-size: 46px;
    font-weight: 800;
    line-height: 64px;
    color: #23262F;
    margin-bottom: 15px;
}

.mkt-hero-section h1 {
    width: 42%;
    text-align: center;
    justify-self: center;
}

.mkt-hero-section p {
    width: 40%;
    text-align: center;
    justify-self: center;
}

.mkt-hero-section .mkt-hero-parent {
    display: grid;
}

/* marketherosec */

/* marketplacepagemktsec */

.marketplace-product {
    background-color: #F1F1F1;
    padding: 60px 70px;
}

.mkt-left-parent {
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 15px;
}

.mkt-cate-heading h2 {
    font-size: 22px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    margin-bottom: 0;
}

.mkt-left-parent form .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mkt-left-parent form .category-list label {
    font-size: 16px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    line-height: 20px;
    cursor: pointer;
}


.mkt-left-parent form .category-list input[type="checkbox"] {
    height: 20px;
    width: 20px;
    margin-right: 5px;
    border-radius: 2px;

    appearance: none;
    position: relative;
    cursor: pointer;
}

.mkt-left-parent form .category-list input[type="checkbox"]:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #606060;
    background-color: #fff;
    /* Default red color */
    top: 0;
    left: 0;
    transition: background-color 0.2s ease-in-out;
}

.mkt-left-parent form .category-list input[type="checkbox"]:checked:before {
    background-color: #43ACE9;
    /* Change to green when checked */
    border-color: #43ACE9;
}

.mkt-left-parent form .category-list input[type="checkbox"]:checked:after {
    content: '';
    position: absolute;
    width: 12px;
    height: 7px;
    border: 2px solid white;
    border-top: none;
    border-right: none;
    top: 5px;
    left: 4px;
    transform: rotate(-45deg);
}


.mkt-left-parent form .category-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.mkt-cate-heading {
    margin-bottom: 20px;
}

.category-filter,
.status-filter {
    margin-bottom: 40px;
}

.mkt-left-parent input[type="checkbox"]:checked+label {
    color: #43ACE9;
}

.price-heading h2 {
    font-size: 22px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    margin-bottom: 0;
}

.price-heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.price-heading select {
    border: 1px solid #24282B;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

.product {
    margin: 10px 0;
}

.filter-container {
    margin-bottom: 20px;
}

.price-range {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.product-list {
    list-style-type: none;
    padding: 0;
}

.product-list li {
    margin: 10px 0;
}

input#priceRange {
    width: 100%;
}

#priceRange::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: #43ACE9;
    /* Track color gradient */
    border-radius: 5px;
}

#priceRange::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #43ACE9;
    /* Thumb color */
    cursor: pointer;
    appearance: none;
    margin-top: -5px;
    /* Center the thumb on the track */
}

.selected-card {
    border: 3px solid #000;
    /* Change border color as needed */
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
}

#priceRange::-moz-range-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: #43ACE9;
    /* Track color gradient */
    border-radius: 5px;
}

#priceRange::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #43ACE9;
    /* Thumb color */
    cursor: pointer;
}

#priceRange::-ms-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

#priceRange::-ms-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #43ACE9;
    /* Thumb color */
    cursor: pointer;
}

.mkt-page-plc-hdig {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.mkt-page-plc-hdig .page-link {
    background-color: transparent;
    border: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #23262F;
}


.mkt-page-plc-hdig h2 {
    font-family: "Inter", sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 48px;
    color: #23262F;
    margin-bottom: 0;
}

.filter-parent button {
    border: #23262F;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    background-color: #23262F;
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
}

.filter-parent button i {
    margin-left: 10px;
}

.mkt-img {
    position: relative;
    height: 300px;
}

.mkt-img .counter {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(28, 29, 32, 0.85);
    padding: 12px 16px;
    border-radius: 12px;
    z-index: 10;
    width: clamp(260px, 80%, 380px);
    box-sizing: border-box;
}

/* Counter width presets */
@media (min-width: 1200px) {
    .mkt-img .counter {
        width: 300px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .mkt-img .counter {
        width: 250px;
    }
}

@media (max-width: 767px) {
    .mkt-img .counter {
        width: calc(100% - 32px);
        min-width: 220px;
    }
}

.mkt-img .counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
    align-items: stretch;
}

.mkt-img .counter-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.mkt-img .counter-value {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    display: block;
    margin-bottom: 4px;
}

.mkt-img .counter-label {
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    text-align: center;
    white-space: nowrap;
    display: block;
}

.mkt-img .counter span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    padding: 0 2px;
    text-transform: uppercase;
}

/* Mobile responsive for mkt-img counter */
@media (max-width: 1024px) {
    .mkt-img .counter {
        padding: 10px 14px;
    }

    .mkt-img .counter-grid {
        gap: 10px;
    }

    .mkt-img .counter-value {
        font-size: 22px;
    }

    .mkt-img .counter-label {
        font-size: 9px;
    }
}

@media (max-width: 768px) {
    .mkt-img .counter {
        padding: 8px 12px;
        bottom: 8px;
    }

    .mkt-img .counter-grid {
        gap: 8px;
    }

    .mkt-img .counter-value {
        font-size: 18px;
    }

    .mkt-img .counter-label {
        font-size: 8px;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .mkt-img .counter {
        padding: 6px 10px;
        bottom: 6px;
        min-width: 240px;
    }

    .mkt-img .counter-grid {
        gap: 6px;
    }

    .mkt-img .counter-value {
        font-size: 16px;
    }

    .mkt-img .counter-label {
        font-size: 7px;
        letter-spacing: 0.2px;
    }
}

@media (max-width: 360px) {
    .mkt-img .counter {
        padding: 5px 8px;
        bottom: 5px;
        min-width: 200px;
    }

    .mkt-img .counter-grid {
        gap: 4px;
    }

    .mkt-img .counter-value {
        font-size: 14px;
    }

    .mkt-img .counter-label {
        font-size: 6px;
        letter-spacing: 0.1px;
    }
}

.mkt-page-plc-hdig .page-link.active {
    background-color: #43ACE9;
    border-radius: 5px;
    color: #ffff;
}

/* marketplacepagemktsec */

/* productdetailspage */
.product-detail h2 {
    color: #23262F;
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 52px;
}

.product-back-and-head h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    font-family: "Inter", sans-serif;
    color: #23262F;
    margin-bottom: 0;
}

.product-back-and-head {
    display: flex;
    align-items: center;
}

.prodcut-detail-links {
    background-color: #F9F9F9;
    padding: 80px 70px 20px;
}

.product-back-and-head a i {
    padding: 10px 13px;
    background-color: #EDEDED;
    color: #23262F;
    border-radius: 100%;
    margin-right: 15px;
}

.product-copy-and-view {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}

.product-copy-and-view span {
    padding: 10px 20px;
    border-radius: 6px;
    background-color: #43ACE933;
    color: #43ACE9;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.product-copy-and-view span i {
    margin-right: 10px;
}

.product-copy-and-view a i {
    margin-right: 10px;
}

.product-copy-and-view a,
.product-copy-and-view button {
    padding: 10px;
    border-radius: 6px;
    background-color: #EDEDED;
    color: #23262F;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: none transparent;
}

.product-images-parent img {
    height: 100%;
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
}

.product-images-parent .product-main-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.product-images-album {
    padding: 20px;

}

.swiper-wrapper .swiper-slide {
    cursor: default;
}

section.product-image-and-brief {
    background-color: #FAFAFA;
    padding: 20px 70px 80px;

}

.products-brief-parent {
    box-shadow: 17.561px 17.561px 61.057px 0px rgba(0, 0, 0, 0.12);
    padding: 40px;
    border-radius: 20px;
}

.product-images-album .swiper-slide {
    background-color: transparent;
}

.product-images-parent {
    padding: 0 20px;
}

.product-details-brief-parent {
    padding: 0 20px;
}

.product-details-brief-parent .product-heading {
    font-size: 38px;
    font-weight: 700;
    color: #23262F;
    font-family: "Inter", sans-serif;
    margin-bottom: 30px;
}

.product-detail {
    margin-bottom: 40px;
}

.owned-by-and-favoruite {
    margin-bottom: 30px;
}

.owned-by-and-favoruite .customer-profile {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 100%;
}

.owned-by-and-favoruite .owned {
    display: flex;
    align-items: center;
}

.owned-by-and-favoruite .customer-name .owner {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    font-family: "Inter", sans-serif;
    color: #606060;
}

.owned-by-and-favoruite .customer-name .name {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    margin-bottom: 0;
    color: #23262F;
    text-transform: capitalize;
}

.owned-by-and-favoruite .customer-name {
    display: grid;
    gap: 10px;
}

.owned-by-and-favoruite {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.owned-by-and-favoruite .favourite i {
    background-color: #EDEDED;
    font-size: 22px;
    padding: 10px;
    border-radius: 5px;
}

.bid-rank-and-time {
    display: flex;
    align-items: center;
    background-color: #F1F1F1;
    padding: 30px;
    border-radius: 10px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.bid-rank-and-time .rank {
    font-size: 16px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    line-height: 20px;
    color: #606060;
}

.bid-price-and-rank {
    display: grid;
    gap: 10px;
}

.bid-rank-and-time .price {
    font-size: 28px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    line-height: 36px;
    color: #23262F;
    display: flex;
    align-items: center;
}

.bid-rank-and-time .price i {
    font-size: 18px;
    padding: 4px 8px;
    background-color: #23262F;
    color: #F1F1F1;
    border-radius: 100%;
    margin-right: 8px;
}

.fav-btn {
    border: 0;
    background-color: #EDEDED;
    padding: 10px;
    border-radius: 10px;
}

.bid-rank-and-time .price-no {
    margin-right: 8px;
}

.bid-time-and-date {
    display: grid;
    gap: 10px;
}

.bid-rank-and-time .endin {
    font-size: 16px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    line-height: 20px;
    color: #606060;
    text-align: end;
}

.bid-rank-and-time .date {
    font-size: 18px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    line-height: 24px;
    color: #23262F;
    text-align: end;
    margin-bottom: 0;
}

.amount {
    color: #000;
    text-decoration: none;
}

.currency-and-price {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #C2C3CB;
    width: 100%;
    font-size: 14px;
}

.currency-and-price p {
    margin-bottom: 0;
    font-size: 28px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    line-height: 36px;
    color: #C2C3CB;
}

.bid-place-button .place-bid {
    background-color: #23262F;
    border-radius: 10px;
    width: 100%;
    padding: 10px 0;
    color: #FFFFFF;
    border: 1px solid #23262F;
    font-size: 24px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    line-height: 32px;
    margin-bottom: 10px;
}

.min-bid-and-estimate .minimum-bid,
.min-bid-and-estimate .estimate-bid {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    font-family: "Inter", sans-serif;
    color: #606060;
}

.min-bid-and-estimate {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-detailed-info {
    background-color: #F9F9F9;
    padding: 0 70px 80px;
}

.product-detailed-info-parent .details,
.product-detailed-info-parent .description {
    font-size: 28px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    line-height: 36px;
    color: #23262F;
    display: flex;
    align-items: center;
}

.product-detailed-info-parent .description-paragraph {
    color: #606060;
    margin-bottom: 60px;
}

.years-and-location .condition-time,
.years-and-location .years-no,
.years-and-location .location {
    border-radius: 10px;
    background-color: #F1F1F1;
}

.years-and-location .condition-time,
.years-and-location .years-no {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Inter", sans-serif;
    color: #606060;
    display: flex;
    justify-content: space-between;
    padding: 15px 10px;
}

.years-and-location .location {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Inter", sans-serif;
    color: #23262F;
    display: flex;
    align-items: center;
    padding: 15px 10px;
    gap: 10px;
}

.years-and-location .no,
.years-and-location .time {
    color: #23262F;
    font-weight: 600;
}

.years-and-location i {
    color: #C2C3CB;
}

.years-and-location .location {
    font-weight: 600;
}

.years-and-location .detail-1 {
    margin-bottom: 40px;
}

.history-user .user-profile-history {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 100%;
    margin-right: 15px;
}

.history-user-profile .username-and-date .history-user-name {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    font-family: "Inter", sans-serif;
    color: #23262F;
    margin-bottom: 0;
}

.history-user-profile .username-and-date .date {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Inter", sans-serif;
    color: #606060;
}

.history-user .history-user-profile {
    display: flex;
    align-items: center;
}

.history-user {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history-user-payAmount {
    display: flex;
    align-items: center;
}

.history-no {
    margin-right: 5px;
}

.history-user-payAmount .history-no,
.history-user-payAmount .history-currency {
    color: #5DC14B;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    font-family: "Inter", sans-serif;
    margin-bottom: 0;
}

.history-user.parent {
    margin-bottom: 25px;
}

.bid-history-parent {
    padding: 20px;
    background-color: #FAFAFA;
    border-radius: 20px;
    box-shadow: 18px 18px 60px 0 #0000001F;
    max-height: 320px;
    display: flex;
    flex-direction: column;
}

.bid-history-header {
    position: sticky;
    top: 0;
    background-color: #FAFAFA;
    padding-bottom: 10px;
    z-index: 2;
}

.bid-history-scroll {
    overflow-y: auto;
    margin-right: -4px;
    padding-right: 4px;
    scrollbar-width: none;
}

.bid-history-scroll::-webkit-scrollbar {
    width: 0;
}

/* createpassword */

.create-passowrd {
    background-color: #F9F9F9;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.createNewPassword {
    background-color: #FAFAFA;
    box-shadow: 17px 17px 61px 0 #00000030;
    border-radius: 20px;
    padding: 20px;
}

.password-fields.child {
    margin-bottom: 35px;
}

.createNewPassword h1 {
    font-size: 36px;
    line-height: 40px;
    font-family: "Inter", sans-serif;
    color: #23262F;
    font-weight: 700;
    margin-bottom: 50px;
}

.password-fields label {
    width: 100%;
    margin-bottom: 5px;
    font-family: "Inter", sans-serif;
    color: #23262F;
    font-size: 18px;
    font-weight: 600;
}

.password-fields input {
    width: 100%;
    height: 64px;
    border-radius: 12px;
    background-color: #FAFAFA;
    border: 1px solid #C2C3CB;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Inter", sans-serif;
}

.password-requirement {
    color: #999999;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Inter", sans-serif;
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 30px;
}

.password-requirement li {
    margin-bottom: 10px;
}

.password-requirement li i {
    margin-right: 10px;
}

.form-button-1 {
    width: 100%;
    height: 66px;
    border: 1px solid #23262F;
    background-color: #23262F;
    color: #fff;
    border-radius: 12px;
    font-size: 18px;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

.confirmPasswordMessage h1 {
    font-size: 36px;
    line-height: 40px;
    font-family: "Inter", sans-serif;
    color: #23262F;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.confirmPasswordMessage p {
    width: 100%;
    margin-bottom: 5px;
    font-family: "Inter", sans-serif;
    color: #606060;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}

.confirmPasswordMessage a {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.confirmPasswordThumbsUp {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

/* productdetailspage */

/* loginmodal */
.login-form-step {
    display: block;
}

.login-form-step.active {
    display: block;
    background-color: transparent !important;
}

.login-alert-message {
    color: #F66666;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Inter", sans-serif;
    margin-bottom: 20px;
}

.loginModal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000a8;
    z-index: 100001;
}

.welcomeModal {
    z-index: 100002;
}

.loginModal-content {
    background-color: #F9F9F9;
    margin: 75px auto;
    padding: 20px;
    width: 580px;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

.loginModal #closeLoginModal {
    position: absolute;
    cursor: pointer;
    right: 20px;
}

.loginModal h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    font-family: "Inter", sans-serif;
    color: #23262F;
}

.loginModal #closeLoginModal i {
    background-color: #EDEDED;
    color: #23262F;
    padding: 6px 8px;
    font-size: 12px;
    border-radius: 100%;
}

.loginModal #loginStep button,
.loginModal #loginStep2 select,
.loginModal #loginStep2 input,
.loginModal #loginEmail input,
.loginModal #forgetEmailPasswordLogin input {
    margin-bottom: 28px;
    width: 100%;
    border-radius: 12px;
    height: 68px;
    border: 1px solid #FAFAFA;
    background-color: #FAFAFA;
    font-size: 18px;
    color: #23262F;
    box-shadow: 15px 19px 50px 0 #0000001c;
    font-weight: 600;
    line-height: 24px;
    padding: 0 20px;
}

.step-heading-and-back {
    border-bottom: 1px solid #EDEDED;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.loginModal #backPhoneLogin,
.loginModal #backValidationLogin,
.loginModal #backOtpLogin {
    background-color: transparent;
    border: 0;
    height: 0;
    position: absolute;
    left: 20px;
}

.loginModal #backPhoneLogin i,
.loginModal #backValidationLogin i,
.loginModal #backOtpLogin i {
    background-color: #EDEDED;
    color: #23262F;
    padding: 6px 8px;
    font-size: 12px;
    border-radius: 100%;
}

.login-form-step h2 {
    color: #23262F;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    text-align: left;
    font-size: 28px;
    line-height: 36px;
}

.login-form-step .heading-margin {
    margin-bottom: 30px;
}

.login-form-step #otp-container-login {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.login-form-step #otp-container-login input {
    width: 100%;
    height: 68px;
    text-align: center;
    border-radius: 12px;
    font-size: 18px;
    background-color: #FAFAFA;
    border: 1px solid #FAFAFA;
    box-shadow: 12px 19px 50px 0 #00000014;
    font-weight: 600;
    line-height: 24px;
}

.loginModal #resendOtpButtonLogin {
    background: #43ACE9;
    border: 1px solid #43ACE9;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 12px;
}

#otpTimerLogin {
    color: #F66666;
}

.forget-password {
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
    color: #43ACE9;
    font-size: 16px;
    font-weight: 600;
    background-color: transparent;
    border: 0;
}

.loginModal .forgetPasswordimg img {
    width: 25%;
    margin-bottom: 30px;
}

.login-alert-message-login {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #F66666;
    margin-bottom: 20px;
}

.loginContinueIcon {
    position: relative;
}

.loginContinueIcon img {
    position: absolute;
    left: 20px;
    top: 15px;
}

/* signupmodal */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000a8;
    justify-content: center;
    align-items: center;
}

.signupModal .individual-busniess {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 60px;
}

.signupModal .individual {
    border-radius: 12px;
    background-color: #FAFAFA;
    box-shadow: 15px 19px 50px 0 #00000030;
    border: 0;
    padding: 60px 0;
}

.signupModal .busniess {
    border-radius: 12px;
    background-color: #FAFAFA;
    box-shadow: 15px 19px 50px 0 #00000030;
    border: 60px 0;
}

.company-container {
    display: none;
}


.individual img,
.busniess img {
    margin-bottom: 25px;
}

.signupmodal-content {
    background-color: #F9F9F9;
    padding: 20px;
    border-radius: 10px;
    width: 600px;
    position: relative;
}

.signUpContinueIcon {
    position: relative;
}

.signUpContinueIcon img {
    position: absolute;
    left: 20px;
    top: 15px;
}

.signupModal {
    padding: 0;
}

#SignupModal h2 {
    color: #23262F;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    text-align: left;
    font-size: 28px;
    line-height: 36px;
}

#SignupModal .signUpContinueIcon,
#SignupModal #stepEmail input,
#SignupModal .steps-input-select input,
#SignupModal .steps-input-select select {
    margin-bottom: 20px;
    width: 100%;
    border-radius: 12px;
    height: 68px;
    border: 1px solid #FAFAFA;
    background-color: #FAFAFA;
    font-size: 18px;
    color: #23262F;
    box-shadow: 15px 19px 50px 0 #0000001c;
    font-weight: 600;
    line-height: 24px;
    padding: 0 20px;
}

#SignupModal .steps-input-select label {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #23262F;
    font-family: "Inter", sans-serif;
}

#SignupModal .alert-message,
#SignupModal #emailOtpTimer,
#SignupModal #otpTimer {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #F66666;
    margin-bottom: 20px;
}

#SignupModal #backEmail,
#SignupModal .backbuttonSignup {
    background-color: transparent;
    border: 0;
    height: 0;
    position: absolute;
    left: 20px;
}

#SignupModal #backEmail i,
#SignupModal .backbuttonSignup i {
    background-color: #EDEDED;
    color: #23262F;
    padding: 6px 8px;
    font-size: 12px;
    border-radius: 100%;
}

#SignupModal .heading-margin {
    margin-bottom: 30px;
}

#SignupModal #emailOtp-container,
#SignupModal #otp-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

#SignupModal #emailOtp-container input,
#SignupModal #otp-container input {
    width: 100%;
    height: 68px;
    text-align: center;
    border-radius: 12px;
    font-size: 18px;
    background-color: #FAFAFA;
    border: 1px solid #FAFAFA;
    box-shadow: 12px 19px 50px 0 #00000014;
    font-weight: 600;
    line-height: 24px;
}

#SignupModal #resendEmailOtpButton,
#SignupModal #resendOtpButton {
    background: #43ACE9;
    border: 1px solid #43ACE9;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 12px;
}

#SignupModal .verified-img img {
    width: 25%;
    margin-bottom: 30px;
}

#SignupModal .uploaded-profile-image img {
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
    object-fit: cover;
    border-radius: 100%;
}

#SignupModal #continueToUpload {
    position: relative;
}

#SignupModal #continueToUpload img {
    position: absolute;
    left: 20px;
}

#SignupModal #doItLater {
    background: transparent;
    border: 0;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
    color: #999999;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 12px;
}

.form-button-2 {
    width: 100%;
    height: 66px;
    border: 1px solid #23262F;
    background-color: transparent;
    color: #23262F;
    border-radius: 12px;
    font-size: 18px;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

#SignupModal #changePicture {
    gap: 10px;
}


.form-step.active {
    display: block;
}

.success-message {
    color: green;
}

/* OTP input box styles */
.otp-input {
    width: 50px;
    padding: 10px;
    font-size: 20px;
    text-align: center;
    margin: 5px;
}

#otp-container-login {
    display: flex;
    justify-content: center;
}

.verification-icon {
    font-size: 50px;
    color: green;
}

#resendOtpButtonLogin,
#resendSignupEmailOtp {

    margin-top: 10px;
}

#closeModal {
    position: absolute;
    cursor: pointer;
    right: 20px;
}

#closeModal i {
    float: right;
    font-size: 20px;
    cursor: pointer;
    background-color: #EDEDED;
    color: #23262F;
    padding: 6px 8px;
    font-size: 12px;
    border-radius: 100%;
}

#SignupModal #signuploginStep button {
    margin-bottom: 20px;
    width: 100%;
    border-radius: 12px;
    height: 68px;
    border: 1px solid #FAFAFA;
    background-color: #FAFAFA;
    font-size: 18px;
    color: #23262F;
    box-shadow: 15px 19px 50px 0 #0000001c;
    font-weight: 600;
    line-height: 24px;
    padding: 0 20px;
}

#SignupModal h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    font-family: "Inter", sans-serif;
    color: #23262F;
    text-align: center;
}

/* login/signup */

.dashboard-listing .listing-child {
    margin-bottom: 20px;
}

.dashboard-records {
    padding: 80px 70px 20px;
}

.records-box {
    border-radius: 20px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 45px 90px 0 #00000026;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.records-box .score {
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    color: #23262F;
    font-family: "Inter", sans-serif;
}

.records-box img {
    background-color: #DCECFA;
    border-radius: 100%;
    padding: 10px 18px;
}

.records-box .title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #606060;
    font-family: "Inter", sans-serif;
}

.registration-btns-dashboard {
    justify-content: end;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dashboard-nav .nav-item.activemenu {
    padding: 4px;
    background-color: #EDEDED;
    border-radius: 12px;
}

/* .dashboard-nav {
    align-items: center;
} */

/* .dashboard-nav .nav-item {
    margin-right: 10px;
} */

.dashboard-menu .user-amount {
    padding: 13px 10px;
    margin-bottom: 0;
    background-color: #EDEDED;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

a.nav-link {
    font-size: 14px;
}

.dashboard-menu .user-amount i {
    border: 1px solid #23262F;
    padding: 3px 5px;
    font-size: 12px;
    border-radius: 100%;
}

.dashboard-menu .search {
    padding: 13px;
    margin-bottom: 0;
    background-color: #EDEDED;
    border-radius: 10px;
    display: flex;
    border: 0;
    align-items: center;
    gap: 5px;
}

.dashboard-menu .notification {
    padding: 8px;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 10px;
    display: flex;
    border: 0;
    align-items: center;
    gap: 5px;
}

.bid-chart {
    padding: 80px 70px;
}

.highcharts-root {
    width: 100%;
    border-radius: 20px;
}

.highcharts-credits {
    display: none;
}

.date-range-picker {
    display: flex;
    justify-content: end;
    margin-bottom: 20px;
}

.date-range-picker input {
    height: 45px;
    background-color: #F1F1F1;
    border-radius: 10px;
    border: 0;
    padding: 0 10px;
    font-size: 16px;
    line-height: 20px;
    font-family: "Poppins", sans-serif;
}

.user-profile-setting {
    padding: 12px;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 10px;
    display: flex;
    border: 0;
    align-items: center;
    gap: 8px;
}

.user-profile-setting img {
    border-radius: 5px;
}

/* signupmodal */

/* biddingtabs */

.biddings-tabs {
    padding: 80px 70px;
    background-color: #F9F9F9;
}

.bid-tabs-child {
    background-color: #EDEDED;
    padding: 10px;
    border-radius: 10px;
}

.bid-parent {
    height: 100vh;
}

.bid-tabs-child button {
    border-radius: 6px;
    font-size: 16px;
    line-height: 20px;
    color: #606060;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

.bid-tabs-child button.active {
    background-color: #fff !important;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: #23262F;
    font-family: "Inter", sans-serif;
    border: 1px solid #fff;
}

.bid-tabs-child .nav-link:hover {
    color: #43ACE9 !important;
}

.bid-tabs-anchor {
    padding: 0 10px;
}

.bid-main-heading {
    margin: 40px 0;
}

.bid-main-heading h2 {
    color: #23262F;
    font-family: "Inter", sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 48px;
}

.mkt-Mybid-price {
    font-size: 16px;
    font-weight: 500;
    font-family: "poppins", sans-serif;
    color: #5DC14B;
    display: flex;
    align-items: center;
}

.mkt-currentBid-price {
    font-size: 16px;
    font-weight: 500;
    font-family: "poppins", sans-serif;
    color: #F66666;
    display: flex;
    align-items: center;
}

.mkt-bid-win-auction a {
    color: #fff;
    background-color: #5DC14B;
    ;
    padding: 10px 14px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    font-family: "Inter", sans-serif;
}

.mkt-bid-lose-auction a {
    color: #fff;
    background-color: #F66666;
    padding: 10px 14px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    font-family: "Inter", sans-serif;
}


/* listingproduct */

.listing {
    padding: 80px 70px;
    background: #F9F9F9;
}

.listing-main-heading {
    margin-bottom: 40px;
}

.listing-main-heading h2 {
    color: #23262F;
    font-family: "Inter", sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 0;
}

.listing-card {
    border-radius: 12px;
    background-color: #FAFAFA;
    box-shadow: 17.561px 17.561px 61.057px 0px rgba(0, 0, 0, 0.12);
    margin-bottom: 20px;


    padding: 20px;
}

.listing-product-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: #24282B;
    font-family: "Inter", sans-serif;
}


.listing-product-bid-time {
    background-color: #F1F1F1;
    padding: 20px;
    border-radius: 10px;
}

.listing-product-bid-time .listingPrice,
.listing-product-bid-time .listingTime {
    margin-bottom: 0;
}

.listingPrice i {
    background-color: #23262F;
    border-radius: 100%;
    padding: 3px 5px;
    color: #fff;
    font-size: 12px;
    margin-right: 5px;
}

.listingPrice {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #23262F;
    font-family: "Inter", sans-serif;
    display: flex;
    align-items: center;

}

.listingPriceNumber {
    margin-right: 5px;
}

.listingTime {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #23262F;
    font-family: "Inter", sans-serif;
    text-align: end;
}

.edit-promote {
    display: flex;
    align-items: center;
    justify-content: end;
}

.edit-promote .listingPromote {
    margin-right: 25px;
    background-color: #52d4862e;
    color: #32A861;
    padding: 12px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Inter", sans-serif;
}

.edit-promote .listingPromoted {
    margin-right: 25px;
    background-color: #12D18E;
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Inter", sans-serif;
}

.listing-bid-label {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
}

.listing-bid-end-label {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    text-align: end;
}

.listing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.listing-img {
    height: 100%;
}

.button-style-1 {
    padding: 12px 16px;
    border: 1px solid;
    background-color: #43ACE9;
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Inter", sans-serif;
}

.button-style-2 {
    padding: 12px 16px;
    border: 1px solid;
    background-color: #23262F;
    color: #fff;
    border: 1px solid #23262F;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Inter", sans-serif;
}

.button-style-3 {
    padding: 12px 16px;
    border: 1px solid;
    background-color: transparent;
    color: #23262F;
    border: 1px solid #23262F;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Inter", sans-serif;
    text-decoration: none;
}

.button-style-4 {
    padding: 12px 16px;
    border: 1px solid;
    background-color: transparent;
    color: #23262F;
    border: 1px solid #EDEDED;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Inter", sans-serif;
    text-decoration: none;
}

.button-style-5 {
    padding: 12px 16px;
    border: 1px solid;
    background-color: transparent;
    color: #5DC14B;
    border: 1px solid #5DC14B;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Inter", sans-serif;
    text-decoration: none;
}

.button-style-6 {
    padding: 12px 16px;
    border: 1px solid;
    background-color: transparent;
    color: #E94343;
    border: 1px solid #E94343;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Inter", sans-serif;
    text-decoration: none;
}

.button-shine {
    position: relative;
    overflow: hidden;
}

.button-shine::after {
    content: "";
    position: absolute;
    top: -60%;
    left: -120%;
    width: 80%;
    height: 220%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    transform: rotate(25deg);
    opacity: 0;
}

.button-shine:hover::after {
    animation: button-shine-sweep 0.8s ease forwards;
}

.button-shine:hover {
    filter: brightness(1.08);
}

@keyframes button-shine-sweep {
    0% {
        left: -120%;
        opacity: 0;
    }

    20% {
        opacity: 0.7;
    }

    100% {
        left: 160%;
        opacity: 0;
    }
}

.nav-sellnow {
    margin-left: 10px;
}

/* --- Global button shine effect --- */
.button-style-1,
.button-style-2,
.button-style-3,
.button-style-4,
.button-style-5,
.button-style-6,
.sellnow,
.explore-more,
.upload-btn,
.remove-btn,
.transparent-button,
.button-style-2.change-password,
.registration-btns .sellnow,
.navbar-collapse .sellnow,
.nav-sellnow,
.pro-bid-btn a,
.btn,
.btn-dark,
.btn-primary,
.btn-outline-primary,
.btn-outline-dark,
.btn-outline-secondary,
.btn-lg,
.btn-sm {
    position: relative;
    overflow: hidden;
    transition: filter 0.3s ease;
}

.button-style-1::after,
.button-style-2::after,
.button-style-3::after,
.button-style-4::after,
.button-style-5::after,
.button-style-6::after,
.sellnow::after,
.explore-more::after,
.upload-btn::after,
.remove-btn::after,
.transparent-button::after,
.button-style-2.change-password::after,
.registration-btns .sellnow::after,
.navbar-collapse .sellnow::after,
.nav-sellnow::after,
.pro-bid-btn a::after,
.btn::after,
.btn-dark::after,
.btn-primary::after,
.btn-outline-primary::after,
.btn-outline-dark::after,
.btn-outline-secondary::after,
.btn-lg::after,
.btn-sm::after {
    content: "";
    position: absolute;
    top: -70%;
    left: -140%;
    width: 80%;
    height: 240%;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 45%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(20deg);
    opacity: 0;
}

.button-style-1:hover::after,
.button-style-2:hover::after,
.button-style-3:hover::after,
.button-style-4:hover::after,
.button-style-5:hover::after,
.button-style-6:hover::after,
.sellnow:hover::after,
.explore-more:hover::after,
.upload-btn:hover::after,
.remove-btn:hover::after,
.transparent-button:hover::after,
.button-style-2.change-password:hover::after,
.registration-btns .sellnow:hover::after,
.navbar-collapse .sellnow:hover::after,
.nav-sellnow:hover::after,
.pro-bid-btn a:hover::after,
.btn:hover::after,
.btn-dark:hover::after,
.btn-primary:hover::after,
.btn-outline-primary:hover::after,
.btn-outline-dark:hover::after,
.btn-outline-secondary:hover::after,
.btn-lg:hover::after,
.btn-sm:hover::after {
    animation: button-shine-sweep 0.9s ease forwards;
}

.button-style-1:hover,
.button-style-2:hover,
.button-style-3:hover,
.button-style-4:hover,
.button-style-5:hover,
.button-style-6:hover,
.sellnow:hover,
.explore-more:hover,
.upload-btn:hover,
.remove-btn:hover,
.transparent-button:hover,
.button-style-2.change-password:hover,
.registration-btns .sellnow:hover,
.navbar-collapse .sellnow:hover,
.nav-sellnow:hover,
.pro-bid-btn a:hover,
.btn:hover,
.btn-dark:hover,
.btn-primary:hover,
.btn-outline-primary:hover,
.btn-outline-dark:hover,
.btn-outline-secondary:hover,
.btn-lg:hover,
.btn-sm:hover {
    filter: brightness(1.08);
}

@keyframes button-shine-sweep {
    0% {
        left: -140%;
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    100% {
        left: 160%;
        opacity: 0;
    }
}

.notification-container {
    position: relative;
    /* Make this container the reference for the popup */
    display: inline-block;
    /* Keep the button and popup in flow */
    align-content: center;
}

/* .notification-container button{
    padding: 12px 9px;
} */

.notification-popup {
    /* display: none; */
    /* Initially hidden */
    position: absolute;
    top: 100%;
    /* Position it directly below the notification button */
    right: 0;
    /* Align the popup to the right edge of the button */
    background-color: #FAFAFA;
    box-shadow: 17px 17px 61px 0 #00000023;
    width: 475px;
    border-radius: 12px;
    z-index: 1000;
}

.notification-popup.show {
    display: block;
    /* Show the popup when it has the 'show' class */
    margin-top: 10px;
}

.notification-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #EDEDED;
}

.notification-content h3 {
    color: #23262F;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    margin-bottom: 0;
}

.notification-content .markAsRead {
    color: #43ACE9;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0;
    background-color: transparent;
}

.notification-body {
    padding: 15px;
    height: 350px;
    overflow-y: scroll;
}

.notification-popup-bar-img img {
    height: 50px;
}

.notificationPopupMessage {
    display: flex;
    gap: 15px;
    align-items: center;
}

.notify-message-and-time {
    width: 100%;
}

.notification-popup-bar {
    background-color: #F1F1F1;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.notification-popup-bar-marked-as {
    padding: 10px;
    margin-bottom: 15px;
}

.notify-message-and-time p {
    font-size: 12px;
    margin-bottom: 0;
    line-height: 20px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

.notify-message-and-time .bid-duration {
    font-weight: 700;
}

.notification-popup-bar-img-1 {
    background-color: #DCECFA;
    padding: 10px;
    border-radius: 5px;
}

.notification-popup-bar-img-2 {
    background-color: #EFE6FF;
    padding: 10px;
    border-radius: 5px;
}

.notification-footer {
    padding: 15px;
    border-top: 1px solid #EDEDED;
}

.notification-footer a {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #23262F;
    font-family: "Inter", sans-serif;
    text-decoration: none;
}

.allNotifications {
    padding: 80px 70px;
}

.listing-main-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listing-main-heading select {
    background-color: transparent;
    border: 1px solid #C2C3CB;
    border-radius: 6px;
    height: 40px;
    padding: 0 10px;
    align-items: center;
    display: flex;
}

.listing-main-heading {
    display: flex;
    justify-content: space-between;
}

.listing-main-heading select {
    background-color: transparent;
    border: 1px solid #C2C3CB;
    border-radius: 6px;
    height: 40px;
    padding: 0 10px;
    align-items: center;
    display: flex;
    color: #23262F;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.listing-main-heading select option {
    color: #23262F;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.allNotificationPopup {
    background-color: #F1F1F1;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.allNotificationPopupReaded {
    padding: 20px;
    margin-bottom: 20px;
}

.allNotifyContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notifyContent {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notifyPopImage img {
    height: 80px;
}

.notifyMsg .noti-time {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
}

.notifyMsg .notimsg {
    margin-bottom: 5px;
    color: #23262F;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.allNotificationPopup .newmsg {
    font-weight: 700;
}

.notify-remove i {
    font-size: 40px;
    color: #23262F;
}

.allNotificationPopup-1 {
    background-color: #F1F1F1;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.allNotificationPopup-1 .notifyPopImage {
    background-color: #EFE6FF;
    padding: 10px;
    border-radius: 5px;
    width: 80px;
}

.allNotificationPopup-1 .notifyPopImage img {
    height: 60px;
}

.allNotificationPopupReaded-1 {
    padding: 20px;
    margin-bottom: 20px;
}

.allNotificationPopupReaded-1 .notifyPopImage {
    background-color: #EFE6FF;
    padding: 10px;
    border-radius: 5px;
    width: 80px;
}

.allNotificationPopupReaded-1 .notifyPopImage img {
    height: 60px;
}

/* listingproduct */

/* profileSetting */

.user-profile-setting-container {
    position: relative;
    /* Make this container the reference for the popup */
    display: inline-block;
    /* Keep the button and popup in flow */
}

.user-profile-setting-popup {
    /* display: none; */
    /* Initially hidden */
    position: absolute;
    top: 100%;
    /* Position it directly below the notification button */
    right: 0;
    /* Align the popup to the right edge of the button */
    background-color: #FAFAFA;
    box-shadow: 17px 17px 61px 0 #00000023;
    width: 300px;
    border-radius: 12px;
    z-index: 1000;
}

.user-profile-setting-popup.show {
    display: block;
    /* Show the popup when it has the 'show' class */
    margin-top: 10px;
}

.user-profile-setting-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.user-setting-menu {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.user-setting-menu {
    padding-left: 0;
    list-style: none;
    width: 100%;
}

.user-setting-menu li {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #EDEDED;
    gap: 15px;
    color: #23262F;
    font-family: "Inter", sans-serif;
}

.user-setting-menu li a {
    text-decoration: none;
    color: #24282B;
}

.user-setting-menu li:last-child {
    border-bottom: 0;
    color: #E94343;
}



.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #E5E5E5;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    z-index: 1100;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.06);
}

.mobile-bottom-nav__item {
    flex: 1;
    text-align: center;
    color: #606060;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
}

.mobile-bottom-nav__item--action {
    color: #000000;
}

.mobile-bottom-nav__item--active {
    color: #43ACE9;
}

.mobile-bottom-nav__icon {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.mobile-bottom-nav__label {
    display: block;
    line-height: 1.2;
}

.mobile-bottom-nav__profile {
    position: relative;
}

.mobile-bottom-nav__profile-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #606060;
}

.mobile-bottom-nav__profile-btn:focus {
    outline: none;
}

.mobile-bottom-nav__chevron {
    font-size: 10px;
}

.mobile-bottom-nav__dropdown {
    bottom: calc(100% + 16px);
    top: auto;
    right: 0;
}

.mobile-bottom-nav__dropdown .user-profile-setting-content {
    padding: 12px 20px;
}

@media (min-width: 1200px) {
    .mobile-bottom-nav {
        display: none;
    }
}

/* favouriteLikes */

.fav-like-hdig {
    margin-bottom: 40px;
}

.fav-like-hdig h2 {
    color: #23262F;
    text-align: start;
    font-family: "Inter", sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 48px;
}

.favourite-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #1C1D2059;
    padding: 6px 10px;
    border-radius: 10px
}

.favourite-icon i {
    color: #fff;
}

/* favouriteLikes */

/* AccountSetting */

.user-setting h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    color: #23262F;
    font-family: "Inter", sans-serif;
    margin-bottom: 25px;
}

.account-setting {
    padding: 80px 70px;
}

.account-setting .setting {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 45px 90px 0 #00000021;
}

.userSettingsMenu {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.userSettingsMenu li {
    margin-bottom: 20px;
}

.userSettingsMenu button {
    background-color: transparent;
    border: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    padding: 10px 16px;
    color: #606060;
    font-family: "Inter", sans-serif;
}

.user-setting .profile-item.activee {
    color: #43ACE9;
    background-color: #DCECFA;
    padding: 10px 16px;
    border-radius: 30px;
}

.account-setting .profile {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 45px 90px 0 #00000021;
}

.profile-heading-and-button {
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.profile-photo-format {
    display: flex;
    gap: 15px;
    align-items: center;
}

.profile-upload-btn {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: end;
    gap: 20px;
}

.profile-upload-btn img {
    height: 22px;
}

.profile-heading-and-button h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    color: #23262F;
    font-family: "Inter", sans-serif;
    margin-bottom: 0;
}

.user-profile .profile-format {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Inter", sans-serif;
    color: #606060;
}

.user-profile .profile-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    font-family: "Inter", sans-serif;
    color: #23262F;
    margin-bottom: 0;
}

.profile-piture-and-upldRmov {
    border-bottom: 1px solid #EDEDED;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.profile .heading-personal-info h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    font-family: "Inter", sans-serif;
    color: #23262F;
    margin-bottom: 0;
}

.profile .heading-personal-info {
    margin-bottom: 30px;
}

.profile-photo-name img {
    height: 75px;
    object-fit: cover;
    border-radius: 100%;
}

.personal-information h3 {
    color: var(--Dark, #23262F);

    /* Heading/H-Small */
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 133.333% */
    margin-bottom: 40px;
}

.personal-information input,
.personal-information select,
#address input,
#address select,
#password-login select,
#password-login input,
.document-types-and-format input,
.document-types-and-format select {
    width: 100%;
    height: 55px;
    border-radius: 10px;
    border: 0;
    background-color: #F8F8F8;
    padding: 0 15px;
    cursor: pointer;
}

.personal-information label,
#address label,
#password-login label,
.document-types-and-format label {

    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #23262F;
    font-family: "Inter", sans-serif;
    margin-bottom: 5px;
}



.busniess-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #43ACE9;
    background-color: transparent;
    border: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    margin-bottom: 5px;
}

.close-account {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #F66666;
    background-color: transparent;
    border: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    margin-bottom: 5px;
    margin: 60px 0 0 0;
}

.busniess-form {
    padding-top: 20px;
}

#business-info {
    /* display: none;
    opacity: 0; */
    transition: opacity 0.5s ease;
}

#business-info.show {
    display: block;
    opacity: 1;
}

#toggle-business-info.remove {
    background-color: transparent;
    color: #F66666;
    border: none;
    transition: background-color 0.3s ease;
}

.busniess-info img {
    height: 20px;
}

/* Base hidden state */
.profile {
    /* opacity: 0;
    display: none; */
    transition: opacity 0.2s ease;
    /* Smooth fade effect */
}

/* When a section is visible */
.profile.show {
    display: block;
    opacity: 1;
}

/* By default, show the My Profile section */
#my-profile.show {
    display: block;
    opacity: 1;
}

.notify-setting-inner-box {
    background-color: #F8F8F8;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
}

.nofify-form-1 .notify-child {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.nofify-form-1 .notify-child p {
    margin-bottom: 0;
}

.nofify-form-1 .notify-child label {
    line-height: 24px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    cursor: pointer;
}

.nofify-form-1 .notify-child p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.nofify-form-1 input[type="checkbox"] {
    height: 25px;
    width: 25px;
    margin-right: 5px;
    border-radius: 2px;

    appearance: none;
    position: relative;
    cursor: pointer;
}

.nofify-form-1 input[type="checkbox"]:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-color: #EDEDED;
    /* Default red color */
    top: 0;
    left: 0;
    transition: background-color 0.2s ease-in-out;
}

.nofify-form-1 input[type="checkbox"]:checked:before {
    background-color: #23262F;
    /* Change to green when checked */
    border-color: #23262F;
}

.nofify-form-1 input[type="checkbox"]:checked:after {
    content: '';
    position: absolute;
    width: 12px;
    height: 7px;
    border: 2px solid white;
    border-top: none;
    border-right: none;
    top: 7px;
    left: 6px;
    transform: rotate(-45deg);
}

.connected-accounts {
    border-radius: 12px;
    background-color: #F8F8F8;
    padding: 20px;
}

.connected-accounts h3 {
    font-size: 24px;
    line-height: 32px;
    color: #23262F;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}

.connected-accounts p {
    margin-bottom: 30px;
}

.connected-buttons .connect-with-google,
.connected-buttons .connect-with-apple {
    height: 65px;
    font-size: 18px;
    line-height: 24px;
    color: #23262F;
    font-weight: 600;
    width: 100%;
    font-family: "Inter", sans-serif;
    gap: 15px;
    display: flex;
    align-items: center;
    background-color: #FAFAFA;
    justify-content: center;
    border: 0;
    border-radius: 10px;
    box-shadow: 15px 19px 50px 0 #00000014;
}

.connected-buttons .connected-with-google {
    height: 65px;
    font-size: 18px;
    line-height: 24px;
    color: #23262F;
    font-weight: 600;
    width: 100%;
    font-family: "Inter", sans-serif;
    gap: 15px;
    justify-content: space-between;
    padding: 0 20px;
    align-items: center;
    background-color: #FAFAFA;
    border: 0;
    border-radius: 10px;
    box-shadow: 15px 19px 50px 0 #00000014;
}

.connected-buttons .remove-account {
    color: #E94343;
}

.password-msg-parent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.password-msg-parent .password-sent {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}

.password-msg-parent .pswd-msg {
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    color: #606060;
}

.chang-pas-btn {
    display: flex;
    justify-content: end;
}

.account-connected-password {
    margin: 40px 0 30px;
    align-items: center;
}

#confirmation-popup {
    position: fixed;
    /* Fixed positioning */
    top: 0;
    /* Position from the top */
    left: 0;
    /* Position from the left */
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    display: flex;
    /* Use flexbox for centering */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    z-index: 1000;
    /* Ensure it appears above other elements */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    /* Smooth transitions */
}


.confirmation-popup {
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
}

.confirmation-popup .popup-content {
    background-color: #fff;
    width: 380px;
    height: 300px;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-20px);
    /* Slightly move up for smooth entrance */
    transition: transform 0.3s ease;
    /* Smooth entrance transition */
}

.confirmation-popup p {
    margin-bottom: 30px;
}

#confirm-remove {
    background-color: #28a745;
    /* Green color for the confirm button */
    color: white;
    /* Text color */
    box-shadow: 0 13px 80px 0px #28a74580;
}

#cancel-remove {
    background-color: #dc3545;
    /* Red color for the cancel button */
    color: white;
    /* Text color */
    box-shadow: 0 13px 80px 0px #f6666663;
}

input:focus,
select:focus {
    outline: 0;
}

.create-password-form .password-requirements {
    margin-bottom: 30px;
    padding-left: 0;
    list-style: none;
}

.create-password-form .password-requirements li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    color: #999999;
    margin-bottom: 5px;
}

/* The popup background, which stays fixed */
#createPasswordPopUpAccount {
    position: fixed;
    /* Fixed positioning */
    top: 0;
    /* Position from the top */
    left: 0;
    /* Position from the left */
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    display: flex;
    /* Use flexbox for centering */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    z-index: 1000;
    /* Ensure it appears above other elements */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    /* Smooth transitions */
    overflow: hidden;
    /* Prevent scrolling of background */
}

/* Center the form within the popup */
.createPasswordPopUp {
    height: auto;
    /* Allow height to adjust based on content */
    width: 100%;
    /* Full width */
    align-items: center;
    justify-content: center;
    display: flex;
    max-height: 100%;
    /* Limit form height to viewport height */
    overflow-y: auto;
    /* Allow scrolling when content is larger than screen */
}

/* The content inside the popup */
.createPasswordPopUp .password-content {
    background-color: #FAFAFA;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* Stack content vertically */
    margin: 80px auto 40px;
    position: relative;
}

#createPasswordPopUpAccount input {
    border: 1px solid #C2C3CB;
}

#createPasswordPopUpAccount h3 {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    color: #23262F;
    margin-bottom: 20px;
}

.button-style-2.change-password {
    height: 65px;
}

button#closeCreatePasswordPopup {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #C2C3CB;
    border: 0;
    padding: 2px 8px;
    border-radius: 100%;
}

button#closeCreatePasswordPopup i {
    color: #FAFAFA;
}

.notify-setting-inner-box h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    color: #23262F;
    margin-bottom: 20px;
}

.identity-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    color: #999999;
    margin-bottom: 5px;
}

.identity-requirements {
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    color: #999999;
    margin-bottom: 5px;
}

.identity-heading-and-button {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.front-and-back .front,
.front-and-back .back {
    justify-content: center;
    display: flex;
    align-items: center;
    padding: 75px 0;
    margin: 40px 0;
    background-color: #FAFAFA;
    box-shadow: 15px 19px 50px 0 #00000024;
    border-radius: 12px;
}

/* AccountSetting */


/* emptywallet */

.empty-wallet {
    height: 100vh;
    justify-content: center;
    display: flex;
    align-items: center;
}

.empty-wallet h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    font-family: "Inter", sans-serif;
    color: #23262F;
    margin: 20px 0;
}

.empty-wallet a {
    color: #606060;
}

.empty-wallet a,
.empty-wallet .empty-note {
    color: #606060;
    margin-bottom: 50px;
    width: 370px;
}

.wallet-setup-popUp-multi-form input,
.wallet-setup-popUp-multi-form select,
#getPaid2 select,
#getPaid2 input,
.payment-method-choose select,
#paymentForm input {
    width: 100%;
    height: 55px;
    border-radius: 10px;
    border: 0;
    background-color: #FAFAFA;
    padding: 0 15px;
    cursor: pointer;
    box-shadow: 15px 19px 50px 0 #00000026;
}

.wallet-setup-popUp-multi-form label,
#getPaid2 label,
.payment-method-choose label,
#paymentForm label {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #23262F;
    font-family: "Inter", sans-serif;
    margin-bottom: 5px;
    width: 100%;
    text-align: left;
}

.wallet-setup-popUp-multi-form .form-child,
#getPaid2 .form-child {
    margin-bottom: 30px;
}

.waller-setup-content {
    position: relative;
}

.waller-setup-content #closeWallet {
    background-color: #EDEDED;
    border: 0;
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 3px 8px;
    border-radius: 100%;

}

#closePaymentMethodChoose {
    background-color: #EDEDED;
    border: 0;
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 3px 11px;
    border-radius: 100%;

}

.wallet-setup-popUp-multi-form {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000a8;
    z-index: 10;
    overflow-y: scroll;
}

.waller-setup-content {
    background-color: #F9F9F9;
    margin: 75px auto;
    padding: 20px;
    width: 580px;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

.popup-heading-container h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: #23262F;
    font-family: "Inter", sans-serif;
}

.popup-heading-container {
    border-bottom: 1px solid #EDEDED;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.wallet-price {
    font-size: 80px;
    line-height: 95px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    margin-bottom: 30px;
}

.wallet-price i {
    color: #23262F;
}

.wallet-price .price-no {
    color: #C2C3CB;
}

.btn-add-balance button {
    height: 55px;
}

.waller-setup-content #notNow {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    background-color: transparent;
    border: 0;
    font-family: "Inter", sans-serif;
    color: #999999;
}

.data-wallet {
    padding: 80px 70px;
    background-color: #F9F9F9;
}

.data-wallet .main-heading {
    color: #23262F;
    font-family: "Inter", sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 48px;
}

.balance-inquery-and-payment {
    padding: 20px;
    background-color: #FAFAFA;
    border-radius: 12px;
    box-shadow: 15px 19px 50px 0 #0000001a;
    margin-bottom: 30px;
}

.available-balance p {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    color: #606060;
}

.available-balance .balance {
    color: #23262F;
    font-family: "Inter", sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 48px;
}

.balance-inquery-and-payment {
    padding: 20px;
    background-color: #FAFAFA;
    border-radius: 12px;
    box-shadow: 15px 19px 50px 0 #0000001a;
}

.available-balance p {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    font-family: "Inter", sans-serif;
}

.payment-methods-btns {
    display: flex;
    align-items: center;
    justify-content: end;
    height: 100%;
    gap: 25px;
}

button.payment-methods {
    background-color: transparent;
    border: 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #43ACE9;
    font-family: "Inter", sans-serif;
}

.transections .heading {
    font-size: 32px;
    line-height: 36px;
    font-weight: 800;
    color: #23262F;
    font-family: "Inter", sans-serif;
    margin-top: 30px;
}

.data-wallet thead {
    background-color: transparent;
}

#wallet th {
    background-color: transparent !important;
}

#wallet td {
    background-color: transparent !important;
    box-shadow: none;
    padding-top: 15px;
}

.payment-requests-table td {
    box-shadow: none !important;
    padding-top: 15px !important;
}

.transections {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.transections select {
    width: 100%;
    height: 35px;
    border-radius: 5px;
    border: 0;
    background-color: #FAFAFA;
    padding: 0 15px;
    cursor: pointer;
    box-shadow: 15px 19px 50px 0 #00000026;
}

tbody td,
tbody tr {
    background-color: transparent !important;
}

tbody tr {
    height: 55px;
}

.save-cards .heading h3 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
    color: #23262F;
    font-family: "Inter", sans-serif;
    margin-bottom: 0;
}


.save-cards .heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.save-cards .add-new-method-btn {
    font-size: 16px;
    line-height: 20px;
    background-color: transparent;
    border: 0;
    font-weight: 600;
    color: #23262F;
    font-family: "Inter", sans-serif;
}

.save-cards {
    background-color: #FAFAFA;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 15px 19px 50px 0 #00000029;
}

.save-cards-info {
    background-color: #43ACE9;
    border-radius: 20px;
    padding: 20px;
    margin-top: 30px;
}

.card-img-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.card-holder-number {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    font-family: "Poppins", sans-serif;
}

.card-holder-name .holder-name {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

.card-holder-name .label {
    font-size: 12px;
    margin-bottom: 0;
    line-height: 16px;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

.get-paid {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000a8;
    z-index: 10;
    overflow-y: scroll;
}

.get-paid-content {
    background-color: #F9F9F9;
    margin: 75px auto;
    padding: 20px;
    width: 580px;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

.get-paid2 {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000a8;
    z-index: 10;
    overflow-y: scroll;
}

.get-paid-content2 {
    background-color: #F9F9F9;
    margin: 75px auto;
    padding: 20px;
    width: 580px;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

.bank-payment {
    display: none;
}

#getPaidClose {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #EDEDED;
    border: 0;
    padding: 3px 9px;
    border-radius: 100%;
}


#getPaidback,
#closeAddNewMethod {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #EDEDED;
    border: 0;
    padding: 3px 9px;
    border-radius: 100%;

}

.get-paid-price {
    font-size: 80px;
    line-height: 95px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #23262F;
    font-family: "Inter", sans-serif;
}

.get-paid-price .price-no {
    color: #C2C3CB;
}

.get-paid-pop-up-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #EDEDED;
}

.get-paid-note {
    margin-bottom: 30px;
}

.get-paid-pop-up-heading h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: #23262F;
    font-family: "Inter", sans-serif;
}


/* .nav-item .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 180px;
    padding: 5px 0;
    z-index: 1000;
    height: 500px;
    overflow-y: auto;
  }
   */
.dropdown-toggle::after {
    display: none;
}



#paymentMethodChoose {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000a8;
    z-index: 10;
}

.payment-method-choose {
    background-color: #F9F9F9;
    margin: 75px auto;
    padding: 20px;
    width: 580px;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

.add-new-method-parent {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000a8;
    z-index: 10;
}

.add-new-method {
    background-color: #F9F9F9;
    margin: 75px auto;
    padding: 20px;
    width: 580px;
    text-align: center;
    border-radius: 10px;
    position: relative;
}


.payment-info-img {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 55px;
    margin-bottom: 20px;
    border-radius: 12px;
    padding: 0 10px;
    background-color: #FAFAFA;
    box-shadow: 15px 19px 50px 0 #00000024;
}

.method-btns button {
    background-color: transparent;
    border: 0;
}

/* emptywallet */


/* promoteProduct */

.select-your-package {
    padding: 0 70px 80px;
}

.package-main-heading h2 {
    font-size: 32px;
    line-height: 40px;
    color: #23262F;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}

.package-main-heading {
    margin-bottom: 40px;
}

.select-your-package .package-box {
    text-align: center;
    background-color: #fff;
    padding: 35px 0;
    border-radius: 15px;
    margin-bottom: 20px;
}

.package-box {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    font-family: "Inter", sans-serif;
}

.package-box .package-amount {
    font-size: 40px;
    font-weight: 700;
    line-height: 52px;
    margin-top: 10px;
    margin-bottom: 40px;
    font-family: "Inter", sans-serif;
}

.promote-modal.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000a8;
    justify-content: center;
    align-items: center;
}

.promote-modal-content {
    background-color: #F9F9F9;
    padding: 20px;
    border-radius: 10px;
    width: 600px;
    position: relative;
}

#successPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000a8;
    justify-content: center;
    align-items: center;
}

#successPopup .modal-content {
    background-color: #F9F9F9;
    padding: 20px;
    border-radius: 10px;
    width: 600px;
    position: relative;
}

#closePaymentMethodChoose,
.close-promote {
    background-color: #EDEDED;
    border: 0;
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 3px 9px;
    border-radius: 100%;

}

.modal-heading h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: #23262F;
    font-family: "Inter", sans-serif;
    text-align: center;
}

.modal-heading {
    padding-bottom: 20px;
    border-bottom: 1px solid #EDEDED;
    margin-bottom: 40px;
}

.promote-product {
    height: 55px;
}

#successPopup .modal-content img {
    height: 250px;
    width: 250px;
}

.invoices {
    padding: 80px 70px;
}

.invoices-main-heading h2 {
    font-size: 48px;
    line-height: 62px;
    font-weight: 800;
    color: #23262F;
    font-family: "Inter", sans-serif;
}

.invoices-main-heading {
    margin-bottom: 40px;
}

.invoices thead th {
    background-color: #F1F1F1 !important;
    border-bottom: 0;
}

.invoices tbody th {
    background-color: transparent !important;
}

.invoice-status-paid span {
    background-color: #DFF7EB;
    color: #12D18E;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    font-family: "Inter", sans-serif;
    padding: 10px 28px;
    border-radius: 20px;
}

.invoice-status-inprogress span {
    background-color: #EFE9FF;
    color: #5546FF;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    font-family: "Inter", sans-serif;
    padding: 10px 28px;
    border-radius: 20px;
}

.invoice-status-rejected span {
    background-color: #FFE9E9;
    color: #F66666;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    font-family: "Inter", sans-serif;
    padding: 10px 28px;
    border-radius: 20px;
}


.invoice-status-container {
    display: flex;
    padding: 10px 0;
}

.invoices-table tbody tr {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Inter", sans-serif;
    color: #23262F;
}

/* promoteProduct */

/* uploadListing */

.uploadListing {
    padding: 80px 70px;
}

.uploadListing-main-heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    align-items: center;
}

.uploadListing-main-heading h2 {
    font-size: 48px;
    line-height: 62px;
    font-weight: 800;
    font-family: "Inter", sans-serif;
}

.upload-listing-form label {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    color: #23262F;
    margin-bottom: 5px;
}

.uploadListing .upload-listing-form-element {
    padding: 0 10px;
    background-color: #fff;
    border-radius: 12px;
    height: 55px;
    border: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    color: #23262F;
    margin-bottom: 5px;
    width: 100%;
}


.uploadListing .inputNumber {
    display: flex;
    background-color: #fff;
    justify-content: space-between;
    padding: 0 10px;
    height: 55px;
    border-radius: 12px;
    align-items: center;
}

.uploadListing .inputNumber input {
    border: 0;
    width: 100%;
    padding-right: 10px;
    height: 100%;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    color: #23262F;
}

.uploadListing .inputNumber i {
    font-size: 28px;
    font-weight: 700;
}

.uploadListing .upload-listing-form textarea {
    padding-top: 10px !important;
    height: 150px !important;
}

.uploadListing .upload-listing-child {
    margin-bottom: 20px;
}

.uploadListing .upload-listing-child-2 {
    margin-bottom: 20px;
}

.uploadListing .upload-file-box {
    background-color: #fff;
    padding: 110px 68px;
    border-radius: 20px;
    box-shadow: 0 0 81px 0 #00000029;
}

.uploadListing .upload-file {
    padding: 60px 0 60px 90px;
}

.uploadListing .upload-file .file-vector {
    margin-bottom: 10px;
}

.uploadListing .file-name {
    overflow-wrap: break-word;
}

/* uploadListing */

/* footer */

.footer {
    background-color: #fff;
    padding: 50px;
}

.footer .social-icons i {
    color: #43ACE9;
    font-size: 24px;
}

.footer .social-icons {
    display: flex;
    gap: 35px;
}

.footer-child1 p {
    margin-bottom: 45px;
    color: #606060;
    font-size: 1rem;
}

.footer-child1 .logo img {
    margin-bottom: 20px;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
}

.hero-section .swiper-wrapper {
    margin-bottom: 60px;
}

.footer-menu ul a {
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: #606060;
    font-family: "Inter", sans-serif;
}

.footer-menu ul li {
    margin-bottom: 18px;
}

.footer-menu .foot-menu-heading {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #23262F;
}

/* footer */

/* <---mediaquery---> */

@media (min-width: 1122px) {
    .mobileMenuOpen {
        display: none !important;
    }
}

@media (min-width: 993px) {
    .mobile-registrations {
        display: none;
    }

    .filter-parent button {
        display: none;
    }




}

@media (max-width: 992px) {
    .navbar-toggler.desktop {
        display: none !important;
    }



    .nav-sellnow {
        margin-left: 0;
    }


    .sellnow {
        margin-right: 0;
    }


    .dashboard-nav .nav-item {
        margin-right: 0;

    }

    .dashboard-nav .nav-item .sellnow {
        margin-top: 8px;
        color: #fff;
        display: block;
    }

    .pro-image {
        height: 200px;
    }

    .user-amount,
    .registration-btns-dashboard.dashboard-menu .sellnow {
        display: none !important;
    }

    .dashboard-menu .search {
        display: none;
    }

    ul.mobile-buttons {
        display: flex;
        gap: 50px;
        list-style: none;
        align-items: center;
    }

    .mobile-buttons-web {
        display: flex;
        gap: 50px;
        list-style: none;
        align-items: center;
        padding: 20px;
        margin-bottom: 0;
    }

    .mobile-buttons p {
        margin-bottom: 0;
    }

    .mobile-buttons .mobile-user-amount {
        padding: 13px 10px;
        margin-bottom: 0;
        background-color: #EDEDED;
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .mobile-buttons .mobile-user-amount i {
        border: 1px solid #23262F;
        padding: 3px 5px;
        font-size: 12px;
        border-radius: 100%;
    }

    .mobile-buttons .mobile-search {
        padding: 13px;
        margin-bottom: 0;
        background-color: #EDEDED;
        border-radius: 10px;
        display: flex;
        border: 0;
        align-items: center;
        gap: 5px;
    }

    .mobile-buttons .mobile-sellnow,
    .mobile-buttons-web .mobile-sellnow {
        padding: 12px 16px;
        border: 1px solid #23262F;
        border-radius: 6px;
        text-decoration: none;
        color: #fff;
        background-color: #23262F;
        font-family: "Inter", sans-serif;
        font-size: 16px;
        font-weight: 600;
        list-style: none;
        font-style: normal;
    }

    .loginButton.login,
    button.signup {
        margin: 0;
        font-size: 20px;
    }


    #navMobile {
        justify-content: space-between;
    }

    /* #navMobile .navbar-collapse.menuBar,
    .sellnow {
        display: none !important;
    } */

    .registration-btns {
        width: auto;
        gap: 10px;
    }

    a.logo {
        margin-right: 10px;
    }

    .search-forms {
        width: 100%;
        margin: 0;
    }

}

@media (max-width: 992px) {


    .hero-img-1 {
        display: none;
    }



    .mobile-menu {
        padding: 15px 15px;
    }

    .search-forms {
        width: 100%;
        margin: 0;
        margin-bottom: 10px;
    }

    .container-fluid {
        padding: 0;
    }

    .menuBar {
        padding: 20px 0;
    }

    .mobile-registrations {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .login {
        font-size: 13px;
        margin-right: 0 !important;
    }

    .signup {
        padding: 6px 10px !important;
        font-size: 13px !important;
        margin-right: 0 !important;
    }


    .sellnow {
        padding: 6px 10px !important;
        font-size: 13px !important;
    }



    .header-inner,
    .header-inner .container-fluid {
        padding: 0 10px;
    }

    .cate-card-main {
        padding-bottom: 25px;
    }

    .right-section .swiper-container {
        overflow: visible;
    }

    .hero-section {
        padding: 0 0 60px;
    }

    .left-section {
        padding: 20px 27px !important;
    }

    .right-section {
        padding: 0 27px 70px !important;
    }

    .right-section .swiper-arrows {
        right: 45%;
    }

    .right-section .swiper-container img {
        box-shadow: 0 20px 55px 0 #43ACE942;
    }

    .hero-section {
        padding: 0 0 60px;
    }

    .left-section {
        padding: 20px 27px !important;
    }

    .right-section {
        padding: 0 27px 0px !important;
    }

    .hero-section .swiper-wrapper {
        margin-bottom: 30px !important;
    }

    section.featured-product {
        padding-block: 20px 40px;
    }

    .featured-product .swiper-container {
        padding: 0px 0 90px;
    }

    .right-section .swiper-arrows {
        bottom: 0 !important;
        right: 45% !important;
    }

    .registration-btns-dashboard {
        /* justify-content: end; */
        display: flex;
        flex-direction: column;
        align-items: start;

    }

    .browsecategories {
        padding: 20px;
    }

    .row.cate-cards-parent {
        margin-bottom: 0;
    }

    .footer .social-icons {
        gap: 35px;
    }

    .footer-child1 p {
        padding-right: 0;
    }

    .footer {
        padding: 20px;
    }


    .start-selling {
        padding: 20px;
    }

    .start-selling-parent {
        padding: 20px;
    }

    .start-slelling-left {
        padding: 20px 100px 20px 30px !important;
    }

    .start-sell-now {
        padding: 6px 10px !important;
        font-size: 13px !important;
    }

    .selling-btns .exp-more {
        padding: 6px 10px;
        font-size: 13px;
    }

    .explore-more {
        padding: 6px 10px;
        font-size: 13px;
    }

    .marketplace {
        padding: 20px 8px;
    }

    .topbid {
        padding: 20px 8px;
    }

    .main-heading {
        margin-bottom: 20px;
    }

    .mkt-left-parent {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        /* Smooth transition */
    }

    .mkt-left-parent.visible {
        opacity: 1;
        max-height: 1000px;
        padding: 20px 25px;
        /* Adjust this value based on the content */
    }

    .mkt-left-parent {
        padding: 0;
    }

    .filter-parent {
        text-align: end;
        margin-bottom: 20px;
    }

    .listing-detail {
        margin-bottom: 20px;
    }

    .edit-promote {
        justify-content: start;
    }

    .listing {
        padding: 20px 3px;
    }

    .listing-img img {
        height: auto;

    }

    .account-setting {
        padding: 20px 3px;
    }

    .account-setting .setting {
        margin-bottom: 20px;
    }

    section.biddings-tabs {
        padding: 20px 3px;
    }

    .bid-main-heading {
        margin: 15px 0;
    }

    .bid-main-heading h2 {
        font-size: 22px;
    }

    .mkt-hero-section {
        padding: 60px 0;
    }

    .marketplace-product {
        padding: 40px 45px;
    }

    h1.mkt-sec {
        font-size: 40PX;
        LINE-HEIGHT: 50PX;
        width: 50%;
    }

    .mkt-page-plc-hdig h2 {
        font-size: 30px;
    }

    section.prodcut-detail-links {
        padding: 20px 3px;
    }

    section.product-image-and-brief {
        padding: 20px 3px;

    }

    .product-images-parent {
        padding: 0;
    }

    .product-details-brief-parent {
        padding: 0;
    }

    .product-details-brief-parent .product-heading {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .owned-by-and-favoruite {
        margin-bottom: 20px;
    }

    .bid-rank-and-time {
        padding: 15px;
    }

    .bid-rank-and-time .price {
        font-size: 22px;
    }

    .bid-rank-and-time .price i {
        padding: 2px 5px;
        font-size: 14px;
    }

    .bid-rank-and-time .date {
        font-size: 16px;
    }

    .currency-and-price {
        padding: 10px;
    }

    .currency-and-price p {
        font-size: 22px;
        line-height: 28px;
    }

    .min-bid-and-estimate .minimum-bid,
    .min-bid-and-estimate .estimate-bid {
        font-size: 16px;
        line-height: 20px;
    }

    .product-detailed-info {
        padding: 20px 3px;
    }

    .data-wallet {
        padding: 20px 3px;
    }

    .data-wallet .main-heading {
        font-size: 36px;
        line-height: 42px;
    }

    .available-balance p {
        font-size: 16px;
        line-height: 20px;
    }

    .available-balance .balance {
        font-size: 36px;
        line-height: 42px;
    }

    button.payment-methods {
        font-size: 18px;
    }

    .button-style-3 {
        font-size: 14px;
        padding: 8px 10px;
    }

    .button-style-2 {
        font-size: 14px;
        padding: 8px 10px;
    }

    .payment-methods-btns {
        gap: 15px;
    }

    .transections .heading {
        font-size: 24px;
    }

    .save-cards {
        padding: 15px;
        border-radius: 15px;
    }

    .save-cards .heading h3 {
        font-size: 24px;
    }

    .get-paid-price {
        font-size: 60px;
        line-height: 72px;
    }

    .get-paid-pop-up-heading {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .wallet-setup-popUp-multi-form input,
    .wallet-setup-popUp-multi-form select,
    #getPaid2 select,
    #getPaid2 input,
    .payment-method-choose select,
    #paymentForm input {
        height: 45px;
    }

    .wallet-setup-popUp-multi-form label,
    #getPaid2 label,
    .payment-method-choose label,
    #paymentForm label {
        font-size: 16px;
    }

    .get-paid-pop-up-heading h3 {
        font-size: 20px;
    }

    .dashboard-records {
        padding: 20px 3px 0;
    }

    .records-box img {
        width: 60px;
        height: 60px;
        padding: 0px 10px;
    }

    .records-box .score {
        font-size: 26px;
        line-height: 32px;
    }

    .records-box .title {
        font-size: 16px;
        line-height: 20px;
    }

    .bid-chart {
        padding: 20px 3px;
    }

    .select-your-package {
        padding: 20px 3px;
    }

    .package-main-heading h2 {
        font-size: 26px;
    }

    .package-box .package-amount {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .promote-product {
        height: 45px;
    }

    .modal-heading {
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    .personal-information .form-child,
    #address .form-child,
    #password-login .form-child,
    #createPasswordPopUpAccount .create-password-child,
    .document-types-and-format .form-child,
    .payment-method-choose .form-child,
    #paymentForm .form-child {
        margin-bottom: 15px;
    }

    .invoices {
        padding: 20px 3px;
    }

    .invoices-main-heading h2 {
        font-size: 40px;
    }

    .uploadListing {
        padding: 20px 3px;
    }

    .uploadListing .upload-file {
        padding: 20px 0;
    }

    .uploadListing-main-heading h2 {
        font-size: 40px;
        line-height: 58px;
    }

    .uploadListing-main-heading {
        margin-bottom: 20px;
    }

}

@media (max-width: 768px) {

    .search-trigger {
        width: 100% !important;
    }

    .cate-card-main {
        padding-bottom: 20px;
    }

    .header-inner {
        padding: 0;
    }

    .browsecategories {
        padding: 20px 5px;
    }

    .cate-cards-parent {
        margin-bottom: 0;
    }

    .hero-sec-btn {
        padding: 5px 0 20px;
    }

    .hero-section {
        padding: 0px;
        overflow-x: hidden;
    }

    .hero-section .container-fluid {
        overflow-x: hidden;
    }

    .left-section {
        padding: 15px !important;
    }

    .hero-section .row {
        display: flex !important;
        flex-direction: column !important;
    }

    .hero-section .col-lg-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .hero-section .swiper-slide {
        display: block !important;
    }

    h2.hero-sec {
        font-size: 22px;
        margin-bottom: 0;
    }

    h1.hero-sec {
        font-size: 30px;
        line-height: 36px;
    }

    p {
        font-size: 14px;
    }

    .explore-more {
        padding: 6px 10px;
        font-size: 13px;
    }

    .client-ratings h3 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 0;
    }

    .client-ratings span {
        font-size: 10px;
    }



    .right-section .swiper-container img {
        height: 250px;
        width: 100%;
    }

    .pro-title h2 {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 0;
    }

    .pro-price span {
        font-size: 12px;
        text-align: left !important;
    }


    .featured-product .swiper-container {
        padding: 0px 0 65px;
    }

    .pro-meta .price {
        font-size: 14px;
        margin-bottom: 0;
    }

    .pro-meta .price i {
        font-size: 9px;
    }

    .pro-bid-btn a {
        font-size: 12px;
    }

    .right-section .swiper-container img {
        height: 275px;
        width: 300px;
        border-radius: 25px;
        box-shadow: 0 12px 55px 0 #43ACE942;
    }

    .right-section .swiper-arrows {
        right: 38% !important;
    }

    .featured-product .swiper-arrows {
        right: 39% !important;
    }

    .featured-product {
        padding: 20px 5px 40px;
    }

    .cate-heading h2 {
        font-size: 22px;
        line-height: 22px;
    }



    .categories-btn {
        justify-content: center;
    }

    .categories-btn a {
        padding: 6px 10px;
        font-size: 13px;
    }

    .cate-heading h2 {
        font-size: 22px;
        line-height: 22px;
        text-align: center;

    }


    .categories-btn {
        justify-content: center;
    }

    .categories-btn a {
        padding: 6px 10px;
        font-size: 13px;
    }

    .cate-title h2 {
        font-size: 14px;
        line-height: 22px;
    }

    .cate-lisitng span {
        font-size: 12px;
        line-height: 14px;
    }

    .footer .social-icons {
        gap: 45px;
    }

    .footer-child1 p {
        padding-right: 0;
    }

    .footer {
        padding: 20px 8px;
    }

    /* .footer-child1,
    .footer-child2 {
        margin-bottom: 20px;
    } */

    .footer-menu ul a {
        font-size: 14px;
    }

    .footer-menu .foot-menu-heading {
        font-size: 18px;
    }

    .footer .social-icons i {
        font-size: 20px;
    }

    .explore-more {
        padding: 6px 10px;
        font-size: 13px;
    }

    .start-selling {
        padding: 20px 8px;
    }

    .start-selling-parent {
        padding: 30px;
    }

    .start-slelling-left {
        padding: 0 13px !important;
        margin-bottom: 20px;
    }

    .start-slelling-left h2 {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 10px;
    }

    .start-slelling-left p {
        margin-bottom: 20px;
    }

    .mkt-plc-hdig h2 {
        font-size: 22px;
        line-height: 28px;
    }

    .mkt-plc-hdig {
        margin-bottom: 20px;
    }

    .mkt-bid-btn a {
        padding: 6px 10px;
        font-size: 13px;
        display: block;
    }

    .mkt-pro-head h3 {
        font-size: 16px;
        line-height: 24px;
    }

    .mkt-crt-bid .crnt-bid {
        font-size: 12px;
    }

    .mkt-bid-price {
        font-size: 14px;
    }


    .topbid .dt-layout-table {
        overflow-x: scroll;
    }

    .topbid .bid-card-parent .bid-card {
        width: 400px;
    }

    .topbid .highest-bid-rank .bid-rank {
        width: 130px;
    }

    .topbid td.bid-end-time .bid-date {
        width: 100px;
    }

    .topbid td.bid-btn-parent .bid-place-btn {
        width: 80px;
    }

    .bid-place-btn a {
        padding: 6px 10px;
        font-size: 13px;
    }


    .main-heading h2 {
        font-size: 22px;
        line-height: 22px;
    }

    .dt-length label,
    .dt-search label {
        font-size: 14px;
    }

    .topbid thead th {
        font-size: 14px;
    }

    .bid-info h2 {
        font-size: 20px;
        line-height: 22px;
    }

    .topbid .bid-card img {
        width: 60px;
        height: 60px;
    }

    .bid-price {
        font-size: 16px;
        line-height: 24px;
    }

    p.bid-rank {
        font-size: 13px;
    }

    .bid-end {
        font-size: 13px;
    }

    .bid-date {
        font-size: 16px;
        line-height: 24px;
    }

    .featured-heading h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .featured-heading {
        margin-bottom: 20px;
    }

    .footer-child1 p {
        margin-bottom: 40px;
    }

    .createNewPassword h1 {
        font-size: 22px;
        margin-bottom: 20px;
        line-height: 30px;
    }

    .password-fields label {
        font-size: 16px;
    }

    .password-fields input {
        height: 50px;
        font-size: 16px;
        padding: 0 10px;
    }

    .password-fields.child {
        margin-bottom: 25px;
    }

    .password-requirement {
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .createNewPassword {
        padding: 15px;
    }

    .form-button-1 {
        height: 45px;
        font-size: 16px;
    }

    .confirmPasswordMessage h1 {
        font-size: 22px;
        line-height: 26px;
    }

    .confirmPasswordMessage p {
        font-size: 16px;
    }

    .confirmPasswordMessage a {
        margin-top: 20px;
    }

    .confirmPasswordThumbsUp {
        margin-bottom: 20px;
    }

    .confirmPasswordThumbsUp img {
        width: 90px;
    }

    .listing-img {
        margin-bottom: 20px;
    }

    .listing-bid-end-label,
    .listingTime,
    .listing-bid-label {
        text-align: start;
        margin-bottom: 5px;
    }

    .bid-and-price {
        margin-bottom: 15px;
    }

    .listing-main-heading h2 {
        font-size: 22px;
    }

    .listing-main-heading {
        margin-bottom: 15px;
    }

    .listing-img img {
        object-fit: contain;
        height: 200px;
    }

    .listing-product-title {
        font-size: 18px;
        line-height: 22px;
    }

    .listing-product-bid-time {
        padding: 10px;
    }

    .listing-detail {
        margin-bottom: 10px;
    }

    .edit-promote .listingPromote {
        margin-right: 10px;
        padding: 10px 12px;
        font-size: 14px;
    }

    .button-style-1 {
        padding: 10px 12px;
        font-size: 14px;
    }

    .button-style-2 {
        padding: 10px 12px;
        font-size: 14px;
    }

    .button-style-3 {
        padding: 10px 12px;
        font-size: 14px;
    }

    .button-style-4 {
        padding: 10px 12px;
        font-size: 14px;
    }

    .button-style-5 {
        padding: 10px 12px;
        font-size: 14px;
    }

    .button-style-6 {
        padding: 10px 12px;
        font-size: 14px;
    }

    .listing-card {
        padding: 15px;
    }

    .newmsg {
        font-weight: 700;
    }

    .allNotifications {
        padding: 20px 3px;
    }

    .notify-remove i {
        font-size: 30px;
    }

    .fav-like-hdig {
        margin-bottom: 20px;
    }

    .fav-like-hdig h2 {
        font-size: 22px;
    }

    .account-setting {
        padding: 20px 3px;
    }

    .user-setting h3 {
        font-size: 20px;
    }

    .user-setting .profile-item.activee {
        padding: 6px 12px;
    }

    .userSettingsMenu button {
        font-size: 14px;
    }

    .userSettingsMenu li {
        margin-bottom: 10px;
    }

    .profile-heading-and-button h3 {
        font-size: 20px;
    }

    .profile-upload-btn {
        justify-content: flex-start;
    }

    .profile-heading-and-button {
        margin-bottom: 20px;
    }

    .profile-photo-format {
        margin-bottom: 20px;
    }

    .profile .heading-personal-info h3 {
        font-size: 18px;
    }

    .profile .heading-personal-info {
        margin-bottom: 15px;
    }

    .personal-information label,
    #address label,
    #password-login label,
    .document-types-and-format label {
        font-size: 16px;
        line-height: 20px;
    }

    .personal-information input,
    .personal-information select,
    #address input,
    #address select,
    #password-login select,
    #password-login input,
    .document-types-and-format input,
    .document-types-and-format select {
        height: 45px;
    }

    .busniess-info {
        font-size: 16px;
        line-height: 20px;
    }

    .busniess-info img {
        height: 18px;
    }

    .close-account {
        margin: 30px 0 0 0;
        font-size: 16px;
        line-height: 20px;
    }

    .profile-photo-name img {
        width: 75px !important;
        height: 75px !important;
    }

    .user-profile .profile-title {
        font-size: 18px;
        line-height: 24px;
    }

    .account-setting .profile {
        padding: 12px;
        border-radius: 12px;
    }

    .profile-piture-and-upldRmov {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .nofify-form-1 .notify-child label {
        font-size: 16px;
        line-height: 20px;
    }

    .nofify-form-1 .notify-child p {
        font-size: 12px;
        line-height: 16px;
    }

    .nofify-form-1 input[type="checkbox"] {
        height: 20px;
        width: 25px;
    }

    .nofify-form-1 input[type="checkbox"]:checked:after {
        width: 10px;
        height: 5px;
    }

    .connected-buttons .connect-with-google,
    .connected-buttons .connect-with-apple {
        height: 45px;
        font-size: 16px;
        gap: 20px;
        align-items: center;
        justify-content: center;
        margin: 10px 0;
    }

    .connected-buttons .connect-with-google img,
    .connected-buttons .connect-with-apple img {
        height: 20px;
        gap: 20px;
    }

    .connected-buttons .connect-with-google,
    .connected-buttons .connect-with-apple {
        height: 45px;
        font-size: 16px;
        gap: 20px;
        align-items: center;
        justify-content: center;
        margin: 10px 0;
    }

    .connected-buttons .connect-with-google img,
    .connected-buttons .connect-with-apple img {
        height: 20px;
        gap: 20px;
    }

    .password-msg-parent .password-sent {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 5px;
    }

    .password-msg-parent img {
        height: 20px;
    }

    .chang-pas-btn {
        justify-content: flex-start;
    }


    .connected-buttons .connected-with-google {
        height: 45px;
        font-size: 16px;
    }

    .connected-buttons .connected-with-google img {
        height: 22px;
    }

    .connected-accounts h3 {
        font-size: 18px;
    }

    .connected-accounts {
        padding: 10px;
        border-radius: 10px;
    }

    .connected-buttons .connected-with-google {
        height: 45px;
        font-size: 16px;
    }

    .connected-buttons .connected-with-google img {
        height: 22px;
    }

    .connected-accounts h3 {
        font-size: 18px;
    }

    .connected-accounts {
        padding: 10px;
        border-radius: 10px;
    }

    .identity-heading-and-button h3 {
        font-size: 18px;
    }

    .notify-setting-inner-box h3 {
        font-size: 18px;
        line-height: 24px;
    }

    .notify-setting-inner-box {
        padding: 10px;
        border-radius: 10px;
    }

    .identity-requirements {
        font-size: 12px;
    }

    .front-and-back .front,
    .front-and-back .back {
        margin: 20px 0 0;
        padding: 50px 0;
    }

    .front-and-back .back {
        margin-bottom: 20px;
    }

    .front-and-back img {
        height: 18px;
    }

    .front-and-back button {
        font-size: 10px;
        padding: 6px 7px;
        border-radius: 5px;
    }

    .profile-heading-and-button {
        display: block;
    }

    .identity-heading-and-button {
        display: block;
    }

    .front-and-back .back {
        margin-bottom: 20px;
    }

    .identity-heading-and-button {
        display: block;
    }

    .createPasswordPopUp .password-content {
        padding: 10px;
        border-radius: 10px;
    }

    #createPasswordPopUpAccount h3 {
        font-size: 20px;
    }

    button#closeCreatePasswordPopup {
        padding: 2px 9px;
    }

    button#closeCreatePasswordPopup i {
        font-size: 13px;
    }

    .button-style-2.change-password {
        height: 45px;
    }

    .create-password-form .password-requirements li {
        align-items: baseline;
    }

    .label-and-info {
        width: 100%;
    }

    .confirmation-popup .popup-content {
        width: 250px;
        height: 200px;
    }

    .bid-main-heading {
        margin: 15px 0;
    }

    .bid-main-heading h2 {
        font-size: 22px;
    }

    .bid-tabs-child button {
        font-size: 14px;
    }

    .bid-tabs-child {
        padding: 5px !important;
        border-radius: 5px;
    }

    .bid-tabs-anchor {
        padding: 0 5px;
    }

    .bid-main-heading h2 {
        line-height: 28px;
    }

    .bid-parent img {
        height: 90px;
    }

    .notification-popup {
        position: fixed;
        top: 72px;
        left: 50%;
        transform: translateX(-50%);
        width: min(360px, calc(100vw - 24px));
        max-height: calc(100vh - 120px);
        overflow: hidden;
        background-color: #FAFAFA;
        box-shadow: 17px 17px 61px 0 #00000023;
        border-radius: 12px;
        z-index: 1100;
    }

    .notification-content {
        display: block;
        padding: 10px;
    }

    .notification-content {
        padding: 10px;
    }

    .notification-content h3 {
        margin-bottom: 10px;
    }

    .notification-body {
        padding: 10px;
        max-height: calc(100vh - 220px);
    }

    .notification-footer {
        padding: 10px;
    }

    .user-profile-setting-popup {
        transform: translate(15%, 0);
    }

    .mkt-hero-section {
        padding: 40px 0;
    }

    h1.mkt-sec {
        font-size: 32px;
        line-height: 38px;
    }

    .marketplace-product {
        padding: 20px 3px;
    }

    .mkt-page-plc-hdig {
        display: block;
        margin-bottom: 20px;
    }

    .mkt-page-plc-hdig h2 {
        text-align: center;
        margin-bottom: 20px;
    }

    .mkt-page-plc-hdig .pagination {
        justify-content: center;
    }

    .footer .logo img {
        height: 50px;
    }

    h1.mkt-sec {
        width: 100%;
    }

    .mkt-hero-section p {
        width: 100%;
    }

    .user-profile-setting img {
        height: 20px;
    }

    .user-profile-setting {
        padding: 8px;
        border-radius: 4px;
    }

    .header-inner .logo img {
        height: 50px !important;
        width: auto !important;
    }

    .dashboard-menu .notification {
        padding: 9px;
    }

    .registration-btns-dashboard {
        gap: 10px;
    }

    ul.mobile-buttons {
        padding: 10px;
        gap: 15px;
    }

    ul.mobile-buttons li {
        margin-bottom: 10px;
    }

    .mobile-buttons .mobile-user-amount {
        justify-content: center;
        gap: 10px;
    }

    section.product-image-and-brief {
        padding: 20px 3px;
    }

    .prodcut-detail-links {
        padding: 40px 3px 2px;
    }

    .product-details-brief-parent .product-heading {
        font-size: 30px;
    }

    .owned-by-and-favoruite .customer-name {
        gap: 5px;
    }

    .owned-by-and-favoruite .customer-profile {
        height: 65px;
        width: 65px;
    }

    .bid-rank-and-time {
        padding: 20px;
    }

    .currency-and-price p {
        font-size: 24px;
    }


    .product-detailed-info-parent .details,
    .product-detailed-info-parent .description {
        font-size: 24px;
        line-height: 30px;
    }

    .product-detailed-info-parent {
        padding: 20px 0;
    }

    .products-brief-parent {
        box-shadow: 10px 10px 30px 0 #00000021;
    }

    .product-detailed-info-parent .details,
    .product-detailed-info-parent .description {
        font-size: 18px;
    }

    p {
        font-size: 14px;
    }

    .product-detailed-info {
        padding: 0px;
    }

    section.product-image-and-brief {
        padding: 20px 3px;
    }

    .prodcut-detail-links {
        padding: 40px 3px 2px;
    }

    .product-details-brief-parent .product-heading {
        font-size: 30px;
    }

    .owned-by-and-favoruite .customer-name {
        gap: 0;
    }

    .owned-by-and-favoruite .customer-profile {
        height: 65px;
        width: 65px;
    }

    .bid-rank-and-time {
        padding: 20px;
    }

    .currency-and-price p {
        font-size: 24px;
    }


    .product-detailed-info-parent .details,
    .product-detailed-info-parent .description {
        font-size: 24px;
        line-height: 30px;
    }

    .product-detailed-info-parent {
        padding: 20px 0;
    }

    .products-brief-parent {
        box-shadow: 10px 10px 30px 0 #0000001f;
    }

    .product-detailed-info-parent .details,
    .product-detailed-info-parent .description {
        font-size: 18px;
    }


    p {
        font-size: 14px;
    }

    .product-detailed-info {
        padding: 0px;
    }

    .product-copy-and-view {
        justify-content: flex-start !important;
        margin-top: 20px;
    }

    .products-brief-parent {
        padding: 15px;
    }

    .product-images-parent {
        padding: 0;
    }

    .product-images-parent .product-main-image img {
        height: 250px;
        object-fit: cover;
    }

    .swiper-product-imageAlbum img {
        height: 125px;
        width: 125px;
    }

    .product-details-brief-parent .product-heading {
        margin-bottom: 20px;
        font-size: 22px;
        line-height: 28px;
    }

    .product-details-brief-parent {
        padding: 0;
    }

    .bid-rank-and-time {
        padding: 15px;
        display: block;
    }

    .currency-and-price p {
        font-size: 20px;
    }

    .min-bid-and-estimate .minimum-bid,
    .min-bid-and-estimate .estimate-bid {
        font-size: 14px;
    }

    .bid-history-parent {
        max-height: 280px;
    }

    .bid-history-scroll {
        padding-right: 2px;
    }

    .history-user .user-profile-history {
        height: 50px;
        width: 50px;
        margin-right: 10px;
    }

    .history-user.parent {
        margin-bottom: 15px;
    }

    .history-user-profile .username-and-date .history-user-name {
        font-size: 16px;
        line-height: 20px;
    }

    .history-user-profile .username-and-date .date {
        font-size: 14px;
        line-height: 18px;
    }

    .history-user-payAmount .history-no,
    .history-user-payAmount .history-currency {
        font-size: 16px;
    }

    .years-and-location .condition-time {
        margin-bottom: 20px;
    }

    .location {
        margin-bottom: 20px;
    }

    .min-bid-and-estimate {
        display: block;
    }

    .min-bid-and-estimate {
        display: block;
    }

    .product-back-and-head h3 {
        font-size: 22px;
    }

    .product-back-and-head a i {
        padding: 7px 10px;
    }

    .product-copy-and-view a {
        font-size: 14px;
    }

    .product-copy-and-view span {
        font-size: 14px;
    }

    .currency-and-price {
        padding: 10px;
    }

    .bid-rank-and-time .price {
        font-size: 22px;
    }

    .bid-rank-and-time .price i {
        font-size: 14px;
        padding: 2px 5px;
    }

    .bid-rank-and-time .date {
        font-size: 16px;
        text-align: left;
    }

    .bid-rank-and-time .endin {
        font-size: 14px;
        text-align: left;
    }

    .bid-rank-and-time .rank {
        font-size: 14px;
    }

    .bid-price-and-rank {
        gap: 0px;
    }

    .bid-price-and-rank {
        margin-bottom: 10px;
    }

    .bid-time-and-date {
        gap: 0;
    }

    .bid-place-button .place-bid {
        font-size: 20px;
        line-height: 28px;
    }

    .product-images-album {
        padding: 10px 0;
    }

    .owned-by-and-favoruite .customer-name .owner {
        font-size: 14px;
    }

    .owned-by-and-favoruite .customer-name .name {
        font-size: 16px;
        text-transform: capitalize;
    }

    .available-balance p {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .available-balance .balance {
        font-size: 24px;
        line-height: 30px;
    }

    .data-wallet .main-heading {
        font-size: 28px;
        line-height: 34px;
    }

    .payment-methods-btns {
        justify-content: flex-start;
        margin: 10px 0;
    }

    button.payment-methods {
        font-size: 16px;
    }

    .transections .heading {
        font-size: 20px;
    }

    button.login {
        font-size: 14px !important;
    }

    .mobileMenuOpen,
    #closeMenuIcon i {
        font-size: 16px;
        padding: 8px 10px;
    }

    ul.mobile-buttons-web {
        display: block;
    }

    ul.mobile-buttons-web .mobile-child-menu {
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
    }

    .mobile-buttons-web li {
        margin-bottom: 10px;
    }

    .loginModal h3 {
        font-size: 20px;
    }

    .loginModal #loginStep button,
    .loginModal #loginStep2 select,
    .loginModal #loginStep2 input,
    .loginModal #loginEmail input,
    .loginModal #forgetEmailPasswordLogin input {
        height: 45px;
    }

    .loginContinueIcon img {
        height: 22px;
        top: 10px;
    }

    .loginModal,
    .welcomeModal {
        align-items: flex-end !important;
        padding: 0 !important;
    }

    .loginModal-content,
    .welcomeModal .modal-dialog .modal-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        padding: 24px;
        height: 100% !important;
        max-height: 100% !important;
        overflow-y: auto;
    }

    /* Target modal-dialog in welcomeModal to be full width */
    .welcomeModal .modal-dialog {
        margin: 0 !important;
        width: 100% !important;
        max-width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-end;
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }

        to {
            transform: translateY(0);
        }
    }

    .step-heading-and-back {
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .login-form-step .heading-margin {
        margin-bottom: 15px;
    }

    .login-form-step h2 {
        font-size: 22px;
        line-height: 28px;
    }

    .login-form-step #otp-container-login input {
        height: 50px;
    }

    .login-form-step #otp-container-login {
        margin-bottom: 30px;
    }

    .loginModal #resendOtpButtonLogin {
        padding: 8px 10px;
        border-radius: 7px;
    }

    .signupmodal-content {
        padding: 10px;
        margin: 0 10px;
    }

    #SignupModal .signUpContinueIcon,
    #SignupModal #stepEmail input,
    #SignupModal .steps-input-select input,
    #SignupModal .steps-input-select select {
        height: 45px;
    }

    .signUpContinueIcon img {
        height: 20px;
        top: 10px;
    }

    #SignupModal #emailOtp-container input,
    #SignupModal #otp-container input {
        height: 50px;
    }

    #SignupModal #emailOtp-container,
    #SignupModal #otp-container {
        margin-bottom: 30px;
    }


    #SignupModal h2 {
        font-size: 24px;
    }

    #SignupModal h3 {
        font-size: 20px;
    }

    .upload-profile-image img {
        height: 100px;
    }

    #SignupModal #doItLater {
        margin-bottom: 0;
    }

    #SignupModal #changePicture {
        font-size: 14px;
        padding: 0;
        height: 45px;
    }

    #SignupModal #changePicture img {
        height: 18px;
    }

    .website-logo img {
        height: 100px;
    }

    /* ul.navbar-nav {
        padding: 0 25%;
    } */

    .table-parent {
        overflow-x: scroll;
    }

    .add-new-method {
        width: 310px;
        padding: 10px;
    }

    #closeAddNewMethod {
        top: 10px;
        left: 10px;
        padding: 1px 6px;
        font-size: 12px;
    }

    .payment-info-img img {
        height: 22px;
    }

    .method-btns img {
        height: 20px;
    }

    .product-detail h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .product-detail {
        margin-bottom: 20px;
    }

    .invoices-main-heading h2 {
        font-size: 34px;
    }

    .invoices-table .name {
        width: 135px;
    }

    .invoices-table .date-time {
        width: 150px;
    }

    .invoices-table .invoice-status-container {
        width: 175px;
    }

    .invoices-table {
        overflow-x: auto;
    }

    .uploadListing .inputNumber {
        margin-bottom: 20px;
    }

    .uploadListing .upload-listing-child-2 {
        margin-bottom: 0;
    }

    .uploadListing-main-heading h2 {
        font-size: 34px;
        line-height: 40px;
    }

    .uploadListing .upload-listing-form-element {
        font-size: 14px;
        line-height: 20px;
    }

    .uploadListing .inputNumber input {
        font-size: 14px;
        line-height: 20px;
    }

    .uploadListing .inputNumber i {
        font-size: 24px;
    }

    .uploadListing .upload-file-box {
        padding: 45px 15px;
    }

    .uploadListing .upload-file-box .file-vector img {
        height: 40px;
    }

}

@media (max-width: 568px) {
    .newmsg {
        font-weight: 700;
    }

    .choice-card {
        min-width: 140px !important;
        background-color: #ffff;
        display: flex;
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
        margin-bottom: 30px;
    }

    .bid-tabs-anchor {
        padding: 0;
    }

    .allNotifications {
        padding: 20px 3px;
    }

    .notify-remove i {
        font-size: 22px;
    }

    .notifyContent {
        display: block;
    }

    .notifyPopImage img {
        height: 50px;
    }

    .allNotificationPopup {
        padding: 12px;
        border-radius: 10px;
    }

    .notifyMsg .notimsg {
        font-size: 14px;
        margin-bottom: 0;
    }

    .notifyMsg .noti-time {
        font-size: 10px;
    }

    .notifyPopImage {
        margin-bottom: 10px;
    }

    .listing-main-heading select {
        height: 30px;
        font-size: 14px;
    }

    .allNotificationPopup-1 {
        padding: 12px;
    }

    .allNotificationPopup-1 .notifyPopImage img {
        height: 30px;
    }

    .allNotificationPopup-1 .notifyPopImage {
        width: 50px;
    }

    .allNotificationPopupReaded {
        padding: 12px;
    }

    .allNotificationPopupReaded-1 {
        padding: 12px;
    }

    .allNotificationPopupReaded-1 .notifyPopImage {
        width: 50px;
    }

    .allNotificationPopupReaded-1 .notifyPopImage img {
        height: 30px;
    }

    .payment-methods-btns {
        display: grid;
        gap: 5px;
        grid-template-columns: 1fr;
    }

    .payment-methods-btns .button-style-3,
    .payment-methods-btns .button-style-2 {
        width: 100%;
    }
}

/* <---mediaquery---> */


/* .swiper-button-prev {
    left: 45% !important;
    top: 94.3% !important;
    color: #000 !important;
    background-color: #fff !important;
    padding-block:25px!important;
    padding-inline:25px!important;
    border-radius: 15px 0px 0px 15px;
   
}
.swiper-button-next {
    right: 45% !important;
    top: 94.3% !important;
    color: #000 !important;
    background-color: #fff  !important;
    padding-block:25px!important;
    padding-inline:25px!important;
    border-radius: 0 15px 15px 0;
   border-left: 2px solid #f5f5f5;

}
.hero-section .swiper-button-next{
    top: 78% !important;
    right: 22% !important;
}
.hero-section .swiper-button-prev{
    top: 78% !important;
    left: 67.5% !important;
}
.featured-product .swiper-button-prev{
    top: 94.3% !important;
    left: 43% !important;
}



.swi-right{
    right: 0 !important; 
    top: 22px !important; 
    color: #000 !important; 
    }
.swi-left{
    left: 0 !important; 
    top: 22px !important; 
    color: #000 !important; 
    background-color: blue !important;
    } */
.swiper-button-next:after {
    font-size: 25px !important;
}

.swiper-button-prev:after {
    font-size: 25px !important;
}


@media (max-width: 767px) {

    .home-page .hero-section .swiper-button-prev,
    .home-page .hero-section .swiper-button-next,
    .home-page .featured-product .swiper-button-prev,
    .home-page .featured-product .swiper-button-next {
        display: none !important;
    }
}



.product-main-image .swiper-button-prev {
    top: 94.3% !important;
    left: 26.4% !important;
    display: none;
}

.product-main-image .swiper-button-next {
    top: 94.3% !important;
    left: 26.4% !important;
    display: none;
}

label {
    margin-block: 10px 5px;

}

.btn-primary {
    background-color: blue !important;
    border: 1px solid blue;
    border-radius: 20px !important;
    padding-inline: 50px !important;
    margin-bottom: 20px;

}



.btn-primary:hover {
    border: 1px solid blue !important;
    background-color: transparent !important;
    color: #000 !important;

}

.color {
    background-color: #f5f5f5;

}

.color-white {
    background-color: #fff !important;


}


.user-profile-setting img {
    width: 40px;
    object-fit: contain;

}

.paypalinput {
    background-color: transparent !important;
    border: 1px solid rgb(204, 204, 204) !important;
}

.btn-paypal {
    background-color: #000 !important;
}



@media (max-width: 992px) {
    /* Yahan styles likhein jo 992px ya is se chhoti screens par lagni chahiye */

    .registration-btns {

        display: block;
        justify-content: none;
        align-items: none;

    }




}

.btn-close {
    margin: 0px !important;
}

.font-size {
    font-size: 13px !important;
}

.proin {
    border: none !important;
}




/* Ensure search doesn't break the navbar */
.search-container {
    position: relative;
}

/* Remove the default cancel icon in input */


/* Style search input */
.search-box {
    width: 200px;
    padding: 5px;
    outline: none;

}

/* Hide search icon when searching */
.search-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

/* Searching message */
.searching-message {
    font-size: 14px;
    color: gray;
    margin-left: 10px;
}

/* Search results dropdown */
.search-result {
    position: absolute;
    top: 100%;

    background: #EDEDED;
    border: 1px solid #ddd;
    list-style: none;
    padding: 0;
    z-index: 1000;
    text-align: left;
    width: 200px;
}

@media (max-width: 992px) {
    .search-result {
        width: 100%;
        top: 125px;
    }
}

.search-result li {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
}

.search-result li:last-child {
    border-bottom: none;
}

.search-result li a {
    text-decoration: none;
    color: black;
    display: block;
}

.search-result li:hover {
    background: #f5f5f5;
}

button.notification.p-2.rounded {
    border: none;
}

ul#navbarDesktop {
    text-align: center;
    display: flex;
    align-items: center;
}

div#navbarSupportedContent {
    text-align: center;
    justify-content: space-between;
}

@media (max-width: 600px) {

    .mkt-child {
        padding: 0 !important;
    }

    .makt-parent {
        row-gap: 20px;
    }

    .payment-method-choose {
        width: 370px;
    }
}

.up-listing {
    font-size: 50px;
    font-weight: bolder;
}

.form-group label {
    font-weight: 600;
    font-size: 18px;
}

.form-control {
    margin-bottom: 20px;
    padding-block: 10px !important;
    border: none !important;
}

.loginp {
    font-size: 14px;
    text-align: left;
    color: rgb(133, 127, 127);
}

.logina {
    font-size: 14px;
    cursor: pointer;
}

.album {
    height: auto;
    width: 468px;
    background-color: #fff;
    margin: 0 auto;
    margin-block: 180px 60px;
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.uppara {
    font-size: 14px;
    color: rgb(133, 127, 127);
    margin-block: 10px;
}

.btn-black {
    background-color: #000 !important;
    color: #fff !important;
    font-size: 20px !important;

}

.btn-green {
    background-color: rgb(18, 209, 142) !important;
    color: #fff !important;
    padding: 5px 10px !important;
}

.sell-head {
    display: flex;
    justify-content: space-between;
}

.choice-card {
    min-width: 200px;
    background-color: #ffff;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}



.biddings-tabs .tab-content {
    background-color: transparent !important;

    align-content: center;
    text-align: center;
}


.biddings-tabs .tab-content .tab-pane {
    background-color: transparent !important;

}

@media (max-width: 905px) {
    .sell-head {
        display: block !important;
    }
}

/* Small devices (max-width: 576px) */

@media (max-width: 992px) {
    button#categoriesDropdown {
        font-family: 'Inter';
        font-size: 14px;
        font-weight: 700;
    }

    #profileImage {
        height: 70px !important;
        width: 70px !important;
    }

    .album {
        margin-block: 80px 60px;
    }
}

/* Medium devices (min-width: 577px) and (max-width: 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .album {
        width: 400px;
    }

    .mkt-page-plc-hdig .pagination {
        gap: 5px;
    }
}

@media (max-width: 420px) {}

.modal-body.text-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.down-arrow img {
    margin-left: -2px;
}

.down-arrow {
    width: 30px;
    height: 30px;
    background-color: #EDEDED;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
    border: none;

}

.pricing-card {
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background: #fff;
    margin: auto;
}

.border-bottom1 {
    border-bottom: 1px solid rgb(163, 163, 163);
}

.bronze-text {
    color: #D49172;
    font-weight: bold;
}

.sliver-text {
    color: rgb(163, 163, 163);
    font-weight: bolder;
    text-transform: uppercase;

}

.gold-text {
    color: #F88447;
    font-weight: bolder;
}

.price {
    font-size: 34px;
    font-weight: bolder;
    color: #222;

}

.btn-dark {
    border-radius: 5px;
}

.product-box {
    text-decoration: none;
    color: #000;
    display: block;
    height: 100%;
}

.product-card-wrapper {

    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.swiper-slide .product-box {
    background-color: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 18px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.swiper-slide {
    overflow: visible;
}




.featured-product .swiper-slide {
    overflow: visible;
}

button.jsx-ab77ef67a3fcfa82 {
    margin-left: -45px;
    font-size: larger;
    margin-bottom: 25px;
}

.jsx-ab77ef67a3fcfa82.password-strength {
    text-align: left;
    margin-block: 20px;
}

.resend-code-container {
    margin-top: 10px;
    text-align: right;
}

.product-images-parent {
    height: 100%;
}

.resend-button {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-size: 14px;
}

.resend-button:disabled {
    color: gray;
    cursor: not-allowed;
}

.alert-message {
    color: red;
    font-size: 14px;
}

button.jsx-ab77ef67a3fcfa82.d-block.ms-1 {
    border: none;
    padding: 1px 10px;
    border-radius: 100%;
}

@media (max-width: 400px) {
    .profile-container img {
        height: 30px !important;
        width: 30px !important;
    }
}

button.delete-btn.noti {
    background-color: transparent;
    border: none;
    color: red;
}

button.mark-as-read-btn {
    background-color: transparent;
    border: none;
    color: green;
}

.para p {
    font-family: Inter, Sans-Serif;
    color: #050a2e !important;
}

.about_para h2 {
    color: #333;
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 300;

}

.About_Heading {
    color: #000 !important;
    font-family: "Roboto", Sans-serif;
    font-size: 50px !important;
    font-weight: 500 !important;
}

.About_Heading2 {
    color: #000 !important;
    font-family: "Roboto", Sans-serif;
    font-size: 22px !important;
    font-weight: bolder !important;
}

.contact-form {
    max-width: 600px;
    padding: 10px 30px;
    border-radius: 20px;
    background-color: #FFF;
}

/*   
  .contact-form h2 {
    text-align: center;
  } */

.contact-form div {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-left: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 12px;
    background-color: #F8F8F8;
}

.contact-form button {
    width: 100%;
    text-align: center;
    padding: 10px;
    background: #23262F;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 12px;
}

.contact-form .error {
    color: red;
    font-size: 0.9em;
}

.contact-form .success {
    color: green;
    font-size: 1em;
    text-align: center;
}

.our_partner {
    width: 100%;
    height: 200px;
    margin-block: 20px;
    border-radius: 10px;

}


.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
}

.contact-item svg {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    stroke: #555;
}

.contact-section .social-icons {
    font-size: 70px;
    display: flex;
    column-gap: 40px;
}

.craxx {
    background-color: #fff;
}

.patex {
    background-color: #000000;
}

.nobel {
    background-color: #FF2801;
}

#bid_image {

    height: 80px;
}

.hero-section {
    position: relative;
}

/* Style for Both Buttons */
/* Ensure Swiper container is relative */


.hero-section {
    position: relative;
    background-image: url(../images/our-partner.svg);
    background-repeat: no-repeat;
    background-position: top right;
}

/* Create a wrapper effect for the buttons */

.swiper-button-prev,
.swiper-button-next {
    content: "←";
    /* Unicode left arrow */

    position: absolute;
    top: 100% !important;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px !important;
    height: 45px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: #fff;
    color: black;
    border-radius: 10px;
    /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
}

/* Move buttons to center */
.swiper-button-prev {
    border-radius: 10px 0 0 10px;
    /* Rounded on the left only */

}

.swiper-button-next {
    border-radius: 0 10px 10px 0;
    /* Rounded on the right only */
    border-left: 1px solid #f5f5f5;
}

/* Move both buttons to the center */
.swiper-button-prev {
    left: 50% !important;
    transform: translate(-60px, -50%) !important;

}

.swiper-button-next {
    left: 47.6% !important;
    transform: translate(15px, -50%) !important;
}

/* Manually Add Left Arrow Icon */
.swiper-button-prev::before {
    content: url('/assets/images/left-arrow.png');
    /* Unicode left arrow */
    font-size: 20px;
    font-weight: bold;
    color: black;
    position: absolute;
    margin-bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Manually Add Right Arrow Icon */
.swiper-button-next::before {
    content: url('/assets/images/right-arrow.png');
    font-size: 20px;
    font-weight: bold;
    color: black;
    margin-bottom: -10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Remove Swiper's default arrow styling */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

/* Responsive Fixes */
@media (max-width: 768px) {

    .swiper-button-prev,
    .swiper-button-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .contact-item svg {
        width: 20px;
        height: 20px;

    }

    .contact-item {
        font-size: 16px;

    }

    .contact-section .social-icons {
        font-size: 35px;


    }

    .contact-section .social-icons svg {
        height: 32px !important;
        width: 32px !important;
    }

    .contact-form {
        padding: 10px 18px;
    }

    .swiper-button-prev {
        left: 50% !important;
        transform: translate(-40px, -50%);
    }

    .swiper-button-next {
        left: 50% !important;
        transform: translate(10px, -50%);

    }

    .swiper-button-prev {
        transform: translate(-50px, -50%);
    }

    .swiper-button-next {
        transform: translate(10px, -50%);
    }
}

.swiper-wrapper {
    margin-bottom: 100px;
}

.mySwiper2 div:first-child {
    margin-bottom: 0px !important;
}

@media (max-width: 768px) {
    .hero-section .swiper-button-next {
        top: 80% !important;
    }

    .hero-section .swiper-button-prev {
        top: 80% !important;
    }
}

/* Header Dropdown Styling */
.nav-item.dropdown {
    position: relative;
}


.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-toggle {
    margin: auto;
}

.navbar-nav .dropdown-menu {
    text-align: center;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu .dropdown-item {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-menu .dropdown-item:hover {
    background: #f3f3f3;
    color: #000;
}

.text-deco {
    text-decoration: underline;
    border: none;
    color: #43ACE9;
    margin-bottom: 40px;
    box-shadow: none;
    background-color: transparent;
}

/* about section start */

.about-bg-image h2 {

    /* Display/D-Small */
    font-family: Inter;
    font-size: 52px;
    font-style: normal;
    font-weight: 800;
    line-height: 72px;
    /* 138.462% */
    letter-spacing: -0.52px;

}

.about-bg-image p {

    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */

}

.main-heading-about {


    /* Display/D-Small */
    font-family: Inter;
    font-size: 52px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: -0.52px;
}

.about-title {

    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
}

.about-box {
    border-radius: 20px !important;
    background: #FFF;
    box-shadow: 0px 45px 89.4px 0px rgba(0, 0, 0, 0.10);
}

.about-box-title {

    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 133.333% */
    margin-top: 20px !important;
}

.main-heading-about-uniqe {

    font-family: Inter;
    font-size: 42px;
    font-style: normal;
    font-weight: 800;
    line-height: 72px;
    /* 138.462% */
    letter-spacing: -0.52px;
}

.asksub {

    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 133.333% */
}

.about-last {

    font-family: Inter;
    color: #606060;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
}

.text-justify {
    text-align: justify !important;
}

.search-icon-btn {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
}

.search-trigger {

    display: flex;
    cursor: pointer;
    background-color: #f5f5f5;
    border-radius: 5px;
    padding-left: 10px;
    margin-right: 10px;
    /* max-width: 240px; */
    text-align: justify;
    align-items: center;
    height: 44px;
}

.search-box {
    padding: 10px;
    /* left padding icon ke liye jagah */
    border: none;
    border-radius: 4px;
    background: #f5f5f5;
}

.search-trigger-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #888;
    pointer-events: none;
    /* icon pe click input wrapper handle karega */
}

.search-trigger:focus {
    outline: none;
}

.search-trigger:focus .search-box {
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.sear-icon {
    background-color: #EDEDED;
    border-radius: 8px;
    margin-top: 16px;
    padding: 5px;
}

.active {
    background-color: #EDEDED !important;
    border-radius: 10px;
    padding: 10px 8px !important;
}

.account-head {

    font-family: Inter;
    font-size: 52px;
    font-style: normal;
    font-weight: 800;
    line-height: 72px;
    /* 138.462% */
    letter-spacing: -0.52px;
    margin-bottom: 40px;
}

.user_profile h2 {

    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 140% */
}

.user_profile p {

    color: #606060;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

.remove-btn {
    display: inline-flex;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    border: 1px solid #EDEDED;
}

.form-child.position-relative {
    position: relative;
}

.input-icon-wrapper {
    position: absolute;
    top: 57%;
    right: 20px;
    /* adjust karke icon ko input ke andar align karein */
    transform: translateY(-50%);
    pointer-events: none;
}

.input-icon-top70 {
    position: absolute;
    top: 70%;
    right: 20px;
    /* adjust karke icon ko input ke andar align karein */
    transform: translateY(-50%);
    pointer-events: none;
}


.business_info p {
    color: #43ACE9;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 133.333% */
    margin-bottom: 0px !important;
}

.close_account {
    color: #F66666;

    /* Body/B-Large */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 133.333% */
}

.heading {

    font-family: Inter;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    /* 128.571% */
    margin-bottom: 20px;
}

.identity-para {
    color: var(--Light-Text, #606060);

    /* Paragraph/P-Small */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

.identity-upload-section .upload-box {
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FAFAFA;
    ;
    box-shadow: 15px 19px 50px 0px rgba(0, 0, 0, 0.08);
}

.identity-upload-section .upload-btn {
    background: transparent;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.identity-upload-section .upload-preview {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.identity-upload-section {
    background-color: #F8F8F8;
    padding: 30px;
    border-radius: 10px;
}

.liss {
    color: var(--Light-Text, #606060);

    /* Paragraph/P-Small */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

.active-tabs {
    color: #43ACE9 !important;
    background-color: #DCECFA !important;
    padding: 10px 16px !important;
}

.listing-tabs button {
    color: #000;
}

.upload-box {
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
}

.upload-preview {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.static-filter-sidebar {
    border-radius: 20px;
}

.static-filter-sidebar ul {
    list-style: none !important;
    padding-inline-start: .5rem !important;
}

.static-filter-sidebar button {
    appearance: none;
    background-color: #fff;
    border: none;
    color: #43ACE9;
    font-size: 24px;
    margin-left: 8px;
}




/* 1. Native checkbox ko hide karo */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* 2. Span ko custom box banao */
.custom-checkbox {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;

}

.custom-checkbox .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-right: 8px;
    display: inline-block;
    transition: background-color 0.2s, border-color 0.2s;
}

/* 3. Jab checked ho to color aur tick dikhao */
.custom-checkbox input:checked+.checkmark {
    background-color: #43ACE9;
    /* primary fill */
    border-color: #43ACE9;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2210%22%20height%3D%228%22%20viewBox%3D%220%200%2010%208%22%20fill%3D%22none%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M9.5404%200.197613C9.79947%200.459253%209.79733%200.881359%209.53573%201.14041L3.47572%207.1404C3.34944%207.26547%203.17848%207.33487%203.00079%207.33333C2.82309%207.33173%202.65338%207.25927%202.52933%207.13207L0.189332%204.73207C-0.0677013%204.46847%20-0.0623546%204.04633%200.201265%203.78933C0.464892%203.53227%200.886965%203.53767%201.144%203.80127L3.01501%205.72027L8.5976%200.192919C8.85927%20-0.0661275%209.28133%20-0.0640275%209.5404%200.197613Z%22%20fill%3D%22%23FEFEFE%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* 4. Hover effect */
.custom-checkbox:hover .checkmark {
    border-color: #888;
}

.custom-checkbox {
    color: var(--Light-Text, #606060);

    /* Paragraph/P-Medium */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 125% */
}

/* Remove any default background */
.form-range {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    width: 100%;
    height: 4px;
    margin: 0;
}

/* WebKit: style the entire track */
.form-range::-webkit-slider-runnable-track {
    height: 4px;
    background: #43ACE9;
    /* your blue */
    border-radius: 2px;
    cursor: pointer;
}

/* WebKit: style the handle */
.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    margin-top: -4px;
    /* center on track */
    background: #fff;
    border: 3px solid #43ACE9;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.1s;
}

.form-range::-webkit-slider-thumb:active {
    transform: scale(1.2);
}

/* Firefox: track */
.form-range::-moz-range-track {
    height: 4px;
    background: #43ACE9;
    border-radius: 2px;
    cursor: pointer;
}

/* Firefox: handle */
.form-range::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #fff;
    border: 3px solid #43ACE9;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.1s;
}

.form-range::-moz-range-thumb:active {
    transform: scale(1.2);
}

/* IE/Edge */
.form-range::-ms-track {
    height: 4px;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

.form-range::-ms-fill-lower,
.form-range::-ms-fill-upper {
    background: #43ACE9;
    border-radius: 2px;
}

.form-range::-ms-thumb {
    width: 12px;
    height: 12px;
    background: #fff;
    border: 3px solid #43ACE9;
    border-radius: 50%;
    cursor: pointer;
}

.select-wrapper {
    display: inline-block;
    /* or w-auto in Bootstrap */
}

.custom-select {
    /* Remove native appearance */
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;

    /* Remove any background‐image the browser may add */
    background-image: none !important;
    background-color: transparent !important;

    /* Make room for your custom SVG */
    padding-right: 2.5rem !important;
    border: none !important;
}




/* IE/Edge dropdown arrow */
.custom-select::-ms-expand {
    display: none;
}

/* Optional: Firefox needs this to remove inner focus ring */
.custom-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

.select-wrapper .select-icon {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    /* adjust horizontal offset */
    transform: translateY(-50%);
    pointer-events: none;
    /* let clicks go through to the select */
    display: flex;
    align-items: center;
}

.but-circle {
    background-color: #EDEDED;
    border-radius: 50px;

}

.custom-close {
    background: none;
    /* remove default bg-image */
    border: none;
    /* remove default border */
    padding: 0;
    /* so SVG fills the button */
    width: 36px;
    height: 36px;
    font-size: x-large;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.custom-close svg {
    display: block;
    /* remove whitespace */
}

.pop-head {

    color: var(--Dark, #23262F);
    /* Heading/H-Small */
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 32px;
    /* 133.333% */
}

.dollor {
    color: var(--Dark, #23262F);
    font-family: Inter;
    font-size: 96px;
    font-style: normal;
    font-weight: 400;
    line-height: 112px;
    /* 116.667% */
    letter-spacing: -1.44px;
}

.pop-title {
    color: var(--Dark, #23262F);

    /* Body/B-Large */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 133.333% */
}

.pop-input {
    border-radius: 12px !important;
    background: #FAFAFA !important;
    box-shadow: 15px 19px 50px 0px rgba(0, 0, 0, 0.08) !important;
}

/* 1) Hide the native arrow */
.no-arrow {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: none !important;
    padding-right: 2.5rem !important;
    /* room for SVG */
}

/* IE/Edge remove default arrow */
.no-arrow::-ms-expand {
    display: none;
}

/* 2) Position your custom SVG */
.select-icon {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    /* adjust as needed */
    transform: translateY(-50%);
    pointer-events: none;
    /* let clicks go through */
    display: flex;
    align-items: center;
}

.btn-icon-delete {
    background: none;
    /* remove any background */
    border: none;
    /* remove default border */
    padding: 0;
    /* shrink to SVG size */
    cursor: pointer;
    /* show pointer on hover */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    /* remove extra line-height around SVG */
}

.btn-icon-delete svg {
    display: block;
    /* remove inline whitespace */
}

.logina a {
    text-decoration: underline !important;
}

.reset-card {
    border: none !important;
    border-radius: 20px;
    background: #FAFAFA !important;
    box-shadow: 17.561px 17.561px 61.057px 0px rgba(0, 0, 0, 0.12);
}

.my-bg-color {
    background-color: #f9f9f9;
}

.new_pass_input {

    border-radius: 12px;
    border: 1px solid #C2C3CB !important;
    background: #FAFAFA !important;
    display: flex;
    padding: 18px 20px !important;
    justify-content: center;
    align-items: flex-start;
    gap: 272px;
    align-self: stretch;
}


.start-selling-parent .start-slelling-child {
    justify-content: space-between;
    align-items: center;
}

.start-selling-parent .start-slelling-right {
    width: 315px;
    height: 315px;
}


.registration-btns .sellnow,
.navbar-collapse .sellnow {
    padding: 12px 16px;

    border-radius: 6px;

    background-color: #23262F;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    list-style: none;
    font-style: normal;
    color: #fff;
}

#closeLoginModal i {
    background-color: #EDEDED;
    color: #23262F;
    padding: 6px 8px;
    font-size: 12px;
    border-radius: 100%;
}

#backPhoneLogin {
    background-color: #EDEDED;
    color: #23262F;
    padding: 6px 8px;
    font-size: 12px;
    border-radius: 100%;
}

.back-butt {
    background-color: #EDEDED;
    color: #23262F;
    padding: 6px 11px;
    font-size: 12px;
    border-radius: 100%;
    border: none;
}


#qlwapp {
    position: fixed;
    bottom: 80px;
    right: 25px;
    background-color: transparent;
    color: #fff;
    z-index: 9999;
    border-radius: 12px;
}

@media (min-width: 992px) {
    #qlwapp {
        bottom: 20px;
    }
}

a.qlwapp-toggle {
    display: block;
    color: #fff;

}

.gameon {
    background: #25d366;
    padding: 10px;
    font-size: 30px;
    border-radius: 50%;
}

.verify_input {
    border-radius: 12px !important;
    background: #F8F8F8 !important;
    padding-block: 15px !important;
}

.verify_svg {
    top: 72% !important;
}

.listing_promoted {
    border: 1px solid #52D486;
}

.pro_feature {
    color: #32A861;

    /* Paragraph/P-X-Small */
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    padding: 4px 8px;
    font-weight: 400;
    line-height: 20px;
    /* 166.667% */
    border-radius: 4px;
    background: rgba(82, 212, 134, 0.15);
    border: none !important;
    margin-bottom: 30px;
}

/* Bootstrap ke baad load karo */

/* 1) Outer dropdown hover pe khule rahe */
.nav-item.dropdown:hover>.dropdown-menu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

/* 2) Ensure overflow visible ho */
.dropdown-menu {
    overflow: visible !important;
}

/* 3) Sub-menu styling */
.sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    /* right side ke bilkul bahar */
    margin-left: .25rem;
    /* thoda gap */
    min-width: 180px;
    /* apne content ke hisab se */
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    padding: .25rem 0;
}

/* 4) Hide BS default caret */
.nav-link.dropdown-toggle::after {
    display: none !important;
}


.nav-span {
    font-family: "Inter";
    font-size: 14px;
    font-weight: 600;
    list-style: none;
    font-style: normal;
    color: #606060 !important;
}

.nationality_svg {
    top: 60% !important;
}

.dropdown-toggle::after {
    display: none !important;
    /* or override content: none !important; */
}

/* Control (main box) */
.my-country-select .rs__control {
    background-color:
        #F8F8F8 !important;
    border: none;
    border-radius: 20px;
    min-height: 55px;
}

/* Hover / Focus */
.my-country-select .rs__control--is-focused {
    border: none !important;
    box-shadow: none !important;
    color: #000 !important;
}

/* Dropdown menu */
.my-country-select .rs__menu {
    background-color: #fff;
    border-radius: 6px;
    margin-top: 2px;
    z-index: 1000;
    color: #000 !important;
}

/* Options */
.my-country-select .rs__option {

    cursor: pointer;
}



.blog_heading {
    background-color: #48ADE5;
    color: #fff !important;
    text-align: center;
}

.ql-container.ql-snow {
    border: none !important;
}

.ql-toolbar.ql-snow {
    border: none !important;
    border-bottom: 1px solid #ccc !important;
}

.logo-image {
    height: auto !important;
    width: auto !important;
    max-height: 50px !important;
}

.logo img,
.logo Image {
    height: auto !important;
    width: auto !important;
    max-height: 50px !important;
}

.header-inner .logo img,
.header-inner .logo Image,
.header-inner .logo-image {
    height: auto !important;
    width: auto !important;
}

@media (max-width: 768px) {

    .header-inner .logo img,
    .header-inner .logo Image,
    .header-inner .logo-image {
        height: auto !important;
        width: auto !important;
    }
}

@media (max-width: 576px) {

    button#categoriesDropdown {
        font-family: 'Inter';
        font-size: 14px;
        font-weight: 700;
    }

    .mkt-page-plc-hdig .pagination {
        gap: 0px;
    }

    .transections-save-cards .table-parent h3 {
        font-size: 16px;
    }

    .notification-container button {
        background-color: transparent;
    }

    .sear-icon {
        background-color: transparent !important;
        margin-inline-end: 0 !important;
    }

    .transections-save-cards .table-parent tr,
    .invoices .invoices-table th,
    .invoices-table .payment-requests-table th {
        font-size: 13px;
    }

    .album {
        max-width: 100%;
    }

    .choice-card {
        max-width: 160px;
        padding: 18px;
        font-size: 12px;
        font-weight: 600;
    }

    .header-inner .logo img {
        height: 30px !important;
        width: auto !important;
    }

    .navbar {
        display: flex !important;
        justify-content: flex-start !important;
    }


    .navbar-nav {
        column-gap: 12px;
    }

    .nav-sellnow {
        margin-top: 8px;
    }

    .user-profile-setting {
        gap: 8px;
    }

    .navbar-toggler {
        font-size: 13px !important;
        padding-block: 11px !important;
    }

    .market-card {
        max-width: 350px;
        padding: 12px;
    }



    .makt-parent {
        max-width: 350px;
        justify-self: center;
    }

    .mkt-img {
        height: 235px;
    }


    .cate-card {
        padding: 12px;
        max-width: 350px;
        margin-inline: auto;
        border-radius: 20px;
    }


    .featured-product .swiper-slide {
        border-radius: 20px;
        padding: 12px;
        max-width: 350px;
    }

    .swiper-slide .swiper-slide-active {
        margin-inline-start: 24px;
    }

    .selling-btns {
        justify-content: center;
    }

    .start-selling-parent .start-slelling-right {
        margin: 0 auto;
    }

    .start-slelling-left h2 {
        text-align: center;
    }


    .footer-child1 .logo img {
        width: auto;
    }

    .start-selling-parent {
        border-radius: 24px;
    }

    h1.hero-sec {
        font-size: 21px;
        max-width: 20ch;
    }

    .hero-section {
        background-image: url(../images/Final_Banner.png);
        background-size: contain;
        min-height: 180px !important;
        padding: 0px !important;
    }


    .left-section p {
        max-width: 100%;
    }

    .happy-clients {
        justify-content: start;
        column-gap: 28px;
    }

    .client-ratings {
        margin-right: 0;
    }

    .start-selling-parent .start-slelling-right {
        width: 100% !important;
        height: 100% !important;
    }

    .explore-more,
    .sellnow {
        padding: 9px 13px !important;
    }

    .left-section p {
        font-size: 14px;

    }

    .right-section {
        padding: 0 !important;

    }

    .right-section img {
        aspect-ratio: 1/1;
        height: auto !important;
        width: 100% !important;
        max-width: 330px !important;
    }

    .right-section .relative {
        width: 100% !important;
        max-width: 330px !important;
        margin: 0 auto;
        height: 250px !important;
        min-height: 250px !important;
        position: relative !important;
        display: block !important;
        visibility: visible !important;
    }

    .right-section .hero-image-wrapper {
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        max-width: 330px !important;
        height: 250px !important;
        position: relative !important;
    }

    .right-section .hero-image-wrapper img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    /* Additional mobile-specific override */
    @media (max-width: 768px) {
        .hero-section .container-fluid {
            padding: 0 !important;
        }

        .right-section {
            display: block !important;
            visibility: visible !important;
            padding: 15px !important;
        }

        .right-section .hero-image-wrapper {
            display: block !important;
            visibility: visible !important;
            width: 100% !important;
            max-width: 330px !important;
            height: 250px !important;
            min-height: 250px !important;
            position: relative !important;
            margin: 0 auto !important;
        }

        /* Ensure Swiper slide takes full width */
        .hero-section .swiper-slide {
            width: 100% !important;
        }

        /* Ensure row displays properly */
        .hero-section .swiper-slide .row {
            display: flex !important;
            flex-direction: column !important;
            margin: 0 !important;
        }
    }

    .right-section img {
        margin-bottom: 10px;
        display: block !important;
        visibility: visible !important;
    }

    /* Force image to show on mobile */
    @media (max-width: 576px) {
        .right-section {
            display: block !important;
            visibility: visible !important;
            width: 100% !important;
            padding: 15px !important;
        }

        .right-section .hero-image-wrapper {
            width: calc(100% - 30px) !important;
            max-width: 100% !important;
            height: 250px !important;
            display: block !important;
            visibility: visible !important;
        }

        .hero-section .col-lg-6.right-section {
            display: block !important;
            order: 2 !important;
        }

        .hero-section .col-lg-6.left-section {
            order: 1 !important;
        }
    }

    .cate-title h2 {
        font-size: 16px;

    }

    h2.hero-sec {
        font-size: 34px;
        margin-bottom: 0;
    }

    .swiper-featured-product {
        max-width: 350px;
        margin: 0 auto;
    }

    .text-color-black {
        font-size: 16px;
    }

    .pro-image {
        height: 270px;
    }

    .loginContinueIcon img {
        height: 20px;
        top: 10px;
    }

    .loginModal #loginStep button {
        font-size: 14px;
    }

    .start-slelling-left p {
        text-align: center;
    }


    .main-heading-about,
    .main-heading-about-uniqe,
    .about-bg-image h2,
    h2.account-head,
    .invoices-main-heading h2,
    .sell-head h1.up-listing {
        font-size: 32px !important;
        line-height: 40px !important;
    }

    .about-bg-image p {
        font-size: 14px !important;
    }

    .about-bg-image svg {
        height: 58px !important;
    }

    .mkt-page-plc-hdig h2 {
        margin-block-start: 70px;
    }

    .album img {
        height: 50px !important;
        width: 50px !important;
    }

    .modal-body .dollor {
        font-size: 50px !important;
    }

    .modal-content {
        max-width: 330px;
        margin: auto;
    }

    .successImage.jsx-63d16c57e936b5d1 {
        height: 50px !important;
        width: 50px !important;
    }

    .message.jsx-63d16c57e936b5d1 {
        font-size: 18px !important;
    }

    .successImage.jsx-b634f4935520df97 {
        height: 50px !important;
        width: 50px !important;
    }

    .message.jsx-b634f4935520df97 {
        font-size: 18px !important;
    }

    .about-bg-image-top,
    .about-bg-image,
    .sbs {
        padding-inline: 8px;
    }

    .about-bg-image-top {
        background-image: none !important;
    }

    .our-partner {
        background-image: none !important;
        z-index: 1;
        position: relative;
    }

}

#__next {
    overflow-x: hidden;
}


.final-banner-section img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}