@charset "UTF-8";
 :root {
    --mainColor: #217b00;
}

* {
    padding: 0;
    margin: 0;
    border: 0
}

*,
 :after,
 :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

aside,
footer,
header,
nav,
section {
    display: block
}

body {
    line-height: 1;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

input::-ms-clear {
    display: none
}

button {
    cursor: pointer
}

.pagination__item--disabled {
    pointer-events: none;
    opacity: 0.5;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

a,
a:visited {
    text-decoration: none
}

a:hover {
    text-decoration: none
}

ul li {
    list-style: none
}

img {
    vertical-align: top
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit
}

main {
    min-height: calc(100vh - (358.406px + 81.297px));
}

.container {
    max-width: 1606px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px
}

body {
    font-family: Manrope, sans-serif
}

body.locked {
    overflow: hidden
}

body.dark {
    background: #242424
}

@-webkit-keyframes fade {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes fade {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.main-title {
    color: #333;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px
}

.secondary-title {
    color: #333;
    font-size: 60px;
    font-weight: 700;
    padding: 40px 0
}

.main-subtitle {
    color: #7a7a7a;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px
}

 :root {
    --icon-fill-color: rgb(33, 123, 0)
}

.btn-outline {
    font-family: Manrope, sans-serif;
    color: #217b00;
    font-size: 24px;
    font-weight: 700;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px solid #217b00;
    border-radius: 10px;
    background: #fff;
    gap: 10px;
    width: 267px;
    height: 64px;
    -webkit-transition: background .1s ease, color .1s ease, border-color .1s ease;
    -o-transition: background .1s ease, color .1s ease, border-color .1s ease;
    transition: background .1s ease, color .1s ease, border-color .1s ease;
    transition-property: background, color, border-color, --icon-fill-color;
    -webkit-transition-duration: .1s;
    -o-transition-duration: .1s;
    transition-duration: .1s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease
}

.btn-outline:hover svg path {
    fill: var(--icon-fill-color);
    -webkit-transition: fill .1s ease;
    -o-transition: fill .1s ease;
    transition: fill .1s ease
}

.btn-outline:hover {
    background: #217b00;
    color: #fff;
    --icon-fill-color: #ffffff
}

.btn-main {
    font-family: Manrope, sans-serif;
    font-weight: 700;
    border-radius: 10px;
    background: #217b00;
    color: #fff;
    font-size: 24px;
    text-align: center;
    line-height: 100%;
    /*width: 267px;*/
    height: 64px;
    gap: 10px;
    -webkit-transition: .1s;
    -o-transition: .1s;
    transition: .1s
}

.btn-main:hover {
    background: #144a00;
    color: #fff;
}

.search-main {
    font-family: Manrope, sans-serif;
    border-radius: 10px;
    background: #d3d3d3;
    opacity: .5;
    outline: 0;
    border: none;
    padding: 12px 58px 12px 32px;
    color: #7a7a7a;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px
}

.search-main__wrapper {
    position: relative
}

.search-main__wrapper:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 15px;
    height: 16px;
    width: 16px;
    background-image: url(../../img/search.svg);
    background-repeat: no-repeat
}

.progress-bar-container {
    width: 100%;
    border-radius: 24px;
    background: #f4f4ff;
    max-width: 387px;
    height: 20px
}

.progress-bar {
    height: 20px;
    text-align: center;
    border-radius: 24px
}

.input-main {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    padding: 11px 11px;
    outline: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #7a7a7a;
    border-radius: 10px;
    background: #fff;
    width: 100%;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    margin-top: 10px;
    color: #000
}

.input-main:focus {
    border: 1px solid #217b00;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.btn-google {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px
}

.login__form-input+.select-arrow {
    position: absolute;
    right: 20px;
    top: calc(50% - 3px)
}

.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%
}

.login__form-input::-ms-expand {
    display: none
}

.drop {
    position: relative;
    min-width: 267px
}

.drop .drop-select {
    outline: 0;
    border: none;
    padding: 12px 58px 12px 20px;
    cursor: pointer;
    position: relative;
    border-radius: 10px;
    background: #d3d3d3;
    opacity: .5
}

.drop .drop-select:focus {
    border-radius: 10px 10px 0 0
}

.drop .drop-select:before {
    content: "";
    position: absolute;
    right: 10px;
    top: 15px;
    height: 10px;
    width: 17px;
    background-image: url(../../img/dropdown.svg);
    background-repeat: no-repeat
}

.drop .drop-select span {
    color: #7a7a7a;
    font-weight: 500;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px
}

.drop .drop-select i.arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.drop .drop-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    background: #e9e9e9;
    border-radius: 0 0 10px 10px;
    padding: 0;
    margin: 0;
    list-style-type: none;
    /* display: none */
}

.drop .drop-list li {
    padding: 12px 58px 12px 20px;
    cursor: pointer;
    color: #7a7a7a;
    font-family: Manrope, sans-serif;
    min-width: 267px;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px
}

.drop .drop-list li:hover {
    background-color: #c2c2c2
}

.drop .drop-select.active {
    border-radius: 10px 10px 0 0
}

.drop-select-catalog {
    padding: 12px 58px 12px 36px !important
}

.drop-select-catalog:after {
    content: "";
    position: absolute;
    left: 12px;
    top: 15px;
    height: 16px;
    width: 12px;
    background-image: url(../../img/location.svg);
    background-repeat: no-repeat
}

.form-group {
    width: 100%
}

.header.fixed {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2
}

.navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0;
    position: relative
}

.navbar__left {
    gap: 25px
}

.navbar__left a {
    z-index: 1232
}

.logo a {
    color: #fff
}

.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px
}

.menu__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

.menu__item-link {
    color: #333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-transition: .5s color;
    -o-transition: .5s color;
    transition: .5s color
}

.burger {
    display: none;
    background: 0 0;
    z-index: 3
}

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

.dropdown-content {
    display: none;
    position: absolute;
    background: #fff;
    border-radius: 7px;
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
    z-index: 1
}

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

.dropdown-content a:hover {
    background-color: #f1f1f1
}

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

.search__city {
    text-align: left;
    position: absolute;
    left: 230px
}

.search__btn,
li {
    cursor: pointer
}

.search__btn i {
    font-size: 31px;
    -webkit-transition: -webkit-transform .3s linear;
    transition: -webkit-transform .3s linear;
    -o-transition: transform .3s linear;
    transition: transform .3s linear;
    transition: transform .3s linear, -webkit-transform .3s linear
}

.wrapper.active .search__btn i {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.content {
    display: none;
    position: absolute;
    padding: 20px;
    top: 70px;
    background: #fff;
    border-radius: 7px;
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
    left: 142px
}

.wrapper.active .content {
    display: block;
    z-index: 100
}

.content .search {
    position: relative
}

.search i {
    top: 50%;
    left: 15px;
    color: #999;
    font-size: 20px;
    pointer-events: none;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute
}

.search input {
    height: 50px;
    width: 100%;
    outline: 0;
    font-size: 17px;
    border-radius: 5px;
    padding: 0 20px 0 43px;
    border: 1px solid #b3b3b3
}

.search input:focus {
    padding-left: 42px;
    border: 2px solid #207600
}

.search input::-webkit-input-placeholder {
    color: #bfbfbf
}

.search input::-moz-placeholder {
    color: #bfbfbf
}

.search input:-ms-input-placeholder {
    color: #bfbfbf
}

.search input::-ms-input-placeholder {
    color: #bfbfbf
}

.search input::placeholder {
    color: #bfbfbf
}

.content .options {
    margin-top: 10px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 7px
}

.options::-webkit-scrollbar {
    width: 7px
}

.options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 25px
}

.options::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 25px
}

.options::-webkit-scrollbar-thumb:hover {
    background: #b3b3b3
}

.options li {
    padding: 15px 13px;
    font-size: 18px
}

.options li:hover,
li.selected {
    border-radius: 5px;
    background: #e9e9e9
}

.menu__item-shop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s
}

.hero {
    padding: 40px 0 100px
}

.hero__category-item {
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s
}

.hero__category-item a {
    display: block;
    text-decoration: none;
    color: #333
}

.hero__category-item a:hover {
    color: #217b00
}

.hero__category-item a:hover .hero__category-name {
    color: inherit
}

.hero__category-item .hero__category-name {
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s
}

.hero__title {
    color: #333;
    margin-bottom: 20px;
    font-size: 80px;
    font-weight: 700;
    line-height: 110%;
    text-align: left
}

.hero__subtitle {
    color: #333;
    font-size: 24px;
    font-weight: 500;
    line-height: 110%
}

.hero__top {
    margin-bottom: 40px
}

.hero__search {
    margin-bottom: 20px
}

.hero__search-btn {
    font-family: Manrope, sans-serif;
    border-radius: 10px;
    background: #217b00;
    max-width: 267px;
    width: 100%;
    height: 55px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    font-size: 24px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s
}

.hero__search-btn:hover {
    background: #144a00
}

.hero__search-item {
    display: flex;
    gap: 24px;
}

.hero__search-list {
    gap: 10px;
    margin-bottom: 70px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.hero__search-category {
    border-radius: 20px;
    background: #e9e9e9;
    padding: 10px 15px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s
}

.hero__search-category:hover {
    background: #c2c2c2
}

.hero__search-link {
    color: #333;
    font-size: 18px;
    font-weight: 500
}

.hero__category {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px
}

.hero__category::-webkit-scrollbar {
    height: 4px;
    background: #dcdcdc
}

.hero__category::-webkit-scrollbar-thumb {
    background-color: #217a00;
    border-radius: 10px
}

.hero__category-img {
    aspect-ratio: 1 / 1;
    margin-bottom: 20px;
    height: auto;
    max-width: 100%;
    min-width: 164px
}

.hero__category-name {
    color: #333;
    font-size: 24px;
    font-weight: 700
}

.hero__search-input {
    position: relative
}

.wrapper .hero__search-input {
    background: #fff;
    gap: 24px;
    border-radius: 5px;
    max-width: 100%;
    width: 100%;
    position: relative
}

.hero__search-input input {
    height: 55px;
    width: 100%;
    outline: 0;
    border: none;
    padding-left: 54px;
    border-radius: 10px;
    background: #d3d3d3;
    opacity: .5;
    color: #7a7a7a;
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s
}

.hero__search-input input:hover {
    background-color: #c2c2c2
}

.hero__search-input.active input {
    border-radius: 5px 5px 0 0
}

.hero__search-input .autocom-box {
    padding: 0;
    opacity: 0;
    pointer-events: none;
    max-height: 280px;
    overflow-y: auto
}

.hero__search-input.active .autocom-box {
    padding: 13px 8px;
    opacity: 1;
    pointer-events: auto;
    background-color: #f7f7f7;
    position: absolute;
    z-index: 1;
    width: 100%
}

.autocom-box li {
    list-style: none;
    padding: 8px 12px;
    display: none;
    width: 100%;
    border-radius: 3px;
    cursor: pointer
}

.hero__search-input.active .autocom-box li {
    display: block
}

.autocom-box li:hover {
    background: #efefef
}

.hero__search-input .icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 55px;
    width: 55px;
    text-align: center;
    line-height: 55px;
    font-size: 32px;
    color: #644bff;
    cursor: pointer
}

.categoryes {
    padding: 0 0 100px 0
}

.categoryes__main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

.categoryes__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.categoryes__link {
    -webkit-transition: .1s;
    -o-transition: .1s;
    transition: .1s;
    padding: 10px
}

.categoryes__link:hover {
    border-radius: 10px;
    background: #e9e9e9;
    padding: 10px
}

.categoryes__link-text {
    color: #333;
    font-size: 16px;
    font-weight: 500
}

.categoryes__link-bold {
    color: #333;
    font-size: 16px;
    font-weight: 700
}

.categoryes__link-number {
    color: #7a7a7a;
    font-size: 12px;
    font-weight: 500;
    text-align: left
}

.professional {
    padding: 0 0 30px 0
}

.professional__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.professional__item {
    overflow: hidden;
    border-radius: 20px;
    -webkit-box-shadow: 2px 2px 9px 0 #d7d7d7;
    box-shadow: 2px 2px 9px 0 #d7d7d7;
    background: #fff
}

.professional__item-img img {
    width: 100%;
    display: block;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover
}

.professional__item-content {
    padding: 20px;
    text-align: left;
    position: relative
}

.professional__item-avatar img {
    width: 80px;
    border-radius: 50%;
    border: 3px solid #fff;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    position: absolute;
    left: 20px;
    top: -40px
}

.professional__item-name {
    margin-top: 30px;
    color: #333;
    font-size: 20px;
    font-weight: 600
}

.professional__item-info {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    margin: 15px 0 20px
}

.professional__item-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    background-color: #217b00;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    color: #fff !important;
    font-size: 24px;
    font-weight: 700;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.professional__item-btn:hover {
    background-color: #144a00
}

.professional .rating {
    color: gold;
    font-size: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px
}

.professional .rating-count {
    color: #777;
    font-size: 14px
}

.professional-btn,
.clause__title-btn {
    gap: 30px
}

.swiper-horizontal {
    padding: 10px
}

.professional-top,
.clause-top.row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: unset;
    font-weight: 800
}

.swiper-button-next,
.swiper-button-prev {
    position: relative;
    background-color: #fff;
    border: 2px solid green;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: green
}

.swiper::-webkit-scrollbar {
    height: 4px;
    background: #dcdcdc
}

.swiper::-webkit-scrollbar-thumb {
    background-color: #217a00;
    border-radius: 10px
}

.intro {
    padding-top: 20px
}

.breadcrumbs {
    margin-bottom: 55px
}

.breadcrumbs__list-item {
    display: inline-block;
    padding-right: 14px;
    margin-right: 5px;
    position: relative
}

.breadcrumbs__list-item a {
    color: #7a7a7a;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%
}

.breadcrumbs__list-item:last-child {
    padding-right: 0;
    margin-right: 0
}

.breadcrumbs__list-item::after {
    content: "-";
    position: absolute;
    right: 0;
    width: 6px;
    height: 9px;
    top: 2px
}

.breadcrumbs__list-item:last-child a,
.breadcrumbs__list-item:last-child span {
    color: #333;
    font-size: 16px;
    font-weight: 500
}

.breadcrumbs__list-item:last-child::after {
    display: none
}

.catalog__title {
    margin-bottom: 26px;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px
}

.catalog__filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.filter-btn button {
    margin: 0;
    padding: 0;
    background-color: transparent;
    border: none;
    cursor: pointer
}

.filter-btn button+.filter-btn button {
    margin-left: 10px
}

.filter-select {
    margin-right: 34px;
    font-size: 14px;
    line-height: 17px;
    border: 1.5px solid #d7d9df
}

.filter-btn__grid {
    width: 26px;
    height: 21px
}

.filter-btn__line {
    width: 25px;
    height: 19px
}

.filter-button {
    opacity: .3
}

.filter-button--active {
    opacity: 1
}

.catalog__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.acide__btn {
    display: none
}

.catalog__inner-aside {
    min-width: 267px;
    margin-right: 24px
}

.catalog__inner-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px
}

.product-item__wrapper.product-item__wrapper--list {
    width: 100%
}

.product-item {
    width: 100%
}

.pagination {
    width: 100%;
    margin-top: 70px
}

.pagination__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px
}

.pagination__item {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #217b00;
    border-radius: 8px;
    background: #fff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.pagination__item a {
    color: #217b00;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px
}

.pagination__item--active {
    background: #217b00
}

.pagination__item--active a {
    color: #fff
}

.pagination__item--next {
    padding: 0 31px 0 12px;
    position: relative;
    width: auto
}

.pagination__item--prev {
    padding: 0 31px 0 24px;
    position: relative;
    width: auto
}

.a-prev {
    margin-left: 20px;
}

.pagination__item--next:before {
    content: "";
    position: absolute;
    right: 14px;
    top: 14px;
    height: 10px;
    width: 6px;
    background-image: url(../../img/next.svg);
    background-repeat: no-repeat
}

.pagination__item--prev:before {
    content: "";
    position: absolute;
    left: 14px;
    top: 14px;
    height: 10px;
    width: 6px;
    background-image: url(../../img/prev.svg);
    background-repeat: no-repeat;
    background-position: center;
    /* Центрируем иконку по горизонтали */
}

.pagination__item a {
    display: block
}

.aside-filter__tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.aside-filter__tab {
    width: 50%;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: .09em;
    text-transform: uppercase
}

.aside-filter__tab.tab--active {
    font-weight: 700
}

.aside-filter__tab.tab--active span {
    display: inline-block;
    padding-bottom: 7px
}

.filter__item-drop {
    position: relative;
    cursor: pointer
}

.filter__item-drop::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 12px;
    height: 8px;
    background-image: url(../../images/content/arrow-down.svg);
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all, .3s;
    -o-transition: all, .3s;
    transition: all, .3s
}

.filter__item-drop--active::before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.aside-filter__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px
}

.aside-filter__label {
    font-size: 14px;
    line-height: 17px
}

.jq-checkbox,
.jq-radio {
    width: 14px;
    height: 14px;
    margin-right: 8px;
    vertical-align: -2px;
    border-radius: 1px;
    -webkit-box-shadow: none;
    box-shadow: none
}

.jq-checkbox.checked,
.jq-radio.checked {
    border: none
}

.jq-checkbox.checked .jq-checkbox__div {
    width: 8px;
    height: 6px;
    margin: 4px 0 0 3px;
    background-image: url(../../images/content/checked-icon.svg);
    border: none;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0)
}

.jq-radio.checked .jq-radio__div {
    display: none
}

.aside-filter__content.aside-filter__content-radio {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.irs--flat {
    width: 100%
}

.irs--flat .irs-max,
.irs--flat .irs-min {
    top: 55px;
    padding: 0;
    padding-left: 27px;
    font-family: Barlow, sans-serif;
    font-size: 14px;
    line-height: 17px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    text-shadow: none;
    background-color: transparent;
    border-radius: 0
}

.irs--flat .irs-max::before,
.irs--flat .irs-min::before {
    position: absolute;
    left: 0;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 400;
    font-size: 14px
}

.irs-min::before {
    content: "от"
}

.irs-max::before {
    content: "до"
}

.irs--flat .irs-line {
    top: 26.5px;
    height: 1px;
    background-color: #e0e0e0;
    border-radius: 0
}

.irs--flat .irs-bar {
    height: 3px
}

.irs--flat .irs-handle {
    top: 23px;
    width: 8px;
    height: 8px;
    border-radius: 50%
}

.irs--flat .irs-handle i:first-child {
    display: none
}

.filter__item-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 34px
}

.filter__item-title {
    padding-left: 26px;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px
}

.filter__item-select {
    font-family: Barlow, sans-serif;
    font-size: 14px;
    line-height: 17px;
    color: #48494d
}

.jq-selectbox__select {
    height: 32px;
    padding: 0 30px 0 10px;
    text-shadow: none;
    border: none;
    border-radius: 0;
    background: 0 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.jq-selectbox__select:active,
.jq-selectbox__select:hover {
    background: 0 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.jq-selectbox__trigger {
    top: 12px;
    right: 9px;
    width: 12px;
    height: 8px;
    background-image: url(../../images/content/arrow-down.svg);
    border-left: none
}

.jq-selectbox__trigger-arrow {
    border: none
}

.jq-selectbox.focused .jq-selectbox__select {
    border: none
}

.jq-selectbox li:hover {
    background: rgba(107, 126, 172, .05);
    color: rgba(0, 0, 0, .6)
}

.jq-selectbox li.selected {
    background: rgba(107, 126, 172, .05);
    color: rgba(0, 0, 0, .6)
}

.jq-selectbox li {
    color: rgba(0, 0, 0, .6)
}

.jq-selectbox__dropdown {
    padding-top: 15px;
    border-radius: 0
}

.aside-filter__more {
    margin-top: 15px
}

.aside-filter__btn {
    color: #144a00;
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    background-color: unset
}

.aside-filter__search {
    width: 100%;
    height: 30px;
    margin-bottom: 20px;
    margin-top: 10px;
    padding: 0 20px;
    font-size: 12px;
    line-height: 14px;
    border: 1px solid #e0e0e0
}

.aside-filter__search::-webkit-input-placeholder {
    color: #bdbec2
}

.aside-filter__search::-moz-placeholder {
    color: #bdbec2
}

.aside-filter__search:-ms-input-placeholder {
    color: #bdbec2
}

.aside-filter__search::-ms-input-placeholder {
    color: #bdbec2
}

.aside-filter__search::placeholder {
    color: #bdbec2
}

.product-item__wrapper {
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    gap: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #c2c2c2
}

.product-item__img {
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
    max-height: 300px;
}

.product-buttons {
    text-align: right;
    margin-left: auto;
}

.product-buttons__mobile {
    gap: 20px;
    margin-bottom: 10px;
    width: 100%
}

.product-item__wrapper.row {
    width: 100%;
}

.product-buttons__order {
    width: 100%
}

.product-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.product-info__top {
    gap: 10px;
    margin-bottom: 24px
}

.product-info__bottom {
    margin-top: auto;
    gap: 15px
}

.product-info__title {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px
}

.product-info__description {
    color: #333;
    font-size: 18px;
    font-weight: 600
}

.product-info__street {
    color: #333;
    font-size: 18px;
    font-weight: 600
}

.product-info__rating {
    gap: 4px;
    color: #fdd400;
    font-size: 16px;
    font-weight: 700
}

.product-info__rating p {
    color: #333;
    font-size: 16px;
    font-weight: 500
}

.product-info__avatar {
    width: 50px;
    height: 50px
}

.aside-filter__title {
    margin-bottom: 15px;
    color: #2c2a30;
    font-size: 24px;
    font-weight: 700;
    cursor: auto
}

.aside-filter__item {
    margin-bottom: 40px
}

.tag-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 15px;
    background-color: #217b00;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    outline: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 500
}

.tag-button:hover {
    background-color: #144900
}

.tag-button .tag-button {
    display: inline-block;
    font-size: 20px;
    line-height: 1;
    color: #217b00;
    cursor: pointer
}

.catalog__filter-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px
}

.tag-button-close {
    background-color: #fff;
    color: #217b00;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: relative
}

.tag-button-close:before {
    content: "";
    position: absolute;
    left: 7px;
    top: 7px;
    height: 10px;
    width: 10px;
    background-image: url('/assets/img/close.svg');
    background-repeat: no-repeat
}

.info {
    padding-bottom: 60px
}

.info__title {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px
}

.info__text {
    color: #333;
    font-size: 18px;
    font-weight: 500
}

.info__item {
    margin-bottom: 20px
}

.catalog {
    padding-bottom: 60px
}

.catalog__drop {
    margin-bottom: 40px
}

.catalog__search-input {
    width: 267px
}

.switch__catalog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px
}

.switch__catalog-title {
    font-weight: 700
}

.switch__catalog-qul {
    font-size: 14px;
    color: grey
}

.person {
    padding-top: 40px
}

.person__breadcrumbs {
    display: block;
    margin-bottom: 20px
}

.specialist__person {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px
}

.specialist__person-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px
}

.specialist__person-bottom {
    padding-bottom: 20px;
    border-bottom: 1px solid #c2c2c2
}

.specialist__person-title {
    color: #333;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px
}

.specialist__person-info {
    color: #333;
    font-size: 18px;
    font-weight: 500
}

.specialist__person-name {
    color: #333;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px
}

.specialist__person-stars {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px
}

.specialist__person-quli {
    color: #333;
    font-size: 18px;
    font-weight: 500
}

.specialist__person-stats {
    margin-bottom: 12px
}

.specialist__person-rating p {
    color: #333;
    font-size: 16px;
    font-weight: 600
}

.specialist__person-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.specialist__person-img {
    width: 267px;
    height: 267px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px
}

.project>.container {
    padding: 60px 15px 20px;
    border-bottom: 1px solid #c2c2c2
}

.project__title {
    color: #333;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px
}

.project__btn {
    text-align: center
}

.project__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 40px;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    margin-bottom: 40px
}

.project__list::-webkit-scrollbar {
    height: 4px;
    background: #dcdcdc
}

.project__list::-webkit-scrollbar-thumb {
    background-color: #217a00;
    border-radius: 10px
}

.project__item img {
    margin-bottom: 20px;
    height: auto;
    max-width: 100%;
    width: 100%
}

.project__item-name {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    line-height: 110%
}

.project__item-bottom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 5px
}

.contact>.container {
    padding: 60px 15px 20px;
    border-bottom: 1px solid #c2c2c2
}

.contact__title {
    color: #333;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px
}

.contact__info {
    color: #333;
    font-size: 24px;
    font-weight: 700
}

.contact__info-list {
    padding-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px
}

.contact__info-name {
    color: #333;
    font-size: 24px;
    font-weight: 700
}

.contact__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.contact__item-title {
    color: #7a7a7a;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px
}

.awards>.container {
    padding: 60px 15px 20px;
    border-bottom: 1px solid #c2c2c2
}

.awards__title {
    color: #333;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px
}

.access>.container {
    padding: 60px 15px 20px;
    border-bottom: 1px solid #c2c2c2
}

.access__title {
    color: #333;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px
}

.access__info {
    font-size: 24px;
    font-weight: 700
}

.access__info a {
    color: #217b00;
    -webkit-text-decoration: #7a7a7a;
    text-decoration: #7a7a7a;
    text-decoration: underline
}

.reviews>.container {
    padding: 60px 15px 20px;
    /*border-bottom: 1px solid #c2c2c2*/
}

.reviews__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px
}

.reviews__buttons {
    text-align: center
}

.reviews__item {
    border-radius: 20px;
    background: #f4f4ff;
    padding: 20px;
    position: relative
}

.reviews__item-date {
    position: absolute;
    right: 20px;
    bottom: 20px
}

.reviews__item-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px
}

.reviews__item-info {
    margin-bottom: 10px
}

.reviews__item-like {
    padding-left: 22px;
    position: relative;
    margin-top: 13px;
    color: #7a7a7a;
    font-size: 15px;
    font-weight: 400;
    line-height: 120%
}

.reviews__item-like:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 16px;
    width: 16px;
    background-image: url(../../img/like.svg);
    background-repeat: no-repeat
}

.reviews__item-name {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 120%
}

.reviews__item-stars {
    font-size: 24px;
    color: #fdd400
}

.reviews__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px
}

.reviews__top-title {
    color: #333;
    font-size: 32px;
    font-weight: 800
}

.reviews__filter {
    margin-bottom: 24px;
    gap: 25px
}

.reviews__quality {
    padding-bottom: 20px;
    border-bottom: 1px solid #c2c2c2;
    margin-bottom: 20px
}

.reviews__quality-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 24px;
    font-weight: 500;
    line-height: 120%
}

.reviews__quality-item p {
    min-width: 220px
}

.reviews__quality-item span {
    color: #7a7a7a;
    font-size: 20px;
    font-weight: 400
}

.reviews__quality-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px
}

.reviews__quality-top {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.reviews__quality-stars {
    color: #ffd600;
    margin-right: 3px
}

.reviews__quality-number {
    color: #7a7a7a;
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    margin-left: 20px
}

.reviews__item-info {
    max-height: 97px;
    overflow: hidden;
    -webkit-transition: max-height .3s ease;
    -o-transition: max-height .3s ease;
    transition: max-height .3s ease
}

.expanded {
    max-height: 1000px
}

.toggle-button {
    padding-right: 25px;
    background-color: unset;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: #217b00;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    -webkit-transition: background-color .3s ease;
    -o-transition: background-color .3s ease;
    transition: background-color .3s ease
}

.toggle-button::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 17px;
    height: 10px;
    background-image: url(../../img/arrow-bottom.svg);
    background-repeat: no-repeat;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    -webkit-transform: translateY(-50%) rotate(0);
    -ms-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0)
}

.toggle-button.expanded::before {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg)
}

.tags>.container {
    padding: 60px 15px 100px
}

.tags__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px
}

.tags__title {
    color: #333;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px
}

.tags__item {
    padding-right: 10px;
    position: relative
}

.tags__item:before {
    content: "·";
    position: absolute;
    right: 0;
    top: 2px
}

.tags__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px
}

.tags__link {
    color: #333;
    font-size: 18px;
    text-decoration: underline
}

.project__list .project__item {
    -webkit-transition: background-color .2s;
    -o-transition: background-color .2s;
    transition: background-color .2s
}

.project__list .project__item a {
    display: block;
    text-decoration: none;
    color: inherit
}

.project__list .project__item a:hover .project__item-name {
    color: #217b00
}

.journal__title {
    margin-bottom: 26px;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px
}

.journal__filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px
}

.journal__filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.journal__filter-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px
}

.journal__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.acide__btn {
    display: none
}

.journal__inner-aside {
    min-width: 267px;
    margin-right: 24px
}

.journal__inner-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px
}

.journal {
    padding-bottom: 60px
}

.journal-item__wrapper {
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    gap: 24px;
    padding-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #c2c2c2;
    width: 100%;
}

.journal-item__img {
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
    height: 203px
}

.journal-buttons {
    text-align: right
}

.journal-buttons__mobile {
    gap: 20px;
    margin-bottom: 10px
}

.journal-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    width: 100%;
}

.journal-info__top {
    gap: 10px
}

.journal-info__stars {
    position: absolute;
    right: 0;
    bottom: 0
}

.journal-info__stars span {
    padding-left: 26px
}

.journal-info__stars span:before {
    content: "";
    left: 0;
    top: 0;
    position: absolute;
    height: 16px;
    width: 16px;
    background-image: url(../../img/star-post.svg);
    background-repeat: no-repeat
}

.journal-info__bottom {
    gap: 10px
}

.journal-info__bottom p {
    font-size: 18px;
    font-weight: 600
}

.journal-info__bottom img {
    height: 32px;
    width: 32px
}

.journal-info__link {
    padding-right: 34px;
    position: relative;
    color: #217b00;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px
}

.journal-info__link:before {
    content: "";
    position: absolute;
    right: 0;
    top: 7px;
    height: 10px;
    width: 17px;
    background-image: url(../../img/arrow-bottom.svg);
    background-repeat: no-repeat
}

.journal-info__title {
    color: #333;
    font-size: 24px;
    font-weight: 600
}

.journal-info__description {
    color: #333;
    font-size: 18px;
    font-weight: 600
}

.journal-info__description p {
    margin-bottom: 10px
}

.journal-info__street {
    color: #333;
    font-size: 18px;
    font-weight: 600
}

.journal-info__rating {
    gap: 4px;
    color: #fdd400;
    font-size: 16px;
    font-weight: 700
}

.journal-info__rating p {
    color: #333;
    font-size: 16px;
    font-weight: 500
}

.journal-info__avatar {
    width: 50px;
    height: 50px
}

.post__top {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding: 73px 0 132px
}

.post__image-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    overflow: hidden
}

.post__top::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 56px;
    background: #fff;
    z-index: 1;
    border-radius: 56px 56px 0 0
}

.post__background {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.article {
    padding-top: 20px
}

.article>.container {
    max-width: 1140px;
    border-bottom: 1px solid #c2c2c2
}

.article__buttons {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 20px
}

.article__buttons button {
    width: 100%
}

.article__main {
    color: #333;
    font-size: 24px;
    line-height: 1.6;
    font-weight: 500
}

.article__main p {
    margin-bottom: 10px
}

.article__main p img {
    width: 100%;
    height: auto;
}

.article__main-img {
    margin-bottom: 20px;
    height: auto;
    max-width: 100%
}

.article__main-list {
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    list-style: none;
    padding-left: 0
}

.article__main-list li {
    margin-bottom: 10px;
    cursor: auto;
    position: relative;
    padding-left: 30px
}

.article__main-list li::marker {
    color: #217b00
}

.article .article__main-list li::before {
    content: "•";
    color: #217b00;
    font-size: 36px;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 20px
}

.article__top {
    padding-bottom: 20px;
    border-bottom: 1px solid #c2c2c2;
    margin-bottom: 20px
}

.article__title {
    color: #333;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px
}

.article__subtitle {
    color: #333;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px
}

.article__user {
    gap: 10px
}

.article__user-name {
    color: #333;
    font-size: 18px;
    font-weight: 600
}

.article__user-date {
    color: #828282;
    font-size: 15px;
    font-weight: 400
}

.article__user-avatar {
    height: 32px;
    width: 32px
}

.clause {
    padding: 60px 0 100px 0
}

.clause__list {
    /* display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px */
}

.clause__list::-webkit-scrollbar {
    height: 4px;
    background: #dcdcdc
}

.clause__list::-webkit-scrollbar-thumb {
    background-color: #217a00;
    border-radius: 10px
}

.clause__user {
    gap: 10px
}

.clause__user img {
    height: 32px;
    width: 32px
}

.clause__user-name {
    font-size: 18px;
    font-weight: 600
}

.clause__user-stars {
    color: #7a7a7a;
    font-size: 16px;
    position: relative;
    padding-left: 26px
}

.clause__user-stars:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 16px;
    width: 16px;
    background-image: url(../../img/star-post.svg);
    background-repeat: no-repeat
}

.clause__item {
    border-radius: 20px;
    -webkit-box-shadow: 2px 2px 9px 0 #d7d7d7;
    box-shadow: 2px 2px 9px 0 #d7d7d7;
    background: #fff
}

.clause__item-img img {
    width: 100%;
    display: block;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px 20px 0 0
}

.clause__item-content {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px
}

.clause__item-avatar img {
    width: 80px;
    border-radius: 50%;
    border: 3px solid #fff;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    position: absolute;
    left: 20px;
    top: -40px
}

.clause__item-name {
    margin-top: 30px;
    color: #333;
    font-size: 20px;
    font-weight: 600
}

.clause__item-info {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    margin: 15px 0 20px
}

.clause__item-category {
    padding: 10px 15px;
    border-radius: 20px;
    background: #e9e9e9;
    font-size: 18px;
    font-weight: 500;
    width: 181px
}

.clause__item-title {
    color: #333;
    font-size: 20px;
    font-weight: 600
}

.clause__item-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    background-color: #217b00;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.clause__item-btn:hover {
    background-color: #144a00
}

.clause .rating {
    color: gold;
    font-size: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px
}

.clause .rating-count {
    color: #777;
    font-size: 14px
}

.gallery__header {
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
    background: #fff
}

.gallery__header-wrapper {
    padding: 28px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.gallery__header-back {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    padding-left: 30px;
    position: relative
}

.gallery__header-back:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    height: 18px;
    width: 9px;
    background-image: url(../../img/arrow-left.svg);
    background-repeat: no-repeat
}

.gallery__other {
    padding: 0 0 60px 0
}

.gallery__other-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px
}

.gallery__other-title span {
    color: #217a00
}

.gallery__other-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px
}

.gallery__other-item img {
    border-radius: 20px;
    height: 226px;
    max-width: 100%;
    min-width: 226px;
    object-fit: cover;
}

.gallery__other-item--all {
    position: relative
}

.gallery__other-item--all p {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.gallery__other-item--background {
    position: absolute;
    border-radius: 20px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5)
}

.gallery__category-address {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px
}

.gallery__category-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px
}

.gallery__category-link {
    color: #333;
    font-size: 18px;
    font-weight: 500
}

.gallery__category-item {
    padding: 10px 15px;
    border-radius: 20px;
    background: #e9e9e9;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s
}

.gallery__category-item:hover {
    background: #c2c2c2
}

.gallery__category-question {
    color: #217b00;
    font-size: 20px;
    font-weight: 800
}

.gallery__user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px
}

.gallery__user-name {
    font-size: 20px;
    font-weight: 700
}

.gallery__user-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px
}

.gallery__user-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.gallery__user-stars {
    color: #fdd400;
    font-size: 24px
}

.gallery__user-link {
    color: #217b00;
    font-size: 20px;
    font-weight: 800
}

.gallery__user img {
    width: 56px;
    height: 56px
}

.gallery__btn-full {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px
}

.gallery__btn-share {
    width: 100%
}

.gallery__btn-save {
    width: 100%
}

.gallery__btn-list {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    left: 50%;
    bottom: 20px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.gallery__btn-mobile {
    display: none
}

.gallery__btn-back {
    position: absolute;
    left: 20px;
    top: 50%
}

.gallery__btn-next {
    position: absolute;
    right: 20px;
    top: 50%
}

.gallery__main {
    padding: 60px 0 40px
}

.gallery__main-wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 24px
}

.gallery__main-info {
    min-width: 456px
}

.gallery__main-image {
    background-color: #f1f1f1;
    width: 100%;
    height: 600px;
    text-align: center;
    position: relative
}

.gallery__main-image img {
    width: 605px;
    height: 600px;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.gallery__main-image:hover .gallery__btn-list {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s, 0s;
    -o-transition-delay: 0s, 0s;
    transition-delay: 0s, 0s
}

.gallery__btn-list {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0s linear .3s, opacity .3s ease-in-out 0s;
    -o-transition: visibility 0s linear .3s, opacity .3s ease-in-out 0s;
    transition: visibility 0s linear .3s, opacity .3s ease-in-out 0s
}

.main__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.project__inner-aside {
    display: none;
    margin-right: unset;
    margin-bottom: 40px
}

.project-filter__title {
    color: #2c2a30;
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 17px
}

.project-filter__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px
}

.project-filter__link {
    color: #051e16;
    font-size: 20px;
    font-weight: 500;
    line-height: 27px
}

.project-filter__link--active {
    color: #217b00
}

.project__list2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    margin-bottom: 40px
}

.project__list2::-webkit-scrollbar {
    height: 4px;
    background: #dcdcdc
}

.project__list2::-webkit-scrollbar-thumb {
    background-color: #217a00;
    border-radius: 10px
}

.project__person-info {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px
}

.project__person-info span {
    font-weight: 700
}

.project__person-btn {
    font-size: 18px;
    font-weight: 700
}

.person__catalog {
    padding: 40px 0 60px
}

.login {
    padding: 50px 0
}

.login__info {
    padding: 100px 0
}

.login__wrapper {
    display: flex;
    /* grid-template-columns: repeat(2, 1fr) */
    justify-content: center;
}

.login__title {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 40px
}

.login__right {
    display: none;
    width: 100%;
    padding-left: 32px
}

.login__right--img {
    margin-bottom: 87px;
    text-align: center
}

.login__left {
    width: 100%;
    max-width: 50%;
    /* border-right: 1px solid #eaeaea; */
    padding-right: 32px
}

.login__bottom {
    padding-top: 30px
}

.login__bottom-title {
    font-size: 18px;
    margin-bottom: 15px
}

.login__bottom-info {
    font-size: 14px
}

.login__bottom-info a {
    color: #217b00
}

.login__subtitle {
    color: #fff;
    font-size: 32px;
    font-weight: 500
}

.login__subtitle span {
    font-weight: 700
}

.login__check-name {
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 120% !important
}

.login__check-name a {
    color: #333;
    text-decoration: underline
}

.login__form {
    border-radius: 20px;
    background: #fff
}

.login__form-btn {
    width: 100%
}

.login__form-input {
    margin: 10px 0
}

.login__form-title {
    color: #333;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px
}

.login__form-link {
    color: #217a00 !important;
    font-weight: 600 !important;
    text-decoration: unset !important
}

.login__form-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px
}

.form-group__labels {
    margin: 10px 0;
    font-weight: 700
}

.form-link {
    color: #217b00;
    position: relative;
    display: inline-block;
    padding-right: 10px
}

.form-link:before {
    content: ">";
    position: absolute;
    display: block;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.labels-required {
    position: relative
}

.labels-required:after {
    content: "*";
    padding-left: 4px
}

.register {
    padding: 50px 0
}

.register__info {
    padding: 100px 0
}

.register__wrapper {
    display: flex;
    /* grid-template-columns: repeat(2, 1fr) */
    justify-content: center;
}

.register__war {
    padding-top: 10px
}

.register__title {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 40px
}

.register__right {
    width: 100%;
    padding-left: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.register__right p {
    margin-bottom: 20px
}

.register__right--img {
    margin-bottom: 87px;
    text-align: center
}

.register__left {
    /* border-right: 1px solid #eaeaea; */
    padding-right: 32px;
    max-width: 50%;
    width: 100%;
}

.register__bottom {
    padding-top: 30px
}

.register__bottom-title {
    font-size: 18px;
    margin-bottom: 15px
}

.register__bottom-info {
    font-size: 14px
}

.register__bottom-info a {
    color: #217b00
}

.register__subtitle {
    color: #fff;
    font-size: 32px;
    font-weight: 500
}

.register__subtitle span {
    font-weight: 700
}

.register__check-name {
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 120% !important
}

.register__check-name a {
    color: #333;
    text-decoration: underline
}

.register__form {
    border-radius: 20px;
    background: #fff
}

.register__form-btn {
    width: 100%
}

.register__form-title {
    color: #333;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px
}

.register__form-link {
    color: #217a00 !important;
    font-weight: 600 !important;
    text-decoration: unset !important
}

.register__form-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px
}

.form-group__label {
    margin: 10px 0
}

.form-link {
    color: #217b00;
    position: relative;
    display: inline-block;
    padding-right: 10px
}

.form-link:before {
    content: ">";
    position: absolute;
    display: block;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.register2 {
    background: linear-gradient(145deg, #0e7c2f 0%, #064b1e 100%);
    padding: 70px 0;
}

.register2__info {
    padding: 100px 0
}

.register2__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px
}

.register2__title {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 40px
}

.register2__right {
    width: 100%
}

.register2__subtitle {
    color: #fff;
    font-size: 32px;
    font-weight: 500
}

.register2__subtitle span {
    font-weight: 700
}

.register2__check-name {
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 120% !important
}

.register2__check-name a {
    color: #333;
    text-decoration: underline
}

.register2__form {
    border-radius: 20px;
    background: #fff;
    padding: 60px 40px;
    min-width: 450px
}

.register2__form-btn {
    width: 100%
}

.register2__form-title {
    color: #333;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center
}

.register2__form-link {
    color: #217a00 !important;
    font-weight: 600 !important;
    text-decoration: unset !important
}

.register2__form-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px
}

.register2__form-checkbox {
    min-width: 40px !important;
    height: 40px !important
}

.register2__form .checkbox__item .register2__form-checkbox::before {
    /* min-width: 40px !important;
    height: 40px !important;
    background-position: 11px 12px !important;
    background-size: 20px !important */
}

.profile {
    margin-bottom: 25px
}

.profile__header {
    position: relative
}

.profile__overlay {
    height: 192px;
    position: relative
}

.profile__overlay:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(rgba(0, 0, 0)));
    background-image: -o-linear-gradient(top, transparent 50%, rgba(0, 0, 0));
    background-image: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0));
    pointer-events: none;
    border-radius: 0 0 10px 10px;
}

.profile__upload {
    position: absolute;
    top: 50px;
    left: 250px
}

.profile__intro {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}

.profile__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 234px;
    height: 52px;
    border-bottom: 1px solid #eee
}

.profile__navigation::-webkit-scrollbar {
    height: 4px;
    background: #dcdcdc
}

.profile__navigation::-webkit-scrollbar-thumb {
    background-color: #217a00;
    border-radius: 10px
}

.profile__navigation-item {
    padding: 0 16px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.profile__navigation-link {
    color: #000;
    font-weight: 500;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease
}

.profile__navigation-link:hover {
    color: #217b00
}

.profile__navigation-item--active .profile__navigation-link {
    color: #217b00
}

.profile__avatar {
    position: absolute;
    width: 174px;
    height: 174px;
    left: 30px;
    z-index: 1;
    bottom: -30px;
    border: 2px solid #fff;
    border-radius: 10px
}

.profile__avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px
}

.profile__user {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 30px 0 250px;
    margin-bottom: 20px
}

.profile__user-left {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    -ms-flex-item-align: end;
    align-self: flex-end
}

.profile__user-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px
}

.profile__user-stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px
}

.profile__user-review {
    margin-bottom: unset;
    font-size: 16px
}

.profile__user-status {
    border: 2px solid #fff;
    border-radius: 5px;
    padding: 4px 8px;
    font-size: 15px;
    font-weight: 700
}

.profile__user-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.profile__user-link {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-right: 10px;
    font-weight: 500
}

.profile__user-link:before {
    content: ">";
    position: absolute;
    display: block;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.profile__user-edit {
    font-size: 18px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 0 20px
}

.profile__user-upload {
    font-size: 16px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    background-color: #000
}

.profile__title {
    padding: 10px 0;
    font-size: 24px;
    font-weight: 500
}

.profile__filtres {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px
}

.profile__filtres-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px
}

.profile__filtres-btn {
    height: 46px;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.profile__ideas-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    gap: 20px
}

.profile__item {
    width: 240px;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .16);
    height: auto;
    padding: 10px
}

.profile__item-card {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 220px;
    background-color: #f4f4f4
}

.profile__item-title {
    font-weight: 700;
    padding: 20px 0;
    font-size: 18px
}

.profile__user-review {
    margin-bottom: unset
}

.settings__select {
    margin: 10px 0
}

.setup {
    width: 100%;
    margin-bottom: 30px
}

.setup__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-width: 300px
}

.setup__header-item {
    padding: 16px;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    gap: 10px
}


/* .setup__header-item:after {
    content: "";
    position: absolute;
    top: 57px;
    height: 53px;
    left: 24px;
    z-index: 1;
    border: 1px dashed #a39e8f
} */

.setup__header-item:last-child:after {
    content: none
}

.setup__header-item.active {
    font-weight: 700;
    background-color: #f5f5f5
}

.setup__header-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border-width: 2px;
    border-style: solid;
    border-color: #a39e8f;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.setup__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 600px
}

.setup__content-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.setup__content-title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 140%
}

.setup__content-info {
    margin-bottom: 16px;
    line-height: 140%
}

.setup__content-btn {
    font-size: 20px
}

.setup__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 280px;
    gap: 30px
}

.modal__wrapper1 {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, .8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 10000;
    display: none;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s
}

.modal__wrapper1 .modal {
    background: #fff;
    padding: 25px;
    border-radius: 5px;
    max-width: 100%;
    min-height: 640px;
    width: 930px;
    position: relative
}

.modal__wrapper1 .modal__title {
    text-align: center
}

.modal__wrapper1 .modal__body {
    height: 96%;
    width: 100%;
}

.modal__wrapper1 .modal__close1 {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 0px
}

.modal__wrapper2 {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, .8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 10000;
    display: none
}

.modal__wrapper2 .modal {
    background: #fff;
    padding: 25px;
    border-radius: 5px;
    max-width: 100%;
    min-height: 640px;
    width: 930px;
    position: relative
}

.modal__wrapper2 .modal__title {
    text-align: center
}

.modal__wrapper2 .modal__body {
    height: 96%;
    overflow-y: scroll;
    width: 100%;
}

.modal__wrapper2 .modal__close2 {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    /* margin-bottom: 20px */
}

.modal__wrapper3 {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, .8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 10000;
    display: none
}

.modal__wrapper4 {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, .8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 10000;
    display: none
}

.modal__wrapper3 .modal {
    background: #fff;
    padding: 25px;
    border-radius: 5px;
    max-width: 100%;
    min-height: 640px;
    width: 930px;
    position: relative
}

.modal__wrapper3 .modal__title {
    text-align: center
}

.modal__wrapper3 .modal__body {
    height: 96%;
    width: 100%;
}

.modal__wrapper3 .modal__close3 {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 20px
}

.modal__wrapper4 .modal {
    background: #fff;
    padding: 25px;
    border-radius: 5px;
    max-width: 100%;
    min-height: 640px;
    width: 930px;
    position: relative
}

.modal__wrapper4 .modal__title {
    text-align: center
}

.modal__wrapper4 .modal__body {
    height: 96%;
    width: 100%;
}

.modal__wrapper4 .modal__close4 {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 20px
}

.steps__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%
}

.steps__numbers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    max-width: 500px;
    margin-bottom: 60px
}

.progress {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: gray;
    z-index: -1
}

.progress__success {
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    background: red;
    -webkit-transition: 1s all ease;
    -o-transition: 1s all ease;
    transition: 1s all ease
}

.step__number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    border: 2px solid grey;
    margin-right: 100px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: #fff
}

.step__number.active__number {
    background: red;
    border: transparent;
    -webkit-transition: 1s all ease;
    -o-transition: 1s all ease;
    transition: 1s all ease
}

.step__number.active__number path {
    fill: #fff;
    -webkit-transition: 1s all ease;
    -o-transition: 1s all ease;
    transition: 1s all ease
}

.step__buttons {
    margin-top: auto;
    gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #f9f9f9;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%
}

.form__textarea {
    height: 220px;
    width: 100%;
    color: #000;
    font-size: 18px;
    font-family: Manrope, sans-serif;
    font-weight: 400;
    background-color: unset;
    line-height: 22px;
    border: 1px solid #7a7a7a;
    border-radius: 10px;
    resize: none;
    padding: 10px
}

.form__textarea:focus {
    outline: 0;
    border: 1px solid #217b00
}

.form__textarea::-webkit-input-placeholder {
    font-family: Manrope, sans-serif;
    font-weight: 400;
    line-height: 22px
}

.form__textarea::-moz-placeholder {
    font-family: Manrope, sans-serif;
    font-weight: 400;
    line-height: 22px
}

.form__textarea:-ms-input-placeholder {
    font-family: Manrope, sans-serif;
    font-weight: 400;
    line-height: 22px
}

.form__textarea::-ms-input-placeholder {
    font-family: Manrope, sans-serif;
    font-weight: 400;
    line-height: 22px
}

.form__textarea::placeholder {
    font-family: Manrope, sans-serif;
    font-weight: 400;
    line-height: 22px
}

.form__header {
    margin-bottom: 10px
}

.form__price {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(3, 1fr)
}

.form__checkboxs {
    display: block;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.form__project-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px
}

.form__project-bottom {
    padding: 16px;
    background-color: #f9f9f9
}

.form__project img {
    max-width: 100%;
    width: 100%
}

.form__text {
    padding: 10px 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 140%
}

.form__text-price {
    padding: 0 0 10px
}

.form__text--reviews {
    padding: 3px
}

.form__title {
    font-weight: 700;
    font-size: 24px
}

.form__subtitle {
    padding-top: 10px;
    line-height: 140%
}

.form-group__input {
    padding: 10px;
    margin-bottom: 20px
}

.form__info {
    line-height: 120%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 450px;
    padding: 20px 24px;
    background: #f9f9f9;
    border-left: 3px solid #217b00
}

.form__info-title {
    font-weight: 700;
    margin-bottom: 16px
}

.form__info--overflow {
    height: 365px;
    overflow: auto
}

.form__step {
    display: none
}

.form__step.active {
    display: initial
}

.form__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 48px
}

.form__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    border: 1px solid grey;
    max-width: 460px
}

.form__input.search__input {
    margin-top: 40px
}

.prev__step {
    width: 200px;
    height: 50px
}

.next__step {
    width: 200px;
    height: 50px
}

.input {
    padding: 20px 20px 20px 65px;
    width: 100%;
    outline: 0;
    font-style: normal;
    font-weight: 375;
    font-size: 18px;
    line-height: 20px;
    color: gray
}

.input:focus {
    outline: 1px solid red
}

.input__img {
    position: absolute;
    left: 30px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.form__main {
    width: 100%
}

.form__item-title {
    font-style: normal;
    font-weight: 494;
    font-size: 25px;
    line-height: 28px;
    color: #00f;
    margin-top: 40px
}

.finish {
    display: none
}

.finish__logo {
    margin-top: 50px
}

.finish__title {
    margin-top: 40px;
    font-style: normal;
    font-weight: 494;
    font-size: 50px;
    line-height: 56px;
    color: #00f
}

.finish__text {
    margin-top: 10px;
    font-style: normal;
    font-weight: 375;
    font-size: 20px;
    line-height: 22px;
    color: gray
}

.finish__btn {
    margin-top: 60px
}

.form__bar {
    width: 100%
}

.form__bar-track {
    position: absolute;
    top: 0;
    width: 100%;
    height: 4px;
    background-color: #ddd
}

.form__bar-indicator {
    position: absolute;
    height: 4px;
    background-color: #217b00;
    width: 0%;
    -webkit-transition: width .3s ease;
    -o-transition: width .3s ease;
    transition: width .3s ease
}

.step__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: auto
}

.btn__outline,
.button {
    padding: 10px 20px;
    border: none;
    background-color: #00f;
    color: #fff;
    cursor: pointer
}

.btn__outline {
    background-color: transparent;
    color: #00f;
    border: 2px solid #00f
}

.finish {
    display: none
}

.finish__inner {
    max-width: 500px;
    margin: 0 auto
}

.finish__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 20px
}

.finish__btn {
    width: 95%;
    position: absolute;
    bottom: 30px
}

.finish__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px
}

.finish__item-circle {
    -ms-flex-item-align: start;
    align-self: flex-start;
    background-color: #217b00;
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.finish__item-circle svg path {
    fill: #fff
}

.finish__item-text {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%
}

.finish__info {
    padding-left: 64px;
    line-height: 120%
}

.form__select {
    margin: 10px 0
}

.file__uploader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    gap: 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.file__uploader-item {
    width: 100%
}

.file__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 320px;
    width: 100%;
    position: relative;
    background: #e9e9e9;
    border: 2px dashed #a1a1a1;
    border-radius: 35px;
    cursor: pointer
}

.file__input {
    display: none
}

.file__item {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.file__item-text {
    margin-top: 30px;
    font-style: normal;
    font-weight: 494;
    font-size: 20px;
    line-height: 22px;
    color: #000;
    text-align: center
}

.profile__inputs {
    margin-top: 17px
}

.profile__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 100%;
    margin-top: 10px
}

.profile__input .input {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.settings__title {
    margin-bottom: 26px;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px
}

.settings__filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.filter-btn button {
    margin: 0;
    padding: 0;
    background-color: transparent;
    border: none;
    cursor: pointer
}

.filter-btn button+.filter-btn button {
    margin-left: 10px
}

.filter-select {
    margin-right: 34px;
    font-size: 14px;
    line-height: 17px;
    border: 1.5px solid #d7d9df
}

.filter-btn__grid {
    width: 26px;
    height: 21px
}

.filter-btn__line {
    width: 25px;
    height: 19px
}

.filter-button {
    opacity: .3
}

.filter-button--active {
    opacity: 1
}

.settings__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.settings-menu__btn {
    display: none
}

.settings__inner-aside {
    min-width: 267px;
    margin-right: 24px
}

.settings__inner-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px
}

.product-item__wrapper.product-item__wrapper--list {
    width: 100%
}

.product-item {
    width: 100%
}

.aside-filter__tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.aside-filter__tab {
    width: 50%;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: .09em;
    text-transform: uppercase
}

.aside-filter__tab.tab--active {
    font-weight: 700
}

.aside-filter__tab.tab--active span {
    display: inline-block;
    padding-bottom: 7px
}

.filter__item-drop {
    position: relative;
    cursor: pointer
}

.filter__item-drop::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 12px;
    height: 8px;
    background-image: url(../../images/content/arrow-down.svg);
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all, .3s;
    -o-transition: all, .3s;
    transition: all, .3s
}

.filter__item-drop--active::before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.aside-filter__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px
}

.aside-filter__label {
    font-size: 14px;
    line-height: 17px
}

.jq-checkbox,
.jq-radio {
    width: 14px;
    height: 14px;
    margin-right: 8px;
    vertical-align: -2px;
    border-radius: 1px;
    -webkit-box-shadow: none;
    box-shadow: none
}

.jq-checkbox.checked,
.jq-radio.checked {
    border: none
}

.jq-checkbox.checked .jq-checkbox__div {
    width: 8px;
    height: 6px;
    margin: 4px 0 0 3px;
    background-image: url(../../images/content/checked-icon.svg);
    border: none;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0)
}

.jq-radio.checked .jq-radio__div {
    display: none
}

.aside-filter__content.aside-filter__content-radio {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.irs--flat {
    width: 100%
}

.irs--flat .irs-max,
.irs--flat .irs-min {
    top: 55px;
    padding: 0;
    padding-left: 27px;
    font-family: Barlow, sans-serif;
    font-size: 14px;
    line-height: 17px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    text-shadow: none;
    background-color: transparent;
    border-radius: 0
}

.irs--flat .irs-max::before,
.irs--flat .irs-min::before {
    position: absolute;
    left: 0;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 400;
    font-size: 14px
}

.irs-min::before {
    content: "от"
}

.irs-max::before {
    content: "до"
}

.irs--flat .irs-line {
    top: 26.5px;
    height: 1px;
    background-color: #e0e0e0;
    border-radius: 0
}

.irs--flat .irs-bar {
    height: 3px
}

.irs--flat .irs-handle {
    top: 23px;
    width: 8px;
    height: 8px;
    border-radius: 50%
}

.irs--flat .irs-handle i:first-child {
    display: none
}

.filter__item-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 34px
}

.filter__item-title {
    padding-left: 26px;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px
}

.filter__item-select {
    font-family: Barlow, sans-serif;
    font-size: 14px;
    line-height: 17px;
    color: #48494d
}

.jq-selectbox__select {
    height: 32px;
    padding: 0 30px 0 10px;
    text-shadow: none;
    border: none;
    border-radius: 0;
    background: 0 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.jq-selectbox__select:active,
.jq-selectbox__select:hover {
    background: 0 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.jq-selectbox__trigger {
    top: 12px;
    right: 9px;
    width: 12px;
    height: 8px;
    background-image: url(../../images/content/arrow-down.svg);
    border-left: none
}

.jq-selectbox__trigger-arrow {
    border: none
}

.jq-selectbox.focused .jq-selectbox__select {
    border: none
}

.jq-selectbox li:hover {
    background: rgba(107, 126, 172, .05);
    color: rgba(0, 0, 0, .6)
}

.jq-selectbox li.selected {
    background: rgba(107, 126, 172, .05);
    color: rgba(0, 0, 0, .6)
}

.jq-selectbox li {
    color: rgba(0, 0, 0, .6)
}

.jq-selectbox__dropdown {
    padding-top: 15px;
    border-radius: 0
}

.aside-filter__more {
    margin-top: 15px
}

.aside-filter__btn {
    color: #144a00;
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    background-color: unset
}

.aside-filter__search {
    width: 100%;
    height: 30px;
    margin-bottom: 20px;
    margin-top: 10px;
    padding: 0 20px;
    font-size: 12px;
    line-height: 14px;
    border: 1px solid #e0e0e0
}

.aside-filter__search::-webkit-input-placeholder {
    color: #bdbec2
}

.aside-filter__search::-moz-placeholder {
    color: #bdbec2
}

.aside-filter__search:-ms-input-placeholder {
    color: #bdbec2
}

.aside-filter__search::-ms-input-placeholder {
    color: #bdbec2
}

.aside-filter__search::placeholder {
    color: #bdbec2
}

.product-item__wrapper {
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    gap: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #c2c2c2
}

.product-item__img {
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px
}

.product-buttons {
    text-align: right
}

.product-buttons__mobile {
    gap: 20px;
    margin-bottom: 10px
}

.product-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.product-info__top {
    gap: 10px;
    margin-bottom: 24px
}

.product-info__bottom {
    margin-top: auto;
    gap: 15px
}

.product-info__title {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px
}

.product-info__description {
    color: #333;
    font-size: 18px;
    font-weight: 600
}

.product-info__street {
    color: #333;
    font-size: 18px;
    font-weight: 600
}

.product-info__rating {
    gap: 4px;
    color: #fdd400;
    font-size: 16px;
    font-weight: 700
}

.product-info__rating p {
    color: #333;
    font-size: 16px;
    font-weight: 500
}

.product-info__avatar {
    width: 50px;
    height: 50px
}

.aside-filter__title {
    margin-bottom: 15px;
    color: #2c2a30;
    font-size: 24px;
    font-weight: 700;
    cursor: auto
}

.aside-filter__item {
    margin-bottom: 40px
}

.tag-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 15px;
    background-color: #217b00;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    outline: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 500
}

.tag-button:hover {
    background-color: #144900
}

.tag-button .tag-button {
    display: inline-block;
    font-size: 20px;
    line-height: 1;
    color: #217b00;
    cursor: pointer
}

.settings__filter-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px
}

.tag-button-close {
    background-color: #fff;
    color: #217b00;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: relative
}

.tag-button-close:before {
    content: "";
    position: absolute;
    left: 7px;
    top: 7px;
    height: 10px;
    width: 10px;
    background-image: url(../../img/close.svg);
    background-repeat: no-repeat
}

.info {
    padding-bottom: 60px
}

.info__title {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px
}

.info__text {
    color: #333;
    font-size: 18px;
    font-weight: 500
}

.info__item {
    margin-bottom: 20px
}

.settings {
    padding-bottom: 60px
}

.settings__drop {
    margin-bottom: 40px
}

.settings-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px
}

.settings__block2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px
}

.settings__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px
}

.settings__links-title {
    margin-bottom: 15px;
    font-weight: 600
}

.settings__links-url {
    color: #000;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease
}

.settings__links-url:hover {
    color: #217b00
}

.settings__links-url--active {
    color: #217b00
}

.settings__main {
    width: 50%
}

.settings__user-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px
}

.settings__user-title {
    margin-bottom: unset
}

.settings__btn {
    font-size: 18px;
    width: auto;
    padding: 0 10px;
    height: 45px
}

.settings__label {
    margin-bottom: 6px
}

.settings__label--required:after {
    content: "*";
    padding-left: 4px;
    color: red
}

.settings__input {
    padding: 10px;
    margin: 10px 0
}

.list_citys_profile {
    position: absolute;
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 300px;
    flex-direction: column;
    gap: 10px;
    overflow-y: scroll;
    top: calc(100% + 5px);
    left: 0;
    background: #fff;
    border: 1px solid #217b00;
    border-radius: 10px;
    z-index: 2;
}

.list_citys_profile li {
    padding: 15px;
    font-size: 20px;
    line-height: 100%;
}

.settings__company {
    padding-top: 40px
}

.settings__textarea {
    margin: 10px 0;
    font-size: 18px
}

.settings__services {
    padding-top: 40px
}

.settings__services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px
}

.settings__geography {
    padding-top: 40px
}

.settings__photo {
    padding-top: 40px
}

.settings__save {
    padding-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    /*justify-content: flex-end*/
}

.settings__price {
    padding-top: 40px
}

.settings__price-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px
}

.settings__checkbox {
    font-size: 18px !important
}

.form-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px
}

.product__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.product__item {
    padding: 20px;
    border: 1px solid #d3d3d3;
    position: relative
}

.product__item-link {
    display: block;
    text-align: center;
    height: 100%;
    width: 100%
}

.product__item-link img {
    height: 300px;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%
}

.product__item-price {
    font-size: 20px;
    margin-bottom: 10px
}

.product__item-name {
    margin-bottom: 10px;
    display: block;
    line-height: 140%;
    color: #000;
}

.product__item-qul {
    margin-bottom: 20px;
    border: 1px solid #217b00;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding: 5px;
    border-radius: 6px;
    color: #217b00
}

.product__item-discount {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 10px 10px;
    background-color: #009500;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.product__item-favourites {
    background-color: unset;
    position: absolute;
    background-image: url(../../img/favourites.svg);
    width: 20px;
    height: 20px;
    right: 10px;
    top: 10px
}

.product__btn {
    width: 100%;
    font-size: 20px
}

.card__tabs {
    padding-top: 50px
}

.card__tabs-title {
    border-top: 4px solid green;
    font-size: 24px;
    padding: 20px 10px;
    border-radius: 10px 10px 0 0;
    color: #000!important;
}

.card__specifications {
    background-color: #f1f1f1;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    border-radius: 0 20px 20px 20px
}

.card__specifications-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px
}

.card__specifications-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px
}

.card__specifications-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px
}

.card__specifications-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

.card__specifications-item:not(.card__specifications-item2):after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px dotted grey
}

.card__specifications-item2 {
    display: inline-block;
}

.card__specifications-item2 p {
    margin-bottom: 10px;
}

.card__specifications-name {
    background-color: #f1f1f1;
    padding-right: 10px;
    z-index: 11
}

.card__specifications-link {
    padding-left: 10px;
    background-color: #f1f1f1;
    z-index: 11
}

.card__header {
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
    background: #fff
}

.card__header-wrapper {
    padding: 28px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.card__header-back {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    padding-left: 30px;
    position: relative
}

.card__header-back:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    height: 18px;
    width: 9px;
    background-image: url(../img/arrow-left.svg);
    background-repeat: no-repeat
}

.card__other {
    padding: 0 0 60px 0
}

.card__other-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px
}

.card__other-title span {
    color: #217a00
}

.card__other-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px
}

.card__other-item img {
    border-radius: 20px;
    height: auto;
    max-width: 100%;
    min-width: 164px
}

.card__other-item--all {
    position: relative
}

.card__other-item--all p {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.card__other-item--background {
    position: absolute;
    border-radius: 20px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5)
}

.card__category-address {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px
}

.card__category-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px
}

.card__category-link {
    color: #333;
    font-size: 18px;
    font-weight: 500
}

.card__category-item {
    padding: 10px 15px;
    border-radius: 20px;
    background: #e9e9e9;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s
}

.card__category-item:hover {
    background: #c2c2c2
}

.card__category-question {
    color: #217b00;
    font-size: 20px;
    font-weight: 800
}

.card__user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px
}

.card__user-name {
    font-size: 20px;
    font-weight: 700
}

.card__user-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px
}

.card__user-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.card__user-stars {
    color: #fdd400;
    font-size: 24px
}

.card__user-link {
    color: #217b00;
    font-size: 20px;
    font-weight: 800
}

.card__user img {
    width: 56px;
    height: 56px
}

.card__btn-full {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px
}

.card__btn-share {
    width: 100%
}

.card__btn-save {
    width: 100%
}

.card__btn-list {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    left: 50%;
    bottom: 20px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.card__btn-mobile {
    display: none
}

.card__btn-back {
    position: absolute;
    left: 20px;
    top: 50%
}

.card__btn-next {
    position: absolute;
    right: 20px;
    top: 50%
}

.card__main {
    padding-bottom: 50px
}

.card__main-wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 24px
}

.card__main-info {
    width: 700px
}

.card__main-image {
    background-color: #f1f1f1;
    width: 100%;
    text-align: center;
    border-radius: 24px
}

.card__main-image:hover .card__btn-list {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s, 0s;
    -o-transition-delay: 0s, 0s;
    transition-delay: 0s, 0s
}

.card__btn-list {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0s linear .3s, opacity .3s ease-in-out 0s;
    -o-transition: visibility 0s linear .3s, opacity .3s ease-in-out 0s;
    transition: visibility 0s linear .3s, opacity .3s ease-in-out 0s
}

.card__main-top {
    background-color: #f1f1f1;
    padding: 24px;
    border-radius: 24px;
    margin-bottom: 20px
}

.card__main-price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px
}

.card__main-qul {
    margin-bottom: 20px;
    border: 1px solid #217b00;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding: 5px;
    border-radius: 6px;
    color: #217b00
}

.card__main-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px
}

.card__btn-cart {
    /*width: 80%*/
}

.card__btn-favourites {
    width: 20%
}

.card__btn-favourites svg path {
    fill: #fff
}

.card__analogues {
    padding: 50px 0
}

.card__title {
    margin-top: 32px;
    margin-bottom: 22px;
}

.card__title span {
    color: #333;
    font-size: 40px;
    font-weight: 700
}

.card__analogues-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.card__view-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.card__image-top {
    position: relative
}

.card__image-top img {
    width: 605px;
    height: 600px;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 0 10px
}

.card__photos-item {
    border: 1px solid #bfbfbf
}

.card__photos-item img {
    width: 100px;
    height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
    cursor: pointer
}

.card__photos-item.active {
    border: 2px solid #217b00
}

.card__image-bottom {
    padding: 20px 0
}

.card__photos-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px
}

.cart {
    padding-bottom: 50px
}

.cart__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px
}

.cart__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px
}

.cart__textarea {
    background-color: #fff
}

.cart__product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 40px;
    position: relative
}

.cart__product img {
    height: 200px;
    width: 300px;
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 100%
}

.cart__info-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 140%
}

.cart__info-qul {
    margin-bottom: 20px;
    border: 1px solid #217b00;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding: 5px;
    border-radius: 6px;
    color: #217b00
}

.cart__info-spec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px
}

.cart__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px
}

.cart__buttons-input {
    width: 100px;
    text-align: center
}

.cart__price {
    font-weight: 700;
    font-size: 24px;
    min-width: 150px
}

.cart__contact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
}

.cart__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px
}

.cart__title-number {
    background-color: green;
    color: #fff;
    border-radius: 100%;
    padding: 10px 15px;
    font-size: 20px
}

.cart__select {
    max-width: 507px
}

.cart__order-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.cart__order-item {
    border: 1px solid #000;
    padding: 20px;
    border-radius: 10px;
    min-height: 160px;
    line-height: 120%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    cursor: pointer;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    background-color: #fff
}

.cart__order-item:hover {
    background-color: #e3e3e3
}

.cart__order-item--active {
    border: 1px solid #217b00
}

.cart__order-title {
    font-weight: 700;
    margin-bottom: 16px
}

.cart__order-title--active {
    padding-left: 30px;
    position: relative
}

.cart__order-title--active:before {
    content: "";
    position: absolute;
    border-radius: 20px;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #217a00
}

.cart__order-price {
    padding-top: 40px;
    text-align: right;
    margin-top: auto;
    color: #217a00;
    font-weight: 700
}

.cart__right {
    width: 600px
}

.cart__right-title {
    border-top: 4px solid green;
    font-size: 16px;
    font-weight: 700;
    padding: 20px 10px;
    text-transform: uppercase;
    border-radius: 10px 10px 0 0
}

.cart__pay {
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 0 20px 20px 20px
}

.cart__pay-promo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px
}

.cart__pay-info {
    padding: 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px
}

.cart__pay-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px
}

.cart__pay-bottom {
    border-top: 1px solid #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0
}

.cart__pay-price {
    font-size: 24px;
    font-weight: 700
}

.cart-block {
    background-color: #f1f1f1;
    padding: 20px;
    -webkit-box-shadow: 2px 2px 9px 0 #d7d7d7;
    box-shadow: 2px 2px 9px 0 #d7d7d7
}

.cart__pay-btn {
    font-size: 16px
}

.cart__checkbox-item {
    padding: 20px 0
}

.cart__checkbox {
    font-size: 16px !important
}

.cart__checkbox a {
    color: #217a00
}

.cart__checkbox a:hover {
    color: #144a00
}

.cart__btn-content {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px
}

.cart__btn-delete {
    font-size: 18px
}

.cart__btn-delete:hover {
    color: red
}

.cart__btn-top {
    margin-bottom: 20px
}

.cart__btn-clear {
    font-size: 16px
}

.cart__btn-clear svg path {
    fill: #217b00
}

.app {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: var(--theme-bg-color);
    height: 100vh;
    margin: 0 auto;
    overflow: hidden
}

.header__chat {
    height: 80px;
    width: 100%;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px
}

.chat__wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    overflow: hidden;
    border-top: 1px solid #d3d3d3
}

.conversation-area,
.detail-area {
    width: 340px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.detail-area {
    border-left: 1px solid;
    margin-left: auto;
    padding: 30px 30px 0 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: auto
}

.chat-area {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.search-bar {
    z-index: 3;
    position: relative;
    margin-left: 210px;
    max-width: 100%
}

.logo {
    color: red;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.logo svg {
    width: 100%
}

.user-settings {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    margin-left: auto;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.user-settings>*+* {
    margin-left: 14px
}

.user-profile {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover
}

.conversation-area {
    border-right: 1px solid #f1f1f1;
    overflow-y: auto;
    overflow-x: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative
}

.msg-profile {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 15px
}

.msg-profile.group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: red
}

.msg-profile.group svg {
    width: 60%
}

.msg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 22px;
    cursor: pointer;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    position: relative
}

.msg:hover {
    background-color: #f1f1f1
}

.msg.active {
    background: #f1f1f1;
    border-left: 4px solid green
}

.msg.online:before {
    content: "";
    position: absolute;
    background-color: #23be7e;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 2px solid #f1f1f1;
    left: 50px;
    bottom: 19px
}

.msg-username {
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 15px
}

.msg-detail {
    overflow: hidden
}

.msg-content {
    font-weight: 500;
    font-size: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.msg-message {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    color: var(--msg-message)
}

.msg-date {
    font-size: 14px;
    color: var(--msg-date);
    margin-left: 3px
}

.msg-date:before {
    content: "•";
    margin-right: 2px
}

.chat-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: auto
}

.chat-area-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px;
    background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(78%, #fff), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(top, #fff 0, #fff 78%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to bottom, #fff 0, #fff 78%, rgba(255, 255, 255, 0) 100%)
}

.chat-area-profile {
    width: 32px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover
}

.chat-area-title {
    font-size: 18px;
    font-weight: 600
}

.chat-area-main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.chat-msg-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover
}

.chat-msg-profile {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: -20px;
    position: relative
}

.chat-msg-date {
    position: absolute;
    left: calc(100% + 12px);
    bottom: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--msg-date);
    white-space: nowrap
}

.chat-msg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 20px 45px
}

.chat-msg-content {
    margin-left: 12px;
    max-width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.chat-msg-text {
    background-color: #f1f1f1;
    padding: 15px;
    border-radius: 20px 20px 20px 0;
    line-height: 1.5;
    font-size: 14px;
    font-weight: 500
}

.chat-msg-text+.chat-msg-text {
    margin-top: 10px
}

.chat-msg-text {
    color: #000
}

.owner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.owner .chat-msg-content {
    margin-left: 0;
    margin-right: 12px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.owner .chat-msg-text {
    background-color: green;
    color: #fff;
    border-radius: 20px 20px 0 20px
}

.owner .chat-msg-date {
    left: auto;
    right: calc(100% + 12px)
}

.chat-msg-text img {
    max-width: 300px;
    width: 100%
}

.chat-area-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #d3d3d3;
    width: 100%;
    padding: 10px 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    position: sticky;
    bottom: 0;
    left: 0
}

.chat-area-footer svg {
    color: var(--settings-icon-color);
    width: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    cursor: pointer
}

.chat-area-footer svg:hover {
    color: var(--settings-icon-hover)
}

.chat-area-footer svg+svg {
    margin-left: 12px
}

.chat-area-footer input {
    border: none;
    color: #000;
    background-color: #f1f1f1;
    padding: 12px;
    border-radius: 6px;
    font-size: 15px;
    margin: 0 12px;
    width: 100%;
    outline: 0
}

.chat-area-footer input::-webkit-input-placeholder {
    color: #7a7a7a
}

.chat-area-footer input::-moz-placeholder {
    color: #7a7a7a
}

.chat-area-footer input:-ms-input-placeholder {
    color: #7a7a7a
}

.chat-area-footer input::-ms-input-placeholder {
    color: #7a7a7a
}

.chat-area-footer input::placeholder {
    color: #7a7a7a
}

.colors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto
}

.color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer
}

.color.selected {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' stroke='%23fff' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round' class='css-i6dzq1' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat
}

.color:not(:last-child) {
    margin-right: 4px
}

.view-more {
    color: var(--theme-color);
    font-weight: 600;
    font-size: 15px;
    margin: 25px 0
}

.follow-me {
    text-decoration: none;
    font-size: 14px;
    width: calc(100% + 60px);
    margin-left: -30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: auto;
    overflow: hidden;
    color: #9c9cab;
    padding: 0 20px;
    height: 52px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.follow-me svg {
    width: 16px;
    height: 16px;
    margin-right: 8px
}

.follow-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.follow-me:hover .follow-text {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%)
}

.follow-me:hover .developer {
    top: 0
}

.developer {
    position: absolute;
    color: var(--detail-font-color);
    font-weight: 600;
    left: 0;
    top: -100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    padding: 0 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--developer-color);
    width: 100%;
    height: 100%
}

.developer img {
    border-radius: 50%;
    width: 26px;
    height: 26px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 10px
}

.chat-area-group {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.chat-area-group * {
    border: 2px solid var(--theme-bg-color)
}

.chat-area-group *+* {
    margin-left: -5px
}

.chat-area-group span {
    width: 32px;
    height: 32px;
    background-color: var(--button-bg-color);
    color: var(--theme-color);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500
}

.search-bar:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 15px;
    height: 16px;
    width: 16px;
    background-image: url(../../img/search.svg);
    background-repeat: no-repeat
}

.chat__search {
    width: 100%
}

.accordion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px
}

.accordion__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px
}

.accordion .accordion__item {
    padding: 20px;
    border-radius: 20px;
    background: #f1f1f1
}

.accordion .accordion__item.accordion__item-active .accordion__item-content {
    display: block
}

.accordion .accordion__item.accordion__item-active .line2 {
    -webkit-transform: translate(0) !important;
    -ms-transform: translate(0) !important;
    transform: translate(0) !important;
    -webkit-transition: .1s all ease;
    -o-transition: .1s all ease;
    transition: .1s all ease
}

.accordion .accordion__item.accordion__item-active .line1 {
    opacity: 0;
    -webkit-transition: .1s all ease;
    -o-transition: .1s all ease;
    transition: .1s all ease
}

.accordion .accordion__item .accordion__item-trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    position: relative
}

.accordion .accordion__item .accordion__item-trigger .trigger__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    font-size: 18px;
    font-weight: 700;
    line-height: 120%
}

.accordion .accordion__item .accordion__item-trigger .trigger__img {
    position: relative;
    margin-left: auto;
    padding: 22px 16px;
    border-radius: 100px;
    background: #217b00
}

.accordion .accordion__item .accordion__item-trigger .trigger__img .line1 {
    display: block;
    width: 16px;
    height: 2px;
    background: #fff;
    border-radius: 100px
}

.accordion .accordion__item .accordion__item-trigger .trigger__img .line2 {
    display: block;
    width: 16px;
    height: 2px;
    background: #fff;
    margin-top: -2px;
    border-radius: 100px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.accordion .accordion__item .accordion__item-content {
    display: none;
    -webkit-animation: fade .3s ease;
    animation: fade .3s ease
}

.accordion .accordion__item .accordion__item-content .content__text {
    padding-top: 20px;
    opacity: .7;
    color: #1b1b1b;
    line-height: 120%
}

.accordion .accordion__item .accordion__item-content .content__text:first-child {
    margin-top: 0
}

.switch {
    width: 50px;
    height: 30px;
    position: relative;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.switch__checkbox {
    display: none
}

.switch__checkbox:checked+.switch__slider {
    background: #217b00
}

.switch__checkbox:checked+.switch__slider:after {
    left: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #f5f5f5
}

.switch__slider {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #d3d3d3;
    border-radius: 30px;
    -webkit-transition: .2s background;
    -o-transition: .2s background;
    transition: .2s background
}

.switch__slider::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #fff;
    -webkit-transition: .2s left, background;
    -o-transition: .2s left, background;
    transition: .2s left, background;
    left: 5px;
    top: 5px
}

footer {
    border-top: 1px solid #333;
    background: #e9e9e9
}

.footer {
    padding: 30px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.footer__left {
    font-size: 18px;
    font-weight: 500
}

.footer__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px
}

.footer__contact {
    padding: 20px 0 10px
}

.footer__contact a {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%
}

.footer__time {
    padding-bottom: 20px
}

.footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px
}

.footer__link {
    color: #333;
    font-size: 20px;
    font-weight: 500;
    line-height: 27px
}

.checkbox__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

.checkbox__item .checkbox__input {
    display: none
}

.checkbox__item .checkbox__input:checked+.fake::before {
    opacity: 1
}

.checkbox__item .fake {
    height: 20px;
    min-width: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    margin-right: 10px;
    position: relative;
    border: 1px solid #c2c2c2;
    border-radius: 5px;
    -webkit-transition: .1s;
    -o-transition: .1s;
    transition: .1s
}

.checkbox__item .fake::before {
    content: "";
    background: #144a00 url(../../img/select.svg) no-repeat;
    background-position: 4px 5px;
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    border-radius: 5px;
    top: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease
}

.checkbox__item:hover .fake {
    border-color: #144a00
}

.checkbox__name {
    color: #051e16;
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
    text-align: left
}

.checkbox__form {
    font-size: 16px
}

.checkbox__star {
    color: #ffd600
}

.checkbox__star--down {
    color: rgba(255, 214, 0, .5)
}

.footer__contact p {
    margin-bottom: 10px;
}

.select {
    font-family: Manrope, sans-serif;
    width: 100%;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 6px;
    background-color: #fff;
    padding: 10px 35px 10px 15px;
    outline: 0;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 10px
}

.select::-ms-expand {
    display: none
}

.select-wrapper {
    position: relative
}

.select-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
    width: 0;
    height: 0;
    border-width: 10.4px 6px 0 6px;
    border-color: #000 transparent transparent transparent;
    border-style: solid;
    display: none;
    pointer-events: none
}

.tabs {
    width: 100%;
    margin-bottom: 20px
}

.tabs__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    margin-bottom: 42px
}

.tabs__header-item {
    font-size: 24px;
    font-weight: 800;
    line-height: 120%;
    color: #7a7a7a;
    cursor: pointer
}

.tabs__header-item.active {
    color: #217b00;
    border-bottom: 2px solid #217b00
}

.tabs__content {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    line-height: 110%
}

.hero__search-input_toggler {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: max-content;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero__search-input_toggler input {
    display: none;
}

.hero__search-input_toggler,
.hero__search-input_toggler_container {
    align-items: baseline;
}

.hero__search-input_toggle {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    height: auto;
    cursor: pointer;
}

.hero__search-input_toggle>input {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.hero__search-input_toggle>span {
    position: relative;
    display: inline-block;
    padding: 0 0 6px;
    background: transparent !important;
    border-radius: 0 !important;
    height: auto;
    white-space: nowrap;
    font-size: 19px;
    font-weight: 600;
    color: #222;
}

.hero__search-input_toggle>input:checked+span {
    color: #111;
}

.hero__search-input_toggle>input:checked+span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: #217b00;
    border-radius: 2px;
}

.hero__search-input_toggler_container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero__search-input_toggler_title {
    font-size: 19px;
    color: #7a7a7a;
    font-weight: 600;
}

.modal__wrapper2 .modal {
    height: 650px;
    min-height: 650px;
}

.container-faq {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq {
    margin-top: 20px;
}

.faq__item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq__question {
    width: 100%;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq__question:hover {
    color: #3498db;
}

.faq__answer {
    display: none;
    padding: 10px;
    background: #f1f1f1;
    border-radius: 5px;
    margin-top: 5px;
}

.faq__icon {
    transition: transform 0.3s;
}

.faq__icon.open {
    transform: rotate(180deg);
}

.orders__list {
    display: flex;
    flex-direction: column;
}

.orders__item {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
    color: #000;
    cursor: pointer;
    gap: 10px;
    padding: 10px 0;
}

.orders__item+.orders__item {
    border-top: 1px solid #dedede;
}

.orders__item-name {
    max-width: 100%;
    width: 100%;
    gap: 7px;
    display: flex;
    flex-direction: column;
}

.orders__date {
    max-width: 120px;
    min-width: 120px;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.orders__item-price {
    max-width: 130px;
    min-width: 130px;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 30px;
}

.orders__item__content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.orders__item__content__city {
    color: var(--mainColor);
}

.orders__item__content__tegs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.orders__item__title {
    font-weight: 600;
}

.orders__item__content__teg {
    padding: 3px 6px;
    border-radius: 12px;
    border: 1px solid transparent;
    border-color: var(--mainColor);
    color: var(--mainColor);
}

.orders__item__description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.orders__item__documents {
    display: flex;
    max-width: 100%;
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
    height: 0;
    transition: all .3s;
    overflow: hidden;
}

.orders__item__document {
    display: flex;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    max-width: 80px;
    width: 100%;
    background: #ccc;
}

.orders__item.active {
    cursor: unset;
}

.orders__item.active .orders__item__documents {
    height: max-content;
}

.orders__item.active .orders__item__description {
    -webkit-line-clamp: unset;
}

.create_zakaz {
    display: flex;
    padding: 12px 15px;
    border-radius: 10px;
    color: #fff;
    background: var(--mainColor);
    margin-left: auto;
}

.modal__wrapper3.custom {
    display: none;
}

.modal__wrapper3.custom.active {
    display: flex;
}

.modal_register_zakaz,
.modal_register_zakaz form {
    display: flex;
    max-width: 100%;
    width: 100%;
    flex-direction: column;
    gap: 25px;
}

.modal_register_zakaz_content {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal_register_zakaz_content_title {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 25px;
    font-weight: 500;
}

.modal_register_zakaz_content_rows {
    display: flex;
    max-width: 100%;
    width: 100%;
    gap: 20px;
    flex-direction: column;
}

.modal_register_zakaz_content_row {
    display: flex;
    max-width: 100%;
    width: 100%;
    gap: 10px;
}

.modal_register_zakaz_row_item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.modal_register_zakaz_row_item_title {
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.modal_register_zakaz_row_item_input {
    width: 100%;
    display: flex;
    gap: 10px;
}

.modal__wrapper3.custom .modal::-webkit-scrollbar {
    display: none;
}

.dz-remove {
    color: #000;
    opacity: .5;
}

.other_sellers {
    max-width: 100%;
    width: 100%;
    display: flex;
    margin-top: 15px;
}

.other_sellers_content,
.other_sellers_modal_content {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.other_sellers_content_title,
.other_sellers_modal_content_title {
    max-width: 100%;
    width: 100%;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    gap: 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.other_sellers_content_title svg {
    max-width: 15px;
    width: 100%;
    height: auto;
    margin-top: 2px;
}

.other_sellers_content_products,
.other_sellers_modal_content_items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
    width: 100%;
}

.other_sellers_content_product,
.other_sellers_modal_content_item {
    max-width: 100%;
    width: 100%;
    display: flex;
    border-radius: 20px;
    padding: 12px 15px;
    background: #f1f1f1;
    gap: 10px;
    align-items: center;
    color: #000;
}

.other_sellers_content_product_img,
.other_sellers_content_title_img,
.other_sellers_modal_content_item_img {
    max-width: 40px;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
}

.other_sellers_modal_content_items {
    max-height: 430px;
    height: auto;
    overflow-y: scroll;
}

.other_sellers_modal_content_items::-webkit-scrollbar {
    display: none;
}

.other_sellers_modal_content_item_img {
    max-width: 100px;
}

.other_sellers_content_title_img,
.other_sellers_content_title_content_title_sub,
.other_sellers_content_title_arrow_count {
    display: none;
}

.other_sellers_content_product_img img,
.other_sellers_content_title_img img,
.other_sellers_modal_content_item_img img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.other_sellers_content_product_info,
.other_sellers_modal_content_item_text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.other_sellers_content_product_info_price,
.other_sellers_modal_content_item_price {
    color: var(--mainColor);
    font-size: 17px;
    font-weight: 500;
}

.other_sellers_content_product_info_review,
.other_sellers_modal_content_item_review {
    display: flex;
    gap: 5px;
    align-items: center;
}

.other_sellers_content_product_info_review_score,
.other_sellers_modal_content_item_sellers {
    display: flex;
    align-items: center;
}

.other_sellers_content_product_info_review_score svg,
.other_sellers_modal_content_item_sellers svg {
    max-width: 15px;
    width: 100%;
    height: auto;
}

.other_sellers_content_product_info_review_score_number {
    color: #000;
    font-size: 15px;
}

.other_sellers_content_product_info_review_delivery {
    color: #000;
    font-size: 15px;
}

.other_sellers_content_product_info_seller {
    display: flex;
    align-items: center;
    max-width: 100%;
    width: 100%;
    text-align: left;
    justify-content: start;
    gap: 5px;
}

.other_sellers_content_product_info_seller svg,
.other_sellers_modal_content_item_review svg {
    max-width: 15px;
    width: 100%;
    height: auto;
}

.other_sellers_content_product_info_seller_name {
    color: #000;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 350px;
    white-space: nowrap;
}

@media (max-width: 1449.98px) {
    .container {
        max-width: 1300px
    }
    .product-item__img {
        width: 300px
    }
    .product-item__img {
        width: 300px
    }
    .cart__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .cart__right {
        width: 100%
    }
}

.acc-mobile {
    display: none;
}

#shareButtonMobile,
#formfavorites {
    margin-top: -93px;
}

@media (max-width: 1349.98px) {
    .acc-mobile {
        display: block;
    }
    .acc-dis {
        display: none;
    }
    .product-item__wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .product-item__img {
        width: 100%
    }
    .product-buttons {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%
    }
    .product-buttons__mobile {
        margin-bottom: unset;
        width: 100%
    }
    .product-buttons__order {
        width: 100%
    }
    .product-buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 5px
    }
    .product-info__description {
        margin-bottom: 10px
    }
    .contact__list {
        grid-template-columns: repeat(2, 1fr)
    }
    .journal-item__wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .journal-item__img {
        width: 100%
    }
    .journal-buttons {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%
    }
    .journal-buttons__mobile {
        margin-bottom: unset;
        width: 100%
    }
    .journal-buttons__order {
        width: 100%
    }
    .journal-buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 5px
    }
    .journal-info__description {
        margin-bottom: 10px
    }
    .article__buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr)
    }
    .gallery__other-list {
        grid-template-columns: repeat(3, 1fr)
    }
    .gallery__main-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
    .product-item__wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .product-item__img {
        width: 100%
    }
    .product-buttons {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%
    }
    .product-buttons__mobile {
        margin-bottom: unset;
        width: 100%
    }
    .product-buttons__order {
        width: 100%
    }
    .product-buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 5px
    }
    .product-info__description {
        margin-bottom: 10px
    }
    .product__list {
        grid-template-columns: repeat(3, 1fr)
    }
    .card__other-list {
        grid-template-columns: repeat(3, 1fr)
    }
    .specialist__person-btn.btn-outline.send-message {
        width: 100%;
    }
}

.specialist__person-btn.btn-outline.send-message {
    color: #fff;
    background: #217b00;
}

.specialist__person-btn.btn-outline.send-message svg path {
    fill: #fff;
}

.specialist__person-btn.btn-outline.send-message:hover {
    color: #217b00;
    background: #fff;
}

.specialist__person-btn.btn-outline.send-message:hover svg path {
    fill: #217b00;
}

@media (max-width: 1200px) {
    .catalog__inner-list {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
    .journal__inner-list {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
    .settings__inner-list {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
}

@media (max-width: 1120px) {
    .detail-area {
        display: none
    }
}

@media (max-width: 1100px) {
    .catalog__search {
        width: 100%
    }
    .catalog__search-input {
        width: 100%
    }
    .journal__search {
        width: 100%
    }
    .journal__search-input {
        width: 100%
    }
    .settings__search {
        width: 100%
    }
    .settings__search-input {
        width: 100%
    }
}

@media (max-width: 991.98px) {
    .container {
        max-width: 970px
    }
    .specialist__person {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 24px
    }
    .specialist__person-right {
        width: 100%
    }
    .specialist__person-btn {
        width: 100%
    }
    .project__list {
        grid-template-columns: repeat(2, 1fr)
    }
    .reviews__search {
        width: 100%
    }
    .reviews__drop {
        width: 100%
    }
    .reviews__btn {
        width: 100%
    }
    .reviews__top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 40px
    }
    .gallery__user-name {
        font-size: 24px
    }
    .gallery__user-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .gallery__user img {
        width: auto;
        height: 100%
    }
    .gallery__main-info {
        min-width: unset
    }
    .project__list2 {
        grid-template-columns: repeat(2, 1fr)
    }
    .login__info {
        padding: 60px 0
    }
    .login__wrapper {
        grid-template-columns: repeat(1, 1fr)
    }
    .login__title {
        font-size: 40px
    }
    .login__title {
        text-align: center
    }
    .login__right {
        padding-left: unset
    }
    .login__right--img img {
        max-width: 100%;
        height: auto
    }
    .login__left {
        /* padding: 0 15px; */
        padding-right: unset;
        border-right: unset
    }
    .login__subtitle {
        font-size: 22px
    }
    .login__subtitle {
        text-align: center
    }
    .register__info {
        padding: 60px 0
    }
    .register__wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px
    }
    .register__title {
        font-size: 40px
    }
    .register__title {
        text-align: center
    }
    .register__right {
        padding-left: unset
    }
    .register__right--img img {
        max-width: 100%;
        height: auto
    }
    .register__left {
        padding-right: unset;
        border-right: unset
    }
    .register__subtitle {
        font-size: 22px
    }
    .register__subtitle {
        text-align: center
    }
    .register2__info {
        padding: 60px 0
    }
    .register2>.container {
        padding: 0
    }
    .register2 {
        padding: 70px 0 0 0
    }
    .register2__wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .register2__title {
        font-size: 40px
    }
    .register2__title {
        text-align: center
    }
    .register2__left {
        padding: 0 15px
    }
    .register2__subtitle {
        font-size: 22px
    }
    .register2__subtitle {
        text-align: center
    }
    .register2__form {
        border-radius: 20px 20px 0 0;
        min-width: unset
    }
    .profile__overlay {
        height: 450px
    }
    .profile__upload {
        left: 0;
        top: 0
    }
    .profile__navigation {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 20px 0;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap
    }
    .profile__avatar {
        right: 30px;
        top: 30px;
        left: unset
    }
    .profile__user {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
        padding: 0 30px 0 30px
    }
    .profile__user-left {
        -ms-flex-item-align: unset;
        align-self: unset
    }
    .profile__user-upload span {
        display: none
    }
    .profile__filtres {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .profile__filtres-left {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .product__list {
        grid-template-columns: repeat(2, 1fr)
    }
    .card__specifications {
        grid-template-columns: repeat(1, 1fr)
    }
    .card__user-name {
        font-size: 24px
    }
    .card__user-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .card__user img {
        width: auto;
        height: 100%
    }
    .card__main-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .card__main-info {
        min-width: unset;
        width: 100%
    }
    .cart__product {
        gap: 20px
    }
    .cart__info-title {
        max-width: 500px
    }
    .cart__price {
        min-width: unset;
        margin-left: auto
    }
    .cart__contact-list {
        grid-template-columns: repeat(1, 1fr)
    }
    .cart__pay-promo {
        -webkit-box-orient: unset;
        -webkit-box-direction: unset;
        -ms-flex-direction: unset;
        flex-direction: unset
    }
    .cart-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .cart__btn-content {
        left: 20px;
        right: unset
    }
    .other_sellers_content_products {
        display: none;
    }
    .other_sellers_content_title {
        padding: 12px 15px;
        border-radius: 20px;
        background: #f1f1f1;
        justify-content: space-between;
    }
    .other_sellers_content_title_img,
    .other_sellers_content_title_content_title_sub,
    .other_sellers_content_title_arrow_count {
        display: flex;
    }
    .other_sellers_content_title_content {
        gap: 8px;
        display: flex;
        flex-direction: column;
        max-width: 100%;
        width: 100%;
    }
    .other_sellers_content_title_arrow {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .other_sellers_content_title_content_title {
        font-size: 16px;
        color: #000;
        font-weight: 600;
    }
    .other_sellers_content_title_content_title_sub {
        color: #9f9f9f;
        font-size: 14px;
    }
}

@media (max-width: 940px) {
    .catalog__inner-list {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
    .journal__inner-list {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
    .settings__inner-list {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
}

.create_zakaz_desktop {
    display: flex!important;
}

.create_zakaz_mobile {
    display: none!important;
}

.bor_rig {
    border-right: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .bor_rig {
        border-right: unset;
    }
    #sortForm .drop {
        width: 100%;
    }
    .login__left {
        max-width: 100%;
    }
    .create_zakaz_desktop {
        display: none!important;
    }
    .create_zakaz_mobile {
        display: flex!important;
    }
    .register__left {
        max-width: 100%;
    }
    header .search__city {
        left: unset;
        right: 29px !important;
    }
    .hero__category-name {
        font-size: 16px
    }
    .pagination__item--prev {
        display: none;
    }
    .hero__category-img {
        width: 164px;
        height: 164px
    }
    .breadcrumbs__list-item::after {
        top: 1px;
    }
}

@media (max-width: 768px) {
    .setup__header {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .tabs__header {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    header .search__city {
        left: unset;
        right: 29px !important;
    }
    header ul {
        font-size: 16px;
    }
    body.custom_chat .chat-wrapper button.col-span-2[type="submit"] {
        position: relative;
        color: transparent;
        overflow: hidden;
    }
    body.custom_chat .chat-wrapper button.col-span-2[type="submit"]::after {
        content: ">";
        position: absolute;
        top: 50%;
        left: 50%;
        color: #217b00 !important;
        font-size: 40px;
        transform: translate(-50%, -50%);
        text-box-trim: trim-end;
        line-height: 100%;
    }
}

@media (max-width: 1024px) {
    body.custom_chat>header,
    body.custom_chat>footer,
    body.custom_chat .profile .profile__header,
    body.custom_chat .profile .profile__navigation {
        display: none;
    }
    body.custom_chat .chat-wrapper {
        margin: 0 !important;
        height: 100vh;
    }
    body.custom_chat .profile {
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .container {
        max-width: 740px
    }
    .btn-outline {
        font-size: 18px
    }
    .btn-main {
        font-size: 18px
    }
    /*.search__city {*/
    /*    position: unset*/
    /*}*/
    .content {
        position: unset
    }
    .hero {
        padding: 20px 0 60px
    }
    .hero__title {
        font-size: 60px
    }
    .hero__search-btn {
        display: none
    }
    .hero__search-item {
        grid-template-columns: 1fr
    }
    .categoryes {
        padding: 0 0 60px 0
    }
    .categoryes__main {
        grid-template-columns: repeat(2, 1fr)
    }
    .professional {
        padding: 0 0 30px 0
    }
    .professional__item-btn {
        font-size: 18px
    }
    .professional-btn,
    .clause__title-btn {
        display: none
    }
    .swiper {
        overflow-x: auto;
        overflow-y: hidden
    }
    .intro__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
    .breadcrumbs {
        margin-bottom: 5px
    }
    .breadcrumbs-reverse {
        margin-bottom: unset;
        padding-top: 20px
    }
    .breadcrumbs__list-item a {
        font-size: 14px
    }
    .breadcrumbs__list-item:last-child a,
    .breadcrumbs__list-item:last-child span {
        font-size: 14px
    }
    .catalog__inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .acide__btn {
        font-family: Manrope, sans-serif;
        display: block;
        width: 100%;
        padding: 15px 0 15px 25px;
        margin-bottom: 30px;
        background-color: unset;
        color: #051e16;
        font-size: 18px;
        font-weight: 700;
        line-height: 140%;
        text-align: left;
        position: relative
    }
    .acide__btn:before {
        content: "";
        position: absolute;
        left: 0;
        top: 15px;
        width: 20px;
        height: 21px;
        background-image: url(../../img/filter.svg)
    }
    .catalog__inner-aside {
        max-height: 0;
        visibility: hidden;
        opacity: 0;
        overflow: hidden;
        -webkit-transition: max-height .5s ease, opacity .5s ease, visibility .5s;
        -o-transition: max-height .5s ease, opacity .5s ease, visibility .5s;
        transition: max-height .5s ease, opacity .5s ease, visibility .5s
    }
    .show-mobile {
        max-height: 100%;
        visibility: visible;
        opacity: 1
    }
    .product-item__img {
        border-radius: 20px 20px 0 0
    }
    .info__text {
        font-size: 16px
    }
    .person {
        padding-top: 20px
    }
    .person__breadcrumbs {
        display: unset
    }
    .specialist__person {
        padding-top: 20px
    }
    .specialist__person-title {
        font-size: 24px
    }
    .specialist__person-info {
        font-size: 16px
    }
    .specialist__person-name {
        font-size: 24px
    }
    .project>.container {
        padding: 20px 15px 20px
    }
    .project__title {
        font-size: 24px
    }
    .project__btn button {
        width: 100%
    }
    .project__item-name {
        font-size: 20px
    }
    .contact>.container {
        padding: 20px 15px 20px
    }
    .contact__title {
        font-size: 24px
    }
    .contact__info {
        font-size: 20px
    }
    .contact__info-name {
        font-size: 20px
    }
    .contact__item-title {
        font-size: 20px
    }
    .awards>.container {
        padding: 20px 15px 20px
    }
    .awards__title {
        font-size: 24px
    }
    .access>.container {
        padding: 20px 15px 20px
    }
    .access__title {
        font-size: 24px
    }
    .access__info {
        font-size: 20px
    }
    .search-main__wrapper {
        width: 100%
    }
    .reviews>.container {
        padding: 20px 15px 20px
    }
    .reviews__dropdown {
        width: 100%
    }
    .reviews__top-title {
        font-size: 24px
    }
    .reviews__filter {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .reviews__quality-item {
        font-size: 20px
    }
    .reviews__quality-top {
        font-size: 20px
    }
    .tags>.container {
        padding: 20px 15px 60px
    }
    .tags__title {
        font-size: 24px
    }
    .tags__link {
        font-size: 16px
    }
    .journal__inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .acide__btn {
        display: block;
        width: 100%;
        padding: 15px 0 15px 25px;
        margin-bottom: 30px;
        background-color: unset;
        color: #051e16;
        font-size: 18px;
        font-weight: 700;
        line-height: 140%;
        text-align: left;
        position: relative
    }
    .acide__btn:before {
        content: "";
        position: absolute;
        left: 0;
        top: 15px;
        width: 20px;
        height: 21px;
        background-image: url(../../img/filter.svg)
    }
    .journal__inner-aside {
        max-height: 0;
        visibility: hidden;
        opacity: 0;
        overflow: hidden;
        -webkit-transition: max-height .5s ease, opacity .5s ease, visibility .5s;
        -o-transition: max-height .5s ease, opacity .5s ease, visibility .5s;
        transition: max-height .5s ease, opacity .5s ease, visibility .5s
    }
    .show-mobile {
        max-height: 100%;
        visibility: visible;
        opacity: 1
    }
    .journal-item__img {
        border-radius: 20px 20px 0 0
    }
    .post__title {
        font-size: 32px
    }
    .post__top::before {
        height: 24px
    }
    .article__buttons {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px
    }
    .article__buttons-top {
        display: none
    }
    .article__main {
        font-size: 18px
    }
    .article__main-list {
        font-size: 16px
    }
    .article__title {
        font-size: 24px
    }
    .article__subtitle {
        font-size: 16px
    }
    .clause {
        padding: 60px 0 60px 0
    }
    .clause__item-title {
        font-size: 18px
    }
    .clause__item-btn {
        font-size: 18px
    }
    .gallery__other {
        padding: 40px 0 60px 0
    }
    .gallery__other-title {
        margin-bottom: 10px
    }
    .gallery__other-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 10px;
        gap: 10px
    }
    .gallery__other-list::-webkit-scrollbar {
        height: 4px;
        background: #dcdcdc
    }
    .gallery__other-list::-webkit-scrollbar-thumb {
        background-color: #217a00;
        border-radius: 10px
    }
    .gallery__btn-list {
        display: none
    }
    .gallery__btn-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px
    }
    .gallery__main {
        padding: 20px 0 30px
    }
    .main__inner {
        display: block
    }
    .project__inner-aside {
        display: block
    }
    .project__inner-aside2 {
        display: none
    }
    .project__person-btn {
        width: 100%
    }
    .person__catalog {
        padding: 20px 0 20px
    }
    .project {
        padding-bottom: 60px
    }
    .project__acide {
        margin-bottom: unset
    }
    .login__title {
        font-size: 32px
    }
    .login__subtitle {
        font-size: 16px
    }
    .login__form-input {
        font-size: 16px
    }
    .login__form-title {
        font-size: 24px
    }
    .register__title {
        font-size: 32px
    }
    .register__subtitle {
        font-size: 16px
    }
    .register__form-input {
        font-size: 16px
    }
    .register__form-title {
        font-size: 24px
    }
    .register2__title {
        font-size: 32px
    }
    .register2__subtitle {
        font-size: 16px
    }
    .register2__form-input {
        font-size: 16px
    }
    .register2__form-title {
        font-size: 24px
    }
    .profile__avatar {
        top: 30%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }
    .profile__user-left {
        font-size: 18px
    }
    .profile__user-name {
        font-size: 22px
    }
    .profile__user-edit {
        font-size: 16px
    }
    .setup__header-item:after {
        content: unset
    }
    .setup__content-btn {
        margin: 0 auto
    }
    .setup__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto
    }
    .modal__wrapper1 .modal {
        height: 100vh;
        border-radius: unset
    }
    .modal__wrapper2 .modal {
        height: 100vh;
        border-radius: unset
    }
    .modal__wrapper3 .modal {
        height: 100vh;
        border-radius: unset
    }
    .modal__wrapper4 .modal {
        height: 100vh;
        border-radius: unset
    }
    .steps__form {
        overflow-y: auto;
        padding-right: 10px;
        /* padding-bottom: 100px */
    }
    .modal__wrapper3 div.steps__form {
        padding-bottom: 0;
    }
    .form__info {
        width: auto;
        border-left: unset;
        border-top: 3px solid #217b00
    }
    .form__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px
    }
    .settings__inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .settings-menu__btn {
        font-family: Manrope, sans-serif;
        display: block;
        width: 100%;
        padding: 15px 0 15px 25px;
        margin-bottom: 30px;
        background-color: unset;
        color: #051e16;
        font-size: 18px;
        font-weight: 700;
        line-height: 140%;
        text-align: left;
        position: relative
    }
    .settings-menu__btn:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: auto;
        aspect-ratio: 1 / 1;
        background-image: url(../../img/filter.svg)
    }
    .settings__inner-aside {
        max-height: 0;
        visibility: hidden;
        opacity: 0;
        overflow: hidden;
        -webkit-transition: max-height .5s ease, opacity .5s ease, visibility .5s;
        -o-transition: max-height .5s ease, opacity .5s ease, visibility .5s;
        transition: max-height .5s ease, opacity .5s ease, visibility .5s
    }
    .show-mobile {
        max-height: 100%;
        visibility: visible;
        opacity: 1;
        margin-bottom: 30px
    }
    .product-item__img {
        border-radius: 20px 20px 0 0
    }
    .info__text {
        font-size: 16px
    }
    .settings__main {
        width: 100%
    }
    .settings__user-header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px
    }
    .card__other {
        padding: 40px 0 60px 0
    }
    .card__other-title {
        margin-bottom: 10px
    }
    .card__other-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 10px;
        gap: 10px
    }
    .card__other-list::-webkit-scrollbar {
        height: 4px;
        background: #dcdcdc
    }
    .card__other-list::-webkit-scrollbar-thumb {
        background-color: #217a00;
        border-radius: 10px
    }
    .card__btn-list {
        display: none
    }
    .card__btn-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px
    }
    .cart__order-list {
        grid-template-columns: repeat(1, 1fr)
    }
    .accordion .accordion__item {
        margin-top: 10px;
        padding: 16px
    }
    .accordion .accordion__item .accordion__item-trigger .trigger__text {
        font-size: 18px;
        padding-right: 50px
    }
    .footer {
        grid-template-columns: repeat(2, 1fr)
    }
    .tabs__header-item {
        font-size: 18px
    }
    .tabs__header {
        gap: 20px
    }
    .tabs__content {
        font-size: 16px
    }
    .sort_order {
        flex-direction: column;
        align-items: start !important;
        gap: 10px;
    }
    .sort_order .create_zakaz {
        margin-left: 0;
        width: 100%;
    }
    .sort_order .drop {
        width: 100%;
    }
    .modal_register_zakaz_row_item_input {
        flex-direction: column;
    }
    .orders__date {
        font-size: 14px;
        max-width: auto;
        min-width: auto;
        width: auto;
        margin-top: 0;
        text-align: left;
        padding: 0;
        flex-shrink: 0;
    }
    .orders__item-price {
        font-size: 14px;
        max-width: auto;
        min-width: auto;
        width: auto;
        margin-top: 0;
        text-align: right;
        padding: 0;
        flex-shrink: 0;
    }
    .orders__item__content__teg {
        font-size: 10px;
    }
    .orders__item-name {
        display: contents;
        width: 100%;
    }
    .orders__item {
        flex-direction: column;
        align-items: start;
        width: 100%;
        gap: 8px;
    }
    .orders__item__title {
        order: 1;
        width: 100%;
    }
    .orders__item__content {
        order: 2;
        width: 100%;
        flex-wrap: wrap;
        margin-top: 4px;
    }
    .block_price_and_date {
        order: 3;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        margin-top: 8px;
    }
    .orders__item__description {
        order: 4;
        width: 100%;
    }
    .orders__item__documents {
        order: 5;
        flex-direction: column;
        width: 100%;
    }
    .orders__item-contact {
        order: 6;
        width: 100%;
        margin-top: 8px;
    }
    .orders__item-contact .btn-show-phone33,
    .orders__item-contact .btn-show-phone34 {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
    .catalog__inner-aside {
        max-width: 100%;
        width: 100%;
    }
    .other_sellers_modal_content_items {
        max-height: calc(100vh - (25px + 20px + 20px + 10px + 16px + 25px));
    }
    .modal__wrapper2 .modal {
        width: 100%;
        max-width: 100%;
        padding: 15px;
        min-height: 100vh;
        height: 100vh;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }
    .modal__wrapper2 .modal__body {
        flex: 1;
        overflow-y: auto;
        padding: 0;
        height: auto;
        max-height: calc(100vh - 60px);
    }
    .modal__wrapper2 .modal__close2 {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 10001;
        margin-bottom: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #217b00;
        border-radius: 50%;
        padding: 5px;
    }
    .modal__wrapper2 .modal__close2 img {
        width: 16px;
        height: 16px;
        filter: brightness(0) invert(1);
    }
    .form__header {
        padding: 0 0 20px 0;
        margin-top: 10px;
    }
    .form__title {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    .form__subtitle {
        font-size: 14px;
        line-height: 1.4;
        padding-top: 8px;
    }
    .form__wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .form__project {
        display: none;
    }
    .form__main {
        width: 100%;
    }
    .form-group {
        width: 100%;
        margin-bottom: 15px;
    }
    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
        display: block;
    }
    .input-main {
        width: 100%;
        font-size: 16px;
        padding: 12px;
        margin-bottom: 15px;
        border-radius: 8px;
    }
    .form-group__input {
        width: 100%;
        font-size: 16px;
        padding: 12px;
        margin-bottom: 15px;
        border-radius: 8px;
    }
    textarea.input-main,
    textarea.form-group__input {
        min-height: 100px;
        resize: vertical;
    }
    select.input-main {
        width: 100%;
        font-size: 16px;
        padding: 12px;
        margin-bottom: 15px;
        border-radius: 8px;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 12px;
        padding-right: 40px;
    }
    .step__buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 15px;
        display: flex;
        gap: 10px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 10002;
    }
    .step__buttons .btn {
        flex: 1;
        font-size: 16px;
        padding: 12px;
        height: auto;
        min-height: 48px;
        border-radius: 8px;
    }
    .step__buttons .btn-outline,
    .step__buttons .btn-main {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 16px !important;
        height: 48px !important;
        min-height: 48px !important;
    }
    .form__bar-track {
        display: none;
    }
    .file__uploader {
        width: 100%;
    }
    .file__item {
        width: 100%;
        padding: 20px;
        border: 2px dashed #217b00;
        border-radius: 8px;
        text-align: center;
    }
    .file__item-text {
        font-size: 16px;
        margin-top: 10px;
    }
    .imagePreview {
        width: 100% !important;
        max-height: 200px;
        margin-top: 15px;
    }
    .image-wrapper {
        width: 80px !important;
        height: 80px !important;
    }
    .preview-image {
        width: 100%;
        height: 100%;
    }
    .steps__form {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 767.98px) {
    .menu {
        position: fixed;
        background: #fff;
        left: 0;
        top: 0;
        height: 100vh;
        width: 100vw;
        display: none
    }
    .menu.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        left: 0;
        top: 0;
        height: 100vh;
        width: 100vw;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        pointer-events: all;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        z-index: 20;
        gap: 20px;
        -webkit-animation: fade .1s linear;
        animation: fade .1s linear;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-top: 100px;
        padding-left: 15px
    }
    .burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        height: 20px;
        width: 30px;
        z-index: 1000;
    }
    .burger.active:before {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: cubic-bezier(.785, .135, .15, .86) .3s all;
        -o-transition: cubic-bezier(.785, .135, .15, .86) .3s all;
        transition: cubic-bezier(.785, .135, .15, .86) .3s all;
        top: 8px;
        background: #217b00
    }
    .burger.active:after {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        bottom: 10px;
        -webkit-transition: cubic-bezier(.785, .135, .15, .86) .3s all;
        -o-transition: cubic-bezier(.785, .135, .15, .86) .3s all;
        transition: cubic-bezier(.785, .135, .15, .86) .3s all;
        background: #217b00
    }
    .burger.active span {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0)
    }
    .burger:after,
    .burger:before {
        content: "";
        position: absolute;
        height: 2px;
        width: 100%;
        background: #217b00;
        -webkit-transition: cubic-bezier(.785, .135, .15, .86) .3s all;
        -o-transition: cubic-bezier(.785, .135, .15, .86) .3s all;
        transition: cubic-bezier(.785, .135, .15, .86) .3s all
    }
    .burger:before {
        top: 0
    }
    .burger::after {
        bottom: 0
    }
    .burger span {
        position: absolute;
        top: 9px;
        right: 0;
        width: 100%;
        background: #217b00;
        height: 2px;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        -webkit-transition: cubic-bezier(.785, .135, .15, .86) .3s all;
        -o-transition: cubic-bezier(.785, .135, .15, .86) .3s all;
        transition: cubic-bezier(.785, .135, .15, .86) .3s all
    }
}

@media (max-width: 546px) {
    .specialist__person-img {
        width: 100px;
        height: 100px
    }
}

@media (max-width: 500px) {
    .project__list {
        margin-bottom: unset
    }
    .project__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 10px
    }
    .project__item-bottom {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .project__list2 {
        margin-bottom: unset
    }
    .project__list2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 10px
    }
}

@media (max-width: 479.98px) {
    .container {
        max-width: none
    }
    .main-title {
        font-size: 28px;
        margin-bottom: 10px
    }
    .secondary-title {
        font-size: 32px;
        padding: 20px 0
    }
    .main-subtitle {
        font-size: 16px;
        margin-bottom: 20px
    }
    .hero__title {
        font-size: 32px
    }
    .hero__subtitle {
        font-size: 16px
    }
    .hero__search-list {
        margin-bottom: 20px
    }
    .hero__search-link {
        font-size: 14px
    }
    .hero__search-input input {
        font-size: 14px
    }
    .info__title {
        font-size: 20px
    }
    .contact__list {
        grid-template-columns: repeat(1, 1fr)
    }
    .info__title {
        font-size: 20px
    }
    .product__list {
        grid-template-columns: repeat(1, 1fr)
    }
    .card__main-price {
        font-size: 36px
    }
    .card__image-top img {
        height: 300px
    }
    .cart__pay-promo {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .cart__btn-order {
        width: 100%
    }
    .footer {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 379.98px) {
    .categoryes__main {
        grid-template-columns: repeat(1, 1fr)
    }
}

@media (max-width: 320px) {
    .pagination__item {
        margin: 0
    }
}

#cityModal .modal {
    display: none;
    position: fixed;
    z-index: 30;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
}

#cityModal .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    border-radius: 8px;
    height: max-content !important;
}

#cityModal .modal-header {
    font-size: 20px;
    margin-bottom: 10px;
}

#cityModal .modal-body {
    margin-bottom: 20px;
}

.city-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 250px;
    overflow-y: auto;
}

.city-list li {
    padding: 10px;
    cursor: pointer;
    display: block;
    text-align: start;
}

.city-list li:hover {
    background-color: #f0f0f0;
}

.city-list li.hidden {
    display: none;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.search {
    position: relative;
    width: 100%;
}

.search i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 17px;
    color: #c6c3c3;
    z-index: 1;
}

.search input {
    width: 100%;
    padding-left: 30px;
    padding-right: 10px;
    height: 40px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery #shareButtonMobile {
        margin-top: 0;
    }
    .form-group.reviews_container {
        margin: 0 auto !important;
        text-align: center !important;
    }
    .text_text {
        margin-left: 0 !important;
    }
    .modal-content {
        text-align: center !important;
    }
    .modal-dialog {
        position: fixed !important;
        left: 0 !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        transform: none !important;
        max-width: 100% !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 15px !important;
        box-sizing: border-box !important;
    }
    .modal-content {
        width: 100% !important;
        max-width: 100% !important;
        max-height: calc(100vh - 30px) !important;
        overflow-y: auto !important;
        margin: 0 !important;
    }
    .modal-body {
        padding: 15px !important;
    }
    .modal-header {
        padding: 15px !important;
    }
    .modal-footer {
        padding: 15px !important;
    }
    .modal-footer .btn-main.settings__btn {
        margin-left: 0 !important;
        width: 100% !important;
    }
    .reviews_container label b {
        margin-left: 0 !important;
    }
    #charCount {
        margin: 0 15px !important;
    }
    .modal-body h4 {
        padding: 0 15px !important;
        font-size: 16px !important;
    }
    .form__textarea.settings__textarea.reviews_text {
        margin: 14px auto 0 !important;
        width: calc(100% - 30px) !important;
    }
    .div_city {
        box-shadow: 0px 0px 20px 1px rgb(128, 128, 128);
        background: #fff;
        height: 49px;
        border-radius: 20px;
        padding: 10px;
        font-size: 8px;
        border: 1px solid #eee;
        position: fixed;
        bottom: -47px;
        width: 345px;
        left: 1px;
    }
    .span_city {
        margin-left: 20px;
        font-size: 10px;
    }
    .span_button {
        padding: 0px 10px;
        min-height: 27px;
    }
    .modal-content {
        width: 90%;
    }
}

.div_city {
    box-shadow: 0px 0px 20px 1px rgb(128, 128, 128);
    background: #fff;
    height: 60px;
    border-radius: 20px;
    padding: 11px;
    border: 1px solid #eee;
    position: fixed;
    bottom: -47px;
    width: 566px;
    left: 1px;
    z-index: 1000;
}

.span_city {
    margin-left: 37px;
}

.span_button {
    margin-left: 20px;
    font: inherit;
    position: relative;
    border: none;
    font-weight: 600;
    border-radius: .6em;
    line-height: 1em;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    outline: 0;
    text-decoration: none;
    color: #333;
    padding: 0 15px;
    min-height: 36px;
    background: #ebebeb;
}

.star {
    color: #9e9e9e;
}

.star.filled {
    color: #fdd400;
}

.rating-count {
    color: #000;
}


/* .hero {
margin-top: 50px;
} */

.div_city {
    box-shadow: 0px 0px 20px 1px rgb(128, 128, 128);
    background: #fff;
    height: 60px;
    border-radius: 20px;
    padding: 11px;
    border: 1px solid #eee;
    position: absolute;
    bottom: -47px;
    width: 566px;
    left: 1px;
}

.span_city {
    margin-left: 37px;
}

.span_button {
    margin-left: 20px;
    font: inherit;
    position: relative;
    border: none;
    font-weight: 600;
    border-radius: .6em;
    line-height: 1em;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    outline: 0;
    text-decoration: none;
    color: #333;
    padding: 0 15px;
    min-height: 36px;
    background: #ebebeb;
}

.content {
    display: none;
}

#cityModal.modal {
    display: none;
    position: fixed;
    z-index: 30;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Отключаем прокрутку */
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
}

#cityModal .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    max-width: 400px;
    /* Ограничиваем ширину окна */
    overflow: hidden;
    /* Скрываем прокрутку внутри модального окна */
    border-radius: 8px;
    /* Немного скруглим углы */
    height: max-content !important;
}

#cityModal .modal-header {
    font-size: 20px;
    margin-bottom: 10px;
}

#cityModal .modal-body {
    margin-bottom: 20px;
}

.city-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 250px;
    /* Ограничим высоту списка */
    overflow-y: auto;
    /* Добавляем вертикальную прокрутку внутри списка */
}

.city-list li {
    padding: 10px;
    cursor: pointer;
    display: block;
    text-align: start;
}

.city-list li:hover {
    background-color: #f0f0f0;
}

.city-list li.hidden {
    display: none;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.search {
    position: relative;
    width: 100%;
    /* Убедитесь, что контейнер имеет нужную ширину */
}

.search i {
    position: absolute;
    left: 10px;
    /* Позиция иконки от левого края */
    top: 50%;
    /* Центрируем по вертикали */
    transform: translateY(-50%);
    /* Центрирование по вертикали */
    font-size: 17px;
    /* Размер иконки */
    color: #c6c3c3;
    /* Цвет иконки */
    z-index: 1;
    /* Иконка должна быть сверху, если есть другие элементы */
}

.search input {
    width: 100%;
    /* Поле ввода растягивается на всю ширину родителя */
    padding-left: 30px;
    /* Оставляем место для иконки */
    padding-right: 10px;
    /* Немного отступа справа */
    height: 40px;
    /* Устанавливаем высоту поля */
    font-size: 16px;
    /* Размер шрифта */
    border: 1px solid #ccc;
    /* Пределы поля */
    border-radius: 4px;
    /* Скругленные углы */
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.professional__item {
    min-height: 470px;
}

.professional__item-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Обрезаем до двух строк */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 48px;
    /* Высота двух строк */
}

.professional__item-info {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Обрезаем до двух строк */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 40px;
    /* Высота двух строк */
}

.professional__item {
    min-height: 470px;
    /* Фиксированная минимальная высота */
    display: flex;
    flex-direction: column;
}

.professional__item-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Растягиваем контент на всю высоту */
    justify-content: space-between;
    /* Размещаем элементы равномерно */
}

.professional__item-btn {
    margin-top: auto;
    /* Прижимаем кнопку к низу */
}

@media (max-width: 768px) {
    .div_city {
        box-shadow: 0px 0px 20px 1px rgb(128, 128, 128);
        background: #fff;
        height: 49px;
        border-radius: 20px;
        padding: 10px;
        font-size: 10px;
        border: 1px solid #eee;
        position: absolute;
        bottom: -47px;
        width: 345px;
        left: 1px;
    }
    .hero {
        margin-top: 0 !important;
    }
    .span_city {
        margin-left: 20px;
        font-size: 14px;
    }
    .span_button {
        padding: 0px 10px;
        min-height: 27px;
    }
    .modal-content {
        width: 90%;
    }
}

.phone-modal-overlay {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-modal-content {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px 30px 30px;
    width: 440px;
    min-width: 320px;
    max-width: 90vw;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    position: relative;
    text-align: center;
}

.phone-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}

.phone-modal-close:hover {
    color: #217b00;
}

.phone-modal-warning {
    margin-top: 19px;
    background: #fee3e3;
    padding: 12px;
    color: #cd2222;
    font-weight: 600;
}

.phone-modal-title {
    font-size: 27px;
    font-weight: 500;
    margin-bottom: 33px;
}

@media (max-width: 600px) {
    .phone-modal-content {
        min-width: 0;
        width: 95vw;
        padding: 30px 10px 20px 10px;
    }
}

.spec_check .checkbox__item .fake {
    border-radius: 13px !important;
}

.spec_check .checkbox__item .fake::before {
    background: #144a00;
    height: 15px;
    width: 15px;
    border-radius: 13px;
}

.spec_check .checkbox__item .fake_custom {
    border: 20px solid transparent;
    border-top: 20px solid green;
}

.dropify-font-upload:before,
.dropify-wrapper .dropify-message span.file-icon:before {
    color: white !important;
}

.dropify-wrapper {
    border-radius: 10px
}

.button_fill_my {
    margin-right: 0 !important;
}

@media (max-width: 768px) {
    .button_fill_my {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
    }
}

@media (max-width: 510px) {
    .button_fill_my button,
    #button_fill {
        font-size: 12px;
        height: 35px;
    }
}

.product__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-toggle {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 4px;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
}

.category-toggle::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 6px solid #217b00;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transition: transform 0.2s;
    position: absolute;
    left: 2px;
    top: 2px;
    transform: rotate(90deg);
    /* вниз */
}

.category-toggle.opened::before {
    transform: rotate(-90deg);
    /* вверх */
}

.category-toggle.empty::before {
    border-left: 6px solid transparent;
}

.category-toggle.empty {
    display: none;
}

.checkbox__name a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}

.checkbox__name a:hover {
    color: #217b00;
    text-decoration: underline;
}

.settings__price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.settings__price-table th,
.settings__price-table td {
    padding: 8px 0;
    border-bottom: 1px solid #eaeaea;
    font-size: 18px;
}

.settings__price-table th {
    color: #217b00;
    font-weight: 700;
    background: #f8f8f8;
}

.settings__price-table tr:last-child td {
    border-bottom: none;
}

.modal__wrapper3.custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1000;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
}

#priceModal.modal__wrapper3.custom {
    display: flex;
}

.modal {
    background: #fff;
    border-radius: 12px;
    padding: 32px 24px;
    min-width: 320px;
    /* max-width: 95vw; */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.modal__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #217b00;
}

.btn-main {
    font-family: Manrope, sans-serif;
    font-weight: 700;
    border-radius: 10px;
    background: #217b00;
    color: #fff;
    text-align: center;
    padding: 12px 15px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

main .settings .btn-main,
#createOrderForm .btn-main {
    padding: 12px 32px;
}

.btn-main:hover {
    background: #144a00;
}

.btn-outline {
    font-family: Manrope, sans-serif;
    color: #217b00;
    font-size: 20px;
    font-weight: 700;
    border: 2px solid #217b00;
    border-radius: 10px;
    background: #fff;
    padding: 12px 32px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
    background: #217b00;
    color: #fff;
}

.favorite-active {
    fill: #217b00 !important;
}


/* DESKTOP */

@media (min-width: 901px) {
    .div_city:not([style*="display:none"]):not([style*="display: none"]) {
        display: flex !important;
        align-items: center !important;
    }
    .div_city .span_city+.span_button {
        margin-left: auto !important;
    }
    .div_city .span_city+.span_button+.span_button {
        margin-left: 12px !important;
        margin-right: 26px !important;
    }
}


/* MOBILE */

.messages-badge {
    border: 1px solid green;
    border-radius: 20px;
    width: 22px;
    height: 22px;
    display: inline-flex;
    font-size: 13px;
    justify-content: center;
    color: white;
    background: green;
    align-items: center;
}

@media (max-width: 900px) {
    .div_city:not([style*="display:none"]):not([style*="display: none"]) {
        display: flex !important;
        align-items: center !important;
        box-sizing: border-box;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100vw - 24px - 24px - env(safe-area-inset-left) - env(safe-area-inset-right)) !important;
        max-width: 100vw !important;
        right: auto !important;
    }
    .div_city .span_city+.span_button {
        margin-left: auto !important;
    }
    .div_city .span_button {
        margin-left: 8px !important;
        padding: 0 12px !important;
        min-height: 32px !important;
    }
    .div_city .span_city+.span_button+.span_button {
        margin-right: 12px !important;
    }
    /* .gallery__image {
        max-width: 250px !important;
        width: 250px !important;
    } */
}


/* Стили для conversation main на десктопе */

.chat-conversation-main {
    max-height: 600px;
    min-height: 400px;
}


/* Адаптация чата под высоту окна на мобильных устройствах */

@media (max-width: 1024px) {
    body.custom_chat .chat-wrapper {
        height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        margin-top: 0 !important;
    }
    body.custom_chat .chat-wrapper>div {
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
        min-height: 0 !important;
        overflow: hidden !important;
        height: 100% !important;
    }
    body.custom_chat .chat-wrapper>div[style*="contain:content"],
    body.custom_chat .chat-wrapper>div.grid {
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
        min-height: 0 !important;
        overflow: hidden !important;
        height: 100% !important;
    }
    body.custom_chat .chat-wrapper>div>div {
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
        min-height: 0 !important;
        height: 100% !important;
    }
    body.custom_chat .chat-wrapper>div>div.w-full,
    body.custom_chat .chat-wrapper>div>div.w-full.overflow-hidden {
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
        min-height: 0 !important;
        height: 100% !important;
    }
    body.custom_chat .chat-wrapper>div>div>div {
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
        min-height: 0 !important;
        height: 100% !important;
    }
    body.custom_chat .chat-wrapper>div>div>div.border-b {
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
        min-height: 0 !important;
        height: 100% !important;
    }
    body.custom_chat .chat-conversation-main {
        max-height: none !important;
        min-height: 0 !important;
        flex: 1 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        margin: 0 !important;
    }
    body.custom_chat footer {
        flex-shrink: 0 !important;
        position: sticky !important;
        bottom: 0 !important;
    }
    body.custom_chat .profile {
        margin-bottom: 0 !important;
        height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
    }
    body.custom_chat .profile .container {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
        min-height: 0 !important;
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    body.custom_chat .chat-wrapper {
        height: 100vh !important;
        height: 100dvh !important;
        /* Динамическая высота viewport для мобильных */
        border-radius: 0 !important;
    }
    body.custom_chat .chat-conversation-main {
        max-height: none !important;
        min-height: 0 !important;
        flex: 1 !important;
        overflow-y: auto !important;
        padding: 1rem !important;
    }
    body.custom_chat footer {
        flex-shrink: 0 !important;
        position: sticky !important;
        bottom: 0 !important;
        z-index: 10 !important;
        background: white !important;
        border-top: 1px solid #e5e7eb !important;
    }
    body.custom_chat header {
        flex-shrink: 0 !important;
    }
    body.custom_chat .profile {
        height: 100vh !important;
        height: 100dvh !important;
    }
    body.custom_chat .profile .container {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
        min-height: 0 !important;
    }
    .login__form-list {
        gap: 0px
    }
    .login__form-btn.btn-main {
        margin-top: 18px;
        margin-bottom: 18px;
    }
}