﻿
/* ==========================================================================
   Fonts
   ========================================================================== */

@font-face {
    font-display: swap;
    font-family: "yekan-bakh";
    src: url("../assets/Public/font/yekan-bakh/YekanBakhFaNum-Fat.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-display: swap;
    font-family: "yekan-bakh";
    src: url("../assets/Public/font/yekan-bakh/YekanBakhFaNum-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-display: swap;
    font-family: "yekan-bakh";
    src: url("../assets/Public/font/yekan-bakh/YekanBakhFaNum-Bold.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-display: swap;
    font-family: "yekan-bakh";
    src: url("../assets/Public/font/yekan-bakh/YekanBakhFaNum-Heavy.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-display: swap;
    font-family: "yekan-bakh";
    src: url("../assets/Public/font/yekan-bakh/YekanBakhFaNum-Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-display: swap;
    font-family: "yekan-bakh";
    src: url("../assets/Public/font/yekan-bakh/YekanBakhFaNum-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

:root {
    /* shadow */
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-box: rgb(0 0 0 / 10%) 0px 0px 10px 0px !important;
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
    /* text */
    --text-muted: #565757;
    --font-site: "yekan-bakh";
    --main-color-two: #ef473a;
    --color-site: #515151;
    --shadow-inner: inset 0 2px 12px 4px rgb(0 0 0 / 5%);
    --main-color-one: #0761f6;
    --main-color-three: #11c56b;
}
/* rest */

* {
    box-sizing: border-box;
}

body, html {
    direction: rtl;
    text-align: right;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}



ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

    blockquote:before,
    blockquote:after,
    q:before,
    q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    color: #515151;
}

    a:hover {
        color: #515151;
    }


/* end reset */
body {
    font-family: var(--font-site);
    background-color: #f4f5f9;
    color: #515151 !important;
}

html,
body {
    min-height: 100vh;
    scroll-behavior: smooth;
}

/* start waves button */

.waves-effect {
    position: relative;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    vertical-align: middle;
    z-index: 1;
    will-change: opacity, transform;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    .waves-effect .waves-ripple {
        position: absolute;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        margin-top: -10px;
        margin-left: -10px;
        opacity: 0;
        background: rgba(0, 0, 0, 0.2);
        -webkit-transition: all 0.7s ease-out;
        transition: all 0.7s ease-out;
        transform: scale(0);
        pointer-events: none;
    }

    .waves-effect.waves-light .waves-ripple {
        background-color: rgba(255, 255, 255, 0.25);
    }

    .waves-effect.waves-red .waves-ripple {
        background-color: rgba(244, 67, 54, 0.7);
    }

    .waves-effect.waves-yellow .waves-ripple {
        background-color: rgba(255, 235, 59, 0.7);
    }

    .waves-effect.waves-orange .waves-ripple {
        background-color: rgba(255, 152, 0, 0.7);
    }

    .waves-effect.waves-purple .waves-ripple {
        background-color: rgba(156, 39, 176, 0.7);
    }

    .waves-effect.waves-green .waves-ripple {
        background-color: rgba(76, 175, 80, 0.7);
    }

    .waves-effect.waves-teal .waves-ripple {
        background-color: rgba(0, 150, 136, 0.7);
    }

.waves-notransition {
    -webkit-transition: none;
    transition: none;
}

.waves-circle {
    transform: translateZ(0);
    text-align: center;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 50%;
}

.waves-input-wrapper {
    border-radius: 0.2em;
    vertical-align: bottom;
}

    .waves-input-wrapper .waves-button-input {
        position: relative;
        top: 0;
        left: 0;
        z-index: 1;
    }

.waves-block {
    display: block;
}

/* end waves */

.tooltip {
    font-family: var(--font-site), serif;
}

.my-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.my-flex-baseline {
    display: flex !important;
    align-items: baseline;
}

.my-flex-align-end {
    display: flex !important;
    align-items: flex-end;
}

.my-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* read more */

.read-more-state {
    display: none;
}

.read-more-target {
    display: none;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    font-size: 0;
    transition: 0.25s ease;
    -webkit-transition: 0.25s ease;
    -moz-transition: 0.25s ease;
    -ms-transition: 0.25s ease;
    -o-transition: 0.25s ease;
}

.read-more-state:checked ~ .read-more-wrap .read-more-target {
    opacity: 1;
    font-size: inherit;
    max-height: 999em;
    visibility: visible;
    display: block;
}

.read-more-state ~ .read-more-trigger:before {
    content: "بیشتر +";
}

.read-more-state:checked ~ .read-more-trigger:before {
    content: "بستن _";
}

.read-more-trigger {
    cursor: pointer;
    display: inline-block;
    padding: 0 0 10px 0;
    color: #007fee;
    font-size: 0.9em;
}

/* end read more */

.title-heading {
    position: relative;
    margin-right: 20px;
}

    .title-heading::before {
        content: "\F287";
        font-family: "bootstrap-icons", serif;
        color: #ea0;
        font-size: 18px;
        position: absolute;
        top: 50%;
        right: -25px;
        transform: translateY(-50%);
    }

.text-muted-2 {
    color: #565757 !important;
}

.font-12 {
    font-size: 12px !important;
}

.font-14 {
    font-size: 14px !important;
}

.font-16 {
    font-size: 16px !important;
}

.font-18 {
    font-size: 18px !important;
}

.font-20 {
    font-size: 20px !important;
}

.section-20 {
    padding: 20px 0;
}

.section-50 {
    padding: 50px 0;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.shadow {
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
}

.shadow-box {
    box-shadow: rgb(0 0 0 / 10%) 0 0 10px 0 !important;
}

.pointer {
    cursor: pointer;
}

/* ------------btn x */
.btnx {
    font-size: 14px;
    padding: 6px 12px;
    margin-bottom: 0;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
}

    .btnx:hover,
    .btnx:focus {
        color: #333;
        text-decoration: none;
    }

/* default
---------------------------- */
.btnx-default {
    color: #fff;
    background-color: #0bc373;
    border-color: #0bd980;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

    .btnx-default:focus {
        color: #fff;
        background-color: #09b56a;
    }

    .btnx-default:hover {
        color: #fff;
        background-color: #07af66;
    }

    .btnx-default:active {
        color: #fff;
        outline: none;
        background-color: #119c60;
    }

/* end btn x */
.border-animate {
    /* you can change these variables to control the border */
    --border-color: #007fee;
    --border-width: 2px;
    --bottom-distance: 0px;
    /* you can increase this */
    color: #666;
    display: inline-block;
    background-image: linear-gradient(var(--border-color), var(--border-color));
    background-size: 0 var(--border-width);
    background-repeat: no-repeat;
    transition: background-size 0.3s;
    margin: 5px 0;
}

.fromCenter {
    background-position: 50% calc(100% - var(--bottom-distance));
}

.fromRight {
    background-position: 100% calc(100% - var(--bottom-distance));
}

.fromLeft {
    background-position: 0 calc(100% - var(--bottom-distance));
}

.border-animate:hover {
    background-size: 100% var(--border-width);
}

.border-animate:focus {
    background-size: 100% var(--border-width);
}

.content {
    padding: 20px 0;
}

.header-msg {
    display: flex;
}

    .header-msg img {
        max-width: 100%;
        object-fit: cover;
        display: flex;
    }

/* header */
header {
    width: 100%;
    /* padding: 20px 0 0 0; */
    background: #fff;
    position: relative;
    box-shadow: var(--shadow-box);
}

.header-contact {
    padding-top: 5px;
    padding-bottom: 10px;
}

    .header-contact .header-contact-right li {
        position: relative;
    }

        .header-contact .header-contact-right li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            width: 1px;
            height: 20px;
            background: #515151;
            transform: translateY(-50%);
        }

        .header-contact .header-contact-right li:nth-last-child(1)::before {
            background: transparent;
        }

        .header-contact .header-contact-right li a {
            color: #515151;
            padding: 5px 7px;
        }

            .header-contact .header-contact-right li a:hover {
                color: #007fee;
            }

    .header-contact .header-contact-left {
        justify-content: flex-end;
    }

        .header-contact .header-contact-left li a {
            color: #515151;
            padding: 5px 7px;
        }

            .header-contact .header-contact-left li a:hover {
                color: #007fee;
            }
/* end header */

.top-menu a,
.top-menu i {
    color: #515151;
}

.top-menu-search .input-group {
    text-align: center;
    margin: 0 auto;
}

.top-menu-search .search-txt {
    padding: 14px 15px;
    font-size: 13px;
    width: 100%;
    border: none;
    outline: none;
    background: #eee;
    box-shadow: var(--shadow-md);
}

.top-menu-search .search-btn {
    background: transparent;
    position: absolute;
    top: 0px;
    left: 10px;
    border: none;
    z-index: 10;
}

    .top-menu-search .search-btn i {
        color: #333;
        font-size: 25px;
        vertical-align: -webkit-baseline-middle;
        vertical-align: -moz-middle-with-baseline;
        margin-top: 3px;
    }

.top-menu-btn ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-menu-btn .auth-btn-index {
    display: flex;
    align-items: center;
    color: #333;
    font-weight: bold;
    border: 1px solid #515151;
    background: transparent;
    padding: 12px 7px;
    outline: none;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

    .top-menu-btn .auth-btn-index svg {
        width: 20px;
        height: 20px;
        margin-left: 7px;
    }

.top-menu-btn .auth-btn-index-two {
    display: flex;
    align-items: center;
    /*color: #fff;*/
    font-weight: bold;
    /*background: #007fee;*/
    border: none;
    padding: 12px 7px;
    outline: none;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

    .top-menu-btn .auth-btn-index-two svg {
        width: 20px;
        height: 20px;
        margin-left: 7px;
    }

.header-box {
    display: flex;
    align-items: center;
    color: #333;
    font-weight: bold;
    box-shadow: var(--shadow-md);
    background: #f6f8fb;
    padding: 12px 20px;
    outline: none;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

    .header-box svg {
        width: 20px;
        height: 20px;
        margin-left: 7px;
    }

.top-menu-btn .auth-icon-responsive {
    color: #515151;
    margin-left: 5px;
    font-size: 14px;
}

    .top-menu-btn .auth-icon-responsive i {
        vertical-align: -webkit-baseline-middle;
        vertical-align: -moz-middle-with-baseline;
        font-size: 30px;
    }

.top-menu-btn > ul > li {
    margin: 0 7px;
}

.top-menu-btn ul > li > i {
    font-size: 22px;
}

    .top-menu-btn ul > li > i:hover {
        color: #f7cb2d;
    }

.top-menu-btn .count-item {
    background: #a4ebf3;
    width: 20px;
    height: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: absolute;
    top: 30px;
    right: -10px;
    animation: animateHeart 2.5s infinite;
    -webkit-animation: animateHeart 2.5s infinite;
}

.top-menu-menu ul {
    display: flex;
    flex-direction: row;
}

    .top-menu-menu ul li {
        margin-left: 20px;
    }

.top-menu-menu > ul > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

.top-menu-menu ul > li > a {
    font-size: 14px;
    transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    -moz-transition: 0.2s all ease-in-out;
    -ms-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
}

.top-menu-menu ul li a i {
    margin-right: 4px;
    font-size: 20px;
    vertical-align: -webkit-baseline-middle;
    vertical-align: -moz-middle-with-baseline;
    transition: 0.3s all ease-in;
    -webkit-transition: 0.3s all ease-in;
    -moz-transition: 0.3s all ease-in;
    -ms-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
}

    .top-menu-menu ul li a i.bi-chevron-down::before {
        transition: 0.3s all ease-in;
        -webkit-transition: 0.3s all ease-in;
        -moz-transition: 0.3s all ease-in;
        -ms-transition: 0.3s all ease-in;
        -o-transition: 0.3s all ease-in;
    }

.top-menu-menu ul li a:hover .bi-chevron-down::before {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.top-menu-menu ul > li > a:hover {
    color: #007fee;
}

.top-menu-menu ul > li > ul {
    position: absolute;
    top: 98%;
    right: 0;
    left: 0;
    background: #f7f7f7;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    height: 400px;
    padding: 20px 50px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    -moz-transition: 0.2s all ease-in-out;
    -ms-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
}

/* .main-menu-sub{
    flex-direction: row !important;
} */

.back-menu {
    background-position: bottom left !important;
    background-size: 300px !important;
}

.top-menu-menu ul > li > ul.back-menu-laptop {
    background: #fff url("../assets/Paramis_Theme/img/other/labtop.png") no-repeat;
    background-position: bottom left;
    background-size: 300px;
}

.top-menu-menu ul > li > ul > li {
    display: inline;
    margin: 0 50px;
    margin-bottom: 7px;
}

    .top-menu-menu ul > li > ul > li > a {
        color: #6c757d;
        display: block;
        transition: 0.3s all ease;
        -webkit-transition: 0.3s all ease;
        -moz-transition: 0.3s all ease;
        -ms-transition: 0.3s all ease;
        -o-transition: 0.3s all ease;
    }

        .top-menu-menu ul > li > ul > li > a.title {
            color: #333;
            font-weight: bold;
            position: relative;
        }

            .top-menu-menu ul > li > ul > li > a.title i {
                color: #333;
                font-size: 10px;
                font-weight: bold;
            }

            .top-menu-menu ul > li > ul > li > a.title::before {
                content: "";
                position: absolute;
                right: -10px;
                width: 2.5px;
                height: 100%;
                background: #007fee;
            }

        .top-menu-menu ul > li > ul > li > a:hover {
            color: #007fee;
            transform: translateX(-5px);
            -webkit-transform: translateX(-5px);
            -moz-transform: translateX(-5px);
            -ms-transform: translateX(-5px);
            -o-transform: translateX(-5px);
        }

        .top-menu-menu ul > li > ul > li > a.title:hover {
            color: #007fee;
            transform: none;
            -webkit-transform: none;
            -moz-transform: none;
            -ms-transform: none;
            -o-transform: none;
        }

/* ///////////main menu /////////// */

.top-menu-menu ul.main-menu {
    display: none;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    height: auto;
    min-width: 200px;
    position: absolute;
    top: 98%;
    left: 20px;
    right: 20px;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    transition: 0.4s all ease-in-out;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-transition: 0.4s all ease-in-out;
    -moz-transition: 0.4s all ease-in-out;
    -ms-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    min-height: 400px;
    max-height: 600px;
    overflow-y: auto;
}

    .top-menu-menu ul.main-menu.active {
        display: flex;
    }

.main-menu-head {
    color: #007fee !important;
}

.top-menu-menu ul.main-menu li {
    width: 200px;
    margin: 0;
    padding: 15px 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

    .top-menu-menu ul.main-menu li a {
        display: block;
        padding: 0 10px;
    }

        .top-menu-menu ul.main-menu li a i {
            vertical-align: baseline;
            vertical-align: -webkit-baseline-middle;
            color: #333;
            margin-left: 5px;
            float: none;
            transition: 0.3s all ease-in-out;
            -webkit-transition: 0.3s all ease-in-out;
            -moz-transition: 0.3s all ease-in-out;
            -ms-transition: 0.3s all ease-in-out;
            -o-transition: 0.3s all ease-in-out;
        }

    .top-menu-menu ul.main-menu li:hover {
        background: #f3f3f3;
    }

        .top-menu-menu ul.main-menu li:hover i {
            color: #007fee;
            font-weight: bolder;
        }

.top-menu-menu ul.main-menu > li > ul.main-menu-sub {
    /* box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); */
    height: 100%;
    min-width: 200px;
    background: #fff;
    position: absolute;
    top: 0;
    right: 200px;
    opacity: 0;
    visibility: hidden;
    padding: 10px;
    transition: 0.4s all ease-in-out;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-transition: 0.4s all ease-in-out;
    -moz-transition: 0.4s all ease-in-out;
    -ms-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    min-height: 400px;
    max-height: 600px;
    overflow-y: auto;
}

    .top-menu-menu ul.main-menu > li > ul.main-menu-sub li {
        max-width: 150px;
        padding: 0;
        margin-top: 4px;
        padding: 5px 0;
    }

.top-menu-menu ul.main-menu > li {
    background-color: #eee;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.main-menu-sub-active-li {
    background: #fff;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
}

.top-menu-menu ul.main-menu > li:hover {
    background: #fff;
    /* border-bottom-left-radius: 30px; */
}

    .top-menu-menu ul.main-menu > li:hover a {
        color: #333;
    }

.top-menu-menu ul.main-menu > li a i {
    float: none;
}

.top-menu-menu ul.main-menu > li > ul.main-menu-sub li > a {
    font-size: 14px;
}

    .top-menu-menu ul.main-menu > li > ul.main-menu-sub li > a:hover {
        color: #007fee;
    }

    .top-menu-menu ul.main-menu > li > ul.main-menu-sub li > a.title {
        font-size: 16px;
        font-weight: bold;
    }

        .top-menu-menu ul.main-menu > li > ul.main-menu-sub li > a.title i {
            font-weight: bolder;
            font-size: 14px;
            vertical-align: -webkit-baseline-middle;
            vertical-align: -moz-middle-with-baseline;
        }

        .top-menu-menu ul.main-menu > li > ul.main-menu-sub li > a.title::before {
            content: "";
            position: absolute;
            right: 0;
            width: 2.5px;
            height: 100%;
            background: #007fee;
        }

.top-menu-menu ul.main-menu > li > ul.main-menu-sub li:hover {
    background: none;
}

.top-menu-menu li:hover ul.main-menu {
    opacity: 1;
    visibility: visible;
}

.main-menu-sub-active {
    opacity: 1 !important;
    visibility: visible !important;
}

.main-menu-sub-active-li > a {
    color: #333 !important;
}

/* /////////// end main menu /////////// */

.top-menu-menu ul.level-one {
    background-color: #fff;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    height: auto;
    min-width: 200px;
    position: absolute;
    top: 98%;
    left: auto;
    right: auto;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    transition: 0.4s all ease-in-out;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-transition: 0.4s all ease-in-out;
    -moz-transition: 0.4s all ease-in-out;
    -ms-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
}

    .top-menu-menu ul.level-one li {
        width: 100%;
        margin: 0;
        padding: 15px 0;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }

        .top-menu-menu ul.level-one li a {
            display: block;
            padding: 0 10px;
        }

            .top-menu-menu ul.level-one li a i {
                font-size: 14px;
                vertical-align: middle;
                color: #333;
                float: left;
                transition: 0.3s all ease-in-out;
                -webkit-transition: 0.3s all ease-in-out;
                -moz-transition: 0.3s all ease-in-out;
                -ms-transition: 0.3s all ease-in-out;
                -o-transition: 0.3s all ease-in-out;
            }

        .top-menu-menu ul.level-one li:hover {
            background: #a4ebf3;
        }

            .top-menu-menu ul.level-one li:hover i {
                color: #007fee;
                font-weight: bolder;
            }

            .top-menu-menu ul.level-one li:hover a {
                color: #515151;
            }

    .top-menu-menu ul.level-one > li > ul.level-two {
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        height: auto;
        min-width: 200px;
        background: #f7f7f7;
        position: absolute;
        top: 0;
        right: 100%;
        opacity: 0;
        visibility: hidden;
        padding: 0;
        transition: 0.4s all ease-in-out;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        -webkit-transition: 0.4s all ease-in-out;
        -moz-transition: 0.4s all ease-in-out;
        -ms-transition: 0.4s all ease-in-out;
        -o-transition: 0.4s all ease-in-out;
    }

.top-menu-menu li:hover ul.level-one {
    opacity: 1;
    visibility: visible;
}

.top-menu-menu li ul li:hover ul.level-two {
    opacity: 1;
    visibility: visible;
}

.top-menu-menu .nav-row {
    min-width: 550px !important;
    max-height: 520px !important;
}

    .top-menu-menu .nav-row > li {
        width: auto !important;
    }

        .top-menu-menu .nav-row > li:hover {
            background: transparent;
        }

.responsive-menu-icon {
    height: 100%;
}

    .responsive-menu-icon i {
        vertical-align: -webkit-baseline-middle;
        vertical-align: -moz-middle-with-baseline;
        font-size: 35px;
    }

.rm-body {
    position: relative;
}

.rm-overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 8888;
    transition: 0.8s all ease-in-out;
    -webkit-transition: 0.8s all ease-in-out;
    -moz-transition: 0.8s all ease-in-out;
    -ms-transition: 0.8s all ease-in-out;
    -o-transition: 0.8s all ease-in-out;
}

    .rm-overlay.open {
        opacity: 1;
        visibility: visible;
    }

.rm-items {
    overflow-y: scroll;
    padding: 20px 5px;
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    width: 0;
    background: #fff;
    z-index: 99999;
    transition: 0.4s;
    -webkit-transition: 0.4s all ease-in-out;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

    .rm-items.open {
        right: 0;
        width: 320px;
    }

.rm-item-close {
    position: absolute;
    top: 5px;
    right: 5px;
}

    .rm-item-close i {
        color: #444;
        font-size: 35px;
    }

.rm-item-img {
    text-align: center;
}

    .rm-item-img img {
        height: 70px;
        max-width: 100%;
    }

.rm-item-search {
    margin: 10px 0;
}

    .rm-item-search input.search-txt {
        background: #d8d8d8;
    }

.rm-item-menu ul {
    height: auto;
    width: 100%;
    background: #fff;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.rm-item-menu li {
    padding: 10px 0;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

    .rm-item-menu li > ul {
        transition: 0.5s;
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
    }

    .rm-item-menu li i {
        color: #222;
        font-size: 14px;
        font-weight: bold;
        vertical-align: -webkit-baseline-middle;
        vertical-align: -moz-middle-with-baseline;
        margin-left: 5px;
    }

        .rm-item-menu li i::before {
            transition: 0.3s all ease;
            -webkit-transition: 0.3s all ease;
            -moz-transition: 0.3s all ease;
            -ms-transition: 0.3s all ease;
            -o-transition: 0.3s all ease;
        }

    .rm-item-menu li .showSubMenu.open i::before {
        transform: rotate(270deg);
        -webkit-transform: rotate(270deg);
        -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        -o-transform: rotate(270deg);
    }

    .rm-item-menu li a {
        display: inline-block;
        font-size: 14px;
        padding: 0 10px;
        color: #333;
    }

.rm-item-menu > li > ul > li {
    border-bottom: 1px solid #ececec;
}

    .rm-item-menu > li > ul > li:nth-last-child(1) {
        border: none;
        margin-bottom: 0;
    }

    .rm-item-menu > li > ul > li > a {
        padding: 0 20px;
    }

    .rm-item-menu > li > ul > li > ul > li {
        border-bottom: 1px solid #ececec;
    }

        .rm-item-menu > li > ul > li > ul > li:nth-last-child(1) {
            border: none;
            margin-bottom: 0;
        }

        .rm-item-menu > li > ul > li > ul > li > a {
            padding: 0 30px;
        }

.h-0 {
    height: 0 !important;
    opacity: 0;
    visibility: hidden;
}

ul.show {
    height: auto !important;
    opacity: 1;
    visibility: visible;
}

.showSubMenu {
    cursor: pointer;
    flex-grow: 1;
    float: left;
    display: block;
    text-align: left;
}

.bg-ul-f7 {
    background: #f7f7f7 !important;
}


/* partner */
.partner {
    padding: 20px 0;
}

.partner-parrent {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    border-radius: 10px;
}

.partner-title {
    text-align: center;
}

    .partner-title h4 {
        display: inline-block;
        font-size: 20px;
        font-weight: 600;
        border-bottom: 3px solid #0580ad;
        padding-bottom: 10px;
    }

.partner-item {
    text-align: center;
}

    .partner-item img {
        width: 100px;
    }

.partner .pbt-header-title {
    padding: 0 15px;
}

    .partner .pbt-header-title h6 {
        color: #515151;
    }

/* end partner */
/* start footer */
footer {
    padding: 20px 20px 0 20px;
    margin-top: 20px;
    background-size: cover;
    background: #fff;
    border-top: 1px solid #fff;
}

.footer-feature {
    padding: 20px 0;
}

.footer-feature-item {
    text-align: center;
    margin-bottom: 20px;
}

    .footer-feature-item img {
        width: 50px;
        height: 50px;
        margin-bottom: 7px;
    }

    .footer-feature-item h6 {
        font-size: 15px;
    }

.footer-item {
    margin-bottom: 25px;
}

.footer {
    padding: 50px 0;
}

.footer-item h5 {
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 15px;
}

.footer-item .footer-item-link li {
    margin-bottom: 7px;
}

    .footer-item .footer-item-link li a {
        font-size: 15px;
        display: inline-block;
        position: relative;
        transition: 0.2s all linear;
        -webkit-transition: 0.4s all linear;
        -moz-transition: 0.4s all linear;
        -ms-transition: 0.4s all linear;
        -o-transition: 0.4s all linear;
    }

        .footer-item .footer-item-link li a::before {
            content: "";
            width: 7px;
            height: 1px;
            background: #333;
            position: absolute;
            top: 50%;
            right: -10px;
            transition: 0.2s all linear;
            transform: translateY(-50%);
            -webkit-transition: 0.2s all linear;
            -moz-transition: 0.2s all linear;
            -ms-transition: 0.2s all linear;
            -o-transition: 0.2s all linear;
        }

        .footer-item .footer-item-link li a:hover::before {
            width: 15px;
            background-color: #255be6;
        }

        .footer-item .footer-item-link li a:hover {
            padding-right: 10px;
            color: #255be6;
        }

.footer-item .feed h6 {
    font-size: 15px;
    margin-bottom: 7px;
}

.footer-item .feed form {
    position: relative;
}

.footer-item .feed .feed-inp {
    padding: 10px 15px !important;
    font-size: 14px;
}

.footer-item .feed .feed-btn {
    font-size: 15px;
    position: absolute;
    padding: 7px 10px;
    top: 3px;
    left: 0;
    z-index: 2;
    border: none;
    outline: none;
    background: #007fee;
    color: #fff;
    border-radius: 5px;
}

.footer-item .social {
    padding: 10px 0;
}

.footer-item p {
    font-size: 15px;
}

.social-link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

    .social-link a {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 5px;
        padding: 10px;
        color: #fff;
        font-size: 20px;
        transition: 0.8s all ease-in-out;
        border-radius: 50%;
    }

        .social-link a.bi-instagram {
            background: radial-gradient( circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90% );
        }

        .social-link a.bi-twitter {
            background: #098ecc;
        }

        .social-link a.bi-whatsapp {
            background: #04ac12;
        }

        .social-link a.bi-youtube {
            background: #ce0909;
        }

        .social-link a.bi-linkedin {
            background: #0d80c8;
        }

        .social-link a:hover {
            transform: rotate(360deg) scale(1.1);
        }

.footer-desc-item {
    padding: 20px 0;
}

    .footer-desc-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .footer-desc-item p {
        font-size: 14px;
        line-height: 2;
        text-align: justify;
    }

    .footer-desc-item ul li {
        cursor: pointer;
        border: 1px solid #d8d8d8;
        margin: 0 5px;
        width: 110px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 7px;
        transition: 0.2s all ease;
        border-radius: 5px;
    }

        .footer-desc-item ul li:hover {
            border-color: #007fee8f;
        }

        .footer-desc-item ul li a img {
            max-width: 100%;
            height: 80px;
        }

.copy-right {
    text-align: center;
    padding: 20px 0;
}

    .copy-right p {
        font-size: 14px;
    }

.info-bar {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.info-bar-icon {
    box-shadow: var(--shadow-sm);
    margin: 0 auto;
    border: 1px solid #ddd;
    background: #eee;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

    .info-bar-icon svg {
        width: 35px;
        height: 35px;
        color: #007fee;
    }

.info-bar-desc {
    margin: 10px 0;
}

    .info-bar-desc h6 {
        font-weight: bold;
        font-size: 16px;
    }

    .info-bar-desc p {
        margin-top: 7px;
        font-size: 14px;
    }

/* end footer */


.main-menu,
.top-menu-menu ul > li > ul {
    margin: 0 auto;
    border-radius: 12px;
}

.dashboard .content-box {
    background-color: transparent;
    padding: 0 !important;
}
/* -------------------------------------------------------------------------------------------------------- */
@media screen and (min-width: 768px) {
    /*.category{
      position: relative !important;
  }*/
    .search-box.fixed {
        position: fixed;
        right: auto;
        top: 0;
        left: 15px;
        width: 100%;
        background-color: #fafcff !important;
        z-index: 100;
    }

    .product-row {
        margin-top: 0px;
    }

    .navbar-filter {
        height: auto !important;
        position: relative !important;
    }

    #nav_side {
        height: 525px !important;
        width: fit-content !important;
        z-index: 100;
        transition: all 0s ease-in;
    }

        #nav_side.fixed {
            position: fixed !important;
            top: 145px;
            width: inherit !important;
            z-index: 100;
            right: 9px;
            transition: all 0s ease-in;
            padding: 0px 6px;
        }

    .category > .row > .col-lg-9 {
        margin-right: auto;
        margin-left: 0px;
    }
}

@media screen and (max-width: 767px) {
    #nav_side {
        top: 55px;
        right: 2px;
        z-index: 100;
        transition: all 0s ease-in;
    }
}
/*-------------------------------------------------------------*/
@media screen and (max-width: 767px) {
    .offcanvas-body,
    .offcanvas-header {
        border-left: 1px solid rgba(16, 117, 105, 1) !important;
    }
}

/*---------------------------------------header------------------------------------*/
:root {
    --font-color-gray-title: #344054;
    --font-color-gray-text: #667085;
    --font-color-gray-path: #a3a9c2;
    --font-color-gray-text2: #9a9ea6;
    --font-color-gray-text3: #c0c3c6;
    --font-color-blue-title: #0d0d56;
    --bg-color-path: #edf0f8;
    --font-color-blue-path: #3a4980;
    --font-color-blue-title2: #1d364d;
    --font-color-purple: #ab75f0;
    --font-color-title-footer: #0d3356;
    --bg-purple: #ab75f0;
    --bg-gray: #f6f6f6;
    --bg-light-linear-gradient: linear-gradient(0deg, #eaecf0, #eaecf0), linear-gradient(0deg, #f9fafb, #f9fafb);
    --bg-light-linear-gradient2: linear-gradient(0deg, #f3f3f3, #f3f3f3), linear-gradient(0deg, #ffffff, #ffffff);
    --bg-light-linear-gradient3: linear-gradient(0deg, #eaecf071, #eaecf071), linear-gradient(0deg, #f9fafb62, #f9fafb62);
    --bg-light-footer: #f9fafb;
    --bg-lighter-blue: #eeeff8;
    --bg-lighter-red: #f5f1ee;
    --bg-lighter-gray: #f5eef1;
    --bg-blur: linear-gradient( 0deg, rgba(217, 217, 217, 0.6), rgba(217, 217, 217, 0.6) ), linear-gradient(0deg, #ffeaea, #ffeaea);
    --shadow-light: 0px 15px 60px 0px rgba(171, 117, 240, 0.1);
    --border-light: 1px solid rgba(234, 236, 240, 1);
    --border-light-blur: 1px solid rgba(255, 234, 234, 1);
    --border-gray: 1px solid #344054;
}

.font-color-gray-title {
    color: var(--font-color-gray-title) !important;
}

.font-color-gray-text {
    color: var(--font-color-gray-text) !important;
}

.font-color-gray-text2 {
    color: var(--font-color-gray-text2) !important;
}

.font-color-gray-text3 {
    color: var(--font-color-gray-text3) !important;
}

.font-color-blue-title {
    color: var(--font-color-blue-title) !important;
}

.font-color-blue-title2 {
    color: var(--font-color-blue-title2) !important;
}

.bg-purple {
    background-color: var(--bg-purple) !important;
}

.font-color-purple {
    color: var(--font-color-purple) !important;
}

.bg-light-linear-gradient {
    background-image: var(--bg-light-linear-gradient) !important;
}

.bg-light-linear-gradient2 {
    background-image: var(--bg-light-linear-gradient2) !important;
}

.border-light {
    border: var(--border-light) !important;
}

.bg-lighter-blue {
    background-color: var(--bg-lighter-blue) !important;
}

.bg-lighter-red {
    background-color: var(--bg-lighter-red) !important;
}

.bg-lighter-gray {
    background-color: var(--bg-lighter-gray) !important;
}

.shadow-light {
    box-shadow: var(--shadow-light) !important;
}

.border-gray {
    border: var(--border-gray);
}

.font-color-title-footer {
    color: var(--font-color-title-footer);
}

@media screen and (max-width: 1199px) {
    header .search-header {
        width: calc(100%);
    }

        header .search-header button {
            top: 14px;
            right: 28px;
        }
}

@media screen and (min-width: 1200px) {
    header .search-header {
        width: calc(100% - 333px);
    }

        header .search-header button {
            top: 14px;
            right: 20px;
        }
}

header .search-header input {
    background-image: var(--bg-light-linear-gradient2) !important;
    border-radius: 25px !important;
    border: none !important;
    padding-right: 60px !important;
    width: 100%;
    height: 56px;
}

.index-header .dropdown {
    background-color: var(--bg-lighter-gray);
    border-radius: 25px;
    width: 106px !important;
    height: 50px;
}

    .index-header .dropdown button {
        width: 100% !important;
        height: 100%;
    }

.basket {
    background-color: var(--bg-lighter-red);
    padding: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.message {
    background-color: var(--bg-lighter-blue);
    padding: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.user-profile {
    width: 50px;
    height: 50px;
}
/* --------------------category menu--------------------------- */
@media screen and (min-width: 767px) {
    #product_category_menu {
        display: none !important;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        width: 96vw;
        height: 531px;
        /* padding: 0px 20px; */
        background-color: rgb(255, 255, 255) !important;
        left: 0;
        right: 0;
        border-radius: 12px;
        box-shadow: 0px 0px 15px #d8d7d777;
        overflow-x: hidden;
        z-index: 1000;
    }

    #product_category:hover #product_category_menu {
        display: flex !important;
        visibility: visible;
        opacity: 1;
        transition: all 0.3s ease;
    }

    #product_category_menu_mobile {
        display: none !important;
    }
}

@media screen and (max-width: 767px) and (min-width: 408px) {
    #product_category_menu {
        display: none !important;
    }

    #product_category_menu_mobile {
        width: 408px;
        height: 100vh;
        background-color: rgb(243, 244, 246) !important;
        border-radius: 12px;
        box-shadow: 0px 0px 15px #d8d7d777;
        top: 0;
        z-index: 10000;
        right: -408px;
        transition: all 0.3s ease;
    }

        #product_category_menu_mobile.open {
            right: 0px !important;
            transition: all 0.3s ease;
        }

    header {
        position: relative;
    }
}

@media screen and (max-width: 407px) {
    #product_category_menu {
        display: none !important;
    }

    #product_category_menu_mobile {
        width: 99%;
        height: 98vh;
        background-color: rgb(243, 244, 246) !important;
        border-radius: 12px;
        box-shadow: 0px 0px 15px #d8d7d777;
        top: 0;
        z-index: 10000;
        right: -100%;
        transition: all 0.3s ease;
    }

        #product_category_menu_mobile.open {
            right: 0px !important;
            transition: all 0.3s ease;
        }

    header {
        position: relative;
    }
}

.submenu-title {
    height: 98%;
    max-height: 500px;
    overflow-y: auto;
    width: 240px !important;
    text-align: right;
    background-color: #f5f5f5 !important;
    border-radius: 8px;
    display: block;
    margin: auto 5px;
    padding: 0px 5px;
}

.submenu-content {
    height: 100%;
    background-color: #ffffff !important;
    width: calc(100% - 240px);
}

    .submenu-content .tab-pane {
        height: 100%;
        max-height: 520px;
        overflow-y: auto;
    }

.submenu-title .nav-link.active {
    background-color: #ffffff !important;
    color: var(--font-color-purple) !important;
    font-weight: bold;
    border-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}

.submenu-title .nav-link {
    border-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    width: 100%;
    text-align: right;
    color: var(--font-color-gray-text) !important;
    border-radius: 8px;
    margin: 5px 0px;
}

.submenu-content a {
    text-decoration: none !important;
}

.submenu-col-title {
    color: var(--font-color-purple) !important;
    font-weight: bold;
}

.submenu-col {
    padding: 10px 20px;
    /* width: 230px; */
    margin: 5px 0px;
    height: auto;
}

.close_category {
    top: 10px;
    left: 15px;
    right: auto;
}

#content-menu-mobile .accordion-button::after {
    position: absolute;
    left: 15px;
}

#content-menu-mobile .accordion-button:not(.collapsed)::after {
    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") !important;
    color: #000 !important;
    stroke: #000 !important;
    fill: #000 !important;
}

#content-menu-mobile .accordion-button {
    background-color: rgb(243, 244, 246) !important;
    font-weight: bolder;
    color: #000 !important;
    border: none !important;
    box-shadow: none;
    padding: 7px !important;
}

#content-menu-mobile .accordion-collapse {
    border: none !important;
    background-color: transparent !important;
}

#content-menu-mobile .accordion-item {
    border: none !important;
    background-color: transparent;
}

#content-menu-mobile .accordion-header {
    border: none !important;
}

#content-menu-mobile .card {
    background-color: #fff;
    border: none !important;
    border-radius: none !important;
    padding: 0px 15px;
}

    #content-menu-mobile .card a {
        text-decoration: none !important;
        color: #5c5a5a;
        margin-bottom: 7px;
    }

#content-menu-mobile .item-submenu {
    padding: 0px 20px;
}

#content-menu-mobile {
    height: calc(100vh - 70px);
    overflow-y: auto;
}

#product_category > a {
    background-image: url(../assets/Paramis_Theme/img/Category.svg) !important;
    width: 38px;
    height: 38px;
    background-size: contain;
    display: block;
}

#product_category:hover > a {
    /*background-image: url(../assets/Paramis_Theme/img/Category2.svg) !important;*/
    width: 38px;
    height: 38px;
    background-size: contain;
    display: block;
    border-bottom: 3px solid #164c96;
}

.submenu-col-links a {
    margin: 0px 0px !important;
    color: var(--font-color-gray-text) !important;
}

.floatin-menu {
    position: fixed;
    bottom: 0;
    top: auto;
    height: 70px;
    z-index: 10;
    box-shadow: 0px -5px 35px -5px rgba(0, 0, 0, 0.1);
}

    .floatin-menu a {
        color: #2d2d2d !important;
        font-size: 9pt;
        text-wrap: nowrap;
    }

@media screen and (max-width: 1399px) {
    .see_all {
        position: absolute;
        bottom: -5px;
        top: auto;
        right: auto;
        left: 10px;
        z-index: 100;
    }
}

.other-header .dropdown {
    background-color: var(--bg-lighter-gray);
    border-radius: 25px;
    width: 106px !important;
    height: 50px;
}

    .other-header .dropdown button {
        width: 100% !important;
        height: 100%;
    }

#loadingTemplate {
    display: none;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    color: #333;
    background-color: #f8f8f8;
}

.searchResultsPanel,
#searchResultsPanel {
    display: none;
    position: absolute;
    z-index: 10;
    max-height: 500px;
    overflow-y: auto;
}

.search-results-list img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin: 5px;
}

.search-results-list li {
    margin: 5px 0px;
    display: flex;
    align-items: center;
}

.item-submenu a {
    width: 100%;
    display: block;
    text-align: right;
}
/* ---------------------------------- */
.change-lang {
    right: 0;
}

.border-gray-light {
    border: 1px solid var(--gray-light);
}

.color-dark-blue {
    color: var(--dark-blue) !important;
}

.color-gray-light {
    color: var(--gray-light) !important;
}

.bac-light {
    background-color: var(--light) !important;
}

.radius-25 {
    border-radius: 25px !important;
}

@media screen and (min-width: 768px) {
    .search {
        max-width: 587px;
        min-width: 470px;
        padding-right: 35px !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
}

@media screen and (max-width: 767px) and (min-width: 440px) {
    .search {
        max-width: 350px;
        min-width: 300px;
        padding-right: 35px !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
}

@media screen and (max-width: 439px) {
    .search {
        max-width: 350px;
        /* min-width: 300px; */
        width: 175px !important;
        padding-right: 35px !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
}

.searchbtn {
    right: 8px;
}

.color-brown {
    color: var(--brown);
}

.bac-brown-light {
    background-color: var(--brown-light);
}

.color-black-blue {
    color: var(--black-blue);
}

.bac-blue-light {
    background-color: var(--blue-light);
}

.color-secondery {
    color: var(--secondary);
}

.color-dark {
    color: var(--dark);
}

.offcanvas-body {
    justify-content: left;
}

.nav-link {
    color: var(--gray-light) !important;
}

    .nav-link.active {
        color: var(--dark) !important;
    }

.user-dropdown {
    background-color: rgba(249, 202, 36, 0.17) !important;
}

    .user-dropdown .dropdown-menu {
        border-radius: 12px !important;
        margin-top: 5px !important;
        min-width: 200px;
    }

@media screen and (max-width: 767px) {
    .d-none-m {
        display: none !important;
    }
}

.btn-close {
    margin-left: 0px !important;
}

#mySearchMobile {
    height: 50px;
    border-radius: 12px;
}

body {
    min-height: 100vh !important;
}

@media (min-width: 768px) {
    .d-md-flex {
        display: flex !important;
    }
}

.user-dropdown {
    background-color: transparent !important;
}
/*header .tab-content > .active {
  display: flex !important;
}*/
header .nav-tabs .nav-item.show .nav-link,
header .nav-tabs .nav-link.active,
header .nav-tabs .nav-item.show .nav-link:hover,
header .nav-tabs .nav-link.active:hover {
    border-color: transparent !important;
    color: var(--base-color-1) !important;
}

.submenu-col-links a:hover {
    margin: 7px 0px;
    color: var(--font-color-gray-text) !important;
}

header .nav-tabs .nav-link:hover {
    border: none !important;
    margin-bottom: 0px !important;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--base-color-1) !important;
}
/*------------------------------------*/
header .tab-content > .tab-pane.active:has(.submenu-col) {
    display: flex !important;
}

header .tab-content > .tab-pane.active:has(.nochild) {
    display: block;
}
/*--------------------------------------*/
.basket {
    background-color: var(--bg-lighter-red);
    padding: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buyerBasketCount {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #ff0000;
    border-radius: 50%;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 9pt;
    display: block;
    z-index: 10;
    text-align: center;
}

.floatin-menu a {
    color: #2d2d2d !important;
    font-size: 9pt;
    text-wrap: nowrap;
}

/*    ------------------------------------------------------------------------------------------------------------------------*/

/*new style for header by samira.h*/

/* Mega menu styles */
.mega-menu {
    position: static;
}

/*.mega-menu:hover, .header-new .nav-link:hover {
      background-color: rgba(249,202,36,.17) !important;
      background: rgba(249,202,36,.17) !important;
  }*/

@media screen and (max-width: 991px) {
    .mega-menu .dropdown-menu {
        width: 100%;
        left: 0;
        top: 60px;
        flex-wrap: wrap;
        justify-content: center;
        /* padding: 20px; */
        background-color: #f9f9f9;
        border: none;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0s 0.3s;
    }

        .mega-menu .dropdown-menu.show {
            opacity: 1;
            visibility: visible;
            transition-delay: 0s;
            display: flex;
        }

    .navbar-brand img {
        height: 35px;
        width: auto;
    }

    .dropdown:hover .dropdown-toggle::after,
    .dropdown.show .dropdown-toggle::after {
        position: absolute;
        top: 31px;
        right: auto;
        left: 0;
        /*margin: 0 auto;*/
        display: inline-table;
        opacity: 1;
    }

    .mega-menu .dropdown-toggle::after {
        display: none;
        opacity: 0;
    }
    /* تغییر کرده تاریخ 1402/12/21 */
    .main-title {
        padding-right: 45px;
        position: relative;
        letter-spacing: 1px;
        word-spacing: 1px;
        font-size: 1.2em;
        font-weight: 900;
    }
}

@media screen and (min-width: 992px) {
    .offcanvas-body .mega-menu .dropdown-menu {
        width: 100%;
        left: 8px;
        top: 70px;
        flex-wrap: wrap;
        justify-content: center;
        /* padding: 20px; */
        background-color: #f9f9f9;
        border: none;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0s 0.3s;
    }

        .offcanvas-body .mega-menu .dropdown-menu.show,
        .offcanvas-body .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transition-delay: 0s;
            display: flex;
            transition: display 0.3s !important;
        }

    /*.navbar-brand img {
      height: 75px;
      width: auto;
  }*/

    .offcanvas-body .dropdown:hover .dropdown-toggle::after,
    .offcanvas-body .dropdown.show .dropdown-toggle::after {
        content: "";
        position: absolute;
        top: 31px;
        right: 0;
        left: 0;
        margin: 0 auto;
        display: inline-table;
        opacity: 1;
    }

    .offcanvas-body .dropdown-toggle::after {
        display: none;
        opacity: 0;
    }
}

.mega-menu .nav-link {
    color: #333;
    font-weight: bold;
    padding: 10px 20px;
}

/*.mega-menu .nav-link:hover, .dropdown.show {
      background-color: rgba(249,202,36,.17) !important;
  }*/

.mega-menu .dropdown-menu > .row {
    margin-bottom: 20px;
}

    .mega-menu .dropdown-menu > .row:last-child {
        margin-bottom: 0;
    }

.mega-menu .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mega-menu .col-title {
    font-weight: bold;
    margin-bottom: 10px;
    text-align: right;
    font-size: 12pt;
}

.mega-menu .col-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: right;
    font-size: 10pt;
}

    .mega-menu .col-links .nav-link {
        padding: 5px;
        width: 100%;
        display: block;
    }

.dropdown-toggle {
    position: relative;
}

.offcanvas-header,
.offcanvas-body {
    background-color: #fff !important;
}

.offcanvas-end {
    right: -14px;
}

.header-new .navbar {
    /*right: -12px !important;*/
    background-color: #fff !important;
    height: 100px;
}

.header-new {
    /*margin-right: -12px !important;*/
    height: 100px;
}

    .header-new .navbar-light .navbar-toggler {
        /*top: -12px;*/
        position: relative;
        left: 0px;
        margin-right: auto;
    }

.drop-lang {
    position: absolute;
    right: -115px;
    left: auto;
}
/*--------------------10/24--------------------*/
.card-box .card-img img {
    max-height: 100% !important;
}

@media (min-width: 1200px) {
    .d-xl-inline-block {
        display: inline-block !important;
    }
}

.search-box-menu-top {
    min-width: 300px;
    border-radius: 10px;
    text-align: right;
}

.slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

    .slider .progress_bar {
        height: 100%;
        left: 0%;
        right: 0%;
        position: absolute;
        border-radius: 5px;
        background: #007fee;
    }

.bg-blue {
    background-color: #007fee;
}

.jquery-back-to-top {
    bottom: 74px !important;
}

.choose-color button,
.choose-color span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    border-color: currentColor;
    border: none;
}

    .choose-color button.active::before,
    .choose-color button:active::before,
    .choose-color button:focus::before,
    .choose-color span::before {
        content: "";
        width: 50px;
        height: 50px;
        border: 2px solid currentColor;
        position: absolute;
        border-radius: inherit;
        bottom: -5px;
        right: -5px;
    }

    .choose-color button.active::after,
    .choose-color button:active::after,
    .choose-color button:focus::after {
        content: url(../assets/Aram_Theme/img/tick.svg);
        margin: -2px;
        width: 24px;
        height: 20px;
        display: block;
    }

input[type="radio"] {
    display: grid;
    place-content: center;
    background-color: #fff !important;
    border-color: #3a4980 !important;
}

    input[type="radio"]::before {
        content: "";
        width: 0.65em;
        height: 0.65em;
        border-radius: 50%;
        transform: scale(0);
        transition: 120ms transform ease-in-out;
        box-shadow: inset 1em 1em #3a4980 !important;
        background-color: var(--red) !important;
    }

    input[type="radio"]:checked::before {
        transform: scale(1);
    }

/* start mobile footer */
.mobile-footer {
    width: 100%;
}

/* end mobile footer */

/* icon product box */

.icon-product-box {
    z-index: 9;
    position: absolute;
    top: 10px;
    left: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon-product-box-item {
    cursor: pointer;
    width: 100%;
    background: #fff;
    padding: 5px;
}

.summary .swiper-button-next,
.summary .swiper-button-prev {
    top: 70% !important;
}

.icon-product-box-item i {
    font-size: 22px;
}

.icon-product-box-item span {
    display: block;
    text-align: center;
    font-size: 14px;
}

.pro_gallery {
    position: relative;
}

.special-label {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 500;
}

    .special-label img {
        width: 80px;
    }

/* end icon product box */

/* pro var */

.pro-var-responsive ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 10px 0;
    margin-bottom: 0;
}

    .pro-var-responsive ul li {
        margin-left: 10px;
        margin-bottom: 10px;
    }

        .pro-var-responsive ul li a {
            font-size: 14px;
            display: block;
            border: 1px solid #ddd;
            padding: 7px 10px;
            border-radius: 50%;
        }

            .pro-var-responsive ul li a.active {
                border-color: var(--main-color-one);
            }

.product-feature {
    border-top: 1px dashed #ccc;
}

/* end pro var */

/* تغییر کرده تاریخ 1402/12/22 */
.breadcrumb a img {
    width: 11px;
}
@media (min-width: 992px){
    .d-lg-block {
        display: block !important;
    }
}

.bi-search::before {
    content: "\f52a";
}
@media screen and (max-width: 991px) {
    #collapseSidebar {
        top: 0px;
        overflow-y: auto;
        position: fixed;
        background-color: #fff;
        border-radius: 10px;
        height: 100vh;
        z-index: 100;
        right: 0;
    }
}
.slider.round {
    height: 26px;
    top: -21px;
}
.errorPage {
    height: 79vh;
    background-color: #fff;
    text-align: center;
    color: #E0E0E0;
    /*font-family: 'Fira Mono', monospace;*/
    width: 100vw;
    overflow: hidden;
}

    .errorPage h1 {
        font-size: 2.5rem;
        /*font-family: 'Permanent Marker', cursive;*/
    }

    .errorPage div {
        transform-style: preserve-3d;
    }

    .errorPage svg {
        width: clamp(300px, 70%, 600px);
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .errorPage #lottie-container {
        transform: translateY(750px);
        animation: launch 2s ease-out forwards;
        position: absolute;
    }

@keyframes launch {
    from {
        transform: translateY(750px);
    }

    to {
        perspective: 500px;
        transform: translateY(-86px);
    }
}

.errorPage #stars {
    animation: twinkling 2s linear;
}

@keyframes twinkling {

    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.errorPage .text {
    opacity: 0;
    animation: appear 1s ease-in forwards;
    animation-delay: 1.8s;
    position: absolute;
    top: auto;
    bottom: 105px;
    right: 0;
    left: 0;
    margin: auto;
    color: #656565;
}

@media screen and (max-width: 500px) {
    .errorPage #lottie-container {
        width: 100px;
        height: 100px;
        /*position: absolute;*/
        /*top: 100px;*/
    }

    .errorPage .text {
        bottom: 160px !important;
    }
}

@keyframes appear {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.errorPage a {
    color: #F66947;
    text-decoration: none;
}

.errorPage code {
    color: #F66947;
}