:root {
    --white-light: rgba(255, 255, 255, 0.3);
    --white-light2: rgba(207, 207, 207, 0.3);
    --alice-blue: #f8f9fa;
    --base-color: #F77FBE;
    --gray: #ededed;
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #F77FBE;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #F77FBE;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-base-tow: #fff;
}


/*------------------------------------------
------- import fonts
--------------------------------------------*/

@font-face {
    font-family: 'IRANSansWeb';
    src: url(../fonts/IRANSansWeb.eot);
    src: url(../fonts/IRANSansWeb.eot#iefix) format('embedded-opentype'), url(../fonts/IRANSansWeb.woff2) format('woff2'), url(../fonts/IRANSansWeb.woff) format('woff'), url(../fonts/IRANSansWeb.ttf) format('truetype'), url(../fonts/IRANSansWeb.svg#IRANSansWeb) format('svg')
}

@font-face {
    font-family: 'IRANSansWebFaNum';
    src: url(../fonts/fonts/eot/IRANSansWebFaNum.eot);
    src: url(../fonts/fonts/eot/IRANSansWebFaNum.eot) format('embedded-opentype'), url(../fonts/fonts/woff2/IRANSansWebFaNum.woff2) format('woff2'), url(../fonts/fonts/woff/IRANSansWebFaNum.woff) format('woff'), url(../fonts/fonts/ttf/IRANSansWebFaNum.ttf) format('truetype'), url(../fonts/fonts/eot/IRANSansWebFaNum.svg) format('svg')
}


/*------------------------------------------------*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'IRANSansWebFaNum';
}

body {
    font-family: 'IRANSansWebFaNum', 'IRANSansWeb', 'Hind', sans-serif;
    background-color: var(--bs-base-tow) !important;
    overflow-x: hidden;
}

.bg-base {
    background-color: #eff6fa;
}

.header-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* background-color: yellowgreen; */
    justify-content: center;
    align-items: center;
    align-content: center;
    align-self: center;
    height: 70px;
}

.hamburger-toggle {
    display: flex;
    flex-direction: column;
    width: 40px;
    cursor: pointer;
}

.hamburger-toggle span {
    background: var(--base-color);
    border-radius: 2px;
    height: 3px;
    margin: 3px 0;
    transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.hamburger-toggle span:nth-of-type(1) {
    width: 50%;
}

.hamburger-toggle span:nth-of-type(2) {
    width: 100%;
}

.hamburger-toggle span:nth-of-type(3) {
    width: 75%;
}

.hamburger-toggle input[type="checkbox"] {
    display: none;
}

.hamburger-toggle input[type="checkbox"]:checked~span:nth-of-type(1) {
    display: none;
}

.hamburger-toggle input[type="checkbox"]:checked~span:nth-of-type(2) {
    transform-origin: top;
    transform: translate(0px, 5px) rotatez(45deg);
    background: var(--bs-danger);
    width: 90%;
}

.hamburger-toggle input[type="checkbox"]:checked~span:nth-of-type(3) {
    transform-origin: bottom;
    width: 90%;
    transform: translate(0px, -5px) rotatez(-45deg);
    background: var(--bs-danger);
}

.navbar-top {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    background-color: var(--bs-white);
}

.navbar-nav .nav-item {
    display: block;
    padding: 5px 15px 5px;
    border-right: 1px dashed rgba(5, 190, 236, 0.2);
}

.navbar-nav .nav-item:first-child {
    border-right: none;
}

.navbar-nav .nav-item .nav-link {
    text-decoration: none;
    cursor: pointer;
    color: var(--bs-gray) !important;
    font-family: 'IRANSansWebFaNum';
    font-size: 15px;
    font-weight: 500;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--base-color) !important;
}

.mega-content h5 {
    border-bottom: 1px solid rgba(5, 5, 5, 0.05);
    padding-bottom: 5px;
    font-family: 'IRANSansWebFaNum';
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.30);
}

.mega-img {
    display: none;
}

.mega-content .list-group .list-item,
.navbar-nav .nav-item .dropdown-menu .dropdown-item {
    font-family: 'IRANSansWebFaNum';
    font-size: 13px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.60);
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding: 2px 0px;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.mega-content .list-group .list-item::before,
.navbar-nav .nav-item .dropdown-menu .dropdown-item::before {
    content: "\f0a5";
    position: absolute;
    right: 0px;
    font-family: 'Font Awesome 5 Free';
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.img-menu {
    width: 100%;
    max-height: 300px;
}

.navbar-nav .nav-item .dropdown-menu .dropdown-item::before {
    right: 5px !important;
}

.mega-content .list-group .list-item:hover,
.mega-content .list-group .list-item:focus,
.mega-content .list-group .list-item:active {
    color: var(--base-color);
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
}

.navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.navbar-nav .nav-item .dropdown-menu .dropdown-item:focus,
.navbar-nav .nav-item .dropdown-menu .dropdown-item:active {
    color: var(--base-color);
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
    background-color: transparent;
}

.mega-content .list-group .list-item:hover::before,
.mega-content .list-group .list-item:focus::before,
.navbar-nav .nav-item .dropdown-menu .dropdown-item:hover::before,
.navbar-nav .nav-item .dropdown-menu .dropdown-item:focus::before {
    opacity: 1;
    visibility: visible;
}

.logo-box img {
    width: 160px;
    height: 55px;
    margin: 5px;
}

.search-box {
    height: 50px;
    background: var(--bs-white);
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #ebebeb;
    max-width: 500px;
}

.search-btn {
    background: none;
    border: none;
    outline: none;
    color: var(--base-color);
}

.search-box form input {
    background: none;
    border: none;
    outline: none;
    width: 400px;
    color: var(--base-color);
}

.search-box form input:focus {
    background: none;
    border: none;
    outline: none;
}

.info-box {
    position: absolute;
    display: flex;
    left: 2%;
    align-items: center;
    /* z-index: 9999; */
}

.info-box .account-section {
    padding: 10px 10px;
    margin-left: 5px;
    border-radius: 0.50rem;
    cursor: pointer;
    border: none;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(59, 152, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(59, 152, 255, 0.3);
    }
    70% {
        -webkit-box-shadow: 0 0 0 20px rgba(4, 169, 245, 0);
        box-shadow: 0 0 0 20px rgba(4, 169, 245, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(4, 169, 245, 0);
        box-shadow: 0 0 0 0 rgba(4, 169, 245, 0);
    }
}

@keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(59, 152, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(59, 152, 255, 0.3);
    }
    70% {
        -webkit-box-shadow: 0 0 0 20px rgba(4, 169, 245, 0);
        box-shadow: 0 0 0 20px rgba(4, 169, 245, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(4, 169, 245, 0);
        box-shadow: 0 0 0 0 rgba(4, 169, 245, 0);
    }
}

.account-section a {
    text-decoration: none;
    color: none;
}

.account-section a span {
    color: var(--base-color) !important;
}

.checkout-box a {
    display: inline-block;
    color: var(--base-color);
    background-color: transparent;
    text-decoration: none;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: none;
    padding: 0.500rem 0.75rem;
    font-size: 1rem;
}

.checkout-box a:hover {
    color: var(--base-color);
}

.checkout-box .custom-menu {
    position: fixed;
    padding: 15px;
    background: #FFF;
    -webkit-box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    z-index: 100;
    top: 30%;
    left: 1%;
    opacity: 0;
    visibility: hidden;
    width: auto;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    margin-right: 5px;
    text-align: right;
    overflow: hidden;
}

.checkout-box:hover .custom-menu {
    visibility: visible;
    opacity: 1;
    top: 70px;
}

#shopping-cart .shopping-cart-list {
    max-height: 260px;
    margin-bottom: 15px;
    overflow-y: auto;
}

#shopping-cart .shopping-cart-list .product-widget {
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px;
}

#shopping-cart .shopping-cart-list .product-widget .product-thumb {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
}

#shopping-cart .shopping-cart-list .product-widget .product-thumb>img {
    width: 100%;
}

#shopping-cart .shopping-cart-list .product-widget .product-body {
    padding-right: 75px;
    padding-top: 10px;
    min-height: 60px;
}

#shopping-cart .shopping-cart-list .product-widget .product-price {
    font-size: 14px;
    margin-bottom: 5px;
    font-family: 'IRANSansWebFaNum', 'IRANSansWeb';
    text-decoration: none;
}

#shopping-cart .shopping-cart-list .product-widget .product-price .qty {
    font-size: 14px;
    font-weight: 400;
    font-family: 'IRANSansWebFaNum', 'IRANSansWeb';
}


/* .product-name a {
    font-family: 'IRANSansWeb', 'IRANSansWebFaNum';
} */

#shopping-cart .shopping-cart-list .product-widget .product-body .product-name a {
    font-size: 13px !important;
    font-family: 'IRANSansWeb' !important;
    color: var(--bs-gray);
}

#shopping-cart .shopping-cart-list .product-widget .cancel-btn {
    position: absolute;
    left: 0px;
    top: 10px;
    background-color: transparent;
    border: none;
    color: var(--bs-danger);
}

#shopping-cart .shopping-cart-list .product-widget .cancel-btn:hover {
    color: #30323A;
}

#shopping-cart .shopping-cart-list .product.product-widget:first-child {
    margin-top: 0px;
}

#shopping-cart .shopping-cart-list .product.product-widget:last-child {
    margin-bottom: 0px;
}

#shopping-cart .shopping-cart-btns>button {
    width: calc(50% - 4px);
}

.nav-Menu-links {
    background: var(--bs-white);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.lg-title,
.md-title,
.sm-title {
    font-family: 'IRANSansWebFaNum';
    padding: 0.6rem 0;
    text-transform: capitalize;
}

.lg-title {
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    padding: 1.3rem 0;
    opacity: 0.9;
}

.md-title {
    font-size: 2rem;
}

.sm-title {
    font-size: 1rem;
    font-weight: 300;
}

.text-light-p {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    opacity: 0.5;
    margin: 0.4rem 0;
}


/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
    -webkit-box-shadow: 0px 6px 6px -6px rgba(0, 0, 0, 0.175);
    box-shadow: 0px 6px 6px -6px rgba(0, 0, 0, 0.175);
    margin-top: 10px;
}

.breadcrumb {
    background-color: transparent;
    border: none;
    border-radius: 0px;
    padding: 10px 0px !important;
    margin: 0;
    text-align: right;
}

.breadcrumb>li>a {
    text-decoration: none;
    color: var(--bs-gray);
    font-size: 14px;
}

.breadcrumb>.active {
    color: var(--base-color);
    font-size: 14px;
    font-weight: 600;
}

.breadcrumb>li+li:before {
    color: #DADADA;
    padding: 0 5px;
    color: #ccc;
    content: "/\00a0";
}


/*------------------------------------------
------- main slider 
--------------------------------------------*/

.main-slider {
    align-items: center;
    width: 100%;
}

#main-slider {
    width: 100%;
    border-radius: 0;
    border: 0;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

#main-slider .carousel-inner .carousel-item img {
    height: 500px;
    border-radius: 0;
}

.commercial {
    width: 100%;
    margin-top: 12px;
}

.commercial .card {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    cursor: pointer;
}

.commercial .card:hover {
    animation-duration: 3s;
    animation-name: product-animate;
}

.commercial .card .card-body h5 {
    font-family: 'IRANSansWebFaNum';
    font-size: 15px;
    color: var(--base-color);
    font-weight: 700;
}

.commercial .card .card-body p {
    font-family: 'IRANSansWebFaNum';
    font-size: 15px;
    color: var(--bs-gray);
    font-weight: 500;
}


/* fashion section start */

#p-slider {
    background: var(--bs-white) !important;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

#p-slider-two {
    background: var(--bs-white) !important;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    width: 100%;
}

.discount-product {
    padding-bottom: 5px;
    -webkit-transition: 0.3s all;
    position: relative;
    transition: 0.3s all;
    justify-content: center;
    align-items: center;
    text-align: center;
    -webkit-box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.175);
    box-shadow: 0px 2px 6px -2px rgba(43, 38, 38, 0.175);
    background-color: var(--bs-white);
    border-radius: 0;
    height: 500px;
}

.vip-product {
    padding-bottom: 5px;
    -webkit-transition: 0.3s all;
    position: relative;
    transition: 0.3s all;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* -webkit-box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.175);
    box-shadow: 0px 2px 6px -2px rgba(43, 38, 38, 0.175); */
    background-color: var(--bs-white);
    border-radius: 0;
    height: 460px;
}

.discount-product:hover,
.vip-product:hover {
    /* -webkit-box-shadow: 0px 6px 10px -6px rgba(0, 0, 0, 0.175);
    box-shadow: 0px 6px 10px -6px rgba(0, 0, 0, 0.175); */
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
}

.shirt_text {
    width: auto;
    font-size: 20px;
    color: #30302e;
    text-align: center;
    font-weight: bold;
    padding-top: 10px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.price_text {
    width: 100%;
    font-size: 16px;
    color: var(--base-color);
    text-align: center;
    margin: 0px;
}

.tshirt_img {
    width: 100%;
    text-align: center;
    margin: 0px 0px;
    min-height: 370px;
}

.discount-product .btns {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    bottom: 15%;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}

.discount-product:hover .btns {
    visibility: visible;
    opacity: 1;
}

.discount-product .btns .style_btn {
    background: #fff;
    border: 0 none;
    border-radius: 3px;
    color: var(--base-color);
    font-size: 15px;
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-weight: 900;
    line-height: 1.428571429;
    margin-left: 5px;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.discount-product .btns .style_btn:hover {
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px inset, rgba(0, 0, 0, 0.23) 0px 3px 6px inset;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px inset, rgba(0, 0, 0, 0.23) 0px 3px 6px inset;
}

.vip-product .btns {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    bottom: 1%;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}

.vip-product:hover .btns {
    visibility: visible;
    opacity: 1;
}

.vip-product .btns .style_btn {
    background: #fff;
    border: 0 none;
    border-radius: 3px;
    color: var(--base-color);
    font-size: 15px;
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-weight: 900;
    line-height: 1.428571429;
    margin-left: 5px;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.vip-product .btns .style_btn:hover {
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px inset, rgba(0, 0, 0, 0.23) 0px 3px 6px inset;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px inset, rgba(0, 0, 0, 0.23) 0px 3px 6px inset;
}

.countdown-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    direction: ltr;
    width: 100%;
    border-top: 1px dashed var(--base-color);
    padding-bottom: 3px;
}

.big-text {
    font-weight: bold;
    font-size: 18px;
    /* line-height: 1; */
    margin: 0 0px;
    color: var(--base-color);
}

.countdown-el {
    text-align: center;
    margin-left: 5px;
    /*box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;*/
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-right: 1px dashed var(--base-color);
    /* border-top: 1px dashed var(--base-color); */
    width: 23%;
    padding-top: 5px;
}

.countdown-el:last-child {
    border-right: 0 !important;
}

.countdown-el span {
    font-size: 12px;
    border-top: 1px solid var(--bs-cyan);
    color: var(--bs-gray);
}

.carousel-indicators-change {
    position: absolute;
    left: auto !important;
    top: 10% !important;
    right: 0 !important;
    bottom: auto !important;
    display: grid !important;
    justify-content: none !important;
    padding: 0;
    margin-left: 15%;
    margin-bottom: 0 !important;
    margin-right: 0 !important;
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.carousel-indicators-change [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 50px !important;
    height: 70px !important;
    padding: 0;
    margin-left: 3px;
    margin-right: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: transparent !important;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5;
    transition: opacity 0.6s ease;
}

.buy_bt {
    display: inline-block;
    border-radius: 50%;
    padding: 15px 15px;
    font-weight: 700;
    border: none;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    font-family: 'IRANSansWeb';
    color: #30323A;
    background-color: transparent;
    -webkit-box-shadow: 0px 0px 0px 1px #DADADA inset, 0px 0px 0px 6px transparent;
    box-shadow: 0px 0px 0px 1px #DADADA inset, 0px 0px 0px 6px transparent;
}

.seemore_bt {
    background: transparent;
    /* border: 2px solid #fff; */
    width: 130px;
    padding: 5px;
    border-top-left-radius: 2px;
    /* box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.30); */
    text-align: center;
    align-items: center;
    justify-content: center;
    border: 1px solid #ebebeb;
}

.buy_bt:hover,
.seemore_bt:hover {
    box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.90);
}

.buy_bt a,
.seemore_bt a {
    width: 100%;
    font-size: 16px;
    color: var(--base-color);
    background-color: transparent;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
}

.buy_bt a:hover {
    background-color: transparent;
    color: #262626;
}

.seemore_bt a:hover {
    background-color: transparent;
    color: #f26522;
}

#main_slider a.carousel-control-next {
    right: 615px;
    top: 105%;
}

#main_slider a.carousel-control-prev {
    left: 615px;
    top: 105%;
}

#main_slider .carousel-control-next,
#main_slider .carousel-control-prev {
    width: 55px;
    height: 55px;
    background-color: #30302e;
    opacity: 1;
    font-size: 30px;
    color: #ffffff;
}

#main_slider .carousel-control-next:focus,
#main_slider .carousel-control-next:hover,
#main_slider .carousel-control-prev:focus,
#main_slider .carousel-control-prev:hover {
    color: #fff;
    background-color: var(--base-color);
}


/* fashion section end */


/*------------------------------------------
------- product section
--------------------------------------------*/

.shadow-one {
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.product-slider {
    width: 100%;
    border-radius: 0;
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    background-color: var(--bs-base-tow);
    padding-bottom: 5px;
    position: relative;
}

.header-slider {
    width: 100%;
    height: 40px;
    margin: 0 auto;
    align-items: center;
    display: flex;
    padding-top: 4px;
    justify-content: space-between;
}

.header-slider h2 {
    font-family: 'IRANSansWebFaNum';
    font-size: 18px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    padding-bottom: 4px;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: -50px;
    width: 100%;
}

.owl-carousel .owl-nav button.owl-next {
    left: -10px;
    position: absolute;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 25px;
    position: absolute;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    font-size: 40px !important;
    cursor: pointer;
    width: 30px;
    line-height: 1px;
    text-align: center;
    border-radius: 10%;
    color: var(--bs-gray) !important;
    background: transparent;
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
    color: var(--base-color) !important;
}

.product-slider .owl-carousel .owl-dot {
    display: none;
}

.product {
    /* min-width: 24%; */
    background: var(--bs-white);
    margin: 3px;
    position: relative;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    animation-duration: 3s;
    border-radius: 10px;
}

.product:hover {
    animation-name: product-animate;
}

@keyframes product-animate {
    from {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    }
    50% {
        box-shadow: var(--bs-cyan) 0px 3px 6px, var(--bs-cyan) 0px 3px 6px;
    }
    75% {
        box-shadow: rgba(1, 140, 255, 0.16) 0px 3px 6px, rgba(1, 140, 255, 0.23) 0px 3px 6px;
    }
    to {
        box-shadow: var(--bs-cyan) 0px 3px 6px, var(--bs-cyan) 0px 3px 6px;
    }
}

.product-content {
    background: transparent;
    padding: 2rem 0.5rem 1rem 0.5rem;
    cursor: pointer;
}

.product-img {
    background: var(--white-light);
    box-shadow: 0 0 20px 10px var(--white-light);
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    transition: backgraound 0.5 ease;
}

.product-btns {
    display: flex;
    justify-content: space-evenly;
    margin-top: 1rem;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.btn-product {
    font-size: 16px;
    color: #1c1c1c;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #ebebeb;
    background: #ffffff;
    display: block;
    border-radius: 50%;
    -webkit-transition: all, 0.5s;
    -moz-transition: all, 0.5s;
    -ms-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    text-decoration: none;
}

.btn-product:hover {
    background: var(--base-color);
    color: #fff;
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.16), 0px 0px 0px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.16), 0px 0px 0px 0px rgba(0, 0, 0, 0.16);
}

.product .product-content .product-btns .btn-product span {
    background: rgba(4, 127, 241, 0.16);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    padding: 5px 7px;
    transition: all 0.4s;
    border-left: 3px solid var(--base-color);
    border-right: 3px solid var(--base-color);
}

.product .product-content .product-btns .btn-product span::before {
    content: "";
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    position: absolute;
    bottom: 0;
    left: 40px;
}

.product .product-content .product-btns a.shopping-cart:hover span {
    top: 40%;
    visibility: visible;
    opacity: 1;
}

.product .product-content .product-btns a.heart:hover span {
    top: 40%;
    visibility: visible;
    opacity: 1;
}

.product .product-content .product-btns a.exchange:hover span {
    top: 40%;
    visibility: visible;
    opacity: 1;
}

.product-info {
    background: #fff;
    padding: 1rem;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.product-info-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating {
    width: 100%;
}

.rating span {
    color: var(--base-color);
}

.product-name {
    color: var(--bs-gray);
    text-decoration: none;
    display: block;
    font-size: 15px;
    font-family: 'IRANSansWebFaNum';
    font-weight: 700;
}

.product-name:hover {
    color: #161616;
}

.product-price {
    padding-top: 0.6rem;
    padding-right: 0.6rem;
    display: inline-block;
}

.product-price:first-of-type {
    text-decoration: line-through;
    color: var(--base-color);
}

.product-img img {
    transition: transform 0.6s ease;
    width: 100%;
    height: 100%;
}

.product:hover .product-img img {
    transform: scale(1, 1);
}

.product:hover .product-img {
    background: var(--base-color);
}

.product:hover .product-btns {
    opacity: 1;
    visibility: visible;
}

.off-info .sm-title {
    background: #ff084e;
    color: #fff;
    display: inline-block;
    padding: 0.5rem;
    position: absolute;
    top: 0;
    left: 0;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    z-index: 1;
    letter-spacing: 3;
    cursor: pointer;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 5px;
}


/*------------- banner slider min ---------------------------*/

.min-banner {
    background: var(--bs-base-tow);
}

.carousel-min-banner {
    margin: 0;
}

#carousel-min-banner .carousel-inner .carousel-item {
    border-radius: 30px;
}

.banner-slider-min {
    display: flex;
    width: 100%;
    color: #fff;
    background-color: var(--bs-base-tow);
}

.banner-slider-min img {
    width: 100%;
    height: 300px;
    border: 3px solid rgba(0, 0, 0, 0.16);
    margin: 0.2rem 0;
    border-radius: 10px;
    background: #fff;
}

.banner-slider-min .info {
    position: absolute;
    text-align: center;
    justify-content: center;
    bottom: 2%;
    top: auto;
    left: 1%;
    right: 1%;
    background: rgba(54, 158, 255, 0.16);
    color: #fff;
    font-family: 'IRANSansWebFaNum';
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.banner-slider-min .info h2 {
    font-size: 25px;
    font-weight: 800;
}

.banner-slider-min .info p {
    padding-left: 10%;
    padding-right: 10%;
    font-size: 15px;
}


/*--------------- image slider min ------*/

#carousel-min-banner-image {
    width: 100%;
}

.banner-slider-min-image img {
    width: 100%;
    height: 100%;
}


/*------------------------------------------
------- blog
--------------------------------------------*/

.blog-section {
    width: 100%;
    display: flex;
}

.blog-main {
    width: 100%;
    padding: 0;
}

.blog-slider-box {
    display: none;
}

.Title-blog {
    padding: 10px;
    text-align: center;
    color: rgba(133, 131, 131, 0.933);
    font-weight: 900;
    font-size: 20px;
    background-color: var(--bs-white);
    width: 100%;
}

.blog {
    position: relative;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    justify-content: center;
}

.shadow-post {
    /* background:rgba(7, 197, 245, 0.747); */
    background: rgba(247, 127, 190, 0.747);
    top: 0;
    right: 0;
    display: none;
    height: 0;
    position: absolute;
    -webkit-transition: height 500ms ease 0s;
    transition: height 500ms ease 0s;
    width: 100%;
    display: block;
}

.blog:hover .shadow-post,
.vip-product:hover .shadow-post,
.discount-product:hover .shadow-post {
    display: block;
    height: 100%;
    bottom: 0;
}

.blog:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
}

.blog h2 {
    color: var(--base-color);
    text-align: right;
    font-size: 18px;
    font-weight: 800;
    margin-top: 10px;
    font-family: 'IRANSansWebFaNum';
    padding: 0 1rem;
}

.show-post {
    position: absolute;
    z-index: 999;
    top: 0;
    padding: 6px 12px;
    color: var(--bs-white);
    background-color: transparent;
    border: 1px solid var(--bs-white);
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
    min-width: 150px;
    left: calc((100% - 150px)/2);
    right: calc((100% - 150px)/2);
    text-align: center;
    display: none;
    opacity: 0;
    -webkit-transition: opacity 500ms ease 0s;
    transition: opacity 500ms ease 0s;
    border-radius: 3px;
}

.blog:hover .show-post {
    display: block;
    opacity: 1;
    top: 50%;
}

.show-post:hover {
    color: var(--bs-dark);
    background-color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.blog .card-body .blog-text {
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    font-family: 'IRANSansWebFaNum';
    color: var(--bs-gray);
}

.blog .blog-info {
    display: flex;
    border-top: 1px dashed var(--base-color);
    padding-top: 5px;
    padding-bottom: 5px;
}

.blog .blog-date {
    float: right;
    width: 50%;
    font-size: 14px;
    font-weight: 500;
    font-family: 'IRANSansWebFaNum';
    color: var(--base-color);
    text-align: right;
    padding: 0 1rem;
}

.blog .blog-comment {
    float: left;
    text-align: left;
    width: 50%;
    font-size: 14px;
    font-weight: 500;
    font-family: 'IRANSansWebFaNum';
    color: var(--base-color);
    padding: 0 1rem;
}

.slider-blog {
    border: 1px 0 1px 0 solid rgba(0, 0, 0, 0.04);
    border-top-left-radius: 10px;
    height: 100%;
    padding: 10px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.slider_Title {
    padding: 8px;
    text-align: center;
    background: var(--base-color);
    margin: 15px -10px;
}

.slider_Title h2 {
    font-size: 16px;
    font-weight: 800;
    color: var(--bs-white);
}

#p-slider-blog {
    background: var(--bs-white) !important;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.show-pr-blog i {
    position: absolute;
    bottom: 5%;
    left: 5%;
    font-size: 30px;
    color: var(--base-color);
}

.load-more-blog {
    width: 100%;
    text-align: center;
}

.load-more-blog a {
    padding: 8px 15px;
    border: 2px solid rgba(0, 0, 0, 0.04);
    margin: 15px;
    border-radius: 8px;
}

.image-blog-single {
    width: 100%;
    border-radius: 10px;
    border: 3px solid var(--bs-white);
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    padding: 2px;
    position: relative;
}

.image-blog-single img {
    width: 100%;
    height: 500px;
    border-radius: 10px;
}

.image-blog-single h2 {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 0;
    height: 100px;
    right: auto;
    left: auto;
    padding: 20px 3px;
    background: rgba(0, 0, 0, 0.16);
    font-weight: 900;
    color: var(--bs-white) !important;
    border: none !important;
}

.image-blog-single h2 span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    margin: 0 1rem;
}

.blog-details h2 {
    margin-top: 1.5rem;
    font-size: 20px;
    color: var(--base-color);
    font-weight: 900;
    border-bottom: 1px dashed var(--base-color);
    padding: 5px 0;
}

.blog-details p {
    font-size: 14px;
    color: var(--bs-gray);
    text-align: right;
    font-weight: 500;
}


/*---------------------
  Shopping Cart
-----------------------*/

.shopping-cart-section {
    padding-top: 50px;
    padding-bottom: 60px;
}

.cart-table {
    margin-bottom: 40px;
}

.cart-table table {
    width: 100%;
    min-width: 480px;
    border: 1px solid #ebebeb;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.cart-table table tr th {
    font-size: 16px;
    color: #252525;
    font-weight: 700;
    border-bottom: 1px solid #ebebeb;
    text-align: center;
    padding: 18px 0 19px;
}

.cart-table table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.cart-table table tr th.p-name {
    text-align: right;
}

.cart-table table tr td {
    text-align: center;
    padding-bottom: 34px;
}

.cart-table table tr td.first-row {
    padding-top: 30px;
}

.cart-table table tr td.cart-pic {
    /* padding: 5px; */
    width: 21%;
}

.cart-table table tr td.cart-pic img {
    width: 100px;
    height: 100%;
}

.cart-table table tr td.cart-title {
    text-align: right;
}

.cart-table table tr td.cart-title h5 {
    color: var(--bs-gray);
    font-size: 1rem;
}

.cart-table table tr td.p-price {
    width: 16%;
}

.cart-table table tr td.p-price,
.cart-table table tr td.total-price {
    color: var(--base-color);
    font-size: 16px;
    font-weight: 700;
}

.cart-table table tr td.qua-col {
    width: 16%;
}

.cart-table table tr td.qua-col .quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cart-table table tr td.qua-col .pro-qty {
    width: 123px;
    height: 46px;
    border: 2px solid #ebebeb;
    padding: 0 15px;
    float: left;
}

.cart-table table tr td.qua-col .pro-qty .qtybtn {
    font-size: 24px;
    color: #b2b2b2;
    float: left;
    line-height: 38px;
    cursor: pointer;
    width: 18px;
}

.cart-table table tr td.qua-col .pro-qty .qtybtn.dec {
    font-size: 30px;
}

.cart-table table tr td.qua-col .pro-qty input {
    text-align: center;
    width: 52px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    color: #4c4c4c;
    line-height: 40px;
    float: left;
}

.cart-table table tr td.total-price {
    width: 12%;
}

.cart-table table tr td.close-td {
    font-size: 16px;
    color: var(--bs-gray);
    width: 8%;
}

.cart-table table tr td.close-td:hover {
    color: var(--bs-danger);
}

.cart-table table tr td.close-td i {
    cursor: pointer;
}

.cart-buttons {
    margin-bottom: 34px;
}

.cart-buttons .continue-shop {
    color: #b2b2b2;
    border: 2px solid #ebebeb;
    background: #ffffff;
    padding: 12px 20px 12px 20px;
    margin-bottom: 10px;
    text-decoration: none;
}

.cart-buttons .up-cart {
    color: #252525;
    background: #f3f3f3;
    border: 2px solid #ebebeb;
    padding: 12px 20px 12px 20px;
    text-decoration: none;
}

.discount-coupon {
    margin-bottom: 30px;
}

.discount-coupon h6 {
    color: #232530;
    font-weight: 700;
    margin-bottom: 16px;
}

.discount-coupon .coupon-form {
    position: relative;
}

.discount-coupon .coupon-form input {
    width: 100%;
    height: 46px;
    border: 2px solid #ebebeb;
    color: #b2b2b2;
    font-size: 14px;
    padding-right: 20px;
}

.discount-coupon .coupon-form .coupon-btn {
    position: absolute;
    left: 0;
    top: 0;
    color: #252525;
    background: transparent;
    border: 1px solid transparent;
    padding: 13px 35px 10px 25px;
}

.proceed-checkout ul {
    border: 2px solid #ebebeb;
    background: transparent;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 16px;
    padding-bottom: 20px;
    margin: 0 !important;
}

.proceed-checkout ul li {
    list-style: none;
    font-size: 16px;
    font-weight: 700;
    color: #252525;
    overflow: hidden;
}

.proceed-checkout ul li.subtotal {
    font-weight: 400;
    border-bottom: 1px dashed var(--base-color);
    padding-bottom: 14px;
}

.proceed-checkout ul li.subtotal span {
    font-weight: 700;
}

.proceed-checkout ul li.cart-total {
    padding-top: 10px;
}

.proceed-checkout ul li.cart-total span {
    color: var(--base-color);
}

.proceed-checkout ul li span {
    float: left;
}

.proceed-checkout .proceed-btn {
    font-size: 14px;
    font-weight: 900;
    color: #ffffff;
    background: var(--base-color);
    padding: 15px 25px 14px 25px;
    display: block;
    text-align: center;
    text-decoration: none;
}


/*---------------------
  product details
-----------------------*/

#p-details-slider {
    background: var(--bs-white);
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    width: 100%;
    /* background-image: radial-gradient(#fff 80%, transparent 100%);
    background-position: -5px -5px; */
    /* border: 1px solid var(--base-color); */
    position: relative;
    height: 400px;
}

.border-style {
    position: absolute;
    display: block;
    top: -1%;
    left: auto;
    right: -1%;
    z-index: -9;
    display: block;
    height: 103%;
    width: 102%;
    /* transform: rotate(-45deg); */
    overflow: hidden;
    background: linear-gradient(to right, #fff 20%, #fff 40%, var(--base-color) 50%, var(--base-color) 55%, #fff 70%, #fff 100%);
    background-size: 200% auto;
    animation: shine 3s linear infinite;
    border-radius: 10px;
}


/*Begin shimmer code*/

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

#p-details-slider .carousel-inner .carousel-item .P_F_img {
    width: 100%;
    display: block;
}

#p-details-slider .carousel-inner .carousel-item .P_F_img img {
    width: 100%;
}

.p-details-info {
    margin-top: 10px;
    padding-top: 60px;
    padding-right: 20px;
    /* -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px; */
    height: 500px;
    position: relative;
}

.p-details-info .heart {
    color: #252525 !important;
    text-decoration: none;
    position: absolute;
    top: 0;
    left: 10px;
}

.p-details-info .heart i {
    font-size: 28px;
}

.p-details-info .heart i:hover {
    color: var(--bs-danger);
}


/* Tooltip text */

.p-details-info .heart span {
    visibility: hidden;
    width: 120px;
    background-color: rgba(247, 127, 190, 0.747);
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 105%;
    left: 100%;
    margin-left: -30px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
}


/* Tooltip arrow */

.p-details-info .heart span::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 15px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(247, 127, 190, 0.747) transparent transparent transparent;
}


/* Show the tooltip text when you mouse over the tooltip container */

.p-details-info .heart:hover span {
    visibility: visible;
    opacity: 1;
}

.p-details-info .product-body .product-label {
    position: absolute;
    right: 0;
    top: 0;
}

.p-details-info .product-body .product-label>span {
    display: block;
}

.p-details-info .product-body .product-label>span {
    position: relative;
    display: inline-block;
    padding: 5px 15px;
    font-weight: 700;
    color: #FFF;
    background-color: var(--base-color);
    /* z-index: 22; */
    font-size: 14px;
}

.p-details-info .product-body .product-label>span.sale {
    background-color: var(--bs-danger) !important;
    font-size: 14px;
}

.p-details-info .product-body .product-name {
    font-size: 20px;
    font-weight: 700;
}

.p-details-info .product-body .product-price {
    font-size: 1.5rem;
    color: var(--base-color);
    text-decoration: none;
    padding-right: 0 !important;
}

.p-details-info .product-body .product-old-price {
    color: var(--bs-danger);
    margin-left: 1rem;
}

.p-details-info .product-body .product-rating .svg-inline--fa {
    color: #FFB656 !important;
}

.p-details-info .product-body .product-rating .empty {
    color: #DADADA !important;
}

.p-details-info .product-body .cm {
    color: var(--bs-gray);
    text-decoration: none;
    font-size: 15px;
}

.p-details-info .product-body .cm:hover {
    color: var(--base-color);
}

.p-details-info .product-body .product-options {
    padding-top: 30px;
    margin-bottom: 15px;
    border-top: 1px solid #DADADA;
    margin-top: 15px;
}

.p-details-info .product-body .product-options .size-option {
    margin-bottom: 15px;
}

.p-details-info .product-body .product-options .size-option>li {
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 6px;
    vertical-align: top;
}

.p-details-info .product-body .product-options .size-option>li:last-child {
    margin-right: 0px;
}

.p-details-info .product-body .product-options .size-option>li>a {
    display: block;
    border: 1px solid #DADADA;
    font-weight: 700;
    padding: 2px 7px 0px 8px;
    text-decoration: none;
    color: var(--bs-gray);
}

.p-details-info .product-body .product-options .size-option>li.active a {
    color: var(--base-color);
    border-color: var(--base-color);
}

.p-details-info .product-body .product-options .color-option>li {
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 6px;
    vertical-align: top;
}

.p-details-info .product-body .product-options .color-option>li:last-child {
    margin-right: 0px;
}

.p-details-info .product-body .product-options .color-option>li>a {
    display: block;
    width: 20px;
    height: 20px;
}

.p-details-info .product-body .product-options .color-option>li.active a {
    -webkit-box-shadow: 0px 0px 0px 2px #FFF, 0px 0px 0px 3px var(--base-color);
    box-shadow: 0px 0px 0px 2px #FFF, 0px 0px 0px 3px var(--base-color);
}

.product.product-details .qty-input {
    display: inline-block;
}

.product.product-details .qty-input .input {
    width: 90px;
}

.product.product-details .qty-input span {
    font-family: 'IRANSansWeb', 'IRANSansWebFaNum';
}

.p-details-info .product-body .add-cart-list {
    display: flex;
    align-items: baseline;
}

.p-details-info .product-body .quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 10px;
}

.p-details-info .product-body .quantity .pro-qty {
    width: 123px;
    height: 46px;
    border: 2px solid #ebebeb;
    padding: 0 15px;
}

.p-details-info .product-body .pro-qty .qtybtn {
    font-size: 24px;
    color: #b2b2b2;
    float: left;
    line-height: 38px;
    cursor: pointer;
    width: 18px;
}

.p-details-info .product-body .pro-qty .qtybtn.dec {
    font-size: 30px;
    float: right;
}

.p-details-info .product-body .quantity .pro-qty input {
    text-align: center;
    width: 52px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    color: #4c4c4c;
    line-height: 40px;
}

.p-details-info .product-body .add-cart-list button {
    height: 46px;
}


/*----------------------------*\
	Product tab
\*----------------------------*/

#prudoct-cm-tab {
    margin-top: 30px;
}

#prudoct-cm-tab .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: var(--base-color) !important;
    border: none;
    border-bottom: 1px solid var(--base-color);
}

#prudoct-cm-tab .nav-link:hover,
.nav-tabs .nav-item.show .nav-link {
    color: var(--bs-danger) !important;
    border: none !important;
    border-bottom: 1px solid var(--bs-danger) !important;
}

.tab-content p {
    color: var(--bs-gray);
    font-size: 15px;
    /* font-family: 'IRANSansWeb'; */
}

.tab-content a {
    color: var(--bs-gray);
    text-decoration: none;
}

.tab-content a:hover {
    color: var(--base-color);
}


/*-- reviews --*/

.single-review {
    margin-bottom: 30px;
    padding-right: 5px;
    border-right: 3px solid var(--base-color);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.single-review .review-heading {
    border-bottom: 1px dashed var(--base-color);
    padding: 5px 0;
}

.single-review .review-heading>div {
    display: inline-block;
}

.single-review .review-heading>div+div {
    margin-left: 10px;
}

.single-review .review-rating {
    display: inline-block;
}

.single-review .review-rating>i {
    color: #FFB656;
}

.single-review .review-rating>i.empty {
    color: #DADADA;
}

.single-review .review-body {
    margin-top: 10px;
}

.reviews-pages li {
    display: inline-block;
    margin-right: 6px;
}

.reviews-pages li a {
    display: block;
    min-width: 10px;
    text-align: center;
    color: var(--bs-gray);
}

.reviews-pages li.active {
    color: var(--base-color);
}


/*-- review form --*/

.rw-form-pan {
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    padding: 10px 5px;
}

.rw-form-pan h4 {
    color: var(--bs-gray);
    font-size: 1.5rem;
}

.rw-form-pan strong {
    color: var(--bs-gray);
}

.review-form input {
    width: 100%;
    height: 40px;
    padding: 0px 15px;
    border: none;
    background-color: transparent;
    -webkit-box-shadow: 0px 0px 0px 1px #DADADA inset, 0px 0px 0px 5px transparent;
    box-shadow: 0px 0px 0px 1px #DADADA inset, 0px 0px 0px 5px transparent;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    margin-bottom: 10px;
}

.review-form textarea.input {
    width: 100%;
    height: 100px;
    padding: 0px 15px;
    border: none;
    background-color: transparent;
    -webkit-box-shadow: 0px 0px 0px 1px #DADADA inset, 0px 0px 0px 5px transparent;
    box-shadow: 0px 0px 0px 1px #DADADA inset, 0px 0px 0px 5px transparent;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    margin-bottom: 10px;
}

.review-form .input-rating .stars {
    display: inline-block;
    vertical-align: top;
}

.review-form .input-rating .stars input[type="radio"] {
    display: none;
}

.review-form .input-rating .stars>label {
    cursor: pointer;
    padding: 0px 3px;
    margin: 0px;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.review-form .input-rating .stars>label:hover,
.review-form .input-rating .stars>label:hover~label {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
}

.review-form .input-rating .stars>label:before {
    content: "\e033" !important;
    font-family: 'ElegantIcons';
    font-style: normal;
    font-weight: normal;
    color: #DADADA !important;
    font-size: 14px;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.review-form .input-rating .stars>label:hover:before,
.review-form .input-rating .stars>label:hover~label:before {
    content: "\f005";
    color: #FFB656 !important;
}

.review-form .input-rating .stars>input:checked label:before,
.review-form .input-rating .stars>input:checked~label:before {
    content: "\f005";
    color: #FFB656 !important;
}


/*=========================================================
 -> PRODUCTS PAGE
===========================================================*/


/*----------------------------*\
	Aside
\*----------------------------*/

#aside .aside {
    margin-bottom: 30px;
    text-align: right;
    direction: rtl;
    padding-right: 3.2rem;
}

#aside .aside:last-child {
    margin-bottom: 0px;
}

.aside .aside-title {
    position: relative;
    border-bottom: 1px solid #DADADA;
    padding-bottom: 15px;
    margin-bottom: 30px;
    margin-top: 15px;
    line-height: 24px;
    font-size: 18px;
}

.aside .aside-title:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1.5px;
    height: 3px;
    width: 60px;
    background-color: var(--base-color);
}


/*-- Price Filter --*/


/*-- Filter list --*/

.filter-list {
    margin-bottom: 15px;
    padding: 0 !important;
}

.filter-list>li {
    display: inline-block;
    margin-left: 2px;
    margin-bottom: 6px;
}

.filter-list>li:last-child {
    margin-left: 0px;
}

.filter-list li a {
    position: relative;
    padding: 0px 20px 0px 5px;
    text-decoration: none;
    color: var(--bs-gray);
    font-size: 14px;
}

.filter-list li a:before {
    content: "\4d";
    font-family: 'ElegantIcons';
    position: absolute;
    right: 4px;
    top: 5px;
    line-height: 12px;
    font-size: 12px;
    color: var(--bs-white);
    background-color: var(--bs-dark);
    width: 12px;
    text-align: center;
    border-radius: 50%;
    height: 12px;
}


/*-- Price Filter --*/

#price-slider {
    margin: 60px 0px 50px;
}

.noUi-target {
    background-color: #DADADA !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0px !important;
}

.noUi-connect {
    background-color: var(--base-color) !important;
}

.noUi-horizontal {
    height: 4px !important;
}

.noUi-horizontal .noUi-handle {
    width: 12px !important;
    height: 12px !important;
    left: -6px !important;
    top: -4px !important;
    border: none !important;
    background: #30323A !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-radius: 0px !important;
}

.noUi-handle:before,
.noUi-handle:after {
    display: none !important;
}

.noUi-tooltip {
    border: none !important;
    color: #FFF !important;
    background: #30323A !important;
    border-radius: 0px !important;
    margin-left: 20px;
}

.aside .color-option {
    padding: 0 !important;
}

.aside .color-option>li {
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 6px;
    vertical-align: top;
}

.aside .color-option>li:last-child {
    margin-right: 0px;
}

.aside .color-option>li>a {
    display: block;
    width: 20px;
    height: 20px;
}

.aside .color-option>li.active a {
    -webkit-box-shadow: 0px 0px 0px 2px #FFF, 0px 0px 0px 3px var(--base-color);
    box-shadow: 0px 0px 0px 2px #FFF, 0px 0px 0px 3px var(--base-color);
}

.aside .size-option {
    margin-bottom: 15px;
    padding: 0 !important;
}

.aside .size-option>li {
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 6px;
    vertical-align: top;
}

.aside .size-option>li:last-child {
    margin-right: 0px;
}

.aside .size-option>li>a {
    display: block;
    border: 1px solid #DADADA;
    font-weight: 700;
    padding: 2px 7px 0px 8px;
    text-decoration: none;
    color: var(--bs-gray);
}

.aside .size-option>li.active a {
    color: var(--base-color);
    border-color: var(--base-color);
}

.aside .list-links {
    padding: 0;
    list-style: none;
}

.aside .list-links li>a {
    position: relative;
    display: inline-block;
    padding: 2px 0px;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    text-decoration: none;
    color: var(--bs-gray);
}

.aside .list-links li>a:before {
    content: "\f0a5";
    position: absolute;
    right: 0px;
    font-family: 'Font Awesome 5 Free';
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.aside .list-links li>a:hover,
.aside .list-links li>a:focus,
.aside .list-links li.active>a {
    color: var(--base-color);
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
    padding-right: 5px;
}

.aside .list-links li>a:hover:before,
.aside .list-links li>a:focus:before,
.aside .list-links li.active>a:before {
    opacity: 1;
    visibility: visible;
}


/*----------------------------*\
	Store
\*----------------------------*/

#store {
    margin-top: 15px;
    padding-top: 30px;
    border-top: 1px solid #DADADA;
    margin-bottom: 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid #DADADA;
}


/*-- store filter --*/

.store-filter {}

.store-filter .pull-right {
    float: right;
}

.store-filter .pull-left {
    float: left;
}

.row-filter {
    display: inline-block;
    vertical-align: top;
}

.row-filter>a {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    color: var(--bs-white);
    background-color: var(--bs-dark);
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.row-filter>a:hover {
    opacity: 0.9;
    color: var(--bs-white);
}

.row-filter>a.active {
    background-color: var(--base-color);
}

.sort-filter {
    display: inline-block;
    margin-right: 15px;
}

.sort-filter select.input {
    width: 120px;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.100);
    border-radius: 8px;
    padding: 5px 2px;
}

.sort-filter select option {
    background-color: var(--bs-white);
    border-radius: 8px;
    color: var(--bs-gray);
}

.page-filter select {
    font-family: 'IRANSansWebFaNum' !important;
}

.page-filter select.input {
    width: 90px;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.100);
    border-radius: 8px;
    padding: 5px 2px;
}

.page-filter select option {
    background-color: var(--bs-white);
    border-radius: 8px;
    color: var(--bs-gray);
}

.page-filter {
    display: inline-block;
}

.store-pages {
    display: inline-block;
    margin-left: 15px;
}

.store-pages li {
    display: inline-block;
    margin-right: 6px;
}

.store-pages li a {
    display: block;
    min-width: 10px;
    text-align: center;
    text-decoration: none;
    color: var(--bs-gray);
}

.store-pages li a:hover {
    color: var(--base-color);
}

.store-pages li.active {
    color: var(--base-color);
}


/*----------------------------*\
	Contact 
\*----------------------------*/

.ftco-section {
    padding: 2em 0;
}

.ftco-no-pt {
    padding-top: 0;
}

.ftco-no-pb {
    padding-bottom: 0;
}

.heading-section {
    font-size: 28px;
    color: #000;
}

.wrapper {
    width: 100%;
    -webkit-box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
    box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
}

.contact-wrap {
    background: var(--bs-white)
}

.info-wrap {
    color: var(--bs-gray);
    background-color: var(--base-color);
}

.info-wrap h3 {
    color: #fff;
}

.info-wrap .dbox {
    width: 100%;
    color: rgba(12, 12, 12, 0.8);
    margin-bottom: 25px;
}

.info-wrap .dbox:last-child {
    margin-bottom: 0;
}

.info-wrap .dbox p {
    margin-bottom: 0;
}

.info-wrap .dbox p a {
    color: #fff;
    margin-right: 10px;
}

.info-wrap .dbox .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.info-wrap .dbox .icon span {
    font-size: 20px;
    color: #fff;
}

.info-wrap .dbox .text {
    width: calc(100% - 50px);
}

.contactForm .form-control {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    margin-bottom: 30px;
}

#contactForm .form-control {
    font-size: 16px;
}

.form-control {
    height: 36px;
    background: #fff;
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
    border-radius: 2px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.3) !important;
}

.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.3) !important;
}

.form-control:-ms-input-placeholder {
    /* IE 0+ */
    color: rgba(0, 0, 0, 0.3) !important;
}

.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.3) !important;
}

.form-control:focus,
.form-control:active {
    border-color: var(--base-color) !important;
}

textarea.form-control {
    height: inherit !important;
}

.map {
    border-radius: 10px;
    -webkit-box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
    box-shadow: 0px 10px 20px -13px rgba(0, 0, 0, 0.18);
    margin-bottom: 20px;
}


/*----------------------------*\
	checkout
\*----------------------------*/

.billing-details {}

.section-title {
    position: relative;
    margin-bottom: 5px;
    margin-top: 5px;
    border-bottom: 1px solid #DADADA;
    text-align: right;
}

.section-title .title {
    display: inline-block;
    font-family: 'IRANSansWeb';
    color: var(--bs-gray);
    text-align: right;
    font-size: 1.3rem;
    font-weight: 900;
}

.section-title:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1.5px;
    height: 3px;
    width: 60px;
    background-color: var(--base-color);
}

.checkout-form .form-control {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    margin-bottom: 30px;
}

.input-checkbox .caption {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: 0.3s max-height;
    transition: 0.3s max-height;
}

.input-checkbox .caption p {
    font-size: 14px;
    color: var(--bs-gray);
}

.input-checkbox .font-weak {
    color: var(--base-color);
    font-size: 1rem;
}

.input-checkbox>label {
    color: var(--bs-gray-dark);
    font-size: 1rem;
}

.input-checkbox input[type="checkbox"]:checked+label+.caption,
.input-checkbox input[type="radio"]:checked+label+.caption {
    max-height: 800px;
}


/*----------------------------*\
	footer 
\*----------------------------*/

footer {
    background-color: var(--bs-base-tow);
    width: 100%;
    box-shadow: var(--bs-gray) 4px 0px 4px, var(--bs-gray) 4px 0px 4px;
    padding: 10px;
    margin-top: 10px;
}

footer .aboute,
footer .contact-us,
footer .follow-Me {
    padding: 5px;
    font-family: 'IRANSansWebFaNum';
}

footer h2 {
    font-size: 18px;
    font-weight: 800;
    font-family: 'IRANSansWebFaNum';
    color: rgba(181, 192, 194, 0.7);
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
    padding-bottom: 5px;
}

footer .aboute p,
footer .contact-us .address p,
footer .contact-us .phone p,
footer .contact-us .mail p,
footer .follow-Me p {
    font-size: 14px;
    font-weight: 500;
    font-family: 'IRANSansWebFaNum';
    color: var(--bs-gray);
}

footer .aboute .social-media {
    display: flex;
    justify-content: flex-start;
    /* position: relative; */
}

footer .aboute .social-media a {
    text-decoration: none;
    margin-left: 15px;
    position: relative;
}

footer .aboute .social-media a span {
    font-size: 25px;
    color: var(--bs-gray);
}

footer .aboute .social-media a .instagram em,
footer .aboute .social-media a .telegram em,
footer .aboute .social-media a .twitter em,
footer .aboute .social-media a .facebook em {
    position: absolute;
    top: 0;
    left: -40px;
    right: auto;
    font-size: 14px;
    background-color: var(--bs-gray);
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    color: var(--bs-light);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

footer .aboute .social-media a:hover .instagram em,
footer .aboute .social-media a:hover .telegram em,
footer .aboute .social-media a:hover .twitter em,
footer .aboute .social-media a:hover .facebook em {
    opacity: 1;
    visibility: visible;
    transition: all 0.4s;
    top: -25px;
    right: auto;
}

footer .aboute .social-media a:hover .instagram {
    color: var(--bs-red);
}

footer .aboute .social-media a:hover .facebook {
    color: var(--bs-blue);
}

footer .aboute .social-media a:hover .twitter {
    color: var(--base-color);
}

footer .aboute .social-media a:hover .telegram {
    color: var(--bs-info);
}

footer .contact-us .address,
footer .contact-us .phone,
footer .contact-us .mail {
    display: flex;
}

footer .contact-us .address span,
footer .contact-us .phone span,
footer .contact-us .mail span {
    font-size: 20px;
    color: var(--bs-gray);
    margin-left: 5px;
}

footer #namad-slider {
    background: transparent !important;
}

footer #namad-slider {
    background-color: rgba(0, 0, 0, 0.23);
    width: 180px;
    height: 200px;
}

footer #namad-slider img {
    background-color: transparent;
    width: 180px;
    height: 200px;
    border-radius: 30px;
    border: 2px solid #fff;
    border-radius: 30px;
}

footer #namad-slider .carousel-inner .tow img {
    background-color: rgba(4, 8, 243, 0.16);
}

footer #namad-slider .info h2 {
    position: absolute;
    text-align: center;
    justify-content: center;
    width: 100%;
    top: 30%;
    right: 0px;
    background: rgba(18, 3, 228, 0.16);
    padding: 5px;
    transform: rotate(-40deg);
    color: var(--bs-danger) !important;
    font-family: 'IRANSansWebFaNum';
    border: 0;
    font-weight: 900;
}

footer .sub-box {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0;
    border-radius: 10px;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.20)inset;
}

footer .sub-box form input {
    background: transparent;
    border: none;
    text-decoration: none;
    outline: none;
    height: 50px;
    padding-right: 5px;
    color: var(--base-color);
    width: 80%;
}

footer .sub-box .btn-sub {
    background-color: var(--base-color);
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    border: 1px solid transparent;
    padding: 2px;
    align-items: center;
    width: 20%;
    text-align: center;
    justify-content: space-around;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

footer .sub-box .btn-sub span {
    color: white;
    align-items: center;
    float: left;
}


/*------------------- Responsive ----------------------------*/

@media only screen and (max-width:560px) {
    .search-box form input {
        width: 100%;
    }
    .header-top {
        width: 100%;
        display: block;
        height: max-content;
    }
    .info-box {
        position: absolute;
        top: 15px;
        left: 5%;
    }
    .account-info {
        display: none;
    }
    .account-section,
    .checkout-box button {
        border: none;
    }
    .checkout-box a {
        padding: 1px;
    }
    .navbar-collapse {
        position: absolute;
        top: 40px;
        right: 0;
        z-index: 99999;
        background: #FFF;
        width: 90%;
        border-bottom-left-radius: 3px;
    }
    .navbar-nav .nav-item .nav-link {
        border-top: 1px solid rgba(0, 0, 0, 0.02);
    }
    .navbar-nav .nav-item .nav-link:last-child {
        border: none;
    }
    #main-slider .carousel-inner .carousel-item img {
        height: 300px;
        border-radius: 0;
    }
    .cart-table {
        overflow: auto;
    }
    .cart-table table tr th {
        font-size: 12px;
    }
    .store-filter .pull-right,
    .store-filter .pull-left {
        float: none !important;
    }
    .store-filter .pull-right {
        margin-top: 15px;
    }
}

@media only screen and (max-width:750px)and (min-width:560px) {
    .header-slider h1 {
        font-size: 25px;
    }
    .header-slider p span {
        font-size: 30px;
    }
    .header-top {
        width: 100%;
        display: block;
        height: max-content;
    }
    .search-box form input {
        width: 100%;
    }
    .info-box {
        position: absolute;
        top: 15px;
        left: 5%;
    }
    .account-info {
        display: none;
    }
    .account-section,
    .checkout-box button {
        border: none;
    }
    .checkout-box .translate-middle {
        transform: translate(150%, -50%) !important;
    }
    .navbar-collapse {
        position: absolute;
        top: 40px;
        right: 0;
        z-index: 99999;
        background: #FFF;
        width: 90%;
        border-bottom-left-radius: 3px;
    }
    .navbar-nav .nav-item .nav-link {
        border-top: 1px solid rgba(0, 0, 0, 0.02);
    }
    .navbar-nav .nav-item .nav-link:last-child {
        border: none;
    }
    #main-slider .carousel-inner .carousel-item img {
        height: 400px;
        border-radius: 0;
    }
    .cart-table {
        overflow: auto;
    }
    .cart-table table tr th {
        font-size: 12px;
    }
    .store-filter .pull-right,
    .store-filter .pull-left {
        float: none !important;
    }
    .store-filter .pull-right {
        margin-top: 15px;
    }
}

@media only screen and (max-width:992px) and (min-width: 750px) {
    .logo-box {
        width: 200px;
    }
    .search-box form input {
        width: 300px;
    }
    .header-top {
        width: 100%;
        justify-content: right;
    }
    .account-info {
        display: none;
    }
    .account-section,
    .checkout-box button {
        border: none;
    }
    .checkout-box .translate-middle {
        transform: translate(150%, -50%) !important;
    }
    .navbar-collapse {
        position: absolute;
        top: 40px;
        right: 0;
        z-index: 99999;
        background: #FFF;
        width: 90%;
        border-bottom-left-radius: 3px;
    }
    .navbar-nav .nav-item .nav-link {
        border-top: 1px solid rgba(0, 0, 0, 0.02);
    }
    .navbar-nav .nav-item .nav-link:last-child {
        border: none;
    }
    .vip-product .btns a span {
        visibility: hidden;
        display: none;
    }
}

@media only screen and (min-width:992px) {
    .info-box .account-section {
        padding: 10px 10px;
        margin-left: 5px;
        border-radius: 0.50rem;
        cursor: pointer;
        border: none;
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
        -webkit-animation: pulse 2s infinite;
        animation: pulse 2s infinite;
    }
    .info-box .checkout-box .translate-middle {
        transform: translate(100%, -50%) !important;
    }
    .hamburger-toggle {
        display: none;
    }
    .navbar-nav .dropdown-mega .dropdown-menu-end {
        right: auto;
        left: 0;
    }
    .navbar-nav .dropdown-mega .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        margin-top: 0;
        right: 10%;
        left: 10%;
    }
    .navbar-nav .dropdown-mega:hover .nav-link {
        color: var(--base-color);
    }
    .navbar-nav .dropdown-mega .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }
    .navbar-nav .dropdown-mega .dropdown-menu.fade-up {
        top: 180%;
    }
    .navbar-nav .dropdown-mega .dropdown-menu.show {
        display: none;
    }
    .navbar-nav .dropdown .dropdown-menu-main {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        margin-top: 0;
    }
    .navbar-nav .nav-item:hover .dropdown-menu {
        transition: all 0.3s;
        opacity: 1;
        visibility: visible;
        top: 105%;
        transform: rotateX(0deg);
    }
    .navbar-nav .nav-item:hover .dropdown-menu-main {
        transition: all 0.3s;
        opacity: 1;
        visibility: visible;
        top: 105%;
        transform: rotateX(0deg);
    }
    .mega-box {
        display: flex;
    }
    .mega-list {
        width: 100%;
    }
    .mega-img {
        display: inline-block;
        padding: 2px;
        width: 100%;
        margin-right: 10px;
        position: relative;
    }
    .mega-img img {
        height: 300px;
        width: 100% !important;
        border-radius: 3px;
    }
}

@media only screen and (min-width:1200px) {
    .blog-section {
        width: 100%;
        display: flex;
    }
    .blog-main {
        width: 75%;
        padding-right: 20px;
    }
    .blog-slider-box {
        width: 25%;
        display: inline-block;
    }
    .search-box form input {
        width: calc(100% - 20px);
    }
}


/*=========================================================
	sign-in and sign-up style
===========================================================*/

.register-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    overflow: hidden;
    direction: ltr;
    margin-top: 3px;
    margin-bottom: -7px;
}

.register-container:before {
    content: '';
    position: absolute;
    width: 2000px;
    height: 2000px;
    border-radius: 70%;
    background: linear-gradient(-45deg, var(--base-color), var(--base-color));
    top: -10%;
    right: 48%;
    transform: translateY(-50%);
    z-index: 6;
    transition: 1.8s ease-in-out;
}

.forms-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.signin-signup {
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    width: 50%;
    display: grid;
    grid-template-columns: 1fr;
    z-index: 5;
}

.signin-signup form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 5rem;
    overflow: hidden;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    transition: 0.2s 0.7s ease-in-out;
}

.signin-signup form.sign-in-form {
    z-index: 2;
    direction: rtl;
}

.signin-signup form.sign-up-form {
    z-index: 1;
    opacity: 0;
    direction: rtl;
}

.signin-signup form .title {
    font-size: 2.2rem;
    color: #aea9a9;
    margin-bottom: 10px;
    font-family: 'IRANSansWeb', 'IRANSansWebFaNum';
    font-weight: 900;
}

.signin-signup .input-field {
    max-width: 380px;
    width: 100%;
    height: 55px;
    background-color: transparent;
    margin: 10px 0;
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 .4rem;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #ebebeb;
}

.signin-signup form .input-field .text-icon {
    text-align: center !important;
    line-height: 55px !important;
    color: #acacac !important;
    font-size: 1.5rem !important;
    font-family: 'Font Awesome 5 Free';
}

.signin-signup .input-field input {
    background: none;
    outline: none;
    border: none;
    line-height: 1;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    font-family: 'IRANSansWeb', 'IRANSansWebFaNum';
}

.signin-signup .input-field input::placeholder {
    color: #aaa;
    font-weight: 700;
    font-size: 16px;
    font-family: 'IRANSansWeb', 'IRANSansWebFaNum';
}

.signin-signup .btn {
    width: 150px;
    height: 49px;
    border: none;
    outline: none;
    border-radius: 10px;
    cursor: pointer;
    background-color: var(--base-color);
    font-weight: 600;
    color: #fff;
    margin: 10px 0;
    transition: .5s;
    font-family: 'IRANSansWeb', 'IRANSansWebFaNum';
}

.signin-signup .btn:hover {
    box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.70);
    color: #fff !important;
}

.signin-signup .social-text {
    padding: .7rem 0;
    font-size: 14px;
}

.signin-signup .social-media {
    display: flex;
    justify-content: center;
}

.signin-signup .social-icon {
    height: 46px;
    width: 46px;
    border: 1px solid #333;
    margin: 0 0.45rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 50%;
    color: #333;
    font-size: 18px;
    transition: 0.3s;
}

.signin-signup .social-icon:hover {
    color: var(--base-color);
    border-color: var(--base-color);
}

.panels-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.panels-container .panel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-around;
    text-align: center;
    background: none;
}

.panels-container .left-panel {
    pointer-events: all;
    padding: 3rem 17% 2rem 12%;
    z-index: 7;
}

.panels-container .right-panel {
    pointer-events: none;
    padding: 3rem 12% 2rem 17%;
}

.panels-container .panel .content {
    color: #fff;
    transition: .9s .6s ease-in-out;
}

.panels-container .panel h3 {
    font-weight: 600;
    line-height: 1;
    font-size: 18px;
}

.panels-container .panel p {
    padding: 0.7rem 0;
    font-size: 15px;
}

.panels-container .panel .btn.trasparent {
    margin: 0;
    background: none;
    border: 2px solid #fff;
    width: 130px;
    height: 41px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 1px 1px 8px 3px rgba(0, 0, 0, 0.30);
}

.panels-container .image {
    width: 100%;
    transition: 1.1s .4s ease-in-out;
}

.register-container .right-panel .content,
.register-container .right-panel .image {
    transform: translateX(800px);
}

.register-container.sign-up-mode::before {
    transform: translate(100%, -50%);
    right: 52%;
}

.register-container.sign-up-mode .left-panel .image,
.register-container.sign-up-mode .left-panel .content {
    transform: translateX(-800px);
}

.register-container.sign-up-mode .right-panel .content,
.register-container.sign-up-mode .right-panel .image {
    transform: translateX(0px);
    z-index: 9;
}

.register-container.sign-up-mode .left-panel {
    pointer-events: none;
}

.register-container.sign-up-mode .right-panel {
    pointer-events: all;
}

.register-container.sign-up-mode .signin-signup {
    left: 25%;
}

.register-container.sign-up-mode .signin-signup form.sign-in-form {
    z-index: 1;
    opacity: 0;
}

.register-container.sign-up-mode .signin-signup form.sign-up-form {
    z-index: 2;
    opacity: 1;
}


/*=========================================================
	sign-in and sign-up style RESPONSIVE
===========================================================*/

@media (max-width: 870px) {
    .register-container {
        min-height: 800px;
        height: 100vh;
    }
    .register-container::before {
        width: 1500px;
        height: 1500px;
        left: 30%;
        bottom: 68%;
        transform: translateX(-50%);
        right: initial;
        top: initial;
        transition: 2s ease-in-out;
    }
    .signin-signup {
        width: 100%;
        left: 50%;
        /* top:88%; */
        top: 100%;
        transform: translate(-50%, -100%);
        transition: 1s 0.8s ease-in-out;
    }
    .panels-container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 2fr 1fr;
    }
    .register-container .right-panel .content,
    .register-container .right-panel .image {
        transform: translatey(300px);
    }
    .panels-container .panel {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding: 2.5rem 8%;
    }
    .panels-container .image {
        width: 200px;
        transition: 0.9s 0.6s ease-in-out;
    }
    .panels-container .left-panel {
        grid-row: 1 / 2;
    }
    .panels-container .right-panel {
        grid-row: 3 / 4;
    }
    .panels-container .panel .content {
        padding: 5%;
        transition: 0.9s 0.8s ease-in-out;
    }
    .panels-container .panel h3 {
        font-size: 16px;
    }
    .panels-container .panel p {
        font-size: 14px;
        padding: 0.5rem 0;
    }
    .panels-container .panel .btn.trasparent {
        width: 110px;
        height: 35px;
        font-size: 14px;
    }
    .register-container.sign-up-mode::before {
        transform: translate(-50%, 100%);
        bottom: 32%;
        right: initial;
    }
    .register-container.sign-up-mode .left-panel .content,
    .register-container.sign-up-mode .left-panel .image {
        transform: translateY(-300px);
    }
    .register-container.sign-up-mode .signin-signup {
        top: 5%;
        transform: translate(-50%, 0);
        left: 50%;
    }
}

@media (max-width: 570px) {
    .signin-signup form {
        padding: 0 1.5rem;
    }
    .panels-container .image {
        display: none;
    }
    .panels-container .content {
        padding: 0.5rem 1rem;
    }
    .register-container::before {
        bottom: 70%;
        left: 50%;
    }
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }