.select {
    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: 12px;
}
.select[data-state='active'] .select__title::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.select[data-state='active'] .select__content {
    opacity: 1;
    visibility: visible;
}

.select__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    gap: 4px;
    font-weight: 400;
    font-size: 12px;
    color: #626262;
    cursor: pointer;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.select__title::after {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.8125 6.24524C12.9375 6.30774 13 6.43274 13 6.55774V7.68274C13 7.80774 12.9375 7.87024 12.875 7.93274L8.1875 11.6827C8.0625 11.7452 7.9375 11.7452 7.8125 11.6827L3.125 8.24524C3.0625 8.18274 3 8.12024 3 7.99524V6.55774C3 6.43274 3.0625 6.30774 3.1875 6.24524C3.3125 6.24524 3.4375 6.24524 3.5 6.30774L8 9.93274L12.5 6.30774C12.5625 6.24524 12.625 6.24524 12.6875 6.24524H12.8125Z' fill='%23151515' fill-opacity='0.3'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    min-width: 20px;
    width: 16px;
    height: 16px;
}

.select__content {
    position: absolute;
    top: calc(100% + 7px);
    right: 0;
    overflow-y: auto;
    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-shadow: 0 4px 10px 0 rgba(180, 180, 180, 0.5);
    box-shadow: 0 4px 10px 0 rgba(180, 180, 180, 0.5);
    background: #fff;
    border-radius: 8px;
    width: 198px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    visibility: hidden;
    opacity: 0;
    z-index: 100;
    scrollbar-width: thin;
}
.select__content::-webkit-scrollbar {
    width: 10px;
}
.select__content::-webkit-scrollbar-thumb {
    background: #f4f5f6;
    border-radius: 100px;
}

.select__input {
    display: none;
}

.select__text {
    font-size: 14px;
    line-height: 143%;
}

.select__label {
    white-space: nowrap;
    display: block;
    width: 100%;
    margin-bottom: 0;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    padding: 16px;
    font-weight: 400;
    font-size: 13px;
    cursor: pointer;
    color: #ababab;
    position: relative;
}
.select__label.active {
    color: #151515;
    background: #f4f4f4;
    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;
}
.select__label.active::after {
    display: block;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#09d4c4),
        to(#149f94)
    );
    background: linear-gradient(180deg, #09d4c4 0%, #149f94 100%);
}

.search-drop {
    -webkit-box-shadow: 0 4px 10px 0 rgba(180, 180, 180, 0.5);
    box-shadow: 0 4px 10px 0 rgba(180, 180, 180, 0.5);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.search-drop.active {
    opacity: 1;
    visibility: visible;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 100;
}
.search-drop ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.search-drop__item {
    position: relative;
    border-bottom: 1px solid #f4f4f4;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.search-drop__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    padding: 12px 24px;
}
.search-drop__img {
    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;
}
.search-drop__img img {
    border-radius: 100%;
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
}
.search-drop__category {
    font-weight: 300;
    font-size: 13px;
    color: #626262;
    margin-bottom: 0;
}
.search-drop__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 340px;
}
.search-drop__title {
    font-weight: 400;
    font-size: 15px;
    color: #151515;
    margin-bottom: 4px;
}
.search-drop__all {
    font-weight: 600;
    font-size: 14px;
    color: #11aca0;
    padding: 16px;
    text-align: center;
    display: block;
}

.search-block {
    margin-bottom: 40px;
}
.search-block form {
    background: #fff !important;
    border: 1px solid rgba(22, 91, 160, 0.3);
}
.search-block .search-drop {
    width: 100%;
    left: 0;
}
.search-block p {
    color: #a7a7a7;
    margin-top: 16px;
}

.search form input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 24px;
    padding-right: 10px;
    border-radius: 60px 0 0 60px;
    font-weight: 400;
    font-size: 16px;
    color: var(--blue-blue);
    font-size: 13px;
    line-height: 1;
}
.search form input::-webkit-input-placeholder {
    font-weight: 400;
    font-size: 13px;
    color: #626262;
}
.search form input::-moz-placeholder {
    font-weight: 400;
    font-size: 13px;
    color: #626262;
}
.search form input:-ms-input-placeholder {
    font-weight: 400;
    font-size: 13px;
    color: #626262;
}
.search form input::-ms-input-placeholder {
    font-weight: 400;
    font-size: 13px;
    color: #626262;
}
.search form input::placeholder {
    font-weight: 400;
    font-size: 13px;
    color: #626262;
}
.search form button {
    border-radius: 100%;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#09d4c4),
        to(#149f94)
    );
    background: linear-gradient(180deg, #09d4c4 0%, #149f94 100%);
    min-width: 40px;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    position: relative;
}
.search form button::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: url('../img/search.svg') center center/contain no-repeat;
    width: 24px;
    height: 24px;
}
.search form button:hover {
    background: #09d4c4;
}
.search__mobile {
    display: none;
}
.search__btn {
    min-width: -webkit-fit-content !important;
    min-width: -moz-fit-content !important;
    min-width: fit-content !important;
    background: #59b7b8 !important;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    height: auto !important;
    padding: 16px 65px;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    border-radius: 60px !important;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid #59b7b8 !important;
}
.search__btn::before {
    display: none;
}
.search__btn:hover {
    border: 1px solid #59b7b8 !important;
    -webkit-box-shadow: 0 4px 10px 0 rgba(180, 180, 180, 0.25);
    box-shadow: 0 4px 10px 0 rgba(180, 180, 180, 0.25);
    background: #fff !important;
    color: #59b7b8;
}
.search__btn:active {
    background: #14a297 !important;
    border: 1px solid #14a297 !important;
    color: #fff;
}
.search__form-inner {
    width: 100%;
    position: relative;
    border-radius: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f4f4f4;
    padding-right: 4px;
}

.search-page {
    margin-bottom: 100px;
}
.search-page .container {
    max-width: 1200px;
    width: 100%;
}
.search-page__title {
    font-weight: 400;
    font-size: 20px;
    color: #626262;
    margin-bottom: 8px;
    margin-top: 0;
}
.search-page__text {
    font-weight: 400;
    font-size: 15px;
    color: #b1b1b1;
    margin-bottom: 24px;
}
.search-page__empty {
    border-top: 1px solid #f4f4f4;
    border-bottom: 1px solid #f4f4f4;
    margin-top: 40px;
    padding: 40px 0;
    text-align: center;
}
.search-page__empty img {
    width: 72px;
    height: 72px;
    margin-bottom: 16px;
}
.search-page__empty p {
    font-weight: 600;
    font-size: 20px;
    color: #101010;
    margin-bottom: 0;
}
.search-page__sort {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 22px;
}
.search-page__sort a {
    border: 1px solid #e7e7e7;
    border-radius: 60px;
    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;
    padding: 15px 44px;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #626262;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.search-page__sort a:hover {
    background: #e7e7e7;
}
.search-page__sort a.active {
    border: 1px solid #59b7b8;
    background: #59b7b8;
    color: #fff;
}
.search-page__cards {
    display: grid;
    gap: 19px 20px;
    grid-template-columns: repeat(2, 1fr);
}
.search-page__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    border-radius: 10px;
    background: #f9f9f9;
    padding: 24px 24px 40px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.search-page__card img {
    border-radius: 100%;
    width: 126px;
    height: 126px;
    -o-object-fit: cover;
    object-fit: cover;
}
.search-page__card-title {
    font-weight: 400;
    font-size: 15px;
    color: #151515;
    margin-bottom: 4px;
}
.search-page__card-category {
    font-weight: 300;
    font-size: 13px;
    color: #626262;
    margin-bottom: 24px;
}
.search-page__card-text {
    font-weight: 400;
    font-size: 15px;
    color: #626262;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.search-page__card-more {
    font-weight: 400;
    font-size: 15px;
    color: #59b7b8;
    margin-bottom: 0;
}
.search-page .search {
    margin-bottom: 32px;
}
.search-page .search form {
    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: 20px;
    width: 100%;
}
.search-page .search form button {
    min-width: 48px;
    width: 48px;
    height: 48px;
}
.search-page .search form input {
    padding: 20px 24px;
}

.more {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #626262;
    padding: 18.5px;
    border: 1px solid #e7e7e7;
    border-radius: 120px;
    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-top: 24px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.more:hover {
    -webkit-box-shadow: 0 4px 10px 0 rgba(180, 180, 180, 0.25);
    box-shadow: 0 4px 10px 0 rgba(180, 180, 180, 0.25);
    background: #fff;
    border: 1px solid transparent;
}

.pagination {
    margin-top: 16px;
}
.pagination__inner {
    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%;
    gap: 8px;
}
.pagination__num {
    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-radius: 100%;
    background: #fff;
    -webkit-box-shadow: 0 4px 10px 0 rgba(180, 180, 180, 0.25);
    box-shadow: 0 4px 10px 0 rgba(180, 180, 180, 0.25);
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    line-height: 125%;
    letter-spacing: 0.02em;
    color: #626262;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.pagination__num:hover {
    background: #f4f4f4;
}
.pagination__num.active {
    background: #59b7b8;
    color: #fff;
}
.pagination span {
    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-radius: 100%;
    background: #fff;
    -webkit-box-shadow: 0 4px 10px 0 rgba(180, 180, 180, 0.25);
    box-shadow: 0 4px 10px 0 rgba(180, 180, 180, 0.25);
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    line-height: 125%;
    letter-spacing: 0.02em;
    color: #626262;
}

.search-btn-mobile {
    display: none;
}

.header * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.header .search {
    width: 100%;
    margin-left: auto;
    max-width: 413px !important;
}
.header .row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin: 0;
}
.header .row > div {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: 0;
}
.header .header-logo {
    width: 170px;
}
.header .decor {
    padding-right: 44px !important;
    margin-right: 44px;
}

.header-phone {
    width: 100%;
}

.header-phone a,
.header-phone span {
    float: none;
}

@media (min-width: 1200px) {
    .search-drop__item:hover {
        background: #f4f4f4;
    }
    .search-page__card:hover {
        background: #fff;
        -webkit-box-shadow: 0 4px 10px 0 rgba(180, 180, 180, 0.25);
        box-shadow: 0 4px 10px 0 rgba(180, 180, 180, 0.25);
    }
}
.breadcrumb a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.breadcrumb a:hover {
    color: #59b7b8;
}

.section-price .btn-collapse a {
    color: #fff;
}

.menu-title {
    position: relative;
    padding-right: 15px;
}

.menu-title:before {
    position: absolute;
    content: '‹';
    top: 12px;
    right: 6px;
    width: 16px;
    height: 16px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    color: #fff;
    font-size: 19px;
}

.menu-title.active:before {
    -webkit-transform: rotate(-90deg) scale(-1);
    -ms-transform: rotate(-90deg) scale(-1);
    transform: rotate(-90deg) scale(-1);
    top: 13px;
    right: -1px;
}

.section-mainmenu.active .container {
    padding: 0;
}

.submenu .menu-dropdown {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 40px;
}

.submenu .menu-dropdown__list {
    display: block !important;
}

.submenu .menu-dropdown__item {
    border-right: 1px solid #f4f4f4 !important;
    border-bottom: 1px solid #f4f4f4;
}

.submenu .menu-dropdown__item a {
    text-align: left !important;
    text-transform: inherit !important;
    white-space: inherit !important;
}

.submenu .menu-dropdown__link {
    color: #101010 !important;
    font-family: 'Museo Sans Cyrl';
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
}

.submenu .menu-dropdown.active {
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: 0 0 5px #b9b9b9;
    box-shadow: 0 0 5px #b9b9b9;
    z-index: 1000;
}

.menu-dropdown__link:hover {
    text-decoration: underline;
}

.submenu-little .menu-dropdown {
    width: 280px;
    padding: 20px 24px;
    background: #fff;
}

.menu-title {
    font-size: 12px;
    font-weight: 900;
    line-height: 20px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    padding: 10px 0;
    cursor: pointer;
}

.submenu-main .menu-dropdown {
    width: 100%;
    position: absolute;
    top: calc(100% + 20px);
    -webkit-box-shadow: 0 4px 10px 0 rgba(180, 180, 180, 0.5);
    box-shadow: 0 4px 10px 0 rgba(180, 180, 180, 0.5);
    background: #fff;
}

.submenu-main .menu-dropdown::-webkit-scrollbar {
    width: 8px;
    background: #fff;
}

.submenu-main .menu-dropdown::-webkit-scrollbar-thumb {
    background: #b0b0b0;
}

.submenu-main .menu-dropdown__item,
.submenu-main .menu-dropdown__list {
    float: none !important;
}

.submenu-main .menu-dropdown__list {
    position: relative;
}

.submenu-main .menu-dropdown__link {
    padding: 0 !important;
    margin-bottom: 12px;
}

.submenu-main .menu-dropdown__item {
    max-width: 397px;
}

.submenu-main .menu-dropdown__item ul {
    position: absolute;
    left: 397px;
    top: 0;
    opacity: 0;
    visibility: hidden;
    display: block;
    padding: 32px 50px;
    height: 100%;
    width: calc(100% - 397px);
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
}

.submenu-main .menu-dropdown__item ul li {
    border: none !important;
}

.submenu-main .menu-dropdown__item.active {
    height: auto;
}

.section-mainmenu .mainmenu ul .submenu-main .menu-dropdown__title {
    float: none !important;
    margin: 0;
    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;
}
.section-mainmenu .mainmenu ul .submenu-main .menu-dropdown__title img {
    width: 32px;
    height: 32px;
}
.section-mainmenu .mainmenu ul .submenu-main .menu-dropdown__title a {
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    color: #151515;
    float: none !important;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 16px 22px 16px 32px !important;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.section-mainmenu .mainmenu ul .submenu-main .menu-dropdown__title a::after {
    display: block;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.24512 3.1875C5.30762 3.0625 5.43262 3 5.55762 3L7.68262 3C7.80762 3 7.87012 3.0625 7.93262 3.125L11.6826 7.8125C11.7451 7.9375 11.7451 8.0625 11.6826 8.1875L8.24512 12.875C8.18262 12.9375 8.12012 13 7.99512 13L5.55762 13C5.43262 13 5.30762 12.9375 5.24512 12.8125C5.24512 12.6875 5.24512 12.5625 5.30762 12.5L8.93262 8L5.30762 3.5C5.24512 3.4375 5.24512 3.375 5.24512 3.3125L5.24512 3.1875Z' fill='%23B1B1B1'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
    min-width: 16px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin-left: auto;
}
.section-mainmenu .mainmenu ul .submenu-main .menu-dropdown__title + ul li {
    margin-bottom: 16px;
}
.section-mainmenu .mainmenu ul .submenu-main .menu-dropdown__title + ul li a {
    margin: 0;
    font-weight: 400 !important;
    font-size: 16px !important;
    color: #626262 !important;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.section-mainmenu
    .mainmenu
    ul
    .submenu-main
    .menu-dropdown__title
    + ul
    li:hover
    a {
    text-decoration: none;
    color: #00a0a0 !important;
}

@media (min-width: 1200px) {
    .menu-title:hover {
        color: #242424;
    }
    .menu-title:hover:before {
        color: #000;
    }
    .submenu-main .menu-dropdown__item {
        max-width: 397px;
    }
    .submenu-main .menu-dropdown__item:hover {
        background: #f4f4f4;
    }
    .submenu-main .menu-dropdown__item:hover .menu-dropdown__title a {
        font-weight: 600 !important;
        color: #00a0a0 !important;
    }
    .submenu-main .menu-dropdown__item:hover ul {
        visibility: visible;
        opacity: 1;
    }
}
@media (max-width: 1200px) {
    .section-mainmenu .submenu-little ul {
        padding: 16px;
    }
    .section-mainmenu .submenu-little ul li a {
        font-weight: 400;
        font-size: 16px;
        color: #626262 !important;
    }
    .menu-title:before {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    .search-btn-mobile {
        display: block;
        background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.8155 24.2968C20.0519 24.2968 24.2969 20.0518 24.2969 14.8153C24.2969 9.57881 20.0519 5.3338 14.8155 5.3338C9.57899 5.3338 5.33398 9.57881 5.33398 14.8153C5.33398 20.0518 9.57899 24.2968 14.8155 24.2968Z' stroke='%2300A0A0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M26.6673 26.6665L21.5117 21.5109' stroke='%2300A0A0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
        background-repeat: no-repeat;
        background-size: contain;
        width: 32px;
        height: 32px;
        top: 59px;
        position: absolute;
        z-index: 2;
        right: 64px;
    }
    .submenu-main .menu-dropdown__title:before {
        display: none;
    }
    .submenu .menu-dropdown__item,
    .section-mainmenu .mainmenu ul > li {
        border-bottom: 1px solid #38aeae;
    }
    .submenu .menu-dropdown__item li,
    .section-mainmenu .mainmenu ul > li li {
        border-bottom: none;
    }
    .section-mainmenu .mainmenu ul li a:last-child {
        border-bottom: none;
    }
    .section-mainmenu .mainmenu ul .submenu-main .menu-dropdown__title a {
        font-size: 16px;
        color: #151515;
        padding: 12px 16px;
    }
    .section-mainmenu .mainmenu ul .submenu-main .menu-dropdown__title + ul {
        padding: 16px;
    }
    .section-mainmenu
        .mainmenu
        ul
        .submenu-main
        .menu-dropdown__title
        + ul
        li
        a {
        margin-bottom: 0 !important;
    }
    .submenu-main .menu-dropdown__title.active {
        position: fixed;
        top: 105px;
        left: 0;
        width: 100%;
        background: #fff;
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0.02em;
        color: #151515;
        text-transform: none;
    }
    .submenu-main .menu-dropdown__title.active img {
        display: none;
    }
    .submenu-main .menu-dropdown__title.active a {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .submenu-main .menu-dropdown__title.active a::after {
        margin-left: 0 !important;
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    .submenu-main .menu-dropdown__title.active + ul {
        display: block;
        opacity: 1;
        visibility: visible;
        z-index: 10;
    }
    .submenu-main .menu-dropdown__item ul {
        display: none;
        position: fixed;
        left: 0;
        top: 150px;
        width: 100%;
        height: calc(100% - 130px);
        overflow-y: auto;
        -webkit-columns: inherit;
        -moz-columns: inherit;
        columns: inherit;
        padding: 0;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        background: #fff;
        border: none;
    }
    .submenu-main .menu-dropdown__item {
        max-width: 100%;
        padding: 0;
    }
    .menu-dropdown__list {
        border: none !important;
    }
    .menu-title.active:before {
        left: 16px;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
        opacity: 0.5;
        color: #000;
        font-size: 27px;
    }
    .menu-title.active {
        padding-left: 48px;
        position: fixed;
        top: 105px;
        left: 0;
        width: 100%;
        background: #fff;
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0.02em;
        color: #151515;
        text-transform: none;
    }
    .submenu .menu-dropdown {
        position: fixed;
        left: 0;
        top: 150px;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        padding: 0;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        background: #fff;
    }
    .menu-title:before {
        right: 20px;
    }
    .menu-title {
        font-weight: 700;
        font-size: 14px;
        line-height: 114%;
        letter-spacing: 0.02em;
        text-align: left;
        padding: 16px 20px;
    }
    .section-mainmenu .container {
        max-width: 100%;
    }
    .header .decor {
        padding-right: 0 !important;
    }
    .header .row {
        -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;
    }
    .header .row > div {
        max-width: none;
        padding-right: 0;
        padding-left: 0;
        margin-right: 0;
    }
    .header-adress {
        display: block;
    }
    .header-phone {
        width: 50%;
    }
    .header .search {
        position: fixed;
        left: 0;
        top: -100%;
        width: 100%;
        -webkit-box-shadow: 0 0 20px 0 rgba(141, 141, 141, 0.3);
        box-shadow: 0 0 20px 0 rgba(141, 141, 141, 0.3);
        background: #fff;
        z-index: 10;
        padding: 20px 20px 43px !important;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        max-width: 100% !important;
        display: block !important;
    }
    .header .search.active {
        top: 0;
    }
    .search__mobile {
        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;
        position: relative;
        margin-bottom: 16px;
        padding-bottom: 16px;
        position: relative;
    }
    .search__mobile::before {
        content: '';
    }
    .search__mobile::after {
        position: absolute;
        content: '';
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: calc(100% + 40px);
        height: 1px;
        background: #e5e5e5;
    }
    .search__mobile p {
        margin-bottom: 0;
        font-weight: 400;
        font-size: 16px;
        color: #101010;
    }
    .search__close {
        background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.28261 8.0001L14.7339 2.54851C15.0887 2.1939 15.0887 1.62056 14.7339 1.26595C14.3793 0.911349 13.806 0.911349 13.4514 1.26595L7.99992 6.71755L2.5486 1.26595C2.19384 0.911349 1.62067 0.911349 1.26607 1.26595C0.911309 1.62056 0.911309 2.1939 1.26607 2.54851L6.71739 8.0001L1.26607 13.4517C0.911309 13.8063 0.911309 14.3797 1.26607 14.7343C1.44279 14.9111 1.67515 15 1.90734 15C2.13953 15 2.37172 14.9111 2.5486 14.7343L7.99992 9.28266L13.4514 14.7343C13.6283 14.9111 13.8605 15 14.0927 15C14.3249 15 14.557 14.9111 14.7339 14.7343C15.0887 14.3797 15.0887 13.8063 14.7339 13.4517L9.28261 8.0001Z' fill='%23B1B1B1'/%3E%3C/svg%3E%0A");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        width: 16px;
        height: 16px;
    }
}
@media (max-width: 1025px) {
    .search__btn {
        display: none;
    }
    .search-page__card-title {
        min-height: 36px;
        padding-left: 88px;
    }
    .search-page__card-category {
        padding-left: 88px;
        margin-bottom: 24px;
    }
    .search-page__card {
        position: relative;
        padding: 16px 16px 24px;
    }
    .search-page__card img {
        width: 72px;
        height: 72px;
        position: absolute;
        left: 16px;
        top: 16px;
    }
}
@media (max-width: 769px) {
    .search-page__empty img {
        width: 60px;
        height: 60px;
    }
    .search-page__empty p {
        font-size: 16px;
    }
    .search-page {
        margin-bottom: 60px;
    }
    .more {
        margin-top: 32px;
    }
    .search-page__sort {
        margin-bottom: 30px;
    }
    .search-page__sort a {
        padding: 12px 32px;
    }
    .search-page__title {
        font-size: 15px;
    }
    .search-page__text {
        margin-bottom: 15px;
    }
    .search-page .search {
        margin-bottom: 24px;
    }
    .search-page__cards {
        gap: 16px;
        grid-template-columns: repeat(1, 1fr);
    }
    .search-drop__item a {
        padding: 12px 16px;
    }
    .header-adress {
        display: block;
        font-size: 15px;
        font-weight: 500;
        line-height: 20px;
        padding: 0 10px 0 26px;
        background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.2113 2.88439C11.1311 1.89696 9.90829 1.89831 8.99427 2.11988C8.08189 2.34057 7.13004 2.34057 6.21766 2.11988C5.30364 1.89831 4.08084 1.89696 3.00055 2.88439C0.953699 4.75533 2.60078 8.09744 3.09651 8.67311C3.59225 9.24878 3.60821 10.0163 3.96002 11.5835C4.31184 13.1506 4.75955 14.6377 5.65505 14.4139C6.55055 14.19 6.79044 13.1027 7.0143 11.6474C7.02972 11.5474 7.04575 11.4535 7.06232 11.3653C7.17613 10.7602 8.03573 10.7602 8.14955 11.3653C8.16612 11.4534 8.18221 11.5474 8.19763 11.6474C8.42149 13.1027 8.66138 14.19 9.55688 14.4139C10.4524 14.6377 10.9001 13.1506 11.2519 11.5835C11.6037 10.0163 11.6197 9.24878 12.1154 8.67311C12.6112 8.09744 14.2582 4.75533 12.2113 2.88439ZM5.95946 3.61125C5.94754 3.69953 5.90116 3.77949 5.83044 3.83366C5.75973 3.88782 5.67045 3.91178 5.58212 3.9003C5.51632 3.89215 4.05653 3.73099 3.64639 5.32467C3.62409 5.41114 3.56837 5.48521 3.49148 5.53062C3.41459 5.57603 3.32281 5.58906 3.23632 5.56685C3.14984 5.54459 3.07574 5.48889 3.03033 5.412C2.98491 5.33511 2.9719 5.24333 2.99415 5.15684C3.44355 3.41056 4.94132 3.13478 5.67054 3.23263C5.75906 3.24454 5.83923 3.29111 5.89341 3.36211C5.94759 3.43312 5.97135 3.52273 5.95946 3.61125Z' fill='url(%23paint0_linear_235_867)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_235_867' x1='7.60596' y1='2' x2='7.60596' y2='14.4363' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2309D6C6'/%3E%3Cstop offset='1' stop-color='%23159E93'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
        background-position: left top;
        background-size: 16px 16px;
        font-weight: 400;
        font-size: 13px;
    }
    .header-adress span {
        font-weight: 400;
        font-size: 13px;
        color: #626262;
    }
    .header-phone span {
        font-weight: 400;
        font-size: 12px;
        color: #626262;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
    .header .row > div {
        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;
    }
    .header-phone a {
        font-weight: 600;
        font-size: 14px;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
    .header-phone a,
    .header-phone span {
        padding: 0;
    }
    .header-phone {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        background: none;
    }
    .header-phone a {
        padding: 0;
    }
}


.section-mainmenu .mainmenu ul li a.menu-dropdown__link {  
font-weight: 400 !important;
  font-size: 16px !important;
  color: #626262 !important;
}

.submenu-little .menu-dropdown__item {
    border: none !important;
}


@media (max-width: 1200px) {
	.header .btn-mobile, .header-logo {
		top: 0;  
	}
	.search-btn-mobile,
	.header .btn-mobile {
		top: 23px;
	}
}


/*
Custom Start
*/

.search-drop .search-page__card-text{
	display: none;
}

.search-drop__img img{
	width: 40px !important;
	height: 40px !important;
	border-radius: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.search-drop #load{
	font-size: .8em; padding: .8em; display: block;
}


@media (max-width: 1200px) {
   .section-mainmenu .mainmenu ul .submenu-main .menu-dropdown__title a {
 padding: 16px 22px 16px 16px !important;
 -webkit-box-pack: end !important;
 -ms-flex-pack: end !important;
 justify-content: flex-end !important;
 }
}
.header__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    margin: 0 33px 0 13px;
}
.header__socials img {
    width: 34px;
    height: 34px;
}
.header__contacts + .search {
        max-width: -webkit-fit-content !important;
        max-width: -moz-fit-content !important;
        max-width: fit-content !important;
    }
    .header .container {
        max-width: 1210px;
    }
    .header__contacts ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 29px;
    }
    .header__contacts ul li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 24px;
    }
    .header__socials {
        margin: 0;
    }
    .header__contacts ul li:not(:first-child) {
        padding-left: 29px;
        position: relative;
    }
    .header__contacts ul li:not(:first-child)::before {
        content: '';
        width: 1px;
        display: block;
        height: 40px;
        background: #e6e6e6;
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .header__contacts-inner span {
        display: block;
        font-weight: 400;
        font-size: 12px;
        line-height: 150%;
        color: #626262;
    }
    .header__contacts-inner a {
        font-weight: 600;
        font-size: 18px;
        line-height: 111%;
        color: #101010;
    }
    .header__address {
    background: #f4f4f4;
    padding: 9px 0;
    margin-bottom: 10px;
}
.header__address p {
    font-weight: 400;
    font-size: 13px;
    color: #3c3c3c;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
}
.header__address p::before {
    display: block;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 0.475098C3.95 0.475098 2.25 2.1751 2.25 4.2251C2.25 4.8251 2.4 5.3751 2.65 5.8751L6 11.5251L9.35 5.8751C9.6 5.3751 9.75 4.8251 9.75 4.2251C9.75 2.1751 8.05 0.475098 6 0.475098ZM6 6.0751C5.75702 6.07506 5.51643 6.02717 5.29196 5.93416C5.06749 5.84115 4.86354 5.70483 4.69175 5.533C4.51996 5.36116 4.3837 5.15717 4.29075 4.93268C4.19779 4.70818 4.14997 4.46758 4.15 4.2246C4.15003 3.98162 4.19792 3.74103 4.29094 3.51656C4.38395 3.29209 4.52027 3.08814 4.6921 2.91635C4.86394 2.74456 5.06793 2.6083 5.29242 2.51534C5.51692 2.42239 5.75752 2.37456 6.0005 2.3746C6.24348 2.37463 6.48407 2.42252 6.70854 2.51554C6.93301 2.60855 7.13696 2.74487 7.30875 2.9167C7.48054 3.08853 7.6168 3.29252 7.70975 3.51702C7.80271 3.74151 7.85053 3.98212 7.8505 4.2251C7.85047 4.46808 7.80258 4.70867 7.70956 4.93314C7.61655 5.15761 7.48023 5.36156 7.3084 5.53335C7.13656 5.70514 6.93257 5.8414 6.70808 5.93435C6.48358 6.0273 6.24298 6.07513 6 6.0751Z' fill='%2300A0A0'/%3E%3C/svg%3E%0A");
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: contain;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
    @media (max-width: 1200px) {
        .header .container {
            max-width: 100%;
            width: 100%;
        }
        .header__contacts {
            width: 100%;
        }
        .header__contacts ul {
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }
    }
    @media (max-width: 769px) {
        .header__contacts ul {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            gap: 13px;
            -webkit-box-align: start;
            -ms-flex-align: start;
            align-items: flex-start;
            width: 100%;
        }
        .header__contacts ul li:not(:first-child) {
            padding-left: 0;
            padding-top: 5px;
        }
        .header__contacts ul li:not(:first-child)::before {
            width: 100%;
            height: 1px;
            top: 0%;
            -webkit-transform: translateY(0%);
            -ms-transform: translateY(0%);
            transform: translateY(0%);
        }
        .header__contacts ul li {
            gap: 30px;
            width: 100%;
        }
    }
    .header:has(.header__address) {
    padding-top: 0;
}

@media (max-width: 769px) {
    .header__address p {
        font-size: 12px;
        gap: 8px;
    }
}
@media (max-width: 1200px) {
  .header .btn-mobile,
  .search-btn-mobile {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .header .btn-mobile,
  .search-btn-mobile,
  .header .header-logo {   
     position: static;
  }
  .header .header-logo {
     border-bottom: none;
  }
  .header .row > .position-static {
     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: 20px;
    border-bottom: 1px solid #d0d0d1;
  }
}
.section-mainmenu {
    background: #01a1a0;
}

@media (max-width: 1200px) {
    header.header .header-logo {
        width: 170px !important;    
    }
}
@media (max-width: 769px) {
    .section-mainmenu .logo-menu {
        opacity: 1;
    }
}
.header .decor:after {
        display: none !important;
}
.header .decor {
    padding-right: 34px !important;
    margin-right: 0;
}
.header .search {
    max-width: 308px !important;
}
.header-logo {
    left: 0;
}
.header .row {
    gap: 0;
}
@media (max-width: 1200px) {
    .header__contacts {
        padding-top: 10px;
    }
    .header .decor {
        padding-right: 0px !important;
    }
}
/*
Custom End
*/