html {
    font-size: 16px;
}


:root {
    --main-nav-color: #333;
    --main-nav-color-hover: rgba(51, 51, 51, 0.7);
    --font-size-small: 0.8rem;
    --font-size-mediom: 1rem;
    --font-size-larg: 1.2rem;
    --color-show: rgb(214, 6, 68);
}


.size-small {
    font-size: var(--font-size-small);
}

.size-xl {
    font-size: var(--font-size-mediom);
}

.size-xxl {
    font-size: var(--font-size-larg);
}

@font-face {
    font-family: vazir;
    src: url("sass/font/vazir.ttf");
    font-weight: normal;
}

body {
    font-family: 'vazir' !important;
    background-color: #eff1f5 !important;

}

body.wd-search-opened {
    overflow: hidden;
    margin-right: 17px;
}

a {
    text-decoration: none !important;
    font-size: 1rem;
    color: var(--main-nav-color);
}

img {
    max-width: 100%;
    height: auto;
}

.box_item {
    width: 24%;
}

.nav-links a {
    width: 40px;
    height: 40px;
    background-color: rgb(27, 5, 5);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.nav-links span:not(.dots) {
    width: 40px;
    height: 40px;
    background-color: rgb(240, 160, 160);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.nav-links span.dots {
    width: 40px;
    height: 40px;
    background-color: rgb(187, 187, 187);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.nav-links {
    display: flex;
    gap: 5px;
}

.snipper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: sniper 1s linear infinite;

}

@keyframes sniper {
    to {
        transform: rotateZ(360deg);
    }
}

.c-pointer {
    cursor: pointer;
}

.nav_menu_warper li {
    list-style-type: none !important;
}

.nav_menu_warper li a {
    color: var(--main-nav-color);
    transition: all 0.7s;
    font-size: var(--font-size-small);
    position: relative;
}

.nav_menu_warper li a:hover {
    color: var(--main-nav-color-hover);
}

.nav_menu_warper li a::after {
    position: absolute;
    bottom: -0.2rem;
    width: 0;
    height: 1px;
    right: 0;
    background-color: rgb(214, 6, 68);
    content: "";
    transition: all 0.4s;

}

.nav_menu_warper li a:hover::after {
    width: 100%;
}

.box-icone-header i {
    font-size: 1.5rem;
}

.circle_nav_top {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.105);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circle_nav_top span {
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    color: var(--color-show);
    width: 1rem;
    height: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.105);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.6rem;

}

.show_price_basket {
    background-color: rgba(214, 6, 68, 1);
    border-radius: 20px;
}

.icon_basket_header {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.box-icone-header i {
    color: #a5a5a5;
    font-weight: normal;
}

.nav_menu_warper>li {
    margin-left: 1rem
}

.box_category_index {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

.wraper_haraj_box {
    background-color: #D60644;
    border-radius: 0px 0px 16px 16px;
}

.haraj_txt {
    font-weight: bold;
}

.goto_haraj {
    background-color: #fff;
    border-radius: 5px;
    padding: 0.2rem 1rem;
    border: none;
    color: var(--color-show);

}

.cat_img_header {
    width: calc((100% / 8) - 10px);
    background-color: #FFFFFF;
    border-radius: 16px 16px 16px 16px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);

}

.bgbox_slider {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 15px;
}

.box_img_slider {
    /* top: 40px;
    left: 100px; */
    margin-top: -140px;
    margin-left: 50px;
    filter: drop-shadow(0px 0px 8px #686868);
    width: 33%;



}

.txt_slider_desc {
    line-height: 2rem;
}

.line_color_one,
.line_color_two {
    height: 0;
    border-radius: 0 0 10px 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

}

.box_linecolor {
    position: relative;
    height: 16px;
}

.line_color_one {
    top: 0;
    width: 90%;

}

.line_color_two {
    top: 8px;

    width: 70%;

}

.line_color_one.show {
    animation: fadeinslider 0.1s ease forwards;

}

.line_color_two.show {
    animation: fadeinslider 0.2s ease forwards;

}

@keyframes fadeinslider {
    0% {
        height: 0;
        opacity: 0;
    }

    100% {
        height: 8px;
        opacity: 1;
    }
}

.swiperpaginate_sliderIndex {
    width: auto !important;
    left: 50% !important;

    background-color: white;
    border-radius: 10px;
    padding: 0 5px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiperpaginate_sliderIndex .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: black;
}

.swiperpaginate_sliderIndex .swiper-pagination-bullet-active {

    background-color: black;
}

.icone_box_sale_woodmart figure {
    width: calc((100% - 150px) / 5);
    border-radius: 20px;
}

.wraper_customlist {
    background: url('images/Frame-289-1.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    position: relative;
    height: 351px;
    margin: 50px 0 160px 0;
}

.box_image_haraj_percent {
    transform: translateY(-1px);
}

.wraper_box_customlist {
    border-radius: 12px;
}

.percent_discount {
    background-color: var(--color-show);
    border-radius: 20px;
    top: 0;
    right: 0;
}

.wraper_card {
    border-radius: 10px;
    overflow: hidden;
}

.show_date {
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    font-size: 1.5rem;
    border-radius: 10px;
    z-index: 2;

}

.show_date>span {
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wraper_image::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000006b;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    z-index: 1;
}

.wraper_card:hover .wraper_image::after {
    opacity: 1;
    visibility: visible;

}

.animate_dot {
    top: 50%;
    left: 0;

    z-index: 2;
    width: 100%;
    height: 1rem;
    display: flex;
    justify-content: center;
}

.dosts {
    transition-delay: .1s;
    animation-delay: .1s;
    display: inline-block;
    margin-left: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    vertical-align: middle;
    opacity: 0;

    transition: opacity .2s ease;
    animation: wd-fadeOutLeft .3s ease;
    transition-delay: .1s;
    animation-delay: .1s;



}

.animate_dot::after,
.animate_dot::before {
    display: inline-block;
    content: '';
    margin-left: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    vertical-align: middle;

    transition: opacity .2s ease;
    animation: wd-fadeOutLeft .3s ease;
    opacity: 0;
}


.animate_dot::before {
    transition-delay: .15s;
    animation-delay: .15s;
}

@keyframes wd-fadeOutLeft {
    0% {

        transform: none;
    }

    100% {
        transform: translate3d(-50px, 0, 0);
    }
}

@keyframes wd-fadeOutRight {
    0% {
        transform: translate3d(50px, 0, 0);
    }

    100% {

        transform: none;
    }
}

.wraper_card:hover .dosts,
.wraper_card:hover .animate_dot::after,
.wraper_card:hover .animate_dot::before {
    animation-name: wd-fadeOutRight;
    animation-duration: 0.2s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    opacity: 1;
}

.link_Author_article,
.link_Author_article a {
    color: #a0a0a0 !important;

}

.comment_count {
    top: -10px;
    left: -10px;
    font-size: 0.7rem;
    background-color: #c4c4c4;
    color: white;
    width: 1.2rem;
    height: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;

}

.box_bread_croump {
    background-color: black;
}

.title_article_single {
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
}

.wraper_bread_crumb a {
    color: white;
}

.show_cat_single {
    background-color: var(--color-show);
    color: white;
    border-radius: 10px;
}

.title_single {
    font-weight: bold;
    font-size: 1.5rem;
}

.rounded-5 {
    border-radius: 15px;
}

.text_content {
    text-align: justify;
    line-height: 2;
}

.box_navigation_link {
    border-top: 1px solid rgb(216, 216, 216);
    border-bottom: 1px solid rgb(216, 216, 216);
}

.show_list_in_single a {
    font-size: 2.5rem;
    color: #a0a0a0 !important;
}

.arrow_link_next_post {
    width: 2rem;
    height: 2rem;
    padding: 1rem;
    border-radius: 50%;
    border: 1px solid rgb(216, 216, 216);
    display: flex;
    align-items: center;
    justify-content: center;

}

.text-light-st {
    color: #a1a1a1;
}

.widget_foo_widget li {
    list-style-type: none !important;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.widget_foo_widget li a {
    color: var(--main-nav-color);
}

.show__count {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #cecece;
    border-radius: 28%;
    color: white;
    font-size: var(--font-size-small);
}

.box_wiget {
    padding: 0;
    margin: 0 0 1.5rem 0;

    border-bottom: 1px solid rgb(202, 202, 202);
}

.search__input {
    border: 1px solid #0000001a;
    border-radius: 35px;
    outline: none;
    background-color: transparent;
    height: 3rem;
    flex-grow: 2;
    margin-left: 0.5rem;
    padding: 0 1rem;
    color: #a1a1a1;

}

.search__button {
    border: none;
    outline: none;
    background-color: var(--color-show);
    color: white;
    border-radius: 35px;
    padding: 0 1rem;
}

.link_popular {
    color: var(--main-nav-color);
}

.comment_txt_custom {
    width: 100%;
    height: 200px;
    border-radius: 25px;
    background: transparent;
    padding: 15px;
    border: 1px solid rgb(189, 189, 189);

}

.submit_comment_btn {
    background-color: var(--color-show);
    border-radius: 20px;
    border: none;
    padding: 0.5rem 1rem;
    color: white;
}

.comment_wraper_box>input {
    width: 100%;
    border: 1px solid rgb(189, 189, 189);
    border-radius: 25px;
    background: transparent;
    padding: 15px;
}

.card {
    position: relative;
    display: flex;
    padding: 20px;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #d2d2dc;
    border-radius: 11px;
    -webkit-box-shadow: 0px 0px 5px 0px rgb(249, 249, 250);
    -moz-box-shadow: 0px 0px 5px 0px rgba(212, 182, 212, 1);
    box-shadow: 0px 0px 5px 0px rgb(161, 163, 164)
}

.media img {

    width: 60px;
    height: 60px;
}


.reply a {

    text-decoration: none;
}

.title_custom_list {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 400;
}

.old_price {
    color: #686868;
    font-size: 0.8rem;
    text-decoration: line-through;
    margin-left: 0.4rem;
}

.new_price,
.peyment_unit {
    color: var(--color-show);
    font-size: 1.2rem;
    font-weight: 400;

}

.box_elevator {

    height: 2rem;
    overflow: hidden;
}

.show_price,
.add_to_basket_custom_list {
    height: 2rem;
    transition: all 0.4s;
    display: flex;
    align-items: center;
}

.wraper_card_customlist:hover .box_elevator>.show_price {
    margin-top: -2rem;
}

.add_to_basket_custom_list>a {
    color: #242424 !important;
}

.title_stock {
    color: #686868;
    font-size: 0.8rem;
}

.title_werhouse {
    color: #333;
    font-size: 0.8rem;
    font-weight: 600;
}

.warehouse_stock {
    border-top: 1px solid rgb(185, 185, 185);

}

.progress_bar {
    border-radius: 25px;
    background-color: #d6d6d6;
    width: 100%;
    height: 4px;
}

.progress_bar>span {
    display: block;
    height: 100%;
    width: 25%;
    background-color: var(--color-show);
    border-radius: 25px;

}

.wraper_list_product {}

.banner_fig {
    border-radius: 15px;
    overflow: hidden;
}

.wraper_link_ajax li {
    list-style-type: none;
    margin-left: 2rem;

}

.wraper_link_ajax {
    margin-right: 2rem;

}

.wraper_link_ajax li a {
    color: #333;
    font-size: 1.2rem;

}

.wraper_link_ajax li a.active {
    color: var(--color-show);
}

.title_box_ajax_sort {
    padding: 15px 0;
    position: relative;
}

.title_box_ajax_sort::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background-color: rgb(216, 216, 216);
}

.title_porforosh {
    color: #4B4B4B;
    font-weight: 300;
    font-size: 1.2rem;
    position: relative;
}

.title_porforosh::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: 0;
    width: 100%;
    height: 4px;
    z-index: 1;
    background-color: var(--color-show);
}

.star_rate_box {
    height: 2rem;
}

.btn_add_ajax {}

.btn_add_ajax a {
    background-color: var(--color-show);
    border-radius: 25px;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    color: white;
    display: inline-block;

}

.btn_add_ajax a:hover {
    color: var(--main-nav-color-hover);

}

.show_product {
    transition: all 0.5s;
    animation: fadeonajax 0.5s linear forwards;
}

.show_product.loading {
    animation: fadeajax 0.5s linear forwards;

}

@keyframes fadeajax {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(200px);
    }

    22% {
        transform: translateY(250px);
        opacity: 0;
    }

    100% {
        transform: translateY(700px);
        opacity: 0;
    }
}

@keyframes fadeonajax {
    0% {
        transform: translateY(700px);
        opacity: 0;
    }

    25% {
        transform: translateY(200);
        opacity: 1;
    }

    100% {
        transform: translateY(0);

    }
}

/* .insert_ajax .swiper-slide{
    width: unset !important;
} */
.serarch_box {
    width: 100%;
    height: 0;
    position: fixed;
    bottom: 0;
    overflow: hidden;
    transition: all 0.5s;
    cursor: pointer;

    right: 0;
    background-color: #ffffff;
    z-index: 100;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.08);
}

.serarch_box.show {
    height: 80vh;
}

.close_search {
    font-size: 4rem;
}

.inpu_box_se {
    flex-grow: 2;
}

.input-search {
    width: 100%;
    height: 60px;
    background-color: transparent;
    border: none;
    outline: none;
    text-align: center;
    font-size: 2.5rem;
    color: #686868;

}

.wraper_search_inp {
    height: 15%;
    padding: 1rem 0;
    border-bottom: 1px solid rgb(221, 221, 221);
}

.result_box {
    height: 85%;
}

.btn_search_header {
    height: 60px;
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 2rem;
    color: #686868;


}

.tag_search {
    border: 1px solid var(--color-show);
    margin: 0 0.2rem;
    display: block;
    padding: 0.2rem 1rem;
    border-radius: 2px;
    color: var(--main-nav-color);
}

.ajax_load {
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;

    background: rgba(255, 255, 255, 0.29);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.5px);
    -webkit-backdrop-filter: blur(5.5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sniper_load {
    font-size: 3rem;
    color: #686868;
    animation: infinite sniper_load 1s linear;
}

@keyframes sniper_load {
    to {
        transform: rotate(360deg);
    }
}

.hide {
    opacity: 1;
    visibility: visible;

}

.gift_box_btn {
    background-color: #D60644;
    border-radius: 10px 0 0 10px;

}

.gift_box_btn h6 {

    color: white;
}

.btn_more_product_gift {
    background-color: white;
    color: #D60644;
    border-radius: 5px;
    padding: 0.4rem 1.5rem;

}

.box_arrow_svg>img {
    height: 80%;
}

.get_app {
    color: var(--color-show);
    font-weight: bold;
}

.txt_get_app {
    text-align: justify;
    line-height: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--main-nav-color-hover);
}

.txt_get_app_bottom {
    font-size: 1.1rem;
    color: #4B4B4B;
    font-weight: 400;
}

.btn_get_app_one {

    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--color-show);
    color: white;
    border-radius: 10px;
    font-weight: 400;

}

.btn_get_app_two {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: white;
    border: 1px solid var(--color-show);
    border-radius: 10px;
    color: var(--color-show);
    font-weight: 600;
}

.title_vijeh_slider {
    color: #686868;
}

.news_plugin_frm {
    display: flex;


}

.news_plugin_frm input {
    flex-grow: 2;
    margin-left: 1rem;
    border: 1px solid rgb(196, 196, 196);
    border-radius: 25px;
    padding: 0.5rem 1rem;


}

.news_plugin_frm button {
    background-color: var(--color-show);
    border-radius: 25px;
    border: none;
    color: white;
    padding: 0.5rem 2rem;

}

.text_melo {
    color: #aaaaaa;
}

.bg-for_icone {
    background-color: #F5F5F5;
    position: relative;
   

}

.box_icone {
    padding: 3rem 0;
}

.icone_goto_top {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icone_goto_top span {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-25px);
    color: red;
    font-size: 2rem;
    font-weight: 600;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);

}

.svg_bottom_for_icone {
    width: 100%;
    position: absolute;
    bottom: 0;

    left: 0;
    display: flex;
    align-items: end;
}

.site-footer {
    background-color: #E5E7E9;
    margin-top: 3rem;
}

.sochial_icone_footer {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facebookicone {
    background-color: #3b5998;
}

.twiitericone {
    background-color: #1da1f2;
}

.youtobeicone {
    background-color: #cd201f;
}
.instaicone{
    background-color:#971D3B ;
}
.footer_desc{
    text-align: justify;
   color: #7A7A7A;
}
.footer_nav li{
border-left: 1px solid rgb(185, 185, 185);
padding:0 1rem;
list-style-type: none;

}
.footer_nav li:last-child{
    border: none;


}
.footer_nav li a{

color: var(--main-nav-color) !important;
}
.txt_about_footer{
    color:#7A7A7A ;
    font-weight: 400;
}
.about-me{
    background-color: #D7DEE0;
}
.warper_contact_us{
    background-color: #eff1f5;
}
.title_red_contact{
    color: var(--color-show);
    font-size:1rem;
}
.icone_contact_us span{
    width:50px ;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--color-show);
    color: white;
    font-size: 1.5rem;

}
.shadow-wood{
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.frm_contact_us label{
display: block;
margin-bottom: 0.2rem;

}
.frm_contact_us input{
width: 100%;
height: 45px;
border:1px solid rgb(199, 199, 199) ;
border-radius: 25px;
padding: 0.5rem 1rem;
outline: none;

}
.frm_contact_us textarea{
width: 100%;

border:1px solid rgb(199, 199, 199) ;
border-radius: 25px;
padding: 0.5rem 1rem;
outline: none;

}
.btn_submit_contact button{
    background-color: var(--color-show);
    border-radius: 25px;
    border: none;
    color: white;
}
.like_comment{
    font-size:1.5rem ;
    cursor: pointer;
}
.like_comment.active{
 color: red;
    animation: pulse 0.4s linear alternate;
}
.bookmark{
    font-size:1.5rem ;
    cursor: pointer;
    margin-right: 1rem;
}
.bookmark.active{
 color: rgb(141, 216, 20);
  
}
@keyframes pulse{
    0%{
transform: scale(1);
    }
    40%{
transform: scale(1.5);
    }
    60%{
transform: scale(1);
    }
    90%{
transform: scale(1.5);
    }
    100%{
transform: scale(1);
    }
}
.box_bread{
    background-color: black;
    padding: 5rem 0;
}
.title_my_account{
    font-weight: bolder;
    font-size: 3rem;
}
.txt_about_account{
    color: #3E3E3E;
    font-size: 1rem;
}
.border_end{
    border-left: 1px solid #3E3E3E;
}
.toggle_login_register{
    background-color: var(--color-show);
    color: white;
    padding: 0.5rem 1.5rem;
}
.toggle_login_register:hover{
 
    color: white !important;
    
}
.login ,.register{
    transition: all 0.2s;

}
.box_inp_login{
    border: 1px solid rgb(189, 189, 189);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}
.box_inp_login input{
   width: 100%;
   padding: 0.5rem 1rem;
   border: none;
   outline: none;
   color: #242424;
}
.showhide_pass_login{
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
 left: 10px;
 color: #b4b4b4;
 font-size: 1.5rem;
 cursor: pointer;
  
}
.btn_submit_login{
    background-color: var(--color-show);
    color: white;
    text-align: center;
    padding: 0.5rem 0;

}
a:hover{
    color: unset !important;
}


.box_inp_recover{
    border: 1px solid rgb(189, 189, 189);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}
.box_inp_recover input{
   width: 100%;
   padding: 0.5rem 1rem;
   border: none;
   outline: none;
   color: #242424;
}
.showhide_pass_recover{
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
 left: 10px;
 color: #b4b4b4;
 font-size: 1.5rem;
 cursor: pointer;
  
}
.btn_submit_recover{
    background-color: var(--color-show);
    color: white;
    text-align: center;
    padding: 0.5rem 0;

}