/*
Theme Name: golden8plus
Theme URI: https://golden8plus.com/
Author: ALiMajd
Author URI: http://ebadimajd.ir/
Description: این پوسته اختصاصی می باشد
Version: 01122
Tags: EM
*/

/*** fonts ***/
@font-face {
    font-family:IRANSans;
    font-style: normal;
    font-weight: normal;
    src: url("fonts/IRANSans.woff2");
}
@font-face {
    font-family:IRANSansBold;
    font-style: normal;
    font-weight: normal;
    src: url("fonts/IRANSansBold.woff");
}
@font-face {
    font-family:tanin;
    font-style: normal;
    font-weight: normal;
    src: url("fonts/tanin.woff");
}
body {
    font-family: IRANSans;
    font-weight: 400;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    color: #2B2D42;
    font-weight: 700;
    margin: 0 0 10px;
}

a {
    color: #2B2D42;
    font-weight: 500;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

a:hover, a:focus {
    color: #D10024;
    text-decoration: none;
    outline: none;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none
}

/*----------------------------*\
	Buttons
\*----------------------------*/

.primary-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e5bd5d;
    border: none;
    border-radius: 40px;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.primary-btn:hover, .primary-btn:focus {
    opacity: 0.9;
    color: #FFF;
}

/*----------------------------*\
	Inputs
\*----------------------------*/

/*-- Text input --*/

.input {
    height: 40px;
    padding: 0px 15px;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    width: 100%;
}

textarea.input {
    padding: 15px;
    min-height: 90px;
}

/*-- Number input --*/

.input-number {
    position: relative;
}

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

.input-number input[type="number"] {
    -moz-appearance: textfield;
    height: 40px;
    width: 100%;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    padding: 0px 35px 0px 15px;
}

.input-number .qty-up, .input-number .qty-down {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input-number .qty-up {
    right: 0;
    top: 0;
    border-bottom: 0px;
}

.input-number .qty-down {
    right: 0;
    bottom: 0;
}

.input-number .qty-up:hover, .input-number .qty-down:hover {
    background-color: #E4E7ED;
    color: #D10024;
}

/*-- Select input --*/

.input-select {
    padding: 0px 15px;
    background: #FFF;
    border: 1px solid #E4E7ED;
    height: 40px;
}

/*-- checkbox & radio input --*/

.input-radio, .input-checkbox {
    position: relative;
    display: block;
}

.input-radio input[type="radio"]:not(:checked), .input-radio input[type="radio"]:checked, .input-checkbox input[type="checkbox"]:not(:checked), .input-checkbox input[type="checkbox"]:checked {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}

.input-radio label, .input-checkbox label {
    font-weight: 500;
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 5px;
    cursor: pointer;
}

.input-radio input[type="radio"]+label span, .input-checkbox input[type="checkbox"]+label span {
    position: absolute;
    left: 0px;
    top: 4px;
    width: 14px;
    height: 14px;
    border: 2px solid #E4E7ED;
    background: #FFF;
}

.input-radio input[type="radio"]+label span {
    border-radius: 50%;
}

.input-radio input[type="radio"]+label span:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    background-color: #FFF;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.input-checkbox input[type="checkbox"]+label span:after {
    content: '✔';
    position: absolute;
    top: -2px;
    left: 1px;
    font-size: 10px;
    color: #FFF;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.input-radio input[type="radio"]:checked+label span, .input-checkbox input[type="checkbox"]:checked+label span {
    background-color: #D10024;
    border-color: #D10024;
}

.input-radio input[type="radio"]:checked+label span:after {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.input-checkbox input[type="checkbox"]:checked+label span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.input-radio .caption, .input-checkbox .caption {
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: 0.3s max-height;
    transition: 0.3s max-height;
}

.input-radio input[type="radio"]:checked~.caption, .input-checkbox input[type="checkbox"]:checked~.caption {
    max-height: 800px;
}

/*----------------------------*\
	Section
\*----------------------------*/

.section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    margin-top: 15px;
    text-align: right;
}

.section-title .title {
    display: inline-block;
    text-transform: uppercase;
    margin: 0px;
    top: 25px;
    position: relative;
}

.section-title .section-nav {
    float: right;
}

.section-title .section-nav .section-tab-nav {
    display: inline-block;
}

.section-tab-nav li {
    display: inline-block;
    margin-right: 15px;
}

.section-tab-nav li:last-child {
    margin-right: 0px;
}

.section-tab-nav li a {
    font-weight: 700;
    color: #8D99AE;
}

.section-tab-nav li a:after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: #D10024;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.section-tab-nav li.active a {
    color: #D10024;
}

.section-tab-nav li a:hover:after, .section-tab-nav li a:focus:after, .section-tab-nav li.active a:after {
    width: 100%;
}

.section-title .section-nav .products-slick-nav {
    top: 0px;
    left: 0px;
}

/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
    padding: 30px 0px;
    background: #FBFBFC;
    border-bottom: 1px solid #E4E7ED;
    margin-bottom: 30px;
}

#breadcrumb .breadcrumb-header {
    display: inline-block;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: 15px;
    text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree {
    display: inline-block;
}

#breadcrumb .breadcrumb-tree li {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree li+li {
    margin-left: 10px;
}

#breadcrumb .breadcrumb-tree li+li:before {
    content: '/';
    display: inline-block;
    color: #8D99AE;
    margin-right: 10px;
}

#breadcrumb .breadcrumb-tree li a {
    color: #8D99AE;
}

#breadcrumb .breadcrumb-tree li a:hover {
    color: #D10024;
}

/*=========================================================
	02 -> HEADER
===========================================================*/

/*----------------------------*\
	Top header
\*----------------------------*/

#top-header {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #1E1F29;
}

.header-links li {
    display: inline-block;
    margin-right: 15px;
    font-size: 12px;
}

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

.header-links li a {
    color: #FFF;
}

.header-links li a:hover {
    color: #D10024;
}

.header-links li i {
    color: #D10024;
    margin-right: 5px;
}

/*----------------------------*\
	Logo
\*----------------------------*/

#header {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #000000;
}

.header-logo {
    float: right;
}

.header-logo .logo img {
    display: block;
}

/*----------------------------*\
	Search
\*----------------------------*/

.header-search {
    padding: 15px 0px;
    direction: rtl;
}

.header-search form {
    position: relative;
}

.header-search .input-select {
    margin-right: -4px;
    border-radius: 40px 0px 0px 40px;
}

.header-search #s {
    width: calc(100% - 110px);
    margin-left: -4px;
	    height: 40px;
    padding: 0px 15px;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
}

.header-search #searchsubmit {
    height: 40px;
    width: 100px;
    background: #e5bd5d;
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: 40px 0 0 40px;
}

/*----------------------------*\
	Cart
\*----------------------------*/

.header-ctn {
    float: left;
    padding: 15px 0px;
}

.header-ctn>div {
    display: inline-block;
}

.header-ctn>div+div {
    margin-left: 15px;
}

.header-ctn>div>a {
    display: block;
    position: relative;
    width: 90px;
    text-align: center;
    color: #FFF;
}

.header-ctn>div>a>i {
    display: block;
    font-size: 18px;
}

.header-ctn>div>a>span {
    font-size: 12px;
}

.header-ctn>div>a>.qty {
    position: absolute;
    right: 15px;
    top: -10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    font-size: 10px;
    color: #000;
    background-color: #e5bd5d;
}

.header-ctn .menu-toggle {
    display: none;
}

.cart-dropdown {
    position: absolute;
    width: 300px;
    background: #FFF;
    padding: 15px;
    -webkit-box-shadow: 0px 0px 0px 2px #E4E7ED;
    box-shadow: 0px 0px 0px 2px #E4E7ED;
    z-index: 99;
    right: 0;
    opacity: 0;
    visibility: hidden;
}

.dropdown.open>.cart-dropdown {
    opacity: 1;
    visibility: visible;
}

.cart-dropdown .cart-list {
    max-height: 180px;
    overflow-y: scroll;
    margin-bottom: 15px;
}

.cart-dropdown .cart-list .product-widget {
    padding: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.cart-dropdown .cart-list .product-widget:last-child {
    margin-bottom: 0px;
}

.cart-dropdown .cart-list .product-widget .product-img {
    left: 0px;
    top: 0px;
}

.cart-dropdown .cart-list .product-widget .product-body .product-price {
    color: #2B2D42;
}

.cart-dropdown .cart-btns {
    margin: 0px -17px -17px;
}

.cart-dropdown .cart-btns>a {
    display: inline-block;
    width: calc(50% - 0px);
    padding: 12px;
    background-color: #D10024;
    color: #FFF;
    text-align: center;
    font-weight: 700;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.cart-dropdown .cart-btns>a:first-child {
    margin-right: -4px;
    background-color: #1e1f29;
}

.cart-dropdown .cart-btns>a:hover {
    opacity: 0.9;
}

.cart-dropdown .cart-summary {
    border-top: 1px solid #E4E7ED;
    padding-top: 15px;
    padding-bottom: 15px;
}

/*=========================================================
	03 -> Navigation
===========================================================*/

#navigation {
    background: #cfcecc;
    border-bottom: 2px solid #E4E7ED;
    border-top: 3px solid #fff;
}

/*slider */

.slider-wrapper-area .hero__1 .single-slider {
    height: 424px;
    margin-left: 30px;
    margin-top: 30px;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .slider-wrapper-area .hero__1 .single-slider {
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px),
only screen and (max-width: 575px) {
    .slider-wrapper-area .hero__1 .single-slider {
        height: 350px;
    }
}

@media only screen and (max-width: 479px) {
    .slider-wrapper-area .hero__1 .single-slider {
        height: 250px;
    }
}

.slider-wrapper-area .hero__1 .single-slider .slider-main-content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    height: 424px;
    position: relative;
}

@media only screen and (max-width: 767px),
only screen and (max-width: 575px) {
    .slider-wrapper-area .hero__1 .single-slider .slider-main-content {
        height: 350px;
    }
}

@media only screen and (max-width: 479px) {
    .slider-wrapper-area .hero__1 .single-slider .slider-main-content {
        height: 250px;
    }
}

.slider-wrapper-area .hero__1 .single-slider .slider-main-content .slider-content-img {
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    -ms-flex-basis: 40%;
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    -ms-flex-pack: flex-end;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.slider-wrapper-area .hero__1 .single-slider .slider-main-content .slider-text {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-flex-basis: calc(100% - 40%);
    -moz-flex-basis: calc(100% - 40%);
    -ms-flex-basis: calc(100% - 40%);
    -ms-flex-preferred-size: calc(100% - 40%);
    flex-basis: calc(100% - 40%);
}

@media only screen and (max-width: 767px) {
    .slider-wrapper-area .hero__1 .single-slider .slider-main-content .slider-text {
        text-align: center;
    }
}

.slider-wrapper-area .hero__1 .single-slider .slider-main-content .slider-text h1 {
    color: #ffffff;
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-wrapper-area .hero__1 .single-slider .slider-main-content .slider-text h1 {
        font-size: 42px;
    }
}

@media only screen and (max-width: 767px) {
    .slider-wrapper-area .hero__1 .single-slider .slider-main-content .slider-text h1 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 575px) {
    .slider-wrapper-area .hero__1 .single-slider .slider-main-content .slider-text h1 {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 479px) {
    .slider-wrapper-area .hero__1 .single-slider .slider-main-content .slider-text h1 {
        font-size: 18px;
        line-height: 28px;
    }
}

.slider-wrapper-area .hero__1 .single-slider .slider-main-content .slider-text p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    padding-bottom: 30px;
    text-transform: capitalize;
}

@media only screen and (max-width: 767px) {
    .slider-wrapper-area .hero__1 .single-slider .slider-main-content .slider-text p {
        font-weight: 400;
        line-height: 22px;
        padding: 0 15px;
    }
}

@media only screen and (max-width: 479px) {
    .slider-wrapper-area .hero__1 .single-slider .slider-main-content .slider-text p {
        font-weight: 400;
        line-height: 20px;
        padding: 0;
    }
}

.slider-wrapper-area .hero__1 .single-slider .slider-main-content .slider-text .slider-label {
    max-width: 180px;
    padding-top: 13px;
}

@media only screen and (max-width: 767px) {
    .slider-wrapper-area .hero__1 .single-slider .slider-main-content .slider-text .slider-label {
        max-width: 150px;
    }
}

@media only screen and (max-width: 479px) {
    .slider-wrapper-area .hero__1 .single-slider .slider-main-content .slider-text .slider-label {
        max-width: 80px;
        padding-bottom: 10px;
    }
}

.hero__2 .single-slider {
    height: 475px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
}

@media only screen and (max-width: 767px) {
    .hero__2 .single-slider {
        height: 320px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__2 .single-slider {
        height: 270px;
    }
}

.hero__2 .single-slider:before {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    position: absolute;
    background-color: rgba(34, 34, 34, 0.3);
}

.hero__2 .single-slider .slider-text {
    max-width: 45%;
    padding-left: 100px;
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero__2 .single-slider .slider-text {
        max-width: 55%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero__2 .single-slider .slider-text {
        max-width: 60%;
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .hero__2 .single-slider .slider-text {
        max-width: 90%;
        padding-left: 0;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 767px) {
    .hero__2 .single-slider .slider-text {
        max-width: 100%;
        padding-left: 0;
        margin: 0 auto;
    }
}

.hero__2 .single-slider .slider-text h2 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    line-height: 34px;
    margin-top: -6px;
    text-transform: uppercase;
}

@media only screen and (max-width: 575px) {
    .hero__2 .single-slider .slider-text h2 {
        font-size: 24px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 479px) {
    .hero__2 .single-slider .slider-text h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

.hero__2 .single-slider .slider-text h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    padding: 8px 0;
    text-transform: uppercase;
}

@media only screen and (max-width: 575px) {
    .hero__2 .single-slider .slider-text h3 {
        font-size: 18px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 479px) {
    .hero__2 .single-slider .slider-text h3 {
        font-size: 16px;
        line-height: 20px;
    }
}

.hero__2 .single-slider .slider-text p {
    color: #ffffff;
    font-size: 16px;
    line-height: 22px;
    padding-bottom: 15px;
}

@media only screen and (max-width: 479px) {
    .hero__2 .single-slider .slider-text p {
        font-size: 14px;
        line-height: 20px;
    }
}

.hero__3 .single-slider {
    height: 475px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.hero__3 .single-slider .slider-main-content
{
    position: absolute;
    top: 22%;
    width: 40%;
    text-align: center;
}
.hero__3 .single-slider .slider-main-content .slider-text
{
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .hero__3 .single-slider {
        height: 300px;
    }
}

@media only screen and (max-width: 479px) {
    .hero__3 .single-slider {
        height: 250px;
    }
}

.hero__3 .single-slider .slider-text h2 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
    background-color: rgba(112, 108, 117, 0.56);
    padding: 2px 6px;
    display: table;
    margin: 20px 0;
}

@media only screen and (max-width: 767px) {
    .hero__3 .single-slider .slider-text h2 {
        font-size: 32px;
        line-height: 32px;
    }
}

@media only screen and (max-width: 479px) {
    .hero__3 .single-slider .slider-text h2 {
        font-size: 22px;
        line-height: 28px;
    }
}

.hero__3 .single-slider .slider-text h2 {
    color: #484848;
    font-size: 40px;
    font-weight: 700;
    line-height: 74px;
    padding: 3px 10px;
    text-transform: uppercase;
    background-color: rgba(231,231,231,0.7);
    display: inline;
    margin: 20px 0;
    border-radius: 10px;
}

@media only screen and (max-width: 767px) {
    .hero__3 .single-slider .slider-text h2 {
        font-size: 32px;
    }
    .hero__3 .single-slider .slider-main-content {
        position: absolute;
        top: 15%;
        width: 94%;
        text-align: center;
    }
}

@media only screen and (max-width: 479px) {
    .hero__3 .single-slider .slider-text h1 {
        font-size: 40px;
        line-height: 56px;
        padding: 0;
    }
}

.hero__3 .single-slider .slider-text h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    padding: 5px 0;
    text-transform: capitalize;
}

.hero__3 .single-slider .slider-text p {
    color: #000000;
    font-size: 30px;
    font-weight: 400;
    line-height: 34px;
    text-transform: capitalize;
    background-color: rgba(255, 255, 255, 0.58);
    display: table;
    margin: 15px 0;
    padding: 5px 6px;
    text-align: justify;
    direction: rtl;
}

@media only screen and (max-width: 767px) {
    .hero__3 .single-slider .slider-text h5 {
        font-size: 22px;
        line-height: 26px;
    }
}

@media only screen and (max-width: 479px) {
    .hero__3 .single-slider .slider-text h5 {
        font-size: 18px;
        line-height: 26px;
    }
}

.hero__3 .single-slider .slider-text p {
    color: #000000;
    font-size: 16px;
    line-height: 25px;
    text-transform: capitalize;
    margin: 0;
}
.hero__3 .single-slider .slider-text a
{
    color: #ffffff;
    background-color: #000000;
    border-color: #d8373e;
    padding: 10px 25px;
    font-size: 2.2rem;
    display: inline-block;
    margin: 10px 0;
    border-radius: 50px;
}
.hero__4 .single-slider {
    height: 475px;
    background-repeat: no-repeat;
    background-position: center center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero__4 .single-slider {
        height: 400px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__4 .single-slider {
        height: 300px;
    }
}

.hero__4 .single-slider .slider-main-content {
    margin-left: 100px;
}

@media only screen and (max-width: 767px) {
    .hero__4 .single-slider .slider-main-content {
        margin-left: 0;
        margin-right: 100px;
    }
}

@media only screen and (max-width: 479px) {
    .hero__4 .single-slider .slider-main-content {
        margin-left: 0;
        margin-right: 0;
    }
}

.hero__4 .single-slider .slider-main-content h2 {
    color: #ffffff;
    font-size: 35px;
    font-weight: 700;
    line-height: 42px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero__4 .single-slider .slider-main-content h2 span {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(112, 108, 117, 0.56);
}

@media only screen and (max-width: 767px) {
    .hero__4 .single-slider .slider-main-content h2 span {
        padding: 5px 10px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__4 .single-slider .slider-main-content h2 {
        font-size: 24px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 479px) {
    .hero__4 .single-slider .slider-main-content h2 {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 10px;
    }
}

.hero__4 .single-slider .slider-main-content h1 {
    color: #ffffff;
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    text-transform: uppercase;
}

.hero__4 .single-slider .slider-main-content h1 span {
    display: inline-block;
    padding: 10px 15px;
    background-color: rgba(112, 108, 117, 0.56);
}

@media only screen and (max-width: 767px) {
    .hero__4 .single-slider .slider-main-content h1 span {
        padding: 5px 10px;
    }
}

@media only screen and (max-width: 767px) {
    .hero__4 .single-slider .slider-main-content h1 {
        font-size: 32px;
        line-height: 36px;
    }
}

@media only screen and (max-width: 479px) {
    .hero__4 .single-slider .slider-main-content h1 {
        font-size: 22px;
        line-height: 26px;
    }
}

.hero__4 .single-slider .slider-main-content p {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 35px;
}

@media only screen and (max-width: 767px) {
    .hero__4 .single-slider .slider-main-content p {
        margin-top: 10px;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 575px) {
    .hero__4 .single-slider .slider-main-content p {
        font-size: 14px;
        font-weight: 500;
    }
}

/*--------- end Hero slider-1 for home 1 -------*/
/*--------- slider text animation-------*/
.slick-current .slider-text h1 {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.slick-current .slider-text h2 {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}

.slick-current .slider-text h3 {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1.8s;
    animation-duration: 1.8s;
}

.slick-current .slider-text h4 {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1.8s;
    animation-duration: 1.8s;
}

.slick-current .slider-text h5 {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1.8s;
    animation-duration: 1.8s;
}

.slick-current .slider-text p {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.slick-current .slider-text a {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
}

.slick-current .slider-content-img img:nth-child(1) {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.slick-current .slider-content-img img:nth-child(2) {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}

.slick-current .slider-content-img img:nth-child(3) {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}



/**/



/*----------------------------*\
	Main nav
\*----------------------------*/
@media (max-width: 768px) {
    #header .container .row
    {
        display: flex;
        flex-direction: column-reverse;
    }
}
@media (min-width: 768px) {

    #responsive-nav
    {
        text-align: center;
    }
    #responsive-nav
    .navbar-nav {
        float: none;
        margin: 0;
        text-align: center;
        display: inline-flex;
        direction: rtl;
        height: 55px;
    }
}


.main-nav>li>a {
    padding: 20px 0px;
}

.main-nav>li>a:hover, .main-nav>li>a:focus, .main-nav>li.active>a {
    color: #000000;
    background-color: transparent;
}

.main-nav>li>a:after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: #000000;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    position: relative;
    top: 4px;
}

.main-nav>li>a:hover:after, .main-nav>li>a:focus:after, .main-nav>li.active>a:after {
    width: 100%;
}

.header-ctn li.nav-toggle {
    display: none;
}

/*----------------------------*\
	responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
    .header-ctn .menu-toggle {
        display: inline-block;
        position: absolute;
        right: 0;
    }
    #responsive-nav {
    position: absolute;
    left: 0;
    top: 0;
    background: #000000;
    max-width: 100%;
    width: 0%;
    overflow: hidden;
    z-index: 22;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    top: 30%;
    }
    #responsive-nav.active {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        width: 100%;
    }
    .main-nav {
        margin: 0px;
        float: none;
    }
    .main-nav>li {
    display: block;
    float: none;
    border-bottom: 1px solid #e8b13d;
    }
    .main-nav>li+li {
        margin-left: 0px;
    }
    .main-nav>li>a {
    padding: 15px 30px;
    color: #FFF;
    text-align: right;
    }
}

/*=========================================================
	04 -> CATEGORY SHOP
===========================================================*/

.shop {
    position: relative;
    overflow: hidden;
    margin: 15px 0px;
    border: 1px solid #d4d3d1;
}

.shop:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0px;
    width: 43%;
    background: #cfcecc;
    opacity: 0.9;
    -webkit-transform: skewX(-45deg);
    -ms-transform: skewX(-45deg);
    transform: skewX(45deg);
}

.shop:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1px;
    width: 100%;
    background: #cfcecc;
    opacity: 0.9;
    -webkit-transform: skewX(-45deg) translateX(-100%);
    -ms-transform: skewX(-45deg) translateX(-100%);
    transform: skewX(45deg) translateX(100%);
}

.shop .shop-img {
    position: relative;
    background-color: #E4E7ED;
    z-index: -1;
}

.shop .shop-img>img {
    width: 100%;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.shop:hover .shop-img>img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.shop .shop-body {
    position: absolute;
    top: 10%;
    width: 60%;
    padding: 30px;
    z-index: 10;
    right: 0;
    text-align: right;
    margin: 30px 10px;
}

.shop .shop-body h3 {
    color: #000;
    text-align: right;
    width: 100%;
}

.shop .shop-body .cta-btn {
    color: #FFF;
    text-transform: uppercase;
    text-align: right;
    position: relative;
}
.shop .shop-body .cta-btn i{
    font-size: 3rem;
    color: #000;
}
@media only screen and (max-width: 767px) {
    .shop .shop-body {
    position: absolute;
    top: 20%;
    width: 55%;
    padding: 15px 10px;
    z-index: 10;
    text-align: right;
    margin: 0;
    right: 5%;
    }
	.shop .shop-body .cta-btn {
    color: #FFF;
    text-transform: uppercase;
    text-align: right;
    position: relative;
    right: 10%;
}
}

/*=========================================================
	05 -> HOT DEAL
===========================================================*/

#hot-deal.section {
    padding: 150px 0px;
    background-position: center;
    background-repeat: no-repeat;
}

.hot-deal {
    text-align: center;
}

.hot-deal .hot-deal-countdown {
    margin-bottom: 30px;
}

.hot-deal .hot-deal-countdown>li {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    background: #D10024e6;
    text-align: center;
    border-radius: 50%;
    margin: 0px 5px;
}

.hot-deal .hot-deal-countdown>li>div {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.hot-deal .hot-deal-countdown>li>div h3 {
    color: #FFF;
    margin-bottom: 0px;
}

.hot-deal .hot-deal-countdown>li>div span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #FFF;
}

.hot-deal p {
    text-transform: uppercase;
    font-size: 24px;
}

.hot-deal .cta-btn {
    margin-top: 15px;
}

/*=========================================================
	06 -> PRODUCT
===========================================================*/

/*----------------------------*\
	product
\*----------------------------*/

.product {
    position: relative;
    margin: 15px 0px;
    -webkit-box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
    box-shadow: 0px 0px 0px 0px #e4e7ed, 0px 0px 1px 2px #cfcecc;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.product:hover {
box-shadow: 0px 0px 0px 0px #08c705, 0px 0px 1px 2px #08c705;
}

.product .product-img {
    position: relative;
}

.product .product-img>img {
    width: 100%;
}

.product .product-img .product-label {
    position: absolute;
    top: 15px;
    right: 15px;
}

.product .product-img .product-label>span {
    border: 2px solid;
    padding: 2px 10px;
    font-size: 12px;
}

.product .product-img .product-label>span.sale {
    background-color: #FFF;
    border-color: #D10024;
    color: #D10024;
}

.product .product-img .product-label>span.new {
    background-color: #D10024;
    border-color: #D10024;
    color: #FFF;
}

.product .product-body {
    position: relative;
    padding: 15px;
    background-color: #FFF;
    text-align: center;
    z-index: 20;
}

.product .product-body .product-category {
    text-transform: uppercase;
    font-size: 12px;
    color: #8D99AE;
}

.product .product-body .product-name {
    text-transform: uppercase;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    direction: rtl;
    text-align: right;
    color: #fff;
}

.product .product-body .product-name>a {
       font-weight: 700;
    color: #fff;
}

.product .product-body .product-name>a:hover, .product .product-body .product-name>a:focus {
        color: #69d17b;
}

.product .product-body .product-price {
    color: #08c705;
    font-size: 18px;
    text-align: center;
}

.product .product-body .product-price .product-old-price {
    font-size: 70%;
    font-weight: 400;
    color: #8D99AE;
}

.product .product-body .product-rating {
    position: relative;
    margin: 15px 0px 10px;
    height: 20px;
}

.product .product-body .product-rating>i {
    position: relative;
    width: 14px;
    margin-right: -4px;
    background: #FFF;
    color: #E4E7ED;
    z-index: 10;
}

.product .product-body .product-rating>i.fa-star {
    color: #ef233c;
}

.product .product-body .product-rating:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 1px;
    background-color: #E4E7ED;
}

.product .product-body .product-btns>button {
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: transparent;
    border: none;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.product .product-body .product-btns>button:hover {
    background-color: #E4E7ED;
    color: #D10024;
    border-radius: 50%;
}

.product .product-body .product-btns>button .tooltipp {
    position: absolute;
    bottom: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -15px);
    -ms-transform: translate(-50%, -15px);
    transform: translate(-50%, -15px);
    width: 150px;
    padding: 10px;
    font-size: 12px;
    line-height: 10px;
    background: #1e1f29;
    color: #FFF;
    text-transform: uppercase;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.product .product-body .product-btns>button:hover .tooltipp {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -5px);
    -ms-transform: translate(-50%, -5px);
    transform: translate(-50%, -5px);
}

.product .add-to-cart {
    position: absolute;
    left: 1px;
    right: 1px;
    bottom: 5px;
    padding: 15px;
    background: #000000;
    text-align: center;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    z-index: 2;
    box-shadow: 0px 0px 0px 0px #e4e7ed, 0px 0px 1px 2px #e5bd5d;
    border-radius: 0 0 10px 10px;
}

.product:hover .add-to-cart {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.product .add-to-cart .add-to-cart-btn {
    position: relative;
    border: 2px solid transparent;
    height: 40px;
    padding: 0 30px;
    background-color: #08c705;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 40px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.product .add-to-cart .add-to-cart-btn>i {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
}

.product .add-to-cart .add-to-cart-btn:hover {
    background-color: #000;
    color: #08c705;
    border-color: #08c705;
    padding: 0px 30px 0px 50px;
}

.product .add-to-cart .add-to-cart-btn:hover>i {
    opacity: 1;
    visibility: visible;
}

/*----------------------------*\
	Widget product
\*----------------------------*/

.product-widget {
    position: relative;
}

.product-widget+.product-widget {
    margin: 30px 0px;
}

.product-widget .product-img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 60px;
}

.product-widget .product-img>img {
    width: 100%;
}

.product-widget .product-body {
    padding-left: 75px;
    min-height: 60px;
}

.product-widget .product-body .product-category {
    text-transform: uppercase;
    font-size: 10px;
    color: #8D99AE;
}

.product-widget .product-body .product-name {
    text-transform: uppercase;
    font-size: 12px;
}

.product-widget .product-body .product-name>a {
    font-weight: 700;
}

.product-widget .product-body .product-name>a:hover, .product-widget .product-body .product-name>a:focus {
    color: #D10024;
}

.product-widget .product-body .product-price {
    font-size: 14px;
    color: #D10024;
}

.product-widget .product-body .product-price .product-old-price {
    font-size: 70%;
    font-weight: 400;
    color: #8D99AE;
}

.product-widget .product-body .product-price .qty {
    font-weight: 400;
    margin-right: 10px;
}

.product-widget .delete {
    position: absolute;
    top: 0;
    left: 0;
    height: 14px;
    width: 14px;
    text-align: center;
    font-size: 10px;
    padding: 0;
    background: #1e1f29;
    border: none;
    color: #FFF;
}

/*----------------------------*\
	Products slick
\*----------------------------*/

.products-slick .slick-list {
    padding-bottom: 60px;
    margin-bottom: -60px;
    z-index: 2;
}

.products-slick .product.slick-slide {
      margin: 15px;
    border-radius: 10px;
}

.products-tabs>.tab-pane {
    display: block;
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow-y: hidden;
    padding-bottom: 60px;
    margin-bottom: -60px;
}

.products-tabs>.tab-pane.active {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.products-slick-nav {
    position: absolute;
    left: 15px;
    z-index: 10;
    top: 15px;
}

.products-slick-nav .slick-prev, .products-slick-nav .slick-next {
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 35px;
    height: 35px;
    display: inline-block !important;
    margin: 0px 3px;
    background: #cfcecc;
}

.products-slick-nav .slick-prev:before, .products-slick-nav .slick-next:before {
    font-size: 25px;
}

/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Aside
\*----------------------------*/

.aside+.aside {
    margin-top: 30px;
}

.aside>.aside-title {
    text-transform: uppercase;
    font-size: 18px;
    margin: 15px 0px 30px;
}

/*-- checkbox Filter --*/

.checkbox-filter>div+div {
    margin-top: 10px;
}

.checkbox-filter .input-radio label, .checkbox-filter .input-checkbox label {
    font-size: 12px;
}

.checkbox-filter .input-radio label small, .checkbox-filter .input-checkbox label small {
    color: #8D99AE;
}

/*-- Price Filter --*/

#price-slider {
    margin-bottom: 15px;
}

.noUi-target {
    background-color: #FFF;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #E4E7ED;
    border-radius: 0px;
}

.noUi-connect {
    background-color: #D10024;
}

.noUi-horizontal {
    height: 6px;
}

.noUi-horizontal .noUi-handle {
    width: 12px;
    height: 12px;
    left: -6px;
    top: -4px;
    border: none;
    background: #D10024;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 50%;
}

.noUi-handle:before, .noUi-handle:after {
    display: none;
}

.price-filter .input-number {
    display: inline-block;
    width: calc(50% - 7px);
}

/*----------------------------*\
	Store
\*----------------------------*/

.store-filter {
    margin-bottom: 15px;
    margin-top: 15px;
}

/*-- Store Sort --*/

.store-sort {
    display: inline-block;
}

.store-sort label {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 15px;
}

/*-- Store Grid --*/

.store-grid {
    float: right;
}

.store-grid li {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #FFF;
    border: 1px solid #E4E7ED;
    text-align: center;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.store-grid li+li {
    margin-left: 5px;
}

.store-grid li:hover {
    background-color: #E4E7ED;
    color: #D10024;
}

.store-grid li.active {
    background-color: #D10024;
    border-color: #D10024;
    color: #FFF;
    cursor: default;
}

.store-grid li a {
    display: block;
}

/*-- Store Pagination --*/

.store-pagination {
    float: right;
}

.store-pagination li {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #FFF;
    border: 1px solid #E4E7ED;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.store-pagination li+li {
    margin-left: 5px;
}

.store-pagination li:hover {
    background-color: #E4E7ED;
    color: #D10024;
}

.store-pagination li.active {
    background-color: #D10024;
    border-color: #D10024;
    color: #FFF;
    font-weight: 500;
    cursor: default;
}

.store-pagination li a {
    display: block;
}

.store-qty {
    margin-right: 30px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

#product-main-img .slick-prev {
    -webkit-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
    left: 15px;
}

#product-main-img .slick-next {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
    right: 15px;
}

#product-main-img .slick-prev, #product-main-img .slick-next {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

#product-main-img:hover .slick-prev, #product-main-img:hover .slick-next {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
}

#product-main-img .zoomImg {
    background-color: #FFF;
}

#product-imgs .product-preview {
    margin: 0px 5px;
    border: 1px solid #E4E7ED;
}

#product-imgs .product-preview.slick-current {
    border-color: #D10024;
}

#product-imgs .slick-prev {
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

#product-imgs .slick-next {
    top: calc(100% - 20px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

#product-imgs .slick-prev:before {
    content: "\f106";
}

#product-imgs .slick-next:before {
    content: "\f107";
}

.product-preview img {
    width: 100%;
}

/*----------------------------*\
	Product details
\*----------------------------*/

.product-details .product-name {
    text-transform: uppercase;
    font-size: 18px;
}

.product-details .product-rating {
    display: inline-block;
    margin-right: 15px;
}

.product-details .product-rating>i {
    color: #E4E7ED;
}

.product-details .product-rating>i.fa-star {
    color: #D10024;
}

.product-details .review-link {
    font-size: 12px;
}

.product-details .product-price {
    display: inline-block;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #D10024;
}

.product-details .product-price .product-old-price {
    font-size: 70%;
    font-weight: 400;
    color: #8D99AE;
}

.product-details .product-available {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    margin-left: 30px;
    color: #D10024;
}

.product-details .product-options {
    margin-top: 30px;
    margin-bottom: 30px;
}

.product-details .product-options label {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 15px;
    margin-bottom: 0px;
}

.product-details .product-options .input-select {
    width: 90px;
}

.product-details .add-to-cart {
    margin-bottom: 30px;
}

.product-details .add-to-cart .add-to-cart-btn {
    position: relative;
    border: 2px solid transparent;
    height: 40px;
    padding: 0 30px;
    background-color: #ef233c;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 40px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.product-details .add-to-cart .add-to-cart-btn>i {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    color: #D10024;
    opacity: 0;
    visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
    background-color: #FFF;
    color: #D10024;
    border-color: #D10024;
    padding: 0px 30px 0px 50px;
}

.product-details .add-to-cart .add-to-cart-btn:hover>i {
    opacity: 1;
    visibility: visible;
}

.product-details .add-to-cart .qty-label {
    display: inline-block;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 15px;
    margin-bottom: 0px;
}

.product-details .add-to-cart .qty-label .input-number {
    width: 90px;
    display: inline-block;
}

.product-details .product-btns li {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
}

.product-details .product-btns li+li {
    margin-left: 15px;
}

.product-details .product-links {
    margin-top: 15px;
}

.product-details .product-links li {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
}

.product-details .product-links li+li {
    margin-left: 10px;
}

/*----------------------------*\
	 Product tab
\*----------------------------*/

#product-tab {
    margin-top: 60px;
}

#product-tab .tab-nav {
    position: relative;
    text-align: center;
    padding: 15px 0px;
    margin-bottom: 30px;
}

#product-tab .tab-nav:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background-color: #E4E7ED;
    z-index: -1;
}

#product-tab .tab-nav li {
    display: inline-block;
    background: #FFF;
    padding: 0px 15px;
}

#product-tab .tab-nav li+li {
    margin-left: 15px;
}

#product-tab .tab-nav li a {
    display: block;
    font-weight: 700;
    color: #8D99AE;
}

#product-tab .tab-nav li.active a {
    color: #D10024;
}

#product-tab .tab-nav li a:after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: #D10024;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

#product-tab .tab-nav li a:hover:after, #product-tab .tab-nav li a:focus:after, #product-tab .tab-nav li.active a:after {
    width: 100%;
}

/*-- Rating --*/

.rating-avg {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.rating-avg .rating-stars {
    margin-left: 10px;
}

.rating-avg .rating-stars, .rating .rating-stars {
    display: inline-block;
}

.rating-avg .rating-stars>i, .rating .rating-stars>i {
    color: #E4E7ED;
}

.rating-avg .rating-stars>i.fa-star, .rating .rating-stars>i.fa-star {
    color: #D10024;
}

.rating li {
    margin: 5px 0px;
}

.rating .rating-progress {
    position: relative;
    display: inline-block;
    height: 9px;
    background-color: #E4E7ED;
    width: 120px;
    margin: 0px 10px;
    border-radius: 5px;
}

.rating .rating-progress>div {
    background-color: #D10024;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 5px;
}

.rating .sum {
    display: inline-block;
    font-size: 12px;
    color: #8D99AE;
}

/*-- Reviews --*/

.reviews li {
    position: relative;
    padding-left: 145px;
    margin-bottom: 30px;
}

.reviews .review-heading {
    position: absolute;
    width: 130px;
    left: 0;
    top: 0;
    height: 70px;
}

.reviews .review-body {
    min-height: 70px;
}

.reviews .review-heading .name {
    margin-bottom: 5px;
    margin-top: 0px;
}

.reviews .review-heading .date {
    color: #8D99AE;
    font-size: 10px;
    margin: 0;
}

.reviews .review-heading .review-rating {
    margin-top: 5px;
}

.reviews .review-heading .review-rating>i {
    color: #E4E7ED;
}

.reviews .review-heading .review-rating>i.fa-star {
    color: #D10024;
}

.reviews-pagination {
    text-align: center;
}

.reviews-pagination li {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #FFF;
    border: 1px solid #E4E7ED;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.reviews-pagination li:hover {
    background-color: #E4E7ED;
    color: #D10024;
}

.reviews-pagination li.active {
    background-color: #D10024;
    border-color: #D10024;
    color: #FFF;
    cursor: default;
}

.reviews-pagination li a {
    display: block;
}

/*-- Review Form --*/

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

.review-form .input-rating {
    margin-bottom: 15px;
}

.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 {
    float: right;
    cursor: pointer;
    padding: 0px 3px;
    margin: 0px;
}

.review-form .input-rating .stars>label:before {
    content: "\f006";
    font-family: FontAwesome;
    color: #E4E7ED;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.review-form .input-rating .stars>label:hover:before, .review-form .input-rating .stars>label:hover~label:before {
    color: #D10024;
}

.review-form .input-rating .stars>input:checked label:before, .review-form .input-rating .stars>input:checked~label:before {
    content: "\f005";
    color: #D10024;
}

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.billing-details {
    margin-bottom: 30px;
}

.shiping-details {
    margin-bottom: 30px;
}

.order-details {
    position: relative;
    padding: 0px 30px 30px;
    border-right: 1px solid #E4E7ED;
    border-left: 1px solid #E4E7ED;
    border-bottom: 1px solid #E4E7ED;
}

.order-details:before {
    content: "";
    position: absolute;
    left: -1px;
    right: -1px;
    top: -15px;
    height: 30px;
    border-top: 1px solid #E4E7ED;
    border-left: 1px solid #E4E7ED;
    border-right: 1px solid #E4E7ED;
}

.order-summary {
    margin: 15px 0px;
}

.order-summary .order-col {
    display: table;
    width: 100%;
}

.order-summary .order-col:after {
    content: "";
    display: block;
    clear: both;
}

.order-summary .order-col>div {
    display: table-cell;
    padding: 10px 0px;
}

.order-summary .order-col>div:first-child {
    width: calc(100% - 150px);
}

.order-summary .order-col>div:last-child {
    width: 150px;
    text-align: right;
}

.order-summary .order-col .order-total {
    font-size: 24px;
    color: #D10024;
}

.order-details .payment-method {
    margin: 30px 0px;
}

.order-details .order-submit {
    display: block;
    margin-top: 30px;
}

/*=========================================================
	10 -> NEWSLETTER
===========================================================*/

#newsletter.section {
    border-top: 2px solid #E4E7ED;
    border-bottom: 3px solid #D10024;
    margin-top: 30px;
}

.newsletter {
    text-align: center;
}

.newsletter p {
    font-size: 24px;
}

.newsletter form {
    position: relative;
    max-width: 520px;
    margin: 30px auto;
}

.newsletter form:after {
    content: "\f003";
    font-family: FontAwesome;
    position: absolute;
    font-size: 160px;
    color: #E4E7ED;
    top: 15px;
    -webkit-transform: translateY(-50%) rotate(15deg);
    -ms-transform: translateY(-50%) rotate(15deg);
    transform: translateY(-50%) rotate(15deg);
    z-index: -1;
    left: -90px;
}

.newsletter form .input {
    width: calc(100% - 160px);
    margin-right: -4px;
    border-radius: 40px 0px 0px 40px;
}

.newsletter form .newsletter-btn {
    width: 160px;
    height: 40px;
    font-weight: 700;
    background: #D10024;
    color: #FFF;
    border: none;
    border-radius: 0px 40px 40px 0px;
}

.newsletter .newsletter-follow {
    text-align: center;
}

.newsletter .newsletter-follow li {
    display: inline-block;
    margin-right: 5px;
}

.newsletter .newsletter-follow li:last-child {
    margin-right: 0px;
}

.newsletter .newsletter-follow li a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.newsletter .newsletter-follow li a:hover, .newsletter .newsletter-follow li a:focus {
    background-color: #E4E7ED;
    color: #D10024;
}


/*banner*/
.banner
{
    width: 98%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.banner .box-left ,.banner .box-right
{
    width: 50%;
    filter: drop-shadow(3px 15px 8px #eee);
    padding: 5px;
    border-radius: 15px;
}
.banner .box-left img ,.banner .box-right img
{
    width: 100%;
    border-radius: 15px;
    filter: drop-shadow(0px 2px 1px black);
}


.banner .box-right .text
{
    position: relative;
    bottom: 50%;
    text-align: center;
    color: #fff;
    font-size: 2rem;
    width: 60%;
    float: right;
}
.banner .box-right .text span
{
    position: relative;
    bottom: 50%;
    text-align: center;
    color: #000;
    font-size: 2.5rem;
    display: block;
}
.banner .box-right .text p
{
    position: relative;
    bottom: 50%;
    text-align: center;
    color: #fff;
    font-size: 2rem;
}
.banner .box-left .text
{
    position: relative;
    bottom: 50%;
    text-align: center;
    color: #fff;
    font-size: 2rem;
    width: 60%;
}
.banner .box-left .text span
{
    position: relative;
    bottom: 50%;
    text-align: center;
    color: #000;
    font-size: 2.5rem;
    display: block;
}
.banner .box-left .text p
{
    position: relative;
    bottom: 50%;
    text-align: center;
    color: #fff;
    font-size: 2rem;
}

@media only screen and (max-width: 767px) {
    .banner
    {
        width: 98%;
        display: grid;
        justify-content: center;
        flex-direction: column;
        margin: 0 auto;
    }

    .banner .box-left ,.banner .box-right
    {
        width: 100%;
        height: 150px;
    }
    .banner .box-left .text ,  .banner .box-right .text
    {
        bottom: 48%;

    }
	.copyright {
    display: block;
    font-size: 14px !important;
}
	.main-nav>li+li {
padding-right:0px;
}
}
.main-nav>li+li {
padding-right:20px;
}
/*banner*/

/*blog*/
.blog
{
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.blog .box
{
    width: 40%;
    text-align: center;
    margin: 19px;
    box-shadow: 0px 1px 1px 2px #ddd;
    border-radius: 15px;
}
.blog .box img
{
    width: 90%;

}
.blog .box h4
{
    background: #000000;
    margin: 0;
    padding: 10px;
    color: #38d935;
    border-radius: 0 0 15px  15px;
}
/*blog*/


/*=========================================================
	11 -> FOOTER
===========================================================*/

#footer {
    background: #15161D;
    color: #B9BABC;
}

#bottom-footer {
    background: #1E1F29;
}

.footer {
    margin: 30px 0px;
    direction: rtl;
}

.footer .footer-title {
    color: #FFF;
    text-transform: uppercase;
    font-size: 18px;
    margin: 0px 0px 30px;
}

.footer-links li+li {
    margin-top: 15px;
}

.footer-links li a {
    color: #B9BABC;
}

.footer-links li i {
    margin-left: 10px;
    color: #e5bd5d;
    width: 14px;
    text-align: center;
}

.footer-links li a:hover {
    color: #D10024;
}

.copyright {
    display: block;
    font-size: 18px;
}
.copyright a{
    color: #1deb69;
}

.footer-payments li {
    display: inline-block;
    margin-right: 5px;
}

.footer-payments li a {
    color: #15161D;
    font-size: 36px;
    display: block;
}
@media only screen and (max-width: 767px) {

    #footer .container .row
    {
        display: flex;
        flex-flow: wrap-reverse;
        direction: rtl;
        justify-content: center;
        text-align: center;
    }
    .footer p
    {
        text-align: right;
    }
    #footer .container .row .col-md-6 .footer .footer-links
    {
        text-align: right;

    }
    #header {
        padding-top: 20px;
        padding-bottom: 0;
    }
}
/*=========================================================
	12 -> SLICK STYLE
===========================================================*/

/*----------------------------*\
	Arrows
\*----------------------------*/

.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    border-radius: 50%;
    z-index: 22;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    background-color: #000000;
    border-color: #000000;
}

.slick-prev:before, .slick-next:before {
    font-family: FontAwesome;
    color: #2B2D42;
}

.slick-prev:before {
    content: "\f104";
}

.slick-next:before {
    content: "\f105";
}

.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
    color: #FFF;
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

/*----------------------------*\
	Dots
\*----------------------------*/

.slick-dots li, .slick-dots li button, .slick-dots li button:before {
    width: 10px;
    height: 10px;
}

.slick-dots li button:before {
    content: "";
    opacity: 1;
    background: #E4E7ED;
    border-radius: 50%;
}

.slick-dots li.slick-active button:before {
    background-color: #D10024;
}

.custom-dots .slick-dots {
    position: static;
    margin: 15px 0px;
}

/*=========================================================
	13 -> RESPONSIVE
===========================================================*/

@media only screen and (max-width: 1201px) {}

@media only screen and (max-width: 991px) {
    #top-header .header-links.pull-left {
        float: none !important;
    }
    #top-header .header-links.pull-right {
        float: none !important;
        margin-top: 5px;
    }
    .header-logo {
        float: none;
        text-align: center;
    }
    .header-logo .logo {
        display: inline-block;
    }
    #product-imgs {
        margin-bottom: 60px;
        margin-top: 15px;
    }
    #rating {
        text-align: center;
    }
    #reviews {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title .section-nav {
        float: none;
        margin-top: 10px;
    }
    .section-tab-nav li {
        margin-top: 10px;
    }
}

@media only screen and (max-width: 480px) {
    [class*='col-xs'] {
        width: 100%;
    }
    .store-grid {
        float: none;
        margin-top: 10px;
    }
    .store-pagination {
        float: none;
        margin-top: 10px;
    }
}





/*shop majd*/
/*slider product*/

.box-category
{
    width: 95.5%;
    margin: 0 auto 20px;
}
.box-category .boxs
{
    display: flex;
    justify-content: center;
}
.box-category .boxs .box
{
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 10%);
    margin: 10px;
    border-radius: 8px;
}

.box-category .boxs .box img
{
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.show-img-category
{
    width: 97%;
    margin: 0 auto;
    display: flex;
}
.show-img-category li
{
    width: 17%;
    margin: 0 10px;
    background: #fff;
    text-align: center;
}
.show-img-category li a
{
    color:#000;
}
.show-img-category li img
{
    width:100%;
}

/*category-product*/
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: #ebe9eb;
    border-radius: 5px;
    color: #000;
}
.woocommerce-breadcrumb
{
    text-align: right;
    padding: 10px 30px;
    color: #1a8f63;
    direction: rtl;
}
.woocommerce-breadcrumb a
{
    color: #000;
}

/*category-product*/
/*search-page*/
.search-page
{

    width: 94%;
    margin-bottom: 100px;
}
.search-page .boxs
{
    position: relative;
    top: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-flow: wrap;
    justify-content: right;
    width: 100%;
}
.search-page .boxs .box
{
    width: 20%;
    margin: 20px;
    display: block;
    text-align: center;
    border-radius: 20px;
    padding: 2px;
    box-shadow: 0px 0px 5px 0px #0f1b2a;
}
.search-page .boxs .box .desc h2 {
    font-size: 1.3rem;
    padding: 10px 0 5px 0;
    color:#000;
    direction:rtl;
}
.search-page .boxs .box .desc label {
    color: #000;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    display: block;
}

.search-page .boxs .box .title h2
{
    font-size: 1rem;
    position: relative;
    top: 5px;
    min-height: 20px;
    line-height: 10px;
    padding: 10px 20px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    direction: rtl;
}
.search-page .boxs .box .img img
{
    width: 100%;
    border-radius: 20px;
}

/*search-page*/


/*shop*/
.woocommerce-breadcrumb
{
    color: #ff0000;
    font-size: 1rem;
    border: 1px #dfdfdf solid;
    border-radius: 5px;
    width: 96%;
    margin: 0 auto 15px;
    position: relative;
    top: 7px;
    padding: 6px 10px;
    background: #fff;
    font-family: 'IRANSans';
}
.woocommerce-breadcrumb a
{
    color:#000;
}
.woocommerce
{
    width: 60%;
    margin: 0 auto;
}
.woocommerce table.shop_table {
    border: 1px solid rgba(0,0,0,.1);
    text-align: right;
    width: 100%;
    border-collapse: separate;
    border-radius: 5px;
    direction: rtl;
    margin: 0 auto;
}
.woocommerce .cart-collaterals table
{
    direction: rtl !important;
}
.cart-subtotal
{
    display:none;
}
.order-total
{
    text-align: left;
}
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table thead, .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tfoot {
    display: none;
}
.wc_payment_methods ,.woocommerce-terms-and-conditions-wrapper{
    display: none;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: #ffffff;
    border-radius: 5px;
    color: #000;
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    font-size: 100%;
    margin: 0;
    line-height: 1;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: visible;
    padding: .618em 1em;
    font-weight: 700;
    border-radius: 3px;
    right: auto;
    color: #fff6f6;
    background-color: #23a553;
    border: 0;
    display: inline-block;
    background-image: none;
    box-shadow: none;
    text-shadow: none;
    border: 1px solid #fff;
    border-radius: 5px;
    font-family: iransans;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: #23a553;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    width: 96%;
    text-align: center;
    padding: 15px;
    font-size: 1.3rem;
    font-family: 'IRANSans';
}
.woocommerce-billing-fields__field-wrapper {
    direction: rtl;
}

.woocommerce table.shop_table .product-name a
{
    color:#000;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
    background-color: #96588a;
    color: #23a553;
    background: #fff;
    border: 1px solid #e0e0e0;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    outline: 0;
    line-height: normal;
    padding: 7px;
    border-radius: 5px;
    border: 1px solid #23a553;
    font-size: 1.5rem;
    font-family: 'IRANSans';
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
    float: none;
    width: 60%;
    margin: 0 auto;
}
.woocommerce .col2-set, .woocommerce-page .col2-set {
    width: 100%;
}
.woocommerce-billing-fields {
    width: 100%;
    margin: 30px auto;
}
.woocommerce-billing-fields h3 {
    display:none;
}

.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
    width: 50%;
    height: 36px;
    padding: 0 5px;
    border-radius: 5px;
    border: 1px solid #23a553;
    font-family: iransans;
}
.woocommerce #respond input#submit:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {
    background-color: #fafafa;
    text-decoration: none;
    background-image: none;
    border: 1px solid #23a553;
    color: #23a553;
    border-radius: 5px;
}
.woocommerce table.shop_table td {
    vertical-align: middle;
    line-height: 1.5em;
    text-align: center;
    width: 30%;
    padding: 10px;
}
.woocommerce-additional-fields
{
    display:none;
}
#billing_phone , #billing_email
{
    text-align: left;
    direction: ltr;
}
.woocommerce #content table.cart img, .woocommerce table.cart img, .woocommerce-page #content table.cart img, .woocommerce-page table.cart img {
    height: 40px;
    width: 60px;
    position: relative;
    top: 5px;
}
.woocommerce table.shop_table th {
    font-weight: 700;
    padding: 9px 12px;
    line-height: 1.5em;
    text-align: center;
}
.woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
    width: 100%;
    margin-top: 20px;
}
.woocommerce .quantity .qty {
    width: 3em;
    text-align: right;
}
.woocommerce .btn-center
{
    text-align: left;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    float: left;
    width: 100%;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals  .cart_totals .wc-proceed-to-checkout{
    text-align: left;
}
.cart_totals h2
{
    display:none;
}
.woocommerce-shipping-fields
{
    display:none;
}
.woocommerce {
    position: relative;
    top: 63px;
    z-index: 20;
    background: #fff;
}
.woocommerce form .form-row-last, .woocommerce-page form .form-row-last {
    float: left;
    width: 100%;
}
.woocommerce-form-coupon-toggle
{
    display:none;
}
.woocommerce-message::before {
    content: "\e015";
    color: #1cc70e;
}
.woocommerce-notices-wrapper
{
    position: relative;
    top: 133px;
    z-index: 20;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message {
    padding: 1em 3.5em 1em 2em;
    margin: 0;
    position: relative;
    background-color: #f7f6f7;
    color: #515151;
    border-top: none;
    list-style: none outside;
    width: auto;
    word-wrap: break-word;
    direction: rtl;
}
.woocommerce-message::before {
    content: "\e015";
    color: #1cc70e;
    position: absolute;
    top: 19px;
}
.woocommerce-error .button, .woocommerce-info .button, .woocommerce-message .button {
    float: left;
    background: #1cc70e;
    color: #fff;
    padding: 3px 8px;
    border-radius: 10px;
}
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table thead ,.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tfoot
{
    display:none;
}
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tbody .cart_item
{
    display: flex;
    justify-content: center;
    width: 100%;
    border: 1px solid rgba(0,0,0,.1);
    border-right: none;
    border-left: none;
    border-top: none;
}
#order_review_heading
{
    text-align: center;
}
.main_page
{
              min-height: 500px;
    text-align: right;
    direction: rtl;
}

.related-title
{          text-align: right;
    padding: 5px 10px;
    color: #ff0000;
    margin: 15px 0;
}
.box-product-related
{
    display: flex;
    justify-content: center;
    flex-flow: wrap;
    width: 90%;
    margin: 0 auto;
}
.box-product-related .item
{
    width: 20%;
    margin: 20px;
    display: block;
    text-align: center;
    border-radius: 20px;
    padding: 2px;
    box-shadow: 0px 0px 5px 0px #0f1b2a;
}

.box-product-related .item .img img {
    width: 100%;
    border-radius: 20px;
}
.box-product-related .item .desc h2 {
    font-size: 1.5rem;
    padding: 10px 0 5px 0;
}
.box-product-related .item .desc label {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    display: block;
}
.blog
{
    width: 100%;
    padding: 20px 0;

}
.blog .title_main
{
    color: #c64564;
    font-size: 2.2rem;
    font-family: two;
    position: relative;
    bottom: 10px;
    text-align: right;
}
.blog .title_main::before {
    content: url('image/logo3.png');
    float: right;
    margin-right: 10px;
    position: relative;
    bottom: 20px;
}

.blog .boxs
{
    width: 100%;
    display: flex;
    justify-content: center;

}
.blog .boxs .box
{
    width: 20%;
    margin: 10px;
    box-shadow: 0px 1px 2px 1px #2b2736;
    border-radius: 10px;
    padding: 2px;
    background: #c64564;
    cursor: pointer;

}
.blog .boxs .box .img
{
    width: 100%;

}
.blog .boxs .box .img img
{
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 1px 2px 1px #2b2736;

}
.blog .boxs .box strong
{
    text-align: right;
    color: #fff;
    padding-bottom: 6px;
    display: block;
    padding-right: 10px;
    font-size: 1.2rem;
    font-family: 'IRANSans';
}
.blog_category .main .boxs
{
    display: grid;
    grid-template-columns: 28% 40% 28%;
    grid-gap: 1rem;
    justify-content: center;
    grid-row-gap: 3rem;
    margin: 60px 60px 0 60px;
    padding: 0 30px;
    justify-items: center;
    justify-self: center;
}

.blog_category .main .boxs a
{
    display: grid;
    grid-auto-rows: max-content;
    align-content: center;
    margin: 17px 0;
}
.blog_category .main .boxs a .img
{
    width: 100%;
    height: 100%;
    box-shadow: 0px 1px 2px 1px #d33b33;
    border-radius: 10px;
}
.blog_category .main .boxs a .img img
{
    width: 100%;
}
.blog_category .main .boxs a h2
{
    position: relative;
    font-family: 'IRANSans';
    padding: 5px;
    font-size: 1.2rem;
    text-align: center;
}
@media only screen and (max-width: 900px){
    .majd {
        display: flex;
        list-style: none;
        justify-content: right;
        width: 97%;
    }
    .blog_category .main .boxs {
        display: grid;
        grid-template-columns: 100%;
        grid-gap: 1rem;
        justify-content: center;
        grid-row-gap: 3rem;
        margin: 10px;
        padding: 0 30px;
        justify-items: center;
        justify-self: center;
        flex-direction: column;
    }
    .blog_category .main .boxs a {
        display: flex;
        grid-auto-rows: max-content;
        align-content: center;
        margin: 17px 0;
        width: 90%;
    }
    .single_product {
        display: flex;
        padding: 5px 20px;
        flex-direction: column;
    }
    .single_product .single_product_gallery {
        width: 100%;
    }
    .single_product .single_product_excerpt {
        width: 100%;
    }
    .single_product_excerpt .product-content .purchase-info
    {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .single_product .single_product_excerpt .product-content .purchase-info form .single_add_to_cart_button {
        width: 200px;
        border: 1px solid #fff;
        background: #4caf50;
        font-size: 1rem;
        height: auto;
        color: #fff;
        line-height: 40px;
        font-family: 'IRANSans';
        margin: 0 10px;
        border-radius: 10px;
        cursor: pointer;
    }
    .single_product .single_product_excerpt .product-content .product-price .last-price {
        color: #000;
        direction: rtl;
        padding-right: 130px;
        padding-bottom: 10px;
    }
    .woocommerce-breadcrumb {
        color: #23a553;
        font-size: 1rem;
        border: 1px #dfdfdf solid;
        border-radius: 5px;
        width: 96%;
        margin: 0 auto 15px;
        position: relative;
        top: 7px;
        padding: 6px 6px;
        background: #fff;
        font-family: 'IRANSans';
    }
    .woocommerce {
        width: 100%;
        margin: 0 auto;
    }
    .woocommerce table.shop_table_responsive tr td, .woocommerce-page table.shop_table_responsive tr td {
        display: block;
        text-align: left!important;
        width: 94%;
    }
    .woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
        float: none;
        width: 94%;
        margin: 0 auto;
    }
    .box-product-related .item {
        width: 40%;
        margin: 15px;
        background: #fe0000;
        display: block;
        text-align: center;
        border-radius: 20px;
        padding: 3px;
        box-shadow: 0px 0px 6px 0px #0f1b2a;
    }
}
/*shop*/


/*shop*/
/*single page*/
.page .main
{
    background: #fff;
}
.page .main .post-content
{
    width: 90%;
    margin: 0 auto;
    direction: rtl;
    line-height: 50px;
    text-align: justify;
}
.page .main .post-content h2 ,.page .main .post-content h3
{
    color: #1a8f63;
    padding: 10px;
    font-size: 1.5rem;
}
/*shop single*/

.single_product
{
    display: flex;
    padding: 5px 20px;
}

.single_product .single_product_gallery
{
width:50%;
}

.single_product .single_product_excerpt
{
width:50%;
}
.single_product_excerpt .product-content .product-detail pre
{
    display: block;
    font-size: 1.1rem;
    color: #000;
    text-align: right;
    padding: 5px;
    line-height: 25px;
    white-space: pre-line;
    font-family: iransans;
    direction: rtl;
}
.single_product_excerpt .product-content 
{
text-align: right;
}
.single_product_excerpt .product-content .product-title
{
    text-align: right;
    direction: rtl;
    color: #ff0000;
    padding: 0 0 10px 0;
}
.single_product_excerpt .product-content a
{
    color: #0172be;
    text-align: right;
}
.single_product .single_product_excerpt .product-content .product-detail
{    height: auto;
    min-height: 333px;
}
.single_product .single_product_excerpt .product-content .product-price .last-price
{
    color: #000;
    direction: rtl;
    padding-right: 70px;
    padding-bottom: 10px;
}
.single_product .single_product_excerpt .product-content .purchase-info form
{
    display: flex;
    flex-direction: row-reverse;
}
.single_product .single_product_excerpt .product-content .purchase-info form .quantity .qty
{
    width: 60px;
    text-align: center;
    height: 40px;
    border-radius: 10px;
    border: 2px solid #16855d;
}
.single_product .single_product_excerpt .product-content .purchase-info form .single_add_to_cart_button
{
    width: 200px;
    border: 1px solid #fff;
    background: #26B130;
    font-size: 1rem;
    height: 40px;
    color: #fff;
    line-height: 40px;
    font-family: 'IRANSans';
    margin: 0 10px;
    border-radius: 10px;
}

.breadcrumbs
{
    text-align: right;
    padding: 10px 30px;
    color: #0171bb;
    background: #fff;
    direction: rtl;
}
.breadcrumbs a
{
    color: #000;
}
.related-products
{
    margin: 0px auto 70px !important;
}
/*shop single*/
/*slider product*/
.header-slider
{
    width: 100%;
    padding: 10px 30px;
}
.swiper-container {
  height: calc(100vh - 100px);
  margin: 50px;
}

.swiper-slide {
  overflow: hidden;
}

.slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 15px;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.swiper-button-next {
  right: 30px;
}

.swiper-button-prev {
  left: 30px;
}
.header-slider .slider-main
{
        width: 100%;
    height: 500px;
}

.header-slider .cat
{
    width: 100%;
    height: 100%;
    padding: 30px 10px 15px 10px;
    margin: 20px auto 0;
    background: #fff;
    text-align: center;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 10%);
}
.header-slider h4
{
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #656565;
}

.header-slider .cat .boxs
{
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
}
.header-slider .cat .boxs .box
{
    width: 10%;
    margin: 3px;
    font-size: 3rem;
    color: #0171bb;
    line-height: 30px;
}
.header-slider .cat .boxs .box p
{
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
    color: #000;
    direction: rtl;
}

.header-slider .cat .boxs .box:nth-child(even)> img
{
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 5.3px 3px 2px #ef6d21;
}

.header-slider .cat .boxs .box img:hover {
    transform: translate(0px, -3px) scale(1.03);
}
.header-slider .slider-main img
{
    width: 60%;
    border-radius: 15px;
}
.slider-single {
    overflow: hidden;
    justify-content: center;
    display: flex;
    width: 100% !important;
    margin: 0 auto 10px !important;
}


.slider .slides {
    width: 400px;
    height: 400px;
    margin: 5px;
}
.slider img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0 0.5rem 0 0.5rem;
    padding: 3px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.majd {
    display: flex;
    list-style: none;
    justify-content: right;
    width: 73%;
}
.majd ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}
.majd ul li {
  cursor: pointer;
}
.majd ul li {
  margin: 10px;
}
.majd ul li img {
    width: 94px;
    height: 70px;
    object-fit: cover;
    padding: 2px;
    border: 1px solid rgba(0, 0, 0, 0.2);

}

.slider {
    width: 93%;
    margin: 0px auto 100px;
}

.slick-slide {
    margin: 13px 10px;
}

.slick-slide img {
    width: 100%;
    border-radius: 10px;
}

.slick-prev:before,
.slick-next:before {
    color: #fcc900;
}


.slick-slide {
    transition: all ease-in-out .3s;
}

.slick-active {
    opacity: 1;
}

.slick-current {
    opacity: 1;
}
.slick-initialized .slick-slide div {
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    text-align: left;
}

    .pricebox
{
text-align: center !important;
}
@media(min-width: 1300px){
    .container {
        padding: 0 60px;
        width:auto
    }

}
.product-majd .slick-initialized .slick-slide div .col
{
box-shadow: 0px 4px 8px 1px #ddd;
}
.slick-initialized .slick-slide div .cart_span {
    padding: 1px 10px;
    height: 33px;
    color: #fff;
    background-color: #26B130;
    direction: rtl;
    line-height: 22px;
    font-size: 14px;
    border-radius: 3px;
    border: 1px solid transparent;
    text-align: center;
    display: block;
    width: 90%;
    margin: 0px auto 0 auto;
}
.slick-initialized .slick-slide div .cart_span a {
    color: #fff;
}
.slick-initialized .slick-slide div .cart_span a i {
    font-weight: 600;
    color: #fafafa;
    font-size: 1.4rem;
    position: relative;
    top: 3px;
    left: 10px;
}

.slick-initialized .slick-slide div > a
{
    color: #000000;
    direction: rtl;
}


.slick-dots li {

    display:none;
}

.slick-dots li:first-child{

    display:block;
}
.slick-dots li:last-child{

    display:block;
}
.slick-initialized .slick-slide .title
{
    overflow: hidden;
    min-height: 20px;
    height: 35px;
    font-size: 18px;
    line-height: 10px;
    color: #535353;
    padding: 7px 16px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    direction: rtl;
}
.slick-initialized .slick-slide div > .price label {
    color: #fff;
}
    .items-slider {
    width: 92.5%;
    background: #fff;
    margin: 0 auto 30px;
    box-shadow: 0 7px 7px 0 rgb(0 0 0 / 10%);
    }

    .slick-slide {
        margin: 13px 10px;
    }

    .slick-slide img {
        width: 100%;
    }
.slider-wrapper-area3 .slick-dots
{
    display: block;
    bottom: -40px;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    bottom: -30px;
}
.slider-wrapper-area3 .slick-dots li:first-child {
    display: inline-block;
    margin: 0 5px;

}
.slider-wrapper-area3 .slick-dots li:last-child {
    display: inline-block;
    margin: 0 5px;
}

/*slider product*/
/*single page*/





/*shop majd*/
/*slider product*/

.box-category
{
    width: 95.5%;
    margin: 0 auto 20px;
}
.box-category .boxs
{
    display: flex;
    justify-content: center;
}
.box-category .boxs .box
{
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 10%);
    margin: 10px;
    border-radius: 8px;
}

.box-category .boxs .box img
{
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.show-img-category
{
    width: 97%;
    margin: 0 auto;
    display: flex;
}
.show-img-category li
{
    width: 17%;
    margin: 0 10px;
    background: #fff;
    text-align: center;
}
.show-img-category li a
{
    color:#000;
}
.show-img-category li img
{
    width:100%;
}

/*category-product*/
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: #ebe9eb;
    border-radius: 5px;
    color: #000;
}
.woocommerce-breadcrumb
{
    text-align: right;
    padding: 10px 30px;
    color: #1a8f63;
    direction: rtl;
}
.woocommerce-breadcrumb a
{
    color: #000;
}

/*category-product*/
/*search-page*/
.search-page
{

    width: 94%;
    margin-bottom: 100px;
}
.search-page .boxs
{
    position: relative;
    top: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-flow: wrap;
    justify-content: right;
    width: 100%;
}
.search-page .boxs .box
{
    width: 20%;
    margin: 20px;
    display: block;
    text-align: center;
    border-radius: 20px;
    padding: 2px;
    background: #000000;
    box-shadow: 0px 0px 5px 0px #0f1b2a;
}
.search-page .boxs .box .desc h2 {
    font-size: 1.5rem;
    padding: 15px 5px 0px 5px;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    direction: rtl;
    text-align: right;
    color: #fff;
}
.search-page .boxs .box .desc label {
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    display: block;
    color: #e5bd5d;
}

.search-page .boxs .box .title h2
{
    font-size: 1rem;
    position: relative;
    top: 5px;
    min-height: 20px;
    line-height: 10px;
    padding: 10px 20px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    direction: rtl;
}
.search-page .boxs .box .img img
{
    width: 100%;
    border-radius: 20px;
}

/*search-page*/


/*shop*/
.woocommerce-breadcrumb
{
    color: #23a553;
    font-size: 1.3rem;
    border: 1px #dfdfdf solid;
    border-radius: 5px;
    width: 96%;
    margin: 0 auto 15px;
    position: relative;
    top: 7px;
    padding: 6px 10px;
    background: #fff;
}
.woocommerce-breadcrumb a
{
    color:#000;
}
.woocommerce
{
    width: 60%;
    margin: 0 auto;
}
.woocommerce table.shop_table {
    border: 1px solid rgba(0,0,0,.1);
    text-align: right;
    width: 100%;
    border-collapse: separate;
    border-radius: 5px;
    direction: rtl;
    margin: 0 auto;
}
.woocommerce .cart-collaterals table
{
    direction: rtl !important;
}
.cart-subtotal
{
    display:none;
}
.order-total
{
    text-align: left;
}
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table thead, .woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tfoot {
    display: none;
}
.wc_payment_methods ,.woocommerce-terms-and-conditions-wrapper{
    display: none;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: #ffffff;
    border-radius: 5px;
    color: #000;
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    font-size: 100%;
    margin: 0;
    line-height: 1;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: visible;
    padding: .618em 1em;
    font-weight: 700;
    border-radius: 3px;
    right: auto;
    color: #fff6f6;
    background-color: #23a553;
    border: 0;
    display: inline-block;
    background-image: none;
    box-shadow: none;
    text-shadow: none;
    border: 1px solid #fff;
    border-radius: 5px;
    font-family: iransans;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: #23a553;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    width: 96%;
    text-align: center;
    padding: 15px;
    font-size: 1.3rem;
    font-family: 'IRANSans';
}
.woocommerce-billing-fields__field-wrapper {
    direction: rtl;
}

.woocommerce table.shop_table .product-name a
{
    color:#000;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
    background-color: #96588a;
    color: #23a553;
    background: #fff;
    border: 1px solid #e0e0e0;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    outline: 0;
    line-height: normal;
    padding: 7px;
    border-radius: 5px;
    border: 1px solid #23a553;
    font-size: 1.5rem;
    font-family: 'IRANSans';
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
    float: none;
    width: 60%;
    margin: 0 auto;
}
.woocommerce .col2-set, .woocommerce-page .col2-set {
    width: 100%;
}
.woocommerce-billing-fields {
    width: 100%;
    margin: 30px auto;
}
.woocommerce-billing-fields h3 {
    display:none;
}

.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
    width: 50%;
    height: 36px;
    padding: 0 5px;
    border-radius: 5px;
    border: 1px solid #23a553;
    font-family: iransans;
}
.woocommerce #respond input#submit:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {
    background-color: #fafafa;
    text-decoration: none;
    background-image: none;
    border: 1px solid #23a553;
    color: #23a553;
    border-radius: 5px;
}
.woocommerce table.shop_table td {
    vertical-align: middle;
    line-height: 1.5em;
    text-align: center;
    width: 30%;
    padding: 10px;
}
.woocommerce-additional-fields
{
    display:none;
}
#billing_phone , #billing_email
{
    text-align: left;
    direction: ltr;
}
.woocommerce #content table.cart img, .woocommerce table.cart img, .woocommerce-page #content table.cart img, .woocommerce-page table.cart img {
    height: 40px;
    width: 60px;
    position: relative;
    top: 5px;
}
.woocommerce table.shop_table th {
    font-weight: 700;
    padding: 9px 12px;
    line-height: 1.5em;
    text-align: center;
}
.woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
    width: 100%;
    margin-top: 20px;
}
.woocommerce .quantity .qty {
    width: 3em;
    text-align: right;
}
.woocommerce .btn-center
{
    text-align: left;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    float: left;
    width: 100%;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals  .cart_totals .wc-proceed-to-checkout{
    text-align: left;
}
.cart_totals h2
{
    display:none;
}
.woocommerce-shipping-fields
{
    display:none;
}
.woocommerce {
    position: relative;
    top: 0;
    z-index: 20;
    background: #fff;
}
.woocommerce form .form-row-last, .woocommerce-page form .form-row-last {
    float: left;
    width: 100%;
}
.woocommerce-form-coupon-toggle
{
    display:none;
}
.woocommerce-message::before {
    content: "\e015";
    color: #1cc70e;
}
.woocommerce-notices-wrapper
{
    position: relative;
    top: 0;
    z-index: 20;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message {
    padding: 1em 3.5em 1em 2em;
    margin: 0;
    position: relative;
    background-color: #f7f6f7;
    color: #515151;
    border-top: none;
    list-style: none outside;
    width: auto;
    word-wrap: break-word;
    direction: rtl;
}
.woocommerce-message::before {
    content: "\e015";
    color: #1cc70e;
    position: absolute;
    top: 19px;
}
.woocommerce-error .button, .woocommerce-info .button, .woocommerce-message .button {
    float: left;
    background: #1cc70e;
    color: #fff;
    padding: 3px 8px;
    border-radius: 10px;
}
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table thead ,.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tfoot
{
    display:none;
}
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tbody .cart_item
{
    display: flex;
    justify-content: center;
    width: 100%;
    border: 1px solid rgba(0,0,0,.1);
    border-right: none;
    border-left: none;
    border-top: none;
}
#order_review_heading
{
    text-align: center;
}
.main_page
{
    min-height: 500px;
}

.related-title
{          text-align: right;
    padding: 5px 10px;
    color: #ff0000;
    margin: 15px 0;
}
.box-product-related
{
    display: flex;
    justify-content: center;
    flex-flow: wrap;
    width: 90%;
    margin: 0 auto;
}
.box-product-related .item
{
    width: 20%;
    margin: 20px;
    display: block;
    text-align: center;
    border-radius: 20px;
    padding: 2px;
	background:#000000;
    box-shadow: 0px 0px 5px 0px #0f1b2a;
}

.box-product-related .item .img img {
    width: 100%;
    border-radius: 20px;
}
.box-product-related .item .desc h2 {
    font-size: 1.5rem;
    padding: 15px 5px 0px 5px;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    direction: rtl;
    text-align: right;
    color: #fff;
}
.box-product-related .item .desc label {
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    display: block;
    color: #e5bd5d;
}
.blog
{
    width: 100%;
    padding: 20px 0;

}
.blog .title_main
{
    color: #c64564;
    font-size: 2.2rem;
    font-family: two;
    position: relative;
    bottom: 10px;
    text-align: right;
}
.blog .title_main::before {
    content: url('image/logo3.png');
    float: right;
    margin-right: 10px;
    position: relative;
    bottom: 20px;
}

.blog .boxs
{
    width: 100%;
    display: flex;
    justify-content: center;

}
.blog .boxs .box
{
    width: 20%;
    margin: 10px;
    box-shadow: 0px 1px 2px 1px #2b2736;
    border-radius: 10px;
    padding: 2px;
    background: #c64564;
    cursor: pointer;

}
.blog .boxs .box .img
{
    width: 100%;

}
.blog .boxs .box .img img
{
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 1px 2px 1px #2b2736;

}
.blog .boxs .box strong
{
    text-align: right;
    color: #fff;
    padding-bottom: 6px;
    display: block;
    padding-right: 10px;
    font-size: 1.2rem;
    font-family: 'IRANSans';
}
.blog_category .main .boxs
{
    display: grid;
    grid-template-columns: 28% 40% 28%;
    grid-gap: 1rem;
    justify-content: center;
    grid-row-gap: 3rem;
    margin: 60px 60px 0 60px;
    padding: 0 30px;
    justify-items: center;
    justify-self: center;
}

.blog_category .main .boxs a
{
    display: grid;
    grid-auto-rows: max-content;
    align-content: center;
    margin: 17px 0;
}
.blog_category .main .boxs a .img
{
    width: 100%;
    height: 100%;
    box-shadow: 0px 1px 2px 1px #d33b33;
    border-radius: 10px;
}
.blog_category .main .boxs a .img img
{
    width: 100%;
}
.blog_category .main .boxs a h2
{
    position: relative;
    font-family: 'IRANSans';
    padding: 5px;
    font-size: 1.2rem;
    text-align: center;
}
@media only screen and (max-width: 900px){
    .majd {
        display: flex;
        list-style: none;
        justify-content: right;
        width: 97%;
    }
    .blog_category .main .boxs {
        display: grid;
        grid-template-columns: 100%;
        grid-gap: 1rem;
        justify-content: center;
        grid-row-gap: 3rem;
        margin: 10px;
        padding: 0 30px;
        justify-items: center;
        justify-self: center;
        flex-direction: column;
    }
    .blog_category .main .boxs a {
        display: flex;
        grid-auto-rows: max-content;
        align-content: center;
        margin: 17px 0;
        width: 90%;
    }
    .single_product {
        display: flex;
        padding: 5px 20px;
        flex-direction: column;
    }
    .single_product .single_product_gallery {
        width: 100% !important;
    }
    .single_product .single_product_excerpt {
        width: 100% !important;
    }
	.box-product-related {
    width: 96%;
   }
	
    .single_product_excerpt .product-content .purchase-info
    {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .single_product .single_product_excerpt .product-content .purchase-info form .single_add_to_cart_button {
        width: 200px;
        border: 1px solid #fff;
        background: #4caf50;
        font-size: 1rem;
        height: auto;
        color: #fff;
        line-height: 40px;
        font-family: 'IRANSans';
        margin: 0 10px;
        border-radius: 10px;
        cursor: pointer;
    }
    .single_product .single_product_excerpt .product-content .product-price .last-price {
        color: #000;
        direction: rtl;
        padding-right: 130px;
        padding-bottom: 10px;
    }
    .woocommerce-breadcrumb {
        color: #23a553;
        font-size: 1rem;
        border: 1px #dfdfdf solid;
        border-radius: 5px;
        width: 96%;
        margin: 0 auto 15px;
        position: relative;
        top: 7px;
        padding: 6px 6px;
        background: #fff;
        font-family: 'IRANSans';
    }
    .woocommerce {
        width: 100%;
        margin: 0 auto;
    }
    .woocommerce table.shop_table_responsive tr td, .woocommerce-page table.shop_table_responsive tr td {
        display: block;
        text-align: left!important;
        width: 94%;
    }
    .woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
        float: none;
        width: 94%;
        margin: 0 auto;
    }
    .box-product-related .item {
    width: 45%;
    margin: 10px 5px;
    display: block;
    text-align: center;
    border-radius: 20px;
    padding: 3px;
    box-shadow: 0px 0px 6px 0px #0f1b2a;
    }
	.search-page .boxs .box {
    width: 40%;
    margin: 15px 10px;
    display: block;
    text-align: center;
    border-radius: 20px;
    padding: 2px;
    background: #000000;
    box-shadow: 0px 0px 5px 0px #0f1b2a;
}
}
/*shop*/


/*shop*/
/*single page*/
.page .main
{
    background: #fff;
}
.page .main .post-content
{
    width: 90%;
    margin: 0 auto;
    direction: rtl;
    line-height: 50px;
    text-align: justify;
}
.page .main .post-content h2 ,.page .main .post-content h3
{
    color: #1a8f63;
    padding: 10px;
    font-size: 1.5rem;
}
/*single page*/
/*shop single*/

.single_product
{
    display: flex;
    padding: 5px 20px;
}

.single_product .single_product_gallery
{
width:50%;
}

.single_product .single_product_excerpt
{
width:50%;
}
.single_product_excerpt .product-content .product-detail pre
{
    display: block;
    font-size: 2.1rem;
    color: #000;
    text-align: right;
    padding: 5px;
    line-height: 25px;
    white-space: pre-line;
    font-family: iransans;
    direction: rtl;
    background-color: transparent !important;
    border: none !important;
}
.single_product_excerpt .product-content 
{
text-align: right;
}
.single_product_excerpt .product-content .product-title
{
    text-align: right;
    direction: rtl;
    color: #322727;
    padding: 5px 0 10px 0;
    font-size: 2.2rem;
    line-height: 40px;
}
.single_product_excerpt .product-content a
{
    color: #0172be;
    text-align: right;
}
.single_product .single_product_excerpt .product-content .product-detail
{    height: auto;
    min-height: 333px;
}
.single_product .single_product_excerpt .product-content .product-price .last-price
{
    color: #000;
    direction: rtl;
    padding-right: 70px;
    padding-bottom: 10px;
}
.single_product .single_product_excerpt .product-content .purchase-info form
{
    display: flex;
    flex-direction: row-reverse;
}
.single_product .single_product_excerpt .product-content .purchase-info form .quantity .qty
{
    width: 60px;
    text-align: center;
    height: 40px;
    border-radius: 10px;
    border: 2px solid #16855d;
}
.single_product .single_product_excerpt .product-content .purchase-info form .single_add_to_cart_button
{
    width: 200px;
    border: 1px solid #fff;
    background: #26B130;
    font-size: 1.5rem;
    height: 40px;
    color: #fff;
    line-height: 38px;
    font-family: 'IRANSans';
    margin: 0 10px;
    border-radius: 10px;
}

.breadcrumbs
{
    text-align: right;
    padding: 10px 30px;
    color: #0171bb;
    background: #fff;
    direction: rtl;
}
.breadcrumbs a
{
    color: #000;
}
.related-products
{
    margin: 0px auto 70px !important;
}
/*shop single*/
/*slider product*/
.header-slider
{
    width: 100%;
    padding: 10px 30px;
}
.swiper-container {
  height: calc(100vh - 100px);
  margin: 50px;
}

.swiper-slide {
  overflow: hidden;
}

.slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 15px;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.swiper-button-next {
  right: 30px;
}

.swiper-button-prev {
  left: 30px;
}
.header-slider .slider-main
{
        width: 100%;
    height: 500px;
}

.header-slider .cat
{
    width: 100%;
    height: 100%;
    padding: 30px 10px 15px 10px;
    margin: 20px auto 0;
    background: #fff;
    text-align: center;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 10%);
}
.header-slider h4
{
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #656565;
}

.header-slider .cat .boxs
{
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
}
.header-slider .cat .boxs .box
{
    width: 10%;
    margin: 3px;
    font-size: 3rem;
    color: #0171bb;
    line-height: 30px;
}
.header-slider .cat .boxs .box p
{
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
    color: #000;
    direction: rtl;
}

.header-slider .cat .boxs .box:nth-child(even)> img
{
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 5.3px 3px 2px #ef6d21;
}

.header-slider .cat .boxs .box img:hover {
    transform: translate(0px, -3px) scale(1.03);
}
.header-slider .slider-main img
{
    width: 60%;
    border-radius: 15px;
}
.slider-single {
    overflow: hidden;
    justify-content: center;
    display: flex;
    width: 100% !important;
    margin: 0 auto 10px !important;
}


.slider .slides {
    width: 400px;
    height: 400px;
    margin: 5px;
}
.slider img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0 0.5rem 0 0.5rem;
    padding: 3px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.majd {
    display: flex;
    list-style: none;
    justify-content: right;
    width: 73%;
}
.majd ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}
.majd ul li {
  cursor: pointer;
}
.majd ul li {
  margin: 10px;
}
.majd ul li img {
    width: 94px;
    height: 70px;
    object-fit: cover;
    padding: 2px;
    border: 1px solid rgba(0, 0, 0, 0.2);

}

.slider {
    width: 93%;
    margin: 0px auto 100px;
}

.slick-slide {
    margin: 13px 10px;
}

.slick-slide img {
    width: 100%;
    border-radius: 10px;
}

.slick-prev:before,
.slick-next:before {
    color: #000;
}


.slick-slide {
    transition: all ease-in-out .3s;
}

.slick-active {
    opacity: 1;
}

.slick-current {
    opacity: 1;
}
.slick-initialized .slick-slide div {
    color: #fff;
    text-decoration: none;
    border-radius: 10px 10px 9px 10px;
    text-align: right;
}
.slick-initialized .slick-slide .product-body {
    color: #fff;
    text-decoration: none;
    border-radius: 10px 10px 9px 10px;
    text-align: right;
    background: #000;
}


    .pricebox
{
text-align: center !important;
}

.product-majd .slick-initialized .slick-slide div .col
{
box-shadow: 0px 4px 8px 1px #ddd;
}