@charset "UTF-8";
.border-primary {
    --bs-border-opacity: 1;
    border-color: var(--theme-color) !important;
    color: var(--theme-light-color);
}

.border-light-primary {
    --bs-border-opacity: 1;
    border-color: var(--theme-light-color) !important;
    color: var(--theme-color);
}

.bg-primary {
    --bs-bg-opacity:1;
    background-color: unset !important;
    box-shadow: var(--box-shadow-4);
    color: var(--theme-color);
}

.bg-light-primary {
    --bs-bg-opacity:1;
    background-color: var(--theme-light-color) !important;
    color: var(--theme-medium-color);
}

.bg-light-danger {
    --bs-bg-opacity:1;
    background-color: rgb(251, 237, 240) !important;
    color: #f30745;
    width: 60px;
    border-radius: var(--border-radius-2);
    z-index: 9 !important;
}

.bg-danger {
    --bs-bg-opacity:1;
    background-color: rgb(251, 237, 240) !important;
    color: #f30745;
    border-radius: 10px 10px 10px 0;
    z-index: 9 !important;
}

.bg-light-warning {
    --bs-bg-opacity:1;
    background-color: rgb(251, 247, 238) !important;
    color: #f69d16;
    top: 0;
    right: 0;
    border-bottom-right-radius: var(--border-radius-2);
    border-top-right-radius: var(--border-radius-2);
    border-top-left-radius: var(--border-radius-2);
    border-bottom-left-radius: 0;
    z-index: 10;
}

.bg-light-success {
    --bs-bg-opacity:1;
    background-color: #ebfbf7 !important;
    color: #0abc89 !important;
    top: 10px;
    right: 10px;
    border-bottom-right-radius: var(--border-radius-2);
    border-top-right-radius: var(--border-radius-2);
    border-top-left-radius: var(--border-radius-2);
    border-bottom-left-radius: 0;
    z-index: 10;
}

img.logo-header-desktop {
    width: 180px;
    position: absolute;
    top: 10px;
    right: 10px;
    left: 10px;
}

.logo-main {
    width: 130px;
}

img.logo-menu-medium {
    width: 120px;
}

.border-bottom-bold {
    border-bottom: 4px solid var(--theme-color);
    display: inline-block;
    margin-top: 10px;
    padding-block: 5px;
}

.font-weight-100 {
    font-family: "IRANSans-light";
}

.border-bottom-light {
    border-bottom: 1px solid #cbffde;
}

.font-bold {
    font-family: "IRANSans-bold";
}

.user-img {
    max-width: 40px;
}

.border-left {
    border-left: 1px solid var(--theme-color);
    margin: 0 5px;
    display: inline;
}

.small-line {
    color: var(--theme-light-color);
}

.svg {
    max-width: 25px;
}

.section-total {
    margin-top: 20px;
    background-color: var(--light-color);
    color: var(--dark-color);
    border-radius: var(--border-radius-2);
    padding: 10px;
    line-height: 2;
}
.section-total div {
    box-shadow: var(--box-shadow-4);
    border-radius: var(--border-radius-2);
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.hidden {
    display: none;
}

tr {
    border-bottom: 1px solid var(--theme-color);
}

.bg-dark {
    background-color: var(--dark-color) !important;
}

.text-success {
    color: var(--theme-color) !important;
}

tr {
    margin: 10px;
}
tr td {
    padding: 10px;
    border-radius: var(--border-radius-2);
}

table {
    width: 100%;
}

.action-product-cart {
    position: absolute;
    top: -26px;
    left: 35px;
    z-index: 10;
    box-shadow: none !important;
}
.action-product-cart .square {
    position: relative;
    margin: 5px 5px;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.action-product-cart .square span:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid black;
    border-radius: 32% 58% 69% 43%/48% 32% 59% 55%;
    transition: 0.5s;
    animation: animate 6s linear infinite;
}
.action-product-cart .one span:nth-child(1) {
    border: none;
    background: #f38c38;
}
.action-product-cart .square span:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid black;
    border-radius: 38% 62% 63% 37%/41% 44% 56% 59%;
    transition: 0.5s;
    animation: animate 4s linear infinite;
}
.action-product-cart .one span:nth-child(2) {
    border: none;
    background: var(--dark-color);
}
.action-product-cart .square span:nth-child(3) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid black;
    border-radius: 31% 45% 74% 35%/38% 56% 51% 87%;
    transition: 0.5s;
    animation: animate2 10s linear infinite;
}
.action-product-cart .one span:nth-child(3) {
    border: none;
    background: #fff6ef;
}
.action-product-cart .content {
    position: relative;
    padding: 40px 60px;
    color: #232323;
    text-align: center;
    transition: 0.5s;
    z-index: 3;
}
@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes animate2 {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.example-2 {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.example-2 .icon-content {
    margin: 0 10px;
    position: relative;
}

.example-2 .icon-content .tooltip {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(50%);
    color: #fff;
    padding: 6px 10px;
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    font-size: 14px;
    transition: all 0.3s ease;
}

.example-2 .icon-content:hover .tooltip {
    opacity: 1;
    visibility: visible;
    top: 6px;
}

.example-2 .icon-content a {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 20%;
    color: var(--dark-color);
    background-color: white;
    transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover {
    box-shadow: 3px 2px 45px 0px rgba(0, 0, 0, 0.5);
}

.example-2 .icon-content a svg {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
}

.example-2 .icon-content a:hover {
    color: white;
}

.example-2 .icon-content a .filled {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #450cde;
    transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover .filled {
    height: 100%;
}

/* From Uiverse.io by alexruix */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#main-content {
    display: none;
}

.loader {
    width: 48px;
    height: 48px;
    margin: auto;
    position: relative;
}

.loader:before {
    content: "";
    width: 48px;
    height: 5px;
    background: var(--theme-light-color);
    position: absolute;
    top: 60px;
    left: 0;
    border-radius: 50%;
    animation: shadow324 0.5s linear infinite;
}

.loader:after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
    animation: jump7456 0.5s linear infinite;
}

@keyframes jump7456 {
    15% {
        border-bottom-right-radius: 3px;
    }
    25% {
        transform: translateY(9px) rotate(22.5deg);
    }
    50% {
        transform: translateY(18px) scale(1, 0.9) rotate(45deg);
        border-bottom-right-radius: 40px;
    }
    75% {
        transform: translateY(9px) rotate(67.5deg);
    }
    100% {
        transform: translateY(0) rotate(90deg);
    }
}
@keyframes shadow324 {
    0%, 100% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.2, 1);
    }
}
@font-face {
    font-family: "IRANSans";
    src: url("../fonts/iransans/eot/IRANSansWeb(FaNum).eot") format("eot"), url("../fonts/iransans/ttf/IRANSansWeb(FaNum).ttf") format("ttf"), url("../fonts/iransans/woff/IRANSansWeb(FaNum).woff") format("woff"), url("../fonts/iransans/woff2/IRANSansWeb(FaNum).woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "IRANSans-bold";
    src: url("../fonts/iransans/eot/IRANSansWeb(FaNum)_Black.eot") format("eot"), url("../fonts/iransans/ttf/IRANSansWeb(FaNum)_Black.ttf") format("ttf"), url("../fonts/iransans/woff/IRANSansWeb(FaNum)_Black.woff") format("woff"), url("../fonts/iransans/woff2/IRANSansWeb(FaNum)_Black.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "IRANSans-light";
    src: url("../fonts/iransans/eot/IRANSansWeb(FaNum)_UltraLight.eot") format("eot"), url("../fonts/iransans/ttf/IRANSansWeb(FaNum)_UltraLight.ttf") format("ttf"), url("../fonts/iransans/woff/IRANSansWeb(FaNum)_UltraLight.woff") format("woff"), url("../fonts/iransans/woff2/IRANSansWeb(FaNum)_UltraLight.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}
* {
    font-family: "IRANSans";
    margin: 0;
    padding: 0;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--light-color);
    padding-right: 0 !important;
}

main {
    margin-top: 20px;
}

input {
    outline: none;
}

h2, h3, h4, h5, h6 {
    font-family: "IRANSans-bold";
    color: var(--dark-color) !important;
}

h1, h2 {
    font-size: 25px !important;
}

.h5 {
    font-size: 20px !important;
}

h3, h4, h5 {
    font-size: 19px !important;
}

h6 {
    font-size: 14px !important;
}

a {
    text-decoration: none;
    color: var(--dark-color);
}

ul {
    list-style: none;
}

::-webkit-scrollbar {
    background: var(--dark-color);
    width: 7px;
    border-radius: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: none;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--theme-medium-color);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--theme-medium-color);
}

.badge {
    font-family: "IRANSans-light";
    font-weight: normal;
}

.card {
    border: none !important;
}

.badge {
    white-space: normal !important;
    line-height: 2;
    font-size: 12px !important;
}

.alert {
    font-size: 16px !important;
}

.text-danger {
    color: #f43f5e !important;
}

.accordion-button {
    font-family: "IRANSans-light";
}

.rounded-4 {
    border-radius: var(--border-radius-1) !important;
}

.bg-dark {
    background-color: var(--dark-color) !important;
    color: var(--theme-light-color) !important;
    border-radius: var(--border-radius-2);
}

h3 {
    padding: 5px;
    display: grid;
    place-content: center;
    --border-angle: 0turn;
    --main-bg: conic-gradient(
            from var(--border-angle),
            #ffffff,
            #ffffff,
            #ffffff,
            #ffffff
    );
    border: solid 2px transparent;
    border-radius: var(--border-radius-2);
    --gradient-border: conic-gradient(from var(--border-angle), transparent 25%, var(--theme-color));
    background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
    background-position: center center;
    animation: bg-spin 3s linear infinite;
}
@keyframes bg-spin {
    to {
        --border-angle: 1turn;
    }
}
@property --border-angle {
    h3 {
        syntax: "<angle>";
        inherits: true;
        initial-value: 0turn;
    }
}

.btn-primary {
    position: relative;
    padding: 9px;
    border-radius: var(--border-radius-2);
    border: none;
    color: var(--theme-color);
    cursor: pointer;
    background-color: var(--dark-color);
    transition: all 0.2s ease;
}
.btn-primary:active {
    transform: scale(0.96);
}
.btn-primary:before, .btn-primary:after {
    position: absolute;
    content: "";
    width: 150%;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    z-index: -1000;
    background-repeat: no-repeat;
}
.btn-primary:hover {
    background-color: var(--dark-color);
    color: var(--theme-light-color);
}
.btn-primary:hover:before {
    top: -70%;
    background-image: radial-gradient(circle, var(--theme-medium-color) 20%, transparent 20%), radial-gradient(circle, transparent 20%, var(--theme-medium-color) 20%, transparent 30%), radial-gradient(circle, var(--theme-medium-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-medium-color) 20%, transparent 20%), radial-gradient(circle, transparent 10%, var(--theme-medium-color) 15%, transparent 20%), radial-gradient(circle, var(--theme-medium-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-medium-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-medium-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-medium-color) 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
    background-position: 50% 120%;
    animation: greentopBubbles 0.6s ease;
}
@keyframes greentopBubbles {
    0% {
        background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
    }
    50% {
        background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
    }
    100% {
        background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}
.btn-primary:hover::after {
    bottom: -70%;
    background-image: radial-gradient(circle, var(--theme-medium-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-medium-color) 20%, transparent 20%), radial-gradient(circle, transparent 10%, var(--theme-medium-color) 15%, transparent 20%), radial-gradient(circle, var(--theme-medium-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-medium-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-medium-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-medium-color) 20%, transparent 20%);
    background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
    background-position: 50% 0%;
    animation: greenbottomBubbles 0.6s ease;
}
@keyframes greenbottomBubbles {
    0% {
        background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
    }
    50% {
        background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
    }
    100% {
        background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

.btn-light-primary {
    --bs-btn-color: var(--dark-color);
    --bs-btn-border-color: none;
    --bs-btn-bg: var(--theme-light-color);
    --bs-btn-hover-color: var(--dark-color);
    --bs-btn-hover-bg: var(--theme-color);
    --bs-btn-hover-border-color: var(--theme-color);
    --bs-btn-focus-shadow-rgb: 220, 53, 69;
    --bs-btn-active-color: var(--theme-light-color);
    --bs-btn-active-bg: var(--theme-color);
    --bs-btn-active-border-color: var(--theme-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--theme-color);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--theme-color);
    --bs-gradient: none;
}

.button {
    background: var(--dark-color);
    position: relative;
    text-align: center;
    border-radius: 0.45em;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    height: 40px;
    width: 170px;
    display: inline-block;
}

.button::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border: 10px solid transparent;
    left: calc(50% - 10px);
}

.button::after, .button::before {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.button-wrapper, .text, .icon {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    color: var(--theme-light-color);
}

.text {
    top: 0;
}

.text, .icon {
    -webkit-transition: top 0.5s;
    transition: top 0.5s;
}

.icon {
    color: var(--theme-light-color);
    top: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.button:hover {
    background: var(--theme-medium-color);
}

.button:hover .text {
    top: -100%;
}

.button:hover .icon {
    top: 0;
}

.button:hover:before, .button:hover:after {
    opacity: 1;
    visibility: visible;
}

.btn-primary-hover {
    padding: 10px;
    font-size: 15px;
    background-color: var(--dark-color) !important;
    color: var(--theme-light-color) !important;
    border: none;
    border-radius: var(--border-radius-2);
    transition: all 0.4s;
}
.btn-primary-hover:hover {
    border-radius: var(--border-radius-2);
    transform: translateY(-10px);
    box-shadow: 0 7px 0 -2px var(--theme-medium-color), 0 15px 0 -4px var(--dark-color), 0 16px 10px -3px var(--dark-color);
}

.btn-shadow-primary {
    --bs-btn-color: var(--dark-color);
    --bs-btn-bg: var(--theme-color);
    --bs-btn-border-color: none;
    box-shadow: 0 0 10px var(--theme-color);
    --bs-btn-hover-color: var(--dark-color);
    --bs-btn-hover-bg: var(--theme-light-color);
    --bs-btn-hover-border-color: none;
    --bs-btn-focus-shadow-rgb: 225, 83, 97;
    --bs-btn-active-color: var(--theme-light-color);
    --bs-btn-active-bg: var(--theme-color);
    --bs-btn-active-border-color: var(--theme-color);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--theme-light-color);
    --bs-btn-disabled-bg: var(--theme-color);
    --bs-btn-disabled-border-color: var(--theme-color);
}

.btn-shadow {
    --bs-btn-color: var(--dark-color);
    --bs-btn-bg: none;
    border-bottom-left-radius: var(--border-radius-1);
    --bs-btn-border-color: none;
    box-shadow: var(--box-shadow-2);
    --bs-btn-hover-color: none;
    --bs-btn-hover-bg: var(--light-color);
    --bs-btn-hover-border-color: none;
    --bs-btn-focus-shadow-rgb: 225, 83, 97;
    --bs-btn-active-color: var(--theme-light-color);
    --bs-btn-active-bg: none;
    --bs-btn-active-border-color: none;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--theme-light-color);
    --bs-btn-disabled-bg: none;
    --bs-btn-disabled-border-color: none;
}
.btn-shadow:hover {
    box-shadow: var(--box-shadow-3);
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 30px;
    z-index: 990;
}

.btn-cart {
    background-color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow-4);
    backdrop-filter: blur(0);
    border-radius: var(--border-radius-2);
}
.btn-cart:hover {
    background-color: #ffffff;
}

.btn-user {
    background-color: var(--theme-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(0);
    border-radius: var(--border-radius-2);
}
.btn-user:hover {
    background-color: var(--theme-color);
}

.shopping-btn {
    position: relative;
}

.btn-dark {
    position: relative;
    background-color: rgb(0, 0, 0);
    align-items: center;
    color: rgb(255, 255, 255);
    flex-direction: column;
    justify-content: center;
    border: none;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}
.btn-dark:before {
    content: "";
    position: absolute;
    inset: 0;
    left: 3px;
    top: 0px;
    margin: auto;
    width: -128px;
    height: -48px;
    border-radius: 10px;
    background: linear-gradient(-45deg, #10d32a 0%, rgb(119, 235, 235) 100%);
    z-index: -10;
    pointer-events: visiblePainted;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-dark:after {
    content: "";
    z-index: -1;
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #00ff22 0%, rgb(0, 250, 250) 100%);
    transform: translate3d(0, 0, 0) scale(0.95);
    filter: blur(15px);
}
.btn-dark:hover::after {
    filter: blur(40px);
}
.btn-dark:hover::before {
    transform: rotate(-180deg);
}
.btn-dark:active::before {
    scale: 0.7;
}
.btn-dark:hover {
    background-color: rgb(0, 0, 0);
}

/* The switch - the box around the slider */
.switch-btn {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 3.7em;
    height: 2em;
    padding-right: 5px;
}

/* Hide default HTML checkbox */
.switch-btn input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider-btn {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 7px;
}

.slider-btn:before {
    position: absolute;
    content: "";
    height: 1.4em;
    width: 0.5em;
    border-radius: 3px;
    left: 0.2em;
    bottom: 0.3em;
    background-color: var(--theme-light-color);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .slider-btn {
    background-color: var(--theme-color);
}

input:checked + .slider-btn:before {
    -webkit-transform: translateX(2.8em) rotate(360deg);
    -ms-transform: translateX(2.8em) rotate(360deg);
    transform: translateX(2.8em) rotate(360deg);
}

.alert-primary {
    --bs-alert-color: var(--theme-light-color);
    font-family: "IRANSans-light";
    border-radius: var(--border-radius-1);
    --bs-alert-bg: var(--theme-color);
    --bs-alert-border-color: none;
}

.alert-light-primary {
    --bs-alert-color: var(--theme-color);
    font-family: "IRANSans-light";
    border-radius: var(--border-radius-1);
    --bs-alert-bg: var(--theme-light-color);
    --bs-alert-border-color: none;
}

.product, .product-discount, .product-special, .product-special-2 {
    border: 1px solid var(--theme-light-color);
    border-radius: var(--border-radius-1);
    box-shadow: var(--box-shadow-4);
    transition: transform 0.3s;
    height: 22.2rem;
}
.product:hover, .product-discount:hover, .product-special:hover, .product-special-2:hover {
    transform: scale(0.95);
}
.product div.card-body, .product-discount div.card-body, .product-special div.card-body, .product-special-2 div.card-body {
    text-align: start;
    position: relative;
}
.product div.card-body img, .product-discount div.card-body img, .product-special div.card-body img, .product-special-2 div.card-body img {
    border-radius: var(--border-radius-1);
    width: 200px;
    height: 200px;
}
.product div.card-body button, .product div.card-body a, .product-discount div.card-body button, .product-discount div.card-body a, .product-special div.card-body button, .product-special div.card-body a, .product-special-2 div.card-body button, .product-special-2 div.card-body a {
    z-index: 100 !important;
}
.product div.card-body button:last-child:hover, .product-discount div.card-body button:last-child:hover, .product-special div.card-body button:last-child:hover, .product-special-2 div.card-body button:last-child:hover {
    background-color: unset;
    box-shadow: var(--box-shadow-2);
}

.product-special {
    height: 29rem;
    position: relative;
}

.product-special-2 {
    height: 23.5rem;
    position: relative;
}
.product-special-2:hover {
    transform: none;
}
.product-special-2:hover .btn-product {
    display: block !important;
    z-index: 100;
}
.product-special-2 .btn-product {
    display: none !important;
    position: absolute;
    top: 10px;
    left: 0;
    gap: 10px;
}
.product-special-2 .btn-product .btn-light-primary {
    border: 1px solid var(--theme-medium-color);
    background-color: var(--light-color);
}
.product-special-2 .btn-product .btn-light-primary:hover {
    background-color: var(--theme-medium-color) !important;
}

p.demo {
    text-align: right;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 14px !important;
    color: var(--theme-color);
}

.myProgress {
    width: 100%;
    background-color: var(--theme-light-color);
    margin-bottom: 10px;
    border-radius: var(--border-radius-2);
    margin-top: 10px;
}

.myBar {
    width: 40%;
    height: 5px;
    background-color: var(--theme-color);
    border-radius: var(--border-radius-2);
}

.p-d {
    position: absolute;
    top: 40px;
    right: 0;
}

.svg2 {
    max-width: 25px;
    max-height: 25px;
}

.blur-product div {
    filter: blur(5px);
}

.product-discount {
    color: var(--dark-color);
    height: 23.6rem;
}
.product-discount del {
    color: var(--theme-color);
}

.style-icon-discount {
    position: absolute;
    top: -18px;
    left: -18px;
}

.product-name {
    display: inline-block;
    background: linear-gradient(to left, var(--dark-color) 70%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    white-space: nowrap;
    text-align: start;
}

.group-search-box, .group-search-box-medium {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 28px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 550px;
}

.group-search-box {
    margin-left: 16px;
}

.group-search-box-medium {
    position: absolute !important;
    top: 60px;
    left: 5%;
    right: 5%;
    margin: auto;
}

.input-search-box {
    height: 40px;
    line-height: 28px;
    padding: 0 1rem;
    width: 100%;
    padding-left: 1rem;
    border: none;
    border-radius: var(--border-radius-2);
    outline: none;
    box-shadow: var(--box-shadow-4);
    color: var(--dark-color);
}

.input-search-box::-webkit-input-placeholder {
    color: var(--dark-color);
}

.input-search-box::-moz-placeholder {
    color: var(--dark-color);
}

.input-search-box:-ms-input-placeholder {
    color: var(--dark-color);
}

.input-search-box::-ms-input-placeholder {
    color: var(--dark-color);
}

.input-search-box::placeholder {
    color: var(--dark-color);
}

.icon-search-box {
    position: absolute;
    left: 0.7rem;
    fill: var(--theme-color);
    width: 1.7rem;
    height: 1.7rem;
}

.pulse-effect {
    background-color: #fb923c;
    height: 30px;
    width: 30px;
    border-radius: 100%;
    position: relative;
    margin: auto 19%;
    z-index: 92;
    bottom: 250px;
}

.pulse-effect-2 {
    background-color: var(--theme-color);
    height: 20px;
    width: 20px;
    border-radius: 100%;
    position: relative;
    z-index: 200;
}

.circle {
    position: absolute;
    background-color: inherit;
    height: 100%;
    width: 100%;
    border-radius: 100%;
    opacity: 0.5;
    animation: pulse 3s ease-out infinite;
}

.circle:nth-of-type(1) {
    animation-delay: -0.5s;
}

.circle:nth-of-type(2) {
    animation-delay: -1s;
}

.circle:nth-of-type(3) {
    animation-delay: -1.5s;
}

@keyframes pulse {
    100% {
        transform: scale(1.75);
        opacity: 0;
    }
}
.square {
    position: relative;
    margin: 10px 10px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.square span:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid black;
    border-radius: 32% 58% 69% 43%/48% 32% 59% 55%;
    transition: 0.5s;
    animation: animate 6s linear infinite;
}

.one span:nth-child(1) {
    border: none;
    background: var(--theme-color);
}

.square span:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid black;
    border-radius: 38% 62% 63% 37%/41% 44% 56% 59%;
    transition: 0.5s;
    animation: animate 4s linear infinite;
}

.one span:nth-child(2) {
    border: none;
    background: var(--dark-color);
}

.square span:nth-child(3) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid black;
    border-radius: 31% 45% 74% 35%/38% 56% 51% 87%;
    transition: 0.5s;
    animation: animate2 10s linear infinite;
}

.one span:nth-child(3) {
    border: none;
    background: var(--theme-light-color);
}

.content {
    position: relative;
    padding: 40px 60px;
    color: #232323;
    text-align: center;
    transition: 0.5s;
    z-index: 3;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes animate2 {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
.col-12 {
    justify-content: center;
    align-items: center;
}

.swiper {
    width: 100%;
    height: 100%;
    transition: width 0.3s ease;
}

.mySwiper2 {
    height: 80%;
    width: 100%;
}

.mySwiper-product-img .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.mySwiper-product-img .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-wrapper {
    height: unset;
}

.swiper-pagination-progressbar {
    background-color: var(--theme-light-color);
    border-radius: var(--border-radius-2);
}

.swiper-pagination-progressbar-fill {
    background-color: var(--theme-color) !important;
    border-radius: var(--border-radius-1) !important;
}

.swiper-slide {
    width: fit-content;
    height: 100%;
    text-align: center;
    font-size: 15px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    padding: 0 0;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide {
    margin-right: 0;
    margin-left: 0;
}

.swiper-button-prev,
.swiper-button-next {
    width: 50px; /* Set button width */
    height: 50px; /* Set button height */
    background-color: var(--light-color); /* Change background color */
    box-shadow: var(--box-shadow-4);
    color: var(--dark-color); /* Change text color (if applicable) */
    border-radius: 50%; /* Make them circular */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    padding-left: -1px;
    margin-left: -1px;
}

.swiper-button-next {
    left: 0;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: var(--theme-color); /* Change background color on hover */
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px; /* Change icon size */
}

/* Optional: Positioning the buttons */
.swiper-button-prev {
    left: 10px; /* Adjust left position */
}

.swiper-button-next {
    right: 10px; /* Adjust right position */
}

.swiper-pagination-bullet {
    background-color: var(--theme-color) !important;
}

.swiper-pagination-bullet-active {
    width: 25px;
    border-radius: var(--border-radius-2);
    height: 7px;
}

.mySwiper-webLog {
    height: 20rem;
}
.mySwiper-brands {
    margin-top: 20px;
}

.mySwiper-categories {
    margin-top: 20px;
}

.mySwiper-shop .swiper-slide {
    width: 80%;
}
.mySwiper-shop .swiper-slide:nth-child(2n) {
    width: 60%;
}
.mySwiper-shop .swiper-slide:nth-child(3n) {
    width: 40%;
}

.mySwiper-product-one .swiper-wrapper {
    height: 460px;
}
.mySwiper-product-one .swiper-slide {
    padding-bottom: 45px;
}

.mySwiper-product-two .swiper-wrapper {
    height: 405px;
}
.mySwiper-product-two .swiper-slide {
    padding-bottom: 45px;
}

.mySwiper-product-three .swiper-wrapper {
    height: 428px;
}
.mySwiper-product-three .swiper-slide {
    padding-bottom: 45px;
}

.mySwiper-product-four .swiper-wrapper {
    height: 427px;
}
.mySwiper-product-four .swiper-slide {
    padding-bottom: 45px;
}

header {
    flex-direction: column;
    height: 100px;
}
header .main-navbar .header-fixed {
    background-color: var(--light-color);
    border-bottom: 1px solid var(--theme-color);
    width: 100%;
    z-index: 999;
    left: 0;
    top: 0;
    right: 0;
    position: fixed;
}
header .main-navbar .main-navbar-desktop {
    font-size: 15px;
    position: relative;
}
header .main-navbar .main-navbar-desktop div.profile-btn {
    display: inline-block;
    margin: 10px;
    position: relative;
}
header .main-navbar .main-navbar-desktop div.profile-btn a {
    background-color: var(--theme-light-color) !important;
}
header .main-navbar .main-navbar-desktop div.profile-btn:hover ul {
    display: block;
}
header .main-navbar .main-navbar-desktop div.profile-btn ul {
    padding-right: 0 !important;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    border-radius: var(--border-radius-2);
    box-shadow: var(--box-shadow-3);
    background-color: var(--light-color);
    z-index: 100;
}
header .main-navbar .main-navbar-desktop div.profile-btn ul:hover li {
    opacity: 0.5;
    transform: scale(0.98);
}
header .main-navbar .main-navbar-desktop div.profile-btn ul:hover li:hover {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
}
header .main-navbar .main-navbar-desktop div.profile-btn ul li {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    border-bottom: 1px solid var(--theme-light-color);
    margin: 0;
    padding: 10px;
    white-space: nowrap;
}
header .main-navbar .main-navbar-desktop div.profile-btn ul li svg {
    color: var(--dark-color);
}
header .main-navbar .main-navbar-desktop div.profile-btn ul li:hover {
    color: var(--theme-color);
}
header .main-navbar .main-navbar-desktop div.profile-btn ul li:last-child {
    border: none;
    border-radius: 0 0 10px 10px;
}
header .main-navbar .main-navbar-desktop div.profile-btn ul li:first-child {
    border-radius: 10px 10px 0 0;
}
header .main-navbar .main-navbar-desktop div.profile-btn ul li:hover {
    background-color: var(--theme-light-color);
}
header .main-navbar .main-navbar-desktop div.profile-btn ul li a {
    background-color: unset !important;
    display: block;
}
header .main-navbar .main-navbar-desktop .main-navbar-items {
    height: 50px;
    display: flex;
}
header .main-navbar .main-navbar-desktop .main-navbar-items .mega .mega-btn {
    margin: 10px;
    text-align: center;
    color: var(--dark-color);
    background: none;
    border-bottom: 4px solid var(--theme-color);
    box-shadow: var(--box-shadow-4);
    border-radius: 10px 10px 0 0;
    padding: 10px;
}
header .main-navbar .main-navbar-desktop .main-navbar-items .mega:hover .mega-menu {
    display: block;
}
header .main-navbar .main-navbar-desktop .main-navbar-items .mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 1000px;
    border-radius: 0 0 15px 15px;
    margin-right: 10px;
    box-shadow: var(--box-shadow-4);
    background-color: var(--light-color);
    z-index: 20;
}
header .main-navbar .main-navbar-desktop .main-navbar-items .mega-menu .mega-menu-items {
    display: flex;
    height: 500px;
}
header .main-navbar .main-navbar-desktop .main-navbar-items .mega-menu .mega-menu-items .show-mega-menu a {
    display: flex;
    justify-content: start;
    align-items: center;
}
header .main-navbar .main-navbar-desktop .main-navbar-items .mega-menu .mega-menu-items .show-mega-menu a .list-item {
    display: flex;
    background-color: var(--dark-color);
    width: 17px;
    height: 17px;
    border-radius: 7px;
    margin-left: 4px;
    transition: width 0.2s;
    box-shadow: var(--box-shadow-4);
}
header .main-navbar .main-navbar-desktop .main-navbar-items .mega-menu .mega-menu-items .show-mega-menu a:hover .list-item {
    width: 28px !important;
}
header .main-navbar .main-navbar-desktop .main-navbar-items .mega-menu .mega-menu-items .mega-menu-children {
    overflow-y: auto;
}
header .main-navbar .main-navbar-desktop .main-navbar-items .mega-menu .mega-menu-items .mega-menu-children .mega-menu-child {
    background: linear-gradient(to right, #ffffff 29%, var(--theme-light-color) 100%);
    width: 100% !important;
}
header .main-navbar .main-navbar-desktop .main-navbar-items .mega-menu .mega-menu-items .mega-menu-children .mega-menu-child .box-items-mega-menu {
    width: 30% !important;
    padding: 10px;
    display: inline-block;
    margin: 10px;
}
header .main-navbar .main-navbar-desktop .main-navbar-items .mega-menu .mega-menu-items .mega-menu-children .mega-menu-child .box-items-mega-menu h1 {
    font-size: 18px !important;
}
header .main-navbar .main-navbar-desktop .main-navbar-items .mega-menu .mega-menu-items .mega-menu-children .mega-menu-child .box-items-mega-menu a {
    display: block;
    color: #6b6b6b;
    font-size: 13px;
    margin: 5px 15px 0 0;
    width: 150px;
}
header .main-navbar .main-navbar-desktop .main-navbar-items .mega-menu .mega-menu-items .mega-menu-children .mega-menu-child .box-items-mega-menu a:hover {
    color: var(--theme-color);
}
header .main-navbar .main-navbar-desktop .main-navbar-items .mega-menu .mega-menu-items .mega-menu-children .mega-menu-child .box-items-mega-menu a:before {
    content: "";
    float: right;
    width: 13px;
    height: 13px;
    background: var(--dark-color);
    border-radius: 100% 50% 50% 100%/75% 69% 69% 75%;
    margin-top: 6px;
    margin-left: 8px;
}
header .main-navbar .main-navbar-desktop .main-navbar-items .mega-menu .mega-menu-items ul {
    overflow-y: auto;
    width: 300px !important;
}
header .main-navbar .main-navbar-desktop .main-navbar-items .mega-menu .mega-menu-items ul li {
    height: auto;
    background-color: var(--theme-light-color);
    margin: 10px;
    padding: 10px;
    border-radius: var(--border-radius-2);
    display: block;
}
header .main-navbar .main-navbar-desktop .main-navbar-items .mega-menu .mega-menu-items ul li a:before {
    position: static;
}
header .main-navbar .main-navbar-desktop .main-navbar-items ul {
    padding-right: 0 !important;
}
header .main-navbar .main-navbar-desktop .main-navbar-items ul li {
    display: inline-block;
    margin: 10px;
    position: relative;
}
header .main-navbar .main-navbar-desktop .main-navbar-items ul li:hover ul {
    display: block;
}
header .main-navbar .main-navbar-desktop .main-navbar-items ul li a {
    display: block;
}
header .main-navbar .main-navbar-desktop .main-navbar-items ul li a:hover {
    color: var(--theme-color);
}
header .main-navbar .main-navbar-medium {
    padding-top: 0;
    padding-bottom: 0;
    display: none;
}
header .main-navbar .main-navbar-medium .main-navbar-medium-menu {
    margin: 10px !important;
}
header .main-navbar .main-navbar-medium .back-ground-search {
    border-radius: 0px 0px 13px 13px;
    position: absolute;
    background-color: var(--light-color);
    top: 60px;
    left: 20%;
    right: 20%;
    height: 50px;
    z-index: -1;
    box-shadow: rgba(0, 0, 0, 0.1) 0 20px 25px -5px, rgba(0, 0, 0, 0.04) 0 10px 10px -5px;
}
header .main-navbar .main-navbar-medium div.profile-btn {
    display: inline-block;
    margin: 10px;
    position: relative;
}
header .main-navbar .main-navbar-medium div.profile-btn .show {
    display: block;
}
header .main-navbar .main-navbar-medium div.profile-btn ul {
    padding-right: 0 !important;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    border-radius: var(--border-radius-2);
    box-shadow: var(--box-shadow-1);
    background-color: var(--light-color);
    z-index: 100;
}
header .main-navbar .main-navbar-medium div.profile-btn ul li {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    border-bottom: 1px solid var(--theme-light-color);
    margin: 0;
    padding: 10px;
    white-space: nowrap;
}
header .main-navbar .main-navbar-medium div.profile-btn ul li:active {
    color: var(--theme-color);
}
header .main-navbar .main-navbar-medium div.profile-btn ul li:last-child {
    border: none;
    border-radius: 0 0 10px 10px;
}
header .main-navbar .main-navbar-medium div.profile-btn ul li:first-child {
    border-radius: 10px 10px 0 0;
}
header .main-navbar .main-navbar-medium div.profile-btn ul li:active {
    background-color: var(--theme-light-color);
}
header .main-navbar .main-navbar-medium div.profile-btn ul li a {
    display: block;
}
header .main-navbar .main-navbar-medium .main-navbar-medium-items {
    visibility: hidden;
    background-color: var(--light-color);
    position: absolute;
    padding-top: 0;
    top: 0;
    right: 0;
    z-index: 20000;
    width: 100%;
    height: 100%;
}
header .main-navbar .main-navbar-medium .main-navbar-medium-items .navbar-sidebar {
    background-color: var(--theme-light-color);
}
header .main-navbar .main-navbar-medium .main-navbar-medium-items .navbar-sidebar .navbar-sidebar-header {
    background-color: var(--theme-color);
    display: flex;
}
header .main-navbar .main-navbar-medium .main-navbar-medium-items .navbar-sidebar .navbar-sidebar-header img {
    margin-right: 10px;
}
header .main-navbar .main-navbar-medium .main-navbar-medium-items .navbar-sidebar .navbar-sidebar-header button {
    position: absolute;
    left: 5px;
    top: 5px;
    background-color: var(--dark-color) !important;
}
header .main-navbar .main-navbar-medium .main-navbar-medium-items .navbar-sidebar .navbar-sidebar-items {
    width: 100%;
    height: 500px;
    overflow-y: auto;
    padding: 20px;
}
header .main-navbar .main-navbar-medium .main-navbar-medium-items .navbar-sidebar .navbar-sidebar-items ul {
    padding-right: 0 !important;
}
header .main-navbar .main-navbar-medium .main-navbar-medium-items .navbar-sidebar .navbar-sidebar-items ul li {
    border-bottom: 1px solid var(--light-color);
    padding: 8px;
}
header .main-navbar .main-navbar-medium .main-navbar-medium-items .navbar-sidebar .navbar-sidebar-items ul li:last-child {
    border: none;
}
header .main-navbar .main-navbar-medium .main-navbar-medium-items .navbar-sidebar .navbar-sidebar-items ul li a:hover {
    color: var(--theme-color);
}
header .main-navbar .main-navbar-medium .main-navbar-medium-items .navbar-sidebar .navbar-sidebar-items ul li ul {
    display: none;
}
header .main-navbar .main-navbar-medium .main-navbar-medium-items .navbar-sidebar .navbar-sidebar-items ul li ul li:last-child {
    border: none;
}
header a.menu-active {
    display: flex;
    justify-content: space-between;
}
header .show-main-medium-items {
    visibility: visible !important;
}
header .show-sub-menu {
    display: block !important;
}
header .rotate-svg {
    transform: rotate(180deg);
}
header li ul.menu-overflow {
    width: 100%;
    height: 250px;
    margin: 10px;
    padding: 10px;
    overflow-y: auto;
}
header .modal-body ul.menu-active {
    display: block !important;
}
header .modal-body ul.menu-active li a {
    margin: 10px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
header .modal-body ul.menu-active li a:hover {
    color: var(--theme-light-color) !important;
}

.btn {
    border: none;
}

ul {
    margin-bottom: 0 !important;
}

.btn-close-header {
    border-radius: var(--border-radius-2);
    border: none;
}

. {
    min-width: 220px;
    min-height: 220px;
    display: grid;
    place-content: center;
    --border-angle: 0turn;
    --main-bg: conic-gradient(
            from var(--border-angle),
            #ffffff,
            #ffffff,
            #ffffff,
            #ffffff
    );
    border: solid 2px transparent;
    border-radius: 2em;
    --gradient-border: conic-gradient(from var(--border-angle), transparent 25%, var(--theme-color));
    background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
    background-position: center center;
    animation: bg-spin 3s linear infinite;
}
@keyframes bg-spin {
    to {
        --border-angle: 1turn;
    }
}

@property --border-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}
.number-items {
    left: 40px;
    position: absolute;
    align-items: center;
    display: flex;
    height: 10px;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
}

.shape {
    background: linear-gradient(45deg, var(--primary) 0%, var(--secondary) 100%);
    animation: morph 8s ease-in-out infinite;
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    height: 25px;
    transition: all 1s ease-in-out;
    width: 25px;
    z-index: 5;
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
        background: linear-gradient(45deg, var(--primary) 0%, var(--secondary) 100%);
    }
    50% {
        border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
        background: linear-gradient(45deg, var(--third) 0%, var(--secondary) 100%);
    }
    100% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
        background: linear-gradient(45deg, var(--primary) 0%, var(--secondary) 100%);
    }
}
.header-user {
    font-size: 15px;
    position: relative;
}
.header-user .main-navbar-items {
    height: 50px;
    display: flex;
}
.header-user .main-navbar-items ul {
    padding-right: 0 !important;
}
.header-user .main-navbar-items ul li {
    display: inline-block;
    margin: 10px;
    position: relative;
}
.header-user .main-navbar-items ul li:hover ul {
    display: block;
}

footer {
    margin: 10px;
    background-color: var(--theme-light-color);
    border-radius: var(--border-radius-1);
    padding: 20px;
}
footer div.customer-service a {
    line-height: 1.5;
    display: block;
    margin: 20px;
}
footer form {
    width: 100%;
    position: relative;
}
footer form input.text-box {
    direction: rtl;
    width: 100%;
    padding: 10px;
    padding-left: 72px;
    box-shadow: var(--box-shadow-3);
    border-radius: var(--border-radius-2);
    border: none;
    margin-bottom: 10px;
}
footer form .btn-position {
    position: absolute;
    left: 5px;
    top: 4.6px;
}

div.A-symbol-of-trust {
    justify-content: start;
}
div.A-symbol-of-trust a {
    display: inline-block;
}
div.A-symbol-of-trust a img {
    width: 100%;
    margin-left: 20px;
}

img.logo-footer {
    width: 140px;
}

.shadow {
    box-shadow: var(--box-shadow-3);
}

.video video {
    width: 100%;
    border-radius: var(--border-radius-1);
}

.text-top-btn {
    position: absolute;
    top: 20px;
    right: 85px;
    border-radius: var(--border-radius-2);
    border-bottom-right-radius: 0;
}

.bg-product {
    background-image: url("../media/img/bg.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 65%;
    position: absolute;
    top: 20%;
    right: 0;
    z-index: -1;
    border-radius: var(--border-radius-1);
}

.bg-index {
    background-image: url("../media/img/bg2.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 80%;
    right: 0;
    width: 100%;
    height: 1000px;
    z-index: -10;
}

form.login {
    width: 350px;
    height: 390px;
    padding: 10px;
    margin: 100px auto;
    text-align: center;
    border-radius: var(--border-radius-1);
    box-shadow: var(--box-shadow-3);
}
form.login span {
    border-right: none !important;
    display: block;
    font-family: "IRANSans-light";
}
form.login div.text-form-footer {
    margin-top: 30px;
}
form.login input {
    border: 1px solid var(--theme-color);
    width: 100%;
    padding: 12px 40px 12px 12px;
    border-radius: var(--border-radius-2);
    margin-top: 50px;
    font-family: "IRANSans-light";
    overflow: hidden;
}
form.login a.btn {
    padding: 10px;
    margin-top: 45px;
}

.icon-mobile {
    position: absolute;
    top: 55px;
    right: 0;
}

.color-primary {
    color: var(--theme-medium-color);
}

.number {
    font-size: 20px;
    border: 2px solid #0abc89;
    border-radius: 7px;
    width: 35px;
    text-align: center;
    margin: 10px;
}

.product-cart {
    cursor: pointer;
    padding: 20px;
    margin-top: 40px;
    border-radius: var(--border-radius-1);
    box-shadow: var(--box-shadow-3);
}
.product-cart .img-1 {
    display: block;
}
.product-cart .img-2 {
    display: none;
    transition: all 1s ease;
}
.product-cart:hover .img-1 {
    display: none;
    transition: 0.5s ease;
}
.product-cart:hover .img-2 {
    display: block;
    transition: 0.5s ease;
}
.product-cart p {
    font-family: "IRANSans-light";
}
.product-cart img {
    border-radius: var(--border-radius-1) !important;
}

p.card-text .bg-light-danger, p.card-text .bg-light-warning {
    top: 10px;
    right: 10px;
}

.product-cart-overflow {
    height: 800px;
    overflow-y: auto;
    border-bottom: 1px solid var(--theme-light-color);
}

.box-action-product {
    z-index: 10;
    position: absolute;
    box-shadow: var(--box-shadow-3);
    border-radius: var(--border-radius-2);
    top: -20px;
    left: 30px;
    width: 9rem;
    background-color: #ebfbf7 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.box-action-product a {
    margin: 6px;
}

form.validation {
    width: 350px;
    height: 390px;
    padding: 10px;
    margin: 100px auto;
    text-align: center;
    border-radius: var(--border-radius-1);
    box-shadow: var(--box-shadow-3);
}
form.validation span {
    border-right: none !important;
    display: block;
    font-family: "IRANSans-light";
}
form.validation input {
    border: 1px solid var(--theme-color);
    width: 100%;
    padding: 10px;
    border-radius: var(--border-radius-2);
    margin-top: 70px;
    text-align: center;
}
form.validation div.text-validation-footer span {
    margin-top: 40px;
}
form.validation a.btn {
    padding: 10px;
    margin-top: 45px;
}

form.welcome {
    width: 400px;
    height: 280px;
    padding: 10px;
    margin: 100px auto;
    text-align: center;
    border-radius: var(--border-radius-1);
    box-shadow: var(--box-shadow-3);
    border: 1px solid var(--theme-light-color);
}
form.welcome span {
    border-right: none !important;
    display: block;
    font-family: "IRANSans-light";
    border-bottom: 1px solid var(--theme-light-color);
}
form.welcome a.btn {
    width: 90%;
    margin-top: 10px;
}

.brand {
    width: 10rem;
    height: 10rem;
    line-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.brand img {
    object-fit: contain;
    display: inline-block;
    overflow: hidden;
}

.brand-page {
    box-shadow: var(--box-shadow-3);
    border-radius: var(--border-radius-2);
    margin: 10px 10px;
    position: relative;
}
.brand-page:hover {
    background-color: var(--theme-light-color);
}
.brand-page img {
    height: 100%;
    margin-bottom: 60px;
    margin-top: 10px;
}
.brand-page span {
    position: absolute;
    bottom: 5px;
    right: 5px;
}

.brands-box {
    box-shadow: var(--box-shadow-3);
    border-radius: var(--border-radius-1);
    overflow: hidden;
    margin-top: 15px;
}

.img-product-single {
    width: 250px !important;
}

.line-head {
    height: 1px;
    background-color: var(--theme-light-color);
    flex-grow: 1;
    margin: 0 10px;
}

.action-product, .action-product-cart {
    box-shadow: var(--box-shadow-3);
    border-radius: var(--border-radius-2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    color: var(--light-color);
}

h6.text-muted {
    font-size: 10px;
}

.color-text {
    color: var(--theme-color) !important;
}

.feature {
    box-shadow: var(--box-shadow-3);
    border-radius: var(--border-radius-2);
    padding: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 2;
    margin-top: 10px;
}

h1.border-bottom-bold {
    line-height: 1.7;
}

.section-shopping {
    box-shadow: var(--box-shadow-3);
    border-radius: var(--border-radius-1);
    padding: 20px;
    line-height: 3;
    margin-top: 50px;
}

.shop {
    width: 100%;
    height: 190px;
    overflow-y: auto;
}
.shop .item-shop {
    border-bottom: 1px solid var(--theme-light-color);
}
.shop .item-shop:last-child {
    border: none;
}

nav {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 10px;
    z-index: 1000;
}

nav.scrollspy a.scrollspy {
    display: block;
    margin: 5px 10px;
    text-decoration: none;
}

nav.scrollspy a.scrollspy.active {
    font-family: "IRANSans-bold";
}

div.scrollspy {
    padding: 20px;
    line-height: 3;
    border-bottom: 1px solid var(--theme-light-color);
}
div.scrollspy:last-child {
    border: none;
}

section.scrollspy-style {
    box-shadow: var(--box-shadow-3);
    border-radius: var(--border-radius-1);
    margin-top: 10px;
    overflow: hidden;
}

.section-opinion input {
    width: 500px;
    border-radius: var(--border-radius-2);
    border: 1px solid var(--theme-light-color);
    padding-left: 10px;
    padding-right: 10px;
    display: block;
}

.section-opinion-users {
    margin-top: 20px;
    box-shadow: var(--box-shadow-3);
    padding: 10px;
    border-radius: var(--border-radius-2);
    line-height: 2;
}

#section5 {
    background-color: rgba(244, 249, 255, 0.89);
}

.section-question input {
    width: 500px;
    border-radius: var(--border-radius-2);
    border: 1px solid var(--theme-light-color);
    padding-left: 10px;
    padding-right: 10px;
    display: block;
}

.section-question-users {
    margin-top: 20px;
    box-shadow: var(--box-shadow-3);
    padding: 10px;
    border-radius: var(--border-radius-2);
}

.colors {
    display: flex;
    justify-content: start;
    align-items: center;
}
.colors .color1 {
    margin-left: 10px;
    background-color: #6f0fec;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-block;
}
.colors .color2 {
    margin-left: 10px;
    background-color: #3b82f6;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-block;
}
.colors .color3 {
    margin-left: 10px;
    background-color: #84cc16;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-block;
}
.colors .color4 {
    margin-left: 10px;
    background-color: #14b8a6;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-block;
}
.colors .color5 {
    margin-left: 10px;
    background-color: #ec0f4a;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-block;
}
.colors .color6 {
    margin-left: 10px;
    background-color: #f17721;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-block;
}

.article, .article-mini {
    position: relative;
    width: 300px;
    height: 256px;
    box-shadow: var(--box-shadow-4);
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 12px;
    gap: 12px;
    border-radius: var(--border-radius-2);
}
.article img, .article-mini img {
    width: 100%;
    height: 10rem;
    margin: auto;
    border-radius: var(--border-radius-2);
}

.article-mini img {
    width: 20rem;
    height: 15rem;
    margin: auto;
    border-radius: var(--border-radius-2);
}

.page-article {
    line-height: 2;
}

.box-web-log {
    margin-top: 20px;
    margin-right: 10px;
    padding: 10px;
    border-radius: var(--border-radius-1);
}

.img-fluid {
    border-radius: var(--border-radius-2);
}

.input-box-single-weblog {
    box-shadow: var(--box-shadow-4);
    border-radius: var(--border-radius-2);
    padding: 10px;
    width: 100%;
    border: none;
}

textarea {
    box-shadow: var(--box-shadow-4);
    border-radius: var(--border-radius-2);
    padding: 10px;
    width: 100%;
    border: none;
    height: 200px;
    margin-top: 20px;
    outline: none;
}

.web-log-box {
    box-shadow: var(--box-shadow-4);
    border-radius: var(--border-radius-1);
    padding: 10px;
    margin-top: 10px;
}

.category-page {
    box-shadow: var(--box-shadow-3);
    border-radius: var(--border-radius-2);
    margin: 10px 10px;
    position: relative;
}
.category-page:hover {
    background-color: var(--theme-light-color);
}
.category-page img {
    height: 100%;
    margin-bottom: 60px;
    margin-top: 10px;
}
.category-page span {
    position: absolute;
    bottom: 5px;
    right: 5px;
}

.category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--box-shadow-3);
    padding: 5px;
    border-radius: var(--border-radius-1);
}
.category:hover {
    transition: all 0.3s ease;
    background: linear-gradient(to right, #ffffff 29%, var(--theme-light-color) 100%);
}
.category div {
    font-size: 14px;
    padding: 10px;
    border-radius: var(--border-radius-2);
}
.category img {
    width: 8rem;
}

.mb-bb {
    margin-bottom: 10px;
}

form.contactus input {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    border: 1px solid var(--theme-light-color);
    border-radius: var(--border-radius-2);
    box-shadow: var(--box-shadow-3);
}
form.contactus textarea {
    border: 1px solid var(--theme-light-color);
    border-radius: var(--border-radius-2);
    margin-top: 40px;
    width: 100%;
    padding: 10px;
    height: 250px;
    outline: none;
    box-shadow: var(--box-shadow-3);
}

.buttons {
    position: relative;
    display: grid;
    place-items: center;
    height: fit-content;
    width: fit-content;
    transition: 0.3s;
    border-radius: 50%;
}

.buttons:hover {
    padding: 60px;
}

.buttons:hover .button-info {
    box-shadow: 5px 5px 12px #cacaca, -5px -5px 12px #ffffff;
}

.main-button {
    position: relative;
    display: grid;
    place-items: center;
    padding: 10px;
    border: none;
    background: #e8e8e8;
    box-shadow: 5px 5px 12px #cacaca, -5px -5px 12px #ffffff;
    border-radius: 50%;
    transition: 0.2s;
    z-index: 100;
}

.button-info {
    position: absolute;
    display: grid;
    place-items: center;
    padding: 10px;
    border: none;
    background: #e8e8e8;
    box-shadow: 5px 5px 12px rgba(202, 202, 202, 0), -5px -5px 12px rgba(255, 255, 255, 0);
    transition: 0.3s;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.discord-button:hover {
    background: #5865F2;
}

.buttons:hover .discord-button {
    translate: 70px 0px;
    box-shadow: 5px 5px 12px #cacaca, -5px -5px 12px #ffffff;
}

.twitter-button:hover {
    background: #1CA1F1;
}

.buttons:hover .twitter-button {
    translate: 47px -47px;
    box-shadow: 5px 5px 12px #cacaca, -5px -5px 12px #ffffff;
}

.reddit-button:hover {
    background: #FF4500;
}

.buttons:hover .reddit-button {
    translate: 0px -70px;
    box-shadow: 5px 5px 12px #cacaca, -5px -5px 12px #ffffff;
    z-index: 1000;
}

.messenger-button:hover {
    background: #0093FF;
}

.buttons:hover .messenger-button {
    translate: -47px -47px;
    box-shadow: 5px 5px 12px #cacaca, -5px -5px 12px #ffffff;
}

.pinterest-button:hover {
    background: #F0002A;
}

.buttons:hover .pinterest-button {
    translate: -70px 0px;
    box-shadow: 5px 5px 12px #cacaca, -5px -5px 12px #ffffff;
}

.instagram-button:hover {
    background: #F914AF;
}

.buttons:hover .instagram-button {
    translate: -47px 47px;
    box-shadow: 5px 5px 12px #cacaca, -5px -5px 12px #ffffff;
}

.snapchat-button:hover {
    background: #FFFC00;
}

.buttons:hover .snapchat-button {
    translate: 0px 70px;
    box-shadow: 5px 5px 12px #cacaca, -5px -5px 12px #ffffff;
}

.whatsapp-button:hover {
    background: #25D366;
}

.buttons:hover .whatsapp-button {
    translate: 47px 47px;
    box-shadow: 5px 5px 12px #cacaca, -5px -5px 12px #ffffff;
}

.social-networks {
    position: absolute;
    top: 115px;
    left: 20px;
}

.btn-commonquestions {
    text-align: center;
}

.search-categories {
    border-radius: var(--border-radius-1);
}
.search-categories .badge {
    text-align: start;
}
.search-categories span {
    color: var(--dark-color);
    display: block;
}
.search-categories div .items-categories {
    padding: 20px;
    font-size: 20px;
    width: 100%;
    height: 300px;
    overflow-y: auto;
}
.search-categories div .items-categories a {
    box-shadow: var(--box-shadow-4);
    border-radius: var(--border-radius-2);
    padding: 10px;
    font-size: 15px;
    margin-bottom: 10px;
    display: block;
    width: 100%;
}

button.active {
    box-shadow: var(--box-shadow-4) !important;
    background-color: var(--theme-color) !important;
    color: var(--theme-light-color) !important;
}

/* Support */
.support-box {
    top: 2rem;
    position: relative;
    bottom: 0;
    text-align: center;
    display: block;
}

.b-btn {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.form-control {
    margin-bottom: 10px;
    color: var(--theme-color);
}

.b-btn.paypal i {
    color: blue;
}

.b-btn:hover {
    text-decoration: none;
    font-weight: bold;
}

.b-btn i {
    font-size: 20px;
    color: yellow;
    margin-top: 2rem;
}

.style-search-right {
    border-radius: var(--border-radius-1);
    box-shadow: var(--box-shadow-3);
    padding: 10px;
}

.irs {
    position: relative;
    display: block;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.irs-line {
    position: relative;
    display: block;
    overflow: hidden;
    outline: none !important;
}

.irs-line-left, .irs-line-mid, .irs-line-right {
    position: absolute;
    display: block;
    top: 0;
}

.irs-line-left {
    left: 0;
    width: 11%;
}

.irs-line-mid {
    left: 9%;
    width: 82%;
}

.irs-line-right {
    right: 0;
    width: 11%;
}

.irs-bar {
    position: absolute;
    display: block;
    left: 0;
    width: 0;
}

.irs-bar-edge {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
}

.irs-shadow {
    position: absolute;
    display: none;
    left: 0;
    width: 0;
}

.irs-slider {
    position: absolute;
    display: block;
    cursor: default;
    z-index: 1;
}

.irs-slider.type_last {
    z-index: 2;
}

.irs-min {
    position: absolute;
    display: block;
    left: 0;
    cursor: default;
}

.irs-max {
    position: absolute;
    display: block;
    right: 0;
    cursor: default;
}

.irs-from, .irs-to, .irs-single {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    cursor: default;
    white-space: nowrap;
}

.irs-grid {
    position: absolute;
    display: none;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
}

.irs-with-grid .irs-grid {
    display: block;
}

.irs-grid-pol {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 8px;
    background: #000;
}

.irs-grid-pol.small {
    height: 4px;
}

.irs-grid-text {
    position: absolute;
    bottom: 0;
    left: 0;
    white-space: nowrap;
    text-align: center;
    font-size: 9px;
    line-height: 9px;
    padding: 0 3px;
    color: #000;
}

.irs-disable-mask {
    position: absolute;
    display: block;
    top: 0;
    left: -1%;
    width: 102%;
    height: 100%;
    cursor: default;
    background: rgba(0, 0, 0, 0);
    z-index: 2;
}

.lt-ie9 .irs-disable-mask {
    background: #000;
    filter: alpha(opacity=0);
    cursor: not-allowed;
}

.irs-disabled {
    opacity: 0.4;
}

.irs-hidden-input {
    position: absolute !important;
    display: block !important;
    top: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
    z-index: -9999 !important;
    background: none !important;
    border-style: solid !important;
    border-color: transparent !important;
}

/* Ion.RangeSlider, Simple Skin
// css version 2.0.3
// Â© Denis Ineshin, 2014    https://github.com/IonDen
// Â© guybowden, 2014        https://github.com/guybowden
// ===================================================================================================================*/
/* =====================================================================================================================
// Skin details */
.irs {
    height: 55px;
}

.irs-with-grid {
    height: 75px;
}

.irs-line {
    height: 10px;
    top: 33px;
    background: var(--theme-color);
    border-radius: 16px;
    -moz-border-radius: 16px;
}

.irs-line-left {
    height: 8px;
}

.irs-line-mid {
    height: 8px;
}

.irs-line-right {
    height: 8px;
}

.irs-bar {
    height: 10px;
    top: 33px;
    background: var(--theme-light-color);
}

.irs-bar-edge {
    height: 10px;
    top: 33px;
    width: 14px;
    border-right: 0;
    background: var(--theme-color);
    border-radius: 16px 0 0 16px;
    -moz-border-radius: 16px 0 0 16px;
}

.irs-shadow {
    height: 2px;
    top: 38px;
    background: var(--dark-color);
    opacity: 0.3;
    border-radius: 5px;
    -moz-border-radius: 5px;
}

.lt-ie9 .irs-shadow {
    filter: alpha(opacity=30);
}

.irs-slider {
    top: 25px;
    width: 27px;
    height: 27px;
    background: var(--theme-light-color);
    border-radius: 27px;
    -moz-border-radius: 27px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.irs-slider.state_hover, .irs-slider:hover {
    background: var(--light-color);
}

.irs-min, .irs-max {
    color: var(--dark-color);
    font-size: 12px;
    line-height: 1.333;
    text-shadow: none;
    top: 0;
    padding: 1px 5px;
    background: var(--theme-light-color);
    border-radius: 5px;
    -moz-border-radius: 5px;
}

.lt-ie9 .irs-min, .lt-ie9 .irs-max {
    background: var(--theme-light-color);
}

.irs-from, .irs-to, .irs-single {
    color: var(--light-color);
    font-size: 14px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    background: var(--theme-light-color);
    border-radius: 5px;
    -moz-border-radius: 5px;
}

.lt-ie9 .irs-from, .lt-ie9 .irs-to, .lt-ie9 .irs-single {
    background: var(--theme-light-color);
}

.irs-grid {
    height: 27px;
}

.irs-grid-pol {
    opacity: 0.5;
    background: var(--theme-color);
}

.irs-grid-pol.small {
    background: var(--theme-light-color);
}

.irs-grid-text {
    bottom: 5px;
    color: var(--theme-light-color);
}

.profile {
    width: 190px;
    height: 254px;
    border-radius: 15px;
    -webkit-box-shadow: 1px 5px 60px 0px rgba(16, 10, 136, 0.4196078431);
    box-shadow: var(--box-shadow-3);
    margin: auto;
}

.profile .profile-border-top {
    width: 60%;
    height: 3%;
    background: #6b64f3;
    margin: auto;
    border-radius: 0px 0px 15px 15px;
}

.profile span {
    color: var(--dark-color);
    text-align: center;
    display: block;
    padding-top: 10px;
    font-size: 16px;
}

.profile .profile-name {
    color: var(--dark-color);
    display: block;
    text-align: center;
    padding-top: 3px;
    font-size: 12px;
}

.profile .img-profile {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: auto;
    margin-top: 25px;
}

.profile button:hover {
    background: #534bf3;
}

.box-address {
    border-top: 1px solid var(--theme-color);
    border-bottom: 1px solid var(--theme-color);
    padding: 10px;
    display: block;
}

.box-user-activities {
    padding: 10px;
    display: flex;
    justify-content: start;
    align-items: center;
    border-radius: var(--border-radius-1);
}

.box-orders {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--box-shadow-4);
    padding: 0 7px;
    margin: 10px 0;
    border-radius: var(--border-radius-2);
}
.box-orders small, .box-orders .one {
    color: #fb923c;
    display: inline;
    padding: 8px 14px;
    margin: 5px 10px 5px 0;
    background-color: #ffedd5;
    border-radius: 50px 50px/20px 20px;
}
.box-orders small, .box-orders .two {
    color: #f43f5e;
    display: inline;
    padding: 8px 14px;
    margin: 5px 10px 5px 0;
    background-color: #ffe4e6;
    border-radius: 50px 50px/20px 20px;
}
.box-orders small, .box-orders .three {
    color: #14b8a6;
    display: inline;
    padding: 8px 14px;
    margin: 5px 10px 5px 0;
    background-color: #ccfbf1;
    border-radius: 50px 50px/20px 20px;
}
.box-orders small, .box-orders .four {
    color: #2a7cf8;
    display: inline;
    padding: 8px 14px;
    margin: 5px 10px 5px 0;
    background-color: #dceaff;
    border-radius: 50px 50px/20px 20px;
}
.box-orders small, .box-orders .five {
    border-radius: 50px 50px/20px 20px;
    background: #e3e1ff;
    color: #150df8;
    display: inline;
    padding: 8px 14px;
    margin: 5px 10px 5px 0;
}

.box-features-panel-user {
    background-color: var(--theme-light-color);
    padding-top: 60px !important;
    padding: 10px;
    border-radius: var(--border-radius-1);
    font-family: "IRANSans-light";
    font-size: 16px;
    line-height: 2.5;
    margin: 10px;
}
.box-features-panel-user div.section-user svg {
    position: absolute;
    top: -60px;
    right: 5px;
}
.box-features-panel-user div.section-user img {
    position: absolute;
    top: -70px;
    right: 66px;
    width: 50px;
    z-index: 20;
}
.box-features-panel-user a {
    border-bottom: 1px solid var(--light-color);
    display: flex;
    justify-content: space-between;
    position: relative;
    transition-duration: 0.3s;
    transition-property: transform;
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.box-features-panel-user a:last-child {
    border: none;
    color: #f41e57;
}
.box-features-panel-user a:hover {
    transform: translateY(-3px);
}

.user-information-show {
    padding: 5px 10px 5px 10px;
    border-radius: var(--border-radius-2);
    margin: 10px 0 10px 0;
    display: inline-block;
}

.user-information span {
    line-height: 2;
}
.user-information input {
    border: none;
    width: 100%;
    border-radius: var(--border-radius-2);
    padding: 8px;
    box-shadow: var(--box-shadow-4);
    color: var(--dark-color);
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
}

.style-section-opinion-users {
    height: 500px;
    overflow-y: auto;
    border: 1px solid var(--theme-light-color);
    padding: 10px;
    border-radius: var(--border-radius-2);
}

.table-orders tr {
    width: 500px;
}

.overflow-tb {
    max-height: 400px;
    overflow: auto;
}

.text-label {
    background-color: var(--theme-light-color);
    padding: 5px;
    font-size: 13px;
    border-radius: var(--border-radius-2);
    position: absolute;
    top: 0;
    right: 25px;
}

.back-address {
    z-index: -10;
}

.size-back-address {
    width: 350px;
}

.box-payment {
    box-shadow: var(--box-shadow-3);
    margin: 10px;
    border-radius: var(--border-radius-1);
    padding: 20px;
}

.input-payment {
    width: 100%;
    border: 1px solid var(--theme-light-color);
    border-radius: var(--border-radius-2);
    padding: 10px;
}

.btn-payment {
    position: absolute;
    top: 5px;
    left: 5px;
    bottom: 5px;
}

.form-wallet .form-wallet-item {
    display: flex;
    justify-content: start;
    gap: 20px;
    align-items: center;
    box-shadow: var(--box-shadow-3);
    padding: 10px;
    border-radius: var(--border-radius-2);
    margin: 20px;
}

.time a {
    background-color: var(--dark-color);
    border-radius: var(--border-radius-2);
    box-shadow: var(--box-shadow-3);
    padding: 10px;
    display: flex;
    justify-content: space-between;
}
.time a div {
    color: var(--light-color);
}

.mx-w {
    margin-right: 20px;
}

.m-b {
    margin-top: 10px;
    margin-right: 38px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--light-color);
    width: 320px;
    box-shadow: var(--box-shadow-3);
    z-index: 900;
    left: 0;
    border-radius: var(--border-radius-2);
    padding: 10px;
    height: 500px;
    overflow-y: auto;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.box-error {
    position: relative;
}
.box-error .bg-error-danger {
    border-radius: 10px;
    position: absolute;
    top: -270px;
    right: 20%;
    left: 20%;
    z-index: 90;
}

.bg-error-danger {
    padding-right: 20px;
    position: absolute;
    top: -270px;
    --bs-bg-opacity:1;
    background-color: #f43f5e !important;
    color: #ffe4e6;
    border-radius: 10px;
    z-index: 10;
}

.bg-error {
    position: absolute;
    top: -260px;
    right: 22.8%;
    left: 22.8%;
    height: 60px;
    --bs-bg-opacity:1;
    background-color: #fda4af !important;
    border-radius: 10px;
    z-index: 3;
}

.empty-error {
    margin-top: 260px;
    position: relative;
}

.items-shopping-cart {
    position: absolute;
    top: -2px;
    right: -4px;
}

.error-backGround {
    display: flex;
    justify-content: center;
    margin-top: 200px;
    margin-bottom: 200px;
}
.error-backGround h1 {
    font-size: 80px !important;
}
.error-backGround h5 {
    color: var(--theme-color) !important;
    text-align: center;
    font-size: 25px !important;
}

.loc-error {
    position: absolute;
    top: 160px;
    right: 19%;
}

.address-input {
    border-bottom: 1px solid var(--theme-color);
    border-top: none;
    border-right: none;
    border-left: none;
    width: 100%;
    padding: 10px;
    outline: none;
}

@media screen and (max-width: 1025px) {
    header .main-navbar .main-navbar-medium {
        display: flex;
    }
    header .main-navbar .main-navbar-desktop {
        display: none;
    }
}
@media screen and (max-width: 709px) {
    .scrollspy {
        display: block;
    }
}
@media screen and (max-width: 550px) {
    .text-box {
        width: 100% !important;
    }
}
@media screen and (max-width: 1025px) {
    .group-search-box-medium {
        width: 50% !important;
    }
}
@media screen and (max-width: 700px) {
    .group-search-box-medium {
        width: 90% !important;
    }
    .back-ground-search {
        left: 13px !important;
        right: 13px !important;
    }
}
@media screen and (max-width: 1200px) {
    div.support {
        display: inline-block !important;
    }
    div.support a {
        width: 30%;
    }
}
@media screen and (max-width: 768px) {
    div.support {
        display: inline-block !important;
    }
    div.support a {
        width: 40%;
    }
}
@media screen and (max-width: 538px) {
    div.support {
        display: inline-block !important;
    }
    div.support a {
        width: 50%;
    }
}
@media screen and (max-width: 438px) {
    div.support {
        display: inline-block !important;
    }
    div.support a {
        width: 100%;
    }
}
@media screen and (max-width: 1100px) {
    .mySwiper-product .swiper-pagination, .mySwiper-categories .swiper-pagination, .mySwiper-brands .swiper-pagination {
        display: none !important;
    }
}
.banner img {
    width: 100%;
    height: 100%;
}

img.banner2 {
    width: 100%;
    height: 100%;
}

img.banner3 {
    width: 100%;
    height: 100%;
}

img.categories-brands {
    width: 368px;
    height: 116px;
}

:root {
    --theme-color: #6f1efd;
    --theme-medium-color: #6f4dfa;
    --theme-light-color: #f8f3ff;
    --dark-color: rgb(7, 3, 40);
    --light-color: #ffffff;
    --border-radius-1: 20px;
    --border-radius-2: 10px;
    --box-shadow-1: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    --box-shadow-2: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
    --box-shadow-3: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    --box-shadow-4: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    --primary: #88D5BF;
    --secondary: #5D6BF8;
    --third: #e27fcb;
}

