@import url("../css/bootstrap-icons.css");

/*=================لطفا کد های این صفحه را ویرایش نکنید :) ==========*/
/*================Dont Touch This Page===========================*/
:root {
    --primary-site: #0B0B92;
    --primary-dark: #0D0257;
    --gray-site: #333333;
    --yellow-site: #FAF94F;
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-align: justify;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'SiteFont';
    direction: rtl;
}

.central {
    display: flex;
    align-items: center;
    justify-content: center;
}


/*------------- fonts ------------*/
@font-face {
    font-family: 'SiteFont';
    src: url('../fonts/sahel/Farsi-Digits/Sahel-Bold-FD.eot') format('embedded-opentype'), url('../fonts/sahel/Farsi-Digits/Sahel-Bold-FD.ttf') format('truetype'), url('../fonts/sahel/Farsi-Digits/Sahel-Bold-FD.woff') format('woff'), url('../fonts/sahel/Farsi-Digits/Sahel-Bold-FD.woff2') format('woff2'), url('../fonts/sahel/Sahel-Bold.eot') format('embedded-opentype'), url('../fonts/sahel/Sahel-Bold.ttf') format('truetype'), url('../fonts/sahel/Sahel-Bold.woff') format('woff'), url('../fonts/sahel/Sahel-Bold.woff2') format('woff2');
    font-style: normal;
    font-weight: bold;
}

@font-face {
    font-family: 'SiteFont';
    src: url('../fonts/sahel/Farsi-Digits/Sahel-FD.eot') format('embedded-opentype'), url('../fonts/sahel/Farsi-Digits/Sahel-FD.ttf') format('truetype'), url('../fonts/sahel/Farsi-Digits/Sahel-FD.woff') format('woff'), url('../fonts/sahel/Farsi-Digits/Sahel-FD.woff2') format('woff2'), url('../fonts/sahel/Sahel.eot') format('embedded-opentype'), url('../fonts/sahel/Sahel.ttf') format('truetype'), url('../fonts/sahel/Sahel.woff') format('woff'), url('../fonts/sahel/Sahel.woff2') format('woff2');
    font-style: normal;
    font-weight: normal;
}



/* icons */

.bi {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
}

.optionItem .bi.bi-info-square {
    font-size: 23px;
    color: #414241;
    margin: 0 5px;
}






.number {
    font-family: 'SiteFont';
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

/*---------------- button -----------------*/
.primary_btn {
    padding: 7px;
    border-radius: 0px;
    min-width: 130px;
    font-size: 14px;
    color: #fff;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 5px;
    transition: all 0.5s;
    position: relative;
    width: fit-content;
    width: -moz-fit-content;
    z-index: 10;
}

    .primary_btn span,
    .primary_btn i {
        z-index: 1;
    }

    .primary_btn:hover {
        color: var(--primary-site);
    }

    .primary_btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-color: var(--primary-site);
        transition: all 0.3s;
        border-radius: 0px;
    }

    .primary_btn:hover::before {
        opacity: 0;
        transform: scale(0.5, 0.5);
    }

    .primary_btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        opacity: 0;
        transition: all 0.3s;
        transform: scale(1.2, 1.2);
        border-radius: 0px;
        background: #0d02572b;
    }

    .primary_btn:hover::after {
        opacity: 1;
        transform: scale(1, 1);
    }

.secondary_btn {
    padding: 7px;
    background-color: #fff;
    border-radius: 0px;
    min-width: 130px;
    font-size: 14px;
    color: var(--primary-dark);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 5px;
    border: 1px solid var(--primary-dark);
    width: fit-content;
    width: -moz-fit-content;
}

    .secondary_btn:hover {
        background-color: var(--primary-dark);
        color: #fff;
    }

.default_btn {
    padding: 7px;
    background-color: #e0e0e0;
    border-radius: 0px;
    min-width: 130px;
    font-size: 14px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 5px;
    width: fit-content;
    width: -moz-fit-content;
}

    .default_btn:hover {
        background-color: rgb(163, 163, 163);
        color: #fff;
    }


.selectRadio {
    position: absolute;
    top: -13px;
    right: 0;
    height: 17px;
    width: 17px;
    background-color: #fff;
    border: 1px solid;
    border-radius: 50%;
}


    .selectRadio:after {
        content: "";
        position: absolute;
        display: none;
    }

.lable input:checked ~ .selectRadio:after {
    display: block;
}

.lable input:checked ~ .selectRadio {
    border: 1px solid var(--primary-site);
}

.lable .selectRadio:after {
    left: 4px;
    top: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--primary-site);
    box-shadow: 0 0 2px 0 var(--primary-site);
}

.lable {
    position: relative;
    padding-left: 35px;
    margin: 0;
    cursor: pointer;
    font-size: 16px;
    padding-right: 23px;
}

.pick_address .lable {
    padding-left: 0;
}

.lable input {
    position: absolute;
    visibility: hidden;
}

.btn:focus {
    box-shadow: unset !important;
}

/*-------------- end button --------------*/
/*-------------- textTags --------------*/
a,
a:hover {
    text-decoration: none;
    font-family: 'SiteFont';
    color: inherit;
}

a {
    color: inherit;
}

.nav-link.disabled {
    color: #333;
}

p {
    font-family: 'SiteFont';
    font-weight: normal;
    text-align: justify;
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
th {
    font-family: 'SiteFont';
    font-weight: bold;
}

label,
button,
select {
    font-family: 'SiteFont';
    font-weight: normal;
}

strong {
    font-family: 'SiteFont';
    font-weight: bold !important;
}

span,
b,
label,
p,
a,
tr,
figcaption {
    font-weight: normal;
    font-family: 'SiteFont';
}

ul {
    list-style-type: none;
    margin: unset;
    padding: 0;
}

.title {
    color: rgb(77, 75, 75);
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 80px;
}

.titleText {
    font-size: 25px;
    margin: 0;
}

.pagepadding {
    padding-bottom: 30px;
}

/*-------------- End textTags --------------*/

/*------------inputs-------------------*/



input {
    height: 42px !important;
}

.form-control {
    border-radius: 0 !important;
    border: 0;
    border-bottom: 1px solid var(--primary-dark);
    background-color: unset;
}

    .form-control:focus {
        box-shadow: unset;
        background-color: unset;
    }

textarea {
    border-radius: 8px !important;
    min-height: 100px;
}

/* input:focus,
textarea:focus {
	border: unset !important;
	box-shadow: 0 0 5px 0 rgb(202, 199, 199) !important;
} */

input[type=checkbox]:focus,
input[type=radio]:focus {
    box-shadow: unset !important;
}

.floatingForm {
    position: relative;
    margin-bottom: 30px !important;
}

    .floatingForm label {
        position: absolute;
        top: 7px;
        right: 15px;
        height: 37px;
        pointer-events: none;
        border: 1px solid transparent;
        transform-origin: 0 0;
        transition: opacity .1s ease-in-out, transform .1s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0 10px;
        border-radius: 5px;
        color: #6d6d6d;
    }

    .floatingForm input {
        color: #575757;
        font-size: 13px;
    }

        .floatingForm input:focus,
        .floatingForm > input:not(:placeholder-shown) {
            padding-top: 20px;
            box-shadow: unset;
            border-color: var(--primary-site);
        }


            .floatingForm > input:focus ~ label,
            .floatingForm > input:not(:placeholder-shown) ~ label {
                transform: scale(.85) translateY(-25px) translateX(.15rem);
                border: 1px solid var(--primary-site);
            }

    .floatingForm > textarea:focus ~ label,
    .floatingForm > textarea:not(:placeholder-shown) ~ label {
        transform: scale(.85) translateY(-25px) translateX(.15rem);
        border: 1px solid var(--primary-site);
    }

/*------------End inputs-------------------*/

/*--------------PlaceHolders------------*/
::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-family: 'SiteFont';
    font-weight: lighter;
    font-size: 11px;
    color: #918e8e;
}

::-moz-placeholder {
    /* Firefox 19+ */
    font-family: 'SiteFont';
    font-weight: lighter;
    font-size: 11px;
    color: #918e8e;
}

:-ms-input-placeholder {
    /* IE 10+ */
    font-family: 'SiteFont';
    font-weight: lighter;
    font-size: 11px;
    color: #918e8e;
}

:-moz-placeholder {
    /* Firefox 18- */
    font-family: 'SiteFont';
    font-weight: lighter;
    font-size: 11px;
    color: #918e8e;
}

::-webkit-select-placeholder {
    /* Chrome/Opera/Safari */
    font-family: 'SiteFont';
    font-weight: lighter;
    font-size: 11px;
    color: #918e8e;
}

:-ms-select-placeholder {
    /* IE 10+ */
    font-family: 'SiteFont';
    font-weight: lighter;
    font-size: 11px;
    color: #918e8e;
}

/*------------EndPlaceHolderds-------------------*/
/*==============pagination=========================*/
.pagination {
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 55px;
}

    .pagination .active {
        background: var(--primary-site) !important;
        color: #fff !important;
    }

    .pagination .btn {
        width: 35px;
        height: 35px;
        background-color: #e2e7ec;
        border-radius: 50%;
        margin: 2px;
        display: flex;
        justify-content: center;
        align-items: center;
    }



    .pagination .pagination_btn.active,
    .pagination .pagination_btn:hover {
        background-color: var(--primary-site);
        color: #fff;
    }



/*---------------------check box and radio-------------*/
.radioBox,
.checkBox {
    margin: 10px;
    display: flex;
    align-items: center;
}

    .radioBox input,
    .checkBox input {
        display: none;
    }

        .radioBox input:checked + div::after {
            background: var(--primary-dark);
            content: '';
            position: absolute;
            top: 1px;
            bottom: 1.5px;
            right: 1px;
            left: 1.5px;
            border-radius: 50%;
        }

    .radioBox .selector {
        border: 2px solid var(--primary-site);
        height: 15px;
        width: 15px;
        margin-left: 5px;
        border-radius: 50%;
        position: relative;
    }

    .radioBox label {
        cursor: pointer;
        padding-right: 30px;
        margin-right: -30px;
        margin-bottom: 0;
        z-index: 10;
    }

/*---------------------End check box and radio-------------*/
/*----------------------------------breadcrumb----------------------------*/
.page_addres {
    background: #a8a5a5;
}

    .page_addres .breadcrumb {
        background-color: unset;
        margin-bottom: 0;
    }

    .page_addres .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 .5rem;
    }

/*---------------------search-------------*/
.serachBox {
    width: 100%;
    position: relative;
}

header .searchForm {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border: 1px solid rgba(194, 191, 191, 0.699); */
    border: unset;
    border-radius: 5px;
    padding: unset;
    background-color: #fff;
}

.searchForm .searchBtn {
    position: absolute;
    left: 0;
    top: 0;
}

header .searchForm input {
    border: 0;
}

.searchForm input:focus {
    box-shadow: unset !important;
}

.search_result {
    position: absolute;
    top: 38px;
    background-color: unset;
    /* background-color: #f6f4f4; */
    left: 0;
    right: 0;
    z-index: 10000;
    text-align: right;
    border-radius: 0 0 5px 5px;
    /* padding: 0px 10px; */
    padding: unset;
    /* box-shadow: 0 5px 10px -5px; */
    box-shadow: unset;
    overflow: hidden;
}

    .search_result ul {
        line-height: 2;
    }

    .search_result > div:first-child {
        margin-top: 11px;
    }

.searchBtn {
    background-color: #c9c7c1;
    border-radius: 5px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .searchBtn .bi {
        font-size: 20px;
    }

/*-------------------------------modals---------------------------*/

.modal-content {
    border-radius: 0;
    overflow: hidden;
    border: unset;
    text-align: right;
}

.modal-header {
    background-color: var(--primary-site);
    color: #fff;
    justify-content: center;
    border-radius: 0;
}

#go-to-cart .modal-body {
    padding: 0
}

#go-to-cart svg {
    margin: 50px 0
}

.modal .close {
    background: #fff;
    font-size: 25px;
    padding: 0 !important;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
}

.dropdown-item.active,
.dropdown-item:active {
    color: currentColor;
    text-decoration: none;
    background-color: var(--primary-site);
}

.modal-body {
    text-align: justify;
}

/*--------------------end modals---------------------*/
/*---------------------------productBox------------------*/
.totalproducts .product__box {
    margin-bottom: 0px;
    max-width: unset;
}

.product__box {
    /* background: rgb(255, 255, 255); */
    background: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    max-width: 270px;
    box-shadow: 0px 1px 10px 5px #33333321;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    overflow: hidden;
    transition: all .2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.discount__percent {
    background-color: #bf1932;
    padding: 0px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #fff !important;
}

.product__new__price {
    display: flex;
    align-items: center;
    margin: 5px auto;
}

.product__box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 10px 5px #3333332e;
}

.offer_percent {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -37px;
    left: -73px;
    z-index: 1;
    background-color: var(--primary-site);
    color: #fff;
    font-family: 'SiteFont';
    transform: rotate(-45deg);
    padding: 29px 89px;
}

.offer_percent_text {
    font-size: 16px;
    color: #fff;
    font-family: 'SiteFont';
    transform: rotate(45deg) translate(-5px, 23px);
}

.product__image_box {
    max-height: 210px;
    max-width: 100%;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .product__image_box img {
        width: 100%;
        height: 210px;
        object-fit: contain;
        border-radius: 20px;
    }

.product__name {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
}

.product__price {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.product__price {
    margin-top: 15px;
    background-color: #fff;
    padding: 15px;
    color: #000;
}

.pro__description span {
    font-size: 13px;
}

.product__old__price {
    display: flex;
    align-items: center;
    margin: 5px auto;
}

    .product__old__price del {
        color: #fff;
        margin-right: 5px;
    }

.product__details {
}


.product_btns {
    border-top: 1px solid #E9ECEE;
    padding-top: .5rem;
    padding-bottom: .5rem;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.product__btn .btn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px;
    border: 2px solid transparent;
}

    .product__btn .btn:hover {
        background-color: #f5f5f5;
        border: 2px solid #33333336;
        color: #fff;
    }


/*---------------------------end productBox------------------*/
/*-----------------------------------------header------------------------------------------------*/

header {
    border-top: 15px solid var(--primary-site);
    border-bottom: 2px solid var(--primary-site);
}

    header.deafult_header {
        border-bottom: 2px solid var(--primary-site);
    }

    header .navbar .col-md-9,
    .category_item.dropdown {
        position: initial;
    }

.category_link .material-icons {
    color: #fff;
    font-size: 35px;
}

.searchBox input {
    background-color: unset !important;
    border: unset;
    border-radius: 0 !important;
    width: calc(100% - 35px);
}

    .searchBox input:focus {
        box-shadow: unset !important;
    }

    .searchBox input:focus {
        background-color: unset;
    }

.searchBox {
    border-radius: 15px;
    background-color: #fff;
    position: relative;
    width: 100%;
}

header .searchForm {
    position: relative;
    /* width: 100%; */
    width: 0;
    border: unset;
    margin-bottom: 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.searchForm form {
    width: 100%;
}

.searchForm .more_btn {
    position: absolute;
    left: 0;
    top: 0px;
    margin: 0;
    width: auto;
    min-width: auto;
}

.search_result {
    position: absolute;
    top: 38px;
    background-color: #f6f4f4;
    left: 0;
    right: 0;
    z-index: 10000;
    text-align: right;
    border-radius: 0 0 5px 5px;
    padding: 0px 10px;
    box-shadow: 0 5px 10px -5px;
}

    .search_result img {
        width: 50px;
        height: 50px;
    }

    .search_result ul {
        line-height: 2;
    }

    .search_result > div:first-child {
        margin-top: 11px;
    }

.searchBtn {
    border-radius: 5px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.navbar-nav .nav-item {
    margin-right: 5px;
}

.navbar-nav .nav-link {
    color: #6E8CA0 !important;
}

/* .navbar-nav .active > .nav-link,  .navbar-nav  .nav-link:hover {
		color: var(--primary) !important;
		border-bottom: 1px solid var(--primary) !important;
	} */
.basketCounter {
    background-color: #000;
    padding: 4px 6px;
    border-radius: 10px 10px 10px 0;
    font-size: 11px;
    color: #fff;
    margin-left: 5px;
}

.header_icons {
    display: flex;
    align-items: center;
}

.userProfile_icon {
    color: #0f2a5f !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* margin-right: 10px; */
    margin-right: 0;
    border: 1px solid #0f2a5f;
    border-radius: 0;
}

    .userProfile_icon svg:first-child {
        display: none
    }

.profile_items {
    display: none;
    position: absolute;
    background-color: #fff;
    top: 41px;
    right: 0px;
    text-align: right;
    padding: 10px 22px;
    z-index: 100;
    border: 1px solid;
    width: 150px;
}

    .profile_items a {
        color: #736f6f;
        width: auto;
        font-size: 13px;
    }

        .profile_items a:hover {
            color: #0b0b92;
        }

    .profile_items span {
        font-size: 11px;
        color: #0095a1;
        text-align: center;
        margin-bottom: 5px;
    }



    .profile_items strong {
        font-size: 15px;
    }

.prfile_item_name {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #d3d0d09c;
}

.userProfile {
    position: relative;
}

.header_icon {
    padding: 5px 10px;
    height: 45px;
    display: flex;
    align-items: center;
}

header .navbar-nav {
    width: 100%;
    justify-content: center;
}

.header_box {
    position: relative;
}

.dropDownContent_title {
    display: none;
    transition: 0.5s;
}

.navbar-brand {
    margin: 0;
}

    .navbar-brand img {
        width: 100%;
        object-fit: contain;
        height: 120px;
    }

.deafult_header .navbar-brand img {
    height: 140px;
}

.header_left {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.deafult_header .menu {
    justify-content: flex-start;
}

.header_search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    .header_search .site_contact {
        border-right: 1px solid;
        padding-right: 10px;
        display: flex;
        flex-wrap: nowrap;
    }

.header_search_box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* width: calc(100% - 145px); */
    width: 330px;
    margin-left: 10px;
}

header .searchBox {
    width: 0;
    overflow: hidden;
    transition: 0.4s;
}

.searchBox.showSearch {
    width: 100%;
}

.toggle_saerch {
    cursor: pointer;
    margin-right: 5px;
}

.close_saerch {
    display: none;
}

.nav-link {
    position: relative;
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    padding: 10px;
    font-weight: 700;
    text-shadow: none;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
}

    .nav-link::before,
    .nav-link::after {
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--primary-site);
        content: '';
        opacity: 0;
        -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
        -moz-transition: opacity 0.3s, -moz-transform 0.3s;
        transition: opacity 0.3s, transform 0.3s;
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    .nav-link::before {
        top: 0;
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    .nav-link::after {
        bottom: 0;
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        transform: translateY(10px);
    }

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.nav-item.active .nav-link {
    color: var(--primary-site) !important;
}

    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link:focus::before,
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link:focus::after,
    .navbar-nav .nav-item.active .nav-link::after,
    .navbar-nav .nav-item.active .nav-link::before {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        transform: translateY(0px);
    }

@media (min-width:992px) {
    .close_navbar {
        display: none;
    }
}

/*================================ End Header ===========================*/
/*-------------------------------------------mega menu-------------------------------------------*/
.category_link {
    display: flex;
    align-items: center;
    color: rgba(0, 0, 0, .5) !important;
    padding: 10px 20px;
    cursor: pointer;
}

.dropTitle ul {
    padding: 0;
}

.headerinfo .bi {
    font-size: 20px;
    margin-left: 5px;
}

/* 
	مدال بسکت پروداکت سینگل
	.default_btn .bi{
		
		font-size: 25px;
	} 
	*/
.category_link.bi.bi-list-ul {
    transform: rotate(180deg);
}

.dropDownContent {
    max-width: 100%;
    position: absolute;
    right: 0;
    top: calc(100% - 10px);
    width: 100%;
    background-color: #fff;
    display: none;
    z-index: 100000;
    flex-direction: column;
    border: 1px solid #efefef;
}

    .dropDownContent.show {
        display: flex;
    }

.dropTitle {
    max-height: 100%;
    width: 200px;
    background-color: #efefef;
}

.dropItem {
    padding: 10px;
    position: relative;
    border-bottom: 1px solid #d6d6d693;
}

    .dropItem:hover {
        background-color: #efefef;
    }

    .dropItem.active {
        background-color: #fff;
    }

        .dropItem.active::after {
            content: '';
            height: 10px;
            width: 10px;
            position: absolute;
            left: -10px;
            z-index: -3;
            background-color: #fff;
            top: 38%;
        }

.selectedContent {
    width: 100%;
    max-height: 100%;
    overflow: hidden;
}

    .selectedContent > div {
        background-color: #fff;
        padding: 20px;
        height: 100%;
        display: none;
    }

header .navbar .col-md-9,
.category_item.dropdown {
    position: initial;
}

.proSubCategory {
    text-align: right;
}

    .proSubCategory strong {
        font-size: 15px;
        display: flex;
        align-items: center;
    }

        .proSubCategory strong .bi {
            font-size: 15px;
        }

    .proSubCategory .subcat_link {
        font-size: 13px;
    }

.dropItem a {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    align-items: center;
    text-align: right;
}

.dropItem:hover a {
    color: #000;
    text-shadow: 0 0 1px;
}

.dropItem .bi {
    font-size: 13px;
}

.subcat_items {
    line-height: 2;
    padding-right: 20px;
}

.subcat_link:hover a {
    margin-right: 10px;
    transition: 0.4s;
    color: #000;
}

.navbar-nav .nav-link {
    padding: 10px 20px !important;
}

.closeSide {
    display: none;
    transition: 0.5s;
}

.dropDownContent_body {
    display: flex;
    width: 100%;
}

.dropDownContent_title {
    display: none;
    transition: 0.5s;
    min-height: 80px;
}

.showsidebar {
    display: flex !important;
    overflow: visible !important;
    transition: 0.5s;
    right: 0% !important;
}



/*=-----------------------city modal----------------------------=*/
.selectItems {
    height: 140px;
    background: #c8c8c833;
    border-radius: 5px;
    border: 1px solid #3333;
    overflow-y: scroll;
}

.noResult {
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.selectItems .selector {
    display: none
}

.selectItems label:focus {
    font-weight: bold
}

.selectItems {
    display: block;
}

.selectBox .radioBox {
    padding: 10px;
    margin: 0;
}

.radioBox,
.checkBox {
    margin: 10px;
    display: flex;
    align-items: center;
}

    .radioBox input,
    .checkBox input {
        display: none;
    }

.selectBox .selector {
    display: none;
}

.selectBox .radioBox label {
    width: 100%;
}

.radioBox label {
    cursor: pointer;
    padding-right: 30px;
    margin-right: -30px;
    margin-bottom: 0;
    z-index: 10;
}

/*=-----------------------end city modal----------------------------=*/
/*================================ Main Slider ===========================*/

.mainSlider img {
    height:auto;
    object-fit: cover;
}

.mainSlider .carousel-caption {
    background-color: #0000007d;
    position: initial;
    display: flex;
    align-items: center;
    right: 0;
    left: auto;
    width: fit-content;
    width: -moz-fit-content;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
}

.mainSlider .owl-carousel .owl-stage:after {
    display: none;
}

.mainSlider .carousel-caption .btn {
    margin-right: 20px;
}

.mainSlider .mainSlider_txt {
    position: absolute;
    /*right: 0;*/
    left: 0;
    bottom: 10%;
}

.sliderNavigation .btn {
    position: absolute;
    top: 60%;
    z-index: 1;
    border: 1px solid #fff;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .sliderNavigation .btn .bi {
        font-size: 50px;
        color: #fff;
    }



.sliderNavigation .next {
    left: 2%;
}

.mainSlider .owl-stage {
    padding: 0;
}

/*================================ End Main Slider ===========================*/

/*--------------------home---------------------*/
.float_contactUs {
    overflow: hidden;
}

.float_contact_btn {
    position: fixed;
    width: 100px;
    height: 100px;
    cursor: pointer;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

    .float_contact_btn span {
        position: absolute;
        bottom: 25px;
        right: 27px;
        color: #fff;
        font-size: 11px;
    }

.float_contact_content {
    position: fixed;
    right: -30%;
    top: 0;
    width: 30%;
    background-color: #fff;
    z-index: 100;
    height: 100%;
    overflow: hidden;
    transition: 0.5s;
}

.show_contact {
    right: 0;
}

.close_contact_btn {
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 30px;
}

.float_body {
    padding: 30px;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

    .float_body .contact_line + .contact_line {
        border-top: 1px solid var(--primary-site);
        padding: 30px 0 20px;
    }

    .float_body .contact_line {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

.contact_line_title {
    display: flex;
    align-items: center;
}



.blog_box {
    border: 1px solid transparent;
    transition: 0.3s;
}

    .blog_box:hover {
        border: 1px solid var(--primary-site);
    }

        .blog_box:hover .productBox_txt {
            background-color: rgb(214, 214, 214);
        }

    .product_box img,
    .special_box img,
    .blog_box img {
        height: 325px;
        object-fit: contain;
        width: 100%;
    }

.productBox_txt {
    text-align: center;
    padding: 10px;
    color: #fff;
    height: calc(100% - 325px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.special_box {
    min-height: 375px;
    display: block;
    transform: scale(1);
    transition: 0.4s;
    height: 100%;
}

a.special_box:hover {
    transform: scale(1.04);
}

.special_box .productBox_txt {
    height: 0;
    overflow: hidden;
    padding: 0;
    transition: 0.3s;
}

.special_box:hover .productBox_txt {
    background-color: var(--primary-site);
    height: 50px;
    padding: 10px;
}

.newProducts {
    background-color: #F6F6F6;
}

.newProducts {
    position: relative;
}

    .newProducts::after {
        content: '';
        height: 2px;
        position: absolute;
        top: -2px;
        right: 25%;
        left: 25%;
        background-color: var(--primary-site);
    }

    .newProducts::before {
        content: '';
        height: 2px;
        position: absolute;
        bottom: -2px;
        right: 25%;
        left: 25%;
        background-color: var(--primary-site);
    }

.blog_box {
    display: block;
    height: 100%;
}

    .blog_box .productBox_txt {
        background-color: #F6F6F6;
        color: #333;
        padding: 20px;
    }

        .blog_box .productBox_txt p {
            font-size: 14px;
            margin-top: 10px;
        }

.owl-stage {
    display: flex;
    padding: 10px 0;
}

    .owl-stage .item {
        height: 100%;
    }

.topProducts_sliders .nav-pills .nav-link {
    border-radius: 0;
    color: #333;
    border: 1px solid #333;
    min-width: 150px;
    text-align: center;
}

    .topProducts_sliders .nav-pills .nav-link.active,
    .topProducts_sliders .nav-pills .show > .nav-link {
        background-color: var(--primary-site);
        border-color: var(--primary-site);
        color: #fff;
    }

.proCat_img {
    height: 300px;
}

    .proCat_img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.proCat_txt .primary_btn::before {
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.proCat_txt .primary_btn::after {
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.proCat_item {
    background-color: #FBFBFB;
    display: block;
    padding: 30px 10px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

    .proCat_item.even {
        background-color: #E2E5EB;
    }

.evenCat_cover {
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    z-index: -1;
}

    .evenCat_cover::after {
        content: '';
        background-color: #0f2a5fa4;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .evenCat_cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.home_category {
    position: relative;
}

    .home_category::after {
        content: '';
        height: 2px;
        position: absolute;
        top: -2px;
        right: 25%;
        left: 25%;
        background-color: var(--primary-site);
    }

.delay-ms1 {
    animation-delay: 0.25s;
}

.delay-ms2 {
    animation-delay: 0.5s;
}

.delay-ms3 {
    animation-delay: 0.75s;
}

.delay-ms4 {
    animation-delay: 1s;
}

/* ------------------------footer------------------------------- */

footer {
    margin-top: auto;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    color: #333;
    border-top: 10px solid var(--primary-dark);
    background: #fff;
}

.footer_menu {
    margin-bottom: 40px;
}

    .footer_menu .navbar-nav {
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
    }




.footer_bottom {
    padding: 30px 0;
}

.footer_top {
    padding: 50px 0 0;
}



.social_media_items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social_media_item {
    border: 1px solid rgb(85, 84, 84);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .social_media_item .bi {
        font-size: 30px;
        width: 30px;
        height: 30px;
    }

.loc_icon,
.phone_icon,
.mail_icon {
    margin-left: 10px;
}



.psection {
    padding: 30px 0;
}

.news_letter_right {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .news_letter_right img {
        width: 100%;
        height: 100%;
        max-width: 400px;
        max-height: 400px;
    }


.footer_social_media {
    margin: 1rem 0;
}


.footer_signature {
    width: 100%;
    margin-top: auto;
    color: #333;
    background-color: #F6F6F6;
    padding: 10px;
}

    .footer_signature span {
        text-align: center;
    }

    .footer_signature a {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .footer_signature img {
        width: 100%;
        height: auto;
    }


    .footer_signature p {
        text-align: center;
        padding: 5px 0;
        font-size: 13px;
    }

#searchInput {
    color: #333;
    padding-right: 10px;
    border-radius: 5px 0 0 5px !important;
}

header .header_bottom .nav-link:hover,
footer .footer_links a:hover {
    color: var(--primary-site);
}

.enamad_box img {
    width: 80px;
    height: 130px;
    object-fit: contain;
}

.phone_line {
    margin: 1rem 0;
}

.enamad_box {
    margin-left: .5rem;
}

.resane_digital_box {
    margin-right: .5rem;
}

    .resane_digital_box img {
        width: 100px;
        height: 120px;
    }

.namad_box a.disabled {
    position: relative;
}

    .namad_box a.disabled::after {
        content: 'غیرفعال';
        position: absolute;
        top: 30%;
        background-color: #333;
        color: #fff;
        padding: 5px;
        border-radius: 5px;
        right: 0;
        left: 0;
        text-align: center;
    }

.feed_form {
    margin-top: .5rem;
    margin-bottom: .5rem;
    padding: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 7px;
    margin-right: auto;
}

footer .social_media_items {
    margin-top: .5rem;
}

.news_letter_btn {
    position: absolute;
    left: 5px;
    top: 4px;
    background-color: var(--green-site);
    color: #fff;
    border-radius: 35px;
    min-height: 47px;
    padding: 10px 35px;
}

.news_letter_form input {
    border-radius: 35px !important;
    min-height: 55px;
}

.neswletter_left {
    display: flex;
    align-items: center;
    width: 100%;
    margin: auto;
}

.nesw_text_info span {
    font-size: 13px;
}

.nesw_text_info strong {
    font-size: 15px;
}

.nesw_text_info {
    padding-right: 10px;
}

.news_text {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.news_letter_form {
    position: relative;
    border-radius: 35px;
    min-width: 450px;
    margin: auto;
}

.newsletter_icon img {
    width: 77px;
    height: 69px;
}

.newsletter_icon {
    display: inline-block;
    padding-left: .5rem;
    border-left: 1px solid #DEDEDE;
}

.namad_box {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.link_footer {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.footer_links ul li {
    margin-bottom: 5px;
}

.footer_links a {
    display: flex;
    align-items: center;
}

    .footer_links a:hover .material-icons {
        transform: scale(1);
    }

    .footer_links a .material-icons {
        transform: scale(0);
        transition: all .2s linear;
    }

.footer_links ul {
    margin-top: 10px;
}

.feed_btn {
    width: 20%;
    min-height: 40px;
}

.inbput_feed_box {
    width: 100%;
}

.link_footer .nav {
    justify-content: flex-end;
}

#feed_input {
    text-align: right;
    color: #333;
    min-height: 40px;
}

    #feed_input:focus {
        box-shadow: unset;
        background-color: #eee;
    }

.verify_icon {
    position: absolute;
    top: 5px;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
}

    .verify_icon svg {
        width: 40px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.inbput_feed_box {
    position: relative;
}

.down2TopButton {
    position: absolute;
    right: 0;
    top: -95px;
    z-index: 1000;
    cursor: pointer;
}

.down_2_top {
    margin-top: auto;
}

.footer_links a:hover .material-icons {
    transform: scale(1);
}

footer .navbar-brand img {
    max-height: 200px;
}

.news_letter_footer {
    display: flex;
    flex-direction: column;
}

    .news_letter_footer .footer_social_media {
        margin-top: auto;
    }

/* Effect 1: Brackets */
.footer_links a {
    position: relative;
    display: inline-block;
    outline: none;
    color: #000;
    text-decoration: none;
    font-weight: 400;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
    font-size: 15px;
}

    .footer_links a::before,
    .footer_links a::after {
        display: inline-block;
        opacity: 0;
        -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
        -moz-transition: -moz-transform 0.3s, opacity 0.2s;
        transition: transform 0.3s, opacity 0.2s;
    }

    .footer_links a::before {
        margin-right: 10px;
        content: '[';
        -webkit-transform: translateX(20px);
        -moz-transform: translateX(20px);
        transform: translateX(20px);
    }

    .footer_links a::after {
        margin-left: 10px;
        content: ']';
        -webkit-transform: translateX(-20px);
        -moz-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    .footer_links a:hover::before,
    .footer_links a:hover::after,
    .footer_links a:focus::before,
    .footer_links a:focus::after {
        opacity: 1;
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        transform: translateX(0px);
    }


/*--------------------blog---------------------*/
.blog .sliderNavigation .btn .bi {
    color: #333;
    font-size: 40px;
}

.blog .sliderNavigation .btn {
    border: 0;
    top: 39%;
}
/*.slider_box{
    position:relative
}*/
.newProducts .owl-carousel, .specialProducts .owl-carousel{
    width:95%;
    margin:auto
}
.sliderNavigation div {
    position: absolute;
    top: 33%;
    padding: 10px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sliderNavigation .prev {
    left: 0%;
}

.sliderNavigation .next {
    right: 0%;
}

.lastBlogtitle {
    text-align: center;
    color: rgb(82, 80, 80);
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
    margin: 20px 0;
}

.itemStats .bi {
    font-size: 22px;
    margin-left: 5px;
}

.lastBlog {
    /* background-color: var(--primary-site); */
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='540' height='450' viewBox='0 0 1080 900'%3E%3Cg fill-opacity='.1'%3E%3Cpolygon fill='%23444' points='90 150 0 300 180 300'/%3E%3Cpolygon points='90 150 180 0 0 0'/%3E%3Cpolygon fill='%23AAA' points='270 150 360 0 180 0'/%3E%3Cpolygon fill='%23DDD' points='450 150 360 300 540 300'/%3E%3Cpolygon fill='%23999' points='450 150 540 0 360 0'/%3E%3Cpolygon points='630 150 540 300 720 300'/%3E%3Cpolygon fill='%23DDD' points='630 150 720 0 540 0'/%3E%3Cpolygon fill='%23444' points='810 150 720 300 900 300'/%3E%3Cpolygon fill='%23FFF' points='810 150 900 0 720 0'/%3E%3Cpolygon fill='%23DDD' points='990 150 900 300 1080 300'/%3E%3Cpolygon fill='%23444' points='990 150 1080 0 900 0'/%3E%3Cpolygon fill='%23DDD' points='90 450 0 600 180 600'/%3E%3Cpolygon points='90 450 180 300 0 300'/%3E%3Cpolygon fill='%23666' points='270 450 180 600 360 600'/%3E%3Cpolygon fill='%23AAA' points='270 450 360 300 180 300'/%3E%3Cpolygon fill='%23DDD' points='450 450 360 600 540 600'/%3E%3Cpolygon fill='%23999' points='450 450 540 300 360 300'/%3E%3Cpolygon fill='%23999' points='630 450 540 600 720 600'/%3E%3Cpolygon fill='%23FFF' points='630 450 720 300 540 300'/%3E%3Cpolygon points='810 450 720 600 900 600'/%3E%3Cpolygon fill='%23DDD' points='810 450 900 300 720 300'/%3E%3Cpolygon fill='%23AAA' points='990 450 900 600 1080 600'/%3E%3Cpolygon fill='%23444' points='990 450 1080 300 900 300'/%3E%3Cpolygon fill='%23222' points='90 750 0 900 180 900'/%3E%3Cpolygon points='270 750 180 900 360 900'/%3E%3Cpolygon fill='%23DDD' points='270 750 360 600 180 600'/%3E%3Cpolygon points='450 750 540 600 360 600'/%3E%3Cpolygon points='630 750 540 900 720 900'/%3E%3Cpolygon fill='%23444' points='630 750 720 600 540 600'/%3E%3Cpolygon fill='%23AAA' points='810 750 720 900 900 900'/%3E%3Cpolygon fill='%23666' points='810 750 900 600 720 600'/%3E%3Cpolygon fill='%23999' points='990 750 900 900 1080 900'/%3E%3Cpolygon fill='%23999' points='180 0 90 150 270 150'/%3E%3Cpolygon fill='%23444' points='360 0 270 150 450 150'/%3E%3Cpolygon fill='%23FFF' points='540 0 450 150 630 150'/%3E%3Cpolygon points='900 0 810 150 990 150'/%3E%3Cpolygon fill='%23222' points='0 300 -90 450 90 450'/%3E%3Cpolygon fill='%23FFF' points='0 300 90 150 -90 150'/%3E%3Cpolygon fill='%23FFF' points='180 300 90 450 270 450'/%3E%3Cpolygon fill='%23666' points='180 300 270 150 90 150'/%3E%3Cpolygon fill='%23222' points='360 300 270 450 450 450'/%3E%3Cpolygon fill='%23FFF' points='360 300 450 150 270 150'/%3E%3Cpolygon fill='%23444' points='540 300 450 450 630 450'/%3E%3Cpolygon fill='%23222' points='540 300 630 150 450 150'/%3E%3Cpolygon fill='%23AAA' points='720 300 630 450 810 450'/%3E%3Cpolygon fill='%23666' points='720 300 810 150 630 150'/%3E%3Cpolygon fill='%23FFF' points='900 300 810 450 990 450'/%3E%3Cpolygon fill='%23999' points='900 300 990 150 810 150'/%3E%3Cpolygon points='0 600 -90 750 90 750'/%3E%3Cpolygon fill='%23666' points='0 600 90 450 -90 450'/%3E%3Cpolygon fill='%23AAA' points='180 600 90 750 270 750'/%3E%3Cpolygon fill='%23444' points='180 600 270 450 90 450'/%3E%3Cpolygon fill='%23444' points='360 600 270 750 450 750'/%3E%3Cpolygon fill='%23999' points='360 600 450 450 270 450'/%3E%3Cpolygon fill='%23666' points='540 600 630 450 450 450'/%3E%3Cpolygon fill='%23222' points='720 600 630 750 810 750'/%3E%3Cpolygon fill='%23FFF' points='900 600 810 750 990 750'/%3E%3Cpolygon fill='%23222' points='900 600 990 450 810 450'/%3E%3Cpolygon fill='%23DDD' points='0 900 90 750 -90 750'/%3E%3Cpolygon fill='%23444' points='180 900 270 750 90 750'/%3E%3Cpolygon fill='%23FFF' points='360 900 450 750 270 750'/%3E%3Cpolygon fill='%23AAA' points='540 900 630 750 450 750'/%3E%3Cpolygon fill='%23FFF' points='720 900 810 750 630 750'/%3E%3Cpolygon fill='%23222' points='900 900 990 750 810 750'/%3E%3Cpolygon fill='%23222' points='1080 300 990 450 1170 450'/%3E%3Cpolygon fill='%23FFF' points='1080 300 1170 150 990 150'/%3E%3Cpolygon points='1080 600 990 750 1170 750'/%3E%3Cpolygon fill='%23666' points='1080 600 1170 450 990 450'/%3E%3Cpolygon fill='%23DDD' points='1080 900 1170 750 990 750'/%3E%3C/g%3E%3C/svg%3E"); */
    background-size: cover;
    position: relative;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(236, 241, 242, 1) 50%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 74%, rgba(255, 255, 255, 1) 74%);
}

.blog_order_txt {
    background-color: #f0f2f2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='540' height='450' viewBox='0 0 1080 900'%3E%3Cg fill-opacity='.1'%3E%3Cpolygon fill='%23444' points='90 150 0 300 180 300'/%3E%3Cpolygon points='90 150 180 0 0 0'/%3E%3Cpolygon fill='%23AAA' points='270 150 360 0 180 0'/%3E%3Cpolygon fill='%23DDD' points='450 150 360 300 540 300'/%3E%3Cpolygon fill='%23999' points='450 150 540 0 360 0'/%3E%3Cpolygon points='630 150 540 300 720 300'/%3E%3Cpolygon fill='%23DDD' points='630 150 720 0 540 0'/%3E%3Cpolygon fill='%23444' points='810 150 720 300 900 300'/%3E%3Cpolygon fill='%23FFF' points='810 150 900 0 720 0'/%3E%3Cpolygon fill='%23DDD' points='990 150 900 300 1080 300'/%3E%3Cpolygon fill='%23444' points='990 150 1080 0 900 0'/%3E%3Cpolygon fill='%23DDD' points='90 450 0 600 180 600'/%3E%3Cpolygon points='90 450 180 300 0 300'/%3E%3Cpolygon fill='%23666' points='270 450 180 600 360 600'/%3E%3Cpolygon fill='%23AAA' points='270 450 360 300 180 300'/%3E%3Cpolygon fill='%23DDD' points='450 450 360 600 540 600'/%3E%3Cpolygon fill='%23999' points='450 450 540 300 360 300'/%3E%3Cpolygon fill='%23999' points='630 450 540 600 720 600'/%3E%3Cpolygon fill='%23FFF' points='630 450 720 300 540 300'/%3E%3Cpolygon points='810 450 720 600 900 600'/%3E%3Cpolygon fill='%23DDD' points='810 450 900 300 720 300'/%3E%3Cpolygon fill='%23AAA' points='990 450 900 600 1080 600'/%3E%3Cpolygon fill='%23444' points='990 450 1080 300 900 300'/%3E%3Cpolygon fill='%23222' points='90 750 0 900 180 900'/%3E%3Cpolygon points='270 750 180 900 360 900'/%3E%3Cpolygon fill='%23DDD' points='270 750 360 600 180 600'/%3E%3Cpolygon points='450 750 540 600 360 600'/%3E%3Cpolygon points='630 750 540 900 720 900'/%3E%3Cpolygon fill='%23444' points='630 750 720 600 540 600'/%3E%3Cpolygon fill='%23AAA' points='810 750 720 900 900 900'/%3E%3Cpolygon fill='%23666' points='810 750 900 600 720 600'/%3E%3Cpolygon fill='%23999' points='990 750 900 900 1080 900'/%3E%3Cpolygon fill='%23999' points='180 0 90 150 270 150'/%3E%3Cpolygon fill='%23444' points='360 0 270 150 450 150'/%3E%3Cpolygon fill='%23FFF' points='540 0 450 150 630 150'/%3E%3Cpolygon points='900 0 810 150 990 150'/%3E%3Cpolygon fill='%23222' points='0 300 -90 450 90 450'/%3E%3Cpolygon fill='%23FFF' points='0 300 90 150 -90 150'/%3E%3Cpolygon fill='%23FFF' points='180 300 90 450 270 450'/%3E%3Cpolygon fill='%23666' points='180 300 270 150 90 150'/%3E%3Cpolygon fill='%23222' points='360 300 270 450 450 450'/%3E%3Cpolygon fill='%23FFF' points='360 300 450 150 270 150'/%3E%3Cpolygon fill='%23444' points='540 300 450 450 630 450'/%3E%3Cpolygon fill='%23222' points='540 300 630 150 450 150'/%3E%3Cpolygon fill='%23AAA' points='720 300 630 450 810 450'/%3E%3Cpolygon fill='%23666' points='720 300 810 150 630 150'/%3E%3Cpolygon fill='%23FFF' points='900 300 810 450 990 450'/%3E%3Cpolygon fill='%23999' points='900 300 990 150 810 150'/%3E%3Cpolygon points='0 600 -90 750 90 750'/%3E%3Cpolygon fill='%23666' points='0 600 90 450 -90 450'/%3E%3Cpolygon fill='%23AAA' points='180 600 90 750 270 750'/%3E%3Cpolygon fill='%23444' points='180 600 270 450 90 450'/%3E%3Cpolygon fill='%23444' points='360 600 270 750 450 750'/%3E%3Cpolygon fill='%23999' points='360 600 450 450 270 450'/%3E%3Cpolygon fill='%23666' points='540 600 630 450 450 450'/%3E%3Cpolygon fill='%23222' points='720 600 630 750 810 750'/%3E%3Cpolygon fill='%23FFF' points='900 600 810 750 990 750'/%3E%3Cpolygon fill='%23222' points='900 600 990 450 810 450'/%3E%3Cpolygon fill='%23DDD' points='0 900 90 750 -90 750'/%3E%3Cpolygon fill='%23444' points='180 900 270 750 90 750'/%3E%3Cpolygon fill='%23FFF' points='360 900 450 750 270 750'/%3E%3Cpolygon fill='%23AAA' points='540 900 630 750 450 750'/%3E%3Cpolygon fill='%23FFF' points='720 900 810 750 630 750'/%3E%3Cpolygon fill='%23222' points='900 900 990 750 810 750'/%3E%3Cpolygon fill='%23222' points='1080 300 990 450 1170 450'/%3E%3Cpolygon fill='%23FFF' points='1080 300 1170 150 990 150'/%3E%3Cpolygon points='1080 600 990 750 1170 750'/%3E%3Cpolygon fill='%23666' points='1080 600 1170 450 990 450'/%3E%3Cpolygon fill='%23DDD' points='1080 900 1170 750 990 750'/%3E%3C/g%3E%3C/svg%3E");
    height: 100%;
    flex-direction: column;
    background-size: cover;
    background-repeat: no-repeat;
}

    .blog_order_txt strong {
        border-bottom: 1px solid #fff;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

.blog_order_img {
    width: 100%;
    height: 400px;
}

    .blog_order_img img {
        width: 100%;
        height: 100%;
    }

.lastBlog .blogItem {
    /* background-color: rgba(255, 255, 255, 0.8); */
    min-height: 200px;
}

.lastBlog .blogItemImage {
    height: 350px;
}

.searchBlog {
    background-color: #fff;
    display: flex;
}

.centeral {
    display: flex;
    align-items: center;
}

.blogItemText {
    color: #6d96a2;
}

.searchBlog .searchBox {
    background: #fff;
    box-shadow: unset;
    border-radius: 0;
    width: 100%;
    display: flex;
    align-items: center;
}

    .searchBlog .searchBox input {
        width: 100%;
    }

.searchBlog input {
    border: 0;
}

.blogSort {
    background: #fff;
    width: 100%;
    display: flex;
    padding-right: 20px;
    padding-left: 20px;
    height: 40px;
}

.blogSearch {
    padding-bottom: 30px;
}

.blogMostViewBox li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

    .blogMostViewBox li a {
        transition: all 0.2s;
    }

    .blogMostViewBox li:hover a {
        font-size: 17px;
    }

.blogMostViewBox {
    border: 1px solid #3333;
    padding: 5px;
    background: #f2f2f2;
}

    .blogMostViewBox li + li {
        border-top: 1px solid #3333;
    }

    .blogMostViewBox .counter {
        background: var(--primary-site);
        color: #fff;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.blogItem {
    /* border: 1px solid #3333; */
    padding: 5px;
    margin-bottom: 5px;
    transition: 0.5s;
    display: block;
}

    .blogItem:hover {
        border-color: var(--primary-site);
        background: #f2f2f2;
    }

        .blogItem:hover .default_btn {
            background-color: rgb(163, 163, 163);
            color: #fff;
        }

.blogItemImage {
    width: 100%;
    height: 300px;
    border-radius: 0;
    overflow: hidden;
}

    .blogItemImage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        background: #dedede;
    }

.blogItemContent {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 10px;
    min-height: 126px;
}

    .blogItemContent .itemStats {
        margin-top: auto;
    }

.blogItemText {
    margin: 5px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.blogItemTitle {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}


.itemStats {
    display: flex;
    justify-content: space-between;
    color: #AFAAA5;
    font-size: 12px;
    border-top: 1px solid #3333;
    padding-top: 10px;
    flex-wrap: wrap;
}

    .itemStats .bi {
        font-size: 15px;
        margin-left: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.blog_inner .itemStats {
    font-size: 13px;
    color: #282828a1;
    display: flex;
    padding-top: 1rem;
    background-color: #c2c0c0;
    padding: 15px;
}

.blog_News {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.seen_News {
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.blog_News .bi {
    padding-left: 7px;
}

.seen_News .bi {
    padding-left: 7px;
}

.blog_inner .blog_topBox {
    border-radius: 20px;
    overflow: hidden;
    margin: 15px 0;
    border: 3px solid #c2c0c0;
}

.blog_inner_img_box {
    overflow: hidden;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

    .blog_inner_img_box img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /*background: #c2c0c0;*/
        background-color: #e1e1e1;
    }

.date span {
    direction: ltr;
}

.blog-summary {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #e1e1e1;
}

.blog_inner_txt p {
    line-height: 28px;
    font-size: 15px;
}

.blogSummary_txt {
    padding: 15px;
}

.blog_inner_txt {
    margin-bottom: 1rem;
}

.blog_inner {
    padding: 30px 0;
    text-align: right;
}

.blog {
    padding-bottom: 30px;
}

.blog_cover:after {
    content: '';
    background-color: rgba(70, 69, 69, 0.466);
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
}

.content-tags i {
    vertical-align: center;
}

.content-tags span {
    display: flex;
    align-items: center;
}

.content-tags .bi {
    font-size: 20px;
    margin-left: 5px;
}

.content-tags {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

    .content-tags a {
        background: #333;
        display: inline-block;
        color: #fff;
        font-size: 14px;
        margin-right: 0.8rem;
        padding: 5px;
        margin: .5rem;
        border-radius: 5px;
    }

.autor_blog {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    border-top: 1px solid #EEE;
    padding-top: 1rem;
}

.autor-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.author {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.autor-img {
    width: 75px;
    height: 75px;
    margin-left: 10px;
}

    .autor-img img {
        border-radius: 50%;
        border: 1px solid var(--gray-dark);
        width: 100%;
        height: 100%;
    }

.author img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 2px solid #333;
    margin: 0 20px;
}

.name {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .name span {
        text-align: center;
    }

.relatedArticles {
    border-top: 1px solid rgba(202, 197, 197, 0.657);
    margin-top: 20px;
    padding-top: 20px;
    position: relative;
}

.related_card {
    border: 1px solid #7f838180;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: gray !important;
    text-align: center;
    width: 100%;
    font-size: 13px;
}

.related_img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

    .related_img img {
        width: 100%;
        height: 100%;
    }

.related_card:hover img {
    transform: scale(1.1);
    transition: 0.6s
}

.relatedArticles_slider .item {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
    margin: 0 10px;
}

.relatedArticles_slider .owl-stage {
    display: flex;
}



/*-------------------end blog-----------------*/

/*----------------- 404 page ----------------*/
.image-404 {
    width: 50%;
    /* height: 60vh; */
    display: flex;
    justify-content: center;
}

.not-found-page {
    width: 100%;
    color: var(--primary-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #3dd3b6;
    /* background-image: radial-gradient(circle at center center, transparent, #0D0257), linear-gradient(87deg, rgba(80, 80, 80, 0.05) 0%, rgba(80, 80, 80, 0.05) 50%, rgba(6, 6, 6, 0.05) 50%, rgba(6, 6, 6, 0.05) 100%), linear-gradient(105deg, rgba(26, 26, 26, 0.05) 0%, rgba(26, 26, 26, 0.05) 50%, rgba(155, 155, 155, 0.05) 50%, rgba(155, 155, 155, 0.05) 100%), linear-gradient(212deg, rgba(130, 130, 130, 0.05) 0%, rgba(130, 130, 130, 0.05) 50%, rgba(81, 81, 81, 0.05) 50%, rgba(81, 81, 81, 0.05) 100%), linear-gradient(139deg, rgba(65, 65, 65, 0.05) 0%, rgba(65, 65, 65, 0.05) 50%, rgba(181, 181, 181, 0.05) 50%, rgba(181, 181, 181, 0.05) 100%), linear-gradient(331deg, rgba(8, 8, 8, 0.05) 0%, rgba(8, 8, 8, 0.05) 50%, rgba(120, 120, 120, 0.05) 50%, rgba(120, 120, 120, 0.05) 100%), linear-gradient(117deg, rgba(135, 135, 135, 0.05) 0%, rgba(135, 135, 135, 0.05) 50%, rgba(63, 63, 63, 0.05) 50%, rgba(63, 63, 63, 0.05) 100%), radial-gradient(circle at center center, #0d0257ce, #0d0257ce); */
}

.image-404 img {
    width: 100%;
    /* height: 100%; */
    object-fit: contain;
}

.btn404 {
    margin-top: 30px !important;
    background-color: #FFC107;
    font-size: 16px;
    font-weight: bold;
}

    .btn404 .bi {
        font-size: 30px;
        margin-left: .5rem;
    }

    .btn404:hover {
        color: #221E1F;
    }

/*----------------- end 404 page style ----------------*/
/*-----------------about us ----------------*/
.about_us {
    padding: 50px 0;
    text-align: right;
    /* background-image: linear-gradient(90deg, rgba(165, 165, 165, 0.03) 0%, rgba(165, 165, 165, 0.03) 8%, rgba(235, 235, 235, 0.03) 8%, rgba(235, 235, 235, 0.03) 9%, rgba(7, 7, 7, 0.03) 9%, rgba(7, 7, 7, 0.03) 14%, rgba(212, 212, 212, 0.03) 14%, rgba(212, 212, 212, 0.03) 17%, rgba(219, 219, 219, 0.03) 17%, rgba(219, 219, 219, 0.03) 95%, rgba(86, 86, 86, 0.03) 95%, rgba(86, 86, 86, 0.03) 100%), linear-gradient(67.5deg, rgba(80, 80, 80, 0.03) 0%, rgba(80, 80, 80, 0.03) 11%, rgba(138, 138, 138, 0.03) 11%, rgba(138, 138, 138, 0.03) 17%, rgba(122, 122, 122, 0.03) 17%, rgba(122, 122, 122, 0.03) 24%, rgba(166, 166, 166, 0.03) 24%, rgba(166, 166, 166, 0.03) 27%, rgba(245, 245, 245, 0.03) 27%, rgba(245, 245, 245, 0.03) 89%, rgba(88, 88, 88, 0.03) 89%, rgba(88, 88, 88, 0.03) 100%), linear-gradient(67.5deg, rgba(244, 244, 244, 0.03) 0%, rgba(244, 244, 244, 0.03) 4%, rgba(16, 16, 16, 0.03) 4%, rgba(16, 16, 16, 0.03) 10%, rgba(157, 157, 157, 0.03) 10%, rgba(157, 157, 157, 0.03) 20%, rgba(212, 212, 212, 0.03) 20%, rgba(212, 212, 212, 0.03) 83%, rgba(5, 5, 5, 0.03) 83%, rgba(5, 5, 5, 0.03) 84%, rgba(237, 237, 237, 0.03) 84%, rgba(237, 237, 237, 0.03) 100%), linear-gradient(90deg, #ffffff, #ffffff); */
    background-position: center;
    background-size: 100% 100%;
    background-attachment: fixed;
    color: #333;
}

.about_us_content p {
    line-height: 26px;
    font-size: 14px;
}

/* .about_devider {
	 shape-outside: polygon(100% 100%, 100% 0px, 0 100%);
	 width: 50%;
	 height: 350px;
	 float: left;
	 opacity: .2;
	 display: block;
 } */

.about_img {
    height: 450px;
}

    .about_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about_us_content {
    position: relative;
}

.about_txt {
    z-index: 1000000;
    background-color: #f1efef;
    margin: 20px 74px 0;
    padding: 25px;
    box-shadow: 0 5px 10px 0 #d7d6d6;
}

.about_us_content .owl-carousel {
    z-index: -1;
}

.txt_blue {
    color: var(--primary-site);
    font-size: 20px;
    margin-bottom: 15px;
    display: block;
}

/*----------------- end about us ----------------*/
/*----------------- service inner----------------*/

.service_inner {
    padding: 30px 0;
    background-image: linear-gradient(90deg, transparent 0%, rgb(255, 255, 255) 25%, rgb(255, 255, 255) 75%, transparent 100%), repeating-linear-gradient(90deg, rgba(98, 98, 98, 0.06) 0px, rgba(98, 98, 98, 0.06) 1px, transparent 1px, transparent 5px), repeating-linear-gradient(0deg, rgba(98, 98, 98, 0.06) 0px, rgba(98, 98, 98, 0.06) 1px, transparent 1px, transparent 5px), repeating-linear-gradient(0deg, rgba(98, 98, 98, 0.06) 0px, rgba(98, 98, 98, 0.06) 1px, transparent 1px, transparent 15px), repeating-linear-gradient(90deg, rgba(98, 98, 98, 0.06) 0px, rgba(98, 98, 98, 0.06) 1px, transparent 1px, transparent 15px), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
}

.sevice_img img {
    border-radius: 5px;
    width: 100%;
    height: 300px;
}

.service_txt {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

    .service_txt p {
        margin-bottom: .5rem;
    }

/*----------------- end service----------------*/
/*----------------- ruls---------------*/
.ruls {
    background-image: linear-gradient(90deg, transparent 0%, rgb(255, 255, 255) 20%, rgb(255, 255, 255) 80%, transparent 100%), repeating-linear-gradient(0deg, rgba(9, 113, 206, 0.06) 0px, rgba(9, 113, 206, 0.06) 1px, transparent 1px, transparent 13px), repeating-linear-gradient(90deg, rgba(9, 113, 206, 0.06) 0px, rgba(9, 113, 206, 0.06) 1px, transparent 1px, transparent 13px), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
    background-position: center;
    background-attachment: fixed;
    background-size: 100% 100%;
    padding: 30px 0;
    text-align: right;
    line-height: 26px;
}

.ruls_content p {
    margin-bottom: 2rem;
}

.ruls_us_title {
    padding: 20px;
}

.ruls img {
    max-width: 100%;
    object-fit: contain;
}

/*-----------------end ruls---------------*/


/*-----------------complaint---------------*/
.complaint_form input {
    margin-bottom: 1rem;
}

.complaint {
    padding: 30px 0;
    text-align: right;
    background-image: radial-gradient(circle at 13% 47%, rgba(140, 140, 140, 0.03) 0%, rgba(140, 140, 140, 0.03) 25%, transparent 25%, transparent 100%), radial-gradient(circle at 28% 63%, rgba(143, 143, 143, 0.03) 0%, rgba(143, 143, 143, 0.03) 16%, transparent 16%, transparent 100%), radial-gradient(circle at 81% 56%, rgba(65, 65, 65, 0.03) 0%, rgba(65, 65, 65, 0.03) 12%, transparent 12%, transparent 100%), radial-gradient(circle at 26% 48%, rgba(60, 60, 60, 0.03) 0%, rgba(60, 60, 60, 0.03) 6%, transparent 6%, transparent 100%), radial-gradient(circle at 97% 17%, rgba(150, 150, 150, 0.03) 0%, rgba(150, 150, 150, 0.03) 56%, transparent 56%, transparent 100%), radial-gradient(circle at 50% 100%, rgba(25, 25, 25, 0.03) 0%, rgba(25, 25, 25, 0.03) 36%, transparent 36%, transparent 100%), radial-gradient(circle at 55% 52%, rgba(69, 69, 69, 0.03) 0%, rgba(69, 69, 69, 0.03) 6%, transparent 6%, transparent 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
}


/*-----------------------basket-------------------------*/
.basket {
    color: #6e6b6b;
}

.basketIcon {
    width: 75px;
    height: 75px;
    filter: brightness(2);
}

.sendinfo_icon {
    background: url('../images/basketIcons.png') 89px 89px;
}

.payment_icon {
    background: url(../images/basketIcons.png) 159px 89px;
}

.confirm_icon {
    background: url(../images/basketIcons.png) 294px 89px;
}

.bill_icon {
    background: url(../images/basketIcons.png) 228px 89px;
}

.tab_span.activeT .basketIcon {
    filter: grayscale(0);
}

.basket .nav_tabs {
    border-bottom: 0 !important;
    position: relative;
}

.bas_Tab {
    display: flex;
    justify-content: center;
    text-align: center;
}

.tab_span.activeT {
    filter: brightness(0);
}

.tab_span {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #c7c1c1;
}

    .tab_span::after {
        content: '';
        background-color: #fff;
        border: 2px solid #585353d6;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        position: absolute;
        bottom: -18px;
        left: 45%;
        z-index: 10;
    }

.basket .nav_tabs::after {
    content: '';
    background-color: #585353d6;
    height: 3px;
    width: 100%;
    position: absolute;
    bottom: -14px;
    left: 0;
    right: 0;
    z-index: -1;
}

.tab_span.activeT::after {
    background-color: var(--primary-site);
}

.tab_content .active {
    display: block !important
}

.basket .tab_pane {
    text-align: right;
    background-color: #fff;
    border-radius: 15px;
}

.basketpro_titles {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 12px;
    font-size: 14px;
}

.tab_content {
    margin: 35px 0;
}

.basketProInfo {
    padding: 15px;
    text-align: center;
}

.infoPrime {
    font-size: 11px;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.productprice,
.productCount {
    display: flex;
    align-items: center;
    justify-content: center;
}

.no_item {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basketbtns {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.colorSpan {
    padding: 5px;
    border-radius: 5px;
}

.formLbl {
    text-align: right;
    display: flex;
    align-items: center;
}

    .formLbl span {
        color: red;
        margin-left: 5px;
    }

.formInput input {
    border: 0;
    background-color: unset
}

.formInput {
    border: 1px solid #e9ecef;
    border-radius: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.username_icon,
.password_icon {
    border-left: 1px solid #e9ecef;
}

.login_links {
    display: flex;
    margin-top: 1rem;
    flex-direction: column;
    font-size: 12px;
}

    .login_links .btn:hover {
        color: var(--primary-site);
    }

.navbarTxt {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.navbarIcon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbarTxt h1 {
    font-size: 30px;
    white-space: pre-wrap;
}

.navbarTxt h2 {
    font-size: 20px;
    white-space: pre-wrap;
}

/*==success==*/
.basket_bill {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 2;
    padding: 60px 0;
    font-weight: bold;
    line-height: 3
}

/*==address==*/
.address_line,
.phone_line,
.mail_line {
    display: flex;
    align-items: center;
}

.user_address .address_line,
.user_address .phone_line,
.user_address .mail_line {
    flex-wrap: wrap;
    text-align: right;
}

.address_line .bi,
.phone_line .bi,
.mail_line .bi {
    font-size: 20px;
}

.address_phone::before {
    content: '-';
    margin: 0 .5rem;
}

.address_info {
    align-items: start;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.user_address_item {
    border-top: 1px solid #504d4d59;
    padding: 5px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.userAddress_card {
    border: 1px solid #3333;
    padding: 20px;
    border-radius: 10px;
}

.address_title {
    border-bottom: 1px solid #94919161;
    padding: 15px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.address_delete,
.address_edit {
    border-radius: 50%;
    color: #fff !important;
    background-color: var(--primary-site);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.address_edit {
    background-color: #c1c4c5;
}

    .address_edit:hover {
        background-color: #bebfc0;
    }

.address_delete:hover {
    background-color: #000;
}

.address_btns {
    display: flex;
    align-items: center;
}

.address_modal_input {
    margin-top: 10px;
    font-size: 14px;
}

.pick_address .lable {
    padding-left: 0;
}

/*==basketProducts==*/
.payment_information {
    border: 1px solid rgba(153, 149, 149, 0.452);
    /* border-radius: 10px; */
    border-radius: 0;
    overflow: hidden;
}

.basketOrders {
    padding: 20px;
}

.basketproduct img {
    width: 100px;
    height: 100px;
}

.pro_plus_count {
    background-image: radial-gradient(#ffffff, #f1f1f1, #dedede);
    color: #000;
    padding: 4px 8px;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
}

.pro_minus_count {
    background-image: radial-gradient(#ffcc004f, #ffcc006e, #ffcc00);
    color: #000;
    padding: 3px 9px;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
}

.deleteProBtn {
    position: absolute;
    left: 0%;
    top: 35%;
    color: #525050;
}

    .deleteProBtn:hover {
        color: var(--primary-site);
    }

.shop_product_item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(153, 149, 149, 0.452);
    position: relative;
}

.text-primary {
    color: var(--primary-site) !important;
    font-size: 16px;
    font-weight: bold;
    font-family: 'SiteFont';
    margin: 0 5px;
}

.shop_totalprice {
    text-align: left;
    font-size: 13px;
    width: 100%;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #ebebeb;
    border-radius: 5px;
    border: 2px solid #a0a0a0;
}

.shop_table_one:last-child .shop_totalprice {
    border-radius: 0 0 20px 20px;
}

.mobile_title {
    display: none;
}

.basket_shopname {
    text-align: center;
    margin-top: 10px;
}

.total_ine {
    text-align: left;
}

.basketpaymentItems .paymentItem + .paymentItem {
    border-top: 1px solid rgba(207, 205, 205, 0.671);
}

/*==basket invoice==*/
.invoice_info .basketpro_titles {
    display: flex !important;
    align-items: center;
    padding-top: 15px;
    border: 1px solid #dee2e6;
    border-radius: 10px 10px 0 0;
    border-bottom: 0;
}

.invoice_logo .navbar-brand {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.invoice_prices {
    box-shadow: 0 0 8px 0px #e6e4e4;
    padding: 11px;
    border-radius: 10px;
    margin-top: 20px;
}

.invoice_price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.invoice_prices ul {
    width: 100%;
    line-height: 3;
    font-size: 13px;
    margin-bottom: 0;
}

.invoice_price_total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary-site);
    font-size: 17px;
    font-family: 'SiteFont';
}

.invoice_table {
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 0;
}

.invoiceProducts {
    border-radius: 10px;
    padding: 8px 0;
}

.invoice .basketpro_titles {
    min-width: 1302px;
    border-bottom: 0;
}

.table-bordered td,
.table-bordered th {
    border: 1px solid #dee2e6;
    height: 46px;
}

.reciever_info {
    border: 1px solid rgba(153, 149, 149, 0.452);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 10px;
    background-color: #e0e0e0;
}

.shop_table_one {
    overflow-y: visible;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: .5rem;
}

    .shop_table_one:last-child {
        border-radius: 20px;
    }

    .shop_table_one .infoPrime {
        justify-content: center;
    }

.detailspan {
    padding: 5px;
    border-radius: 3px;
    margin-left: 1rem;
    color: #000;
}

.discountCode {
    display: flex;
    align-items: center;
    width: 50%;
    margin: 20px 0;
}

    .discountCode input {
        border-radius: 20px;
    }

.merchant-container .selectRadio {
    top: 40%;
}

.invoice .pro_total {
    text-align: center;
}

.tab_titlee {
    text-align: center;
}

/*==basket invoice(single)==*/
.invoice_info .basketpro_titles .tab_titlee {
    width: 20%;
    text-align: center;
}

.invoice_table.table td {
    min-width: 260px;
    vertical-align: middle;
    text-align: center;
    padding: 0;
}

.invoice_table.table th {
    min-width: 260px;
    text-align: center;
}









/*------------- end basket -----------*/

/*------------------compare----------------*/
.compare_table td {
    min-width: 295px;
    text-align: right;
}

.compare_table tr td:first-child {
    min-width: 145px;
}

.remove_td {
    background-color: rgb(206, 206, 206);
    border-radius: 50%;
    margin-bottom: 5px;
    position: absolute;
    z-index: 1;
    top: 2px;
    right: 2px;
    /* color: unset; */
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .remove_td:hover,
    .remove_td:active {
        background-color: var(--red);
        color: #fff;
    }

.product_cell {
    position: relative;
}

.compare_search {
    margin-bottom: 20px;
}

/*--------- end compare ------------*/

/***********************profile *********************/
.userImgBox img {
    width: 100%;
    height: 100%;
}


.loginRegister {
    min-height: 500px;
    /* background: url(../images/loginBack.png ); */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 15px 0;
}

.loginBox .from-group {
    margin-bottom: 15px;
}

.loginBox .captcha {
    display: flex;
}

.loginBox.loginForm {
    border-right: 1px solid var(--primary-site);
    padding-right: 50px;
    margin-right: 20px;
}

.loginBox .loginFooter {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

    .loginBox .loginFooter button {
        margin: 0;
    }

.profile {
    padding: 50px 0;
    background: #f9f9f9;
}

.userImgBox {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 5px;
    margin: auto;
    margin-top: auto;
    margin-bottom: auto;
    margin-top: auto;
    border: 1px solid #3333;
    padding: 5px;
    margin-top: -50px;
    margin-bottom: 10px;
    background: #fff;
}

.userBox {
    border: 1px solid #3333;
    border-radius: 5px;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    background: #fff;
    position: relative;
}

.panelOptions {
    border: 1px solid #3333;
    border-radius: 5px;
    margin-top: 10px;
    padding: 10px;
    text-align: right;
    font-size: 12px;
    margin-bottom: 0;
    color: #a0a0a0;
    background: #fff;
}

    .panelOptions .optionItem {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        transition: 0.2s;
    }

.optionItem img {
    width: 30px;
    height: 30px;
}

.panelOptions li:hover {
    background-color: #d3d3d317;
}

.panelOptions li + li {
    border-top: 1px solid #3333;
}

.editeDashboard,
.back2Dashboard {
    border: 1px solid #3333;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    top: 10px;
    transition: 0.2s;
}

.back2Dashboard {
    right: 10px;
}

.editeDashboard {
    left: 10px;
}

    .editeDashboard img,
    .back2Dashboard img {
        width: 30px;
        height: 30px;
    }

.optionItem span {
    margin-right: 10px;
    color: #404040;
    transition: 0.2s;
}

.profileTitle {
    height: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #010101;
    position: relative;
}


/* .profileTitle h6::after {

	 content: "";
	 height: 1px;
	 background: #3333;
	 width: calc(100% - 170px);
	 left: 0;
	 top: 14px;
	 position: absolute;

 } */

.profileBox {
    border: 1px solid #bfbfbf33;
    display: flex;
    flex-wrap: wrap;
    border-radius: 5px;
    background: #FFF;
    text-align: center;
}

    .profileBox > div {
        height: 80px;
        border: 1px solid #bfbfbf33;
        width: 50%;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        padding: 5px 10px;
    }

    .profileBox .seeMore {
        width: 100%;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

        .profileBox .seeMore button {
            font-size: 12px;
            transition: 0.2s;
            border: 0;
            background: #fff;
        }

.lastOrders > div {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

    .lastOrders > div > img {
        width: 50px;
        height: 50px;
        margin-left: 10px;
    }

.lastOrders span,
.lastOrders strong {
    font-size: 12px;
    text-align: right;
}

.lastOrders .del {
    position: absolute;
    height: 30px;
    width: 30px;
    border: 1px solid #3333;
    top: 20px;
    left: 20px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .lastOrders .del .bi {
        font-size: 20px;
    }

.profileBox > div > span {
    color: #a0a0a0;
    font-size: 12px;
}

.profileBox > div > strong {
    color: #a0a0a0;
    margin-right: 10px;
    margin-top: 5px;
    font-size: 14px;
}

.bankCart strong {
    direction: ltr;
}




.profileBox table td,
.profileBox table th {
    min-width: 100px;
}



.addressItem .dropright,
.lastItem .dropright {
    position: absolute;
    left: 10px;
    top: 10px;
}

.addressItem {
    font-size: 13px;
    line-height: 30px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    padding-left: 10px;
    padding-left: 50px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #3333;
    margin-bottom: 10px;
    position: relative;
}

    .addressItem .dropright button,
    .lastItem .dropright button {
        border-radius: 5px !important;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.addAddress {
    background: #333;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    box-shadow: 0 0 10px -5px #333;
    margin-right: auto;
    transition: 0.5s;
}

    .addAddress:hover {
        transform: rotate(90deg);
        color: #FFF;
    }

.orderTitle {
    justify-content: flex-start;
    width: 100%;
}

    .orderTitle .active {
        background-color: #fff !important;
        border: 2px solid #01b16e !important;
        color: #01b16e !important;
        font-weight: bold;
    }

    .orderTitle input:checked + label {
        background: var(--primary-site);
        color: #fff !important;
        border: 1px solid #fff;
    }

    .orderTitle input {
        display: none;
    }

        .orderTitle input + label {
            border: 1px solid #3333;
            padding: 5px 10px;
            border-radius: 5px;
            color: #a0a0a0;
            margin-left: 10px;
            cursor: pointer;
            font-size: 13px;
            text-align: center;
        }

.ordersContent {
    height: auto;
    border: 1px solid #3333;
    background: #fff;
    border-radius: 5px;
    padding: 10px;
}

.orderItem {
    border: 1px solid #3333;
    border-radius: 5px;
    margin-bottom: 10px;
}

    .orderItem .itemHeader {
        height: 30px;
        width: 100%;
        border-bottom: 1px solid #3333;
        display: flex;
        justify-content: space-between;
        padding: 5px 7px;
        font-size: 12px;
    }

.orderSumrize {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 70px;
    padding: 0 10px;
}

.orderItem .itemFooter {
    height: 30px;
    display: flex;
    width: 100%;
    border-top: 1px solid #3333;
    justify-content: space-between;
    padding: 5px 7px;
    font-size: 12px;
}

.itemFooter .bi {
    font-size: 15px;
    margin-right: 5px;
}

.itemFooter a {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.orderItem img {
    width: 50px;
    height: 50px;
    margin-left: 10px;
}

.orderItemContent {
    border: 1px solid #3333;
    border-radius: 5px;
    margin-bottom: 10px;
    background: #f9f9f9;
    display: none;
}

    .orderItemContent table th,
    .orderItemContent table td {
        min-width: 100px;
    }

    .orderItemContent table {
        font-size: 12px;
        font-weight: normal;
        text-align: center;
        margin: unset;
    }

.lastItem {
    display: flex;
    background: #fff;
    border: 1px solid #3333;
    padding: 10px;
    padding-left: 10px;
    border-radius: 5px;
    position: relative;
    padding-left: 50px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

    .lastItem > img {
        width: 80px;
        height: 80px;
    }

    .lastItem .lastItemTxt {
        display: flex;
        flex-direction: column;
        text-align: right;
        margin-right: 19px;
        justify-content: space-between;
    }

    .addressItem .dropright,
    .lastItem .dropright {
        position: absolute;
        left: 10px;
        top: 10px;
    }

.dropright .bi {
    font-size: 20px;
}

#btnAddNewAddress .bi {
    font-size: 30px;
}

.lastItem > button {
    position: absolute;
    border: 1px solid #3333;
    bottom: 10px;
    left: 10px;
    font-size: 13px;
}

.comentParent {
    overflow: hidden;
}

.commentBox {
    height: 281px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #3333;
    overflow: hidden;
}

    .commentBox > div {
        height: 80px;
        border: 1px solid #bfbfbf33;
        width: 50%;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        padding: 5px 10px;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        font-size: 13px;
    }

    .commentBox img {
        width: 50px;
    }

svg.fa-star {
    width: 20px;
    height: 20px;
}

.closeMsg {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    background: var(--red) !important;
    color: #fff;
    font-size: 13px;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    top: 5px;
    opacity: 1;
    z-index: 1000;
}

.product_rating {
    color: #fac74b;
    display: flex;
    align-items: center;
    margin: 1rem 0;
    direction: ltr;
    justify-content: center;
}

    .product_rating .bi {
        font-size: 20px;
    }

.homCategory {
    padding: 40px 0;
}





/*--------------- end profile ------------*/
/*---------------------service--------------------*/
.service_img {
    height: 200px;
    width: 100%;
    display: block;
}

    .service_img img {
        height: 100%;
        width: 100%;
        border-radius: 10px;
    }

.service_info {
    text-align: justify;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.service_btn {
    display: flex;
    justify-content: flex-end;
}

.service_txt p {
    overflow: hidden;
    font-size: 14px;
    color: #aaa9a9;
    margin-top: 10px;
    line-height: 26px;
}

.service_item {
    border: 1px solid #d2cfcf8a;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

.service_search {
    margin-bottom: 20px;
    border-bottom: 1px solid #d2cfcf8a;
    padding-bottom: 20px;
}




/*------------------ end service ------------------*/
/*--------------------- recruitment ------------------*/
.Recruitment {
    padding: 30px 0 50px;
}

.site_title {
    color: var(--gray-dark);
    padding: 20px 0;
    transition: all .5s;
}

    .site_title h1::before {
        content: '#';
        font-size: 40px;
        font-weight: bold;
        position: absolute;
        right: -15px;
        opacity: 0;
        transition: all .3s !important;
    }

    .site_title h1:hover::before {
        opacity: 1;
    }

/* .Recruitment input {
	transition: .2s;
	border-radius: 0!important;
	border: 0;
	border-bottom: 1px solid var(--dark);
  
} */
.Recruitment input:focus::placeholder {
    color: var(--blue);
}

/* .Recruitment input:focus {
	box-shadow: initial !important;
	
	font-weight: bold;
} */
.recruitment_img img {
    width: 100%;
    height: 220px;
    border-radius: 5px;
}

.Recruitment input::placeholder {
    font-size: 15px;
}

.upload_btn {
    height: 40px;
    width: 100px;
}

/*------------------ commnet --------------*/
.comment_page::after {
    content: '';
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    width: 50%;
    height: 100%;
    z-index: 1;
    background: #0000009e;
}

.comment_page {
    background-image: url(../images/12014.jpg);
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

    .comment_page .title {
        color: #fff;
        position: relative;
        z-index: 99;
        padding-bottom: 0px;
    }

.compForm {
    padding: 30px 50px;
    position: relative;
    z-index: 2;
}

.captcha {
    margin-bottom: 1rem;
}

.siteForm {
    border-radius: 15px !important;
    margin-bottom: 1rem;
    height: 40px !important;
}

.complaimentText {
    width: 100%;
    margin-top: 1rem;
    border-radius: 15px;
}

.captcha p {
    color: #fff;
}

.captcha_question {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 1rem;
    color: var(--dark);
    background-color: #fff;
    border-radius: 0px;
    height: 42px;
    width: 100%;
}

    .captcha_question p {
        margin: 0;
        padding: 0 0 0 20px;
    }

    .captcha_question p {
        color: var(--black-site);
        padding-left: 1rem;
    }

.submitBtn {
    display: flex;
    justify-content: flex-end;
}

.submit {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 120px;
    color: #fff;
    border-radius: 0px;
}

.comment_page .title::before {
    content: '';
    position: unset;
    height: unset;
    width: unset;
    background-color: unset;
    top: unset;
    margin: unset;
}

/*-------------------------------------login----------------------------------------*/
.loginRegister .btn:focus {
    box-shadow: unset !important;
}

.loginRegister input {
    height: 50px !important;
}

.loginRegister textarea {
    min-height: 100px;
}

/* .loginRegister input:focus , .loginRegister textarea:focus{
	border-color: rgb(202, 199, 199) !important;
	box-shadow: 0 0 5px 0 rgb(202, 199, 199) !important;
} */
.loginRegister input[type=checkbox]:focus,
.loginRegister input[type=radio]:focus {
    box-shadow: unset !important;
}

.loginRegister .page_title {
    text-align: right;
    margin-top: 30px;
    color: var(--dark);
}

.loginRegister {
    min-height: 500px;
    background-image: linear-gradient(16deg, rgba(116, 116, 116, 0.02) 0%, rgba(116, 116, 116, 0.02) 25%, transparent 25%, transparent 96%, rgba(177, 177, 177, 0.02) 96%, rgba(177, 177, 177, 0.02) 100%), linear-gradient(236deg, rgba(148, 148, 148, 0.02) 0%, rgba(148, 148, 148, 0.02) 53%, transparent 53%, transparent 59%, rgba(56, 56, 56, 0.02) 59%, rgba(56, 56, 56, 0.02) 100%), linear-gradient(284deg, rgba(16, 16, 16, 0.02) 0%, rgba(16, 16, 16, 0.02) 46%, transparent 46%, transparent 71%, rgba(181, 181, 181, 0.02) 71%, rgba(181, 181, 181, 0.02) 100%), linear-gradient(316deg, rgba(197, 197, 197, 0.02) 0%, rgba(197, 197, 197, 0.02) 26%, transparent 26%, transparent 49%, rgba(58, 58, 58, 0.02) 49%, rgba(58, 58, 58, 0.02) 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
    background-size: cover;
    background-repeat: no-repeat;
    padding: 15px 0;
    overflow: hidden;
}

.loginBox .from-group {
    margin-bottom: 15px;
}

.loginBox .captcha {
    display: flex;
}

.loginBox .captchaImg {
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    border: 1px solid #3333;
    margin-right: 10px;
    width: 50%;
}

.loginBox .loginFooter {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

    .loginBox .loginFooter button {
        margin: 0;
    }

.recoverPass_btn {
    margin-top: -6px;
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
    text-align: right;
    text-decoration: underline;
    color: var(--blue);
}

.loginRegister .primary_btn {
    min-height: 50px;
}

    .loginRegister .primary_btn::before {
        background-color: #000000;
        border-radius: 0;
    }

    .loginRegister .primary_btn::after {
        border-radius: 0;
        background-color: var(--primary-site);
    }

    .loginRegister .primary_btn:hover {
        color: #fff;
    }

.register_img {
    height: 750px;
}

    .register_img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.login_link span {
    font-size: 14px;
}

.login_link a {
    font-weight: bold;
    font-size: 18px;
}


/*------------------------products-----------------------*/
.products-boxes .col-lg-3 {
    position: relative;
    height: 325px;
    /* border: 1px solid #3333; */
    padding: 10px !important;
}
.products-boxes .product_box {
    height: 100%;
}

.product_box {
    display: block;
    position: relative;
    transition: 0.3s;
    /* height:100%; */
    overflow: hidden;
}



@media (min-width: 1200px) {
    .products-boxes .product_box:hover {
        border: 1px solid gainsboro;
        padding: 15px;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1000;
        height: auto;
        background-color: #fff;
    }
}

.product_box .btn_like {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    z-index: 10;
}

.product_box:hover .btn_like {
    display: block;
}

.product_img {
    position: relative;
    background-color: #F6F6F6;
}

    .product_img img {
        transition: 0.6s;
    }

    .product_img .second_srcImg {
        opacity: 0;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
    }

    .product_img:hover .second_srcImg {
        opacity: 1;
    }

    .product_img:hover .first_srcImg {
        opacity: 0;
    }

.filtering_item {
    text-align: right;
    padding: 20px 10px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    position: relative;
}

.Filter_Product h1 {
    font-size: 17px;
    text-align: right;
    margin-bottom: 0;
    border-left: 1px solid #333;
    padding-left: 15px;
}

.Filter_Product {
    border-radius: 10px;
    height: 100%;
}


.product_filter_item .panel_slide {
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    background-color: #fff;
    z-index: 10000;
}



.brand_filter input {
    margin-left: 5px;
}

.products_filter_slide {
    text-align: right;
    padding: 7px 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

    .products_filter_slide:hover {
        color: var(--primary-site);
    }

.filter_item_icon {
    margin-left: 5px;
}

.products_filter_slide:hover .filter_item_icon .fIcon_line,
.categoryExoand .filter_item_icon .fIcon_line {
    background-color: var(--primary-site);
}

.categoryExoand {
    color: var(--primary-site);
}

.filter_slide_body {
    line-height: 2;
    display: none;
    padding: 20px;
}

.brand_filter {
    padding: 5px;
    font-size: 13px;
}

    .brand_filter a {
        color: #525050;
    }

    .brand_filter:hover,
    .brand_filter:focus,
    .subCat_filter_slide:hover,
    .subCat_filter_slide:focus {
        background-image: linear-gradient(90deg, #fffdf6, #fffae4, #fff8dc, #fff7d2);
        border-radius: 10px;
    }

.closeFilter {
    display: none;
    position: absolute;
    top: 10px;
    left: 12px;
    background-color: #000;
    color: #fff !important;
    border-radius: 10px;
}

.showFilter {
    display: none;
    /* margin-right: auto; */
    margin-right: auto;
    background-color: var(--primary-site);
    padding: 10px;
    color: #fff;
}

.fIcon_line {
    width: 10px;
    height: 2px;
    background-color: #000;
}

.fI_line2 {
    transform: rotate(90deg);
    margin-top: -2px;
    transition: 0.5s;
}

.filter_subslide_body {
    line-height: 2;
    display: flex;
    align-items: center;
}

    .filter_subslide_body ul {
        display: none;
    }

.subCat_filter_slide {
    display: flex;
    align-items: center;
    font-size: 15px;
}

.lable {
    position: relative;
    padding-left: 35px;
    margin: 0;
    cursor: pointer;
    font-size: 16px;
    padding-right: 23px;
}


    .lable input {
        position: absolute;
        visibility: hidden;
    }

.selectMark {
    position: absolute;
    top: 4px;
    right: 0px;
    height: 16px;
    width: 16px;
    background-color: white;
    border: 1px solid #999595;
    border-radius: 5px;
}


.lable input:checked ~ .selectMark {
    background-color: #fff;
}

.selectMark:after {
    content: "";
    position: absolute;
    display: none;
}

.lable input:checked ~ .selectMark:after {
    display: block;
}

.lable .selectMark:after {
    left: 3px;
    top: 3px;
    width: 8px;
    height: 8px;
    border-radius: 1px;
    background-color: var(--primary-site);
    box-shadow: 0 0 2px 0 var(--primary-site);
}

.irs--flat .irs-line {
    height: 5px !important;
}

.irs--flat .irs-bar {
    height: 5px !important;
}

.irs--flat .irs-handle > i:first-child {
    background-color: var(--primary-site);
    top: -2px;
    width: 15px;
    height: 15px;
    box-shadow: 0 0 3px 0 var(--primary-site);
}

.irs--flat .irs-bar {
    background-color: var(--primary-site);
}

.irs--flat .irs-min,
.irs--flat .irs-max {
    padding: 5px;
    top: -5px;
}

.irs-from,
.irs-to,
.irs-single {
    top: -4px !important;
    padding: 3px !important;
    background-color: #000000 !important;
}

.irs--flat .irs-from:before,
.irs--flat .irs-to:before,
.irs--flat .irs-single:before {
    border-top-color: #000 !important;
}

.irs--flat .irs-handle.state_hover > i:first-child,
.irs--flat .irs-handle:hover > i:first-child {
    background-color: var(--primary-site);
}

.filter_btn .btn {
    margin: 0;
}

.filter_btn {
    margin: 20px;
}

.filter_search .searchForm {
    width: 100%;
}

.subCat_slide_body {
    display: none;
}

.productImages_slider .item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.productImages_slider.owl-carousel .owl-item img {
    width: 270px;
    height: 250px;
}

.product_price {
    color: #919191;
}

.product_info {
    text-align: center;
}

.productImages_slider .owl-dots {
    position: absolute;
    bottom: -100px;
    width: 100%;
    text-align: center;
}

.owl-theme .owl-dots .owl-dot span {
    width: 30px;
    height: 7px;
    margin: 5px;
    background: #708EB8;
    border-radius: 0;
    transition: 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-dark);
    width: 60px;
}


.filter_body {
    overflow: hidden;
    position: relative;
}

    .filter_body::after {
        content: '';
        background-color: #151414a6;
        position: absolute;
        right: 0;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 10;
    }

.filter_box {
    height: 100%;
    margin-bottom: 20px;
}


.sort {
    border-radius: 5px;
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 10px;
}

    .sort ul {
        display: flex;
        align-items: center;
        margin: 0;
    }

        .sort ul li {
            font-size: 12px;
            margin-right: 10px;
        }

        .sort ul li {
            font-size: 12px;
        }

            .sort ul li label {
                margin-bottom: 0;
                cursor: pointer;
                text-align: center;
            }

            .sort ul li input:checked + label {
                /* background: linear-gradient(100deg, #b81f69, #601981); */
                background-color: var(--primary-site);
                padding: 4px;
                border-radius: 5px;
                color: #fff;
                box-shadow: 1px 1px 5px -2px #333;
                height: 40px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .sort ul li input {
                display: none;
            }

.filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.filter_products strong {
    border-left: 1px solid #333;
    padding-left: 10px;
    margin-left: 10px;
}

.filter select {
    border: 0;
}

.page_cover {
    height: 450px;
}

    .page_cover img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

.pagepadding {
    padding: 50px 0;
}

/*----------------------END  PRODUCT--------------------*/


/*------------------PRODUCT DETAIL--------------------------*/

.proDetail_img img {
    width: 200px;
    height: 200px;
}

.proDetail_img {
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center
}

.product_details {
    padding: 20px 0;
}

.proDetail_part {
    text-align: right;
    line-height: 2
}

.proDetail_line {
    display: flex;
    align-items: center;
    padding: 10px;
}

    .proDetail_line .discountPro .firstPrice::after {
        width: 80px;
        right: -10px;
        top: 14px;
    }

    .proDetail_line .discount_percent {
        left: -50px;
    }

    .proDetail_line .discountPro {
        width: fit-content;
    }

.pro_priceLine {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.discount_price {
    font-size: 20px;
    color: rgb(75, 74, 74);
}

.proDetails {
    padding-bottom: 20px
}

.add_to_basket {
    text-align: right;
}

    .add_to_basket .btn {
        margin: 5px 2px;
        min-height: 40px;
    }

.pro_explain {
    line-height: 1.5;
    margin-top: 20px;
    font-size: 13px;
}

.basket-page .discountPro {
    width: 50%;
}

    .basket-page .discountPro .firstPrice::after {
        width: 56px;
        height: 1px;
        position: absolute;
        right: 30%;
        top: 11px;
    }

.basket-page .discount_percent {
    left: -2px;
    position: absolute;
    color: #fff !important;
    top: 4px;
}

.proDetail_name {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #3333
}

    .proDetail_name h1 {
        font-size: 20px;
    }

.proDetail_box {
    text-align: right;
    line-height: 2
}

.bordered_title {
    font-size: 19px;
    position: relative;
}

    .bordered_title::after {
        content: '';
        height: 1px;
        background-color: #dee2e6;
        position: absolute;
        width: 88%;
        top: 23px;
        left: 0%;
    }

.specification_one {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.specification_title,
.specification_text {
    width: 50%;
    padding: 5px 10px;
    margin: 5px;
    text-align: right;
    background-color: #fff;
}

.product_comments {
    border-radius: 10px
}

.comment_name_date {
    display: flex;
    flex-direction: column;
    margin-right: 15px;
}

    .comment_name_date span {
        font-size: 13px
    }

.comment_userImg {
    width: 60px;
    height: 60px;
    position: relative;
}

    .comment_userImg img {
        width: 100%;
        height: 100%;
        border-radius: 50%
    }

.comment_info {
    display: flex;
    align-items: center
}

.comment_item {
    padding: 20px;
    background-color: #f5f4f4;
    text-align: justify
}

    .comment_item + .comment_item {
        margin-top: 20px;
        border-top: 1px solid #bebcbc4f
    }

.reply_item {
    border-radius: 10px;
    padding: 20px;
    margin: 10px 0;
    background-color: #fff;
}

.comment_text {
    padding: 20px 0
}

.product_explainations {
    border-radius: 5px;
    overflow: hidden;
}

    .product_explainations .nav-tabs .nav-link {
        background-color: #f5f4f4;
        margin: 1px;
    }

        .product_explainations .nav-tabs .nav-link.active {
            background-color: var(--primary-dark);
            color: #fff;
            border-bottom: 0 !important
        }

    .product_explainations .tab-content .tab-pane {
        padding: 20px;
        background-color: #f9f9f952;
        border-radius: 0 0 5px 5px;
    }

    .product_explainations .tab-content {
        border: 1px solid #dee2e6;
        margin-top: 10px !important;
    }

    .product_explainations .nav-tabs {
        border-bottom: 0;
    }

    .product_explainations .nav-tabs {
        background-color: #fdfdfd;
        font-size: 15px;
    }

.offline_user::after,
.online_user::after {
    content: '';
    width: 25%;
    height: 25%;
    position: absolute;
    z-index: 0 !important;
    right: 10%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid #3c3a3a;
    top: 0;
}

.offline_user::after {
    background: #aeb4b7;
}

.online_user::after {
    background-color: #01b16e
}

.product_rating {
    color: #fac74b;
}

.discountPro {
    display: flex;
    flex-direction: column;
    position: relative;
}

    .discountPro .firstPrice {
        color: rgba(158, 154, 154, 0.438)
    }

        .discountPro .firstPrice::after {
            content: '';
            background-color: rgba(158, 154, 154, 0.17);
            /* width: 100%;
	*/
            height: 1px;
            position: absolute;
            right: 35%;
            top: 21px;
            left: 30%;
        }



.thumbnails-style-shaded.mz-thumb img {
    width: 100px;
    height: 100px;
}

.magic_big_img img {
    height: 400px !important;
    /* width: 300px !important; */
    max-height: 400px !important;
    max-width: 400px !important
}

.magic_big_img {
    display: flex;
}

.magic_options {
    margin-top: auto;
    justify-content: center;
    flex-wrap: wrap;
    display: flex;
}

    .magic_options img {
        padding: 2px;
        width: 100px;
        height: 100px
    }

.product-detail-magiczoom {
    background-color: #fff;
    border-radius: 0px;
    padding: 20px 0;
    overflow: hidden;
    height: 450px;
    display: flex;
    flex-direction: column;
}

[id^="crM"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.p_color .btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 5px;
}

.Size:focus {
    padding: 10px;
    box-shadow: inset 0 0 5px 0px grey;
}

.Size {
    padding: 10px;
}

.p_color .btn:focus {
    box-shadow: 0 0 5px 3px
}

.product_choose select {
    padding: 5px 10px;
    border: 1px solid #c5c4c4;
}

.selectProduct,
.selectSize {
    border: 1px solid #33333340;
    box-shadow: 0 0 4px 0px #000;
}

.product_choose .btn_choose {
    background: #fff;
    color: #333;
    text-shadow: unset;
    border: 1px solid #3333;
    border-radius: 5px;
}

.btn-color {
    border-radius: 5px;
}

.text_primary {
    color: var(--primary-dark);
}

.selectProduct {
    position: relative
}

    .selectProduct::after {
        content: ' ';
        position: absolute;
        top: -15px;
        background: #fff url('../images/checked.png');
        height: 24px;
        width: 24px;
        border-radius: 50%;
        right: -10px;
        transform: scale(0.8);
        z-index: 1000
    }

.product_choose {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.choose_color .btn_choose {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: block;
}

.sharePro {
    height: 60px;
    border: 1px dashed #333;
}


.shareItem {
    width: 40px;
    margin-right: 2px;
    padding: 4px;
    box-shadow: 0 0 10px -5px;
    border-radius: 5px;
    filter: grayscale(0.9);
    transition: 0.5s
}

    .shareItem:hover {
        filter: grayscale(0);
    }

.priCeBox {
    padding: 10px;
    border-radius: 0px;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    /*overflow: hidden;*/
}

.proDetail_box .share {
    text-align: left;
    margin-top: auto;
}

.buyPreInfo {
    text-align: right;
    margin: 11px;
}

.counterProduct {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    padding-right: 0px;
}

    .counterProduct > button {
        margin-top: 10px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

.addcount {
    width: 65px;
    margin-right: 10px;
    height: 39px;
    padding: 0 5px;
    text-align: left;
}

.likeAndcomp {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-right: -5px;
    padding-left: -5px;
}

    .likeAndcomp a,
    .likeAndcomp button {
        width: 49%;
        /* margin: 0 !important; */
        margin: 0 3px;
        min-height:40px
    }

.seller-list-item {
    background-color: #f9f9f952;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #e3e3e3;
    font-size: 14px;
    position: relative;
}

.active-sell {
    border: 2px solid #b7b7b7;
}

.pro-seller-detail {
    display: flex;
    align-items: center;
    justify-content: start;
    color: #7b7777;
    width: 100%;
}

    .pro-seller-detail span {
        margin-left: 5px;
    }

    .pro-seller-detail button {
        display: flex;
        align-items: center;
    }

.specialOption {
    position: absolute;
    right: 50%;
    transform: translate(50%, 0%);
    background: #fdfdfd;
    z-index: 100;
    top: 50%;
    border: 1px solid #3333;
    padding: 0 10px;
    border-radius: 20px;
    color: #837f7f;
}

.specification_one > div {
    height: 45px;
    border: 1px solid #a2a2a233;
    border-radius: 5px;
    background: #f9f9f9;
    height: 45px
}

.specification_one {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.product-qr {
    border-bottom: 3px solid #5f5f5f;
    margin-bottom: 28px;
    margin-top: 10px
}

    .product-qr img {
        width: 50px;
        background: #fff;
        margin-bottom: -12px;
    }

.product-qr {
    border-bottom: 3px solid #5f5f5f;
    margin-bottom: 45px;
    margin-top: 0;
}







/*================================ Contact Us  ===========================*/
.contact_line,
.contact_phone,
.contact_email {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.contact_line {
    margin-bottom: 1rem;
}

    .contact_line > span,
    .contact_line > a {
        font-size: 14px;
        margin-top: 20px;
        color: var(--primary-dark);
    }

    .contact_line .bi {
        font-size: 30px;
        margin-left: 10px;
    }

.maps_box iframe {
    max-height: 250px;
}

.contactUs > div {
    min-height: 500px;
    background-image: url(../images/contactUs.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    ;
}

.conection {
    padding: 30px;
    ;
}

.contactUs .footerAddress {
    color: #fff;
}

.contactUs .conectionLine {
    color: #fff;
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
    ;
}

.conectionIcon {
    margin-right: 20px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.emailBox {
    display: flex;
    flex-direction: column;
}

.senMessage {
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
}

    .senMessage .btn {
        border-radius: 0 0 15px 15px !important;
    }

.contact_right .form-control {
    margin-bottom: 10px;
}

.contactTop_box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--primary-dark);
    font-size: 14px;
}

    .contactTop_box strong {
        font-size: 15px;
    }

.contact_top {
    background: url('../images/contact-back.png');
    background-position: center;
    padding: 50px 0;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact_img {
    height: 400px;
}

    .contact_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/*================================ End Contact Us ===========================*/
/*================================ questions ===========================*/
.question_item:hover {
    border: 2px solid var(--primary-site);
}

    .question_item:hover .default_btn {
        background-color: rgb(163, 163, 163);
        color: #fff;
    }

.questionFilter ul {
    display: flex;
}

.questionBox {
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    padding: 20px;
}

.question_item {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #e0dddd9e;
    padding: 30px;
    border-radius: 20px;
    margin-top: 20px;
    cursor: pointer;
    transition: .1s;
    border: 2px solid transparent;
}

.question_item,
.morebtn {
    border-radius: 5px !important;
}

.question {
    padding: 40px 0;
    position: relative;
}

    .question .question_search {
        border-bottom: 1px solid #fff;
        padding-bottom: 20px;
        margin: 50px auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60%;
    }

        .question .question_search .searchBox {
            width: 100%;
        }

.question_item:nth-child(1) {
    margin-top: 0;
}

.question_cover {
    z-index: -1;
    position: absolute;
    top: 0;
    background-image: radial-gradient(circle at 20% 14%, rgba(27, 27, 27, 0.05) 0%, rgba(27, 27, 27, 0.05) 50%, rgba(126, 126, 126, 0.05) 50%, rgba(126, 126, 126, 0.05) 100%), radial-gradient(circle at 18% 51%, rgba(248, 248, 248, 0.05) 0%, rgba(248, 248, 248, 0.05) 50%, rgba(26, 26, 26, 0.05) 50%, rgba(26, 26, 26, 0.05) 100%), radial-gradient(circle at 29% 38%, rgba(160, 160, 160, 0.05) 0%, rgba(160, 160, 160, 0.05) 50%, rgba(212, 212, 212, 0.05) 50%, rgba(212, 212, 212, 0.05) 100%), linear-gradient(90deg, rgb(11, 11, 146), rgb(11, 11, 146));
    background-repeat: no-repeat;
    /* background-size: 100% 100%; */
    background-repeat: no-repeat !important;
    background-position: bottom !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    height: 260px;
    width: 100%;
    right: 0;
}



.questionFilter {
    background: #f9f9f9;
    text-align: right;
    padding: 10px;
    border-radius: 5px 5px 0 0;
    border-bottom: 1px solid #3333;
}

.questionParent {
    border: 1px solid #3333;
    border-radius: 5px;
    box-shadow: 0 0 10px -5px;
}

.question_inner {
    padding: 50px 0;
    text-align: right;
    background-image: linear-gradient(0deg, transparent 0%, transparent 58%, rgba(104, 104, 104, 0.05) 58%, rgba(104, 104, 104, 0.05) 92%, transparent 92%, transparent 100%), linear-gradient(45deg, transparent 0%, transparent 34%, rgba(104, 104, 104, 0.05) 34%, rgba(104, 104, 104, 0.05) 77%, transparent 77%, transparent 100%), linear-gradient(0deg, transparent 0%, transparent 33%, rgba(104, 104, 104, 0.05) 33%, rgba(104, 104, 104, 0.05) 53%, transparent 53%, transparent 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
    background-repeat: no-repeat;
    background-size: cover;
}

.question_title {
    color: #1d1d35;
    text-align: right;
    margin-bottom: 30px;
    font-size: 20px;
}

.question_detail {
    padding: 1rem 0;
    display: flex;
    justify-content: flex-start;
}

.question_title h5 {
    display: inline-block;
    border-bottom: 2px solid #221E1F;
    padding-bottom: 1rem;
}

.question__News {
    font-size: 13px;
    margin-right: 30px;
    display: flex;
    align-items: center;
}

    .question__News .bi {
        margin-left: 5px;
        font-size: 20px;
    }

.question_answer {
    text-align: justify;
    padding: 25px;
    line-height: 2;
}

.author {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.name {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.author img {
    width: 100px;
    height: 100px;
}

/*================================ end questions ===========================*/



/*================================ start accordion questions ===========================*/
.accordion {
    margin-top: 30px;
    margin-bottom: 30px;
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: unset;
    margin-right: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-site);
    background-color: rgb(233, 233, 233);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

/*================================ end accordion questions ===========================*/

/*================================ store ===========================*/
.store {
    padding: 30px 0px;
    text-align: justify;
}

.total-products .product__box {
    margin-bottom: 20px;
    max-width: unset;
}

.total-products .sort {
    margin-bottom: 20px !important;
}

.storeBreand img {
    width: 150px;
    height: 150px;
}

.rateParent {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.rateReport {
    display: flex;
    flex-direction: column;
    border: 1px solid #333;
    background: #00c1774d;
    border-radius: 5px;
    padding: 10px;
    width: 70px;
    height: 70px;
    justify-content: center;
    align-items: center;
}

.rateBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    border: 1px solid #3333;
    border-radius: 5px;
    margin-right: 10px;
    padding: 0 10px;
    width: calc(100% - 80px);
    background: #f4f4f4;
}

.star-rating {
    direction: ltr;
    display: inline-block;
    padding: 20px
}

    .star-rating input[type=radio] {
        display: none
    }

    .star-rating label {
        color: #bbb;
        font-size: 18px;
        padding: 0;
        cursor: pointer;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out
    }

        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input[type=radio]:checked ~ label {
            color: #f2b600
        }

/*================================ end store ===========================*/





/*======================== see more =====================*/
.titleText {
    font-size: 20px;
}

.seeMore {
    border: 1px solid #fff;
    padding: 0 20px;
    padding-bottom: 10px;
    border-radius: 20px;
    overflow: hidden;
}


.limitedText,
.totlalText {
    margin-bottom: 10px;
    overflow: hidden;
}

.totlalText {
    display: none;
}


/* ============================= drop down 3 level ============================ */

.rote180 {
    transform: rotate(180deg);
}

.multiLevelDropDown {
    padding: 0;
}

    .multiLevelDropDown .navbar-nav {
        padding: 0;
    }

    .multiLevelDropDown a {
        text-align: right;
        color: #333;
    }




    .multiLevelDropDown .dropdown-item {
        display: block;
        width: 100%;
        padding: .25rem 1rem;
        clear: both;
        font-weight: 400;
        color: #212529;
        text-align: inherit;
        text-decoration: none;
        white-space: nowrap;
        background-color: transparent;
        border: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 41px;
        border-bottom: 1px solid #3333;
    }

    .multiLevelDropDown .navbar-toggler {
        background-color: #c1c1c1;
    }



    .multiLevelDropDown .dropdown-menu {
        top: 100%;
        padding-top: 0;
        padding-bottom: 0;
    }

    .multiLevelDropDown .subDropDown {
        position: relative;
    }



        .multiLevelDropDown .subDropDown .dropdown-item:focus,
        .multiLevelDropDown .subDropDown .dropdown-item:hover {
            color: #1e2125;
            background-color: #fff;
        }

        .multiLevelDropDown .subDropDown .dropdown-menu {
            display: none;
            right: 100%;
            top: 0;
            background-color: #f9f5ff;
        }

            .multiLevelDropDown .subDropDown .dropdown-menu .subDropDown .dropdown-menu {
                background-color: #fff;
            }




    .multiLevelDropDown .showSubMenu {
        display: block !important;
    }

.dropdown a {
    cursor: pointer;
    display: flex;
    align-items: center;
}














@media screen and (min-width: 1200px) {
    .multiLevelDropDown .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .multiLevelDropDown .subDropDown {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .multiLevelDropDown li.dropdown {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .multiLevelDropDown .subDropDown:hover > .dropdown-menu {
        display: block;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1350px;
    }
}

/*---------------------------------media-------------------------------*/
.media_box video {
    height: 200px;
    width: 100%;
}

.media_box {
    position: relative;
    display: block;
}

    .media_box .media_txt {
        position: absolute;
        overflow: hidden;
        height: 0;
        bottom: 0;
        right: 0;
        left: 0;
        background-color: rgba(88, 87, 87, 0.301);
        backdrop-filter: blur(66px);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        transition: 0.3s;
        color: #fff;
    }

    .media_box img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .media_box:hover .media_txt {
        height: 100%;
    }

.media_txt .bi {
    font-size: 30px;
}

.media_btn {
    padding: 10px;
    border: 1px solid;
    margin-top: 20px;
}

    .media_btn:hover {
        background-color: var(--primary-dark);
    }

/*-------------------------------order-----------------------------------*/

.testbox {
    display: flex;
    justify-content: center;
    align-items: center;
    height: inherit;
    padding: 20px;
}

    .testbox form {
        width: 100%;
        border-radius: 6px;
        background: #fff;
    }

    .testbox .banner {
        position: relative;
        height: 210px;
        background-image: url("/uploads/media/default/0001/01/c43630149befa5c9559813f72e99bcb6bf149e62.jpeg");
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

        .testbox .banner::after {
            content: "";
            background-color: rgba(0, 0, 0, 0.5);
            position: absolute;
            width: 100%;
            height: 100%;
        }

    .testbox input,
    .testbox select,
    .testbox textarea {
        margin-bottom: 10px;
        border: 1px solid #ccc;
        border-radius: 3px;
    }

    .testbox input {
        width: 100%;
        padding: 5px;
    }

    .testbox select {
        width: 100%;
        padding: 7px 0;
        background: transparent;
    }

    .testbox textarea {
        width: calc(100% - 12px);
        padding: 5px;
    }

    .testbox .test_item:hover p,
    .testbox .test_item:hover i,
    .test_question:hover p,
    .test_question label:hover,
    .testbox input:hover::placeholder,
    .testbox a {
        color: #095484;
    }

    .testbox .test_item input:hover,
    .testbox .test_item select:hover,
    .testbox .test_item textarea:hover {
        border: 1px solid transparent;
        box-shadow: 0 0 6px 0 #095484;
        color: #095484;
    }

.test_item {
    position: relative;
    margin: 10px 0;
}

.testbox input[type="date"]::-webkit-inner-spin-button {
    display: none;
}

.test_item i,
.testbox input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    font-size: 20px;
    color: #a9a9a9;
}

.test_item i {
    right: 2%;
    top: 30px;
    z-index: 1;
}

[type="date"]::-webkit-calendar-picker-indicator {
    right: 1%;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}

.testbox input[type=radio],
input[type=checkbox] {
    display: none;
}

.testbox label.radio,
.testbox label.check {
    position: relative;
    display: inline-block;
    margin: 5px 20px 15px 0;
    cursor: pointer;
}

.test_question span {
    margin-right: 30px;
}

.testbox span.required {
    margin-right: 0;
    color: red;
}

.checkbox-item label {
    margin: 5px 20px 10px 0;
}

.testbox label.radio:before,
.testbox label.check:before {
    content: "";
    position: absolute;
    right: 0;
}

.testbox label.radio:before {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 2px solid #095484;
}

.testbox label.check:before {
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    border: 1px solid #095484;
}

.testbox input[type=checkbox]:checked + .check:before {
    background: #095484;
}

.testbox label.radio:after {
    right: 5px;
    border: 3px solid #095484;
}

.testbox label.check:after {
    right: 4px;
    border: 3px solid #fff;
}

.testbox label.radio:after,
.testbox label.check:after {
    content: "";
    position: absolute;
    top: 6px;
    width: 8px;
    height: 4px;
    background: transparent;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    opacity: 0;
}

.testbox input[type=radio]:checked + label:after,
.testbox input[type=checkbox]:checked + label:after {
    opacity: 1;
}

.btn-block {
    margin-top: 10px;
    text-align: center;
}

@media (min-width: 568px) {
    .testbox .city-item {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

        .testbox .city-item input {
            width: calc(50% - 20px);
        }

        .testbox .city-item select {
            width: calc(50% - 8px);
        }
}


.loading__box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    position: relative;
    min-width: 50px;
    min-height: 50px;
    position: fixed;
    background-color: #f7f7f7;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

    .loading__box img {
        width: 250px;
        height: 250px;
        object-fit: contain;
    }

.compare_table tr + tr {
    color: var(--primary-site);
}

.compare .product__price {
    background-color: var(--primary-site);
    color: #fff;
}

.compare .pro__description {
    display: none;
}

ol.breadcrumb {
    margin: 10px 0;
}

.contact_line > svg {
    width: 35px;
    height: 30px;
}


ol.breadcrumb li:first-child a::after {
    content: ' / ';
    margin: 0 10px
}

.deactive-merchant {
    border: 2px solid #a0a0a0 !important;
    filter: grayscale(1);
}

.active-merchant {
    border: 2px solid #0b0b92 !important;
    filter: grayscale(0);
    background: #d1f1d1;
}

.sendingOption li {
    border: 2px solid #a0a0a0;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px
}

    .sendingOption li.active {
        background: #d1f1d1;
        color: green;
        font-weight: bold;
        font-size: 18px;
        border-color: #418000;
    }

.page_cover {
    display: none;
    height: 450px;
}

.priCeBox .dropstart {
    width: 150px
}

.size-dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 !important;
    padding: 5px;
    border-radius: 0 !important;
}



    .size-dropdown-menu li {
        width: 25%;
        padding: 0px;
    }

@media (max-width: 600px) {
    .product_choose .dropstart .dropdown-menu {
        right: -149px !important;
    }
}



.rate-box {
    display: flex;
    justify-content: space-around;
    border: 1px solid #fff7f733;
    width: 180px;
    border-radius: 0;
    background-color: #f5f4f4;
    margin-top: 27px;
}

    .rate-box label {
        display: block;
        cursor: pointer;
        fill: rgb(159 159 159);
        transition: 0.5s;
    }

        .rate-box label:hover {
            fill: gold;
        }

    .rate-box input {
        display: none;
    }

        .rate-box input:checked + label {
            fill: gold !important;
        }

    .rate-box svg {
        pointer-events: none;
    }

label.active {
    fill: gold !important
}

.rate-view label {
    fill: rgb(159, 159, 159);
}


/* add in 1400-9-10 by daniyal */
.showSearch .search_result {
    background: #eee;
    border-radius: 10px;
    padding: 0;
}

.searchBox input {
    padding: 0 !important;
    width: 0;
    overflow: hidden;
}

.searchBox.showSearch {
    width: 100%;
    overflow: visible;
}

.showSearch #txtHeaderSearch {
    width: 100%;
    padding: 5px !important;
}

.showSearch .searchForm.mb-0 {
    width: 100%;
    border: 1px solid;
}

.showSearch .search_result {
    background: #eee;
    border-radius: 10px;
    padding: 0;
}

.toggle_saerch {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
}

.product_cell .product_box .btn_like {
    display: block;
}

.product_cell .product_box .btn_like {
    left: 0;
    right: unset;
}


.st0 {
    stroke: #0B0B92;
    stroke-width: 45;
}

.contact__us__phone {
    direction: ltr;
    display: inline-block;
}

.blog_content .page_title {
    color: #fff;
}

.noResult img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}



.profileTitle h6 {
    white-space: nowrap;
    padding: 0 10px;
}

#contact_textarea {
    /*height: 100px;*/
    height: 50px;
    min-height: 50px;
    padding-top: 20px;
    font-size: 13px;
}

.product_cell .product_box .product__price {
    color: #fff;
}

.profileTitle::after {
    content: "";
    height: 1px;
    background: #0003;
    width: 100%;
    display: inline-block;
    min-width: auto;
    position: unset;
}

.profileTitle {
    display: flex;
    flex-wrap: nowrap;
}

.site_contact span {
    margin-left: 0.6rem;
}

.basket-page {
    margin: 10px 0px;
}


.lastItem img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}





.badge.bg-danger {
    position: absolute;
    top: 0;
    right: 0;
}

.header_basket_icon {
    position: relative;
}


.close {
    margin-right: auto;
}

.mr-auto {
    margin-right: auto;
}

.suggestionModal .modal-body .lastItem img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-right: auto;
    margin-left: auto;
}

.suggestionModal .lastItemTxt {
    margin-right: auto;
    margin-left: auto;
    margin-top: 1rem;
}

.suggestionModal .modal-body .lastItem {
    padding: 20px;
}

.ml-auto {
    margin-left: auto;
}

.seller_item_name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.loginRegister .alert-danger {
    display: flex;
    margin-bottom: 30px;
}


.goldPrice {
    position: absolute;
    left: 0;
    border-radius: 10px;
    /*background-color:#333;*/
    padding: 10px;
}

/*header .menu{
	position:relative;
}

*/

header .site_contact svg {
    width: 22px;
    height: 22px;
}



@media only screen and (max-width:1400px) {
    .header_search_box {
        width: 300px;
    }
}

@media only screen and (max-width:991px) {
    footer .navbar-nav .nav-link {
        padding: 10px !important;
    }

    .tab-titlee strong {
        white-space: nowrap;
    }

    .site_contact span {
        white-space: nowrap;
    }

    .product__price {
        margin-top: 15px;
        padding: 15px;
    }

    .totalproducts .product_box.proItem {
        border: 1px solid #eee;
    }

    .totalproducts .product__name,
    .totalproducts .pro__description {
        padding: 0 10px;
    }

    .totalproducts .products-boxes .col-lg-3 {
        margin-bottom: 1rem;
    }

    .header_login_icon {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        max-width: 200px;
        white-space: normal;
        flex-wrap: nowrap;
        line-height: 37px;
        text-align: right;
    }

    .goldPrice {
        position: relative;
        left: 0;
        border-radius: 10px;
        /* background-color: #333; */
        padding: 10px;
        margin-right: auto;
    }

    .searchBox.showSearch {
        width: 100%;
        overflow: visible;
        position: absolute;
        top: 80px;
        max-width: 290px;
        opacity: 1;
    }

    header .searchBox {
        width: auto;
        overflow: hidden;
        transition: 0.4s;
        opacity: 0;
    }
}

@media only screen and (max-width:768px) {
    #rebate-div .col-md-5.col-9.p-1 {
        width: 75%;
    }


    #rebate-div .btn.green_btn.primary_btn.w-100.m-0.rebatecode-btn {
        min-width: 25%;
    }

    #rebate-div .col-md-2.col-3.p-1 {
        width: auto;
    }

    .col-md-3.col-4.p-0.d-flex.justify-content-around.align-items-center .btn.pro-plus-number.border {
        position: absolute;
        top: 20px;
        left: 0px;
    }

    .productprice.flex-column.justify-content-start {
        margin-top: 10px;
    }

    .productCount {
        justify-content: center !important;
        margin: 10px 0;
    }

    .shop_product_item .row.d-flex.align-items-center [class^="col-"] {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .shop_product_item .basketproduct {
        flex-direction: column;
    }

    .shop_product_item .row.d-flex.align-items-center {
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: center;
    }

    .basket_shopname {
        display: flex;
        align-items: center;
    }

        .basket_shopname .mobile_title {
            margin-left: 0.5rem;
        }

    .pro-total .one-total-price::before {
        content: 'قیمت کل (تومان) :';
        margin-left: 5px;
    }

    .productprice .one-total-price::before {
        content: 'قیمت (تومان) :';
        margin-left: 5px;
    }


    .header_top .row .col-md-5 {
        order: 1;
    }

    header .header_search {
        position: relative;
        margin-top: -40px;
    }

    .searchBox.showSearch {
        top: 30px;
        max-width: 290px;
        opacity: 1;
    }
}

@media only screen and (max-width:576px) {
    .product_box img {
        height: auto !important;
    }
   

    .size-dropdown-menu {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        min-width: 100%;
    }

    .priCeBox .dropstart {
        width: auto;
    }

  

    .lastItem {
        padding: 10px;
        padding-left: 10px;
        padding-left: 10px;
        margin-bottom: 10px;
        flex-direction: column;
    }

        .lastItem img {
            width: 100%;
            height: 300px;
            object-fit: contain;
            border-radius: 5px;
            background: #f9f9f9;
        }

    .header_login_icon {
        display: none;
    }

    .login__header__btn {
        display: inline-block;
    }

    .userProfile_icon svg:first-child {
        display: block;
        margin-left: 5px;
    }

    .basketIcon {
        transform: scale(0.8);
    }

    .bas_Tab strong {
        font-size: 13px;
        white-space: nowrap;
    }

    .primary_btn,
    .secondary_btn {
        min-width: 100px;
    }

    .compare_search .search_result {
        position: relative;
        top: 0;
    }

    .userProfile > a {
        right: 50px;
        top: -5px;
        border: unset;
    }

    .profile_items {
        top: 33px !important;
        right: 40px !important;
    }

    .header_search {
        margin-top: 40px;
    }

        .header_search .site_contact {
            margin-top: -85px;
        }

    header .header_search {
        position: relative;
        margin-top: 40px;
        flex-direction: column-reverse;
        align-items: flex-end;
    }

    .header_search .site_contact {
        font-size: 14px;
        margin-top: 0;
        border-right: 0;
        position: unset;
        left: 0;
        margin-bottom: 10px;
        margin-top: -35px;
    }

    .contact_top {
        background: #a4cbd2;
        background-position: center;
        padding: 50px 0;
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
}

#cart-badge svg path {
    fill: #737373
}

.product_box img {
    height: 315px;
    object-fit: cover;
    width: 100%;
}

.textHover {
    padding: 5px;
}

    .textHover + .textHover {
        border-top: 1px solid #c1c1c1;
    }

.search_no_result.quick-no-results {
    padding: 10px;
}

.detailspan {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width:1200px){
    .size-dropdown-menu {
        width: 300px;
        display: flex;
        flex-wrap: wrap;
    }
    .product_choose .dropstart .dropdown-menu {
        right: 0 !important;
        left: unset !important;
        inset: unset !important;
        transform: unset !important;
        top: 38px !important;
        max-width: 300px;
        min-width: 100%;
        width: 280px;
    }
}

.mainSlider_txt{
    display: none
}

.size-dropdown-menu {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.dropdown-menu {
    position: absolute;
    inset: 0px 0px auto auto;
    margin: 0px;
    transform: translate(-152px,0) !important;
}

.mainSlider, .specialProducts {
    position: relative
}

    .mainSlider .sliderNavigation div, .specialProducts .sliderNavigation div {
        top: 44%;
        z-index: 1000;
    }

.whatsapp_link {
    width: 100%;
    background: #64b161;
    border: 2px solid #64b161;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 5px);
    margin: 10px auto 0;
    transition: all 0.3s;
    height: 40px;
}
    .whatsapp_link svg {
        transform: scale(1);
        width: 25px;
        margin-left: 10px;
        fill: #fff;
    }
    .whatsapp_link:hover {
        background-color: #fff;
        color: #64b161
    }
        .whatsapp_link:hover svg {
            fill: #64b161
        }
.certificates_item img{
    object-fit:contain
}
/* Style the Image Used to Trigger the Modal */
#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

    #myImg:hover {
        opacity: 0.7;
    }

/* The Modal (background) */
.modal.mediaModal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 20px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100; /* Fu1ll height */
    max-height: 100vh !important;
    overflow: hidden; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.mediaModal .modal-content {
    margin: auto;
    display: block;
    width: 80vh;
    max-width: 80%;
    height: 80vh;
}



/* Add Animation - Zoom in the Modal */
.modal-content {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

    .close:hover,
    .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

.mediaModal.show {
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.mediaModal {
    z-index: 1000;
}

@media only screen and (max-width: 700px) {
    .mediaModal .modal-content {
        width: 100%;
        height: 250px;
    }
}
.certificates_item {
    cursor: pointer;
    text-align: center;
    transition:0.3s;
    padding:15px
}
.certificates_item img{
    margin-bottom:10px
}
    .certificates_item:hover {
        background-color: #E2E5EB
    }

@media only screen and (max-width: 576px) {
	.header_search .site_contact {
	  margin-top: -15px;
	}
}