* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* theme color */
    --main-color-one: #019345;
    --main-color-one-shadow: #407bff31;
    --main-color-one-hover: #057338;
    --main-color-two: #FFA41B;
    --main-color-two-shadow: #ffa41b31;
    --main-color-two-hover: #ed9209;
    --main-color-three: #189D0E;
    --main-color-three-shadow: #189D0E31;
    --main-color-three-hover: #0b8502;
    --bg-site: #f4f5f9;
    /* typographi */
    --font-size:14px;
    --color-site: #333333;
    /* shadow */
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-box: rgb(0 0 0 / 10%) 0px 0px 10px 0px !important;
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-inner: inset 0 2px 12px 4px rgb(0 0 0 / 5%);
    /* text */
    --text-muted: #565757;
    --text-muted-two: #929292;
    /* border */
    --border-muted: #ced4da;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 0;
    color: var(--color-site);
    line-height: 1.5;
}

.nav-link{
    /* color: var(--color-site) !important; */
}

p{
    line-height: 27px;
}


.title-font{
    font-family: 'title-font';
}

.tooltip{
    font-size: 12px !important;
}

input[type=checkbox] {
    width: 20px;
    height: 20px;
    margin-left: 7px;
}

.text-muted-two{
    color: var(--text-muted-two);
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: var(--main-color-one);
}

.content {
    padding: 20px 0;
}

.content-box {
    background-color: #fff;
    box-shadow: var(--shadow-box);
    padding: 20px 0px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.content-box:nth-last-child(1) {
    margin-bottom: 0;
}

.font-en {
    font-family: 'shabnam-en-num' !important;
}


.text-overflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.def-color {
    color: var(--color-site) !important;
}

.py-20 {
    padding: 20px 0;
}

.font-10 {
    font-size: 10px;
}

.font-11 {
    font-size: 11px;
}

.font-12 {
    font-size: 12px;
}

.font-13 {
    font-size: 13px;
}

.font-14 {
    font-size: 14px;
}

.font-15 {
    font-size: 15px;
}

.font-16 {
    font-size: 16px;
}

.font-17 {
    font-size: 17px;
}

.font-18 {
    font-size: 18px;
}

.font-19 {
    font-size: 19px;
}

.font-21 {
    font-size: 21px;
}
.font-22 {
    font-size: 22px;
}
.font-23 {
    font-size: 23px;
}
.font-24 {
    font-size: 24px;
}
.font-25 {
    font-size: 25px;
}
.font-26 {
    font-size: 26px;
}
.font-27 {
    font-size: 27px;
}
.font-28 {
    font-size: 28px;
}
.font-29 {
    font-size: 29px;
}
.font-30 {
    font-size: 30px;
}

.text-overflow-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.text-overflow-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.text-overflow-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.text-justify{
    text-align: justify;
}

.span-primary{
    display: inline;
    background-color: #0967ff13;
    border-bottom: 1px dashed #0761f6;
    padding: 4px 7px;
    color: #0547b2;
}

.form-group {
    margin-bottom: 15px;
}

.main-color-one-color {
    color: var(--main-color-one) !important;
}

.no-highlight {
    overflow: visible !important;
}

.btn{
    transition: 200ms;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.btn:not(.no-highlight):before{
    display: inline-block;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 100%;
}
.btn:active{
    transform: translate(0,2px);
}
.btn:hover:before{
    transition: 800ms;
    left:-100%;
}


.main-color-one-bg {
    background-color: var(--main-color-one) !important;
    color: #fff !important;
    box-shadow: 0 5px 5px var(--main-color-one-shadow) !important;
}

.main-color-one-bg:hover {
    background-color: var(--main-color-one-hover) !important;
    color: #fff !important;
}

.main-color-two-color {
    color: var(--main-color-two) !important;
}

.main-color-two-bg {
    background-color: var(--main-color-two) !important;
    color: #fff !important;
    box-shadow: 0 5px 5px var(--main-color-two-shadow) !important;
}

.main-color-two-bg:hover {
    background-color: var(--main-color-two-hover) !important;
    color: #fff !important;
}

.main-color-three-color {
    color: var(--main-color-three) !important;
}

.main-color-three-bg {
    background-color: var(--main-color-three) !important;
    color: #fff !important;
    box-shadow: 0 5px 5px var(--main-color-three-shadow) !important;
}

.main-color-three-bg:hover {
    background-color: var(--main-color-three-hover) !important;
    color: #fff !important;
}

.mco-hover,
.mct-hover,
.mctt-hover {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.mco-hover:hover {
    color: var(--main-color-one-hover) !important;
}

.mct-hover:hover {
    color: var(--main-color-two-hover) !important;
}

.mctt-hover:hover {
    color: var(--main-color-three-hover) !important;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.shadow {
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.shadow-inner {
    box-shadow: inset 0 2px 12px 4px rgb(0 0 0 / 5%);
}

.shadow-box {
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 10px 0px !important;
}

.pointer {
    cursor: pointer;
}

.border-muted {
    border-color: var(--border-muted) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
    color: #fff;
}


.swiper-pagination-bullet-active {
    background: var(--main-color-one);
    width: 25px;
    height: 7px;
    border-radius: 10px;
}

.border-animate {
    /* you can change these variables to control the border */
    --border-color: var(--main-color-one);
    --border-width: 2px;
    --bottom-distance: 0px;
    /* you can increase this */
    color: #666;
    display: inline-block;
    background-image: linear-gradient(var(--border-color), var(--border-color));
    background-size: 0% var(--border-width);
    background-repeat: no-repeat;
    transition: background-size 0.3s;
    margin: 5px 0;
}

.fromCenter {
    background-position: 50% calc(100% - var(--bottom-distance));
}

.fromRight {
    background-position: 100% calc(100% - var(--bottom-distance));
}

.fromLeft {
    background-position: 0 calc(100% - var(--bottom-distance))
}

.border-animate:hover {
    background-size: 100% var(--border-width);
}

.border-animate:focus {
    background-size: 100% var(--border-width);
}

/* bootstrap touch spin */

.bootstrap-touchspin-down,
.bootstrap-touchspin-up {
    height: 100%;
    width: 40px;
    border: 0;
    outline: none;
    font-weight: bold;
    background: var(--main-color-one);
    box-shadow: var(--shadow-box);
    color: #fff;
}

.bootstrap-touchspin-up{
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    margin-right: 7px;
}

.bootstrap-touchspin-down{
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
    margin-left: 7px;
}

.form-counter {
    width: 50px;
    height: 30px;
    text-align: center;
    font-weight: bold;
    border: 0;
    background: #fff;
    box-shadow: var(--shadow-box);
    border-radius: 3px !important;
    border: 1px solid #eee;
}

.form-counter:focus {
    border: none;
    outline: none;
}

/* end bootstrap touchspin */

/* end base style */

/* start product box */

.product-box{
    background-color: #fff;
    box-shadow: var(--shadow-box);
    border-radius: 10px;
    padding: 10px;
}

.product-box.free-mode{
    width: 300px;
}

.product-header-btn{
    display: flex;
}

.product-header-btn a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: #f4f4f4;
    transition: 200ms;
}

.product-header-btn a i{
    font-size: 16px;
}

.product-header-btn a:hover{
    background-color: #ddd;
}


.product-header-btn a:not(:last-child){
    margin-left: 5px;
}

.product-box .product-timer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product-box .product-timer .timer-label{
    padding: 5px 10px;
    background-color: #fc6d6d3b;
    border-radius: 10px;
}

.product-box .product-timer .timer-label span{
    color: #f21919;
    font-size: 13px;
}

.product-box .product-image{
    height: 180px;
    display: flex;
    margin: 5px 0;
    position: relative;
}

.product-box .product-image img{
    height: 100%;
    object-fit: cover;
    display: block;
    margin: auto;
    transition: 0.5s all ease-in-out;
}

.product-box .two-image {
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: transform 1.5s, visibility .5s, opacity .5s;
    -webkit-transition: transform 1.5s, visibility .5s, opacity .5s;
    -moz-transition: transform 1.5s, visibility .5s, opacity .5s;
    -ms-transition: transform 1.5s, visibility .5s, opacity .5s;
    -o-transition: transform 1.5s, visibility .5s, opacity .5s;
}


.product-box:hover .one-image {
    opacity: 0;
    visibility: hidden;
}

.product-box:hover .two-image {
    z-index: 1;
    visibility: visible;
    opacity: 1;
    display: block;
    transform: scale(1.07);
}

.product-box .product-title{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    height: 55px;
}

.product-box .product-title .title p{
    margin-bottom: 5px;
    font-weight: bold;
}

.product-box .product-title .title span{
    color: var(--text-muted-two) !important;
    font-size: 12px;
}

.product-box .product-title .rating{
    display: flex;
    align-items: center;
}

.product-box .product-title .rating .icon{
    margin-right: 5px;
}

.product-box .product-title .rating .icon i{
    color: #fbc02a;
    font-size: 14px;
    vertical-align: super;
}

.product-box .product-action{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 7px;
    background: #f7f7f7;
    border-radius: 10px;
}

.new-price{
    font-weight: bold;
    margin-bottom: 5px;
    /* color: #05bf71; */
}

.old-price{
    text-decoration: line-through;
    color: #aaa;
    margin-bottom: 0;
    font-weight: normal;
}

/* end product box */





/* float btns */

div#btncollapzion {
    left: 3px !important;
    bottom: 48px !important;
}

.progress-wrap.d-lg-block.d-none.active-progress {
    left: 12px;
    box-shadow: none !important;
}

.progress-wrap{
    box-shadow: none;
}

.progress-wrap{
    margin-top: 12px !important;
    box-shadow: 0 4px 17px 0 rgba(0, 0, 0, .14), 0 1px 32px 0 rgba(0, 0, 0, .12), 0 2px 9px -1px rgba(0, 0, 0, .2);
}

.progress-wrap::after, .progress-wrap{
    line-height: 55px !important;
    height: 55px !important;
    width: 55px !important;
}

/* end float btns */

/* start page product */



/* start product gallery */

.product-gallery img{
    max-width: 80%;
    display: block;
    margin: auto;
}

.product-gallery .swiper-pagination{
    bottom: 20px;
}

.product-gallery .swiper-slide {
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 10px;
    padding-bottom: 60px;
}

.product-gallery .swiper-slide .swiper-zoom-container{
    padding: 10px;
}

.product-gallery .swiper-button-next,
.product-gallery .swiper-button-prev{
    background-color: #eee;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
}

.product-gallery .swiper-button-next::after,
.product-gallery .swiper-button-prev::after{
    color: var(--color-site);
}

.product-gallery-thumb img{
    display: block;
    max-width: 80%;
    margin: auto;
    opacity: 0.6;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
}

.product-gallery-thumb img:hover{
    opacity: 1;
}

.product-gallery-thumb .swiper-slide{
    border: 1px solid #eee;
    border-radius: 10px;
    transition: 0.3s all ease-in-out;
    padding: 10px;
}

.product-gallery-thumb .swiper-slide-thumb-active{
    border-color: var(--main-color-one);
}

.product-gallery-thumb .swiper-slide-thumb-active img{
    opacity: 1;
}

/* icon product box */


.icon-product-box {
    z-index: 10;
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon-product-box-item {
    cursor: pointer;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background: #eee;
    padding: 5px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary .swiper-button-next,
.summary .swiper-button-prev {
    top: 70% !important;
}


.icon-product-box-item i {
    font-size: 16px;
    display: inherit;
}

.icon-product-box-item span {
    display: block;
    text-align: center;
    font-size: 14px;
}

.pro_gallery{
    position: relative;
}

.special-label{
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 500;
}

.special-label img{
    width: 80px;
}

/* end icon product box */

/* end product gallery */

.product-meta-title{
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.product-meta-title img{
    max-width: 100px;
}

.product-meta-feature{
    margin-top: 20px;
}

.product-meta-feature-items ul{
    margin-top: 15px;
}

.product-meta-feature-items ul li{
    color: var(--text-muted);
}

.product-meta-feature-items ul li:not(:last-child){
    margin-bottom: 10px;
}

.product-meta-feature-items ul li span{
    color: var(--text-muted-two);
}

.product-meta-feature-items ul li strong{
    margin-right: 7px;
    color: var(--text-muted);
    font-weight: normal;
}

.product-meta-rating .count-comment{
    margin-left: 7px;
    padding-left: 5px;
    border-left: 2px solid #ddd;
}

.product-meta-rating .count-rating{
    display: flex ;
    align-items: center;
}

.product-meta-rating .count-rating i{
    display: inherit;
    font-size: 16px;
    color: gold;
    margin-right: 5px;
}

.product-meta-garanty{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 15px;
}

.product-meta-garanty i{
    margin-left: 7px;
    color: #0b8502;
}   

.product-meta-color{
    margin-top: 20px;
}

.product-meta-color h5{
    margin-bottom: 15px;
}

.product-meta-color-items{
    margin-top: 10px;
}

/* .product-meta-color-items label {
    background-color: #eee;
    font-size: 14px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
} */

.product-meta-color-items label:hover{
    background-color: #e2e2e2 !important;
    
}

.product-meta-color-items .btn-check:checked+.btn{
    border-color: var(--main-color-two) !important;
    box-shadow: 0 5px 5px #ffa41b31 !important;
}

.product-meta-color-items .btn-check:checked+.btn:hover{
    background-color: transparent !important;
}

/* .product-meta-color-items label span {
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 7px;
    position: relative;
} */

.product-meta-color-items .btn-check:checked+.btn span::before {
    content: '\F26E';
    color: #fff;
    font-size: 22px;
    font-family: 'bootstrap-icons' !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product-meta-count{
    margin-top: 15px;
}

.product-meta-action {
    margin-top: 30px;
    border-radius: 10px;
    background-color: #eee;
    padding: 20px 10px;
    box-shadow: var(--shadow-lg);
}

.product-meta-action p.old-price{
    border-left: 2px solid #aaa;
    padding-left: 10px;
}

.product-float-brand img{
    max-width: 100px;
}

.product-float-action .counter .input-group{
    justify-content: center;
}

/* read more */

.read-more-state {
    display: none;
}

.read-more-target {
    display: none;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    font-size: 0;
    transition: .25s ease;
    -webkit-transition: .25s ease;
    -moz-transition: .25s ease;
    -ms-transition: .25s ease;
    -o-transition: .25s ease;
}

.read-more-state:checked~.read-more-wrap .read-more-target {
    opacity: 1;
    font-size: inherit;
    max-height: 999em;
    visibility: visible;
    display: block;
}

.read-more-state~.read-more-trigger:before {
    content: 'بیشتر +';
}

.read-more-state:checked~.read-more-trigger:before {
    content: 'بستن _';
}

.read-more-trigger {
    margin-top: 10px;
    cursor: pointer;
    display: inline-block;
    font-size: .9em;
    background-color: var(--main-color-one);
    padding: 5px 20px;
    color: #fff;
    border-radius: 10px;
}



/* end read more */

/* start product-descs */
.product-desc {
    position: relative;
}

.product-desc-tab {
    border-bottom: 1px solid #eee;
    background: #fff;
    overflow-x: scroll;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.product-desc-content p {
    line-height: 35px;
}

.product-desc-tab::-webkit-scrollbar {
    display: none;
}

.product-desc-tab ul {
    min-width: 450px;
    flex-wrap: nowrap;
}

.product-desc-tab ul li {
    margin-left: 5px;
}

.product-desc-tab ul li button {
    border: none;
    height: 100%;
    outline: none;
    box-shadow: none;
    background-color: transparent;
}

.product-desc-tab ul li button a {
    display: block;
    padding: 10px;
    white-space: nowrap;
    color: var(--color-site);
    padding-bottom: 15px;
}

.product-desc-tab ul li button.active {
    height: 100%;
    border-bottom: 3px solid var(--main-color-one);
    outline: none;
    background: #fff;
    transition: 150ms border-top linear;
}

.product-desc-tab ul li button.active a {
    color: var(--main-color-one);
    font-weight: bold;
}

.product-desc-tab ul li button i {

    margin-left: 5px;
}

.product-desc-tab-content {
    padding: 20px 0;
}

.product-desc-tab-content table tr th {
    width: 200px;
}

.product-desc-tab-content table tr td {
    padding: 12px 0;
}

.tab-title {
    font-size: 18px;
    color: #505050;
    text-align: center;
    font-weight: 600;
    line-height: 1.7;
}


.product-desc-content img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.table-product {
    --bs-table-striped-bg: rgb(0 0 0 / 3%);
}

.comment {
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: var(--shadow-md);
    background-color: #fff !important;
    border: 1px solid #eee;
}

.comment .title {
    background-color: #eee;
    padding: 10px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.comment-replay .title {
    background-color: #fff !important;
}

.comment .avatar img {
    width: 40px;
    height: 40px;
}

.star i.bi-star {
    color: #ccc;
}

.star i.bi-star-fill {
    color: #f7ad0d;
}

.star i.bi-star-half {
    color: #f7ad0d;
}

.positive-nav ul li {
    position: relative;
    padding-right: 10px;
}

.comment .comment-rates .positive {
    padding: 10px 0;
}

.positive-nav ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background: #0d9a00;
    border-radius: 50%;
}


.negitive-nav ul li {
    position: relative;
    padding-right: 10px;
}

.comment .comment-rates .negitive {
    padding: 10px 0px;
}

.negitive-nav ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background: #d03404;
    border-radius: 50%;
}


.comment-reply {
    padding: 20px 0;
}



/* end product-descs */

/* product feature */


.shop-feature {
    margin-top: 10px;
    padding: 10px 0;
    border-top: 1px solid #f1f1f0;
    border-bottom: 6px solid #f1f1f0;
}

.shop-feature ul {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.shop-feature ul li {
    margin: 0 10px;
    padding-left: 10px;
}

.shop-feature ul li img {
    width: 40px;
    margin: 5px auto;
    display: block;
}

.shop-feature ul li span {
    display: block;
    font-size: 12px;
    margin-top: 5px;
    color: var(--text-muted-two);
}

/* end product feature */


/* start content product */

.box-tabs ul li a {
    color: #6f6f6f;
}

.box-tabs ul li i {
    vertical-align: -8px;
    color: #ccc;
    padding: 3px;
}

.box-tabs .nav-tabs .nav-link {
    border: 0 solid transparent;
}

.box-tabs .nav-tabs .nav-link.active {
    border-top: 5px solid #00bfd6;
    border-radius: 0;
}

.box-content h4 {
    color: #6f6f6f;
}

.box-content span {
    color: #6f6f6f;
    font-size: 15px;
}

.box_list svg{
    margin-left: 5px;
}

.box-content .box_list .title {
    color: #4d4d4d;
}

.box-content .box_list i {
    vertical-align: -7px;
    color: #00bfd6;
}

.block {
    display: block;
}

.box_params_list p {
    display: block;
    padding: 14px 18px 12px;
    font-size: 13px;
    line-height: 1.692;
    color: #4d4d4d;
    min-height: 47px;
    position: relative;
    margin-bottom: 15px;
}

.border_right_custom1 {
    border-right: 3px solid #eee;
    background: #fff;
}

.border_right_custom2 {
    background-color: #eee;
    border-radius: 10px;
}

.nav-tabs-custom {
    background: #F5F5F5;
}

.box_comment .bc1 {
    padding: 10px 33px 33px 60px;
}

.bc1 .row {
    background: #fcfcfc;
    border-radius: 5px;
}

.box_comment .progress_title,
.box_comment .progress_title2 {
    font-size: 14px !important;
}

.box_list p.title{
    font-weight: bold;
}

/* end content product */

/* video */

.video{
    position: relative;
}

.video .play-btn{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.video .play{
    background-color: var(--main-color-one);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: #fff;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    position: relative;
}

.video .play::before{
    content: '';
    border-radius: 50%;
    z-index: -1;
    position: absolute;
    top: -25%;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    animation: pulse 2s infinite;
    transform: translateX(-50%) scale(1);
    background-color: var(--main-color-one-shadow);
}

@keyframes pulse {
	0% {
		transform: scale(0.95) translateX(-50%);
		box-shadow: 0 0 0 0 rgba(4, 72, 208, 0.775);
}

	70% {
		transform: scale(1) translateX(-50%);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.95) translateX(-50%);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

.video .play i{
    color: #fff;
}

.video video[poster]{
    box-shadow: var(--shadow-box);
    border-radius: 15px;
    border: 2px solid #eee;
    max-height: 300px;
    width: 100%;
}

.video video[poster].vd-style{
    opacity: 0.8;
    filter: grayscale(50%);
}

.play-opacity{
    opacity: 0.2;
}

.play-opacity .play::before{
    animation: none;
    background-color: transparent;
}

/* end video */

/* rating */

.rating {
    border: none;
}

.rating:not(:checked)>input {
    position: absolute;
    /* top:-9999px; */
    clip: rect(0, 0, 0, 0);
}

.rating:not(:checked)>label {
    float: right;
    width: 1em;
    padding: 0 .1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 200%;
    line-height: 1.2;
    color: #ddd;
}

.rating:not(:checked)>label:before {
    /* content: '★ '; */
    content: "\f586";
    font-family: 'bootstrap-icons';
    width: 30px;
    height: 30px;
    position: absolute;
    background-color: #fff;
}

.rating>input:checked~label {
    color: #f7ad0d;
}

.rating:not(:checked)>label:hover,
.rating:not(:checked)>label:hover~label {
    color: #f7ad0d;
}

.rating>input:checked+label:hover,
.rating>input:checked+label:hover~label,
.rating>input:checked~label:hover,
.rating>input:checked~label:hover~label,
.rating>label:hover~input:checked~label {
    color: #f7ad0d;
}

.rating>label:active {
    position: relative;
}

/* end rating */

/* start comment */

.comment-item{
    position: relative;
}

.comment-item label.label-float {
    position: absolute;
    top: -14px;
    background-color: #fff;
    right: 25px;
    padding: 5px;
}

.comment-item input.form-control{
    padding-top: 20px;
    padding-bottom: 20px;
    vertical-align: -webkit-baseline-middle;
    vertical-align: -moz-baseline-middle;
    text-align: right;
    border-radius: 25px;
    font-size: 14px;
}

tags.tagify.commentTags {
    border-radius: 30px;
    background: #f8f8f8;
}

.btn-comment {
    /* padding: 15px 150px; */
    border-radius: 30px;
}

.tag-pos .tagify__tag>div::before {
    inset: unset;
}

.tag-pos tag.tagify__tag {
    background-color: #afffb2e1;
    border-radius: 10px;
}

.tag-neg .tagify__tag>div::before {
    inset: unset;
}

.tag-neg tag.tagify__tag {
    background-color: #ffaeaedf;
    border-radius: 10px;
}

.tag-neg .tagify__tag-text {
    color: #480303;
}

.tag-pos .tagify__tag-text {
    color: #428e30;
}

.comment-replay{
    background-color: var(--main-color-two-shadow) !important;
}

/* end comment */

/* share modal */

#shareModal a.btn.rounded-circle{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    margin: auto;
}

#shareModal a.btn.rounded-circle i{
    color: #fff;
}

/* end share modal */

/* breadcrumb */

.breadcrumb-item+.breadcrumb-item::before {
    content: var(--bs-breadcrumb-divider, "›");
}

/* end breadcrumb */

/* end page product */

/* start page category */

/* start filter items */

.filter-items{
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
    box-shadow: var(--shadow-box);
}

.filter-item{
    margin-bottom: 30px;
}

.filter-item .filter-item-title {
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 7px;
    font-size: 18px;
}

.input-range-filter{
    direction: rtl;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #f4f4f4;
}

.btn-outline-site{
    padding: 20px 40px;
    border: 2px solid #333333;
    background-color: transparent;
    transition: 0.3s all ease-in-out;
    border-radius: 10px;
    display: inline-block;
    width: 100%;
    font-size: 16px;
   
}

.btn-outline-site:hover{
    background-color: var(--main-color-one);
    color: #fff;
    border-color: var(--main-color-one);
}

/* end filter items */

/* start my paginate */

.my-paginate ul{
    flex-wrap: wrap;
    align-items: center;
}

.my-paginate li {
    margin-left: 5px;
    margin-bottom: 5px;
    background: transparent;
    border: none;
    box-shadow: none !important;
}

.my-paginate li:nth-child(1) a, .my-paginate li:nth-last-child(1) a{
    background-color: #fff !important;
    padding: 7px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-md) !important;
}

.my-paginate li.active a{
    background-color: var(--main-color-one) !important;
    box-shadow: var(--shadow-md) !important;
    border: none;
}

.my-paginate li.disabled a {
    background: #eee !important;
    color: #aaa;
}

.my-paginate li.disabled a i {
    color: #a0a0a096;
}

.my-paginate li a {
    font-weight: bold;
    padding: 5px 15px;
    color: #333333;
    background: transparent !important;
    border: none;
    box-shadow: none !important;
    display: inline-block;
}

.my-paginate li a i {
    color: #333333;
}

/* end my paginate */

/* start category brand */

.category-brand{
    margin: 20px 0 0 0;
}


.free-mode .swiper-slide {
    width: auto;
}

.category-brand .item{
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-brand .item img {
    filter: contrast(0.5) grayscale(100%);
    transition: 0.3s all ease-in-out;
    opacity: 0.7;
    object-fit: cover;
}

.category-brand .item img:hover{
    filter: none;
    opacity: 1;
}

/* end category brand */

/* start category sort */

.category-sort .form-checks .form-check{
    border: 1px solid transparent;
}

.category-sort .form-checks .form-check.active{
    border-color: var(--main-color-one);
    padding: 10px;
    border-radius: 10px;
    margin-right: 10px;
    margin-left: 10px;
    box-shadow: var(--shadow-md);
}

/* end category sort */

/* end page category */

/* start page cart and checkout */

.cart-item-feature .item{
    margin-left: 25px;
    padding-left: 10px;
    margin-bottom: 10px;
    position: relative;
}

.cart-item-feature .item::before{
    content: '';
    position: absolute;
    width: 2px;
    height: 20px;
    background-color: #ddd;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.cart-item-feature .item:last-child::before{
    display: none;
}

.cart-product-item:not(:last-child){
    margin-bottom: 10px;
}

.cart-product-item .remove i{
    color: #f21919;
    font-size: 20px;
}

/* start line step */

.line-step-container {
    overflow: hidden;
    padding: 0px 5px;
    border-radius: 10px;
}

.line-step {
    position: relative;
    display: flex;
    align-items: center;
}

.line-step::before {
    display: block;
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background: #e9e9e9;
    border-radius: 10px;
}

.line-step-boxs {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.line-step-boxs::before {
    z-index: 3;
    content: '';
    width: 20px;
    height: 20px;
    background: #ccc;
    box-shadow: var(--shadow-md);
    border-radius: 50%;
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
}

.line-step-boxs::after {
    z-index: 3;
    content: '';
    width: 20px;
    height: 20px;
    background: #ccc;
    box-shadow: var(--shadow-md);
    border-radius: 50%;
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
}

.line-step-box {
    width: 33.33%;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.line-step-box.disabled .icon i {
    color: #ccc;
}

.line-step-box.disabled p {
    color: #ccc;
}

.line-step-box.complete .icon {
    background: var(--main-color-two);
    color: #fff;
}


.line-step-box.complete::before {
    content: '';
    width: 50%;
    height: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--main-color-one);
    z-index: -1;
    border-radius: 0px;
}

.line-step-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px auto;
    margin-top: 0px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 10px 0px !important;
    border-radius: 50%;
}

.line-step-box .icon{
   
    font-size: 18px;
}

.line-step-box p {
    font-size: 18px;
    margin-top: 15px;
   
}

/* end line step */

/* send item */

.send-item{
    border-radius: 10px;
    padding: 5px;
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
}

.send-item.active{
    border-color: var(--main-color-one);
}

.send-item.active::before{
    content: '\F26A';
    position: absolute;
    bottom: -10px;
    left: -5px;
    font-family: 'bootstrap-icons';
    font-size: 20px;
    color: #0b8502;
}

/* end send item */

/* shipping item */

.shipping-item{
    padding: 7px 7px;
    display: flex;
    align-items: center;
    border: 2px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}

.shipping-item.active{
    border-color: var(--main-color-one);
}


.shipping-item.active::before{
    content: '\F26A';
    position: absolute;
    bottom: -10px;
    left: -5px;
    font-family: 'bootstrap-icons';
    font-size: 20px;
    color: #0b8502;
}

/* end shipping item */

/* bank item */

.bank-item{
    padding: 7px 7px;
    display: flex;
    align-items: center;
    border: 2px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}

.bank-item.active{
    border-color: var(--main-color-one);
}

.bank-item.active::before{
    content: '\F26A';
    position: absolute;
    bottom: -10px;
    left: -5px;
    font-family: 'bootstrap-icons';
    font-size: 20px;
    color: #0b8502;
}

/* end bank item */

/* end page cart and checkout */

/* start page payment success and failed payment  */

.payment-status .icon{
    margin-bottom: 15px;
    text-align: center;
}

.payment-status .icon i{
    font-size: 70px;
    color: #0d9a00;
}

.payment-status.fail-pay .icon i{
    color: #d02304;
}


.payment-status .title{
    text-align: center;
}

.payment-status .title h3{
    font-size: 25px;
    color: #0d9a00;
}

.payment-status.fail-pay .title h3,
.payment-status.fail-pay .title p
{
    color: #d02304;
}

.payment-status .title p{
    margin-bottom: 0;
    margin-top: 15px;
    color: #0d9a00;
    font-size: 18px;
}

.payment-status .pay-table{
    margin: 25px auto 0 auto;
    border-radius: 10px;
    box-shadow: var(--shadow-box);
    padding: 15px 15px;
    max-width: 380px;
}

.payment-status .pay-table .pay-table-title{
    margin-bottom: 15px;
    text-align: center;
    padding-bottom: 7px;
    border-bottom: 3px solid #eee;
}

.payment-status .pay-table .pay-table-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-status .pay-table .pay-table-item:not(:last-child){
    margin-bottom: 20px;
}

/* end page payment success and failed payment  */


/**
 * Fix fonts that render as bold in Firefox
 *
 * Put this near the top of your style.css
 * Before any overriding styles
 */

html {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    font-weight: 400;
}

/**
 * Firefox specific rule
 */

@-moz-document url-prefix() {
    h1,h2,h3,h4,h5,h6 {
        font-weight: lighter !important;
    }
}

/**
 *  Responsive Css
 */
  
@media only screen and (max-width:1200px) {}

@media only screen and (max-width:992px) {
	


    .slider{
        height: auto;
    }

    .amazing .slider-item .countdown {
        text-align: center;
    }

    .amazing .slider-item .meta span.nav-link {
        padding: 7px 0 !important;
    }


    .site-slider .swiper-button-prev {
        right: 47.5% !important;
    }

    .amazing .slider-item img{
        max-height: 300px;
        display: block;
        margin-right: auto;
        margin-left: auto;
    }

    .logo img{
        max-height: 70px;
    }

    div#btncollapzion {
        left: 3px !important;
        bottom: 60px !important;
    }

    .btn-filter-float{
        bottom: 95px !important;
    }

    .btn-comment{
        width:100%;
    }

    .main-table tr td {
        white-space: nowrap;
    }

}

@media only screen and (max-width:768px) {
    .site-slider .swiper-button-prev {
        right: 45.5% !important;
    }

    .category-sort .form-checks .form-check{
        margin-bottom: 15px;
    }


}

@media only screen and (max-width:576px) {
    .site-slider .swiper-button-prev {
        right: 42.5% !important;
    }


    
}

@media only screen and (max-width:400px) {
    .amazing-slider-slider .slider-item .link{
        margin-top: 10px;
    }

    .site-slider .swiper-button-prev {
        right: 40% !important;
    }

    figure.avatar {
        height: 60px;
        width: 60px;
    }

    .btn-action-cart i {
        font-size: 25px;
    }

    .mobile-footer {
        padding: 10px 15px 10px;
    }

    .w-100-in-400{
        width: 100% !important;
    }

    .w-100-in-400 .counter .input-group{
        justify-content: center;
    }

    .w-100-in-400 .font-16.new-price.main-color-one-color{
        text-align: center;
    }

    .w-100-in-400 p.old-price {
        border-left: 0;
        padding-left: 0;
    }

    .cart-item-feature .item {
        margin-left: 10px;
    }

    .st-dv-1{
        margin: auto;
        margin-bottom: 10px;
    }


}
 
@media only screen and (max-width:360px) {
    
}

@media only screen and (min-width: 1470px) {

    .respoisve-product  {
        max-width: 1470px;
    }

}

.off {
  color: #fff !important;
  padding-right: 7px;
  margin-left: 5px;
  font-weight: bold;
  font-size: 15px;
  line-height: 1;
  background-color: #ee0e0e;
  padding: 0 10px;
  border-radius: 25px !important;
}


.position-sticky {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
}