:root {
    --white: #fff;

    --black: #000;

    --maroon: #620028;
    --header: #f7e7d4;

    --brown: #bf8614;

    --title: #b89e4f;

    --off_white: #f7f7f7;

    --icon-menu: #cfcfcf;

    --light-brown: #f0e4ca;

    --gray: #dedede;

    --sold_btn: #d94040;

    --banner_brown: #ceb495;

    --title: "Marcellus", serif;

    --heading: "Jost", sans-serif;

    --red: #701414;

    --light-green: #d6e8da;

    --lime-green: #2aa95a;

    --bs-font: bootstrap-icons !important;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: "Montserrat", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
}

/* font-family: "Montserrat",
sans-serif;
font-family: "Jost",
sans-serif;
font-family: "Poppins",
sans-serif;
font-family: "Marcellus", serif; */

@-webkit-keyframes animationFade {
    from {
        opacity: 0;

        -webkit-transform: translate3d(0, -100%, 0);

        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;

        -webkit-transform: none;

        transform: none;
    }
}

@-o-keyframes animationFade {
    from {
        opacity: 0;

        -webkit-transform: translate3d(0, -100%, 0);

        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;

        -webkit-transform: none;

        -o-transform: none;

        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;

        -webkit-transform: translate3d(0, -100%, 0);

        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;

        -webkit-transform: none;

        -o-transform: none;

        transform: none;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 1;

        -webkit-transform: scale3d(1.3, 1.3, 1.5);

        transform: scale3d(1.3, 1.3, 1.3);
    }

    50% {
        opacity: 1;
    }
}


::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 2px;
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red);
}

a {
    text-decoration: none !important;
    display: inline-block;
}

p:last-of-type {
    margin-bottom: 0px;
}

p {
    color: var(--black);

    font-size: 15px;

    margin-bottom: 10px;

    line-height: 28px;
}

ul {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
}

.form-control,
.form-select {
    background: transparent;

    border: 0px;

    box-shadow: none;

    outline: none;

    border-radius: 0px;
    font-weight: 500;
    font-size: 17px;
}

.form-control:focus {
    background: transparent;

    border: 0px;

    box-shadow: none !important;

    outline: none !important;
}

img {
    width: 100%;

    height: 100%;
}

/*--- Section Spacing Start ---*/

.sec-pad-40 {
    padding: 40px 0;
}

.sec-pad {
    padding: 80px 0;
}

.sec-pad-top {
    padding: 80px 0 0;
}

.sec-pad-bottom {
    padding: 0 0 80px;
}

/*--- Section Spacing End ---*/

/*--- Tag List Start ---*/

.add-wishlist,
.link-details {
    position: absolute;
    right: 20px;
    font-size: 16px;
    border: 0px;
    text-align: center;
    top: 30px;
    background: transparent;
    transform: translateX(70px);
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
}

.add-to-wishlist {
    background: #74002f;
    color: #ffffff;
    width: 34px;
    height: 34px;
    line-height: 36px;
    border-radius: 4px;
}

.add-to-wishlist.wishlisted {
    background: var(--white);
    color: #74002f;
}

.add-to-wishlist.wishlisted:hover {
    color: #74002f;
}

.add-to-wishlist .bi-heart-fill {
    display: none;
}

.add-to-wishlist.wishlisted .bi-heart {
    display: none;
}

.add-to-wishlist.wishlisted .bi-heart-fill {
    display: block;
}

.add-to-wishlist:hover {
    color: var(--white);
}

.add-wishlist {
    top: 30px;
}

.link-details {
    top: 70px;
}

.link-details {
    background: #f7f7f7;
    color: var(--red);
    display: inline-block;
    width: 34px;
    height: 34px;
    line-height: 36px;
    border-radius: 4px;
}

.item-single:hover .link-details,
.item-single:hover .add-wishlist {
    transform: translateX(0px);
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
}

.item-single:hover .link-details {
    transition-delay: 0.1s;
}

/*--- Tag List End ---*/

/*--- Section Title Start ---*/

.section-title {
    max-width: 650px;
    margin: 0 auto 50px;
}

.section-title h3 {

    font-family: "Marcellus", serif;

    font-size: 36px;

    color: var(--red);
}

.logo-title {
    margin: 0 auto 20px;

    display: block;
}

.logo-title img {
    width: 50px;

    height: auto;
}

.section-title p {
    font-size: 17px;
    font-weight: 500;
}

/*--- Section Title End ---*/

/*---   Header Start   ----*/

header {
    position: relative;

    z-index: 9;

    width: 100%;
}

.header-show {
    position: fixed;

    top: 0;

    z-index: 9;

    width: 100%;

    -webkit-animation-name: animationFade;

    -o-animation-name: animationFade;

    animation-name: animationFade;

    -webkit-animation-duration: 1s;

    -o-animation-duration: 1s;

    animation-duration: 1s;

    -webkit-animation-fill-mode: both;

    -o-animation-fill-mode: both;

    animation-fill-mode: both;

    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);

    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;

    display: flex;

    align-items: center;
}

.header-top {
    padding: 15px 4% 5px;

    border-bottom: 1px solid #70002d;

    background: var(--maroon);
}

/*-- Social Media Start--*/

.social-header ul li {
    margin-right: 30px;
}

.social-header ul li:last-child {
    margin-right: 0px;
}

.social-header ul li a {
    font-size: 16px;
    color: var(--white);
}

/*-- Social Media End--*/

/*--User Account Start--*/

.user-account ul li {
    margin-right: 40px;
    position: relative;
    display: flex;
    align-items: center;
}

.user-account ul li:last-child {
    margin-right: 0px;
}

.user-account ul li a {
    font-size: 18px;
    position: relative;
    color: var(--white);
}

.user-account ul li a img {
    height: 24px;
    width: 24px;
}

.user-account ul li a span {
    min-height: 18px;

    min-width: 18px;

    line-height: 18px;

    text-align: center;

    font-size: 12px;

    border-radius: 50%;

    position: absolute;

    right: -14px;

    top: -3px;

    background: #bf8614;

    color: var(--white);
}

/*--User Account End--*/

/*--DeskTop Menu Start--*/

.desktop-menu {
    background: var(--maroon);

    padding: 20px 4%;
}

.desktop-menu .menu-left,
.desktop-menu .menu-right {
    position: relative;
}

.desktop-menu .menu-left {
    margin-right: auto;
}

.desktop-menu .menu-right {
    margin-left: auto;
}

.desktop-menu .menu-left ul li,
.desktop-menu .menu-right ul li {
    margin-right: 90px;

    position: relative;
}

.desktop-menu .menu-left ul li:last-child {
    margin-right: 0px;
}

.desktop-menu .menu-right ul li:last-child {
    margin-right: 30px;
}

.desktop-menu .menu-left ul li a,
.desktop-menu .menu-right ul li a {
    color: var(--white);

    font-size: 14px;

    text-transform: uppercase;
}

.desktop-menu .menu-right ul li:last-child a {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);
}

.desktop-menu .menu-right ul li:last-child a {
    font-size: 22px;
}

.logo {
    margin: 0 120px;

    position: absolute;

    background: var(--maroon);

    top: 15px;
}

.logo a img {
    width: 80px;

    height: auto;
}

/*--DeskTop Menu End--*/

/*--Mobile Menu Start--*/

.mobile-menu {
    display: none;
}

.hamberger {
    display: none;
}

.user-title {
    margin-top: 20px;
    padding-left: 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--maroon);
    font-family: 'Jost', sans-serif;

}

/*--Mobile Menu End--*/

/*--- Search Here Start ---*/

.search-wrap {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #fffefa;
    padding: 25px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.5s;
}

.search-wrap .form-control {
    border: 1px solid var(--red);
    border-radius: 25px;
    height: 44px;
    text-indent: 15px;
    background: var(--white);
}

.search-wrap .form-control::placeholder {
    color: #757575;
}

.search-box {
    position: relative;
}

.search-box .search-button {
    border-radius: 0px 25px 25px 0px;
    background: var(--red);
    color: var(--white);
    position: absolute;
    right: 11px;
    top: -0.5px;
    height: 44px;
    padding: 0 0px;
    border: 1px solid var(--red);
    z-index: 9;
    width: 90px;
    text-indent: 0px;
}

.search-wrap.active {
    transform: translateY(0%);
    opacity: 1;
    visibility: visible;
    transition: all 0.5s;
}

.search_bar {
    cursor: pointer;
    position: relative;
    background: transparent;
    padding: 0px;
    border: 0px;
    color: var(--white);
}

.search_bar .bi-search {
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
}

.search_bar.active .bi-search {
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.search_bar.active .bi-x-lg {
    opacity: 1;
    visibility: visible;
    transition: 0.4s;
}

.search_bar .bi-x-lg {
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    position: absolute;
    left: 0;
    width: 30px;
}

/*--- Header Cart Start ---*/

.qc-wrapper {
    position: absolute;
    z-index: 9;
    background: #fff;
    padding: 10px 15px;
    min-width: 270px;
    right: -30px;
    top: 45px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    transform: translateY(50px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
        rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.qc-product-image {
    height: 80px;
    flex: 0 0 80px;
    margin-right: 15px;
}

.qc-product-image img {
    object-fit: cover;
}

.qc-prduct-details h6 {
    font-size: 15px;
}

.qc-prduct-details .qc-price {
    font-size: 14px;
    color: var(--red);
    font-weight: 500;
    margin-bottom: 0px;
}

.qc-prduct-details h6 {
    font-size: 15px;
}

.qc-quantity {
    font-size: 15px;
    font-weight: 500;
    margin-left: 4px !important;
}

.qc-buttons .btn {
    height: 34px;
    line-height: 34px;
    padding: 0 15px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 8px;
    border-radius: 0px;
    text-transform: capitalize;
    letter-spacing: normal;
    min-width: auto;
    flex: 0 0 48%;
}

.qc-buttons .btn-solid {
    background: var(--black);
    color: var(--white);
}

.user-account ul li:nth-child(1):hover .qc-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: all 0.4s;
}

/*--- Header Cart End ---*/

/*--- Header My Account Start ---*/

.header-account {
    position: absolute;
    z-index: 9;
    background: #f7f7f7;
    min-width: 200px;
    right: -30px;
    top: 33px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    transform: translateY(50px);
}

.header-account ul {
    list-style: none;
    padding: 10px 0;
}

.header-account ul li {
    margin-right: 0px;
}

.header-account ul li a {
    color: var(--black);
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    width: 100%;
    background: #f7f7f7;
    transition: all 0.5s;
}

.header-account ul li a:hover {
    color: var(--white);
    background: var(--red);
    transition: all 0.5s;
}

.user-account ul li:last-child:hover .header-account {
    opacity: 1;
    visibility: visible;
    transition: all 0.4s;
    transform: translateY(0px);
}

/*--- Header My Account End ---*/

/*--- Header End   ---*/

/*--- Banner Start   ---*/

.banner {
    position: relative;

    height: 100%;
}

.banner video {
    height: 90vh;

    width: 100%;

    object-fit: cover;
}

.cover-banner {
    position: absolute;

    top: 50%;

    right: 4%;

    transform: translateY(-50%);
}

.banner-content {
    color: var(--white);
    max-width: 650px;
}

.banner-content h1 {
    font-size: 62px;

    line-height: normal;

    padding-bottom: 20px;

    font-family: "Marcellus", serif;

    color: var(--red);
}

.banner-content h6 {
    font-size: 18px;

    padding-bottom: 20px;

    line-height: 34px;

    font-weight: 500;

    color: #65816f;
}

.banner-content p {
    font-size: 16px;

    padding-bottom: 10px;

    margin-bottom: 24px !important;

    line-height: 34px;

    font-weight: 500;

    color: #936200;

    letter-spacing: 2px;

    text-transform: uppercase;

    position: relative;
}

.banner-content p:before {
    position: absolute;

    left: 0;

    bottom: 0;

    background: #936200;

    height: 1px;

    width: 40px;

    content: "";
}

.banner-content .btn-solid-green {
    margin-top: 20px;
}

.carousel-inner .carousel-item:nth-child(4) .banner-content h1 {
    color: var(--white);
}

.carousel-inner .carousel-item:nth-child(4) .banner-content p {
    color: #ffbe3c;
}


/*--- Banner End   ---*/

/*--- Category Start   ---*/

.category-grid {
    display: grid;

    grid-template-columns: 1fr 1.1fr 1fr;

    grid-gap: 15px;
}

.category-grid .cg-box {
    overflow: hidden;

    display: block;

    position: relative;
}

.category-grid .cg-box img {
    object-fit: cover;

    height: 300px;

    transition: all 0.4s;

    -webkit-transition: all 0.4s;
}

.category-grid .cg-box:hover img {
    transform: scale(1.1);

    transition: all 0.4s;

    -webkit-transition: all 0.4s;
}

.category-grid .cg-box:nth-child(1) {
    grid-row: span 2;

    height: 100%;
}

.category-grid .cg-box:nth-child(3) {
    grid-row: span 2;
}

.category-grid .cg-box:nth-child(1) img {
    height: 100%;
}

.category-grid .cg-box:nth-child(3) img {
    height: 100%;
}

.cover-cat {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(240 228 202 / 80%);
    transform: translateY(100%);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 20px 0 80px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.cg-box:hover .cover-cat {
    z-index: 2;
    background: rgb(240 228 202 / 80%);
    transform: translateY(0);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.category-grid .cg-box:after {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(56 0 0 / 20%);
    content: "";
    top: 0;
    left: 0;
    z-index: 1;
}

.cat-title {
    position: absolute;

    bottom: 50px;

    left: 50%;

    transform: translateX(-50%);

    transition: all 0.5s;

    -webkit-transition: all 0.5s;
    z-index: 9;
}

.cg-box:hover .cat-title {
    bottom: 15px;

    transform: translateX(-50%);

    transition: all 0.5s;

    -webkit-transition: all 0.5s;

    opacity: 1;
}

.cat-title h3 {
    font-family: "Marcellus", serif;

    color: var(--white);

    font-size: 40px;
}

.cg-box:hover .cat-title h3 {
    color: var(--red);
    opacity: 0.5;
}

.cat-info h5 {
    font-size: 30px;

    color: var(--red);

    font-family: var(--title);
}

/*--- Category End   ---*/

/*--- Offer Area Start   ---*/

.offer-area {
    position: relative;
}

.offer-item {
    position: relative;

    overflow: hidden;
}

.cart-linker {
    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    display: flex;

    justify-content: center;

    align-items: flex-end;

    transform: translateY(44px);

    transition: all 0.5s;

    -webkit-transition: all 0.5s;
}

.item-single {
    position: relative;
}

.item-single:hover .cart-linker {
    transform: translateY(0px);

    transition: all 0.5s;

    -webkit-transition: all 0.5s;
}

.offer-item .product-thumbnail {
    display: block;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    padding-top: 100%;
    position: relative;
}

.offer-item .product-thumbnail img {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

p.prd-code {
    background: #383838;
    padding: 4px 10px;
    width: 100%;
    color: #fff !important;
}


.product-detail-box .product-title {
    font-size: 15px;
    color: #914900;
    font-weight: 600;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-detail-box p {
    font-size: 15px;
    color: var(--red);
    line-height: 15px;
    font-weight: 600;
}

.owl-theme .owl-nav {
    width: fit-content;
    top: -95px;
    right: 0;
    position: absolute;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background: var(--title);
    height: 40px;
    width: 40px;
    border-radius: 0px;
}

.owl-carousel .owl-nav button.owl-prev img,
.owl-carousel .owl-nav button.owl-next img {
    height: 15px;
    width: 15px;
}

/*--- Offer Area End   ---*/

/*--- Testimonial Start   ---*/

.testimonial-index {}

.testimonial-box {
    position: relative;
}

.testimonial-icon {
    height: 100px;

    width: 100px;

    overflow: hidden;

    margin: 0 auto;

    padding-bottom: 15px;
}

.testimonial-icon img {
    width: 80px !important;

    height: 80px !important;
}

.testi-content {
    z-index: 9;

    position: relative;
}

.testi-content p {
    padding-bottom: 30px;

    line-height: 28px;
}

.testi-content span {
    padding: 10px 0 0px;

    display: block;

    text-transform: uppercase;

    border-top: 1px solid var(--brown);

    width: fit-content;
}

.rating ul {
    display: flex;

    justify-content: center;

    list-style: none;
}

.rating ul li {
    margin-right: 8px;
}

.rating ul li:last-child {
    margin-right: 0px;
}

.rating ul li img {
    width: 14px;

    height: 14px;
}

/*--- Testimonial End   ---*/

/*--- Theme Start   ---*/

.grid-theme {
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-gap: 15px;
}

.grid-theme .gt-box {
    overflow: hidden;
    display: block;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.grid-theme .gt-box img {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    object-fit: cover;
}


.grid-theme .gt-box:nth-child(1) {
    grid-row: span 2;
    height: 100%;
}

.grid-theme .gt-box:nth-child(2) {
    grid-column: span 2;
    height: 400px;
}

.grid-theme .gt-box:nth-child(3) {
    grid-column: span 2;
    height: 400px;
}

.gt-box {
    position: relative;
}

.cover-gt {
    padding: 15px;

    background: var(--red);

    position: absolute;

    bottom: 0;

    width: 100%;

    text-align: center;
}

.gt-info h5 {
    font-family: "Playball", cursive;

    text-transform: capitalize;

    font-size: 30px;

    color: var(--white);

    font-style: italic;
}

.gt-info h6 {
    text-transform: uppercase;

    color: var(--white);

    font-weight: 400;

    word-spacing: 5px;

    letter-spacing: 1px;

    padding-top: 10px;
}

.gt-box:nth-child(2) .cover-gt,
.gt-box:nth-child(3) .cover-gt {
    padding: 15px;

    background: transparent;

    position: absolute;

    bottom: auto;

    top: 50%;

    transform: translateY(-50%);

    text-align: center;

    right: 30px;
}

.gt-box:nth-child(2) .cover-gt {
    max-width: 410px;
}

.gt-box:nth-child(3) .cover-gt {
    max-width: 410px;
}

.gt-info h2 {
    text-transform: capitalize;
    color: #34513f;
    word-spacing: 5px;
    letter-spacing: 1px;
    font-family: "Playball", cursive;
    font-size: 26px;
    font-weight: 500;
    text-shadow: 0px 3px 2px rgba(0, 0, 0, 0.3), 0px 8px 10px rgba(0, 0, 0, 0.1),
        0px 18px 23px rgba(0, 0, 0, 0.1);
}

.gt-info p {
    font-size: 16px;
    line-height: 26px;
    padding-top: 10px;
    color: var(--red);
    font-weight: 600;
}

.grid-theme .gt-box:nth-child(3) .gt-info p {
    text-transform: uppercase;
}

.go-info h6 span {
    font-weight: 500;
    text-transform: capitalize;
    line-height: 38px;
    font-family: "Marcellus", serif;
    font-size: 20px;
}

.grid-theme .gt-box:nth-child(3) {
    background: var(--light-green);
}

.grid-theme .gt-box:nth-child(3) img {
    position: absolute;

    top: 50%;

    left: 60px;

    transform: translateY(-50%);

    height: auto;

    width: 240px;
}

.gt-info h3 {
    font-size: 34px;

    color: var(--red);

    padding-top: 10px;

    font-family: "Marcellus", serif;

    font-weight: 500;
}


/*--- Theme End   ---*/

/*--- Theme Offer Start   ---*/

.grid-offer {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr 1.5fr;

    grid-gap: 15px;
}

.grid-offer .go-box {
    overflow: hidden;

    display: block;

    position: relative;

    transition: all 0.5s;

    -webkit-transition: all 0.5s;
}

.grid-offer .go-box img {
    object-fit: cover;
}

.grid-offer .go-box:nth-child(2) {
    grid-row: span 2;

    height: 100%;
}

.grid-offer .go-box:nth-child(3) {
    grid-column: span 2;

    height: 330px;
}

.grid-offer .go-box:nth-child(1) {
    grid-column: span 2;

    height: 400px;
}

.go-box {
    position: relative;
}

.cover-go {
    padding: 15px;

    background: var(--red);

    position: absolute;

    bottom: 0;

    width: 100%;

    text-align: center;
}

.go-info h5 {
    font-family: "Playball", cursive;

    text-transform: capitalize;

    font-size: 30px;

    color: var(--white);

    font-style: italic;
}

.go-info h6 {
    color: var(--white);

    font-weight: 400;

    word-spacing: 5px;

    letter-spacing: 1px;

    padding-top: 10px;
}

.go-box:nth-child(2) .cover-gt,
.go-box:nth-child(3) .cover-gt {
    padding: 15px;

    background: transparent;

    position: absolute;

    bottom: auto;

    top: 50%;

    transform: translateY(-50%);

    width: 100%;

    text-align: center;

    right: 30px;

    width: fit-content;
}

.go-info h2 {
    text-transform: uppercase;

    color: var(--white);

    font-weight: 400;

    word-spacing: 5px;

    letter-spacing: 1px;

    font-family: "Playball", cursive;

    font-size: 64px;

    font-weight: 600;

    text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1),
        0px 18px 23px rgba(0, 0, 0, 0.1);
}

.go-info p {
    text-transform: uppercase;

    font-size: 16px;

    padding-top: 10px;

    color: var(--red);
}

.grid-offer .go-box:nth-child(3) {
    background: var(--light-green);

    padding: 50px 50px;
}

.go-info h3 {
    font-size: 44px;

    color: var(--red);

    padding-top: 10px;

    font-family: "Marcellus", serif;

    font-weight: 500;
}

.grid-offer .go-box:nth-child(1) .cover-go {
    padding: 15px;

    background: transparent;

    position: absolute;

    bottom: auto;

    width: fit-content;

    text-align: left;

    top: 50%;

    transform: translateY(-50%);

    left: 30px;
}

/*--- Theme Offer End   ---*/

/*--- Footer Start   ---*/

.footer-main {
    background: var(--off_white);

    padding: 60px 0 0 0;
}

.link-box h4 {
    font-size: 16px;

    text-transform: uppercase;

    color: var(--title);

    font-weight: 600;

    padding-bottom: 25px;
}

.link-box ul {
    list-style: none;

    padding-left: 0px;
}

.link-box ul li {
    margin-bottom: 10px;

    position: relative;
}

.link-box ul li a {
    color: var(--black);
}

.footer-main .row [class*="col-"]:last-child .link-box ul li {
    padding-left: 34px;

    margin-bottom: 20px;
}

.footer-main .row [class*="col-"]:nth-child(2) {
    padding-left: 30px;
}

.footer-main .row [class*="col-"]:last-child .link-box ul li:nth-child(1):before {
    content: "";

    width: 26px;

    height: 26px;

    background: url(../images/address.png);

    background-repeat: no-repeat;

    background-size: 26px auto;

    left: 0;

    top: 7px;

    position: absolute;
}

.footer-main .row [class*="col-"]:last-child .link-box ul li:nth-child(2):before {
    content: "";

    width: 20px;

    height: 20px;

    background: url(../images/call.svg);

    background-repeat: no-repeat;

    background-size: 16px 16px;

    left: 0;

    top: 0;

    position: absolute;
}

.footer-main .row [class*="col-"]:last-child .link-box ul li:nth-child(3):before {
    content: "";

    width: 20px;

    height: 20px;

    background: url(../images/email.svg);

    background-repeat: no-repeat;

    background-size: 16px 20px;

    left: 0;

    top: 0;

    position: absolute;
}

.copyright {
    background: var(--black);

    padding: 10px 0;

    margin-top: 30px;
}

.copyright p {
    font-weight: 500;

    font-size: 14px;

    color: var(--white);
}

.copyright p span {
    font-weight: 600;
}

/*--- Footer End   ---*/

/*--- SUB Banner Start  ---*/

.banner-bg {
    background: #ceb495;

    min-height: 300px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;
}

.product-type-box h1 {
    text-transform: uppercase;

    font-size: 44px;

    font-weight: 600;

    color: var(--white);

    position: relative;

    padding-bottom: 20px;
}

.product-type-box h1:after {
    position: relative;

    background: var(--white);

    width: 150px;

    height: 1px;

    content: "";

    position: absolute;

    left: 50%;

    transform: translate(-50%);

    bottom: 0;
}

/*--- SUB Banner  End ---*/

/*----    Product Lists Start  ---*/

.product-wrapper {
    position: relative;

    padding: 40px 30px;
}

.accordion-button:not(.collapsed) {
    color: var(--white);

    background-color: var(--banner_brown);

    box-shadow: none;

    border: 0px;
}

.accordion-button {
    background-color: var(--banner_brown);

    padding: 15px 15px;

    font-size: 16px;

    color: var(--white);

    font-weight: 600;

    border-radius: 0px !important;

    border-bottom: 3px solid var(--white);
}

.accordion-button.collapsed:focus,
.accordion-button:focus {
    box-shadow: none;

    outline: none;

    border-bottom: 3px solid var(--white);
}

.accordion-item {
    border: 0px;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;

    transform: rotate(0);

    content: "\F63B";

    font-family: var(--bs-font);

    position: absolute;

    right: 15px;

    top: 50%;

    transform: translateY(-50%);
}

.accordion-button::after {
    background-image: none;

    transform: rotate(0);

    content: "\F64D";

    font-family: bootstrap-icons !important;

    position: absolute;

    right: 15px;

    top: 50%;

    transform: translateY(-50%);
}

.form-check-input:checked {
    background-color: var(--banner_brown);

    border-color: var(--banner_brown);
}

.form-check-input[type="checkbox"] {
    border-radius: 0px;
}

.form-check-input {
    width: 20px;

    height: 20px;

    margin-top: 0.25em;

    border: 1px solid var(--banner_brown);
}

.accordion-body .form-check {
    margin-bottom: 15px;
}

.form-check-label {
    margin-top: 3px;

    padding-left: 7px;
}

.form-check-input:focus {
    box-shadow: none !important;
}

.form-check-input:checked[type="radio"] {
    background-size: 14px;
}

.accordion-body {
    position: relative;

    background: var(--off_white);
}

/*

.accordion-body:before {

    position: absolute;

    left: 10px;

    top: 0;

    width: 1px;

    height: 100%;

    content: '';

    background: var(--banner_brown);

}

*/

.accordion {
    position: sticky;

    top: 80px;
    width: 100%;
}

.pagination li {
    margin-right: 10px;
}

.pagination .page-item a {
    background: var(--white);

    color: var(--black);

    display: flex;

    padding: 10px 15px;

    justify-content: center;

    align-items: center;

    border: 0px;

    min-width: 40px;

    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.page-link:focus {
    box-shadow: none;
}

.category-link ul {
    list-style: none;

    padding-left: 0px;
}

.category-link ul li {
    margin-bottom: 15px;

    padding-left: 30px;

    position: relative;
}

.category-link ul li a {
    display: inline-block;

    color: var(--black);
}

.category-link ul li:before {
    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    transform: translateY(-50%);

    background: var(--gray);

    height: 16px;

    width: 16px;

    border-radius: 50%;
}

.category-link ul li.active:before {
    background: var(--banner_brown);
}

.page-item.disabled .page-link {
    color: #000;

    background-color: var(--gray);
}

.rating-filter ul li a {
    margin-bottom: 10px;

    color: #ffa500;

    cursor: pointer;
}

.rating-filter ul li span {
    color: var(--black);

    margin-left: 5px;
}

.filter-pricetag ul {
    list-style: none;
}

.filter-pricetag ul li {
    margin-bottom: 10px;
}

.filter-pricetag ul li a {
    font-size: 14px;

    font-weight: 500;

    color: var(--black);

    position: relative;

    padding-left: 30px;
}

.filter-pricetag ul li a::before {
    position: absolute;

    left: 0;

    top: 50%;

    transform: translateY(-50%);

    font-family: bootstrap-icons !important;

    content: "\F518";

    color: var(--brown);
}

.filter-pricetag ul li.active a::before {
    content: "\F517";
}

.filter-pricetag ul li.active a {
    font-weight: 600;
}

.filter-sizetag .fs-list {
    grid-row-gap: 10px;
}

.filter-sizetag .fs-list li a {
    color: var(--black);

    font-size: 14px;

    padding: 3px 5px;

    margin-right: 5px;

    border: 1px solid var(--brown);
}

.filter-sizetag .fs-list li.active a {
    border: 1px solid var(--brown);

    font-weight: 600;

    background: var(--brown);

    color: var(--white);
}

.custom-pagi {
    margin-top: 40px;
}

.page-item.active .page-link {
    background-color: var(--black);

    border-color: var(--white);

    color: var(--white);
}

/*----    Product Lists End  ---*/

/*--  Product Details  Start  --*/

.pdd-flex {
    margin-bottom: 15px;

    flex-wrap: wrap;
}

.pdd-flex span:nth-child(1) {
    flex: 0 0 30%;

    width: 35%;
}

.pdd-flex span:nth-child(2) {
    flex: 0 0 70%;

    width: 65%;
}

.product-details-desc h3 {
    font-size: 24px;

    color: var(--black);

    line-height: 34px;

    font-weight: 600;

    padding-bottom: 30px;
}

.product-details-desc h5 {
    font-size: 16px;

    color: var(--black);

    line-height: 26px;

    font-weight: 600;

    padding-bottom: 25px;

    position: relative;

    width: fit-content;
}

.product-details-desc h5:before {
    position: absolute;

    left: 0;

    bottom: 20px;

    width: 100%;

    height: 1px;

    content: "";

    background: var(--black);
}

.pdd-desc {
    margin-top: 30px;
}

.pdd-desc h4 {
    font-size: 20px;

    padding-bottom: 15px;

    position: relative;

    width: fit-content;
}

.pdd-desc h4:before {
    position: absolute;

    left: 0;

    bottom: 7px;

    width: 100%;

    height: 1px;

    content: "";

    background: var(--black);
}

.pdd-price {
    margin-top: 30px;
}

.pdd-price h4 {
    font-weight: 600;

    font-size: 20px;
}

.flex-box-product .btn-brown {
    margin-left: 10px;
}

.head-tag {
    background: var(--off_white);

    padding: 15px 30px;

    margin-bottom: 30px;
}

.head-tag h6 {
    text-align: center;

    display: flex;

    justify-content: center;

    font-size: 14px;
}

.head-tag h6 span {
    flex: 0 0 30%;

    border-right: 1px solid var(--black);
}

.head-tag h6 span:last-child {
    border-right: 0px;
}

.product-detail-wrapper {
    padding: 30px 0;
}

.inhand-quantity {
    margin-top: 25px;
}

.inhand-quantity h6 {
    color: #ff5555;

    font-size: 16px;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-family: var(--heading);
}

.inhand-quantity h6 span {
    color: #ec0000;

    font-size: 20px;

    font-weight: 600;
}

.blog-share {
    margin-top: 20px;
}

.blog-share ul {
    margin-left: 20px;
}

.blog-share ul li {
    margin-right: 12px;
}

.blog-share ul li:last-child {
    margin-right: 0px;

    text-align: center;
}

.blog-share ul li a {
    color: var(--red);

    display: inline-block;

    width: 20px;

    text-align: center;
}

.comment-title {
    border-bottom: 1px solid var(--icon-menu);

    padding-bottom: 7px;

    width: 100%;

    margin-bottom: 15px;
}

/*--  Product Details  End  --*/

/*----  Log In   Start  ---*/

.product-detail-wrapper {
    padding: 80px;
}

.log-wrapper .form-control {
    font-size: 14px;

    border: 1px solid var(--brown);

    background: transparent;

    height: 48px;

    padding: 0px;

    line-height: 38px;

    text-indent: 15px;
}

.log-wrapper .form-control.submit {
    font-size: 14px;
    border: 0px;
    background: var(--maroon);
    color: var(--white);
    height: 48px;
    text-indent: 0px;
}

.log-wrapper .form-control::placeholder {
    color: #686868;
}

.log-footer {
    margin-top: 20px;
}

.log-footer h6 {
    color: var(--black);
    font-size: 14px;
    margin-bottom: 0px;
}

.log-footer h6 a {
    color: #008289;
    margin-left: 8px;
    text-decoration: underline !important;
}

.log-footer a {
    color: #2e0172;
    margin-left: 8px;
    font-weight: 600;
    font-size: 14px;
}

.log-image {
    height: 450px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
}

.log-image img {
    object-fit: cover;
}

.log-wrapper {
    height: 100%;

    background: #f7f7f7;

    padding: 30px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.log-wrapper h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    color: #2e0172;
}

.log-wrapper h4:after {
    position: absolute;
}

.log-wrapper .frgt-pass {
    color: var(--brown);

    padding: 10px 0;

    text-decoration: underline;
}

.logo-log {
    padding: 60px;

    text-align: center;
}

.logo-log img {
    width: 250px;
}

.log-wrapper input[type="submit"] {
    background: var(--brown);

    width: 120px;

    height: 44px;

    color: var(--white);

    font-size: 14px;

    padding: 0px;

    line-height: 44px;

    text-indent: 0px;
}

/*----  Log In   End  ---*/

/*----   Product Details  Start  ---*/

.product-area-main {
    position: relative;
}

.left-filter {
    background: #fbfbfb;

    padding: 30px;
}

.right-product {
    position: relative;
}

.filter-one {
    margin-bottom: 30px;
}

.filter-one h5 {
    font-size: 16px;

    padding-bottom: 15px;

    color: #34513f;
}

.input-wrapper {
    margin-bottom: 10px;
}

.input-wrapper .form-check-input {
    background: transparent;

    position: relative;
}

.input-wrapper .form-check-label {
    font-size: 14px;

    font-weight: 500;

    color: #000;
}

.input-wrapper .form-check-input:checked[type="checkbox"] {
    background: var(--brown);
}

.input-wrapper .form-check-input:checked[type="checkbox"]:before {
    content: "✔";

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    z-index: 99;

    color: var(--white);
}

.filter-one .input-wrapper .form-check-input {
    cursor: pointer;
}

.filter-one .input-wrapper .form-check-label {
    cursor: pointer;
}

#pd-slider {
    padding: 0 40px 15px 0px;

    position: relative;
}

#pd-slider2 {
    padding: 0 40px 0px 0px;

    position: relative;
}

#pd-slider .owl-nav {
    width: 100%;

    top: 50%;
}

#pd-slider .pd-single {
    height: 550px;

    overflow: hidden;
}

#pd-slider .pd-single img {
    height: 100%;

    object-fit: cover;
}

.thmb-pd {
    height: 120px;

    width: 120px;

    overflow: hidden;

    margin: 0 auto;
}

.thmb-pd img {
    height: 100%;

    object-fit: cover;
}

#pd-slider .owl-nav .owl-prev {
    background: #e7e7e7;

    position: absolute;

    right: 40px;

    border-radius: 50%;

    font-size: 20px;

    color: var(--red);

    transition: all 0.4s;

    -webkit-transition: all 0.4s;
}

#pd-slider .owl-nav .owl-next {
    background: #e7e7e7;

    position: absolute;

    left: 0;

    border-radius: 50%;

    font-size: 20px;

    color: var(--red);

    transition: all 0.4s;

    -webkit-transition: all 0.4s;
}

#pd-slider .owl-nav .owl-next:hover,
#pd-slider .owl-nav .owl-prev:hover {
    background: var(--red);

    color: #fff;

    transition: all 0.4s;

    -webkit-transition: all 0.4s;
}

.pd-contents .pd-title {
    font-size: 24px;

    color: #000;

    padding-bottom: 15px;
}

.pd-contents p .delete-price {
    font-size: 16px;

    font-weight: 600;

    text-decoration: line-through;

    margin-right: 14px;

    color: #83868c;
}

.pd-contents p .current-price {
    font-size: 18px;

    font-weight: 600;

    color: var(--red);
}

.review-wrap {
    padding-bottom: 15px;

    border-bottom: 1px solid #f7f7f7;

    margin: 15px 0;
}

.review li {
    color: gold;
}

.special-offer {
    position: relative;

    border: 1px solid #ddd;

    padding: 15px;

    margin-top: 40px;
}

.so-title {
    position: absolute;

    top: -20px;

    background: #fff;

    width: fit-content;

    left: 20px;

    color: #41a148;

    font-size: 18px;

    padding: 7px 12px;
}

.special-offer ul li {
    font-size: 16px;
    font-weight: 500;
    color: #41a148;
    padding-left: 30px;
    position: relative;
}

.special-offer ul li:before {
    position: absolute;

    left: 0px;

    top: 50%;

    transform: translateY(-50%);

    content: "\F231";

    font-family: bootstrap-icons !important;

    font-size: 15px;

    color: #41a148;
}

.guide-box {
    padding: 10px 0;
}

.guide-box ul li {
    cursor: pointer;

    font-size: 16px;

    color: #000;

    font-weight: 600;

    padding: 7px 0px;

    margin-right: 30px;
}

.guide-box ul li a {
    color: var(--red);
}

.guide-box ul li:last-child {
    margin-bottom: 0px;
}

.size-box,
.color-box {
    padding: 10px 0;
}

.size-box .sbl,
.color-box .sbl {
    flex: 0 0 100px;
}

.sbr .form-check-input {
    display: none;
}

.sbr .form-check {
    padding-left: 0px;

    margin-right: 15px;
}

.sbr .form-check input:checked+.form-check-label {
    border: 1px solid #41a148;

    transition: all 0.3s;

    -webkit-transition: all 0.3s;
}

.sbr .form-check-label {
    min-width: 90px;
    height: 32px;
    line-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    cursor: pointer;
    padding: 0px 10px;
}

.color-box .sbr input#spd_four[type="radio"] {
    height: 22px;

    width: 22px;

    border-radius: 50%;

    overflow: hidden;

    display: inline-block;

    position: relative;

    margin-right: 10px;

    background: #fff;

    border: 0px;
}

.color-box .sbr input#spd_five[type="radio"] {
    height: 22px;

    width: 22px;

    border-radius: 50%;

    overflow: hidden;

    display: inline-block;

    position: relative;

    background: #fff;

    border: 0px;
}

.color-box .sbr input#spd_four[type="radio"]:checked {
    height: 22px;

    width: 22px;

    border-radius: 50%;

    overflow: hidden;

    display: inline-block;

    border: 1px solid var(--red);

    position: relative;
}

.color-box .sbr input#spd_five[type="radio"]:checked {
    height: 22px;

    width: 22px;

    border-radius: 50%;

    overflow: hidden;

    display: inline-block;

    border: 1px solid #000;

    position: relative;
}

.color-box .sbr input#spd_four[type="radio"]:before {
    background: #34513f;

    height: 10px;

    width: 10px;

    border-radius: 50%;

    overflow: hidden;

    display: inline-block;

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    content: "";
}

.color-box .sbr input#spd_five[type="radio"]:before {
    background: #34513f;

    height: 10px;

    width: 10px;

    border-radius: 50%;

    overflow: hidden;

    display: inline-block;

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    content: "";
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;

    margin: 0;
}

.quantity-nav {
    float: left;

    position: relative;

    height: 42px;
}

.quantity-button {
    position: relative;

    cursor: pointer;

    width: 20px;

    text-align: center;

    color: #333;

    font-size: 13px;

    font-family: "Trebuchet MS", Helvetica, sans-serif !important;

    line-height: 1.7;

    -webkit-transform: translateX(-100%);

    transform: translateX(-100%);

    -webkit-user-select: none;

    -moz-user-select: none;

    -ms-user-select: none;

    -o-user-select: none;

    user-select: none;
}

.quantity-button.quantity-up {
    position: absolute;

    top: 0;

    height: 21px;

    width: 24px;

    left: 69px;

    background: var(--red);

    color: var(--white);

    font-size: 17px;

    line-height: 1.5;
}

.quantity-button.quantity-down {
    position: absolute;

    bottom: -1px;

    height: 21px;

    overflow: hidden;

    width: 24px;

    left: 69px;

    background: var(--red);

    color: var(--white);

    font-size: 17px;

    line-height: 1.5;
}

.pd-count {
    margin-top: 15px;
}

.pd-count input {
    width: 70px;

    height: 44px;

    line-height: 36px;

    border: 1px solid var(--red);

    outline: none !important;

    font-size: 18px;

    padding: 0 36px 0 10px;
}

.pd-bottom .btn {
    position: relative;
}

.info-tab .nav-tabs .nav-link.active,
.info-tab .nav-tabs .nav-item.show .nav-link {
    color: #495057;

    background-color: #fff;

    border: 0px;

    position: relative;
}

.info-tab .nav-tabs .nav-link.active:after,
.info-tab .nav-tabs .nav-item.show .nav-link:after {
    position: absolute;

    left: 50%;

    bottom: 0px;

    background: var(--red);

    height: 2px;

    border-radius: 3px;

    content: "";

    width: 100%;

    transform: translateX(-50%);
}

.nav-tabs .nav-link,
.nav-tabs .nav-item {
    font-size: 15px;

    font-weight: 500;

    color: #919191;

    padding: 10px 0 5px;

    position: relative;

    margin-right: 30px;

    outline: none !important;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-item:focus {
    border: 0px;

    outline: 0px;
}

.info-tab {
    padding-bottom: 30px;
}

.pd-desc p {
    font-size: 15px;
}

.pdd-box {
    display: flex;

    margin-bottom: 15px;
}

.pdd-box h6 {
    font-size: 15px;

    flex: 0 0 180px;
}

.pdd-box p {
    font-size: 15px;
}

.pdd-box p span {
    margin-right: 6px;
}

.sr-image {
    margin-right: 30px;
}

.sr-image img {
    height: 60px;

    width: 60px;

    border-radius: 50%;

    object-fit: cover;
}

.comment-form h4 {
    font-size: 17px;

    padding-bottom: 25px;
}

.form-comment input.form-control {
    border: 1px solid var(--red);

    height: 44px;
}

.form-comment textarea.form-control {
    border: 1px solid var(--red);

    height: 150px;
}

.comment-form {
    background: #fdfdfd;

    padding: 30px;
}

.form-comment .form-select {
    border: 1px solid var(--red);

    border-radius: 0px;

    height: 44px;
}

.form-comment .form-select:focus {
    box-shadow: none;

    outline: none;
}

.comment-wrap {
    padding: 60px 0 30px;
}

.comment-main {
    padding-right: 40px;

    height: 615px;

    overflow-y: scroll;
}

/* width */

.comment-main::-webkit-scrollbar {
    width: 2px;
}

.comment-main::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;

    border-radius: 2px;
}

/* Handle */

.comment-main::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 2px;
}

/* Handle on hover */

.comment-main::-webkit-scrollbar-thumb:hover {
    background: var(--lime-green);
}

.delivery-policy h6 {
    padding-bottom: 20px;

    font-weight: 600;

    font-size: 15px;
}

.delivery-policy ul {
    margin-bottom: 30px;
}

.delivery-policy ul li {
    margin-bottom: 10px;
}

.modal-dialog {
    max-width: 70%;

    border-radius: 0px;
}

#ask_question .modal-dialog {
    max-width: 50%;
}

.btn-close {
    position: absolute;

    top: 0;

    right: 0;

    z-index: 99;

    width: 30px;

    height: 30px;

    background: #707070;

    color: var(--white);

    border-radius: 0px;

    opacity: 1;
}

.modal-body {
    padding: 30px;
}

.modal-body,
.modal-content {
    border-radius: 0px;

    border: 0px;
}

.share-media {
    margin-top: 30px;
}

.share-media h6 {
    padding-right: 30px;
}

.sm-icons li {
    margin-right: 20px;
}

.sm-icons li a img {
    height: 24px;

    width: 24px;
}

.related-pd {
    margin: 20px 0 40px;
}

.related-pd .section-title {
    max-width: fit-content;

    margin: 0 0 20px;
}

#rp-slider.owl-theme .owl-nav [class*="owl-"] {
    background: #869791;

    color: #fff;

    text-decoration: none;
}

#rp-slider.owl-theme .owl-nav {
    top: -80px;
}

.comment-form p span {
    color: red;

    font-size: 16px;

    padding-left: 3px;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    border-color: transparent;

    isolation: isolate;
}

.comment-form h6 {
    font-size: 14px;
}

/*----   Product Details  End  ---*/

/*----  Blog Start  ---*/

.blog-wrapper {
    position: relative;

    height: auto;
}

.blog-image {
    height: 400px;

    overflow: hidden;

    position: relative;
}

.blog-image a {
    display: inline-block;

    width: 100%;

    height: 100%;
}

.blog-image img {
    height: 100%;

    width: 100%;

    object-fit: cover;

    transition: all 0.5s;

    -webkit-transition: all 0.5s;
}

.blog-wrapper:hover .blog-image img {
    transform: scale(1.2);

    transition: all 0.5s;

    -webkit-transition: all 0.5s;
}

.blog-content {
    padding: 20px 15px 20px 0;
}

.blog-content h6 {
    /* text-transform: uppercase; */

    color: var(--lime-green);

    font-size: 14px;

    padding-bottom: 12px;
}

.blog-content h4 {
    padding-bottom: 12px;
}

.blog-content h4 a {
    font-size: 20px;

    font-weight: 500;

    color: var(--black);

    font-family: var(--heading);
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

    transition: all 0.5s;

    -webkit-transition: all 0.5s;
}

.blog-content h4 a:hover {
    color: var(--lime-green);

    transition: all 0.5s;

    -webkit-transition: all 0.5s;
}

.blog-date {
    position: absolute;

    height: 70px;

    width: 70px;

    background: var(--white);

    color: var(--red);

    top: 15px;

    left: 15px;

    text-align: center;

    font-family: var(--title);

    border-radius: 50%;

    padding: 15px 7px;
}

.bd-day {
    padding-bottom: 5px;

    margin-bottom: 5px !important;

    font-size: 15px;

    color: var(--red);

    position: relative;

    line-height: 18px;
}

.bd-day:before {
    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    bottom: 0;

    width: 80%;

    height: 1px;

    content: "";

    background: var(--red);
}

.bd-year {
    font-size: 14px;

    color: var(--red);

    line-height: 15px;

    text-transform: uppercase;
}

.cs-search .form-control {
    border-radius: 0px;

    border: 1px solid var(--black);
}

.input-group-text {
    background: var(--black);

    color: var(--white);

    border-radius: 0;

    border: 0px;
}

.bd-left {
    padding-right: 20px;
}

.blog-category {
    padding: 20px 0;
}

.blog-category>h6,
.br-recent-blog>h6,
.br-tags>h6,
.archived-tags>h6 {
    font-size: 15px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    padding-bottom: 10px;

    border-bottom: 1px solid var(--gray);

    margin-bottom: 10px !important;
}

.archived-tags {
    margin-top: 30px;
}

.blog-category ul li a {
    padding: 10px 0;

    border-bottom: 1px dashed var(--gray);

    display: inline-block;

    width: 100%;

    color: var(--black);

    font-weight: 500;

    font-size: 16px;

    transition: all 0.3s;

    -webkit-transition: all 0.3s;
}

.blog-category ul li a:hover {
    color: var(--lime-green);

    transition: all 0.3s;

    -webkit-transition: all 0.3s;
}

.br-recent-blog {
    padding: 30px 0;
}

.br-recent-blog>h6 {
    margin-bottom: 25px !important;
}

.rb-wrap {
    display: block;

    padding-bottom: 15px;

    border-bottom: 1px dashed var(--gray);

    margin-bottom: 15px;
}

.rb-wrap .rb-image {
    height: 70px;

    width: 70px;

    flex-shrink: 0;

    margin-right: 15px;
}

.rb-image img {
    object-fit: cover;
}

.rb-wrap .rb-content h6 {
    color: #a9a9a9;

    font-size: 13px;

    font-weight: 500;

    padding-bottom: 8px;
}

.rb-wrap .rb-content p {
    color: var(--black);

    font-size: 14px;

    font-weight: 500;

    -webkit-line-clamp: 2;

    display: block;

    display: -webkit-box;

    -webkit-box-orient: vertical;

    text-overflow: ellipsis;

    overflow: hidden;
}

.tags-wrap {
    display: flex;

    flex-wrap: wrap;

    grid-row-gap: 15px;
}

.tags-wrap a {
    display: inline-block;

    padding: 8px 12px;

    font-size: 14px;

    font-weight: 500;

    color: var(--black);

    flex: 0 0 auto;

    margin-right: 10px;

    border: 1px solid var(--gray);

    transition: all 0.4s;

    -webkit-transition: all 0.4s;
}

.archived-tags .tags-wrap a {
    padding: 8px 16px;
}

.tags-wrap a:hover {
    color: var(--white);

    background: var(--red);

    border: 1px solid var(--red);

    transition: all 0.4s;

    -webkit-transition: all 0.4s;
}

/* .blog-comment-no p {

    font-size: 15px;

    color: var(--red);

    line-height: 0px;

    font-weight: 500;

}



.blog-comment-no p i {

    margin-right: 3px;

}



.blog-comment-no {

    position: absolute;

    background: var(--white);

    bottom: 0;

    right: 0;

    padding: 7px 10px;

    border-bottom: 1px solid #c9c9c9;

    border-right: 1px solid #c9c9c9;

}



.blog-comment-no p span:nth-child(1) {

    margin-right: 10px;

} */

.blog-publication p {
    color: var(--lime-green);

    font-weight: 500;

    font-size: 14px;
}

.blog-publication p span:nth-child(1) {
    margin-right: 10px;
}

/*----  Blog End  ---*/

.copyright p a {
    color: var(--lime-green);
}

/*----   Contact Us  Start  ---*/

.bg-offwhite {
    background: #f3f3f3;

    padding: 40px;

    height: 100%;
}

.contact-info h5 {
    font-size: 24px;

    text-transform: uppercase;

    color: var(--lime-green);

    padding-bottom: 15px;

    margin-bottom: 30px !important;

    position: relative;

    width: fit-content;

    font-family: var(--title);
}

/*

.contact-info h5:before {

    position: absolute;

    left: 0;

    bottom: 0;

    background: var(--lime-green);

    height: 1px;

    width: 100%;

    content: '';

}

*/

.ci-icon {
    height: 44px;

    width: 44px;

    text-align: center;

    line-height: 44px;

    font-size: 20px;

    border: 1px solid var(--lime-green);

    border-radius: 50%;

    display: inline-block;

    flex: 0 0 44px;

    color: var(--lime-green);
}

.ci-content {
    margin-left: 25px;
}

.ci-wrap {
    margin-bottom: 30px;
}

.ci-content h6 {
    padding-bottom: 5px;

    font-weight: 500;

    font-size: 18px;
}

.contact-info .ci-wrap:last-child {
    margin-bottom: 0px;
}

.con-map {
    height: 100%;
}

.con-map iframe {
    height: 100%;

    width: 100%;

    object-fit: cover;
}

.single-input input.form-control,
.single-input .form-select {
    border: 1px solid var(--black);

    height: 44px;

    line-height: 44px;

    margin-bottom: 15px;

    transition: all 0.4s;

    -webkit-transition: all 0.4s;
}

.form-select {
    line-height: normal !important;
}

.single-input input.form-control:focus,
.single-input .form-select:focus {
    border: 1px solid var(--lime-green);
    box-shadow: none !important;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.single-input textarea.form-control {
    border: 1px solid var(--black);
    height: 220px;
}

.single-input textarea.form-control:focus {
    border: 1px solid var(--lime-green);
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

/*----   Contact Us  End  ---*/

/*----  My Account   Start  ---*/

.left-bar {
    background: #f9f9f9;
    top: 40px;
    position: sticky;
    padding: 60px 35px;
}

.user-prof {
    margin-bottom: 20px;
}

.user-prof h5 {
    font-family: var(--heading);
    font-size: 18px;
    color: #157c1c;
    margin-bottom: 6px;
}

.user-prof p {
    font-size: 14px;
    color: #8b8b8b;
}

.left-bar ul li a {
    padding: 5px 0px 5px 40px;
    width: 100%;
    margin-bottom: 15px;
    color: #000000;
    position: relative;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.left-bar ul li a span {
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 18px;
}

.left-bar ul li a.active {
    color: #007440;
}

.left-bar ul li:last-child a {
    margin-bottom: 0px;
}

.right-bar {
    height: 100%;
    border-radius: 4px;
    border: 1px solid #dedede;
}

.single-rbox {
    margin-bottom: 20px;
    display: flex;
    padding: 0 50px;
}

.single-rbox .rb-title {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    flex: 0 0 200px;
}

.single-rbox h6 {
    font-size: 15px;
    line-height: normal;
    font-family: "Jost", sans-serif;
    font-weight: 400;
}

.rb-detail span {
    display: block;
}

.profile-bar-head {
    background: #f9f9f9;
    padding: 15px 50px;
    border-bottom: 1px solid #dedede;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
    font-family: var(--heading);
    color: #2e0172;
}

.profile-bar-head span {
    float: right;
}

.profile-bar-head span a {
    color: #fff;
    background: #2e0172;
    padding: 5px 15px;
    font-size: 13px;
    font-weight: 400;
    border-radius: 3px;
}

/*----  My Account   End  ---*/

/* My Order Start  */
.order-box {
    border-radius: 4px;
    border: 1px solid #dedede;
    font-family: "Jost", sans-serif;
    padding-bottom: 30px;
    margin-bottom: 20px;
    position: relative;
}

.order-head {
    background: #f9f9f9;
    padding: 20px 30px;
    margin-bottom: 30px;
}

.order-body {
    padding: 0 30px;
    position: relative;
    margin-bottom: 25px;
}

.order-body:last-of-type {
    margin-bottom: 0px;
}

.order-image {
    flex: 0 0 185px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
}

.order-no,
.order-date,
.order-amnt,
.order-to {
    font-weight: 500;
    font-size: 15px;
}

.order-no span,
.order-date span,
.order-amnt span,
.order-to span {
    font-weight: 400;
    font-size: 15px;
}

.order-product {
    margin-bottom: 8px;
}

.order-product a {
    color: #007440;
}

.order-sku,
.order-to,
.price-amnt {
    margin-bottom: 4px;
    line-height: 22px;
    font-weight: 500;
}

.view-item {
    font-size: 13px;
    background: #936200;
    color: #fff;
    margin-top: 10px;
    border-radius: 3px;
    padding: 5px 15px;
}

.view-order {
    font-size: 13px;
    background: #2e0172;
    color: #fff;
    margin-top: 10px;
    border-radius: 3px;
    padding: 8px 15px;
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.view-order:hover,
.view-item:hover {
    color: #fff;
}

/* My Order End */

/* Address Start  */

.address-wrap {
    padding: 0 30px 30px;
}

.single-address {
    padding: 20px 30px;
    background: #f9f9f9;
    border-radius: 5px;
}

.single-address {
    font-family: "Jost", sans-serif;
}

.address-name {
    color: #000;
    margin-bottom: 6px;
}

.single-address p {
    color: #495057;
    margin-bottom: 3px;
}

.add-address {
    background: #f9f9f9;
    height: 100%;
    position: relative;
    font-family: "Jost", sans-serif;
    border-radius: 4px;
}

.add-address-form {
    font-size: 28px;
    color: #707070;
    border: 0px;
    outline: none !important;
    box-shadow: none !important;
    background: transparent;
    border-radius: 3px;
    text-align: center;
}

.add-address-form span {
    flex: 0 0 100%;
    display: block;
}

.add-address-form span:nth-child(2) {
    font-size: 18px;
}

.address-form {
    padding: 0 50px 30px;
}

.address-databox label {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.address-databox .form-control {
    background: #f9f9f9;
    border-radius: 5px;
    height: 44px;
}

.phone-code .form-control:nth-child(1) {
    flex: 0 0 54px;
    margin-right: 5px;
}

/* Address End  */

/*----  Wishlist Start  ---*/

.wishlist-bar {
    padding: 0 30px;
}

.product-image {
    position: relative;
}

.product-image a {
    display: block;
}

.remove-wishlist {
    position: absolute;
    right: 20px;
    top: 20px;
    border: 0px;
    outline: none !important;
    box-shadow: none !important;
    color: #b30000;
    border-radius: 4px;
    height: 26px;
    width: 26px;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    padding: 0px;
    background: #fff;
}

.item-wishlist {
    font-family: "Jost", sans-serif;
    border-radius: 5px;
    overflow: hidden;
}

.item-wishlist .product-detail-box {
    background: #f9f9f9;
    padding: 12px 15px;
    display: block;
}

.item-wishlist .product-detail-box h5 {
    font-size: 17px;
    margin-bottom: 6px;
}

.item-wishlist .product-detail-box p {
    font-size: 15px;
}

.product-detail-box h5 .deleted-amnt {
    color: #999;
    position: relative;
}

.product-detail-box h5 .deleted-amnt::before {
    background: #999;
    position: absolute;
    top: 12px;
    width: 100%;
    left: 2px;
    content: "";
    height: 1px;
}

.wishlist-cart {
    margin-top: 8px;
    padding: 7px 15px;
    background: #74002f;
    color: var(--white);
    border-radius: 4px;
}

/*----  Wishlist End  ---*/

/* Security Start  */
.pass-form {
    padding: 0 50px;
    font-family: "Jost", sans-serif;
}

.cmn-pass {
    margin-bottom: 20px;
}

.cmn-pass label {
    flex: 0 0 250px;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 0px;
}

.cmn-pass .form-control {
    border-radius: 5px;
    background: #f9f9f9;
    padding: 0 15px;
    height: 44px;
    font-size: 14px;
}

.btn-grp-pass {
    margin-top: 10px;
}

.btn-grp-pass .save-pass {
    border: 0px;
    background: #157c1c;
    border-radius: 5px;
    padding: 8px 15px;
    color: #fff;
    width: fit-content;
    font-size: 14px;
}

.btn-grp-pass .cancel-btn {
    border: 0px;
    background: #936200;
    border-radius: 5px;
    padding: 8px 15px;
    color: #fff;
    margin-right: 15px;
    width: fit-content;
}

/* Security End */

/* Edit Profile Start  */

.address-databox .form-control {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

/* Edit Profile End  */

/*--- Order Details Start  ---*/

.order-detail-wrap {
    padding: 0 50px 30px;
    font-family: "Jost", sans-serif;
}

.order-detail-no,
.order-detail-date {
    font-weight: 500;
    font-size: 15px;
}

.order-address h5,
.ordered-summary h5 {
    margin-bottom: 20px;
}

.order-address address h6 {
    line-height: 26px;
}

.ordered-summary {
    flex: 0 0 300px;
}

.ordered-summary .cart-total {
    background: transparent;
    box-shadow: none;
    padding: 0px;
}

.ordered-summary .cs-total .cart-left h6,
.ordered-summary .gst-add .cart-left h6,
.ordered-summary .ship-cost .cart-left h6,
.ordered-summary .cs-total .cart-right p,
.ordered-summary .gst-add .cart-right p,
.ordered-summary .ship-cost .cart-right p {
    font-size: 16px;
    font-family: "Jost", sans-serif;
    line-height: 26px;
    color: var(--black);
}

.order-detail-products .order-body {
    margin-bottom: 10px;
    border: 1px solid #dedede;
    border-radius: 6px;
    padding: 10px;
}

.ordered-summary .ct-total {
    border-top: 1px solid #dedede;
}

.ordered-summary .ct-total .cart-left h6,
.ordered-summary .ct-total .cart-right p {
    font-size: 16px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
}

/*--- Order Details End  ---*/

/*----  Cart Start  ---*/

.left-cart {
    border-right: 1px solid #dedede;
}

.left-cart .section-title {
    margin-bottom: 20px;
    max-width: 100%;
}

.left-cart .section-title h3 {
    font-size: 24px;
    padding-bottom: 5px;
}

.cart-detail-wrapper {
    background: #f7f7f7;
    padding: 25px 5px;
    border-radius: 8px;
    margin-right: 40px;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}

.cart-card {
    position: relative;
    border-bottom: 2px solid #fff;
    padding: 10px 15px;
}

.cart-card:first-child {
    padding-top: 0px;
}

.cart-card:last-child {
    padding-bottom: 0px;
    border-bottom: 0px;
}

.cart-image {
    border-radius: 5px;
    flex: 0 0 150px;
    height: 160px;
    border: 1px solid var(--red);
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.cart-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.cart-description {
    flex: 0 0 calc(100% - 150px);
    padding-left: 25px;
    font-family: "Poppins", sans-serif;
}

.cart-description .cart-pname {
    font-size: 15px;
    font-weight: 500;
    color: var(--red);
    margin-bottom: 6px;
}

.cart-sprice {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
}

.cartpsize span,
.cart-sku span,
.cart-quantity span {
    font-size: 13px;
    font-weight: 500;
    margin-right: 10px;
}

.cartpsize,
.cart-sku,
.cart-quantity {
    margin-bottom: 6px;
}

.cart-quantity {
    display: flex;
    align-items: center;
}

.cart-sqty {
    border-radius: 20px;
    background: #fff;
    color: #000;
    display: flex;
    padding: 4px 10px;
    align-items: center;
    font-family: "Times New Roman", Times, serif;
}

.cart-sqty button {
    border: 0px;
    padding: 0px;
    background: transparent;
    position: relative;
}

.cart-sqty button.fa-plus::before {
    content: "\F4FE";
    font-family: var(--bs-font);
    color: #272e62;
    font-size: 21px;
    margin-left: 6px;
}

.cart-sqty button.fa-minus::before {
    content: "\F2EA";
    font-family: var(--bs-font);
    color: #272e62;
    font-size: 21px;
    margin-right: 6px;
}

.cart-sqty span {
    padding-left: 8px;
    font-size: 14px;
    font-weight: 500;
}

.cart-sprice .deleted-amnt {
    color: #838383;
    font-weight: 400;
    position: relative;
    margin-left: 5px;
}

.cart-sprice .deleted-amnt::before {
    position: absolute;
    left: 0;
    top: 9px;
    background: #838383;
    content: "";
    width: 100%;
    height: 1px;
}

.remove-cart {
    position: absolute;
    right: 20px;
    top: 10px;
    width: 20px;
    height: 20px;
    line-height: 22px;
    border-radius: 50%;
    text-align: center;
    background: #2e0172;
    font-size: 16px;
}

.remove-cart a {
    color: var(--white);
}

.cart-sprice .saved-amnt {
    font-weight: 400;
    color: #bf3131;
    margin-left: 5px;
}

/* Cart Right Start  */

.right-cart {
    padding-left: 40px;
}

.discount-offer {
    background: linear-gradient(270deg,
            rgb(254, 230, 227) 0%,
            rgb(255, 248, 216) 100%);
    padding: 10px 25px;
    border-radius: 10px;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
    margin-bottom: 15px;
}

.discount-offer h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 7px;
}

.discount-offer p {
    font-size: 13px;
    font-weight: 400;
    padding-left: 15px;
    position: relative;
    line-height: 13px;
    margin-left: 5px;
}

.discount-offer p::before {
    position: absolute;
    left: 0;
    height: 7px;
    width: 7px;
    background: #000;
    top: 50%;
    transform: translateY(-50%);
    content: "";
}

.cart-total {
    background: #f7f7f7;
    border-radius: 10px;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
    padding: 25px 20px 15px;
}

.cs-total,
.ship-cost,
.shop-discount,
.save-total,
.coupon-discount,
.gst-add {
    margin-bottom: 15px;
}

.cs-total .cart-left h6,
.ship-cost .cart-left h6,
.shop-discount .cart-left h6,
.save-total .cart-left h6,
.coupon-discount .cart-left h6,
.gst-add .cart-left h6 {
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    margin-bottom: 0px;
}

.cs-total .cart-right p,
.ship-cost .cart-right p,
.shop-discount .cart-right p,
.save-total .cart-right p,
.coupon-discount .cart-right p,
.gst-add .cart-right p {
    font-size: 13px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    line-height: 13px;
    margin-bottom: 0px;
}

.shop-discount .cart-right p,
.save-total .cart-right p,
.coupon-discount .cart-right {
    color: #2aa95a;
}

.gst-add .cart-right p {
    color: #936200;
}

.ship-cost .cart-right p {
    color: #db81ff;
}

.coupon-discount .cart-right p a {
    font-size: 12px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    line-height: 13px;
    color: #4c179d;
}

.ct-total {
    padding-top: 10px;
    border-top: 1px solid var(--white);
}

.ct-total .cart-left h6 {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.ct-total .cart-right p {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.checkout-btn {
    display: inline-block;
    background: var(--black);
    height: 44px;
    line-height: 44px;
    font-size: 13px;
    color: var(--white);
    width: 100%;
    margin-top: 30px;
    text-align: center;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    transition: all 0.5s;
    text-transform: uppercase;
    font-weight: 500;
}

.checkout-btn span {
    margin-left: 15px;
}

.checkout-btn:hover {
    background: #222;
    color: var(--white);
    transition: all 0.5s;
}

/*----  Cart End  ---*/

/*----  Video Gallery  Start  ---*/

.single-video {
    position: relative;
}

.video-image {
    border-radius: 15px;

    overflow: hidden;

    height: 250px;
}

.video-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;
}

.single-video .play-btn {
    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    font-size: 28px;

    z-index: 9;

    color: var(--red);

    cursor: pointer;
}

.single-video .play-btn:before {
    background: rgba(255, 255, 255, 0.8);

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    content: "";

    width: 60px;

    height: 60px;

    z-index: -1;

    border-radius: 50%;
}

.video-title {
    font-size: 17px;

    color: var(--black);

    padding: 15px 10px 15px;

    text-align: center;
}

.video-title::after {
    background: var(--lime-green);

    position: absolute;

    left: 50%;

    bottom: 0;

    transform: translateX(-50%);

    content: "";

    width: 60px;

    height: 1px;

    z-index: -1;
}

.video-gallery .row {
    grid-row-gap: 30px;
}

/*----  Video Gallery End  ---*/

/*----  Breadcrumb Area Start  ---*/

.breadcum-area {
    padding: 15px 0;

    position: relative;

    margin-top: 0px;
}

.breadcrumb {
    margin-bottom: 0px;
}

.breadcrumb li a:after {
    position: absolute;

    right: 0;

    top: 50%;

    transform: translateY(-50%);

    content: "";

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: var(--red);
}

.breadcrumb-item {
    font-size: 19px;

    position: relative;

    font-family: var(--title);
}

.breadcrumb-item.active {
    padding-left: 15px;
}

.breadcrumb-item:nth-child(1) {
    padding-left: 0px;
}

.breadcrumb-item a {
    color: var(--black);

    font-size: 19px;

    position: relative;

    padding-right: 20px;

    padding-left: 15px;

    font-weight: 500;
}

.breadcrumb-item:nth-child(1) a {
    padding-left: 0px;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: none;
}

/*----  Breadcrumb Area End  ---*/

/*----   About CMS  Start  ---*/

.section-title h6 {
    font-size: 16px;

    text-transform: uppercase;

    padding-left: 80px;

    position: relative;
}

.section-title h6:before {
    position: absolute;

    left: 0;

    top: 60%;

    transform: translateY(-50%);

    height: 1px;

    background: #457858;

    content: "";

    width: 60px;
}

.cmn-right {
    padding: 0 30px;
}

.cmn-right img {
    height: 550px;

    object-fit: cover;

    transition: all 0.5s;

    -webkit-transition: all 0.5s;
}

.cmn-right:hover img {
    transform: scale(0.9);

    transition: all 0.5s;

    -webkit-transition: all 0.5s;
}

.facility {
    background: url(../images/bg-face.jpg);

    background-position: center center;

    background-size: cover;

    background-repeat: no-repeat;

    background-attachment: fixed;

    padding: 120px 0;

    position: relative;
}

.facility:before {
    background: rgba(0, 0, 0, 0.6);

    position: absolute;

    top: 0;

    left: 0;

    content: "";

    height: 100%;

    width: 100%;

    z-index: 1;
}

.face-box {
    z-index: 9;

    position: relative;

    text-align: center;
}

.fb-icon {
    margin: 0 auto 15px;
    background: var(--light-brown);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    text-align: center;
}

.fb-icon img {
    width: auto;
    height: 64px;
    filter: brightness(0.3);
}

.fb-title {
    color: var(--white);

    padding-bottom: 15px;

    position: relative;

    width: fit-content;

    margin: 0 auto 15px !important;
    font-size: 22px;
}

.fb-title:before {
    background: var(--white);

    position: absolute;

    bottom: 0;

    left: 50%;

    transform: translateX(-50%);

    content: "";

    height: 1px;

    width: 70%;
}

.bu-image {
    overflow: hidden;
    height: 450px;
}

.bu-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.fb-content {
    color: var(--white);

    padding: 0 15px;
}

.bu-title {
    color: var(--red);

    font-size: 20px;

    font-weight: 500;

    padding: 15px 0 15px;

    text-align: center;

    position: relative;

    width: fit-content;

    margin: 0 auto;
}

.bu-title:before {
    background: #457858;

    position: absolute;

    bottom: 0;

    left: 50%;

    transform: translateX(-50%);

    content: "";

    height: 1px;

    width: 80px;
}

.bd-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.bd-image img {
    object-fit: cover;
}

.bd-title {
    position: absolute;

    left: 0;

    width: 100%;

    background: linear-gradient(0deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(255, 255, 255, 0) 100%);

    color: var(--white);

    bottom: 0;

    padding: 25px 15px;

    text-align: center;
}

.bd-title h3 {
    padding-bottom: 15px;
}

.data-blog {
    display: flex;
}

.data-blog {
    justify-content: center;
}

.data-blog span {
    padding-left: 15px;

    margin-right: 15px;
}

.data-blog span:last-child {
    margin-right: 0px;
}

.bd-content {
    padding-top: 20px;
}

.bd-tag>h6 {
    font-size: 18px;

    margin-right: 15px;
}

.bd-tag .tag-box a {
    padding: 10px 12px;
    border: 1px solid var(--gray);
    margin-right: 15px;
    margin-bottom: 7px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background: #f7f7f7;
}

.bd-tag .tag-box a:hover {
    background: var(--red);

    border: 1px solid var(--red);

    color: var(--white);

    transition: all 0.5s;

    -webkit-transition: all 0.5s;
}

.bd-tag .tag-box a:hover h6 {
    transition: all 0.5s;

    -webkit-transition: all 0.5s;

    color: var(--white);
}

.bd-tag .tag-box h6 {
    font-size: 14px;

    color: var(--black);
    margin-bottom: 0px;
    transition: all 0.5s;

    -webkit-transition: all 0.5s;
}

.related-bw .blog-image {
    height: 250px;
}

.related-bw .blog-image a {
    display: inline-block;

    height: 100%;

    width: 100%;
}

.related-bw .blog-image a img {
    width: 100%;

    height: 100%;

    object-fit: cover;
}

/*----   About CMS  End  ---*/

/*----     Start  ---*/

.address-modal .modal-dialog {
    max-width: 60%;
}

.modal-dialog .box .form-control {
    border: 1px solid #dedede;
}

.address-modal .card-header {
    border-bottom: 1px solid var(--black);
    color: var(--white);
    background: var(--red);
    border-radius: 0px;
}

.address-modal .modal-content {
    border: 0px;
}

.captcha-image img {
    height: 44px !important;
}

/*----     End  ---*/

/*----  Testimonial Listing   Start  ---*/

.testimonial-list-box {
    text-align: center;
    padding: 40px 50px;
    background: #f7f7f7;
}

.reviewer-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.reviewer-icon img {
    object-fit: cover;
}

.reviewer-detail {
    margin-top: 20px;
}

.reviewer-post p {
    line-height: 24px;
}

.reviewer-detail h6 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
}

.reviewer-detail p {
    color: var(--brown);
    font-weight: 500;
}

.reviewer-post {
    height: 70px;
    overflow-y: scroll;
    padding-right: 15px;
}

.grid-offer .go-box:nth-child(3)>h6 {
    font-size: 17px;
    text-transform: uppercase;
    color: #701414;
    letter-spacing: 1px;
    font-weight: 700;
}

/*----   Testimonial Listing  End  ---*/

/*----  Customize Form Start  ---*/
.cusomize-form .single-input {
    position: relative;
}

.cusomize-form .single-input textarea.form-control {
    height: 180px;
}

.cusomize-form .single-input input[type="file"] {
    padding: 0px;
    height: 44px;
    position: relative;
    padding-left: 30px;
}

.cusomize-form .single-input input[type="file"]::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
    line-height: 44px;
    min-width: 120px;
    content: "Upload Design";
    background: var(--red);
    color: var(--white);
    font-size: 14px;
    padding: 0 15px;
}

.cusomize-form .single-input .form-label {
    color: #000000;
    font-size: 15px;
    font-weight: 500;
}

.cusomize-form {
    background: #f7f7f7;
    padding: 40px 60px;
}

.csf-image {
    height: 100%;
}

.csf-image img {
    object-fit: cover;
}

.customize-order-page .section-title {
    margin: 0 auto 10px;
}

/*----  Customize Form End  ---*/

/*----     Start  ---*/

.item-single .alert-success,
.item-single .login-alert {
    position: absolute;
    right: 20px;
    top: 30px;
    width: calc(100% - 40px);
    background: #4b8762;
    color: var(--white) !important;
    padding: 8px 15px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.item-single .alert-success:after {
    content: "\F270";
    font-family: bootstrap-icons !important;
    position: absolute;
    right: 15px;
    font-size: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.item-single .login-alert:after {
    content: "\F333";
    font-family: bootstrap-icons !important;
    position: absolute;
    right: 15px;
    font-size: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.pd-bottom {
    position: relative;
}

.pd-bottom .login-alert {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    width: calc(100% - 50px);
    background: #4b8762;
    color: var(--white) !important;
    padding: 8px 15px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.shop-discount .remove-coupon {}

.remove-coupon {
    flex: 0 0 1;
}

.coupon-tag {
    flex: 0 0 1;
}

.shop-discount .card-left {
    flex: 0 0 100%;
    order: 2;
}

.order-summary {
    padding-bottom: 0px;
    border-bottom: 0px;
    border-radius: 0px;
}

.card-right {
    flex: 0 0 100%;
    text-align: right;
    padding: 0 1rem 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    border-left: 1px solid rgba(0, 0, 0, 0.125);
    border-right: 1px solid rgba(0, 0, 0, 0.125);
}

/*----     End  ---*/

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    margin-left: 8px;
    background-color: #8b661b;
}

.mobile-filter {
    display: none;
}

.promo-modal .modal-dialog {
    max-width: 50%;
}

.promo-msg {
    padding: 0px;
    position: relative;
    z-index: 1;
}

.promo-msg::before {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    background: url(../images/promo-bg.webp) no-repeat center;
    content: "";
    background-size: cover;
    z-index: -1;
    opacity: 0.7;
}

.pmsg-box {
    padding: 60px 30px;
}

.pmsg-box p {
    line-height: 25px;
    padding-left: 25px;
    position: relative;
}

.promo-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.btn-brown {
    background: var(--black);
    color: var(--white);
    border-radius: 0px;
    padding: 0 25px;
    height: 44px;
    line-height: 44px;
}

.btn-brown:hover {
    color: #fff;
}

.promo-modal {
    background: rgb(0 0 0 / 85%);
}

.winput .form-control {
    height: 48px;
    padding: 0 15px;
    line-height: 48px;
    border: 1px solid #ccc;
    color: #000;
    border: 0px !important;
    background: #fff;
}

.winput .input-group-text {
    background: var(--lime-green);
    color: #fff;
    flex: 0 0 44px;
    padding: 0px;
    justify-content: center;
    border: 0px;
    font-size: 21px;
}

.pmsg-box p span {
    color: #000;
    position: absolute;
    left: 0;
    top: 5px;
    display: flex;
    width: 20px;
    height: 20px;
    font-size: 20px;
}

.delete-price {
    color: #ccc;
    text-decoration: line-through;
}

.filter-bottom {
    display: none !important;
}

.pagination .page-link {
    padding: 0px;
}

.pagination .page-link a {
    width: 100%;
    min-width: 36px;
    padding: 0px;
    color: #000;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 36px;
    padding: 0 8px;
}

.user-account ul li .qc-wrapper .qc-price span {
    position: relative;
    left: auto;
    top: auto;
    min-width: auto;
    min-height: auto;
    right: auto;
    background: #fff;
    color: #000;
    font-size: 14px;
}

.qc-product-image img {
    width: 100% !important;
    height: 100% !important;
}

.policy-check {
    padding: 15px 15px;
}

.shipping_region {
    height: 22px;
}

.sr-row {
    row-gap: 15px;
}

.cms-cover .section-title {
    max-width: 100%;
    margin: 0;
}

/*=== Address Selection Start === */

/*--- Shipping Address Start --- */
.shipping-address {
    font-family: "Poppins", sans-serif;
}

.shipping-address h5 {
    font-size: 18px;
    font-weight: 600;
}

.shipping-selection .custom-label {
    margin-bottom: 15px;
}

.shipping-selection .custom-label:last-child {
    margin-bottom: 0px;
}

.custom-label {
    margin: 0px;
    padding: 0px;
    width: 100%;
}

.custom-label input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.custom-label .address-box {
    font-family: "Poppins", sans-serif;
    background: #f4f4f7;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #f4f4f7;
    position: relative;
}

.custom-label input[type="radio"]:checked+.address-box {
    background: #e6e9ff;
    border: 1px solid #001299;
}

.custom-label .address-box .ship-name {
    font-size: 14px;
    font-weight: 600;
    color: #272e62;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.address-box .ship-street-home {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 350px;
}

.address-box p {
    margin-bottom: 7px;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
}

.address-box .ship-contact,
.address-box .ship-address-type,
.address-box .ship-landmark {
    font-weight: 600;
    font-size: 13px;
}

.address-box .ship-landmark {
    line-height: normal;
}

.address-box .ship-landmark span {
    font-weight: 500;
}

.address-box .ship-contact {
    margin: 15px 0 12px;
    line-height: 26px;
}

.address-box .ship-contact span,
.address-box .ship-address-type span {
    margin-left: 8px;
}

.address-box .ship-address-type span {
    color: #157c1c;
}

.edit-address,
.delete-address {
    position: absolute;
    color: #001299;
    top: 17px;
}

.delete-address {
    right: 20px;
    overflow: hidden;
    border: 0px;
    background: transparent;
    padding: 0px;
}

.edit-address {
    right: 50px;
    font-size: 13px;
    font-weight: 600;
    background: transparent;
    border: 0px;
}

.edit-address:hover,
.delete-address:hover {
    color: #272e62;
}

.delete-address:hover {
    overflow: visible;
}

.delete-address span {
    background: #000;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    position: absolute;
    top: -3px;
    right: 20px;
    width: 120px;
    opacity: 0;
    border-radius: 4px;
    transition: all 0.5s;
}

.delete-address:hover span {
    opacity: 1;
    transition: all 0.5s;
}

.add-ship-address {
    background: #f4f4f7;
    color: #939393;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    width: 100%;
    padding: 15px 20px;
    margin-top: 15px;
    border: 0px;
    text-align: left;
}

.add-ship-address span {
    position: absolute;
    right: 20px;
    top: 11px;
    width: 30px;
    height: 30px;
    line-height: 32px;
    border-radius: 50%;
    color: #272e62;
    font-size: 24px;
    box-shadow: 2px 3px 7px 0 rgb(191 191 191 / 50%),
        -7px -7px 10px 0px rgb(255 255 255);
    text-align: center;
    background: #f4f4f7;
}

.shipping-selection .custom-label input:checked+.address-box::after {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #514ebb;
    color: #fff;
    width: 22px;
    height: 22px;
    line-height: 24px;
    border-radius: 50%;
    content: "\F272";
    font-family: bootstrap-icons !important;
    font-size: 16px;
    text-align: center;
}

.adding-ship {
    margin-top: 15px;
}

.payment-wrap {
    position: relative;
}

.payment-wrap .form-control {
    background: #f4f4f7;
    height: 52px;
    line-height: 56px;
    padding: 0 20px;
    border-radius: 7px;
    font-size: 14px;
    flex: 0 0 80%;
}

.selected-district,
.selected-state {
    background: #f4f4f7;
    height: 52px;
    line-height: 56px;
    padding: 0 20px;
    border-radius: 7px;
    font-size: 14px;
    margin-bottom: 15px;
}

.payment-wrap .checkout-btn {
    width: fit-content;
    margin: 0px;
    border: 0px;
    outline: none !important;
    flex: 0 0 18%;
    height: 52px;
    line-height: 52px;
}

.ship-address {
    flex: 0 0 100%;
}

.ship-address .form-control {
    margin-bottom: 15px;
}

.ship-address .form-select {
    background: #f4f4f7;
    height: 52px;
    line-height: 52px;
    padding: 0 20px;
    border-radius: 7px;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 400;
    border: 0px;
    outline: none !important;
}

.btn-group {
    margin-top: 15px;
}

.btn-group .pincode-reset,
.btn-group .checkout-btn {
    padding: 0 25px;
    height: 44px;
    line-height: 44px;
}

.btn-group .pincode-reset {
    outline: none !important;
    border: 0px;
    background: #bf3131;
    margin-right: 10px;
}

.empty_error {
    border: 1px solid #bf3131 !important;
}

.reset-pin {
    position: relative;
    margin-top: 15px;
}

.reset-pin .pincode-reset {
    color: #bf3131;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    background: transparent;
    border: 0px;
    padding: 0 22px;
    line-height: 24px;
}

.reset-pin::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "\F130";
    font-family: var(--bs-font);
    color: #bf3131;
    font-size: 20px;
    line-height: 20px;
}

/*--- Shipping Address End --- */

/*--- Billing Address Start --- */

/*--- Billing Address Start --- */
.checkout-left {
    padding-right: 120px;
}

.billing-address {
    font-family: "Poppins", sans-serif;
}

.billing-address h5 {
    font-size: 18px;
    font-weight: 600;
}

.billing-selection .billing-label {
    margin-bottom: 15px;
}

.billing-selection .billing-label input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.billing-selection .billing-label .address-box {
    background: #f4f4f7;
    padding: 15px 20px;
    border-radius: 10px;
    position: relative;
}

.billing-selection .billing-label input[type="radio"]+.address-box::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    border-radius: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    right: 20px;
}

.billing-selection .billing-label input[type="radio"]:checked+.address-box::before,
.billing-selection .billing-label input[type="radio"]:checked+.address-box::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    border-radius: 50%;
}

.billing-selection .billing-label input[type="radio"]:checked+.address-box::before {
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    right: 20px;
}

.billing-selection .billing-label input[type="radio"]:checked+.address-box::after {
    width: 10px;
    height: 10px;
    background: #000;
    right: 25px;
}

.billing-address-form {
    margin-top: 25px;
    display: none;
}

.billing-address-form input {
    background: #f4f4f7;
    height: 52px;
    line-height: 56px;
    padding: 0 20px;
    border-radius: 7px;
    font-size: 14px;
}

.billing-address-form input:focus {
    background: #f4f4f7;
    color: #272e62;
}

.billing-address-form input:valid,
.billing-address-form input:focus {
    padding-top: 10px;
}

.billing-databox {
    position: relative;
}

.billing-databox label {
    position: absolute;
    top: 17px;
    line-height: 13px;
    left: 20px;
    font-size: 14px;
    transition: transform 0.3s, font-size 0.3s;
    pointer-events: none;
    color: #878787;
    font-weight: 400;
    margin-bottom: 0px;
}

.billing-databox input:focus+label,
.billing-databox input:valid+label {
    transform: translateY(-8px);
    font-size: 9px;
    line-height: 10px;
    font-weight: 400;
}

.pcp-wrap .billing-databox:nth-child(1) {
    flex: 0 0 70px;
    margin-right: 20px;
}

.pcp-wrap .billing-databox:nth-child(2) {
    flex: 0 0 calc(100% - 90px);
    margin-right: 20px;
}

.pcp-wrap .billing-databox:nth-child(1) input[type="text"]:disabled {
    background: #f4f4f7;
}

.sm-msg {
    font-size: 12px;
    margin-top: 4px;
    font-weight: 400;
}

/*--- Billing Address End --- */

/* Payment Start */

.payment-label {
    position: relative;
}

.payment-label input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-label .address-box {
    background: #f4f4f7;
    padding: 15px 20px;
    border-radius: 10px;
    position: relative;
    font-size: 15px;
    color: #000;
    font-weight: 500;
    text-transform: capitalize;
}

.payment-label input[type="radio"]+.address-box::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    border-radius: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    right: 20px;
}

.payment-label input[type="radio"]:checked+.address-box::before,
.payment-label input[type="radio"]:checked+.address-box::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    border-radius: 50%;
}

.payment-label input[type="radio"]:checked+.address-box::before {
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    right: 20px;
}

.payment-label input[type="radio"]:checked+.address-box::after {
    width: 10px;
    height: 10px;
    background: #000;
    right: 25px;
}

.online-paybtn {
    margin-top: 15px;
}

/* Payment End */

/* WhatsApp Update Start  */

.whatsapp-update {
    position: relative;
}

.whatsapp-update .form-check-input {
    position: absolute;
    left: 20px;
    top: 26px;
    z-index: 1;
    border-radius: 5px;
    border: 2px solid #272e62;
    background: transparent;
    width: 18px;
    height: 18px;
}

.whatsapp-update .form-check-input:checked {
    background-color: #272e62;
    background-image: none;
}

.whatsapp-update .form-check-input:checked::before {
    position: absolute;
    left: 0px;
    top: -2px;
    color: var(--white);
    content: "\F272";
    font-family: bootstrap-icons !important;
}

.whatsapp-update .form-check-label {
    position: relative;
    background: #d2eddc;
    padding: 25px 20px;
    border-radius: 15px;
}

.whatsapp-update .form-check-label h6 {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 0 3px 28px;
    line-height: 14px;
}

.whatsapp-update .form-check-label p {
    font-size: 13px;
    font-weight: 500;
    color: #606060;
    line-height: 18px;
    margin-top: 8px;
}

.wp-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: center;
    border-radius: 4px;
    font-size: 20px;
}

.billing-wp {
    display: none;
}

.btn-checkout {
    border-radius: 10px !important;
}

/* WhatsApp Update End  */

/* Order Summery Start  */
.check-out-main {
    position: relative;
    z-index: 1;
}

.check-out-main::before {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: #f9f9fa;
    content: "";
    z-index: -1;
}

.checkout-order-summary {
    padding-left: 60px;
    font-family: "Poppins", sans-serif;
}

.checkout-order-summary h5 {
    font-size: 20px;
    font-weight: 500;
}

.checkout-order-cart .cart-card {
    border-bottom: 1px solid rgb(0 0 0 / 11%);
    padding: 30px 0px;
}

.checkout-order-cart .cart-card:first-child {
    padding-top: 0px;
}

.delivery-date {
    margin-top: 15px;
    margin-bottom: 10px;
}

.delivery-date p {
    color: #007440;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
}

.size-quantity-wrapper .cartpsize {
    margin-right: 5px;
}

.checkout-order-summary .cart-total {
    margin-top: 30px;
    box-shadow: none;
    padding: 0px;
    background: transparent;
}

.checkout-order-summary .cart-total .ct-total {
    border-top: 1px solid rgb(0 0 0 / 11%);
    margin-top: 20px;
    padding-top: 20px;
}

.checkout-order-summary .cs-total .cart-left h6,
.checkout-order-summary .ship-cost .cart-left h6,
.shop-discount .cart-left h6,
.checkout-order-summary .save-total .cart-left h6,
.checkout-order-summary .coupon-discount .cart-left h6,
.checkout-order-summary .gst-add .cart-left h6 {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
}

.checkout-order-summary .ct-total .cart-left h6 {
    text-transform: uppercase;
}

/* --- Order Summery End --- */

/* Help Box Start  */

.need-help {
    text-align: center;
    max-width: 70%;
    margin: 50px auto 0;
}

.need-help h6 {
    color: #3346a9;
    margin-bottom: 16px;
}

.need-help p {
    color: #000;
    font-size: 13px;
    font-weight: 500;
    line-height: 23px;
    margin-bottom: 16px;
}

.help-media li {
    margin-right: 15px;
}

.help-media li:last-child {
    margin-right: 0px;
}

.help-media li a {
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
}

/* Help Box End */

/*==== Address Selection End =====*/


.item-single.out_of_stock::before {
    position: absolute;
    left: 0;
    top: 0;
    content: 'Out Of Stock';
    background: #af0000;
    color: var(--white);
    padding: 5px 10px;
    z-index: 9;
}

.cart-linker-mob {
    display: none;
}

.wp_validation_error:empty {
    display: none;
}

.wp_validation_error {
    flex: 0 0 100%;
    padding: 7px 0;
    margin: 0;
    color: #810034;
    font-size: 16px;
    font-weight: 500;
}

.wp_success {
    color: #157c1c;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
}

.get_signup .form-control::placeholder {
    color: #000;
}

.sign-image {
    height: 100%;
}

.form-label {
    font-weight: 500;
    font-family: var(--heading);
    font-size: 16px;
}

.need-help-mob {
    display: none;
}

.pagination {
    margin-bottom: 15px;
}

.bd-content p:empty {
    display: none;
}

.blog-detail {
    padding: 20px 0;
}

.btn.submit {
    background: var(--maroon);
    color: var(--white);
    padding: 10px 30px;
}

.btn.submit_btn {
    background: var(--maroon);
    color: var(--white);
    padding: 10px 30px;
}

.cpacha_reload {
    padding: 10px 30px;
    background: #c34b7c;
    color: var(--white);
    border: 0px;
}

#captcha {
    width: auto;
}

.form-comment .btn.submit {
    padding: 0 25px;
}

.bd-content p br {
    display: none;
}

.b-btn-g {
    row-gap: 10px;
}

.cusomize-form .single-input {
    margin-bottom: 15px;
}

.c-btn-g {
    column-gap: 10px;
}

.qc-prduct-details h6 {
    color: var(--black) !important;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

.quick-cart {
    position: relative;
    margin-bottom: 15px;
}

.qc-quantity {
    position: absolute;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    top: 3px;
    left: 0px;
    background: var(--white);
    font-family: math;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50%;
}

.qc-buttons a:nth-child(1) {
    display: none;
}

.payment-wrap .reset-pin::before {
    left: auto;
    right: -30px;
}