

/* Start:/local/templates/marketdomination/template_styles.css?177990179565528*/
@font-face {
    font-family: "PT Sans";
    src: url("https://agroru.com/local/templates/marketdomination/fonts/pt-sans-v18-cyrillic_latin-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "PT Sans";
    src: url("https://agroru.com/local/templates/marketdomination/fonts/pt-sans-v18-cyrillic_latin-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --agr-brand: #f8741c;
    --agr-brand-dark: #df6413;
    --agr-brand-soft: #fff4ec;
    --agr-brand-soft-2: #fff8f2;
    --agr-brand-border: #ffd7be;
    --agr-blue: #2563eb;
    --agr-blue-dark: #1d4ed8;
    --agr-blue-soft: #eff6ff;
    --agr-blue-border: #bfdbfe;
    --agr-text: #252525;
    --agr-muted: #777;
    --agr-muted-soft: #9E9E9E;
    --agr-border: #e4e4e4;
    --agr-border-soft: #f0f0f0;
    --agr-border-soft-2: #ffe8d1;
    --agr-border-dark: #c8c8c8;
    --agr-page-bg: #ffffff;
    --agr-white: #fff;
    --agr-red: #ef4444;
    --agr-container: 1120px;
    --agr-topbar-height: 66px;
    --agr-mobile-topbar-height: 52px;
    --agr-text-2:  #555;
    --bg-soft: #f3f4f6;
    --agr-counters-bg: #fff8f0;
    --agr-counters-color: #f8a15f;

    --agr-link-offset-primary: 4px;
    --agr-link-offset-service: auto;

    --card-radius-sm: 6px;
    --card-radius: 10px;
    --card-radius-big: 15px;
    --card-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.05);
    --card-price: #000000;

    --agr-btn-font-sm: 12px;
    --agr-btn-font-md: 14px;
    --agr-btn-font-large: 16px;
    --agr-btn-radius-sm: 5px;
    --agr-btn-radius: 10px;
    --agr-btn-radius-big: 15px;
    --agr-btn-bg-md: #ffe8d1;
    --agr-btn-border-soft: #fcd9b8;

    --agr-hover-shadow-sm: 0 1px 3px rgb(0 0 0 / 0.1);
    --agr-hover-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --agr-hover-shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --agr-hover-shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --agr-hover-shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--agr-page-bg);
    color: var(--agr-text);
    font-family: "PT Sans", Arial, sans-serif;
    font-size: 16px;
}

body.is-menu-open,
body.is-catalog-open {
    overflow: hidden;
}

a {
    color: var(--agr-brand);
    text-decoration: none;
    transition:
            color .2s cubic-bezier(0.4, 0, 0.2, 1),
            text-decoration-color .2s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--agr-brand-dark);
    text-decoration: underline;
    text-underline-offset: var(--agr-link-offset-primary);
}

img {
    max-width: 100%;
    height: auto;
}

button,
input {
    font-family: inherit;
}

h1, h2, h3, h4 {
    margin: 0 0 10px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
    hyphens: auto;
}

h1 { font-size: 30px; line-height: 1.12; }
h2 { font-size: 28px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

@media (max-width: 992px) {
    h1 { font-size: 28px; }
    h2 { font-size: 25px; }
    h3 { font-size: 20px; }
    h4 { font-size: 17px; }
}

@media (max-width: 768px) {

    h1, h2, h3, h4 {
        margin-bottom: 8px;
        letter-spacing: -0.01em;
    }

    h1 { font-size: 24px; }
    h2 { font-size: 22px; line-height: 1.2; }
    h3 { font-size: 19px; line-height: 1.25; }
    h4 { font-size: 17px; line-height: 1.3; }

}

@media (max-width: 480px) {
    h1 { font-size: 21px; }
    h2 { font-size: 19px; }
    h3 { font-size: 17px; }
    h4 { font-size: 15px; }
}

.agr-header {
    position: relative;
    padding-top: var(--agr-topbar-height, 66px);
    background: var(--agr-white);
}

.agr-header__topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--agr-white);
    /*border-bottom: 1px solid var(--agr-border-soft);*/
}

.agr-header__topbar-inner {
    display: grid;
    grid-template-columns: 188px auto minmax(230px, 1fr) auto;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: var(--agr-container);
    min-height: 66px;
    margin: 0 auto;
    padding: 10px 14px;
}

.agr-logo {
    min-width: 0;
}

.agr-logo__link {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 40px;
    text-decoration: none;
}

.agr-logo__image {
    display: block;
    width: 176px;
    max-height: 48px;
}

/* CATALOG BUTTON */

.agr-catalog {
    position: relative;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.agr-catalog-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--agr-brand);
    border-radius: 8px;
    background: var(--agr-brand);
    color: var(--agr-white);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.agr-catalog-button:hover,
.agr-catalog.is-open .agr-catalog-button {
    border-color: rgba(248, 116, 28, .5);
    background: var(--agr-brand-dark);
    color: var(--agr-white);
}

.agr-catalog-button__icon {
    position: relative;
    width: 18px;
    height: 14px;
    flex: 0 0 18px;
}

.agr-catalog-button__icon::before,
.agr-catalog-button__icon::after,
.agr-catalog-button__icon span {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
}

.agr-catalog-button__icon::before {
    top: 0;
}

.agr-catalog-button__icon span {
    top: 6px;
}

.agr-catalog-button__icon::after {
    bottom: 0;
}

.agr-search {
    position: relative;
    min-width: 0;
}

.agr-search__form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    margin: 0;
    border: 1px solid var(--agr-brand);
    border-radius: 6px;
    background: var(--agr-white);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .035);
    overflow: hidden;
}

.agr-search__form:focus-within {
    border-color: var(--agr-brand);;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .035), 0 0 0 2px rgba(0, 0, 0, .035);
}

.agr-search__input {
    width: 100%;
    height: 100%;
    min-width: 0;
    padding: 0 46px 0 13px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #222;
    font-size: 16px;
}

.agr-search__input::placeholder {
    color: #969696;
}

.agr-search__submit {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 100%;
    border-left: 1px solid #eee;
    background: var(--agr-brand);
    color: var(--agr-white);
    cursor: pointer;
}

.agr-search__submit:hover {
    background: var(--agr-brand-dark);
    color: var(--agr-white);
}

.agr-search-suggest {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 7px);
    display: none;
    z-index: 1250;
    border: 1px solid #dddddd;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .14);
    overflow: hidden;
}

.agr-search-suggest.is-open {
    display: block;
}

.agr-search-suggest__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 38px;
    padding: 0 12px;
    background: #fafafa;
    color: #777;
    font-size: 13px;
    font-weight: 700;
}

.agr-search-suggest__query {
    color: var(--agr-brand-dark);
}

.agr-search-suggest__list {
    max-height: 340px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.agr-search-suggest__item {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    width: 100%;
    min-height: 48px;
    padding: 8px 12px;
    border: 0;
    background: #fff;
    color: #333;
    font-size: 15px;
    text-align: left;
    cursor: pointer;
}

.agr-search-suggest__item:last-child {
    border-bottom: 0;
}

.agr-search-suggest__item:hover,
.agr-search-suggest__item.is-active {
    background: var(--agr-blue-soft);
}

.agr-search-suggest__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--agr-brand-soft-2);
    color: var(--agr-brand-dark);
    font-size: 13px;
    font-weight: 700;
}

.agr-search-suggest__text {
    min-width: 0;
}

.agr-search-suggest__title {
    display: block;
    color: #222;
    font-weight: 700;
    line-height: 1.2;
}

.agr-search-suggest__meta {
    display: block;
    margin-top: 2px;
    color: #777;
    font-size: 13px;
    line-height: 1.2;
}

.agr-search-suggest__type {
    padding: 3px 7px;
    border-radius: 999px;
    background: #f5f5f5;
    color: #777;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.agr-search-suggest__empty {
    padding: 14px 12px;
    color: #777;
    font-size: 15px;
    line-height: 1.35;
}

.agr-search-suggest__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 42px;
    padding: 0 12px;
    /*border-top: 1px solid #eeeeee;*/
    background: #fafafa;
}

.agr-search-suggest__all {
    color: var(--agr-blue-dark);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.agr-search-suggest__all:hover {
    text-decoration: underline;
}

.agr-search-suggest__hint {
    color: #999;
    font-size: 12px;
    white-space: nowrap;
}

.agr-icon-search::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.agr-icon-search::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 2px;
    margin-top: 13px;
    margin-left: 13px;
    border-radius: 2px;
    background: currentColor;
    transform: rotate(45deg);
}

.agr-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    min-width: 0;
    white-space: nowrap;
}

.agr-add-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    flex: 0 0 auto;
}

.agr-add-button__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 0;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 6px;
    background: var(--agr-white);
    color: var(--agr-brand);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(248, 116, 28, .18);
}

.agr-add-button__link:hover {
    background: var(--agr-brand-dark);
    color: var(--agr-white);
    text-decoration: none;
}

.agr-add-button__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    border-radius: 50%;
    background: var(--agr-brand);
    color: var(--agr-white);
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
}

.agr-add-button__text {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.agr-add-button__text--short {
    display: none;
}

.agr-header-action {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.agr-icon-button,
.agr-profile-button,
.agr-search-toggle,
.agr-catalog-mobile-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: var(--agr-white);
    color: var(--agr-brand);
    text-decoration: none;
    cursor: pointer;
}

.agr-icon-button:hover,
.agr-profile-button:hover,
.agr-search-toggle:hover,
.agr-catalog-mobile-toggle:hover,
.agr-profile.is-open .agr-profile-button {
    border-color: rgba(248, 116, 28, .45);
    background: var(--agr-brand-soft);
    color: var(--agr-brand-dark);
    text-decoration: none;
}

.agr-icon-button svg,
.agr-profile-button svg {
    display: block;
    width: 21px;
    height: 21px;
    stroke: currentColor;
}

.agr-header-action__badge,
.agr-profile__badge {
    position: absolute;
    top: 3px;
    right: 2px;
    width: 9px;
    height: 9px;
    border: 2px solid var(--agr-white);
    border-radius: 50%;
    background: var(--agr-red);
}

.agr-header-action--notifications .agr-header-action__badge {
    top: 4px;
    right: 5px;
}

.agr-search-toggle,
.agr-catalog-mobile-toggle {
    display: none;
}

.agr-profile {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agr-profile__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}

.agr-profile__menu {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    display: none;
    width: 220px;
    padding: 7px;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    background: var(--agr-white);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
    z-index: 1200;
}

.agr-profile__menu::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 14px;
    width: 12px;
    height: 12px;
    border-left: 1px solid #e3e3e3;
    border-top: 1px solid #e3e3e3;
    background: var(--agr-white);
    transform: rotate(45deg);
}

.agr-profile.is-open .agr-profile__menu {
    display: block;
}

.agr-profile__menu-link {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 0 10px;
    border-radius: 7px;
    color: #333;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.agr-profile__menu-link:hover {
    background: #f7f7f7;
    color: var(--agr-brand-dark);
    text-decoration: none;
}

.agr-profile__menu-divider {
    height: 1px;
    margin: 6px 4px;
    background: #eee;
}

.agr-mega-catalog {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    z-index: 900;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid #dedede;
    box-shadow: 0 18px 34px rgba(0, 0, 0, .14);
}

.agr-mega-catalog.is-open {
    display: block;
}

.agr-mega-catalog__inner {
    display: grid;
    grid-template-columns: 285px minmax(0, 1fr);
    width: 100%;
    max-width: var(--agr-container);
    min-height: 420px;
    max-height: 68vh;
    height: min(68vh, 820px);
    margin: 0 auto;
    padding: 14px;
    overflow: hidden;
}

.agr-mega-catalog__parents {
    padding: 8px;
    border: 1px solid #ededed;
    border-radius: 12px;
    background: #fafafa;
    overflow-y: auto;
    min-height: 0;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.agr-mega-catalog__parents::-webkit-scrollbar {
    width: 7px;
}

.agr-mega-catalog__parents::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.14);
    border-radius: 20px;
}

.agr-mega-catalog__parents::-webkit-scrollbar-track {
    background: transparent;
}

.agr-mega-catalog__parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.15;
    text-align: left;
    cursor: pointer;
}

.agr-mega-catalog__parent:hover,
.agr-mega-catalog__parent.is-active {
    background: var(--agr-brand-soft);
    color: var(--agr-brand-dark);
}

.agr-mega-catalog__parent::after {
    content: "›";
    color: #b3b3b3;
    font-size: 22px;
    line-height: 1;
}

.agr-mega-catalog__parent.is-active::after {
    color: var(--agr-brand-dark);
}

.agr-mega-catalog__parent span {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.agr-mega-catalog__content {
    min-width: 0;
    padding: 2px 0 0 18px;
    overflow-y: auto;
}

.agr-mega-catalog__panel {
    display: none;
}

.agr-mega-catalog__panel.is-active {
    display: block;
}

.agr-mega-catalog__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
}

.agr-mega-catalog__title-link {
    color: #222;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    text-decoration: none;
}

.agr-mega-catalog__title-link:hover {
    color: var(--agr-brand-dark);
    text-decoration: underline;
}

.agr-mega-catalog__all {
    flex: 0 0 auto;
    color: var(--agr-brand-dark);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.agr-mega-catalog__all:hover {
    text-decoration: underline;
}

.agr-mega-catalog__children {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.agr-mega-catalog__child-link {
    display: block;
    padding: 8px 9px;
    border-radius: 7px;
    color: #333;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
}

.agr-mega-catalog__child-link:hover {
    background: #f7f7f7;
    color: var(--agr-brand-dark);
    text-decoration: none;
}

.agr-mega-catalog__child-link span {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.agr-mega-catalog__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid #eeeeee;
}

.agr-mega-catalog__footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 7px;
    background: var(--agr-brand-soft-2);
    color: var(--agr-brand-dark);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.agr-mega-catalog__footer-link:hover {
    background: var(--agr-brand-soft);
    text-decoration: none;
}

.agr-main-nav {
    position: relative;
    background: var(--agr-white);
}

.agr-main-nav__inner {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
    max-width: var(--agr-container);
    min-height: 25px;
    margin: 0 auto;
    padding: 0 14px;
    overflow: visible;
}

.agr-main-nav__item {
    position: relative;
    display: flex;
    flex: 0 0 auto;
}

.agr-main-nav__link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    text-decoration: none;
    white-space: nowrap;
    color: var(--agr-text);
}

.agr-main-nav__link:hover {
    color: var(--agr-brand-dark);
}

.agr-main-nav__link.is-active {
    font-weight: 700;
    color: var(--agr-text);
}

.agr-main-nav__badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    border: 2px solid var(--agr-white);
    border-radius: 50%;
    background: var(--agr-red);
}

.agr-mobile-catalog {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--agr-mobile-topbar-height);
    bottom: 0;
    display: none;
    z-index: 950;
    background: var(--agr-white);
    border-top: 1px solid #eeeeee;
    overflow: hidden;
}

.agr-mobile-catalog.is-open {
    display: block;
}

.agr-mobile-catalog__view {
    display: none;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.agr-mobile-catalog__view.is-active {
    display: block;
}

.agr-mobile-catalog__head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 50px;
    padding: 0 12px;
    border-bottom: 1px solid #eeeeee;
    background: var(--agr-white);
}

.agr-mobile-catalog__title {
    margin: 0;
    color: #222;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
}

.agr-mobile-catalog__close,
.agr-mobile-catalog__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #dddddd;
    border-radius: 999px;
    background: #fff;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.agr-mobile-catalog__close {
    font-size: 25px;
    font-weight: 400;
}

.agr-mobile-catalog__back {
    gap: 5px;
    width: auto;
}

.agr-mobile-catalog__list {
    margin: 0;
    padding: 8px;
    list-style: none;
}

.agr-mobile-catalog__parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.agr-mobile-catalog__parent::after {
    content: "›";
    color: #aaa;
    font-size: 22px;
}

.agr-mobile-catalog__parent:hover,
.agr-mobile-catalog__parent:active {
    background: var(--agr-brand-soft);
    color: var(--agr-brand-dark);
}

.agr-mobile-catalog__children {
    display: none;
    margin: 0;
    padding: 8px;
    list-style: none;
}

.agr-mobile-catalog__children.is-active {
    display: block;
}

.agr-mobile-catalog__child-link,
.agr-mobile-catalog__all-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 8px;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.agr-mobile-catalog__child-link:hover,
.agr-mobile-catalog__all-link:hover {
    background: #f7f7f7;
    color: var(--agr-brand-dark);
    text-decoration: none;
}

.agr-mobile-catalog__all-link {
    margin: 8px;
    background: var(--agr-brand-soft-2);
    color: var(--agr-brand-dark);
}

.agr-breadcrumbs {
    background: var(--agr-white);
}

@media (max-width: 760px) {
    .agr-breadcrumbs {
        display: none;
   }
}

.agr-breadcrumbs__inner {
    width: 100%;
    max-width: var(--agr-container);
    margin: 0 auto;
    padding: 19px 14px 9px;
}

.agr-breadcrumbs__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--agr-muted);
    font-size: 14px;
    line-height: 1.35;
}

.agr-breadcrumbs__item {
    display: flex;
    align-items: center;
    min-width: 0;
}

.agr-breadcrumbs__item:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: var(--agr-muted-soft);
    font-weight: 700;
}

.agr-breadcrumbs__link {
    color: var(--agr-muted-soft);
    text-decoration: none;
}

.agr-breadcrumbs__link:hover {
    color: var(--agr-muted-soft);
    text-decoration: underline;
    text-underline-offset: var(--agr-link-offset-service);
}

.agr-breadcrumbs__current {
    color: var(--agr-muted-soft);
}

.agr-page {
    width: 100%;
    max-width: var(--agr-container);
    margin: 18px auto 0;
    padding: 0 14px;
}

.agr-page-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.agr-page-layout--no-sidebar {
    grid-template-columns: minmax(0, 1fr);
}

.agr-page-sidebar {
    min-width: 0;
}

.agr-page-layout--no-sidebar .agr-page-sidebar {
    display: none;
}

.agr-footer {
    margin-top: 28px;
    background: #333;
    color: #e5e5e5;
}

.agr-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, .8fr) minmax(180px, .8fr);
    gap: 24px;
    width: 100%;
    max-width: var(--agr-container);
    margin: 0 auto;
    padding: 26px 14px;
}

.agr-footer__title {
    margin: 0 0 10px;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
}

.agr-footer__text {
    margin: 0;
    color: #d0d0d0;
    line-height: 1.45;
}

.agr-footer__links {
    display: grid;
    gap: 7px;
}

.agr-footer__link {
    color: var(--agr-muted-soft);
    text-decoration: none;
}

.agr-footer__link:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: var(--agr-link-offset-service);
}

.agr-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.agr-footer-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.agr-footer-social__link:hover {
    border-color: rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .08);
    text-decoration: none;
}

.agr-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.agr-footer__bottom-inner {
    width: 100%;
    max-width: var(--agr-container);
    margin: 0 auto;
    padding: 12px 14px;
    color: #bfbfbf;
    font-size: 14px;
}

@media (max-width: 1080px) {
    .agr-header__topbar-inner {
        grid-template-columns: 166px auto minmax(170px, 1fr) auto;
        gap: 8px;
    }

    .agr-logo__image {
        width: 156px;
    }

    .agr-catalog-button {
        padding-left: 11px;
        padding-right: 11px;
        font-size: 15px;
    }

    .agr-add-button__link {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 15px;
    }

    .agr-add-button__text--full {
        display: none;
    }

    .agr-add-button__text--short {
        display: block;
    }

    .agr-main-nav__link {
        font-size: 16px;
    }

    .agr-mega-catalog__inner {
        grid-template-columns: 255px minmax(0, 1fr);
    }

    .agr-mega-catalog__children {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) and (min-width: 761px) {
    .agr-header__topbar-inner {
        grid-template-columns: 150px auto minmax(150px, 1fr) auto;
        gap: 7px;
    }

    .agr-logo__image {
        width: 142px;
    }

    .agr-catalog-button {
        width: auto;
        min-width: 92px;
        padding-left: 11px;
        padding-right: 11px;
        border-radius: 8px;
    }

    .agr-catalog-button__text {
        display: inline-block;
    }

    .agr-add-button__text,
    .agr-add-button__text--short,
    .agr-add-button__text--full {
        display: none;
    }

    .agr-add-button__link {
        width: 40px;
        min-width: 40px;
        min-height: 40px;
        padding: 0;
        border-radius: 50%;
        background-color: var(--agr-brand);
    }

    .agr-add-button__icon {
        background: transparent;
    }
}

@media (max-width: 760px) {
    .agr-header {
        padding-top: var(--agr-mobile-topbar-height, var(--agr-topbar-height, 52px));
    }

    .agr-header__topbar-inner {
        grid-template-columns: minmax(105px, 1fr) auto;
        grid-template-areas:
            "logo actions"
            "search search";
        gap: 7px;
        min-height: 0;
        padding: 7px 9px;
    }

    .agr-logo {
        grid-area: logo;
    }

    .agr-logo__image {
        width: 138px;
        max-height: 39px;
    }

    .agr-header-actions {
        grid-area: actions;
        gap: 6px;
    }

    .agr-catalog {
        display: none;
    }

    .agr-catalog-mobile-toggle,
    .agr-search-toggle {
        display: flex;
    }

    .agr-catalog-mobile-toggle {
        width: auto;
        min-width: 92px;
        padding: 0 11px;
        gap: 7px;
        border-radius: 999px;
        border-color: rgba(248, 116, 28, .28);
        background: var(--agr-brand);
        color: var(--agr-white);
        font-size: 15px;
        font-weight: 700;
        line-height: 1;
    }

    .agr-catalog-mobile-toggle:hover,
    .agr-catalog-mobile-toggle:active {
        border-color: rgba(248, 116, 28, .5);
        background: var(--agr-brand-dark);
        color: var(--agr-white);
    }

    .agr-catalog-mobile-toggle__text {
        display: inline-block;
        line-height: 1;
    }

    .agr-header-action--favorites,
    .agr-header-action--notifications {
        display: none;
    }

    @media (min-width: 449px) and (max-width: 760px) {
        .agr-catalog-mobile-toggle {
            width: auto;
            min-width: 92px;
            max-width: none;
            padding-left: 11px;
            padding-right: 11px;
            border-radius: 999px;
            overflow: visible;
        }

        .agr-catalog-mobile-toggle__text {
            display: inline-block;
        }
    }

    .agr-search {
        grid-area: search;
        display: none;
        padding-top: 2px;
    }

    .agr-search.is-open {
        display: block;
    }

    .agr-search__form {
        height: 38px;
        border-radius: 5px;
    }

    .agr-search__input {
        padding-left: 12px;
        padding-right: 42px;
        font-size: 15px;
    }

    .agr-search__submit {
        width: 40px;
    }

    .agr-search-suggest {
        top: calc(100% + 6px);
        border-radius: 9px;
    }

    .agr-search-suggest__list {
        max-height: min(360px, calc(100vh - var(--agr-mobile-topbar-height, 52px) - 92px));
    }

    .agr-search-suggest__item {
        grid-template-columns: 24px minmax(0, 1fr);
        min-height: 50px;
    }

    .agr-search-suggest__type {
        display: none;
    }

    .agr-search-suggest__hint {
        display: none;
    }

    .agr-add-button__text,
    .agr-add-button__text--short,
    .agr-add-button__text--full {
        display: none;
    }

    .agr-add-button__link {
        width: 38px;
        min-width: 38px;
        min-height: 38px;
        padding: 0;
        border-radius: 50%;
        box-shadow: none;
        background-color: var(--agr-brand);

    }

    .agr-add-button__icon {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
        background: transparent;
        font-size: 22px;
    }

    .agr-icon-button,
    .agr-profile-button,
    .agr-search-toggle {
        width: 38px;
        height: 38px;
    }

    .agr-catalog-mobile-toggle {
        height: 38px;
        min-height: 38px;
    }

    .agr-icon-button svg,
    .agr-profile-button svg {
        width: 20px;
        height: 20px;
    }

    .agr-profile__menu {
        right: 0;
        width: 214px;
    }

    .agr-mega-catalog {
        display: none !important;
    }

    .agr-main-nav {
        border-top: 0;
        border-bottom: 1px solid #ddd;
    }

    .agr-main-nav::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 32px;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 72%);
        pointer-events: none;
    }

    .agr-main-nav__inner {
        max-width: none;
        min-height: 0;
        gap: 20px;
        padding: 8px 10px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .agr-main-nav__inner::-webkit-scrollbar {
        display: none;
    }

    .agr-main-nav__link {
        color: #333;
    }

    .agr-main-nav__link:hover,
    .agr-main-nav__link:active {
    }

    .agr-main-nav__link.is-active {
        font-weight: 700;
    }

    .agr-breadcrumbs__inner {
        padding: 8px 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .agr-breadcrumbs__inner::-webkit-scrollbar {
        display: none;
    }

    .agr-breadcrumbs__list {
        flex-wrap: nowrap;
        width: max-content;
        max-width: none;
        font-size: 13px;
    }

    .agr-breadcrumbs__current {
        max-width: 190px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .agr-page {
        margin-top: 14px;
        padding: 0 10px;
    }

    .agr-page-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .agr-page-sidebar {
        order: 1;
    }

    .agr-page-main {
        order: 2;
    }

    .agr-footer__inner {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px 10px;
    }

    .agr-footer__bottom-inner {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 390px) {
    .agr-header__topbar-inner {
        padding-left: 7px;
        padding-right: 7px;
        gap: 5px;
    }

    .agr-logo__image {
        width: 124px;
    }

    .agr-header-actions {
        gap: 5px;
    }

    .agr-icon-button,
    .agr-profile-button,
    .agr-search-toggle,
    .agr-add-button__link {
        width: 35px;
        min-width: 35px;
        height: 35px;
        min-height: 35px;
    }

    .agr-icon-button svg,
    .agr-profile-button svg {
        width: 19px;
        height: 19px;
    }
}

@media (max-width: 340px) {
    .agr-logo__image {
        width: 112px;
    }

    .agr-header-actions {
        gap: 4px;
    }

    .agr-icon-button,
    .agr-profile-button,
    .agr-search-toggle,
    .agr-add-button__link {
        width: 33px;
        min-width: 33px;
        height: 33px;
        min-height: 33px;
    }

    .agr-catalog-mobile-toggle {
        width: 33px;
        min-width: 33px;
        height: 33px;
        min-height: 33px;
    }
}

@media (max-width: 448px) {
    .agr-catalog-mobile-toggle {
        width: 38px;
        min-width: 38px;
        height: 38px;
        min-height: 38px;
        padding: 0;
        gap: 0;
        border-radius: 50%;
        background: var(--agr-brand);
        color: var(--agr-white);
        overflow: hidden;
    }

    .agr-catalog-mobile-toggle__text {
        display: none;
    }
}

@media (max-width: 340px) {
    .agr-catalog-mobile-toggle {
        width: 33px;
        min-width: 33px;
        height: 33px;
        min-height: 33px;
    }
}

@media (min-width: 1280px) {
    :root {
        --agr-container: 1160px;
    }
}

div.hint {
    font-size: 1em;
    border: 1px solid #fff;
    margin-bottom: 20px;
    padding: 20px;
    line-height: 1.4em;
    background-color: #def7ff;
    font-weight: normal;
    border-radius: 10px;
    color: #000;
}

div.hint h1, div.hint h2, div.hint h3, div.hint h4 {
    color: #000 !important;
    line-height: 1.5em;
    margin-top: 0;
}

div.hint strong {
    font-weight: 400;
}

div.hint.billling {
    background-color: #dee7ff!important;
}

div.warn2 {
    background-color: #ffecb3;
    color: #000;
    padding: 20px;
    margin-bottom: 20px;
    line-height: 1.4em;
    font-weight: normal;
    border-radius: 10px;
}

div.warn2 h1, div.warn2 h2, div.warn2 h3, div.warn2 h4 {
    color: #000000 !important;
    line-height: 1.5em;
    margin-top: 0;
}

div.warn3 {
    font-size: 1em;
    background-color: #f5f5f5;
    color: #de5215;
    padding: 20px;
    border: none;
    margin: 0 0 20px 0;
    line-height: 1.5rem;
    font-weight: bold;
    border-radius: 10px;
}

div.warn3 h1, div.warn3 h2, div.warn3 h3, div.warn3 h4 {
    color: #de5215 !important;
    line-height: 1.5em;
}

div.warn2 a, div.hint a {
    color: #006699;
}

.errortext {
    font-weight: normal;
    font-size: 1em;
    color: red;
    line-height: 1.4em;
}

span.starrequired {
    color: red;
    margin: 0 5px;
    font-size: 1em;
}

span.success_save {
    color: #009900;
    font-weight: bold;
    padding: 4px;
    font-size: 1.1em;
}

div.multilist_block {
    padding: 5px 0;
}

div.multilist_block.error {
    border: 1px solid #ff0000;
}

div.multilist_block input.select_btn {
    border: none;
    background: #777777;
    padding: 5px 15px;
    color: #fff;
    border-radius: 15px;
    cursor: pointer;
}

div.multilist_block ul {
    margin: 0;
    padding: 0;
}

div.multilist_block ul li {
    list-style-type: none;
    color: #0087d4;
    padding-bottom: 5px;
}

.big-forms-wrap {
    height: auto;
    max-width: 650px;
    min-width: 300px;
    box-sizing: border-box;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .big-forms-wrap {
        max-width: 430px;
    }
}

form {
    margin: 0;
    padding: 0;
}


.pagemenu {
    position: relative;
    margin: 30px 0 20px 0;
}

.pagemenu ul {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 4px;
    list-style: none;
    background: var(--bg-soft);
    border-radius: 12px;
    overflow-x: auto;
}

.pagemenu li {
    flex: 0 0 auto;
}

.pagemenu li a {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #444;
    text-decoration: none;

    border-radius: 10px;
    transition: .18s ease;
    white-space: nowrap;
}

.pagemenu li + li a {
    border-left: 1px solid #e9e9e9;
}

.pagemenu li a span {
    font-size: 12px;
    font-weight: 700;
    color: #8a8a8a;
}

.pagemenu li:hover a {
    background: #e9eaee;
    color: #111;
}

.pagemenu .pagemenu_sel a {
    background: #fff;
    color: #111;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.pagemenu .pagemenu_sel a span {
    color: var(--agr-brand-dark);
}

@media (max-width: 860px) {

    .pagemenu ul {
        background: transparent;
        padding: 0;
        gap: 10px;
        overflow-x: auto;
    }

    .pagemenu li a {
        background: #f3f4f6;
        border-radius: 999px;
        padding: 10px 14px;
        border: 1px solid #e6e6e6;
        color: #444;
        position: relative;
    }

    .pagemenu li + li a {
        border-left: none;
    }

    .pagemenu .pagemenu_sel a {
        background: #fff;
        color: #111;
        border: 2px solid var(--agr-brand);
        box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    }

    .pagemenu .pagemenu_sel a span {
        color: #8a8a8a;
    }

    .pagemenu:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 42px;
        height: 100%;
        pointer-events: none;
        background: linear-gradient(to right, rgba(255,255,255,0), #ffffff);
    }
}

.show_phone {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--agr-btn-radius);
    background: var(--agr-brand);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: .2s;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 10px 0;
    line-height: normal;
}

.show_phone:link:hover, .show_phone:visited:hover {
    color: #ffffff;
    background: var(--agr-brand-dark);
    text-decoration:none;
}

.show_phone_inline {
    cursor: pointer;
}

.show_phone_inline.ab-black {
    position: relative;
    margin-bottom: 10px;
}

.show_phone_inline span {
    background-image: linear-gradient(to right, #236ab1, transparent);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    margin-right: 10px;
    white-space: nowrap;
}

.show_phone_inline span.ab-black {
    background-image: linear-gradient(to right, #000, transparent)!important;
}

.show_phone_inline span.show-btn {
    text-decoration: underline !important;
    background: none !important;
    color: #236ab1;
}

.show_phone_inline span.show-btn.ab-black {
    background-color: var(--agr-brand-soft)!important;
    color: var(--agr-brand-dark)!important;
    background: none;
    border: 1px solid var(--agr-border-soft-2);
    padding: 5px 26px;
    border-radius: var(--agr-btn-radius-sm);
    font-size: 15px;
    cursor: pointer;
    text-decoration: none!important;
}

.show_phone_inline span.show-btn.ab-black:hover {
    background: var(--agr-border-soft-2)!important;
    color: var(--agr-brand-dark)!important;
    border: 1px solid var(--agr-brand)!important;
}

.form_wrapper {
    background: #FFFFFF;
    width: 100%;
    border: none;
    vertical-align: top;
    border-radius: 10px;
    box-sizing: border-box;
    margin-bottom: 100px;
}

@media only screen and (min-device-width: 450px) {
    .form_wrapper {
        padding: 30px;
        box-shadow: 0 0 10px #ccc;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .form_wrapper {
        padding: 0;
    }
}

.form_wrapper div.error {
    background-color: #ffe8e3;
    padding: 20px;
    margin-bottom: 30px;
    line-height: 1.4em;
    font-weight: normal;
    border-radius: 10px;
    color: #be0000;
}

.form-edit-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.form-edit-item.line {
    border-bottom: 1px solid #eee;
    margin: 20px 0 40px 0;
}

.form-edit-item .multicolumn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: flex-start;
}

.form-edit-item .multicolumn-item {
    min-width: 100px;
    margin: 0 10px 10px 0;
    max-width: 150px;
}


.form-edit-item.photo-hdr {
    margin: 20px 0;
}

.form-edit h1, .form-edit h2, .form-edit h3, .form-edit h4 {
    margin-top: 0 !important;
}

.form-edit-item div.f_name {
    margin-right: 10px;
    flex: 1;
    margin-bottom: 10px;
    min-width: 150px;
}

.form-edit-item div.f_val {
    flex: 2;
    margin-bottom: 20px;
    min-width: 280px;
}

.form-edit-item div.check-option {
    margin-bottom: 20px;
}


.form-edit-item div.f_val .f_input {
    box-sizing: border-box;
}

.form-edit-item div.f_val .f_input.error {
    border: 3px solid #f00;
    background-color: #fee;
}

.form-edit.ads_submit_rules {
    color: #666;
    vertical-align: middle;
}

.form-edit.ads_submit {
    vertical-align: middle;
    text-align: right;
}

.form-edit span.ads_edit_comments {
    font-weight: 400;
    color: #999;
}

.form-edit div#input_files {
    width: 150px;
}

.form-edit div.error {
    margin: 10px 0;
    background-color: #fff;
    color: #ff0000;
    line-height: 1em;
    font-weight: normal;
    padding: 5px;
}

.form-edit.rules {
    margin: 30px 0 20px 0;
    color: #666;
    font-size: 0.9em;
}

.form-edit .select-options {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.form-edit .select-options.check {
    min-width: 40px;
}

.form-edit .select-options.description {
    min-width: 200px;
}


.form-edit input.error, select.error {
    border: 1px solid red
}

.form-edit-item .multicolumn-item input[type="text"],
.form-edit input[type="text"], .form-edit input[type="number"], .form-edit select, .form-edit input[type="email"], .form-edit input[type="tel"], .form-edit input[type="password"], .form-edit select {
    width: 100%;
    border: solid 1px #ccc;
    box-sizing: border-box;
    padding: 0 5px;
    line-height: 20px;
    font-size: 0.9em;
    height: 35px;
    border-radius: 5px;
    background-color: #f5f5f5;
}

.form-edit input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.form-edit textarea {
    width: 100%;
    height: 200px;
    font-size: 1em;
    line-height: 1.6em;
    border: solid 1px #ccc;
    box-sizing: border-box;
    padding: 0 5px;
    border-radius: 5px;
    resize: none;
    background-color: #f5f5f5;
}

.form-edit input::placeholder {
    color: #ccc;
}

.additional_fields {
    display: none;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.additional_fields div.f_name {
    margin-right: 10px;
    flex: 1;
    margin-bottom: 10px;
    min-width: 150px;
}

.additional_fields div.f_val {
    flex: 2;
    margin-bottom: 30px;
    min-width: 300px;
}

.buttons {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    width: 100%;
}

.buttons input[type="submit"] {
    width: 100%;
    max-width: 250px;
    padding: 15px 10px;
    font-size: 1.1em;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    background: var(--agr-brand);
    border: none;
    border-radius: var(--agr-btn-radius);
    box-sizing: border-box;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-family: inherit;
    margin: 0;
    /* max-width: 100%; */
    outline: 0;
    text-align: center;
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
    transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);
}

.buttons input[type="submit"]:hover {
    background: var(--agr-brand-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.form-edit-item .f_val .radio {
    display: flex;
    gap: 6px;
    padding: 4px;
    width: fit-content;
    min-width: 340px;
    background: #f2f2f2;
    border: none;
    border-radius: 15px;
    box-sizing: border-box;
    margin: 0 auto 20px auto;
}

.form-edit-item .f_val .radio-item {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
}

.form-edit-item .f_val .radio-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.form-edit-item .f_val .radio-item label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: transparent;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color: #374151;
    text-align: center;
    cursor: pointer;
    user-select: none;
    box-sizing: border-box;
    transition:
            background-color 0.2s ease,
            border-color 0.2s ease,
            color 0.2s ease,
            box-shadow 0.2s ease,
            transform 0.05s ease;
}

.form-edit-item .f_val .radio-item label:hover {
    background: rgba(255, 255, 255, 0.72);
}

.form-edit-item .f_val .radio-item input[type="radio"]:checked + label {
    background: #ffffff;
    border-color: #cfd8e3;
    color: #111827;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.form-edit-item .f_val .radio-item input[type="radio"]:focus + label {
    outline: 2px solid #3b82f6;
    outline-offset: 1px;
}

.form-edit-item .f_val .radio-item label:active {
    transform: scale(0.99);
}

@media (max-width: 560px) {
    .form-edit-item .f_val .radio {
        width: 100%;
        min-width: 0;
    }

    .form-edit-item .f_val .radio-item label {
        min-height: 46px;
        padding: 0 10px;
        font-size: 14px;
    }
}

div.tags input {
    width: 100%;
}

.list_cat_id {
    padding: 0;
    margin: 0;
}

a.remove,
.list_cat_id a.remove2 {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 5px;
    cursor: pointer;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
    vertical-align: middle;
}

a.remove::before,
a.remove::after,
.list_cat_id a.remove2::before,
.list_cat_id a.remove2::after {
    content: '';
    position: absolute;
    top: 11px;
    left: 6px;
    width: 12px;
    height: 2px;
    background: #000;
    transition: background-color .2s ease;
}

a.remove::before,
.list_cat_id a.remove2::before {
    transform: rotate(45deg);
}

a.remove::after,
.list_cat_id a.remove2::after {
    transform: rotate(-45deg);
}

a.remove:hover::before,
a.remove:hover::after,
.list_cat_id a.remove2:hover::before,
.list_cat_id a.remove2:hover::after {
    background: #d9534f;
}

img.user_status_pro {
    margin-left: 10px;
}

img.user_status_pro.w30 {
    width: 20px;
}

img.user_status_pro.w30.left0 {
    margin-left: 0 !important;
}

.error-page-404 {
    background: #ffffff;
    margin-bottom: 40px;
}

.error-page-404 h1 {
    margin: 0 0 10px 0;
}

.error-page-404 div {
    font-size: 1.2em;
}

.say-sellers {
    margin: 10px 0;
    font-size: 0.9em;
    white-space: break-spaces;
    padding-left: 7px;
    border-left: 2px solid #ccc;
    color: #555;
}


.phones-block.showed {
    font-size: 1.1em;
    margin-bottom: 20px;
    padding: 10px;
    line-height: 1.4em;
    font-weight: normal;
    border-radius: 15px;
    border: 1px solid #ccc;
}

.phone_showed {
}

@media only screen and (min-device-width: 450px) {
    .phone_showed {
        color: #000;
        font-size: 1.3em;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .phone_showed {
        color: #000;
        font-size: 1em;
        font-weight: bold;
    }
}

.phone_showed a:hover {
    color: var(--agr-brand);
    text-decoration: underline;
}

@media only screen and (min-device-width: 450px) {
    .phone_showed a {
        color: var(--agr-brand);
        text-decoration: none;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .phone_showed a {
        color: var(--agr-brand);
        text-decoration: none;
    }
}


.form_hint {
    font-size: 0.9em;
    margin-bottom: 20px;
    padding: 20px;
    line-height: 1.5em;
    background-color: #e9faff;
    font-weight: normal;
    border-radius: 10px;
    color: #0d0d0d;
}

.form_hint a {
    text-decoration: none;
    color: #00a2ff;
    border-bottom: 1px dashed #00a2ff;
}

.form-save-success {
    padding: 20px;
    margin-bottom: 30px;
    background-color: #1dcf95;
    color: #fff;
    border-radius: 10px;
    font-size: 1.3em;
    text-align: center;
}


.filter-selected-box--info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 20px;
    margin-bottom: 24px;
    background: #fff;
    border: 1px solid var(--agr-border, #e4e4e4);
    border-radius: 12px;
}

.filter-selected-box__content {
    color: #222;
    line-height: 1.4;
}

.filter-selected-box__reset a {
    position: relative;
    padding-left: 14px;
    color: var(--agr-brand, #f58220);
    text-decoration: none;
    white-space: nowrap;
}

.filter-selected-box__reset a::before {
    content: "×";
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    line-height: 1;
    margin-right: 10px;
    color: var(--agr-muted);
}

.filter-selected-box__reset a:hover {
    text-decoration: underline;
}

#yandex_rtb_R-A-14196107-15, #yandex_rtb_R-A-14196107-1 {
    margin: 40px 0 50px 0;
}

#cookie-notice {
    position: fixed;
    bottom: 20px;
    max-width: 400px;
    background: #ffffff;
    color: #000000;
    padding: 15px;
    z-index: 999999;
    border-radius: 10px;
    box-shadow: 0 0 5px 1px #999;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
}

.cookie-content {
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .cookie-content {
        flex-direction: column;
    }
}

#cookie-accept {
    background: #1f88f8;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
}

.gallery {
    max-width: 100%;
}


.gallery-main {
    position: relative;
    text-align: center;
    margin-bottom: 10px;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.gallery-main img.gallery-active {
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
    object-fit: cover;
}

.gallery-prev,
.gallery-next,
.gallery-overlay .prev,
.gallery-overlay .next,
.gallery-counter {
    display: none;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    line-height: 36px;
    z-index: 2;
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-counter {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 13px;
    padding: 3px 8px;
    border-radius: 12px;
}

.gallery-thumbs {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 8px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .gallery-thumbs {
        display: none !important;
    }

    .gallery-prev,
    .gallery-next {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }
}

.gallery-thumbs img {
    width: 100%;
    cursor: pointer;
    border-radius: 7px;
    border: 2px solid transparent;
    aspect-ratio: 1 / 1;
    height: 100%;
}

.gallery-thumbs img.active {
    border-color: #000;
}

.gallery-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.gallery-overlay.is-active {
    display: flex;
}

.gallery-overlay img {
    max-width: 95vw;
    max-height: 95vh;
}

.gallery-overlay .prev,
.gallery-overlay .next,
.gallery-overlay .close {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    cursor: pointer;
}

.gallery-overlay .prev,
.gallery-overlay .next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    padding: 12px 18px;
}

.gallery-overlay .prev {
    left: 10px;
}

.gallery-overlay .next {
    right: 10px;
}

.gallery-overlay .close {
    top: 15px;
    right: 15px;
    font-size: 26px;
    padding: 6px 10px;
}

.gallery-overlay .gallery-counter {
    bottom: 20px;
}


.preloader {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    z-index: 3;
}

.preloader::after {
    content: "";
    width: 30px;
    height: 30px;
    border: 3px solid #ccc;
    border-top: 3px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.filter-enums-wrap {
    margin:50px 0;
}

.filter-enums-wrap ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-enums-wrap ul li {
    display: block;
    margin: 0;
    padding: 0;
}

.fav-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    color: rgb(208 208 208);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.fav-icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: fill 0.2s ease, stroke 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.fav-btn:hover {
    background: var(--agr-border-soft-2);
    color: var(--agr-brand);
}

.fav-btn:hover .fav-icon {
    transform: scale(1.08);
}

.fav-btn.is-favorited {
    color: var(--agr-brand);
}

.fav-btn.is-favorited .fav-icon {
    fill: currentColor;
    stroke: currentColor;
    transform: scale(1.1);
    animation: fav-pop 0.25s ease;
}

.fav-btn.is-favorited:hover {
    color: var(--agr-brand);
    background: var(--agr-border-soft-2);
}

.fav-btn.is-favorited:hover .fav-icon {
    filter: drop-shadow(0 2px 5px rgba(229, 57, 53, 0.25));
}

.fav-btn:active {
    transform: scale(0.92);
}

.fav-btn:active .fav-icon {
    transform: scale(0.95);
}

@keyframes fav-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1.1); }
}

.fav-toast {
    position: absolute;
    transform: translate(-50%, 10px);
    background: #ffffff;
    color: #222;
    padding: 12px 18px;
    border-radius: 16px;
    font-size: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
    opacity: 0;
    transition: all 0.2s ease;
    white-space: nowrap;
    pointer-events: none;
    z-index: 9999;
}

.fav-toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

.fav-toast::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

.fav-toast a {
    color: #2a8bf2;
    text-decoration: none;
    font-weight: 500;
    pointer-events: auto;
}

.fav-toast a:hover {
    text-decoration: underline;
}

.ad-slot--300x250 {
    width: 100%;
    max-width: 300px;
    margin: 16px auto;
}

.ad-slot--300x250 .ad-slot__inner {
    display: block;
    width: 100%;
    /*min-height: 250px;
    aspect-ratio: 300 / 250;*/
    overflow: hidden;
}

.ad-slot--240x400 {
    width: 100%;
    max-width: 240px;
    margin: 16px auto;
}

.ad-slot--240x400 .ad-slot__inner {
    display: block;
    width: 100%;
    /*min-height: 400px;
    aspect-ratio: 240 / 400;*/
    overflow: hidden;
}

.ad-slot img,
.ad-slot iframe {
    display: block;
    max-width: 100%;
    border: 0;
}

.agr-auth-modal[hidden] {
    display: none !important;
}

.agr-auth-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-sizing: border-box;
}

.agr-auth-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.agr-auth-modal__box {
    position: relative;
    width: 100%;
    max-width: 420px;
    max-height: calc(100vh - 36px);
    overflow: auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
}

.agr-auth-modal__content {
    padding: 24px;
}

.agr-auth-modal__head {
    position: relative;
    margin-bottom: 18px;
}

.agr-auth-modal__close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f2f2f2;
    color: #333;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.agr-auth-modal__title {
    padding-right: 42px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: #111;
}

.agr-auth-modal__subtitle {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.35;
    color: #666;
}

.agr-auth-form__field {
    display: block;
    margin-bottom: 14px;
}

.agr-auth-form__field span {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.agr-auth-form__field input {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    font-size: 16px;
    box-sizing: border-box;
}

.agr-auth-form__field input:focus {
    outline: none;
    border-color: #79b829;
    box-shadow: 0 0 0 3px rgba(121, 184, 41, 0.18);
}

.agr-auth-form__remember {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0 18px;
    font-size: 14px;
    color: #444;
}

.agr-auth-form__submit {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 12px;
    background: var(--agr-brand);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

.agr-auth-form__submit:disabled {
    opacity: 0.65;
    cursor: wait;
}

.agr-auth-form__links {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 16px;
    font-size: 14px;
}

.agr-auth-form__links a,
.agr-auth-form__policy a {
    color: var(--agr-blue);
    text-decoration: none;
}

.agr-auth-form__links a:hover,
.agr-auth-form__policy a:hover {
    text-decoration: underline;
}

.agr-auth-form__policy {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.35;
    color: #777;
}

.agr-auth-form__error {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #fff1f1;
    color: #b00020;
    font-size: 14px;
    line-height: 1.35;
}

.agr-auth-form__error_visible {
    display: block;
}

.agr-auth-loader {
    padding: 20px 0;
    text-align: center;
}

.agr-auth-loader__title {
    font-size: 16px;
    font-weight: 700;
    color: #555;
}

.agr-auth-modal-open {
    overflow: hidden;
}

@media (max-width: 480px) {
    .agr-auth-modal {
        align-items: flex-end;
        padding: 0;
    }

    .agr-auth-modal__box {
        max-width: none;
        max-height: calc(100vh - 20px);
        border-radius: 18px 18px 0 0;
    }

    .agr-auth-modal__content {
        padding: 22px 18px;
    }
}

.sidebar-fixed__promo {
    background: #fff;
    padding: 5px;
    text-align: center;
    color: #bbb;
    font-size: 0.8em;
    width: 240px;
}

.sidebar-fixed__promo a {
    color: #666;
}

/*page navigation*/
div.nav {
    font-size: 1em;
    margin: 50px 0;
}

div.nav-pages {
    display: flex;
    margin-bottom: 20px;
    gap: 10px;
}

div.nav-links {
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
}

div.nav-links a {
    color: #000000 !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--agr-border-soft);
    border-radius: var(--agr-btn-radius-sm);
    min-width: 40px;
}

div.nav-links a:hover {
    background-color: var(--agr-brand);
    color: var(--agr-white)!important;
    transition:none;
}

div.nav-links span.selected {
    padding: 4px 10px;
    border-radius: var(--agr-btn-radius-sm);
    background: var(--agr-brand);
    color: var(--agr-white);
    border-color: var(--agr-brand);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    min-width: 40px;
}

div.nav-links span.selected:hover {
    background-color: var(--agr-brand-dark);
}

div.nav span.nav_arrl {
    margin-right: 10px;
}

div.nav span.nav_arrr {
    margin-left: 10px;
}

div.nav span.l_one, div.nav span.r_one {
    padding: 2px 4px;
}

div.nav span.l_end, div.nav span.r_end {
    padding: 2px 4px;
}


/* End */
/* /local/templates/marketdomination/template_styles.css?177990179565528 */
