.ico {
    display: flex;
    align-items: center;
    justify-content: center;
    --ico-size: unset;
    min-width: var(--ico-size);
    width: var(--ico-size);
    height: var(--ico-size);
}

.fs-xxs {
    font-size: 12px;
}

.fs-xs {
    font-size: 13px;
}

.row-group {
    display: flex;
    align-items: center;
}

.col-group {
    display: flex;
    flex-direction: column;
}

.table-default td {
    padding: 4px 8px;
}

:root {
    --sidebar-width: 250px;
    --sidebar-transition: 0.3s;
}

.sidebar-fixed {
    padding-left: var(--sidebar-width);
}

.sidebar,
.sidebar-fixed {
    transition: var(--sidebar-transition);
}

.sidebar__toggler {
    position: absolute;
    right: calc(var(--btn-size) * -1);
    top: 0px;
    border-left: none;
}

.open-text {
    transition: var(--sidebar-transition);
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sidebar__header {
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0 20px;
}


.sidebar__search {
    padding: 0 12px;
    width: 100%;
}

.sidebar__search .wrapper-input {
    background-color: #E1F0F9;
}

.sidebar__search .wrapper-input .input {
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
}

.sidebar__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 12px;
    flex: auto;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar__footer {
    margin: 0 12px;
}

.nav__title {
    color: #4C687C;
    font-size: 10px;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0 12px;
    margin-bottom: 4px;
    transition: var(--sidebar-transition);
}

.nav__link .btn {
    gap: 12px;
    width: 100%;
    justify-content: start;
    white-space: nowrap;
}

.nav__link .btn .ico {
    color: var(--secondaryTextColor);
    --ico--size: 22px;
}

.nav__link.active .btn {
    background-color: var(--primary);
    color: var(--white);
}

.nav__link.active .btn .ico {
    color: var(--white);
}

.image-wrapper {
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
}

.user-block {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    margin: 12px 20px;
    border-bottom: 1px solid #D2E4F0;
    white-space: nowrap;
    overflow: hidden;
}

.user-block__avatar {
    --ico-size: 36px;
    border-radius: 360px;
    background: radial-gradient(61.00% 50.00% at 50% 0%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 100%), var(--primary);
    box-shadow: inset 1px -2px 5px 0px rgba(255, 255, 255, 0.6);
    font-size: 20px;
    font-weight: 500;
    font-family: var(--fotnFamily);
    color: var(--white);
}

.user-block__name {
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    margin-bottom: 6px;
}

.user-block__info {
    color: #4C687C;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
}

.card-chart {
    padding: 18px 20px;
    gap: 20px;
}

.card-chart .card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.card-chart .card__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chart-wrapper {
    display: flex;
    align-items: center;
    gap: 59px;
    flex-wrap: wrap;
}

.doughnut-chart {
    width: 158px;
    height: 158px;
}

.bar-chart {
    width: 363px;
    height: 108px;
}


.legend__item.disabled {
    text-decoration: line-through;
}

.legend__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-wrap: wrap;

}

.legend__item {
    cursor: pointer;
}

.legend__label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondaryTextColor);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.legend__icon {
    display: block;
    width: 20px;
    height: 12px;
    border-radius: 4px;
}

.legend__value {
    color: var(--defaultTextColor);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.legend__total {
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.chart__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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


.content.settings-page {
    --ds-aside-width: 300px;
    --ds-gap: 44px;
    padding-top: 32px !important;
    padding-bottom: 32px !important;

}

.settings-page .container {
    max-width: 930px;
}

.double-section {
    display: flex;
    flex-direction: row;
    gap: var(--ds-gap);

}

.double-section__aside {
    width: var(--ds-aside-width, auto);
    flex: 0 0 var(--ds-aside-width, auto);
}

.double-section__content {
    flex: auto;
}


.settings-nav {
    padding-left: 18px;
}

.settings-nav li:not(:last-child) {
    border-bottom: 1px solid var(--primary-light);
}

.settings-nav .settings-nav__link {
    padding: 16px;
    padding-left: 0;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0px;
}

.settings-nav .settings-nav__link:not(.active-tab) .ico {
    color: #AABDCC;
}

.settings-nav .settings-nav__link.active-tab {
    color: var(--primary);
    font-weight: 500;
}

.settings-page .tabs-item {
    flex-direction: column;
    gap: 32px;
}

.settings-page .upload-block {
    --image-size: 70px;
    gap: 32px;
}

.upload-block__image--placeholder {
    font-size: 22px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0px;
    text-align: center;
    border: none;
    color: var(--white);
}

.settings-card {
    padding-left: 18px;
}

.settings-card__item {
    display: flex;
    align-items: center;
    padding: 16px;
    padding-left: 0;
    padding-right: 16px;
    gap: 14px;
}

.settings-card__item-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0px;
    flex: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.settings-card .settings-card__item:not(:last-child) {
    border-bottom: 1px solid var(--primary-light);
}

.page-heading .title {
    font-size: 36px;
    font-weight: 500;
    line-height: 42px;
}

.page-heading .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--secondaryTextColor);
}


.heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.heading .title {
    font-size: 20px;
    font-weight: 500;
    line-height: 23px;

}

.heading .description {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    color: var(--secondaryTextColor);
}

.dropdown-list__item {
    padding: 4px 8px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    padding: 22px 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 400;
    line-height: 15px;
    color: var(--secondaryTextColor);
}

.breadcrumbs li:not(:last-child)::after {
    display: flex;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.33301 13.3333L11.6663 9.99999L8.33301 6.66666' stroke='%236F8FA6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-size: 20px;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    margin: 0 6px;
}

.breadcrumbs li:last-child {
    font-weight: 500;
    color: var(--defaultTextColor);
    pointer-events: none;
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.orders-page {
    --ds-aside-width: 340px;
    --ds-gap: 60px;
    height: calc(100vh - var(--header-fixed-padding));
}

.orders-page>.container {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: auto;
    overflow: auto;
}

.orders-page .double-section {
    flex: auto;
    overflow: hidden;
}

.orders-page .double-section__aside {
    height: 100%;
}

.orders-page .double-section__aside .card-list {
    overflow: auto;
    height: 100%;
    padding-bottom: 32px;
}

.orders-page .double-section__content {
    border-left: 2px solid #EEF2F5;
    padding-left: var(--ds-gap);
    margin-bottom: 32px;
}

.card-order {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 2px solid var(--primary-light);
    padding: 16px;
}

.card-order .card__body {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 16px;

}

.card-order .card__image,
.order-image {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: var(--secondary);
    padding: 10px;
}

.card-order .card__image img,
.order-image img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.card-order .card__details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
}

.card-order .card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-order .card__price {
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0px;
}

input~.card-order {
    cursor: pointer;
}

input:checked~.card-order {
    border-color: var(--primary);
}

.btn--xxs {
    padding: 2px 10px;
    --btn-size: 26px;
}

.card-address {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.card-address .card__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 90px;
}

.card-address .card__label {
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    color: var(--secondaryTextColor);
}

.card-address .card__value {
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
}

.card-border.card-border--between {
    padding-left: 20px;
}

.card-border--between .card-border__item {
    padding: 16px;
    padding-left: 0;
    padding-right: 16px;
}

.card-border--between .card-border__item:not(:last-child) {
    border-bottom: 1px solid var(--primary-light);
}

.indicator-wrapper {
    position: relative;
}

.indicator {
    --indicator-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    line-height: var(--indicator-size);
    width: var(--indicator-size);
    min-width: var(--indicator-size);
    height: var(--indicator-size);
    text-align: center;
    border: 3px solid var(--white);
    background-color: var(--primary);
    color: var(--white);
    position: absolute;
    border-radius: 360px;
}

.card-order .card__image .indicator {
    top: -3px;
    left: -3px;
}

.product-row {
    --bs-gutter-x: 70px;
    --bs-gutter-y: 35px;
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
    width: 100%;
    padding: 50px;
    aspect-ratio: 572 / 450;
    border-radius: 32px
}

.product-image img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.product-details__price {
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    color: var(--primary);
}

.product-details__price b {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
}

.product-details__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 22px 0;
    border-color: var(--primary-light);
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-style: solid;
    gap: 32px;
}

.product-details__actions .row-group {
    gap: 12px;
}

.product-details__desctiption {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--secondaryTextColor);
}

.swiper.products-swiper:after,
.swiper.products-swiper::before {
    content: "";
    position: absolute;
    height: 100%;
    width: calc((100vw - 1250px) / 2);
    top: 0;
    z-index: 5;
}

.swiper.products-swiper::after {
    background: linear-gradient(270deg, #FFFFFF 11.43%, rgba(255, 255, 255, 0) 100%);
    right: 0;
    transform: translateX(100%);
}

.swiper.products-swiper::before {
    background: linear-gradient(90deg, #FFFFFF 11.43%, rgba(255, 255, 255, 0) 100%);
    left: 0;
    transform: translateX(-100%);

}



.select-count.select-count--sm {
    gap: 12px;
}

.select-count.select-count--sm .btn--secondary {
    width: 28px;
    height: 28px;
    --btn-size: 28px;
}

.select-count.select-count--sm .select-count__value {
    font-size: 15px;
    font-weight: 400;
    line-height: 17px;
}