/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: "Poppins", sans-serif;
    color: #444444;
}
a {
    color: #000000;
}
a:hover {
    color: #000;
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair", sans-serif;
}
button:hover {
    color: #000 !important;
    background-color: #f0f1f3 !important;
}
input:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #000 !important;
}

.btn-dark {
    color: #fff !important;
    background-color: #000 !important;
    border: 1px solid #000;
}
.btn-dark:hover {
    background-color: #f0f1f3 !important;
    color: #000 !important;
    transition-duration: 0.3s;
    border-color: #000;
}

.btnAllPro {
    color: #fff;
    background-color: #000;
    transition-duration: 0.3s;
    border: 1px solid #000;
}
.btnAllPro:hover {
    background-color: #f0f1f3 !important;
    color: #000 !important;
    transition-duration: 0.3s;
    border-color: #000;
}

.btnAllProLight {
    color: #000;
    background-color: #dcdcdc;
    transition-duration: 0.3s;
    border: 1px solid #dcdcdc !important;
}
.btnAllProLight:hover {
    background-color: #000;
    color: #fff;
    transition-duration: 0.3s;
    border-color: #fff;
}

@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1590px;
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}
.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #000000;
    color: #fff;
    transition: all 0.4s;
}
.back-to-top i:hover {
    background: #1654b1;
    color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}
#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #000000;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);
}
#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}
#header .logo a {
    color: #000000;
}
#header .logo img {
    width: 165px;
    height: 26px;
    object-fit: cover;
}

@media (max-width: 992px) {
    #header .logo {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-menu > ul {
    display: flex;
    margin-right: 20px;
}
.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 24px;
}
.nav-menu a {
    display: block;
    position: relative;
    color: #37423b;
    transition: 0.3s;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}
.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
    color: #000000;
}
.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 24px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}
.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}
.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}
.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #37423b;
}
.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active > a,
.nav-menu .drop-down ul li:hover > a {
    color: #000000;
}
.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}
.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}
.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}
.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}
.nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}
.search {
    width: 280px;
    margin-right: 20px;
    margin-right: auto !important;
}
.search input {
    border: 2px solid #dcdcdc;
    height: 38px;
    width: 100%;
    padding: 5px 50px 5px 10px;
    text-align: left;
    font-size: 14px;
}
.search input:focus {
    box-shadow: none;
    outline: 0;
}
.search button {
    height: 32px;
    position: absolute;
    margin-left: -91px;
    font-size: 14px;
    line-height: 16px;
    background-color: #000;
    color: #fff;
    border: 0;
    margin-top: 3px;
    padding: 0 10px;
}
.headMemberArea {
    float: right;
    text-align: right;
    display: flex;
    align-items: center;
}
.headMemberArea .langArea .dropdown button:focus {
    outline: 0;
    box-shadow: none;
}
.langArea {
    margin-right: 10px;
}
.langArea i {
    border: 1px solid #000;
    border-radius: 50px;
}
.iconsArea {
    border-right: 1px solid #000;
    padding-right: 8px;
}
.iconsArea a {
    margin-right: 12px;
}
.iconsArea a span {
    position: absolute;
    background-color: #00000049;
    color: #fff;
    font-size: 11px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-top: -14px;
    margin-left: -10px;
    text-align: center;
    padding: 2px;
}
.memberProfile {
    margin-left: 5px;
}
.memberProfile button:focus {
    outline: 0;
    box-shadow: none;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    top: 17px;
    right: 15px;
    z-index: 998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}
.mobile-nav-toggle i {
    color: #37423b;
}
.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}
.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}
.mobile-nav a {
    display: block;
    position: relative;
    color: #37423b;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}
.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
    color: #000000;
    text-decoration: none;
}
.mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}
.mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
}
.mobile-nav .drop-down > a {
    padding-right: 35px;
}
.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}
.mobile-nav .drop-down li {
    padding-left: 20px;
}
.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(32, 38, 34, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}
.mobile-nav-active {
    overflow: hidden;
}
.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}
.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}
.langAreaInmobile {
    padding-top: 15px;
    margin-bottom: 20px;
    border-top: 1px solid #cacaca;
}
.langAreaInmobile i {
    border: 1px solid #000;
    border-radius: 50px;
}
.headMemberArea2 {
    padding: 0 20px !important;
}
.headMemberArea2 .langAreaInmobile .dropdown button:focus {
    outline: 0;
    box-shadow: none;
}
.searchinMobile {
    margin: 10px 20px !important;
}
.searchinMobile input {
    border: 2px solid #dcdcdc;
    height: 38px;
    width: 100%;
    padding: 5px 50px 5px 10px;
    text-align: left;
    font-size: 14px;
}
.searchinMobile input:focus {
    box-shadow: none;
    outline: 0;
}
.searchinMobile button {
    height: 32px;
    position: absolute;
    margin-left: -91px;
    font-size: 14px;
    line-height: 16px;
    background-color: #000;
    color: #fff;
    border: 0;
    margin-top: 3px;
    padding: 0 10px;
}
.iconsArea2 a {
    margin-bottom: 10px;
    padding-left: 0;
}
.iconsArea2 a span {
    position: absolute;
    background-color: #00000049;
    color: #fff;
    font-size: 11px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-top: -14px;
    margin-left: -10px;
    text-align: center;
    padding: 2px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }
    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 30px 0;
    overflow: hidden;
}
.section-title h2,
.section-title p {
    text-transform: uppercase;
    font-family: Poppins, sans-serif;
}
.section-bg {
    background-color: #f6f7f6;
}
.section-title {
    padding-bottom: 40px;
}
.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px;
    letter-spacing: 2px;
    color: #aaa;
}
.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #9ae1af;
    margin: 4px 10px;
}
.section-title p {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    color: #37423b;
}
.breadcrumbs {
    margin-top: 73px;
    text-align: center;
    background: #000000;
    padding: 30px 0;
    color: #fff;
}
.breadcrumbs h2 {
    font-size: 32px;
    font-weight: 500;
}
.breadcrumbs p {
    font-size: 14px;
    margin-bottom: 0;
}

.auctionEnd {
    color: #fff;
    font-size: 12px;
    margin-right: 9px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 63px;
    }
}

/*--------------------------------------------------------------
# Sections Banner / Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    position: relative;
    text-align: center;
}
#hero .container {
    padding-top: 100px;
}
#hero h1 {
    margin: 0;
    font-size: 82px;
    font-weight: 700;
    line-height: 100px;
    color: #000;
}
#hero h2 {
    color: #000000;
    margin: 10px 0 0 0;
    font-size: 48px;
}
#bannerId .container {
    background-image: url("../img/home/banner.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
#bannerId .container::before {
    content: "";
    background-color: #0000000f;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
}
.homeBanner {
    padding-top: 0 !important;
}
.bannerContent {
    padding: 35px;
}
.homeBanner .bannerContent h4 {
    font-size: 48px;
    color: #000;
}
.homeBanner .bannerContent h3 {
    font-size: 90px;
    margin-bottom: 20px;
    color: #000;
}
.homeBanner .bannerContent p {
    font-size: 16px;
    margin-bottom: 30px;
    width: 400px;
    color: #000;
}
.homeBanner .bannerContent a {
    font-size: 16px;
    color: #fff;
    background-color: #000;
    padding: 8px 20px;
    width: 200px;
    height: 35px;
    transition-duration: 0.3s;
    border: 1px solid #000;
}
.homeBanner .bannerContent a:hover,
.homeBanner .bannerContent a .becomeVendor-btn {
    background-color: #f0f1f3;
    color: #000;
    transition-duration: 0.3s;
    border-color: #000;
}
.homeBanner .bannerContent a .shop-btn {
    margin-right: 20px;
}
.bannerGemStone {
    text-align: center;
    padding: 20px;
}
.bannerGemStone img {
    width: 200px;
}

@media (max-width: 992px) {
    #hero .container {
        padding-top: 62px;
    }
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    padding: 30px 0;
}
.counts .counters span {
    font-size: 75px;
    display: block;
    color: #000000;
    font-weight: 700;
    font-family: "Playfair";
}
.counts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

/*--------------------------------------------------------------
# Featured Live Auctions Section
--------------------------------------------------------------*/
.auction-title {
    font-size: 48px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}
.auction-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    transition: box-shadow 0.3s;
}
.bid-button,
.timer-box {
    background: #2d2d2d;
    color: #fff;
}
.timer-box {
    width: 50px;
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: center;
}
.auction-card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.auction-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    padding: 25px;
    background-color: #ebebeb;
}
.timer-box {
    padding: 8px 12px;
    margin-right: 5px;
    font-size: 14px;
    border-radius: 3px;
}
.bid-history {
    font-size: 13px;
    text-decoration: underline;
}
.bid-input {
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 6px 10px;
    width: 100%;
    margin-bottom: 8px;
}
.bid-button {
    width: 100%;
    border: none;
    padding: 7px 0;
}
.product-details {
    font-size: 14px;
    color: #777;
}
.current-bid {
    font-size: 16px;
    font-weight: 700;
}
.bottom-row {
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.productInner-details h6 {
    font-size: 16px;
    font-weight: 500;
    font-family: "poppins";
    margin-bottom: 15px;
    color: #000;
}
.product-details {
    font-size: 12px;
}
.productInner-details .leftInner {
    padding: 6px;
    padding-left: 8px;
    font-size: 12px;
    font-weight: 300;
}
.productInner-details .leftInner span.me-2 {
    font-size: 12px;
    font-weight: 300;
    color: #9b9999;
}
.productInner-details .leftInner span {
    font-size: 12px;
    font-weight: 300;
}
.product-detail-bid {
    background-color: #000;
    font-size: 14px;
    color: #fff;
    height: 50px;
}
.bidPrice input {
    border: 1px solid #dcdcdc;
    padding: 4px 8px;
    font-size: 14px;
}
.bidPrice button {
    position: absolute;
    background: #000000;
    font-size: 14px;
    padding: 2px 10px 2px 10px;
    color: #fff;
    display: inline;
    width: 90px;
    height: 26px;
    margin-top: 2px;
    margin-left: -93px;
}

/*--------------------------------------------------------------
# Section Category
--------------------------------------------------------------*/
/*#category_list {margin-top: 30px!important;}*/
#category_list .category-card img {
    width: 100%;
}
#category_list .categoryInner-details h6 {
    font-family: "poppins";
    color: #000;
    font-size: 20px;
}

#category_list .category-card img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.5s ease;
}

#category_list .category-card img::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        0deg,
        transparent,
        transparent 30%,
        rgba(0, 255, 255, 0.3)
    );
    transform: rotate(-45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

#category_list .category-card img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.5);
}

#category_list .category-card img:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
}

/*--------------------------------------------------------------
# Section Home middle banner
--------------------------------------------------------------*/

.homeCenter_banner {
    background-image: url("../img/home/center-banner.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px;
}
.homeCenterInner-details h3 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 48px;
}
.homeCenterInner-details p {
    color: #a7a7a7;
    font-size: 16px;
    margin-bottom: 30px;
}
.homeCenterInner-details a {
    background-color: #dcdcdc;
    color: #000;
    padding: 10px 24px;
    display: inline-block;
}

/*--------------------------------------------------------------
# Section product slider
--------------------------------------------------------------*/
#productSlider .card-body h6 {
    font-size: 14px;
    font-weight: 500;
    font-family: "poppins";
    margin-bottom: 10px;
}
.slider-heading {
    font-weight: 600;
    font-size: 48px;
    color: #000;
}
.slider-description {
    font-size: 14px;
    color: #000;
}
.product-card {
    border: 1px solid #dcdcdc;
    transition: transform 0.3s;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-img {
    height: 320px;
    object-fit: contain;
    background-color: #dcdcdc;
    padding: 25px;
}
.heart-icon,
.label-badge {
    top: 10px;
    background: #000;
    color: #fff;
    position: absolute;
}
.heart-icon {
    left: 10px;
    padding: 4px 5px;
    border-radius: 50%;
    font-size: 16px;
    line-height: 16px;
}
.label-badge {
    right: 10px;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
}
.add-to-cart {
    background-color: #000;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
}
.custom-next,
.custom-prev,
.owl-nav button.owl-next,
.owl-nav button.owl-prev {
    background: #f2f2f2 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}
.text-decoration-line-through {
    text-decoration: line-through;
}
.add-to-cart:hover {
    color: #000;
    background-color: #dcdcdc;
}
.product-info small {
    font-size: 11px;
    color: gray;
}
.owl-nav {
    position: absolute;
    bottom: 60px;
    left: -200px;
}
.owl-nav button.owl-next,
.owl-nav button.owl-prev {
    border-radius: 5% !important;
    padding: 6px 22px !important;
    border: none !important;
    margin-left: 8px;
}
.custom-next,
.custom-prev {
    border-radius: 5% !important;
    padding: 6px 12px !important;
    border: none !important;
    margin-right: 5px;
}
.owl-nav button span {
    font-size: 18px;
    line-height: 1;
    color: #333;
}
.owl-nav button:hover {
    background: #ddd !important;
}

@media (max-width: 768px) {
    .owl-nav {
        top: auto;
        bottom: -35px;
        right: 35%;
    }
}

/*--------------------------------------------------------------
# Middle banner
--------------------------------------------------------------*/

#middleBanner {
    padding: 60px 0 !important;
}
.middleBanner {
    background-image: url("../img/home/centerBack.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 50px;
}
#middleBanner h6 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 48px;
    text-align: left;
    margin-bottom: 30px;
}
.homeMiddleInner-details .bidPrice input {
    border: 1px solid #dcdcdc;
    padding: 8px 12px;
    font-size: 14px;
}
.homeMiddleInner-details .bidPrice button {
    position: absolute;
    background: #000000;
    font-size: 14px;
    padding: 4px 18px 4px 18px;
    color: #fff;
    display: inline;
    width: 120px;
    height: 35px;
    margin-top: 2px;
    margin-left: -123px;
}
.homeMiddleprod-details {
    position: absolute;
    top: -140px;
    left: 0;
    background-color: #dcdcdc;
}
.homeMiddleprod-details img {
    width: 100%;
    height: 250px;
    padding: 25px;
    background-color: #dcdcdc;
    z-index: 1;
}
.middleInnerInfo {
    padding: 15px;
    background-color: #fff;
}
.homeMiddleprod-details h6 {
    color: #000 !important;
    font-size: 18px !important;
    font-family: "poppins";
    font-weight: 500;
    margin-bottom: 0 !important;
}

/*--------------------------------------------------------------
# Middle CENTER 2 banner
--------------------------------------------------------------*/
.bannerInfo {
    background-image: url("../img/home/banner-3.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 50px;
}
.bannerInfo h5 {
    font-size: 48px;
    color: #fff;
}
.bannerInfo p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px !important;
}
.bannerInfo a {
    background-color: #000;
    color: #fff;
    padding: 10px 24px;
    display: inline-block;
}
.bannerInfo2 {
    background-image: url("../img/home/banner2.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 50px;
}
.bannerInfo2 h5 {
    font-size: 48px;
    color: #fff;
}
.bannerInfo2 p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px !important;
}
.bannerInfo2 a {
    background-color: #000;
    color: #fff;
    padding: 10px 24px;
    display: inline-block;
}

.bannerInfo,
.bannerInfo2 {
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    will-change: transform, box-shadow;
    background-color: #fff;
}
.bannerInfo:hover,
.bannerInfo2:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1), 0 16px 32px rgba(0, 0, 0, 0.05);
}

/*--------------------------------------------------------------
# Product view middle home
--------------------------------------------------------------*/
.card-title {
    font-size: 16px;
    font-family: "poppins";
    font-weight: 500;
}
.card-body strong {
    font-weight: 500;
    font-size: 20px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
    background-color: #f5f6f7;
    padding: 80px 50px;
}
#about h4 {
    font-weight: 600;
    font-size: 52px;
    color: #000;
}
#about img {
    width: 100%;
}
#about h3 {
    font-size: 48px;
    color: #000;
    margin-bottom: 20px;
}
#about h6 {
    font-size: 20px;
    color: #000;
    margin-bottom: 20px;
    font-family: "poppins";
}
#about p {
    font-size: 16px;
    color: #000;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
#testimonials_list {
    padding: 80px 50px;
}
#testimonials_list h4 {
    font-size: 48px;
    font-weight: 500;
    color: #000;
}
.testimonial-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    position: relative;
}
.testimonial-box p {
    color: #000;
    text-align: left;
}
.testimonial-box::before {
    content: "❝";
    font-size: 40px;
    text-align: left;
    color: #ccc;
    line-height: 0;
    display: block;
    margin-bottom: 10px;
}
.testimonial-box::after {
    content: "❞";
    font-size: 40px;
    color: #ccc;
    text-align: right;
    line-height: 0;
    display: block;
    margin-top: 10px;
}
.testimonial-img-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.testimonial-img-nav img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 5px;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
}
.testimonial-img-nav img.active {
    border: 2px solid #000;
    opacity: 1;
}
.testimonial-name {
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
}
#testimonials_list .carousel-inner {
    margin-bottom: 20px;
    padding: 30px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #ffffff;
    font-size: 14px;
    background: #272727;
}
#footer .footer-top {
    padding: 60px 0 30px;
    background: #000;
}
#footer .footer-top .footer-contact,
#footer .footer-top .footer-links {
    margin-bottom: 30px;
}
#footer .footer-top .footer-contact img {
    margin: 0 0 30px;
    width: 180px;
}
#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Poppins";
    color: #ffffff;
}
#footer .footer-newsletter h4,
#footer .footer-top h4 {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    position: relative;
    font-family: "Poppins";
    padding-bottom: 12px;
}
#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
}
#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}
#footer .footer-top .footer-links ul a {
    color: #afafaf;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #ffffff;
}
#footer .footer-newsletter {
    font-size: 14px;
}
#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 4px 10px;
    position: relative;
    border-radius: 0px;
    text-align: left;
    border: 1px solid #e0e5e2;
}
#footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    border: 0;
    background: #000000;
    font-size: 14px;
    padding: 0 20px 2px;
    color: #fff;
    transition: 0.3s;
    border-radius: 0px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type="submit"]:hover {
    background: #dcdcdc;
    color: #000;
}
#footer .credits {
    padding-top: 5px;
    font-size: 13px;
}
#footer .credits a {
    color: #1654b1;
    transition: 0.3s;
}
#footer .credits a:hover {
    color: #afafaf;
}
#footer .social-links a {
    font-size: 28px;
    display: inline-block;
    color: #fff;
    margin-right: 12px;
    text-align: left;
    transition: 0.3s;
}
#footer .social-links a:hover {
    color: #afafaf;
    text-decoration: none;
}
#footer .footer-links-contact {
    margin-bottom: 20px;
}
#footer .footer-links-contact a {
    color: #afafaf;
    transition: 0.3s;
    display: block;
    line-height: 1;
    margin-bottom: 15px;
    line-height: 20px;
    display: flex;
    align-items: center;
}
#footer .footer-links-contact a i {
    font-size: 20px;
    line-height: 20px;
    margin-right: 10px;
}
#footer .footer-links-contact a:hover {
    text-decoration: none;
    color: #ffffff;
}
#footer .footerBottomIcons {
    margin-right: 30px;
}
#footer .footerBottomlinks {
    color: #afafaf;
}
#footer .footerBottomlinks a {
    color: #afafaf;
    transition: 0.3s;
}
#footer .footerBottomlinks a:hover {
    color: #fff;
}
#footer .copyright {
    font-weight: 400 !important;
}

@media (max-width: 768px) {
    #footer {
        text-align: center;
    }
    #footer .footer-top .footer-links ul li {
        text-align: center;
        display: block;
    }
    .footer-links-contact a {
        text-align: center;
        justify-content: center;
    }
    .footer-newsletter {
        margin-bottom: 40px;
    }
    .copyright,
    .footerBottomIcons {
        margin-bottom: 15px;
    }
}

/*--------------------------------------------------------------
# Shop Page css
--------------------------------------------------------------*/
.page-title {
    background: #eee;
    margin-top: 90px;
}
.shop-heading {
    padding: 0px;
}
.filters-box,
.product-box {
    background: #fff;
    border-radius: 5px;
}
.filters-box h5 {
    margin-bottom: 30px;
    font-family: "poppins";
}
.filter-category ul {
    list-style: none;
    padding-left: 0;
}
.filter-category ul li {
    margin-bottom: 10px;
    font-size: 14px;
}
.filter-category .dropdown-toggle {
    cursor: pointer;
    display: block;
    font-weight: 500;
    color: #707070;
    margin-top: 15px;
    font-size: 16px;
}
.filter-category .sub-category {
    display: none;
    padding-left: 15px;
    margin-bottom: 5px;
    margin-top: 12px;
}
.filter-category .dropdown.active.sub-category {
    display: block;
}
.product-box {
    padding: 10px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.product-box img {
    max-height: 220px;
    object-fit: contain;
}
.product-box .badge {
    position: absolute;
    top: 10px;
    right: 10px;
}
.product-box .price del {
    font-size: 0.9rem;
    color: #999;
}
.filter-tags span {
    background: #000;
    color: #fff;
    padding: 2px 10px;
    border-radius: 5px;
    margin-right: 5px;
    display: inline-block;
    margin-bottom: 5px;
}
.range-values {
    display: flex;
    justify-content: space-between;
}
.range-values input {
    width: 48%;
}
.btn-clear {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 15px;
    width: 100%;
}
.shopPage-sidebar {
    background-color: #f0f1f3;
    padding: 25px 20px;
}
.shopPage-sidebar h6 {
    font-size: 20px;
    font-family: "poppins";
    margin-bottom: 20px;
}
.categoryList {
    border-bottom: 1px solid #d4d4d4;
    padding-bottom: 10px;
}
.shopPage-sidebar .dropdown-toggle::after {
    content: "\f077";
    font-family: "Font Awesome 5 Free";
    vertical-align: middle !important;
    transition: 0.5s;
    float: right;
    font-size: 12px;
    border: 0;
    font-weight: 600;
}
.filter-category .dropdown.active {
    color: #000;
}
.filter-category .dropdown.active .sub-category li.active a {
    color: #000;
}
.filter-category ul li a {
    color: #707070;
    font-size: 14px;
}
.filter-category ul li a:hover,
.filter-category .dropdown:hover {
    color: #000;
}
.border-t-1 {
    border-top: 1px solid #dcdcdc;
    padding-top: 10px;
}
.pagination {
    justify-content: center;
    margin-top: 40px;
}
.pagination .page-item .page-link {
    border: 0;
}
.pagination .page-item {
    margin-right: 10px;
}
.pagination .page-item a {
    color: #707070;
}
.page-item.active .page-link {
    background: none;
    color: #000;
}
.page-item:first-child .page-link,
.page-item:last-child .page-link {
    background-color: #dcdcdc;
    color: #000;
}
.page-link:hover {
    background-color: #000;
    color: #fff !important;
}
.filter-category .dropdown.active::after {
    transition: 0.5s;
    -webkit-transform: rotateZ(180deg);
    -moz-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}
.filter-category {
    padding-bottom: 10px;
}

/*--------------------------------------------------------------
# Product Detail page css
--------------------------------------------------------------*/
.product-page-title {
    margin-top: 70px;
}
.product-page-title .shop-heading {
    padding: 10px 0 0 0;
}
.pd-wrap {
    font-family: "Poppins", sans-serif;
}
.pd-wrap .heading-section {
    text-align: center;
    margin-bottom: 20px;
}
.pd-wrap .name,
.product-info-tabs .nav-tabs .nav-item {
    margin-bottom: 0;
}
.pd-wrap .sub-heading {
    font-family: Poppins, sans-serif;
    font-size: 12px;
    display: block;
    font-weight: 600;
    color: #2e9ca1;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.pd-wrap .heading-section h2 {
    font-size: 32px;
    font-weight: 500;
    padding-top: 10px;
    padding-bottom: 15px;
    font-family: Poppins, sans-serif;
}
.pd-wrap .user-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    min-width: 80px;
    background-size: 100%;
}
.pd-wrap .carousel-testimonial .item {
    padding: 30px 10px;
}
.pd-wrap .quote {
    position: absolute;
    top: -23px;
    color: #2e9da1;
    font-size: 27px;
}
.pd-wrap .name {
    line-height: 14px;
    font-size: 17px;
    font-weight: 500;
}
.pd-wrap .position {
    color: #adadad;
    font-size: 14px;
}
.pd-wrap .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    outline: 0;
    height: 25px;
    display: none;
}
.pd-wrap .product-thumb .item img {
    height: 130px;
    width: 115px;
    object-fit: contain;
    background-color: #f0f1f3;
    padding: 10px;
}
.pd-wrap .product-name {
    font-size: 48px;
    font-weight: 500;
    line-height: 48px;
    margin-bottom: 15px;
    font-family: "playfair";
    color: #000;
}
.pd-wrap .product-price-discount {
    font-size: 22px;
    font-weight: 400;
    clear: both;
}
.pd-wrap .product-price-discount span.line-through {
    text-decoration: line-through;
    margin-left: 10px;
    font-size: 14px;
    vertical-align: middle;
    color: #a5a5a5;
}
.pd-wrap .display-flex {
    display: flex;
}
.pd-wrap .align-center {
    align-items: center;
}
.pd-wrap .product-info {
    width: 100%;
}
.pd-wrap .reviews-counter {
    font-size: 13px;
}
.pd-wrap .reviews-counter span {
    vertical-align: -2px;
}
.pd-wrap .rate {
    float: left;
    padding: 0 10px 0 0;
}
.pd-wrap .rate:not(:checked) > input {
    position: absolute;
    top: -9999px;
}
.pd-wrap .rate:not(:checked) > label {
    float: right;
    width: 20px;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 26px;
    color: #ccc;
    margin-bottom: 0;
    line-height: 28px;
}
.pd-wrap .rate:not(:checked) > label:before {
    content: "\2605";
}
.pd-wrap .rate > input:checked ~ label {
    color: #000000;
}
.pd-wrap .rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #deb217;
}
.pd-wrap .rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}
.pd-wrap .product-dtl p {
    color: #000;
    font-size: 16px;
    line-height: 24px;
}
.pd-wrap .product-dtl .form-control {
    font-size: 15px;
}
.pd-wrap .product-dtl label {
    line-height: 16px;
    font-size: 15px;
}
.pd-wrap .form-control:focus {
    outline: 0;
    box-shadow: none;
}
.pd-wrap .product-count {
    margin-top: 15px;
}
.pd-wrap .product-count .qtyminus,
.product-count .qtyplus {
    width: 34px;
    height: 34px;
    background: #212529;
    text-align: center;
    font-size: 19px;
    line-height: 36px;
    color: #fff;
    cursor: pointer;
}
.pd-wrap .product-count .qtyminus {
    border-radius: 1px 0 0 1px;
    height: 40px;
    width: 40px;
    line-height: 40px;
}
.pd-wrap .product-count .qtyplus {
    border-radius: 0 1px 1px 0;
    height: 40px;
    width: 40px;
    line-height: 40px;
}
.pd-wrap .product-count .qty {
    width: 40px;
    margin: 0 6px;
    text-align: center;
    height: 40px;
}
.pd-wrap .round-black-btn {
    border-radius: 1px;
    background: #212529;
    color: #fff;
    padding: 7px 45px;
    display: inline-block;
    border: 1px solid #000000;
    transition: 0.5s ease-in-out;
    margin-right: 20px;
}
.pd-wrap .round-black-btn:focus,
.pd-wrap .round-black-btn:hover {
    background-color: #f0f1f3;
    color: #000;
    text-decoration: none;
    border-color: #f0f1f3;
}
.pd-wrap .product-info-tabs {
    margin-top: 25px;
}
.pd-wrap .product-info-tabs .nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    color: #323232;
}
.pd-wrap .product-info-tabs .nav-tabs .nav-item .nav-link:hover {
    border: 2px soli #000;
}
.pd-wrap .product-info-tabs .nav-tabs .nav-item.show .nav-link,
.product-info-tabs .nav-tabs .nav-link.active,
.product-info-tabs .nav-tabs .nav-link.active:hover {
    border: none;
    border-bottom: 1px solid #000;
    font-weight: 600;
}
.pd-wrap .product-info-tabs .tab-content .tab-pane {
    padding: 30px 20px;
    font-size: 15px;
    line-height: 24px;
    color: #7a7a7a;
}
.pd-wrap .review-form .form-group {
    clear: both;
}
.pd-wrap .mb-20 {
    margin-bottom: 20px;
}
.pd-wrap .review-form .rate {
    float: none;
    display: inline-block;
}
.pd-wrap .review-heading {
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #000;
}
.pd-wrap .review-form .form-control {
    font-size: 14px;
}
.pd-wrap .review-form input.form-control {
    height: 40px;
}
.pd-wrap .review-form textarea.form-control {
    resize: none;
}
.pd-wrap .review-form .round-black-btn {
    text-transform: uppercase;
    cursor: pointer;
}
.product-slider .item img {
    width: 100%;
    height: 622px;
    object-fit: contain;
    background-color: #f0f1f3;
    margin-bottom: 10px;
    padding: 50px;
}
.product-slider .item {
    margin-right: 12px;
}
.productinnerdetails medium {
    color: #000;
    font-size: 16px;
}
.productinnerdetails span {
    color: #707070;
    font-size: 16px;
}
.priceProductArea {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.productShareNWhish a {
    background-color: #f0f1f3;
    padding: 3px;
    text-align: center;
    border-radius: 1px;
    width: 30px;
    height: 30px;
    display: inline-block;
}
.productShareNWhish a i {
    font-size: 18px;
}
.size-options .size-label {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #ddd;
    cursor: pointer;
    background-color: #f4f4f4;
    margin-right: 8px;
    user-select: none;
    margin-bottom: 0;
}
.size-options input[type="radio"] {
    display: none;
}
.size-options input[type="radio"]:checked + .size-label {
    background-color: #000;
    color: #fff;
}
.Infostore {
    margin-bottom: 1rem;
}
.Infostore a {
    text-decoration: underline;
}
.caratInner {
    font-weight: 500;
}
.caratInner span {
    margin-left: 10px;
    font-weight: 400;
}
.lastProDetails p {
    color: #707070 !important;
    font-size: 16px !important;
    margin-bottom: 0;
    margin-right: 40px;
}
.lastProDetails p span {
    color: #000;
    margin-left: 10px;
}
.customer-reviews {
    border: 1px solid #dcdcdc;
    box-shadow: 0px 5px 10px #0000000d;
    padding: 20px;
    margin-bottom: 20px;
}
.leftUpperDetailReview img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 20px;
    border: 2px solid #000;
}
.leftUpperDetailReview h4 {
    color: #000;
    font-size: 18px;
    font-family: "poppins";
    margin-bottom: 0;
}
.customer-reviews p {
    color: #000;
    font-size: 16px;
}
.detailList {
    color: #707070;
    font-size: 16px;
    margin-bottom: 10px;
}
.detailList span {
    color: #000;
    font-size: 16px;
    margin-left: 10px;
}

/*--------------------------------------------------------------
# Product Auctions Detail page css
--------------------------------------------------------------*/
.productInnerAuction-details .leftInner {
    padding: 6px;
    padding-left: 8px;
}
.productInnerAuction-details .leftInner span.me-2 {
    font-size: 13px;
    font-weight: 300;
    color: #9b9999;
    display: block;
}
.productInnerAuction-details .leftInner span {
    font-size: 16px;
    font-weight: 500;
    display: block;
}
.productInnerAuction-details .product-detail-bid {
    background-color: #f0f1f3;
    font-size: 14px;
    color: #000;
}
.productInnerAuction-details .bidPrice input {
    border: 1px solid #dcdcdc;
    padding: 6px 12px;
    font-size: 16px;
    height: 40px;
}
.productInnerAuction-details .bidPrice button {
    position: absolute;
    background: #000000;
    font-size: 16px;
    padding: 2px 10px 2px 10px;
    color: #fff;
    display: inline;
    width: 110px;
    height: 34px;
    margin-top: 3px;
    margin-left: -114px;
}
.productInnerAuction-details .pull-down {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 8px;
}
.productInnerAuction-details .bottom-row {
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: unset;
}
.productInnerAuction-details .bottom-row a {
    margin-left: 25px;
}
.bidderModal .modal-dialog {
    max-width: 800px;
}
.bidderModal .modal-header {
    padding: 0;
    border: 0;
}
.bidderModal .modal-header .close {
    padding: 0;
    margin: 0.5rem 0.6rem -1rem auto;
    font-size: 26px;
    font-weight: 300;
    color: #000;
    opacity: 1;
    z-index: 1;
}
.bidderModal .modal-header .close span {
    color: #000;
    line-height: 0;
    height: 0;
    padding: 0;
    margin-top: 10px;
}
.bidderModal .modal-body {
    padding: 35px;
}
.bidderModal .modal-body .modal-title {
    font-size: 48px;
    color: #000;
    margin-bottom: 20px;
}
.bidderModal .modal-body P {
    font-size: 16px;
    color: #000;
    text-align: center;
}
.auctionDetailsList {
    border: 1px solid #000;
    padding: 20px;
    margin-bottom: 20px;
}
.auctionDetailsList .areaList h5 {
    color: #000;
    font-family: "poppins";
    font-size: 20px;
    margin-bottom: 15px;
}
.auctionDetailsList .areaList p {
    font-size: 16px;
    color: #000;
    margin-bottom: 0;
}
.auctionDetailsList .auctionPrice span {
    background-color: #000;
    color: #fff;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 400;
}
.auctionDetailsList .aucListing ul {
    padding: 0;
    list-style: none;
    margin: 0;
}
.auctionDetailsList .aucListing ul li {
    font-size: 14px;
    color: #000;
}
.bidderModal .aucModalActionBtn a {
    background-color: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 24px;
    display: block;
    text-align: center;
}
.bidderModal .aucModalActionBtn a:hover {
    background-color: #f0f1f3;
    color: #000;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
    z-index: 99;
}

/*--------------------------------------------------------------
# Cart page css
--------------------------------------------------------------*/
.cart-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    padding: 8px;
    margin-right: 15px;
    background-color: #ebebeb;
}
.quantity-btn {
    width: 35px;
    height: 35px;
    padding: 0;
    text-align: center;
    font-weight: bold;
}
.remove-item {
    cursor: pointer;
    font-size: 22px;
}
.quantity-btn:hover {
    background: black;
    color: white;
}
#cart_page .btn-black {
    background: #000;
    color: #fff;
    border-radius: 1px;
    padding: 6px 34px;
    width: 180px;
    display: inline-block;
    text-align: center;
}
#cart_page .btn-black:hover {
    background: #f0f1f3;
    color: #000;
}
.cart-item h6 {
    font-size: 16px;
    color: #000;
    font-family: "poppins";
}
.cart-item h6 small {
    font-size: 12px;
    margin-top: 10px;
    display: inline-block;
}
#cart-body {
    border-bottom: 1px solid #dee2e6;
}
.grandTotal {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
    color: #000;
}
.grandTotal span {
    font-weight: 600;
}

/*--------------------------------------------------------------
# Checkout page css
--------------------------------------------------------------*/
.form-control {
    border-radius: 0;
}
.checkout-page-title {
    font-weight: 500;
    color: #000;
    font-size: 18px;
    font-family: "poppins";
}
.payment-method button {
    border-radius: 0;
    width: 250px;
}

.payment-method button.active {
    background-color: black !important;
    color: white !important;
}
.payment-method button:hover {
    background-color: black;
    color: white;
}

.summary-box {
    background: #f4f4f4;
    padding: 20px;
    border: 1px solid #e0e0e0;
}
.summary-box p,
.summary-box h6 {
    margin: 0;
    padding: 6px 0;
}
.btn-black {
    background: black;
    color: white;
    border-radius: 0;
}
.btn-outline-black {
    border-radius: 0;
    background: #f0f1f3;
    color: #000;
}
#paypalBtn {
    background-color: #f0f1f3;
}
.palceOrderBtn {
    display: block;
    width: 100%;
}
.rtnToCart:hover {
    background-color: #000;
    color: #fff;
}

/*--------------------------------------------------------------
# My Account page css
--------------------------------------------------------------*/
#my_account_page .sidebar {
    background: #fff;
    min-height: 100vh;
}
#my_account_page .sidebar .nav-link {
    color: #000;
    font-weight: 500;
    background-color: #f0f1f3;
    margin-bottom: 15px;
}
#my_account_page .sidebar .nav-link.active {
    background-color: #000;
    color: #fff;
}
#my_account_page .table thead th {
    background-color: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
#my_account_page .logout-btn {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
}
#my_account_page .dashboard-box {
    background: #fff;
    padding: 20px;
    border: 1px solid #000000;
}
#my_account_page .highlight {
    text-decoration: underline;
}
#my_account_page h5 {
    font-size: 24px;
    font-family: "poppins";
    font-weight: 500;
    color: #000;
    margin-bottom: 25px;
}
#my_account_page h6 {
    font-size: 20px;
    font-family: "poppins";
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}
#my_account_page .tab-pane {
    min-height: 100vh;
    max-height: 100vh;
    overflow: auto;
}
#my_account_page #wishlist img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background-color: #f0f1f3;
    padding: 10px;
}
#my_account_page #wishlist h6 {
    font-size: 16px;
    font-weight: 500;
    font-family: "poppins";
    color: #000;
}
#my_account_page #settings label {
    color: #000;
}
#my_account_page #settings button {
    float: right;
    width: 200px;
    background-color: #000;
    color: #fff;
    border-radius: 1px;
}

@media (max-width: 768px) {
    #my_account_page .sidebar {
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding: 20px !important;
        min-height: auto;
    }
    #my_account_page .logout-btn {
        margin-bottom: 20px;
        position: relative;
    }
    #my_account_page .table-responsive {
        overflow-x: auto;
    }
    #my_account_page .productInfoMob button.btn-dark {
        display: block;
        position: absolute;
        bottom: 5px;
        width: max-content;
        right: 15px;
    }
    #my_account_page .productInfoMob button.btn-link {
        position: absolute;
        top: 3px;
        right: 18px;
        border: 1px solid #000;
        padding: 0px 7px;
        border-radius: 50px;
    }
    #my_account_page #wishlist h6 {
        font-size: 14px;
    }
    #my_account_page #wishlist img {
        width: 65px;
        height: 65px;
    }
    #my_account_page .sidebar .nav-link.active {
        background-color: #000 !important;
        color: #fff !important;
    }
    .innerMobileTags {
        width: 540px;
    }
    .innerMobileTags2 {
        width: 467px;
    }
}

/*--------------------------------------------------------------
# Single Order page css
--------------------------------------------------------------*/
#single_order_page .mainSectitle {
    font-size: 18px;
    font-weight: 600;
    font-family: "poppins";
}
#single_order_page .mainSectitle span {
    font-size: 18px;
    font-weight: 400;
}
#single_order_page .order-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
#single_order_page .order-summary-box {
    background-color: #f1f3f5;
    padding: 20px;
    border-radius: 10px;
}
#single_order_page .product-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    padding: 6px;
    background-color: #f0f1f3;
}
#single_order_page .table th,
#single_order_page .table td {
    vertical-align: middle !important;
    font-size: 16px;
    font-weight: 500;
    background: none;
}
#single_order_page .table th {
    border: 0;
}
#single_order_page .table td {
    border-left: 0;
    border-right: 0;
}
#single_order_page .section-title {
    font-weight: 600;
    font-size: 18px;
    font-family: "poppins";
    padding-bottom: 0;
    color: #000 !important;
}
#single_order_page .table td h6 {
    font-size: 16px;
    font-weight: 500;
    font-family: "poppins";
    color: #000;
}
#single_order_page .table td span {
    text-align: left;
    display: block;
    font-size: 12px;
}
#single_order_page .customerInfor div,
#single_order_page .shippingInfor div,
#single_order_page .paymentInfor div {
    font-size: 16px;
    color: #707070;
    margin-right: 30px;
}
#single_order_page .customerInfor span,
#single_order_page .shippingInfor span,
#single_order_page .paymentInfor span {
    color: #000;
}
#single_order_page .customerInfor,
#single_order_page .shippingInfor,
#single_order_page .paymentInfor {
    background-color: #f0f1f3;
    padding: 25px;
    border-radius: 2px;
}

/*--------------------------------------------------------------
# Pricing page css
--------------------------------------------------------------*/
#pricing_page {
    padding: 0;
    margin-bottom: 20px;
}
#pricing_page .pricInfo {
    padding: 50px;
    padding-left: 80px;
}
#pricing_page .pricInfo h3 {
    font-size: 48px;
    color: #000000;
    margin-bottom: 20px;
}
#pricing_page .pricInfo p {
    color: #000;
    font-size: 16px;
    margin-bottom: 20px;
    display: block;
}
#pricing_page .pricInfo a {
    background-color: #000;
    color: #fff;
    font-size: 16px;
    padding: 8px 18px;
    display: inline-block;
}
#pricing_page .pricImg img {
    width: 100%;
    padding: 20px;
    padding-right: 80px;
}
.pricing-section {
    padding: 30px 15px;
    text-align: center;
}
.pricing-title {
    font-size: 48px;
    color: #000;
    margin-bottom: 50px;
}
.pricing-table {
    background-color: #f9f9f9;
    overflow: hidden;
    border: 0 !important;
    border-spacing: 30px;
}
.pricing-header {
    padding: 18px 10px;
    font-weight: 500;
    font-size: 16px;
}
.pricing-table thead th {
    background-color: #eef1f6;
}
.price-box {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}
.price-box span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
}
.btn-black {
    background-color: #000;
    color: #fff;
}
.btn-green {
    background-color: #28a745;
    color: #fff;
}
.btn-blue {
    background-color: #007bff;
    color: #fff;
}
.btn-red {
    background-color: #8b0000;
    color: #fff;
}
.btn-grey {
    background-color: #6c757d;
    color: #fff;
}
.btn-block {
    width: 100%;
}
.feature-col {
    text-align: left;
    font-weight: 500;
    padding: 30px 10px;
}
.feature-row td {
    padding: 15px 10px;
    vertical-align: middle;
}
.pricing-table thead tr th:first-child,
.pricing-table tbody tr td:first-child {
    border: 0 !important;
    text-align: left;
    background-color: #fff !important;
}
.pricing-table tbody tr td:first-child {
    border-bottom: 1px solid #dee2e6 !important;
}
.pricing-table thead th {
    text-align: center;
}
.pricing-table thead th {
    border: 0;
}
.pricing-table tbody tr:last-child td:first-child {
    border: 0 !important;
}
.backBlack {
    background-color: #000;
    color: #fff;
    display: inline-block;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 400;
}
.backGreen {
    background: #009b1f;
    background: linear-gradient(
        180deg,
        rgba(0, 155, 31, 1) 0%,
        rgba(0, 78, 16, 1) 50%
    );
    color: #fff;
    display: inline-block;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 400;
}
.backBlue {
    background: #006fff;
    background: linear-gradient(
        180deg,
        rgba(0, 111, 255, 0.39) 0%,
        rgba(0, 56, 128, 0.8) 100%
    );
    color: #fff;
    display: inline-block;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 400;
}
.backRed {
    background: #ab0011;
    background: linear-gradient(
        180deg,
        rgba(171, 0, 17, 1) 0%,
        rgba(86, 0, 9, 1) 50%
    );
    color: #fff;
    display: inline-block;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 400;
}
.backGrey {
    background: #606b7e;
    background: linear-gradient(
        180deg,
        rgba(96, 107, 126, 1) 0%,
        rgba(138, 145, 158, 1) 50%,
        rgba(88, 93, 101, 1) 100%
    );
    color: #fff;
    display: inline-block;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 400;
}

.backBlack2 {
    background-color: #000;
    color: #fff;
    display: block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    border-radius: 0;
}
.backGreen2 {
    background: #009b1f;
    background: linear-gradient(
        180deg,
        rgba(0, 155, 31, 1) 0%,
        rgba(0, 78, 16, 1) 50%
    );
    color: #fff;
    display: block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    border-radius: 0;
}
.backBlue2 {
    background: #006fff;
    background: linear-gradient(
        180deg,
        rgba(0, 111, 255, 0.39) 0%,
        rgba(0, 56, 128, 0.8) 100%
    );
    color: #fff;
    display: block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    border-radius: 0;
}
.backRed2 {
    background: #ab0011;
    background: linear-gradient(
        180deg,
        rgba(171, 0, 17, 1) 0%,
        rgba(86, 0, 9, 1) 50%
    );
    color: #fff;
    display: block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    border-radius: 0;
}
.backGrey2 {
    background: #606b7e;
    background: linear-gradient(
        180deg,
        rgba(96, 107, 126, 1) 0%,
        rgba(138, 145, 158, 1) 50%,
        rgba(88, 93, 101, 1) 100%
    );
    color: #fff;
    display: block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    border-radius: 0;
}

.backGrey2:hover,
.backRed2:hover,
.backBlue2:hover,
.backGreen2:hover,
.backBlack2:hover,
.backOringe2:hover,
.backDgrey2:hover,
.backLgreen2:hover {
    color: #fff !important;
    background: #000 !important;
}
.backBlack2:hover {
    color: #000 !important;
    background: #dcdcdc !important;
}

.backOringe {
    background: #6a510d;
    background: linear-gradient(
        180deg,
        rgba(106, 81, 13, 1) 0%,
        rgba(214, 157, 0, 1) 50%,
        rgba(141, 112, 16, 1) 100%
    );
    color: #fff;
    display: inline-block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    border-radius: 0;
}
.backDgrey {
    background: #373737;
    background: linear-gradient(
        180deg,
        rgba(55, 55, 55, 1) 0%,
        rgba(106, 106, 106, 1) 50%,
        rgba(17, 17, 17, 1) 100%
    );
    color: #fff;
    display: inline-block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    border-radius: 0;
}
.backLgreen {
    background: #016474;
    background: linear-gradient(
        180deg,
        rgba(1, 100, 116, 1) 0%,
        rgba(0, 178, 209, 1) 50%,
        rgba(0, 115, 152, 1) 100%
    );
    color: #fff;
    display: inline-block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    border-radius: 0;
}
.backOringe2 {
    background: #6a510d;
    background: linear-gradient(
        180deg,
        rgba(106, 81, 13, 1) 0%,
        rgba(214, 157, 0, 1) 50%,
        rgba(141, 112, 16, 1) 100%
    );
    color: #fff;
    display: block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    border-radius: 0;
}
.backDgrey2 {
    background: #373737;
    background: linear-gradient(
        180deg,
        rgba(55, 55, 55, 1) 0%,
        rgba(106, 106, 106, 1) 50%,
        rgba(17, 17, 17, 1) 100%
    );
    color: #fff;
    display: block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    border-radius: 0;
}
.backLgreen2 {
    background: #016474;
    background: linear-gradient(
        180deg,
        rgba(1, 100, 116, 1) 0%,
        rgba(0, 178, 209, 1) 50%,
        rgba(0, 115, 152, 1) 100%
    );
    color: #fff;
    display: block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    border-radius: 0;
}

@media (max-width: 767.98px) {
    .table-responsive table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    .feature-col {
        text-align: center;
    }
}

@media (max-width: 768px) {
    #pricing_page .pricImg img {
        padding: 10px;
    }
    #pricing_page .pricInfo {
        padding: 10px;
        text-align: center;
    }
    #pricing_page .pricInfo h3 {
        font-size: 32px;
    }
}

/*--------------------------------------------------------------
# Login page css
--------------------------------------------------------------*/
.login-container {
    min-height: 100vh;
}
.login-form {
    margin-top: 80px;
    padding-top: 30px;
    padding-bottom: 40px;
    width: 65%;
}
.login-form input[type="email"],
.login-form input[type="password"] {
    margin-bottom: 15px;
}
.login-form p {
    color: #000;
}
.login-form h2 {
    font-size: 47px;
    color: #000;
    margin-bottom: 50px;
    display: block;
}
.btn-black {
    background-color: #000;
    color: #fff;
}
.login-form button {
    display: block;
    width: 100%;
}
.btn-black:hover {
    background-color: #333;
}
.social-btn {
    margin-bottom: 10px;
}
.social-btn i {
    margin-right: 8px;
}

.social-btn {
    color: #fff;
    background-color: #000;
    transition-duration: 0.3s;
    border: 1px solid #000;
}
.social-btn:hover {
    background-color: #f0f1f3 !important;
    color: #000 !important;
    transition-duration: 0.3s;
    border-color: #000;
}

.right-img {
    background-image: url("../img/login-page.png");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}
.footer {
    background: #1a1a1a;
    color: white;
    padding: 10px 0;
    text-align: center;
}
.footer a {
    color: #ccc;
    margin: 0 5px;
}
.paymentMethodsBTN a {
    width: 100%;
    display: block;
}
.paymentMethodsBTN a i,
.paymentMethodsBTN a svg {
    margin-right: 10px;
}
.loginPageFooter {
    padding: 10px 0;
    background-color: #272727;
    color: #fff;
}
.loginPageFooter a {
    color: #afafaf;
}
.paymentICOnsimg {
    margin-right: 20px;
}
.paymentICOnsimg .applypay {
    background-color: #000;
    height: 24px;
    padding: 1px 5px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .right-img {
        display: none;
    }
    .login-form {
        width: 100%;
        padding: 20px;
        margin-top: 0;
    }
    .paymentICOnsimg {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
        margin-top: 10px;
    }
    .copyrightLogin {
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Sign Up page css
--------------------------------------------------------------*/
.signUp-container .form-section h2 {
    color: #000;
}
.signUp-container .form-section label {
    color: #000;
}
.form-section {
    margin-top: 100px;
}
.form-control::placeholder {
    color: #aaa;
    font-size: 14px;
}
.upload-btn {
    position: relative;
    overflow: hidden;
}
.upload-btn input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.file-name {
    margin-top: 5px;
    font-size: 14px;
}
#clearFile {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    padding: 0 10px;
    border: 1px solid #000;
    border-left: 0;
    background: none;
    border-radius: 0;
    color: #000;
}
#clearFile:focus {
    outline: 0;
    box-shadow: none;
}
#clearFile:hover {
    color: #009b1f;
}
#clearFile2 {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    padding: 0 10px;
    border: 1px solid #000;
    border-left: 0;
    background: none;
    border-radius: 0;
    color: #000;
}
#clearFile2:focus {
    outline: 0;
    box-shadow: none;
}
#clearFile2:hover {
    color: #009b1f;
}
.form-section .custom-file-label {
    background-color: #f0f1f3;
}
.form-section .custom-file-label svg {
    margin-right: 20px;
}
.form-section .custom-file-label::after {
    display: none;
}
.form-section .showImg input {
    background-color: #fff !important;
    border: 1px solid #000 !important;
    border-right: 0 !important;
}
.signUplastCont p {
    color: #707070;
}
.signUplastCont p a {
    text-decoration: underline;
}
.signUplastCont a {
    text-decoration: underline;
    font-weight: 600;
}

/*--------------------------------------------------------------
# Bidder Registration page css
--------------------------------------------------------------*/
.bidder-container {
    min-height: 95vh;
}
.bidder-container .step-section {
    display: none;
}
.bidder-container .step-section.active {
    display: block;
}
.bidder-container h2 {
    color: #000;
    font-size: 48px;
}
.bidder-container .payment-box {
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 40px;
    width: 450px;
}
.bidder-container .payment-tabs .btn {
    border-radius: 0;
    font-size: 16px !important;
    font-weight: 300;
    color: #fff;
    padding: 8px 24px;
    margin-right: 20px;
    background-color: #f0f1f3;
    width: 200px;
    display: inline-block;
}
.bidder-container .payment-tabs .btn.active {
    background-color: #000;
    color: #fff;
}
.bidder-container .payment-tabs .btn.focus {
    outline: none !important;
    box-shadow: none !important;
}
.bidder-container .payment-tabs .btn:not(.active) {
    background-color: #f8f9fa;
    color: #000;
}
.bidder-container .form-control::placeholder {
    color: #aaa;
}
.bidder-container .pay-summary {
    background: #f8f9fa;
    padding: 20px;
}
.bidder-container .payment-box span {
    font-weight: 600;
    color: #000;
}
.bidder-container .payment-box .badge {
    background-color: #000;
    color: #fff;
    padding: 10px 20px !important;
    font-size: 14px;
    font-weight: 400;
    border-radius: 0;
}
.bidder-container .payment-box .btnOutlineLight {
    background: none;
    color: #000;
    font-size: 20px;
}
.bidder-container h5 {
    color: #000;
    font-size: 20px;
    font-family: "poppins";
}
.bidder-container #paymentForm label {
    color: #000;
}
.bidder-container .pay-summary .headTit {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}
.bidder-container .pay-summary span {
    color: #000;
    font-weight: 500;
}
.bidder-container .pay-summary .headTit2 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.bidder-container .pay-summary .lastTotal span {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.bidder-container input:focus,
.bidder-container select:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #000;
}

@media (max-width: 767px) {
    .bidder-container .form-row .form-group {
        margin-bottom: 15px;
    }
    .bidder-container .payment-tabs .btn {
        width: 180px;
        font-size: 14px !important;
        display: block;
    }
    .bidder-container h2 {
        font-size: 32px;
    }
    .bidder-container .payment-box {
        width: 100%;
        display: block;
    }
}

/*--------------------------------------------------------------
# Vendor Registration page css
--------------------------------------------------------------*/
.vendor-container {
    min-height: 95vh;
}
.vendor-container .step-section {
    display: none;
}
.vendor-container .step-section.active {
    display: block;
}
.vendor-container h2 {
    color: #000;
    font-size: 48px;
}
.vendor-container .payment-box {
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 40px;
    width: 450px;
}
.vendor-container .payment-tabs .btn {
    border-radius: 0;
    font-size: 16px !important;
    font-weight: 300;
    color: #fff;
    padding: 8px 24px;
    margin-right: 20px;
    background-color: #f0f1f3;
    width: 200px;
    display: inline-block;
}
.vendor-container .payment-tabs .btn.active {
    background-color: #000;
    color: #fff;
}
.vendor-container .payment-tabs .btn.focus {
    outline: none !important;
    box-shadow: none !important;
}
.vendor-container .payment-tabs .btn:not(.active) {
    background-color: #f8f9fa;
    color: #000;
}
.vendor-container .form-control::placeholder {
    color: #aaa;
}
.vendor-container .pay-summary {
    background: #f8f9fa;
    padding: 20px;
}
.vendor-container .payment-box span {
    font-weight: 600;
    color: #000;
}
.vendor-container .payment-box .badge {
    background: #00e5ff;
    background: linear-gradient(
        180deg,
        rgba(0, 229, 255, 1) 0%,
        rgba(2, 53, 155, 1) 50%
    );
    color: #fff;
    padding: 10px 20px !important;
    font-size: 14px;
    font-weight: 400;
    border-radius: 0;
}
.vendor-container .payment-box .btnOutlineLight {
    background: none;
    color: #000;
    font-size: 20px;
}
.vendor-container h5 {
    color: #000;
    font-size: 20px;
    font-family: "poppins";
}
.vendor-container #paymentForm label {
    color: #000;
}
.vendor-container .pay-summary .headTit {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}
.vendor-container .pay-summary span {
    color: #000;
    font-weight: 500;
}
.vendor-container .pay-summary .headTit2 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.vendor-container .pay-summary .lastTotal span {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.vendor-container input:focus,
.vendor-container select:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #000;
}

@media (max-width: 767px) {
    .vendor-container .form-row .form-group {
        margin-bottom: 15px;
    }
    .vendor-container .payment-tabs .btn {
        width: 180px;
        font-size: 14px !important;
        display: block;
    }
    .vendor-container h2 {
        font-size: 32px;
    }
    .vendor-container .payment-box {
        width: 100%;
        display: block;
    }
}

/*--------------------------------------------------------------
# OTP page css
--------------------------------------------------------------*/
.otp-input {
    width: 50px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    margin: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.submit-btn {
    width: 100%;
    background-color: black;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    margin-top: 20px;
    border-radius: 4px;
}
.submit-btn:disabled {
    background-color: #777;
    cursor: not-allowed;
}
.otp-form {
    margin-top: 80px;
    padding-top: 30px;
    padding-bottom: 40px;
    width: 65%;
}
.otp-form p {
    color: #000;
}
.otp-form h2 {
    font-size: 47px;
    color: #000;
    margin-bottom: 50px;
    display: block;
}

/*--------------------------------------------------------------
# Blogs page css
--------------------------------------------------------------*/
#blogs_page .card-img-top {
    height: 200px;
    object-fit: cover;
}
#blogs_page .blog-card {
    margin-bottom: 30px;
}
#blogs_page .blog-title {
    font-weight: 500;
    font-size: 18px;
    color: #000;
}
#blogs_page .card {
    border: 0;
    transition-duration: 0.4s;
    top: 0;
}
#blogs_page .card:hover {
    box-shadow: 0px 8px 15px -5px #999;
    top: -4px;
    transition-duration: 0.4s;
    box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);
}
#blogs_page .blog-desc {
    font-size: 14px;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 21px;
    max-height: 48px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
#blogs_page .read-more {
    font-size: 14px;
    text-decoration: underline;
}
#blogs_page .date {
    font-size: 12px;
    color: #707070;
}
#blogs_page .pagination .page-item .rightArrow,
.pagination .page-item.active .page-link {
    background-color: #000;
    color: #fff !important;
    border-color: #000;
}
#blogs_page .pagination .page-link {
    color: #000;
}
#blogs_page .page {
    display: none;
}
#blogs_page .page.active {
    display: flex;
    flex-wrap: wrap;
}
#blogs_page .leftArrow {
    font-size: 18px;
}
#blogs_page .rightArrow {
    font-size: 18px;
}

/*--------------------------------------------------------------
# Blog Details page css
--------------------------------------------------------------*/
#blog_page_detail .blog-card {
    border: 0;
}
#blog_page_detail .card-body {
    padding: 0;
}
/*#blog_page_detail .blog-card{border: 0; transition-duration: 0.4s; top:0;}*/
/*#blog_page_detail .blog-card:hover{box-shadow:0px 8px 15px -5px #999; top: -4px; transition-duration: 0.4s; box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);}*/
#blog_page_detail .blog-card img {
    width: 100%;
    object-fit: cover;
}
#blog_page_detail .blog-card .blog-title {
    font-size: 48px;
    color: #000;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: "playfair";
}
#blog_page_detail .blog-card .read-more {
    color: #000;
    font-size: 14px;
    text-decoration: underline;
}
#blog_page_detail .blog-card .date {
    color: #707070;
    font-size: 14px;
}
#blog_page_detail .blog-card p {
    color: #000;
    font-size: 14px;
}
#blog_page_detail .blogSideBar .blog-card .blog-title {
    font-size: 18px;
    color: #000;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: "poppins";
    font-weight: 500;
}
#blog_page_detail .blogSideBar .blog-card .category {
    color: #000;
    font-size: 12px;
    text-decoration: underline;
}
#blog_page_detail .blogSideBar .blog-card .date {
    color: #707070;
    font-size: 12px;
}
#blog_page_detail .blogSideBar .blog-card p {
    color: #000;
    font-size: 14px;
}

@media (max-width: 768px) {
    #blog_page_detail .blog-card .blog-title {
        font-size: 32px;
        line-height: 32px;
    }
    #blog_page_detail .blog-card p {
        text-align: justify;
    }
    .blogSideBar {
        margin-top: 30px;
    }
}

/*--------------------------------------------------------------
# Contact Us page css
--------------------------------------------------------------*/
#contact_page {
    margin-top: 25px;
    margin-bottom: 50px;
}
#contact_page .contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
#contact_page .contact-form h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}
#contact_page .contact-form p {
    color: #777;
    font-size: 14px;
}
#contact_page .contact-info h2 {
    font-size: 48px;
    color: #000;
}
#contact_page .contact-info p {
    font-size: 16px;
    color: #333;
}
#contact_page .contact-info .social-icons i {
    font-size: 18px;
    color: #333;
}
#contact_page .contact-info .social-icons a {
    text-decoration: none;
}
#contact_page .contact-info .social-icons a:hover i {
    color: #007bff;
}
#contact_page .innerInfo {
    margin-top: 20px;
    margin-bottom: 30px;
}
#contact_page .innerInfo p {
    font-size: 16px;
    color: #000;
}
#contact_page .innerInfo p svg {
    margin-right: 10px;
    font-size: 16px;
}
#contact_page .social-icons a {
    font-size: 24px;
    margin-right: 20px;
}
#contact_page button[type="submit"] {
    background-color: #000;
    color: #fff;
    font-size: 16px;
    padding: 8px 28px;
    width: 200px;
    border-radius: 0;
    transition: background-color 0.3s;
}
#contact_page button[type="submit"]:hover {
    background-color: #555;
}

/*-------------------------------------------------------------
# Contact Us page css
--------------------------------------------------------------*/
#privacy_policy_page .privacyInfo h2 {
    font-size: 48px;
    color: #000;
    margin-bottom: 25px;
}
#privacy_policy_page .privacyInfo p {
    font-size: 16px;
    color: #000;
}

/*--------------------------------------------------------------
# Store page css
--------------------------------------------------------------*/
#store_page .storeHead {
    margin-bottom: 30px;
}
#store_page .storeHead .storeBanner {
    position: relative;
}
#store_page .storeHead .storeBanner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
#store_page .storeHead .storeBannerInfo {
    position: absolute;
    top: 0;
    padding: 50px;
}
#store_page .storeHead .storeBannerInfo h3 {
    font-size: 48px;
    color: #fff;
}
#store_page .storeHead .storeBannerInfo span {
    font-size: 72px;
    color: #fff;
    display: block;
}
.storeDetail .review-heading {
    color: #000;
    font-size: 20px;
    margin-bottom: 20px;
}
.storeDetail .review-heading p {
    color: #000;
}
#store_page .storeReviews .review-heading {
    font-size: 20px;
    color: #000;
    margin-bottom: 20px;
}
#store_page .auctionProducts,
#store_page .storePorductArea,
#store_page .storeReviews,
#store_page .storeDetail {
    margin-top: 30px;
}
#store_page .customer-reviews {
    border: 1px solid #dcdcdc;
    box-shadow: 0px 5px 10px #0000000d;
    padding: 20px;
    margin-bottom: 20px;
}
#store_page .leftUpperDetailReview img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 20px;
    border: 2px solid #000;
}
#store_page .leftUpperDetailReview h4 {
    color: #000;
    font-size: 18px;
    font-family: "poppins";
    margin-bottom: 0;
}
#store_page .customer-reviews p {
    color: #000;
    font-size: 16px;
}
#store_page .reviews-counter {
    font-size: 13px;
}
#store_page .reviews-counter span {
    vertical-align: -2px;
}
#store_page .rate {
    float: left;
    padding: 0 10px 0 0;
}
#store_page .rate:not(:checked) > input {
    position: absolute;
    top: -9999px;
}
#store_page .rate:not(:checked) > label {
    float: right;
    width: 20px;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 26px;
    color: #ccc;
    margin-bottom: 0;
    line-height: 28px;
}
#store_page .rate:not(:checked) > label:before {
    content: "\2605";
}
#store_page .rate > input:checked ~ label {
    color: #000000;
}
#store_page .rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #deb217;
}
#store_page .rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}
#store_page .product-info-tabs .tab-content .tab-pane {
    padding: 30px 20px;
    font-size: 15px;
    line-height: 24px;
    color: #7a7a7a;
}
#store_page .product-dtl p {
    color: #000;
    font-size: 16px;
    line-height: 24px;
}
#store_page .product-dtl .form-control {
    font-size: 15px;
}
#store_page .product-dtl label {
    line-height: 16px;
    font-size: 15px;
}
#store_page .form-control:focus {
    outline: 0;
    box-shadow: none;
}
#store_page .round-black-btn {
    border-radius: 1px;
    background: #212529;
    color: #fff;
    padding: 7px 45px;
    display: inline-block;
    border: 1px solid #000000;
    transition: 0.5s ease-in-out;
    margin-right: 20px;
}
#store_page .round-black-btn:focus,
#store_page .round-black-btn:hover {
    background-color: #f0f1f3;
    color: #000;
    text-decoration: none;
    border-color: #f0f1f3;
}
#store_page .review-form .form-group {
    clear: both;
}

/*--------------------------------------------------------------
# FAQ (Education) page css
--------------------------------------------------------------*/
#faq_page .faqSidebar #v-pills-tab button {
    background-color: transparent;
    color: #707070;
    text-align: left;
    border: 0;
    font-size: 16px;
    padding-left: 0;
}
#faq_page .faqSidebar .nav-link.active {
    font-weight: 600;
    color: #000 !important;
}
#faq_page .faqSidebar .faqMainTitle {
    font-size: 18px;
    color: #000;
    font-family: "poppins";
}
#faq_page #v-pills-tabContent .tab-pane .accordion .card {
    border: 1px solid #dcdcdc !important;
    margin-bottom: 20px;
}
#faq_page #v-pills-tabContent .tab-pane .accordion .card .card-header {
    background: none;
    padding: 0;
}
#faq_page
    #v-pills-tabContent
    .tab-pane
    .accordion
    .card
    .card-header
    h2
    button {
    padding: 14px 15px;
    font-size: 18px;
    font-family: "poppins";
    font-weight: 500;
    color: #000;
}
#faq_page #v-pills-tabContent .tab-pane .accordion .card .category {
    color: #000;
    font-size: 13px;
    text-decoration: underline;
}
#faq_page #v-pills-tabContent .tab-pane .accordion .card .date {
    color: #707070;
    font-size: 13px;
}
#faq_page
    #v-pills-tabContent
    .tab-pane
    .accordion
    .card
    .card-header
    h2
    button:hover {
    text-decoration: none;
}
#faq_page
    #v-pills-tabContent
    .tab-pane
    .accordion
    .card
    .card-header
    h2
    button:focus {
    box-shadow: none !important;
    text-decoration: none !important;
}
#faq_page #v-pills-tabContent .tab-pane .accordion .card .faqAns p {
    color: #000;
    font-size: 15px;
}
#faq_page #v-pills-tabContent .tab-pane .accordion .card:has(.collapse.show) {
    border: 0 !important;
}

@media (max-width: 767.98px) {
    .faqSidebar {
        margin-bottom: 30px;
    }
    #faq_page
        #v-pills-tabContent
        .tab-pane
        .accordion
        .card
        .card-header
        h2
        button {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# Extra css
--------------------------------------------------------------*/
@media (max-width: 768px) {
    #hero h1 {
        font-size: 42px;
        line-height: 46px;
    }
    #hero h2 {
        font-size: 24px;
        line-height: 28px;
    }
    .homeBanner .bannerContent h3 {
        font-size: 46px;
    }
    .homeBanner .bannerContent h4 {
        font-size: 26px;
    }
    .homeBanner .bannerContent p {
        width: 100%;
    }
    .bannerContent {
        text-align: center;
        padding: 10px;
    }
    .bannerGemStone img {
        width: 200px;
        height: 400px;
        object-fit: contain;
    }
    .auction-title,
    .slider-heading {
        font-size: 36px;
    }
    .homeCenter_banner {
        padding: 0px;
        text-align: center;
    }
    .homeCenterInner-details h3 {
        font-size: 38px;
        line-height: 38px;
    }
    #productSlider {
        text-align: center;
    }
    .owl-custom-nav {
        margin-bottom: 20px;
    }
    #productSlider,
    #testimonials_list {
        padding: 30px 0;
    }
    .bannerInfo {
        margin-bottom: 30px;
    }
    .bannerInfo,
    .bannerInfo2 {
        padding: 40px 25px;
    }
    #about {
        padding: 30px 0;
    }
    #about h4,
    #testimonials_list h4 {
        font-size: 38px;
        text-align: center;
        line-height: 38px;
    }
    #about {
        text-align: center;
    }
    .page-title {
        margin-top: 58px;
    }
    .shop-heading {
        padding: 0;
    }
    .filters-box,
    .product-box {
        margin-bottom: 20px;
    }
    .product-slider .item img {
        width: 100%;
        height: 400px;
    }
    .product-slider .item {
        margin-right: 0;
    }
    .pd-wrap .product-thumb .item img {
        width: 58px;
        height: 50px;
    }
    .product-page-title {
        margin-top: 45px;
    }
    .pd-wrap .product-name {
        font-size: 32px;
    }
    .lastProDetails p {
        margin-right: 20px;
        font-size: 14px !important;
    }
    .leftUpperDetailReview img {
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }
    .leftUpperDetailReview h4 {
        font-size: 14px;
    }
    .payment-method button {
        width: 100%;
        margin-bottom: 10px;
    }
    #checkout_page {
        padding-top: 0;
    }
    #single_order_page .customerInfor div,
    #single_order_page .shippingInfor div,
    #single_order_page .paymentInfor div {
        text-align: left;
        justify-content: left;
        width: 100%;
        margin-bottom: 10px;
    }
    #single_order_page .customerInfor {
        margin-top: 10px;
    }
    .otp-form {
        width: 100%;
        padding: 0;
        margin-top: 80px;
    }
    #contact_page button {
        width: 100%;
        display: block;
    }
    #contact_page {
        margin-top: 0;
        padding-top: 0;
    }
    #contact_page .contact-info {
        margin-bottom: 25px;
    }
    #store_page .storeHead .storeBannerInfo {
        padding: 20px;
    }
    #store_page .storeHead .storeBannerInfo h3 {
        font-size: 32px;
    }
    #store_page .storeHead .storeBannerInfo span {
        font: 42px;
    }
    #store_page .storeHead .storeBanner img {
        height: 165px;
    }
    .bidderModal .modal-body .modal-title {
        font-size: 32px;
    }

    #middleBanner {
        padding: 30px 0 !important;
    }
    .middleBanner {
        padding: 30px 20px;
    }
    #middleBanner h6 {
        font-size: 32px;
        text-align: center;
        line-height: 32px;
    }
    .homeMiddleprod-details {
        position: relative;
        top: 10px;
    }
    #testimonials_list .carousel-inner {
        padding: 10px;
    }
}
