/*---Global-CSS----*/
body {
    line-height: 25px;
    color: #000;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background-color: #fff;
    position: relative;
    overflow-x: hidden;
}

.primary-bg {
    background-color: #000;
}

.secondary-bg {
    background-color: #fff;
}

.third-bg {
    background-color: #f7f7f7;
}

.color-white {
    color: #fff !important;
}

.color-black {
    color: #000 !important;
}

a {
    text-decoration: none;
}

ul {
    padding: 0;
}

    ul li {
        list-style: none;
    }

.fw-3 {
    font-weight: 300;
}

.fw-4 {
    font-weight: 400;
}

.fw-5 {
    font-weight: 500;
}

.fw-6 {
    font-weight: 600;
}

.fw-7 {
    font-weight: 700;
}

img {
    max-width: 100%;
}

.fs-15 {
    font-size: 15px;
}

.fs-14 {
    font-size: 14px;
}

.fs-24 {
    font-size: 24px;
}

.fs-30 {
    font-size: 30px;
}

.fs-18 {
    font-size: 18px;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-13 {
    font-size: 13px;
}

.fs-16 {
    font-size: 16px;
}

.fs-32 {
    font-size: 32px;
}

button:focus {
    outline: none;
}

.btn-primary {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
    padding: 3px 15px;
    font-weight: 500;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #000000;
        border-color: #000000;
    }

@media(min-width: 1800px) {
    .container-lg {
        max-width: 1800px;
    }
}

.heading h2 {
    letter-spacing: 1px;
}
/*---Header-CSS----*/
.nav-toggle .Black-Logo {
    display: block;
    max-width: 135px;
}

.header-middle-section .d-flex {
    justify-content: space-evenly;
    align-items: center;
}

.header-social-right ul li {
    padding: 0 8px;
}

.header-social-right .icon-search-1 {
    height: 26px;
    width: 26px;
}

.header-social-right .icon-wishlist {
    height: 22px;
    width: 22px;
}

.header-social-right .icon-cart {
    height: 24px;
    width: 24px;
}

.header-menu ul {
    justify-content: center;
    align-items: center;
}

.header-social-right span {
    background-color: #000000;
    min-width: 14px;
    color: #ffffff;
    text-align: center;
    border-radius: 20px;
    padding: 4px;
    height: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -7px;
    left: 100%;
    font-size: 10px;
    margin-left: -4px;
}

.mega-menu-layout {
    z-index: 999;
    left: 0;
    right: 0;
    transition: 0.3s all ease-in-out;
    width: 100%;
    display: none;
    top: 72px;
    border-top: 1px solid #ddd;
    box-shadow: 0px 3px 4px #cccccc38;
    background-color: #fffffff2;
}

.header-menu ul li:hover .mega-menu-layout {
    display: block;
    transition: 0.3s all ease-in-out;
}

.header-middle-section .mega-menu-details.d-flex {
    justify-content: space-evenly;
    align-items: start;
}

.dropdown-search input {
    background-color: #fff;
    border: none;
    padding: 6px 40px 6px 20px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

.dropdown-search form {
    width: 60%;
    margin: 0 auto;
}

.dropdown-search button {
    background-color: transparent;
    border: none;
    padding: 0;
    right: 14px;
    top: 7px;
}

.cart-popup-detail {
    justify-content: space-around;
}

.cart-popup-img {
    height: 100px;
    width: 80px;
    margin-right: 10px;
    padding: 5px 10px;
    overflow: hidden;
}

.cart-popup-description {
    width: 230px;
}

.cart-popup-total {
    border-top: 1px solid #ddd;
}

.offcanvas-header {
    border-bottom: 1px solid #ddd;
}

.cart-popup-total, .cart-popup-btn {
    justify-content: space-between;
}

    .cart-popup-btn a:first-child {
        margin-right: 10px;
    }

.cart-popup-detail {
    justify-content: space-around;
    border-bottom: 1px solid #ddd;
}

    .cart-popup-detail:last-child {
        border: none;
    }

.empty-cart {
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
}

    .empty-cart h5 {
        margin-top: 10px;
        font-size: 30px;
        font-weight: 400;
    }

/*---Mobile-header-CSS--*/
.header-new-mobile-menu {
    width: 100%;
    height: 100vh;
}

#header-mobile-menu-new li {
    padding: 0 10px 0 10px;
}

#header-mobile-menu-new ul {
    padding: 60px 0px 20px;
    margin-bottom: 0;
    transition: transform 0.3s;
    -webkit-transition: transform 0.3s;
}

.header-close-menu {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 1;
    padding: 10px 25px;
    background-color: #fff;
}

#header-mobile-menu-new ul .header-mobile-extra-menu li a {
    text-transform: capitalize;
    padding: 5px 10px;
}

.header-new-mobile-menu {
    left: -100%;
    visibility: hidden;
    width: 100%;
    height: 100vh;
    position: fixed !important;
    top: 0;
    z-index: 2222;
    transition: 0.3s all ease-in-out;
}

    .header-new-mobile-menu.show-new-menu {
        left: 0;
        visibility: visible;
    }

.nav-wrapper {
    position: fixed;
    width: 100%;
    height: 100vh;
    transition: transform 0.3s;
    transform: translateX(-100%);
    top: 0;
    z-index: 10987;
}

    .nav-wrapper.show-menu {
        transform: none;
    }

    .nav-wrapper.show-menu {
        overflow: hidden;
    }

#header-mobile-menu-new {
    position: fixed;
    left: 0px;
    top: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: none;
    background-color: #fff;
}

    #header-mobile-menu-new .nav-toggle {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 0;
        background-color: #fff;
        z-index: 22;
        cursor: pointer;
        padding: 10px 23px 10px 20px;
        font-size: 16px;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        #header-mobile-menu-new .nav-toggle.back-visible .nav-back {
            opacity: 1;
            display: block;
            z-index: 22;
        }

    #header-mobile-menu-new .nav-back {
        display: inline-block;
        position: relative;
        z-index: 1;
        opacity: 0;
        transition: opacity 0.2s;
        display: none;
        width: 40px;
    }

.nav-close {
    width: 40px;
    text-align: right;
}

#header-mobile-menu-new ul ul {
    position: absolute;
    top: 0;
    width: 100%;
    display: none;
}

#header-mobile-menu-new li {
    display: block;
}

    #header-mobile-menu-new li.has-dropdown > a {
        overflow: hidden;
        position: relative;
        display: block;
    }

        #header-mobile-menu-new li.has-dropdown > a:after {
            background: url(https://d3o59fu9acgbkr.cloudfront.net/jrc2021/assets/v2/master/img/svg/menu-new-arrow.svg) center no-repeat;
            background-size: auto;
            content: '';
            height: 13px;
            transition: 200ms;
            width: 7px;
            position: absolute;
            right: 18px;
        }

    #header-mobile-menu-new li.nav-dropdown-open > ul {
        top: 0;
        left: 100%;
        display: block;
    }

#header-mobile-menu-new ul li a {
    color: #000;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    display: block;
}

#header-mobile-menu-new ul li.size-text ul li a {
    text-transform: lowercase;
}

#header-mobile-menu-new ul .header-mobile-extra-menu a {
    text-transform: capitalize;
    padding: 7px 10px;
    font-weight: 300;
}

#header-mobile-menu-new .nav-logo {
    display: none;
}

.show-menu #header-mobile-menu-new .nav-logo {
    display: block;
}

    .show-menu #header-mobile-menu-new .nav-logo img {
        max-width: 150px;
    }

#header-mobile-menu-new .nav-toggle.back-visible .nav-logo {
    display: none;
}

#header-mobile-menu-new .has-dropdown.close-dropdown {
    display: none;
}

.header-middle-section {
    box-shadow: 0px 1px 8px #ccccccb0;
}

.header-logo img {
    max-width: 200px;
}

.header-social-right a {
    cursor: pointer;
}

.header-social-right ul.dropdown-menu {
    padding: 10px;
    min-width: 200px;
    border-radius: 0;
}

    .header-social-right ul.dropdown-menu li a {
        display: block;
        color: #000;
        padding: 8px 20px;
        border-bottom: 1px solid #ddd;
    }

    .header-social-right ul.dropdown-menu li:last-child a {
        border-bottom: none;
    }
/*Wishlist start*/
#WishlistPopup p.btn_add {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    margin: 0;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
}

#WishlistPopup .add_new input {
    font-size: 12px;
    height: 42px;
}

.icon-round {
    background: #fff;
    border-radius: 50%;
    height: 33px;
    width: 33px;
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 5px;
}

.favourite_items .right {
    transform: rotate(270deg) scale(1.38);
    display: flex;
    align-content: stretch;
    flex-wrap: nowrap;
    flex-direction: row;
}
/*Wishlist end*/
@media(max-width:991px) {
    .header-menu {
        display: none;
    }

    .header-social-right ul li:first-child {
        display: none;
    }

    .header-social-right ul li {
        padding: 0 5px;
    }

    .header-logo {
        position: absolute;
        left: 46px;
    }

    .js-nav-toggle img {
        height: 15px;
    }

    .header-social-right .icon-search-1, .header-social-right .icon-wishlist, .header-social-right .icon-cart {
        height: 20px;
        width: 20px;
    }

    .header-middle-section {
        padding: 12px 0;
    }

    .offcanvas-end {
        width: 100%;
        border-left: none;
    }

    .dropdown-search form {
        width: 100%;
    }

    .header-logo img {
        max-width: 150px;
    }

    .header-middle-section .d-flex {
        justify-content: space-between;
    }
}

@media only screen and (max-width:991px) and (min-width:768px) {
    .cart-popup-description {
        width: 650px;
    }
}

@media only screen and (max-width:1200px) and (min-width:992px) {
    .header-menu ul li a {
        padding: 10px 7px !important;
        font-size: 13px;
    }

    .header-social-right ul li {
        padding: 0 5px;
    }
}
/*---footer----*/
.footer-top {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

    .footer-top .footer-top-align {
        justify-content: space-evenly;
    }

.footer-content {
    padding-right: 60px;
    border-right: 1px solid #ddd;
}

    .footer-content:last-child {
        padding-right: 0;
        border: none;
    }

.footer-top .footer-newsletter input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #000;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    width: 80%;
    margin-right: 6px;
}

.footer-top .footer-newsletter input {
    outline: none;
}

.footer-top .footer-newsletter a {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #000;
}

.footer-social-icons .d-flex {
    justify-content: left;
    align-items: start;
}

.footer-social-icons ul li {
    margin-right: 15px;
}

.footer-payment-details .d-flex {
    justify-content: left;
}

.footer-payment-details ul {
    text-align: right;
    float: right;
}

    .footer-payment-details ul li img {
        height: 30px;
        margin-right: 20px;
    }

.footer-content h5 button {
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: default;
}

.footer-payment-details ul li:last-child img {
    margin-right: 0;
}

.footer-content .accordion-button::after {
    display: none;
}

.footer-content .accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
    box-shadow: none;
}
/*---list-global--*/
.percent-discount-listing span {
    color: #CF7B69;
}

.percent-discount-listing {
    justify-content: space-between;
    position: absolute;
    top: -24px;
    width: 100%;
}

.product-view {
    background-color: rgba(0, 0, 0, 0.6);
    left: 0;
    right: 0;
    text-align: center;
    bottom: 0px;
    padding: 5px 10px;
    transition: 0.3s all ease-in-out;
    opacity: 0;
}

.product-listing-img:hover .product-view {
    opacity: 1;
    bottom: 0;
    transition: 0.3s all ease-in-out;
}

.product-listing-img .wishlist-section {
    background-color: rgba(0, 0, 0, 0.5);
    display: block;
    height: 30px;
    width: 30px;
    border-radius: 100%;
    text-align: center;
    padding-top: 3px;
    right: 12px;
    top: 25px;
}

@media (min-width: 992px) {
    .footer-top .collapse.dont-collapse-sm {
        display: block;
        height: auto !important;
        visibility: visible;
    }
}

@media (max-width:991px) {
    .footer-top .footer-top-align {
        display: block !important;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-payment-details ul li img {
        margin-right: 10px;
    }

    .footer-payment-details ul {
        float: none;
        text-align: center;
    }

    .footer-content ul {
        margin-bottom: 0;
    }

    .footer-content h5 button {
        cursor: pointer;
    }

    .footer-content {
        padding-right: 0px;
        border-right: none;
        margin-bottom: 30px;
    }

    .footer-top .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        transform: rotate(-180deg);
    }

    .footer-content .accordion-button::after {
        display: block;
    }

    .footer-newsletter p,
    .footer-newsletter form {
        width: 100% !important;
        margin-bottom: 30px;
    }

        .footer-newsletter form input {
            width: 90%;
        }

    .product-view {
        opacity: 1;
    }
}

@media(max-width:767px) {
    .footer-payment-details .d-flex {
        justify-content: center;
    }

    .fs-32 {
        font-size: 22px;
    }

    .fs-18 {
        font-size: 16px;
    }
}

.White-Logo {
    display: none;
}
/*common-css*/
.discount-text-percentage {
    font-size: 14px !important;
    color: red !important;
    font-weight: 600 !important;
    margin-left: 15px;
}

.slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

    .slick-dots li button {
        background-color: transparent;
        border: none;
        font-size: 0;
        background-color: #f2f2f2;
        height: 13px;
        width: 13px;
        border-radius: 100%;
        padding: 0;
        border: 2px solid #000;
        margin: 0 5px;
    }

    .slick-dots li.slick-active button {
        background-color: #000;
    }
/*---product-breadcrumb---*/

.fs-10 {
    font-size: 10px;
}

.product-breadcrumb li {
    position: relative;
    margin: 0 5px;
}

    .product-breadcrumb li::after {
        content: ".";
        font-size: 26px;
        display: inline-block;
        line-height: 0;
        position: absolute;
        top: 7px;
        right: -7px;
    }

    .product-breadcrumb li:last-child::after {
        display: none;
    }

.product-breadcrumb a {
    margin: 0 6px;
}

.product-breadcrumb span {
    margin: 0 6px;
    font-weight: 500;
}

.product-banner-heading h1 {
    font-size: 36px;
    letter-spacing: 1px;
}

@media(max-width:767px) {
    .product-breadcrumb .px-3 {
        padding-right: 0 !important;
    }

    .heading h2 {
        font-size: 20px;
    }

    .product-banner-heading h1 {
        font-size: 30px;
    }

    .order1 {
        order: 1;
    }

    .order2 {
        order: 2;
    }
}

@media(max-width:1200px) {
    html {
        overflow-x: hidden;
    }
}

.load-more a svg {
    margin-right: 6px;
    margin-top: -3px;
}
