//@font-face {
    //font-family: light;
    //src: url(../fonts/light.eot);
   // src: url(../fonts/light.eot?#iefix) format('embedded-opentype'), url(../fonts/light.otf) format('otf'), url(../fonts/light.svg#light) format('svg'), url(../fonts/light.ttf) format('truetype'), url(../fonts/light.woff) format('woff'), url(../fonts/light.woff2) format('woff2')
//}

//@font-face {
//  font-family: regular;
//  src: url(../fonts/regular.eot);
//  src: url(../fonts/regular.eot?#iefix) format('embedded-opentype'), url(../fonts/regular.otf) format('otf'), url(../fonts/regular.woff2) format('woff2'), url(../fonts/regular.woff) format('woff'), url(../fonts/regular.ttf) format('truetype'), url(../fonts/regular.svg#regular) format('svg')
//}

//@font-face {
//  font-family: bold;
//  src: url(../fonts/bold.eot);
//  src: url(../fonts/bold.eot?#iefix) format('embedded-opentype'), url(../fonts/bold.otf) format('otf'), url(../fonts/bold.svg#bold) format('svg'), url(../fonts/bold.ttf) format('truetype'), url(../fonts/bold.woff) format('woff'), url(../fonts/bold.woff2) format('woff2')
//}

//@font-face {
//   font-family: extra-bold;
//  src: url(../fonts/extra-bold.eot);
//  src: url(../fonts/extra-bold.eot?#iefix) format('embedded-opentype'), url(../fonts/extra-bold.otf) format('otf'), url(../fonts/extra-bold.svg#extra-bold) format('svg'), url(../fonts/extra-bold.ttf) format('truetype'), url(../fonts/extra-bold.woff) format('woff'), url(../fonts/extra-bold.woff2) format('woff2')
//}




:root {
    --icon-color: #242424;
    --border-radius: 7px;
    --sidebar-size: 280px;
    --loading-icon-color: #7f8c8d;
    --green-popup-bg-color: #41c3b4;
    --green-popup-boxshadow: 0 5px 20px rgba(65, 195, 180, 0.3);
    --green-popup-text-color: white;
    --red-popup-bg-color: rgba(201, 23, 9, 0.95);
    --red-popup-boxshadow: 0 5px 20px rgba(201, 23, 9, 0.3);
    --red-popup-text-color: white;
    --green-and-red-popup-close-btn-bg-color: rgba(255, 255, 255, 0.2);
    --green-and-red-popup-close-btn-text-color: white;
    --chat-send-btn-icon-color: #41c3b4;
    --chat-green-btn-hover-border-color: rgba(65, 195, 180, 1);
    --chat-red-btn-hover-border-color: rgba(201, 23, 9, 1);
    --success-btn: #00A592;
    --edit-btn: #d99058;
    --show-btn: #1c39bb;
    --delete-btn: #c81d11;
    --disable-btn: #aaa;
    --red-color: #c81d11;
    --orange-color: #d99058;
    --green-color: #00A592;
    --blue-color: #1c39bb;
    --purple-color: #32127a;
    --rose-color: #ed269d;
    --pink-color: #f77fbe;
    --plum-color: #701c1c;
    --shahkar-light-font-style: 'ShahkarFontlight', serif;
    --shahkar-regular-font-style: 'ShahkarFontregular', serif;
    --shahkar-bold-font-style: 'ShahkarFontbold', serif;
    --shahkar-extra-bold-font-style: 'ShahkarFontextra-bold', serif;
}

body {
    height: 100vh;
    font-size: 16px;
    direction: rtl;
    background: var(--dashboad-bg-color) !important;
    font-family: var(--shahkar-regular-font-style);
}

* {
    border: none;
    outline: 0;
    margin: 0;
    padding: 0;
    transition: all 0.3;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}

.chat-box .chat-title span:first-child, button {
    font-family: var(--shahkar-bold-font-style);
}

a {
    text-decoration: none !important
}

.icon {
    fill: var(--icon-color);
    width: 24px
}

.limit-text {
    width: 50%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.dashboard aside, .pop {
    position: fixed;
    overflow-y: auto
}

.dashboard-links ul li.has-sub .submenu, .hide-icon, .notification-box .notification .notification-text, .profile-setting .setting-body .tab-body {
    display: none
}

.shahkar-score-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--shahkar-score-box-border-color);
    margin: 20px;
    padding: 12px 10px;
    border-radius: 8px;
}


.shahkar-score{
    display: flex;
    align-items: center;
}

.shahkar-score-page-top{
    display: flex;
}
.shahkar-score-page-colored-paper-box {
    width: 300px;
    margin-left: 20px
}
.shahkar-score-page-top-left{
    width: calc(100% - 300px);
}

.shahkar-score-box-text{
    color: var(--shahkar-score-box-text-color);
        font-family: var(--shahkar-bold-font-style)
}

.shahkar-score-number{
    color: var(--primary-color);
        background: var(--shahkar-score-box-score-bg-color);
        padding: 0 5px;
        border-radius: 5px;
        font-size: .7em
}

.shahkar-score-box-icon {
    width: 20px;
    height: 20px;
    margin-left: 5px;
    fill: var(--primary-color);
}

.shahkar-score-box:hover .shahkar-score-box-icon {
    animation: scoreAnimation 1s infinite;
}

@keyframes scoreAnimation {
    50% {
        transform: scale(1.2);
    }
}

.shahkar-score-box:before {
    content: '';
    position: absolute;
    width: 10px;
    right: -5px;
    height: 25px;
    border-radius: 10px;
    background: var(--primary-color);
}



.cover-loading {
    background-color: var(--loading-bg-color);
    z-index: 10;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: 1s
}

.cover-loading img {
    animation: 1s infinite blinkLogo;
    transition: opacity .5s;
    opacity: 0
}

.loading-spinner {
    width: 20px;
    animation: 1s linear infinite spin;
    fill: var(--loading-icon-color);
    display: none;
    margin-left: 5px
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

.submit-btn:disabled {
    background-color: var(--disable-btn-bg-color);
    color: var(--disable-btn-color);
    cursor: not-allowed
}

.pop .pop-close, .pop .pop-text {
    color: var(--popup-close-btn-text-color)
}

.blur-cover {
    position: fixed;
    background: rgba(0, 0, 0, .8);
    z-index: 4;
    visibility: visible
}

.form_popup {
    width: 300px;
    background: var(--box-color);
    color: var(--popup-text-color);
    position: fixed;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 9999 !important;
    padding: 20px;
  	max-height: 90%;
	overflow-y: scroll
}

.shahkar-medium-popup {
    width: 768px;
}

.top_form_popup {
    display: flex;
    justify-content: end;
}

.top_form_popup svg.close {
    fill: var(--black-icon);
    width: 25px;
    height: 25px;
}

.top_form_popup_close {
    display: flex;
    flex-direction: end;
    align-items: center;
}

.open_form_popup {
    display: inline-flex;
    align-items: center;
    padding: 0 5px;
    margin-right: 5px;
    border-radius: 5px;
    cursor: pointer;
}

.editable_input {
    display: flex;
    align-items: center;
}

.open_form_popup .edit_txt {
    color: red !important;
    margin-right: 5px
}

.open_form_popup svg {
    width: 15px;
    height: 15px;
    fill: red;
}

.birthday {
    display: flex;
    flex-direction: row-reverse;
    color: var(--black-color);
}

.birthday_date {
    display: flex;
    flex-direction: column;
    width: 100px;
    height: 150px;
    overflow-y: scroll;
    text-align: center;
    margin: 0 3px;
    border: 1px solid rgba(100, 100, 100, 0.3);
    border-radius: 5px;
}

.birthday_date span {
    padding: 5px 0;
    cursor: pointer;
    margin: 5px;
    border-radius: 10px;
}

.birthday_date span.active {
    color: var(--primary-color) !important;
    background: var(--dashboard-menu-down-icon-bg-color);
}

.birthday-inputs {
    width: calc(50% - 10px);
}

.birthday-inputs select {
    width: 30%;

}

.pop {
    z-index: 1001;
    border: 1px solid var(--popup-border-color);
    color: var(--popup-text-color);
    width: 500px;
    padding: 10px;
    top: 50%;
    left: 50%;
    max-height: 500px;
    transform: translate(-50%, -50%);
    background: var(--popup-bg-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .3);
    visibility: hidden;
    opacity: 0
}

.pop .pop-text {
    font-size: .8em;
    text-align: justify;
    line-height: 2em;
    padding: 0 10px
}

.pop .pop-close {
    display: flex;
    width: 100%;
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 5px;
    background: var(--popup-close-btn-color);
    cursor: pointer;
    justify-content: center
}

.pop img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 5px;
    text-align: center
}

.green-pop {
    background: var(--green-popup-bg-color);
    box-shadow: var(--green-popup-boxshadow);
    border: 1px solid transparent !important;
    color: var(--green-popup-text-color)
}

.green-pop .pop-close, .red-pop .pop-close {
    background: var(--green-and-red-popup-close-btn-bg-color);
    text-align: center;
    padding: 10px;
    color: var(--green-and-red-popup-close-btn-text-color);
    font-family: var(--shahkar-bold-font-style);
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer
}

.green-pop .pop-text, .red-pop .pop-text {
    padding: 5px 20px 0;
    text-align: center;
    color: #fff
}

.red-pop {
    background: var(--red-popup-bg-color);
    box-shadow: var(--red-popup-boxshadow);
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--red-popup-text-color)
}

.popup-show {
    display: block;
    opacity: 1;
    visibility: visible
}

.pop-status-text {
    font-family: var(--shahkar-extra-bold-font-style);
    font-size: .9em;
    text-align: center
}

.pop-icon {
    display: flex;
    justify-content: center
}

.green-pop .pop-icon svg, .red-pop .pop-icon svg {
    fill: white
}

.pop-icon svg {
    width: 50px;
    margin-bottom: 10px;
    fill: var(--popup-icon-color)
}

::-webkit-scrollbar {
    width: 5px;
    height: 0
}

::-webkit-scrollbar-track {
    background: #ddd;
    border-radius: 5px;
    margin-top: 5px
}

::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 5px
}

.blur-cover, .cover-loading {
    left: 0;
    opacity: 1;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1000 !important;
}

.dashboard-links ul li a .submenu-icon, .filter-box .filter span:last-child, table.custom-table thead {
    background: var(--dashboard-menu-down-icon-bg-color)
}

.shahkar-active-link {
    background: var(--shahkar-hover-menu-bg-color);
}

.shahkar-active-link svg,
.shahkar-active-link {
    fill: var(--primary-color);

}

.shahkar-active-link .link {
    color: var(--primary-color) !important;
}

.dashboard *:focus {
    outline: none !important;
}

.dashboard * {
    /*box-sizing: unset !important;*/
}

.dashboard-links ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}


.dashboard aside {
    top: 0;
    bottom: 0;
    width: var(--sidebar-size);
    min-height: 100vh;
    background: var(--box-color);
    display: flex;
    flex-direction: column
}

.dashboard aside .website-logo {
    display: flex;
    justify-content: center;
    margin: 20px 0
}

.dashboard aside .website-logo img {
    width: auto;
    max-width: 100px;
    margin-top: 20px
}

.dashboard-links ul li a.link-box {
    display: flex;
    justify-content: space-between;
    padding: 7px 10px;
    align-items: center;
    margin: 0 20px;
    font-size: .9em;
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    transition: .1s
}

.dashboard-links ul li a.link-box:hover {
    background: var(--shahkar-hover-menu-bg-color);
}

.dashboard-links ul li a.link-box:hover .link-icon , .dashboard-links ul li a.link-box:hover .link{
    fill:var(--primary-color);
    color:var(--primary-color);
}

.active-link {
    background: var(--shahkar-hover-menu-bg-color);
}

.active-link .link{
    color: var(--primary-color) !important;
}

.dashboard-links ul li a .submenu-icon {
    width: 8px;
    height: 8px;
    padding: 5px;
    border-radius: 5px;
    fill: var(--dashboard-menu-down-icon-color);
    transition: all .3s
}

.submenu-icon-rotate {
    transform: rotate(180deg)
}

.dashboard-links ul li a .link {
    display: flex;
    font-family: var(--shahkar-bold-font-style);
    align-items: center;
    fill: var(--dashboard-menu-icon-color);
    margin: 5px 0;
    color: var(--dashboard-menu-link-color);
    transition:all .3s;
}

.dashboard-links ul li a .link .logout-text {
    color: var(--red-color)
}

.dashboard-links ul li a .link .link-icon {
    width: 20px;
    margin-left: 7px
}

.dashboard-links ul li a .link .logout-icon {
    fill: var(--red-color)
}

.dashboard-links ul li.has-sub .submenu li a {
    font-size: .8em;
    padding: 7px 60px 7px 31px;
    display: flex;
    justify-content: space-between;
    color: var(--dashboard-submenu-text-color)
}

.dashboard-links ul li.has-sub .submenu li a .counter {
    background: var(--primary-color);
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dashboard-counter-text-color);
    border-radius: 5px;
    font-size: .9em;
    font-family: var(--shahkar-bold-font-style);
}

.dashboard-links ul li.has-sub .submenu li a:hover {
    color: var(--dashboard-submenu-hover-color)
}

.break {
    width: 90%;
    height: 1px;
    margin: 5px auto;
    background: rgba(200, 200, 200, .2)
}

.index-dashboard {
    margin-bottom: 20px
}

.single-notification {
    display: flex;
    align-items: center;
    font-family: var(--shahkar-bold-font-style);
    border-radius: 7px;
    background: var(--primary-color);
    font-size: .9em;
    padding: 10px;
    margin: 20px 0;
    color: var(--single-notification-text-color)
}

.single-notification .icon {
    margin-left: 7px;
    fill: var(--single-notification-icon-color)
}

.single-banner img {
    max-width: 100%;
    border-radius: 7px;
    margin-bottom: 10px
}

.multi-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start
}

.multi-column .col {
    padding: 0 15px;
    flex: 1;
    border-left: 1px solid var(--dashboard-col-border-color);
    position: relative
}

.col .notification-list .notification-item:last-child, .col .save-cart-box .cart-products .product:last-child, .col .ticket-list .ticket:last-child, .multi-column .col:last-child, .order-box .order-item:last-child, table.custom-table tr:last-child {
    border: none
}

.multi-column .col .col-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--shahkar-extra-bold-font-style);
    margin-bottom: 10px;
    color: var(--col-title-color)
}

.multi-column .col .show-more {
    text-align: center;
    border-radius: 7px;
    font-family: var(--shahkar-bold-font-style);
    font-size: .65em;
    display: flex;
    color: var(--dashboard-show-more-icon-color);
    padding: 3px;
    align-items: center;
    justify-content: center
}

.multi-column .col .empty-col {
    background: var(--dashboard-empty-col-bg-color);
    font-family: var(--shahkar-bold-font-style);
    font-size: .7em;
    margin-top: 10px;
    color: var(--dashboard-empty-col-text-color);
    padding: 20px 0;
    text-align: center;
    border-radius: 7px
}

.multi-column .col .disable-show-more {
    color: var(--dashboard-disable-show-more-icon-color)
}

.multi-column .col .show-more .icon {
    width: 13px;
    margin-left: 5px;
    fill: var(--dashboard-show-more-icon-color)
}

.multi-column .col .disable-show-more .icon {
    fill: var(--dashboard-disable-show-more-icon-color)
}

.col .save-cart-box .cart-products {
    display: flex;
    flex-wrap: wrap
}

.col .save-cart-box .cart-products .product {
    display: flex;
    align-items: center;
    font-family: var(--shahkar-bold-font-style);
    width: 100%;
    font-size: .7em;
    padding: 10px 0;
    color: var(--product-name-color);
    border-bottom: 1px solid rgba(200, 200, 200, .3)
}

.col .save-cart-box .cart-products .product .limit-text {
    width: auto
}

.col .notification-list .notification-item:hover, .col .save-cart-box .cart-products .product:hover, .col .ticket-list .ticket:hover {
    background: rgba(200, 200, 200, .1)
}

.col .save-cart-box .cart-products .product .order-number {
    font-family: var(--shahkar-regular-font-style);
    border-radius: 5px;
    color: #696969;
    font-size: .8em;
    margin-top: 5px
}

.col .save-cart-box .cart-products .product .product-img img {
    width: 50px;
    margin-left: 15px;
    display: flex;
    height: 50px;
    border-radius: 50px;
    margin-right: 10px
}

.col .notification-list .notification-item, .col .ticket-list .ticket {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(200, 200, 200, .3);
    padding: 5px 0;
    font-size: .8em
}

.col .notification-list .notification-item .notification-title, .col .ticket-list .ticket .ticket-title {
    font-size: .9em;
    font-family: var(--shahkar-bold-font-style);
    color: var(--product-name-color)
}

.shahkar-slideshow-container-desktop, .shahkar-slideshow-container-mobile {
    width: 100%;
    position: relative;
    margin: 0 auto 15px auto;
}

.shahkar-Containers-desktop img, .shahkar-Containers-mobile img {
    border-radius: 10px;
    width: 100%;
}

.shahkar-Containers-mobile, .shahkar-Containers-desktop {
    display: none;
}

.shahkar-Containers-mobile img.shahkar_mobile_slider {
    display: none;
}

.shahkar-slider-fade {
    -webkit-animation-name: shahkar_slider_fade;
    -webkit-animation-duration: 1.4s;
    animation-name: shahkar_slider_fade;
    animation-duration: 1.4s;
}

@-webkit-keyframes shahkar_slider_fade {
    from {
        opacity: .5
    }
    to {
        opacity: 2
    }
}

@keyframes shahkar_slider_fade {
    from {
        opacity: .5
    }
    to {
        opacity: 2
    }
}

.dashboard main {
    width: calc(100% - var(--sidebar-size));
    padding: 20px;
    margin-right: var(--sidebar-size);
    box-sizing: border-box
}

.dashboard main .breadcrumb {
    background: var(--box-color);
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    font-size: .7em
}

.dashboard main .main-header, .filter-box {
    margin-bottom: 20px;
    display: flex;
    background: var(--box-color)
}

.dashboard main .breadcrumb a {
    color: var(--breadcrumb-link-color)
}

.dashboard main .breadcrumb span {
    color: var(--breadcrumb-span-color);
    margin-right: 5px
}

.dashboard main .breadcrumb a:hover {
    color: var(--breadcrumb-link-hover-color)
}

.dashboard main .breadcrumb a:after {
    content: '';
    background: url('../icons/dashboard/icons8_back.svg');
    width: 7px;
    height: 7px;
    margin: 0 5px;
    display: inline-block
}

.filter-box {
    border-radius: 7px;
    overflow-y: hidden;
    white-space: nowrap
}

.filter-box .filter {
    display: inline-flex;
    min-width: fit-content;
    justify-content: space-between;
    border-left: 1px solid var(--dashboard-menu-down-icon-bg-color);
    padding: 10px;
    font-size: .8em;
    color: var(--table-th-text-color);
    align-items: center;
    border-bottom: 4px solid var(--dashboard-menu-down-icon-bg-color)
}

.filter-box .active-filter {
    border-bottom: 4px solid var(--primary-color)
}

.filter-box .filter:last-child {
    border-left: none
}

.filter-box .filter span:last-child {
    width: 20px;
    color: var(--primary-color);
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 35px
}

.dashboard main .main-header {
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius: var(--border-radius)
}

.dashboard main .main-header .profile {
    display: flex;
    color: var(--profile-text-color);
    /*flex-direction: column;*/
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    position: relative
}

.dashboard main .main-header .profile img.profile-img {
    width: 30px;
    height: 30px;
    border-radius: 30px
}

.chat-box .chat-body .receiver .user-profile, .chat-box .chat-body .sender .user-profile, .chat-box .chat-body .user-message .voice-div, .dashboard main .main-header .profile .display-name, .notification-box .notification .notification-right {
    display: flex;
    align-items: center;
}

.dashboard main .main-header .profile .display-name {
    cursor: pointer;
}

.shahkar-change-language-box {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-left: 10px;
}

.shahkar-language-flag {
    width: 30px;
    height: 30px;
}

.shahkar-lang-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.shahkar-lang-item .shahkar-language-flag {
    margin-left: 10px;
}

.shahkar_loader_cover {
    position: absolute;
    border-radius: var(--box-border-radius);
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    bottom: 0;
    background: var(--box-color);
    z-index: 99999;
    display: none;
}

.shahkar_loader {
    -webkit-animation: spin .5s linear infinite;
    animation: spin .5s linear infinite;
    border: 5px solid var(--primary-color-bg-wave);
    border-top-color: var(--primary-color);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    margin-bottom: 10px;
}

.dashboard main .main-header .profile .profile-dropdown, .shahkar-dropdown-box {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    border-radius: 5px;
    background: var(--profile-dropdown-box-bg-color);
    border: 1px solid var(--profile-dropdown-box-border-color);
    width: 200px;
    max-width: 200px;
    z-index: 10000
}

.shahkar-profile-username {
    text-align: center;
    font-size: .9em;
    font-family: var(--shahkar-bold-font-style);
    margin-bottom: 20px;
}

.dashboard main .main-header .profile .profile-dropdown .dropdown, .shahkar-dropdown-box .dropdown {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.shahkar-dropdown-box {
    width: fit-content;
    padding: 5px 10px;
}

.dashboard main .main-header .profile .profile-dropdown .dropdown .logout {
    background: var(--red-color);
    color: var(--btn-text-color);
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    padding: 7px 0;
    text-align: center;
    border-radius: 5px
}

.dashboard main .main-header .profile .profile-dropdown .dropdown a, .shahkar-dropdown-box .dropdown {
    font-size: .8em;
    padding: 5px 0;
    color: var(--profile-dropdown-box-text-color)
}

.dashboard main .main-header .profile .profile-dropdown .dropdown a:hover, .shahkar-dropdown-box .dropdown a:hover {
    opacity: .8
}

.dashboard main .main-header .profile .dropdown-icon {
    width: 7px;
    padding: 5px;
    margin-right: 10px;
    background: var(--profile-dropdown-icon-bg-color);
    fill: var(--profile-dropdown-icon-color);
    border-radius: 5px;
    height: 7px
}

.dashboard main .main-header .profile .display-name span, .profile-setting .setting-body .qr-code-box .qr-help .help-des, table.custom-table td {
    font-size: .8em
}

.dashboard main .main-header .quick-access, .wallet .wallet-charge .charge-form .payment-gateway .gateways {
    display: flex
}

.dashboard main .main-header .quick-access .access {
    display: flex;
    align-items: center;
    padding: 10px 5px;
    position: relative;
    font-size: .8em;
    transition: .1s;
    margin-right: 10px;
    color: var(--quick-access-text-color)
}

.dashboard main .main-header .quick-access .access:first-child {
    border-right: none;
    margin-right: 0
}

.dashboard main .main-header .quick-access .access .icon {
    margin-left: 5px;
    fill: var(--quick-access-icon-color)
}

.dashboard main .main-header .quick-access .access .counter {
    background: var(--primary-color);
    color: var(--dashboard-counter-text-color);
    border-radius: 5px;
    position: absolute;
    right: -15px;
    top: 3px;
    border: 2px solid var(--dashboard-counter-border-color);
    width: 17px;
    height: 17px;
    display: flex;
    justify-content: center;
    font-family: var(--shahkar-bold-font-style);
    align-items: center;
    font-size: .9em;
    margin-right: 10px
}

.dashboard main .main-body {
    background: var(--box-color);
    border-radius: var(--border-radius);
    padding: 20px;
  	height:80%;
  	overflow-y:auto;
}

.dashboard main .main-body .body-title {
    font-size: 1.05em;
    color: var(--body-title-color);
    font-family: var(--shahkar-extra-bold-font-style);
}

.dashboard main .main-body .body-des {
    font-size: .8em;
    color: var(--body-des-color);
    margin: 5px 0 20px
}

.shahkar-empty-data {
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column !important;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px
}

table.custom-table {
    border-collapse: collapse;
    border-radius: 10px;
    padding: 0;
    width: 100%;
    table-layout: fixed
}

.price-unit, table.custom-table .price-unit {
    font-size: .75em;
    color: var(--price-unit-color)
}

table.custom-table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em
}

table.custom-table tr {
    padding: .35em;
    border-bottom: 1px dashed var(--table-tr-border-color)
}

table.custom-table td, table.custom-table th {
    padding: .8em;
    text-align: right;
    color: var(--table-th-text-color)
}

table.custom-table th {
    font-size: .9em;
    color: var(--table-th-text-color);
    font-family: var(--shahkar-bold-font-style);
    font-weight: 400
}

.panel-form label span, form p label ,.shahkar-similar-span{
    color: var(--input-label-color) !important;
    font-size: .9em;
    margin: 10px 0
}

table.custom-table .success-btn {
    color: var(--btn-white-text-color);
    background: #41c3b4;
    background: linear-gradient(45deg, #41c3b4 0, #00a592 100%)
}

table.custom-table .edit-btn {
    color: var(--btn-black-text-color);
    background: #ffc061;
    background: linear-gradient(45deg, #ffc061 0, #ffb03a 100%)
}

table.custom-table .show-btn {
    color: var(--btn-white-text-color);
    background: #3e57c6;
    background: linear-gradient(45deg, #3e57c6 0, #1c39bb 100%)
}

table.custom-table .delete-btn {
    color: var(--btn-white-text-color);
    background: #e42a1b;
    background: linear-gradient(45deg, #e42a1b 0, #c91709 100%)
}

table.custom-table .disable-btn {
    color: var(--btn-white-text-color);
    background: var(--disable-btn)
}

.success-status, table.custom-table .success-status {
    color: var(--success-btn);
    background: rgba(0, 165, 148, .1)
}

.pending-status, table.custom-table .pending-status {
    color: var(--edit-btn);
    background: rgba(255, 192, 1, .1)
}

.cancel-status, table.custom-table .cancel-status {
    color: var(--delete-btn);
    background: rgba(222, 63, 68, .1)
}

.disable-status, table.custom-table .disable-status {
    color: var(--disable-btn);
    background: rgba(108, 117, 126, .1)
}

table.custom-table .delete-btn, table.custom-table .disable-btn, table.custom-table .edit-btn, table.custom-table .show-btn, table.custom-table .success-btn {
    font-size: .9em;
    font-family: var(--shahkar-bold-font-style);
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin: 5px 0;
    cursor: pointer;
}

.cancel-status, .disable-status, .pending-status, .success-status, table.custom-table .cancel-status, table.custom-table .disable-status, table.custom-table .pending-status, table.custom-table .success-status {
    font-size: .8em;
    font-family: var(--shahkar-extra-bold-font-style);
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin: 5px 0;
    text-align: center
}

.panel-form .input {
    width: 100%;
    margin-bottom: 10px
}

.panel-form .half-input {
    width: 49%;
    margin-bottom: 10px
}

.panel-form label span ,.shahkar-similar-span{
    font-family: var(--shahkar-extra-bold-font-style);
    display: inline-block
}

form p label {
    font-family: var(--shahkar-extra-bold-font-style);
}

form p label input, form p label textarea {
    margin: 10px 0
}

.panel-form button, .panel-form input[type=file], .panel-form input[type=number], .panel-form input[type=submit], .panel-form input[type=text], .panel-form select, .panel-form textarea, form input[type=email], form input[type=file], form input[type=number], form input[type=tel], form input[type=text], form input[type=url], form select, form textarea {
    width: calc(100% - 20px);
    resize: none;
    border: 1px solid var(--input-border-color);
    background: var(--input-bg-color);
    padding: 15px 10px;
    border-radius: 5px;
    font-family: var(--shahkar-regular-font-style);
    font-size: .8em;
    color: var(--input-text-color);

}
.panel-form select{
        -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
}

.chat-box, .chat-box .chat-body .user-message .voice-box, .chat-box .chat-footer label, .panel-form select, form input[type=email], form input[type=file], form input[type=number], form input[type=tel], form input[type=text], form input[type=url], form select, form textarea, from select {
    width: 100%
}

.panel-form button, .panel-form input[type=submit], form button, form input[type=submit] {
    width: auto;
    margin-top: 20px;
    background: var(--primary-color);
    color: var(--btn-text-color);
    font-family: var(--shahkar-extra-bold-font-style);
    cursor: pointer
}

.panel-form .inputs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.panel-form button, .panel-form input[type=submit] {
    border: none;
    border-radius: 10px
}

form button, form input[type=submit] {
    border: none;
    border-radius: 10px
    padding: 10px 30px
}

.panel-form button:disabled, .panel-form textarea:disabled, .panel-form input:disabled, form input:disabled, from button:disabled {
    background: var(--disable-input-bg-color);
    border: 1px solid var(--disable-input-border-color);
    color: var(--disable-input-text-color)
}

button:disabled .submit-icon {
    fill: var(--disable-input-text-color)
}

::placeholder {
    color: #696969;
    opacity: 1
}

::-ms-input-placeholder {
    color: #696969
}

.blue-stats, .green-stats, .orange-stats, .pale-blue-stats, .purple-stats, .red-stats {
    color: #fff;
    fill: white
}

.panel-form button, from button {
    display: flex;
    justify-content: center;
    align-items: center
}

.panel-form button .btn-icon {
    width: 20px;
    margin: 0 5px;
    fill: var(--btn-icon-color)
}

.panel-form .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px
}

.panel-form .switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.panel-form .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    margin: auto !important;
    right: 0;
    bottom: 0;
    background-color: var(--switch-bg-color);
    -webkit-transition: .4s;
    transition: .4s
}

.panel-form .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    -webkit-transition: .4s;
    transition: .4s
}

.panel-form input:checked + .slider {
    background-color: var(--primary-color)
}

.panel-form input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px)
}

.panel-form .slider.round {
    border-radius: 34px
}

.panel-form .slider.round:before {
    border-radius: 50%
}

.chat-box {
    display: flex;
    flex-direction: column;
    margin: 0 auto
}

.chat-box .chat-title {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(200, 200, 200, .3);
    margin-bottom: 10px;
    color: var(--chat-title-color)
}

.chat-box .chat-title span {
    font-size: .85em
}

.chat-box .chat-body {
    background: var(--box-color) var(--chat-background-pattern);
    border-radius: 5px;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    max-height: 50vh;
    padding: 0 0 0 10px;
    min-height: 300px;
}

.chat-box .chat-body .receiver, .chat-box .chat-body .sender {
    max-width: 45%;
    width: fit-content;
    padding: 20px 20px 5px 20px;
    border-radius: 10px;
    word-wrap: break-word;
    margin-bottom: 10px;
    border: 1px solid var(--receiver-border-color);
    background: var(--receiver-bg-color);
    color: var(--receiver-text-color);
    position: relative;
}

.chat-box .chat-body .sender {
    margin-left: auto;
    border: none;
    background: var(--primary-color);
    color: var(--sender-text-color)
}

.chat-box .chat-body .receiver {
    margin-right: auto
}

.chat-box .chat-body .receiver .user-profile img, .chat-box .chat-body .sender .user-profile img {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    border: 2px solid #fff
}

.chat-box .chat-body .receiver .user-profile .user-name, .chat-box .chat-body .sender .user-profile .user-name {
    font-size: .75em;
    font-family: var(--shahkar-extra-bold-font-style);
    margin-right: 10px;
    margin-left: 10px;
}

.chat-box .chat-body .receiver .user-message, .chat-box .chat-body .sender .user-message {
    font-size: .8em;
    font-family: var(--shahkar-regular-font-style);
    margin: 15px 0 0;
}

.chat-box .chat-body .receiver .message-time, .chat-box .chat-body .sender .message-time {
    font-size: 9px;
    display: inline-block;
    color: var(--receiver-message-time-color)
}

.chat-box .chat-body .receiver .message-time {
    color: var(--sender-message-time-color);
    opacity: .7
}

.chat-box .chat-body .remove-chat-message {
    display: flex;
    cursor: pointer;
    position: absolute;
    top: 0;
    padding: 5px 5px;
    right: 0;
    border-radius: 0 10px 0 15px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
}

.chat-box .chat-body .remove-chat-message svg {
    width: 15px;
    height: 15px;
}


.chat-box .chat-body .receiver .remove-chat-message, .chat-box .chat-body .receiver .remove-chat-message svg {
    display: none
}

.chat-box .chat-body .sender .remove-chat-message {
    background: black;
}

.chat-box .chat-body .sender .remove-chat-message svg {
    fill: white;
}


.chat-box .chat-footer {
    display: flex;
    align-items: center;
    margin-top: 10px;
    position: relative
}

.chat-box .chat-footer .chat-footer-box {
    position: relative;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center
}

.chat-box .chat-footer .chat-footer-box .message-box {
    position: relative;
    width: 100%
}

.chat-box .chat-footer input[type=text], .chat-box .chat-footer textarea {
    resize: none;
    width: calc(100% - 40px);
    border: 1px solid var(--input-border-color);
    background: var(--input-bg-color);
    padding: 10px;
    border-radius: 50px;
    font-family: var(--shahkar-regular-font-style);
    font-size: .8em;
    margin: 0 10px;
    color: var(--message-box-text-color);
  	direction:rtl;
}

.chat-box .chat-footer button {
    background: 0 0;
    margin-left: 5px;
    cursor: pointer;
    width: fit-content;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 50px;
    border: 1px solid transparent
}

.chat-box .chat-footer button.green-btn {
    background: rgba(1, 168, 148, .1)
}

.chat-box .chat-footer button.simple-btn {
    background: var(--chat-simple-btn-bg-color)
}

.chat-box .chat-footer button.red-btn {
    background: rgba(201, 23, 9, .1)
}

.chat-box .chat-footer button .send-icon {
    width: 20px;
    fill: var(--chat-send-btn-icon-color)
}

.chat-box .chat-footer button .attach-icon, .chat-box .chat-footer button .voice-icon {
    width: 20px;
    fill: var(--black-icon)
}

.voice-message {
    width: 270px !important;
    padding: 10px 10px 0 !important;
    position: relative;
}

.voice-message .message-time {
    position: absolute;
    bottom: 1px;
}

.picture-message {
    max-width: 250px;
    max-height: auto;
    width: auto;
    height: auto;
    position: relative;
}

.picture-message .message-time {
    position: absolute;
    bottom: 12px;
    left: 10px;
    color: white;
    padding: 0 10px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.chat-box .chat-body .picture-message {
    margin: 10px 0 !important;
    padding: 5px 5px 0 5px !important;
}

.voice-message .user-profile, .picture-message .user-profile {
    display: none !important
}

.voice-message .user-message, .picture-message .user-message {
    margin: 0 !important
}

.picture-message .user-message a img {
    border-radius: 6px;
    background: white;
}

.chat-box .chat-body .user-message .pause-icon, .chat-box .chat-body .user-message .play-icon {
    width: 27px;
    padding: 10px;
    border-radius: 50px;
    margin-right: 8px
}

.chat-box .chat-body .receiver .user-message .pause-icon, .chat-box .chat-body .receiver .user-message .play-icon {
    fill: var(--primary-color) !important;
    background: var(--primary-color-bg-wave) !important
}

.chat-box .chat-body .sender .user-message .pause-icon, .chat-box .chat-body .sender .user-message .play-icon {
    fill: white !important;
    background: rgba(255, 255, 255, .3) !important
}

.chat-box .chat-footer button.simple-btn:hover {
    border: 1px solid var(--chat-simple-btn-hover-border-color)
}

.chat-box .chat-footer button.green-btn:hover {
    border: 1px solid var(--chat-green-btn-hover-border-color)
}

.chat-box .chat-footer button.red-btn:hover {
    border: 1px solid var(--chat-red-btn-hover-border-color)
}

.shahkar-file-div {
    cursor: pointer;
    padding: 15px 15px 5px 15px !important;
    display: flex;
    border-radius: 10px;
    margin: 10px 0;
}

.shahkar-file-div .user-message {
    display: flex;
    width: 250px !important;
    flex-direction: row-reverse;
    margin-top: 0 !important;
}

.shahkar-file-div .user-message a {
    display: flex;
    flex-direction: row-reverse;
    color: white;
}

.shahkar-file-div .user-profile {
    display: none !important;
}

.shahkar-file-div .message-time {
    position: absolute;
    bottom: 2px;
    right: 5px
}

.shahkar-file-icon {
    width: 25px;
    height: 25px;
    padding: 10px;
    border-radius: 30px;
    min-width: 25px;
    min-height: 25px;
    background: rgba(255, 255, 255, 0.2);
}

.shahkar-sender-file-background {
    background: var(--primary-color) !important;
    color: var(--sender-text-color);
}

.shahkar-sender-file-background .shahkar-file-icon {
    fill: white;
}

.shahkar-file-info-box {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    justify-content: center;
    direction: ltr;
}

.shahkar-file-info-name {
    font-size: .9em;
}

.shahkar-file-info-size {
    font-size: .7em;
    margin-top: 5px;
    opacity: .7;
}

.shahkar-receiver-file-background {
    border: 1px solid var(--receiver-border-color);
    background: var(--receiver-bg-color);
    color: var(--receiver-text-color) !important;
    margin-right: auto;
}

.shahkar-receiver-file-background .shahkar-file-icon {
    fill: var(--shahkar-file-icon-color) !important;
    background: var(--shahkar-file-icon-background);
}

.wallet {
    display: flex;
    margin-bottom: 50px
}

.wallet .wallet-charge {
    width: 100%;
    margin: 0 10px 0 0
}

.wallet .wallet-charge-image img {
    width: 143px
}

.wallet .stats-list {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.stats-list, .wallet .stats-list {
    padding: 0;
    gap: 15px;
}

.auth-box .panel-form, .wallet .wallet-charge .charge-form {
    margin-top: 20px
}

.wallet .wallet-charge .charge-form .payment-gateway {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    align-items: center;
    border-radius: 7px
}

.wallet .wallet-charge .charge-form .payment-gateway span {
    color: var(--payment-gateway-text-color);
    font-size: .7em
}

.wallet .wallet-charge .charge-form .payment-gateway .gateway-logo {
    width: 80px;
    border: 1px solid var(--payment-gateway-border-color);
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 7px
}

.wallet .wallet-charge .charge-wallet-icon {
    width: 20px;
    fill: var(--btn-icon-color);
    margin-left: 5px
}

.stats-list {
    width: 100%;
    display: flex;
    margin-bottom: 30px;
}

.stats-box {
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px
}

.green-stats {
   background: rgb(255,198,75);
background: linear-gradient(230deg, rgba(255,198,75,1) 0%, rgba(217,169,66,1) 100%); 
     
}

.pale-blue-stats {
background: rgb(134,200,82);
background: linear-gradient(230deg, rgba(134,200,82,1) 0%, rgba(121,182,74,1) 100%); 
}

.red-stats {
    background: #e42a1b;
    background: linear-gradient(45deg, #e42a1b 0, #c91709 100%)
}

.blue-stats {
    background: #3e57c6;
    background: linear-gradient(45deg, #3e57c6 0, #1c39bb 100%)
}

.orange-stats {
    background: #ffc061;
    background: linear-gradient(45deg, #ffc061 0, #ffb03a 100%)
}

.purple-stats {
    background: #5f3ab0;
    background: linear-gradient(45deg, #5f3ab0 0, #32117a 100%)
}

.stats-box .stats-value {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .2);
    padding: 2px 10px;
    border-radius: 7px;
    font-family: var(--shahkar-bold-font-style);
}

.stats-box .stats-value .price-unit {
    font-size: .7em;
    margin-right: 5px;
    font-family: var(--shahkar-regular-font-style);
    color: var(--stats-price-unit-color)
}

.stats-box .stats-right {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
    width: 100%
}

.stats-box .stats-icon {
    padding: 5px;
    border-radius: 7px;
    width: 40px
}

.stats-box .stats-title {
    display: flex;
    flex-direction: column;
    font-family: var(--shahkar-bold-font-style);;
    font-size: 1em
}

.invite-box .invite-code, .invite-box .invite-code .invite-link {
    display: flex;
    align-items: center;
    color: var(--code-box-text-color)
}

.stats-box .stats-title span:last-child {
    font-size: .7em;
    margin-top: 5px;
    opacity: .7
}

.friends .stats-box, .index-dashboard .stats-box {
    margin-right: 0
}

.profile-setting .setting-body .qr-code-box .qr-help {
    margin-right: 15px;
}


.friends .stats-box:first-child, .index-dashboard .stats-box:first-child {
    margin-right: 0
}

.invite-box {
    margin: 10px 0 30px;
    border-radius: 7px
}

.invite-box .invite-code {
    background: var(--code-box-bg-color);
    padding: 5px 10px;
    border-radius: 5px;
    margin: 20px 0;
    width: fit-content;
    cursor: pointer;
    user-select: none
}

.invite-box .invite-code .code {
    direction: ltr;
    font-size: .85em
}

.invite-box .invite-code .invite-link .copy-icon {
    width: 20px;
    fill: var(--code-box-icon-color);
    margin-right: 5px
}

.invite-box .invite-code .invite-link {
    font-size: .8em;
    font-family: var(--shahkar-bold-font-style);;
    padding: 5px 0
}

.auth-box .auth-icon, button .submit-icon {
    width: 20px;
    margin-left: 5px;
    fill: var(--btn-text-color)
}

.auth-box .green-status, .auth-box .red-status {
    background: rgba(65, 195, 180, .1);
    color: #41c3b4;
    padding: 5px 10px;
    font-family: var(--shahkar-bold-font-style);;
    font-size: .8em;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    margin: 0 0 10px 0;
}

.auth-box .green-status .green-status-icon {
    width: 20px;
    margin-left: 5px;
    fill: rgba(65, 195, 180, 1)
}

.auth-box .red-status {
    background: rgba(228, 42, 27, .1);
    color: #e42a1b
}

.auth-box .red-status .red-status-icon {
    fill: rgb(228, 42, 27);
    width: 20px;
    margin-left: 5px
}

.profile-setting {
    display: flex;
    align-items: flex-start
}

.profile-setting .setting-tabs {
    display: flex;
    flex-direction: column;
    width: 300px
}

.shahkar-upload-items{
 display: flex;align-items: flex-start 
}

.shahkar-upload-box{
 width: 350px;  background: var(--shahkar-upload-box-bg-color);  padding: 20px;  border-radius: 15px; 

}

.shahkar-upload-box-title p{
 	font-family: extra-bold;font-size: 1.1em;color: var(--shahkar-upload-box-title-color);margin:20px 0 10px 0;text-align: center;
}

.shahkar-upload-box-description p{
 	font-size: .8em;  color: var(--shahkar-upload-box-description-color);  text-align: justify;  line-height: 2.5em;
}

.shahkar-upload-box-header-upload-area{
  background: var(--shahkar-upload-box-upload-area-bg-color);
  border: 2px dashed var(--shahkar-upload-box-upload-area-border-color);
 	display: flex;flex-direction: column;align-items: center;justify-content: center;width: 100%;height: 180px;border-radius: 10px; 
}

.shahkar-upload-box-header-upload-area svg{
 	width:50px;
  	height:50px;
  	fill:var(--shahkar-upload-box-upload-icon-color);
}
.shahkar-upload-box-header-upload-area span{
color: var(--shahkar-upload-box-upload-text-color);font-family: 'extra-bold';margin-top: 10px  
}
.shahkar-upload-box-status{
 	display: flex;align-items: center;justify-content: center;margin-top: 20px; 
}
.shahkar-upload-box-status svg{
 width:15px;height:15px;;margin-left: 5px; 
}
.shahkar-upload-box-status span{
 font-size: .8em;font-family: bold; 
}

.shahkar-upload-box-status-green svg,.shahkar-upload-box-status-green span{
  fill:#00a592;
  color: #00a592;
}
.shahkar-upload-box-status-red svg,.shahkar-upload-box-status-red span{
  fill:#e42a1b;
  color: #e42a1b;
}
.shahkar-upload-box-status-orange svg,.shahkar-upload-box-status-orange span{
  fill:#ffb03a;
  color: #ffb03a;
}



.profile-setting .setting-tabs .tab {
    border: 1px solid var(--setting-tab-border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    border-radius: 7px;
    margin: 5px;
    cursor: pointer;
    font-family: var(--shahkar-bold-font-style);;
    font-size: .7em;
    color: var(--setting-tab-text-color)
}

.profile-setting .setting-tabs .tab:first-child {
    margin-top: 0;
}

.profile-setting .setting-tabs .tab-icon {
    fill: var(--setting-icon-color);
    width: 30px;
    margin-bottom: 10px
}

.profile-setting .setting-tabs .active .tab-icon {
    fill: var(--setting-icon-active-color);
    width: 30px;
    margin-bottom: 10px
}

.profile-setting .setting-tabs .active {
    background: var(--primary-color);
    color: var(--setting-icon-active-color);
    border: 1px solid transparent
}

.profile-setting .setting-body .tab-body.active {
    display: block
}

.profile-setting .setting-body {
    width: calc(100% - 300px);
    margin-right: 20px
}

.profile-setting .setting-body .profile-img {
    border: 1px dashed var(--setting-profile-img-border-color);
    display: inline-flex;
    cursor: pointer;
    margin-bottom: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    border-radius: 7px
}

.profile-setting .setting-body .profile-img img {
    width: 60px;
    border-radius: 60px;
    margin-bottom: 10px
}

.profile-setting .setting-body .profile-img .profile-upload {
    color: var(--setting-profile-text-color);
    display: flex;
    align-items: center;
    font-size: .7em;
    font-family: var(--shahkar-bold-font-style);
}

.profile-setting .setting-body .profile-img .profile-upload .upload-icon {
    width: 20px;
    margin-left: 5px;
    fill: var(--setting-upload-icon-color)
}

.profile-setting .setting-body .qr-code-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

.profile-setting .setting-body .qr-code-box .qr-help .help-title {
    font-family: var(--shahkar-extra-bold-font-style);
    font-size: .9em;
    margin-bottom: 5px
}

.profile-setting .setting-body .qr-code-box .qr-code {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    border: 1px dashed var(--setting-qr-code-border-color);
    border-radius: 10px;
    padding: 5px
}

.profile-setting .setting-body .qr-code-box .qr-code img {
    width: 100px;
    border-radius: 5px
}

.profile-setting .setting-body .qr-code-box .qr-help .backup-code {
    background: var(--code-box-bg-color);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    color: var(--code-box-text-color);
    font-size: .8em;
    padding: 5px 10px;
    border-radius: 5px
}

.profile-setting .setting-body .qr-code-box .qr-help .backup-code .copy-icon {
    width: 20px;
    margin-right: 5px;
    fill: var(--code-box-icon-color)
}

.profile-setting .setting-body .qr-code-box .qr-help .backup-code .backup-code-icon {
    display: flex;
    font-family: var(--shahkar-bold-font-style);;
    align-items: center
}

.notification-box {
    display: flex;
    flex-direction: column
}

.notification-box .notification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    border: 1px dashed var(--notification-border-color);
    padding: 10px;
    border-radius: 10px;
    cursor: pointer
}

.notification-box .notification:last-child {
    margin-bottom: 0
}

.notification-box .notification .notification-status {
    width: 10px;
    height: 20px;
    border-radius: 20px
}

.notification-box .notification .read {
    background: var(--notification-read-bg-color)
}

.notification-box .notification .unread {
    background: var(--primary-color)
}

.notification-box .notification .icon {
    width: 24px;
    fill: var(--notification-icon-color);
    padding: 5px;
    margin-left: 5px
}

.notification-box .notification .notification-title {
    font-family: var(--shahkar-bold-font-style);;
    font-size: .9em;
    display: flex;
    color: var(--notification-text-color);
    flex-direction: column
}

.notification-box .notification .notification-title .date {
    font-size: .7em;
    margin-top: 5px;
    color: var(--notification-date-text-color)
}

.order-box {
    display: flex;
    flex-direction: column;
    background: var(--order-box-bg-color);
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 0 10px
}

.order-box .order-options {
    margin: 20px 10px;
    display: flex
}

.order-box .order-options .download-pdf-option {
    display: flex;
    background: var(--primary-color);
    border-radius: 7px;
    align-items: center;
    padding: 5px 10px;
    cursor: pointer;
    font-size: .8em;
    font-family: var(--shahkar-bold-font-style);;
    color: var(--order-box-pdf-text-color)
}

.order-box .order-options .download-pdf-option svg {
    width: 24px;
    margin-left: 5px;
    fill: var(--order-box-pdf-icon-color)
}

.order-box .order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px dashed var(--order-box-item-border-color)
}

.order-box .order-total-price {
    font-size: 1.1em !important
}

.order-box .order-item .order-item-name {
    font-family: var(--shahkar-extra-bold-font-style);
    font-size: .95em;
    color: var(--order-box-item-name-color)
}

.order-box .order-item .order-item-value {
    font-size: .85em;
    color: var(--order-box-item-value-color)
}

.download-app-box {
    display: flex;
    flex-direction: column;
    background: var(--primary-color) url('../images/download-app-pattern.png') no-repeat;
    width: calc(100% - 40px);
    border-radius: 20px;
    padding: 10px 20px;
    margin-top: 50px;
    position: relative;
    height: 200px
}

.download-app-box .phone-mockup {
    right: 20px;
    position: absolute;
    bottom: 0
}

.app-logo {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    top: 50px
}

.app-logo img {
    width: 100px !important
}

.download-app-box .phone-mockup img {
    width: 200px
}

.download-app-box .download-info {
    display: flex;
    margin: 20px 230px 0 0;
    flex-direction: column;
    height: 100%
}

.download-app-box .download-info .download-info-title {
    font-family: var(--shahkar-extra-bold-font-style);
    font-size: 1.2em;
    color: #fff
}

.download-app-box .download-info .download-info-des {
    font-size: .8em;
    color: #fff
}

.download-app-box .download-info .download-info-links {
    display: flex;
    margin-top: 20px
}

.download-app-box .download-info .download-info-links a {
    display: flex;
    justify-content: space-between;
    border: 2px solid #fff;
    border-radius: 7px;
    padding: 5px;
    font-size: .7em;
    font-family: var(--shahkar-bold-font-style);;
    color: #242424;
    fill: #242424;
    background: #fff;
    margin-left: 5px;
    align-items: center
}

.download-app-box .download-info .download-info-links a svg {
    width: 24px;
    margin-right: 10px
}

.custom-error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh
}

.custom-error-page .error {
    background: #000;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    color: #fff
}

.custom-error-page .error img {
    width: 300px
}

.responsive-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--responsive-menu-bg-color);
    display: none;
    padding: 5px 10px;
    border-top: 1px solid var(--responsive-menu-border-color);
    justify-content: space-around
}

.group-link {
    color: #696969;
    font-size: 0.8em;
    margin: 20px 20px 5px 0;
    font-family: var(--shahkar-bold-font-style);;
    display: inline-block;
}

.dynamic_theme {
    transition: opacity 0.3s ease-in-out;
}

.dashboard-change-theme-btn {
    margin-left: 15px;
    display: flex;
    cursor: pointer;
}

.dashboard-change-theme-btn svg {
    fill: var(--black-icon);
    width: 25px;
    transform: scale(0);
    transition: all .3s
}

.shahkar-show-website-link {
    text-align: center;
    margin: 0 0 20px 0;
}

.shahkar-show-website-link a {
    padding: 5px 10px;
    font-family: var(--shahkar-bold-font-style);
    color: var(--primary-color);
    background: var(--dashboard-menu-down-icon-bg-color);
    border-radius: 7px;
    font-size: .8em;
}

.shahkar-show-website-link a:hover {
    background: var(--primary-color);
    color: white;
}

.responsive-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    width: 100%;
    color: var(--responsive-menu-link-color);
    fill: var(--responsive-menu-icon-color)
}

.responsive-menu a:hover {
    background: var(--responsive-menu-hover-color);
    border-radius: 10px
}

.responsive-menu a span {
    font-size: .6em;
    font-family: var(--shahkar-bold-font-style);
}

.responsive-menu a svg {
    width: 20px;
    margin-bottom: 5px
}

.lucky-wheel-box {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;

}

.the_wheel {
    background: url('../images/border/green-border.png') no-repeat center;
    padding: 10px 2px 0 5px;
}

.the_wheel:hover {
    cursor: pointer;
}

.spotplayer-platforms {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;

}

.spotplayer-platforms .spotplayer-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px;
    border: 1px solid var(--spotplayer-border-color);
    color: var(--spotplayer-text-color);
    border-radius: 10px;
    padding: 5px;
    font-size: .9em
}

.spotplayer-platforms .spotplayer-platform:first-child {
    margin-right: 0;
}

.spotplayer-platforms .spotplayer-platform:last-child {
    margin-left: 0;
}

.spotplayer-platforms .spotplayer-platform img {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    margin-bottom: 5px;
    opacity: 0.8;
}

.spotplayer-platforms .spotplayer-platform:hover img {
    opacity: 1;
}

.shahkar-tracking-box {
    display: flex;
}

.shahkar-tracking-info {
    width: 300px;
    margin-left: 20px
}

.shahkar-tracking {
    border: 1px solid var(--shahkar-tracking-border-color);
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column
}

.shahkar-tracking-level {
    display: flex;
    align-items: center;
}

.shahkar-tracking-level-circle {
    width: 40px;
    height: 40px;
    min-width:40px;
    min-height:40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    background: var(--shahkar-tracking-level-circle)
}

.shahkar-tracking-level-info {
    display: flex;
    font-size: 13px;
    flex-direction: column;
    margin-right: 15px;
}

.shahkar-tracking-level-title {
    font-size: 1.1em;
    font-family: var(--shahkar-bold-font-style);
    color: var(--shahkar-tracking-level-title);
}

.shahkar-tracking-level-des {
    color: var(--shahkar-tracking-level-des);
}

.active-level-line {
    background: #01a894 !important;
}

.shahkar-tracking-level-line {
    width: 5px;
    height: 30px;
    border-radius: 5px;
    background: var(--shahkar-tracking-level-circle);
    margin: 10px 18px 10px 0
}

.shahkar-tracking-level .shahkar-tracking-level-circle .tracking-icon {
    display: none;
}

.active-tracking-level .tracking-icon {
    display: flex !important;
}

.active-tracking-level .shahkar-tracking-level-title {
    color: var(--active-shahkar-tracking-level-title) !important;
}

.active-tracking-level .shahkar-tracking-level-des {
    color: var(--active-shahkar-tracking-level-des) !important;
}

.active-tracking-level .shahkar-tracking-level-circle {
    background: #01a894;
}

.shahkar-tracking-code-box {
    background: rgb(242, 201, 47);
    background: linear-gradient(90deg, rgba(242, 201, 47, 1) 0%, rgba(234, 185, 26, 1) 100%);
    color: #121212;
    padding: 10px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(242, 201, 47, 0.3)
}

.shahkar-tracking-delivery-location {
    background: rgb(0, 165, 146);
    background: linear-gradient(90deg, rgba(0, 165, 146, 1) 0%, rgba(0, 165, 146, 1) 100%);
    color: white;
    padding: 10px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 165, 146, 0.3)
}

.shahkar-tracking-code-title, .shahkar-tracking-delivery-title {
    display: flex;
    align-items: center;
}

.shahkar-tracking-code-title span, .shahkar-tracking-delivery-title span {
    font-family: var(--shahkar-bold-font-style);
    margin-right: 10px
}

.shahkar-tracking-code-title img {
    width: 30px !important;
}

.shahkar-tracking-delivery-title svg {
    fill: white;
}

.shahkar-tracking-code, .shahkar-tracking-destination {
    font-family: var(--shahkar-extra-bold-font-style);
    font-size: 1.2em;
    background: white;
    padding: 5px 10px;
    text-align: center;
    border-radius: 10px;
    margin-top: 10px;
}

.shahkar-tracking-destination {
    font-family: var(--shahkar-bold-font-style);
    font-size: .9em;
    line-height: 1.8em;
    color: #121212;
    text-align: right;
}

.shahkar-tracking-order-list {
    width: calc(100% - 320px);
}

.shahkar-user-location-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.shahkar-user-location {
    width: calc(100% - 20px);
    border: 1px dashed var(--shahkar-user-location-border-color);
    color: var(--shahkar-user-location-text-white-color);
    display: flex;
    flex-direction: column;
    padding: 10px 10px 5px 10px;
    border-radius: 15px;
    margin: 5px 0;

}

.shahkar-user-location-title {
    font-family: var(--shahkar-extra-bold-font-style);
    display: flex;
    font-size: .8em;
    align-items: center;

}

.shahkar-user-location-bottom {
    display: flex;
    align-items: center;
    margin-top: 10px;
    justify-content: space-between;

}

.shahkar-user-location-bottom .leaflet-bottom, .leaflet-right, .leaflet-bottom {
    display: none;
}

.leaflet-popup-content {
    font-family: var(--shahkar-bold-font-style);
}

.shahkar-user-location-bottom-right {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.shahkar-user-location-bottom-right-item {
    padding: 5px 0;
    font-size: .7em;
    opacity: .7;
    display: flex;
    align-items: center;
}

.shahkar-user-location-bottom-right-item svg {
    opacity: .7;
    width: 15px;
    height: 15px;
    margin-left: 3px;
    fill: var(--black-icon);
}

.shahkar-user-location-bottom-left {
    width: 200px;
    height: 100px;
}

#one_map, #two_map {
    width: 200px;
    height: 100px;
    border-radius: 10px;
}

.shahkar-map {
    border-radius: 10px;
}

.shahkar-user-location-top {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.shahkar-user-location-delete {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 30px;
    cursor: pointer;
}

.shahkar-user-location-delete svg {
    fill: #e42a1b;
    width: 20px;
    height: 20px;
}
/* start score page style section */

.shahkar-score-page-colored-paper{
    width:300px;
    position:relative;
    top:-35px;
}
.shahkar-score-page-score-box{
    background:url('../images/score-box-pattern.png') center top ;
    font-family: var(--shahkar-bold-font-style);
    margin-left: 15px;
        width: calc(300px - 10px);
        min-width: calc(300px - 10px);
        border: 1px solid var(--shahkar-score-box-border-color);
        padding: 15px;
        display: flex;
        flex-direction: column;
        border-radius: 10px;
        justify-content: center;
        align-items: center
}
.shahkar-score-page-score-box-title{
    font-family: var(--shahkar-bold-font-style);
    color:var(--body-title-color);
        font-size: .9em
}
.shahkar-score-page-score-box-des{
    font-family: var(--shahkar-bold-font-style);
        color: var(--primary-color);
        background: var(--shahkar-score-box-score-bg-color);
        padding: 0 5px;
        border-radius: 5px;
        margin-top: 15px
}
.shahkar-score-page-score-box-des-score-text{
    font-size: .5em;
        margin: 0 3px;
}
.shahkar-score-page-bottom-right{
    width:300px;
}
.shahkar-score-page-bottom-right-convert-item{
    display:flex;
    align-items: center;
    justify-content: space-between;
    border-radius:5px;
    border-bottom: 1px solid var(--shahkar-score-box-border-color);
}
.shahkar-score-page-bottom-right-convert-item-disable{
    opacity:.5;
}
.shahkar-score-page-bottom-right-convert-item-disable:hover{
    background: unset !important;
}
.shahkar-score-page-bottom-right-convert-item:hover{
    cursor: pointer;
    background:rgba(200,200,200,0.1);
}
.shahkar-score-page-bottom-right-convert-item:last-child{
    border-bottom: none;
}
.shahkar-score-page-bottom-right-convert-item-des{
    width:100%;
    margin-top:20px;
}
.shahkar-score-page-bottom-right-convert-item img {
    width: 80px;
}
.shahkar-score-page-bottom-right-convert-item input {
    accent-color: var(--primary-color);
}
.shahkar-score-page-bottom-right-convert-item .body-title {
    font-size: .8em !important;
}
.shahkar-score-page-bottom-right-convert-item .body-des {
    font-size: .7em !important;
}

.shahkar-score-page-bottom-left{
    border-right:1px solid var(--shahkar-score-box-border-color);
    margin-right: 10px;
    padding:0 15px;
    width: calc(100% - 300px - 40px);
}
.shahkar-score-page-bottom-left .shahkar-convert-score-text{
    color: var(--body-title-color);
    margin-bottom:10px;
}
.shahkar-convert-value{
    color: var(--primary-color) !important;
    background: var(--shahkar-score-box-score-bg-color);
    padding: 0 7px;
        border-radius: 5px;
}
.shahkar-score-page-bottom-left .ShahkarChange{
padding: 10px;
    border-radius: 10px;
    background: var(--primary-color);
    color: white;
    margin-top: 20px;
    display: flex;
    align-items: center;
}
.shahkar-score-page-bottom-left > div{
    display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
}

.shahkar-score-page-center{
    display: flex;
    width: 100%;
}
.shahkar-score-page-score-guid{
    width: calc(100% - 20px);
        display: flex;
        justify-content: space-between;
        flex-direction: column
}
.shahkar-score-page-score-guid-top{
    width: calc(100% - 20px);
        overflow-y: auto;
        display: flex;
        padding: 10px;
        border-radius: 10px;
        border: 1px solid var(--shahkar-score-box-border-color)
}

.shahkar-score-page-score-item{
    min-width: fit-content;
        display: flex;
        align-items: center;
        font-size: .7em;
        font-family: var(--shahkar-bold-font-style);
        padding: 5px;
        border-radius: 5px;
            margin-left: 10px;
                background: var(--shahkar-score-item-bg-color);
                color: var(--shahkar-score-item-text-color);
}
.shahkar-score-page-score-item-icon{
    width: 15px;
    fill:var(--shahkar-score-item-icon-color);
        height: 15px;
        margin-left: 5px;
}
.shahkar-score-page-score-guid-bottom{
    width: fit-content;
        margin-top: 5px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        padding: 7px 10px;
        background: linear-gradient(230deg, rgba(255, 198, 75, 1) 0%, rgba(217, 169, 66, 1) 100%)
}

.shahkar-score-page-score-guid-bottom svg{
    fill:#333;
}
.shahkar-score-page-score-item-help-text{
    font-size: .8em
}
.shahkar-score-page-bottom{
    display: flex;
        border-radius: 10px;
        border: 1px solid var(--shahkar-score-box-border-color);
        margin-top: 10px;
        padding: 10px;
}


/* end score page style section */

/* start profile page style section */
.shahkar-profile-box {
    background: var(--primary-color);
    border-radius: 10px 10px 70px 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shahkar-profile-box-content {
    background: white;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 10px;
    text-align: justify;
    margin-bottom: 80px;

}

.shahkar-profile-box-content>div {
    display: none;
}

.shahkar-profile-bio-text {
    font-size: .9em;
    line-height: 2em;
    margin-bottom: 20px;
    color: var(--body-title-color);
    background: var(--code-box-bg-color);
    padding: 5px 10px;
    border-radius: 7px;
}

.shahkar-profile-box-profile-image {
    width: 100px;
    height: 100px;
    margin-left: 20px;
    border-radius: 100px;
    border: 5px solid white;
}

@media screen and (max-width: 1024px) {
    .shahkar-cover-not-login {
        display: none !important;
    }
    .shahkar-cover-not-login-mobile{
        display:flex !important;
        z-index:999999;
    }
}

.shahkar-profile-info {
    display: flex;
    align-items: center;
}

.shahkar-profile-info-name {
    font-family: var(--shahkar-bold-font-style);
    color: white;
}

.shahkar-profile-info-user-level {
    margin: 5px 0;
    font-family: var(--shahkar-bold-font-style);
    font-size: .7em;
    background: rgba(255, 255, 255, .2);
    display: inline-block;
    padding: 2px 4px;
    border-radius: 4px;
    color: white
}

.shahkar-profile-info-user-register-date {
    font-size: .7em;
    color: #000;
    opacity: .5
}

.shahkar-profile-bottom-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.shahkar-profile-score-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 7px;
    padding: 5px 10px;
    justify-content: flex-start;
}

.shahkar-profile-score-detail {
    display: flex;
    flex-direction: column;
    margin-right: 10px
}

@media screen and (max-width: 768px) {
    .shahkar-profile-box {
        flex-direction: column;
        border-radius: 0 0 30px 30px !important;
    }

    .shahkar-profile-box-profile-image {
        margin-left: 0;
        margin-bottom: 15px;
    }

    .shahkar-profile-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .shahkar-profile-box-menu {
        right: 50px !important;
        width: calc(100% - 120px) !important;
        background: var(--box-color);
    }

    .shahkar-profile-info-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .shahkar-profile-bottom-box {
        align-items: center;
    }

    .shahkar-profile-score-box {
        margin-top: 20px;
    }
    .shahkar-score-page-score-guid-top{
        margin:10px 0;
    }
    .shahkar-score-page-bottom-left{
        width: calc(100% - 30px);
    }
    .shahkar-score-page-top-left{
        width:100%;
    }
}
.shahkar-profile-favorite-box {
    display: flex;
    flex-wrap: wrap;
}


.shahkar-profile-favorite-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.shahkar-profile-favorite-item {
    width: calc(33.33% - 10px);
    position: relative;
    margin: 5px;
    box-sizing: border-box;
    border-radius: 7px;
    background: var(--dashboad-bg-color);
}

.shahkar-profile-favorite-img img {
    width: 100%;
    height: 200px;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
}

.shahkar-profile-favorite-title {
    margin-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    color: var(--dashboard-menu-link-color);
}

.shahkar-profile-favorite-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    font-size: .8em;
    padding: 0 10px;
    opacity: .7;
    color: var(--dashboard-menu-link-color);
}

.shahkar-profile-favorite-show {
    background: var(--primary-color);
    margin: 10px;
    text-align: center;
    width: calc(100% - 20px);
    display: inline-block;
    border-radius: 5px;
    padding: 5px 0;
    color: white;
}

.shahkar-profile-favorite-remove-form-list svg {
    width: 25px;
    fill: var(--primary-color);
}

.shahkar-profile-favorite-remove-form-list {
    cursor: pointer;
    position: absolute;
    top: 5px;
    left: 5px;
    background: white;
    border-radius: 5px;
    padding: 5px 5px 3px 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 1px rgba(100, 100, 100, 0.5);
}


@media (max-width: 768px) {
    .shahkar-profile-favorite-item {
        width: calc(50% - 20px);
    }

    .shahkar-profile-favorite-item:first-child {
        margin-top: 0 !important;
    }
}

@media (max-width: 576px) {
    .shahkar-profile-favorite-item {
        width: calc(100%);
        margin: 10px 0;
    }
}

.shahkar-cover-not-login {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    background: var(--box-bg-color);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.shahkar-cover-not-login a ,.shahkar-cover-not-login-mobile a{
    background: var(--primary-color);
    color: white;
    font-size: .9em;
    padding: 0 5px;
    border-radius: 5px;
}
.shahkar-cover-not-login-mobile{
    position: fixed;
        left: 0;
        bottom: 0;
        right:0;
        height:70px;
        background: var(--box-bg-color);
        backdrop-filter: blur(5px);
        display: none;
        justify-content: center;
        align-items: center;
}
                .shahkar-profile-box-social {
                    display: flex;
                    justify-content: center;
                    background: white;
                    border-radius: 7px;
                    padding: 5px 0;
                    margin-top: 10px;
                    width: fit-content;
                }
        
                .shahkar-profile-box-social a {
                    padding: 5px;
                    width: 20px;
                    height: 20px;
                    margin: 0 3px;
                    border-radius: 5px;
                    background: rgba(100, 100, 100, .1);
                }
        
                .shahkar-profile-box-social a svg {
                    width: 20px;
                    height: 20px;
                    min-height: 20px;
                    min-width: 20px;
                    fill: rgba(100, 100, 100, 1);
                }
        
                .shahkar-profile-box-social a:hover {
                    background: rgba(100, 100, 100, .2);
                }
        
                .shahkar-profile-box-menu {
                    display: flex;
                    background: var(--box-color);
                    position: relative;
                    left: 0;
                    right: 150px;
                    width: calc(100% - 170px);
                    padding: 10px;
                    border-radius: 0 0 15px 10px;
                    overflow: auto;
                }
        
                .shahkar-profile-box-menu-item {
                    display: flex;
                    align-items: center;
                    cursor: pointer;
                    background: rgba(100, 100, 100, .3);
                    padding: 5px;
                    border-radius: 5px;
                    margin-left: 10px;
                    width: fit-content;
                    min-width: fit-content;
                }
        
                .shahkar-profile-box-menu-item svg {
                    width: 20px;
                    height: 20px;
                    min-height: 20px;
                    margin-left: 5px;
                    min-width: 20px;
                    fill: rgba(100, 100, 100, 1);
                }
        
                .shahkar-profile-box-menu-item span {
                    font-size: .8em;
                    color:var(--dashboard-menu-link-color);
                    opacity:.7;
                }
        
                .shahkar-profile-box-menu-item-active {
                    background: var(--primary-color);
                    color: white;
                }
                .shahkar-profile-box-menu-item-active span{
                    opacity: 1;
                    color:white;
                }
        
                .shahkar-profile-box-menu-item-active svg {
                    fill: white;
                }
        
                .shahkar-profile-last-visits {
                    display: flex;
                    align-items: center;
                    margin-right: 15px;
                }
        
                .shahkar-profile-container {
                    position: relative;
                    display: flex;
                    margin-right: -15px;
                }
        
                .shahkar-profile-user-profile-img {
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                    border: 2px solid #fff;
                }
        
                .shahkar-more-profiles {
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                    background-color: var(--primary-color);
                    color: #fff;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 16px;
                    z-index: 3;
                    font-weight: bold;
                    border: 2px solid #fff;
                }
        
                .shahkar-profile-container img {
                    transition: filter 0.3s ease;
                    position: relative;
                    z-index: 1;
                }
        
                .shahkar-profile-container:hover img {
                    filter: blur(0);
                    z-index: 2;
                }
        
                .shahkar-profile-last-visits:hover .shahkar-profile-container:not(:hover) img {
                    filter: blur(3px);
                }
        
                .shahkar-profile-detail {
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: space-between;
                    margin-top: 20px;
                }
        
                .shahkar-profile-detail-item {
                    margin: 5px;
                    flex: 1 1 32%;
                    padding: 15px 0;
                    text-align: center;
                    background: var(--dashboad-bg-color);
                    border-radius: 10px;
                    position: relative;
                    box-sizing: border-box;
                }
        
                @media screen and (max-width: 768px) {
                    .shahkar-profile-detail-item {
                        flex: 1 1 100%;
                        margin:15px 0 15px 0;
                    }
                }
        
                .shahkar-profile-detail-item-icon svg {
                    width: 30px;
                    height: 30px;
                    margin-bottom: 10px;
                    fill: var(--dashboard-menu-icon-color);
                }
        
                .shahkar-profile-detail-item-title {
                    font-size: .8em;
                    font-family: var(--shahkar-bold-font-style);
                    color: var(--dashboard-menu-link-color);
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: block;
                }
        
                .shahkar-profile-detail-item-counter {
                    margin-top: 10px;
                    background: var(--primary-color);
                    display: inline-block;
                    border-radius: 5px;
                    color: white;
                    padding: 0 7px;
                }
        
                .shahkar-profile-detail-item::after {
                    content: '';
                    position: absolute;
                    left: 50%;
                    transform: translateX(-50%);
                    top: -8px;
                    height: 7px;
                    width: 100px;
                    background-color: var(--primary-color);
                    border-radius: 5px 5px 0 0;
                }
        
                .shahkar-profile-buy-list {
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: space-between;
                    margin-bottom: 20px;
                }
        
                .shahkar-profile-buy-list-item-a {
                    flex: 1 1 32%;
                    margin: 5px;
                    text-decoration: none;
                    color: var(--product-name-color);
                }
        
                .shahkar-profile-buy-list-item {
                    display: flex;
                    align-items: center;
                    padding: 10px;
                    background: var(--dashboad-bg-color);

                    border-radius: 10px;
                }
        
                .shahkar-profile-buy-list-item img {
                    max-width: 100px;
                    border-radius: 7px;
                    max-height: 60px;
                    margin-left: 10px;
                }
        
                .shahkar-profile-buy-list-item-detail {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    flex: 1;
                    min-width: 0;
                }
        
                .shahkar-profile-buy-list-item-detail .shahkar-product-name {
                    font-family: var(--shahkar-bold-font-style);
                    margin-bottom: 10px;
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }
        
                .shahkar-profile-buy-list-item-detail .shahkar-product-price {
                    font-size: .8em;
                    color: var(--primary-color);
                    background: var(--dashboard-menu-down-icon-bg-color);
                    width: fit-content;
                    padding: 2px 5px;
                    border-radius: 5px;
                    margin-top: 10px;
                }
        
                @media (max-width: 768px) {
                    .shahkar-profile-buy-list-item-a {
                        flex: 0 0 100%;
                        margin:10px 0;
                    }
                }
/* end profile page style section */

@media screen and (max-width: 425px) {
    .shahkar-user-location-title {
        font-size: .7em;
    }

    .shahkar-user-location-bottom-left {
        width: 130px;
    }

    #one_map, #two_map {
        width: 130px;
    }
}

@media screen and (min-width: 1025px) {
    .dashboard aside {
        top: 0 !important;
        opacity: 1 !important
    }
}

@media screen and (max-width: 1024px) {

    .shahkar-Containers-mobile img.shahkar_mobile_slider {
        display: block;
    }

    .shahkar-Containers-desktop img.shahkar_desktop_slider {
        display: none;
    }

    .responsive-menu {
        display: flex
    }

    .dashboard aside {
        z-index: 1;
        position: fixed;
        left: 20px;
        top: 100%;
        opacity: 0;
        width: auto;
        right: 20px;
        min-height: auto;
        padding-bottom: 20px;
        border-radius: 10px 10px 0 0;
        border: 1px solid var(--responsive-menu-border-color)
    }

    .dashboard main {
        width: 100%;
        margin-right: 0
    }

    .dashboard main .main-body {
        margin-bottom: 100px
    }

    .dashboard main .main-header .quick-access .access .counter {
        font-size: 1em
    }

    .dashboard main .main-header .profile {
        padding: 0
    }

    .dashboard main .main-header .profile .display-name span, .dashboard main .main-header .profile .dropdown-icon {
        display: none
    }

    .profile-setting .setting-tabs {
        width: 250px
    }

    .profile-setting .setting-body {
        width: calc(100% - 250px)
    }

    .wallet {
        flex-direction: column
    }

    .wallet .stats-list {
        display: flex;
        margin: 0 0 30px;
        flex-direction: row
    }

    .wallet .stats-list .stats-box {
        margin-bottom: 0
    }

    .wallet .stats-list .stats-box:last-child {
        margin: 0
    }

    .wallet .wallet-charge {
        padding: 0;
        margin: 0
    }


}

.admin-panel-link {
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 999;
    padding: 10px 15px;
    bottom: 30px;
    left: -140px;
    background: var(--primary-color);
    border-radius: 0 5px 5px 0;
    box-shadow: var(--primary-shadow) 0px 15px 25px;
}

.admin-panel-link:hover {
    left: 0 !important;
}

.admin-panel-link-icon {
    width: 30px;
    height: 30px;
    fill: var(--dashboard-counter-text-color);
}

.admin-panel-link-text {
    font-family: var(--shahkar-bold-font-style);
    font-size: .9em;
    display: inline-block;
    color: var(--dashboard-counter-text-color);
    margin-right: 15px;
}


@media screen and (max-width: 768px) {
    .download-app-box, .pop {
        height: auto
    }

    .admin-panel-link {
        bottom: 100px !important;
    }

    .friends .stats-box, .index-dashboard .stats-box, .profile-setting .setting-body .qr-code-box .qr-help {
        margin-right: 0 !important;
    }

    .lucky-wheel-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .shahkar-medium-popup {
        width: calc(100% - 40px);
        position: fixed;
        height: 100%;
        overflow: auto;
    }

    .shahkar-medium-popup {
        height: calc(100% - 40px);
        border-radius: 0;
    }

    .shahkar-medium-popup button {
        margin-bottom: 10px;
    }

    .shahkar-user-location-box {
        flex-direction: column:
    }

    .the_wheel {
        background-position: top !important;
        background-size: contain !important;
        padding: 3px 0 0 0;
        width: 85%;
        height: 85%;
    }

    .spotplayer-platforms {
        justify-content: center;
    }

    .shahkar-tracking-box {
        display: flex;
        flex-direction: column;
    }

    .shahkar-tracking-info {
        width: 100%;
        margin-left: 0;
    }

    .shahkar-tracking-order-list {
        width: 100%;
        margin-top: 20px;
    }

    .dashboard main {
        padding: 10px
    }

    .dashboard main .main-header .quick-access .access span, .single-notification .icon {
        display: none
    }

    .dashboard main .main-header .quick-access .access .icon {
        margin-right: 0;
        margin-left: 0;
    }


    table.custom-table {
        border: 0
    }

    table.custom-table caption {
        font-size: 1.3em
    }

    table.custom-table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px
    }

    table.custom-table tr {
        display: block;
        border: 1px solid var(--table-tr-border-color);
        border-radius: 10px;
        margin-bottom: 10px
    }

    table.custom-table td {
        border-bottom: 1px dashed var(--table-tr-border-color);
        display: block;
        font-size: .8em;
        text-align: left
    }

    table.custom-table td::before {
        content: attr(data-label);
        float: right;
        margin-left: 10px;
        color: var(--table-label-color);
        font-weight: 700;
    }

    table.custom-table td:last-child {
        border-bottom: 0
    }

    .pop {
        position: fixed;
        overflow-y: auto;
        max-height: 60%;
        width: calc(100% - 40px);
        border-radius: 10px
    }

    .auth-box, .dashboard main .main-body .body-des, .dashboard main .main-body .body-title, .wallet .wallet-charge-image {
        text-align: center
    }

    .auth-box .panel-form {
        text-align: right !important
    }

    .panel-form button, .panel-form input[type=submit] {
        width: 100%;
        padding: 15px 0
    }

    .chat-box .chat-body {
        padding: 0 0 0 10px
    }

    .chat-box .chat-body .receiver, .chat-box .chat-body .sender {
        width: fit-content;
        max-width:250px;
        text-align: justify
    }

    .multi-column .col {
        width: 100%;
        flex: auto;
        padding: 0;
        border-left: none;
        margin-bottom: 40px
    }

    .panel-form .inputs, .profile-setting, .stats-list, .wallet .stats-list {
        flex-direction: column
    }

    .limit-text {
        width: calc(100% - 20px)
    }

    .friends .stats-box, .index-dashboard .stats-box {
        margin: unset
    }

    table.custom-table tr:last-child {
        border: 1px solid var(--table-tr-border-color)
    }

    .panel-form .half-input, .profile-setting .setting-body, .profile-setting .setting-tabs {
        width: 100%
    }

    .profile-setting {
        align-items: center
    }

    .profile-setting .setting-body .profile-img {
        display: flex
    }

    .profile-setting .setting-body {
        margin-top: 30px;
        margin-right: 0
    }

    .profile-setting .setting-body .qr-code-box {
        flex-direction: column;
        justify-content: center;
        text-align: center
    }

    .profile-setting .setting-body .qr-code-box .qr-code {
        margin-bottom: 20px
    }

    .download-app-box .phone-mockup {
        display: none !important
    }

    .download-app-box .download-info {
        margin: 20px 0 0;
        text-align: center
    }

    .download-app-box .download-info .download-info-links {
        justify-content: center;
        flex-direction: column;
        align-items: center
    }

    .download-app-box .download-info .download-info-links a {
        margin: 5px 0
    }
    .shahkar-score-page-top{
        flex-direction:column;
        align-items:center;
    }
    .shahkar-score-page-center{
        flex-direction:column;
    }
    .shahkar-score-page-score-box{
        width:calc(100% - 30px);
    }
    .shahkar-score-page-score-guid-top,.shahkar-score-page-score-guid-bottom{
        width:100%;
    }
    .shahkar-score-page-bottom-right-convert-item-des .body-title ,.shahkar-score-page-bottom-right-convert-item-des .body-des{
        text-align:unset !important;
    }
    .shahkar-score-page-bottom{
        flex-direction:column;
    }
    .shahkar-score-page-bottom-right{
        width:100%;
    }
    .shahkar-score-page-bottom-left{
        border-right:unset;
        border-top:1px solid var(--shahkar-score-box-border-color);
        padding-top: 10px;
        margin-right: unset;
    }
}
