* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #484848;
    overflow-x: hidden;
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: rgb(249 250 251);
}

body.compensate-for-scrollbar {
    overflow: initial !important;
}
.compensate-for-scrollbar {
    margin-right: 0 !important;
}
::-webkit-scrollbar {
    width: 4px;
    background: #fff;
    border-radius: 7px;
}
::-webkit-scrollbar-thumb {
    background: #1aa131;
    border-radius: 7px;
    cursor: pointer;
    max-width: 4px;
    max-height: 4px;
}
::-webkit-scrollbar-track {
    cursor: pointer;
}

.modal-form {
    display: none;
}

html, body{
    height: 100%;
}
.fea-main{
    flex: 1 0 auto;
}

.footer{
    margin-top: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.fea-header {
    width: 100%;
}

.fea-header__top {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 0;
}

.fea-header__contact.fea-header__contact--phone {
    font-size: 18px;
    font-weight: 700;
}

.top-gray-menu-header {
    background: rgb(243 244 246);
}

.fea-header__burger {
    display: none;
    width: 42px;
    height: 38px;
    border: 1px solid #e6e6e6;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    padding: 8px 10px;
}
.fea-header__burger-line {
    display: block;
    height: 2px;
    background: #4a4a4a;
    border-radius: 2px;
}
.fea-header__burger-line + .fea-header__burger-line {
    margin-top: 6px;
}

.fea-header__topnav {
    flex: 1 1 auto;
}
.fea-header__toplist {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}
.fea-header__toplink {
    color: #6b6b6b;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    transition: color .2s ease;
}
.fea-header__toplink:hover {
    color: #2f2f2f;
}

.fea-header__topspacer {
    flex: 0 0 auto;
}

.fea-header__topicons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.fea-header__iconbtn {
    position: relative;
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.fea-header__badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fea-popular-card__favico--on {
    filter: brightness(0) saturate(100%) invert(53%) sepia(78%) saturate(1800%) hue-rotate(329deg) brightness(99%) contrast(89%);
}

.fea-header__icon {
    width: 18px;
    height: 18px;
    display: inline-block;
}

.fea-icon-heart {
    background:
            radial-gradient(circle at 30% 35%, #111 25%, transparent 26%) 0 0/100% 100%,
            radial-gradient(circle at 70% 35%, #111 25%, transparent 26%) 0 0/100% 100%,
            linear-gradient(45deg, transparent 46%, #111 47% 53%, transparent 54%) 0 0/100% 100%;
    transform: rotate(45deg) scale(0.85);
    border-radius: 4px;
}
.fea-icon-cart {
    background:
            linear-gradient(#111, #111) 4px 4px/12px 2px no-repeat,
            linear-gradient(#111, #111) 5px 7px/10px 7px no-repeat,
            radial-gradient(circle, #111 55%, transparent 56%) 6px 16px/6px 6px no-repeat,
            radial-gradient(circle, #111 55%, transparent 56%) 14px 16px/6px 6px no-repeat;
    border-radius: 3px;
}

.fea-header__main {
    display: grid;
    grid-template-columns: 160px minmax(320px, 1fr) max-content max-content;
    align-items: center;
    gap: 30px;
    padding: 14px 0 18px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.fea-header__main-wrapper {
    background: #fff;
    width: 100%;
    z-index: 1000;
    transition:
        transform 0.35s ease,
        opacity 0.35s ease,
        box-shadow 0.35s ease,
        background-color 0.35s ease;
    will-change: transform, opacity;
}

.fea-catalog-mega.header-fix-m {
    top: 80px;
    z-index: 10000;
    overflow-y: auto;
}

.fea-header__main-wrapper.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    animation: headerSlideDown 0.35s ease forwards;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 9999;
}

.fea-header-spacer {
    height: 0;
    transition: height 0.35s ease;
}

.fea-header-spacer.is-active {
    height: var(--header-height);
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-18px);
        opacity: 0.85;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fea-header__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    position: relative;
    top: -8px;
}
.fea-header__logo {
    width: 100%;
    display: block;
    max-width: 211px;
}
.fea-header__brandtext {
    font-size: 12px;
    color: #7a7a7a;
    line-height: 1.2;
    max-width: 160px;
}

.fea-header__actions {
    display: flex;
    align-items: stretch;
    flex: 1 1 auto;
    width: 100%;
    max-width: 650px;
    min-width: 0;
    position: relative;
}

.fea-header__catalog {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 150px;
    height: 46px;
    padding: 0 20px;
    background: #1aa131;
    border: 1px solid #1aa131;
    border-right: 0;
    border-radius: 10px 0 0 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: background .25s ease, border-color .25s ease, color .25s ease;
    box-sizing: border-box;
}

.fea-header__catalog:hover {
    background: #168128;
    border-color: #168128;
    color: #ffffff;
}

.fea-header__catalog:active {
    background: #146f24;
}

.fea-header__catalog img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
    flex: 0 0 auto;
}

.fea-header__search {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
}

.fea-header__search-input {
    width: 100%;
    height: 46px;
    padding: 0 52px 0 16px;
    border-top: 0.5px solid #d1d5db;
    border-right: 0.5px solid #d1d5db;
    border-bottom: 0.5px solid #d1d5db;
    border-left: 0;
    border-radius: 0 10px 10px 0;
    background: #ffffff;
    color: #1f2937;
    font-size: 15px;
    line-height: 1.2;
    outline: none;
    box-sizing: border-box;
    transition: border-color .25s ease, box-shadow .25s ease;
    -webkit-appearance: none;
    appearance: none;
}

.fea-header__search-input::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.fea-header__search-input:focus,
.fea-header__search-input:hover {
    border-color: #2e9634;
    border-top: 0.5px solid #2e9634 !important;
    border-right: 0.5px solid #2e9634 !important;
    border-bottom: 0.5px solid #2e9634 !important;
}

.fea-header__search-btn {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #9ca3af;
    border-radius: 6px;
    transition: color .25s ease, background .25s ease;
}

.fea-header__search-btn:hover {
    color: #1aa131;
    background: #f3f4f6;
}

.fea-header__search-btn img {
    width: 20px;
    height: 20px;
    max-width: none;
    object-fit: contain;
    display: block;
}

.fea-header__actions:hover .fea-header__search-input {
    border-color: #cfd5dc;
}

@media (max-width: 1199px) {
    .fea-header__actions {
        max-width: 100%;
    }

    .fea-header__catalog {
        min-width: 138px;
        padding: 0 16px;
        font-size: 14px;
    }

    .fea-header__search-input {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .fea-header__actions {
        flex-direction: column;
        gap: 10px;
    }

    .fea-header__catalog {
        width: 100%;
        min-width: 0;
        border-right: 1px solid #1aa131;
        border-radius: 10px;
    }

    .fea-header__search-input {
        border-left: 1px solid #d1d5db;
        border-radius: 10px;
    }
}

.fea-header__catalog svg {
    max-width: 20px;
}

.fea-header__contacts {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 5px;
}
.fea-header__contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #2f2f2f;
    font-size: 14px;
    white-space: nowrap;
}
.fea-header__contact:hover .fea-header__contact-text {
    text-decoration: underline;
}
.fea-header__contact-ico {
    width: 18px;
    height: 18px;
    display: inline-block;
}
.fea-icon-mail {
    background:
            linear-gradient(#111, #111) 2px 4px/14px 10px no-repeat,
            linear-gradient(#fff, #fff) 3px 5px/12px 8px no-repeat,
            linear-gradient(#111, #111) 3px 6px/12px 2px no-repeat;
    border-radius: 3px;
    opacity: .9;
}
.fea-icon-phone {
    background:
            radial-gradient(circle, #111 55%, transparent 56%) 3px 12px/6px 6px no-repeat,
            linear-gradient(#111, #111) 8px 3px/7px 14px no-repeat;
    border-radius: 4px;
    opacity: .9;
}

.fea-header__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 10002;
}
.fea-header__drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: min(86vw, 360px);
    background: #fff;
    transform: translateX(-105%);
    transition: transform .22s ease;
    z-index: 10002;
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
    display: flex;
    flex-direction: column;
}
.fea-header__drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
}
.fea-header__drawer-title {
    font-weight: 700;
    color: #2f2f2f;
}
.fea-header__drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fff;
    color: #1aa131;
    cursor: pointer;
}
.fea-header__drawernav {
    padding: 10px 8px;
    overflow: auto;
}
.fea-header__drawerlist {
    list-style: none;
    display: grid;
    gap: 6px;
}
.fea-header__drawerlink {
    display: block;
    padding: 12px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #2f2f2f;
}
.fea-header__drawerlink:hover {
    background: #f6f6f6;
}
.fea-header__drawer-contacts {
    margin-top: auto;
    padding: 14px 16px;
    border-top: 1px solid #eee;
    display: grid;
    gap: 8px;
}
.fea-header__drawer-contact {
    color: #2f2f2f;
    text-decoration: none;
}
.fea-header__drawer-contact:hover {
    text-decoration: underline;
}

.fea-header--menu-open .fea-header__overlay {
    opacity: 1;
    pointer-events: auto;
}
.fea-header--menu-open .fea-header__drawer {
    transform: translateX(0);
}



.fea-header__mobtop,
.fea-header__mobrow,
.fea-header__mobsearch{
  display: none;
}

.fea-header__mobsearchbtn{
  display: none;
}

.fea-header__mobburger{
  display: none;
}

/* Header */

/*kipa*/

.fea-kipa {
    padding: 60px 0px;
}

.fea-kipa__inner {
    width: 100%;
}

.fea-kipa__title {
    text-align: left;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    color: #3f3f3f;
    margin: 0 0 28px;
    border-left: 4px solid #1aa131;
    padding-left: 10px;
}

.fea-kipa__cards {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 15px;
}

.fea-kipa-card {
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
    min-height: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.3s ease-in;
}
.fea-catalog-mega__inner .fea-kipa-card:hover {
    box-shadow: none;
}

.fea-kipa-card:hover {
    border: 1px solid #1aa13185;
    transition: all 0.3s ease-out;
    box-shadow: 0px 7px 8px 0px #0000001f;
}

.fea-kipa-card__head {
    gap: 14px;
    flex-direction: column;
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    text-align: center;
}

.fea-kipa-card__imgbox {
    width: 92px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fea-kipa-card__img {
    width: 100%;
    height: 80px;
    display: block;
    object-fit: contain;
}

.fea-kipa-card__title {
    margin: 0;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 500;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
    min-height: 45px;
    display: flex;
    align-items: center;
}

.fea-kipa-card__list {
    list-style: none;
    padding: 0px 12px;
    margin: 0;
    display: grid;
    gap: 14px;
}

.fea-kipa-card__li {
    margin: 0;
    padding: 0;
}

.fea-kipa-card__itemlink {
    display: inline-block;
    color: #2f2f2f;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.35;
}
.fea-kipa-card__itemlink:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.fea-kipa-card__foot {
    margin-top: auto;
    padding: 20px 12px 0px;
}
/* 
.fea-kipa-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4b6179;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 14px;
} */

.fea-kipa-card__arrow {
    display: inline-block;
    text-decoration: none;
    background-image: url('../img/arrow-one.svg');
    background-repeat: no-repeat;
    width: 24px;
    min-width: 24px;
    height: 8px;
    position: relative;
    top: 1px;
}

/* ===== Reusable Buttons ===== */
.fea-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 14px;
    border-radius: 4px;
    width: 100%;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    user-select: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease, filter .18s ease;
    will-change: transform;
}

.fea-btn--primary{
    background: #1aa131;
    color: #fff;
    border-color: #149129;
    box-shadow: 0 6px 14px rgba(26,161,49,.18);
}
.fea-btn--primary:hover{
    filter: brightness(.98);
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(26,161,49,.22);
}
.fea-btn--primary:active{
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(26,161,49,.18);
}

.fea-btn--outline{
    background: #fff;
    color: #2f2f2f;
    border-color: #9fb1c8;
}
.fea-btn--outline:hover{
    background: #f5f7fb;
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(25,35,55,.08);
}
.fea-btn--outline:active{
    transform: translateY(0);
    box-shadow: none;
}

/* POPULAR */

.fea-popular{
    padding: 36px 0 56px;
}

.fea-popular__title{
    text-align: left;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 28px;
    border-left: 4px solid #1aa131;
    padding-left: 10px;
}

.fea-popular__slider{
    position: relative;
}

.fea-popular-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}

.fea-popular-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
    border-color: #dbe1e8;
}

.fea-popular-card__favbtn {
    position: absolute;
    top: 16px;
    right: 24px;
    z-index: 10;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    color: #d1d5db;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color .25s ease, transform .2s ease, background .25s ease;
}

.fea-popular-card__favbtn:hover {
    color: #ef4444;
    background: #f9fafb;
    transform: scale(1.05);
}

.fea-popular-card__favbtn:active {
    transform: scale(.96);
}

.fea-popular-card__favicons {
    position: relative;
    width: 18px;
    height: 18px;
    display: inline-block;
}

.fea-popular-card__favico {
    position: absolute;
    inset: 0;
    width: 18px;
    height: 18px;
    opacity: 0;
    transform: scale(.96);
    transition: opacity .22s ease, transform .22s ease;
}

.fea-popular-card__favico--off {
    opacity: 1;
    transform: scale(1);
}

.fea-popular-card.is-fav .fea-popular-card__favico--off {
    opacity: 0;
    transform: scale(.96);
}

.fea-popular-card.is-fav .fea-popular-card__favico--on {
    opacity: 1;
    transform: scale(1);
}

.fea-popular-card__imglink {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 192px;
    margin: 0 0 16px;
    padding: 16px;
    overflow: hidden;
    border-radius: 10px;
    text-decoration: none;
}

.fea-popular-card__img {
    width: 100%;
    height: 100%;
    max-width: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: transform .3s ease;
}

.fea-popular-card:hover .fea-popular-card__img {
    transform: scale(1.05);
}

.fea-popular-card__name {
    display: -webkit-box;
    overflow: hidden;
    min-height: 52px;
    margin: 0 0 12px;
    color: #1f2937;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    text-decoration: none;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color .25s ease;
}

.fea-popular-card__name:hover {
    color: #1aa130;
}

.fea-popular-card__price {
    margin-top: auto;
    margin-bottom: 16px;
    color: #111827;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 600;
}

.fea-popular-card__price small,
.fea-popular-card__price span {
    display: block;
    margin-top: 6px;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 400;
}

.fea-popular-card__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.fea-popular-card__actions .ms2_form {
    margin: 0;
}

.fea-popular-card__actions .fea-btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
    transition: background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.fea-popular-card__actions .fea-btn--primary {
    background: #1aa130;
    border: 1px solid #1aa130;
    color: #fff;
}

.fea-popular-card__actions .fea-btn--primary:hover {
    background: #168128;
    border-color: #168128;
}

.fea-popular-card__actions .fea-btn--outline {
    background: #fff;
    border: 1px solid #1aa130;
    color: #1aa130;
    text-decoration: none;
}

.fea-popular-card__actions .fea-btn--outline:hover {
    background: #eef8ef;
}

/* Если цена выводится просто как текст "5060 ₽ с НДС" */
.fea-popular-card__price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

/* Мобилка */
@media (max-width: 767px) {
    .fea-popular-card {
        padding: 16px;
        border-radius: 10px;
    }

    .fea-popular-card__favbtn {
        top: 12px;
        right: 12px;
    }

    .fea-popular-card__imglink {
        height: 168px;
        margin-bottom: 14px;
        padding: 14px;
    }

    .fea-popular-card__img {
        max-width: 150px;
    }

    .fea-popular-card__name {
        min-height: 44px;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .fea-popular-card__price {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .fea-popular-card__actions {
        gap: 8px;
    }

    .fea-popular-card__actions .fea-btn {
        min-height: 42px;
        font-size: 14px;
    }
}
.fea-btn svg {
    max-width: 22px;
    margin-right: 8px;
}

.fea-popular.fea-popular--grid .fea-popular__track{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.fea-popular.fea-popular--grid .fea-popular__item{
    width: auto !important;
}

.fea-popular__nav,
.fea-lic__nav {
    transform: translateY(0%);
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid #e3e3e3;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    z-index: 5;
}
.fea-popular__nav:hover, 
.fea-lic__nav:hover {
    background: #f7f7f7;
    box-shadow: 0 16px 30px rgba(0,0,0,.10);
    transform: translateY(0%) scale(1.02);
}
.fea-popular__nav:active{
    transform: translateY(0%) scale(.98);
}

.fea-popular.fea-popular--grid .fea-popular__nav,
.fea-popular.fea-popular--grid .fea-popular__pagination{
    display: none !important;
}

.fea-popular__nav::before,
.fea-lic__nav::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    border-right: 2px solid #4b6179;
    border-bottom: 2px solid #4b6179;
    transform: rotate(135deg);
}
.fea-popular__nav--next::before,
.fea-lic__nav--next::before {
    transform: rotate(-45deg);
}

.fea-popular__pagination{
    display: none;
    margin-top: 12px;
    text-align: center;
}
.fea-popular__pagination .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    background: #c6d0de;
    opacity: 1;
    margin: 0 5px !important;
    transition: transform .2s ease, background .2s ease;
}
.fea-popular__pagination .swiper-pagination-bullet-active{
    background: #4b6179;
    transform: scale(1.2);
}

/* ABOUT */

.fea-about{
    padding: 36px 0 56px;
}

.fea-about__title{
    text-align: left;
    font-weight: 700;
    font-size: 32px;
    border-left: 4px solid #1aa131;
    padding-left: 10px;
    margin: 0 0 28px;
}

.fea-about__row {
    display: flex;
    gap: 26px;
    align-items: flex-start;
}

.fea-about__media{
    flex: 0 0 46%;
    order: 1;
}

.fea-about__img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    display: block;
    border-radius: 4px;
}

.fea-about__content {
    flex: 1 1 auto;
    order: 2;
}

.fea-about__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    margin: 0 0 25px;
}

.fea-about__list {
    margin: 0;
    display: grid;
    gap: 6px;
}

.fea-about__li {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
}

.fea-benefits {
    background-color: #12541f;
    padding: 44px 0 44px;
}

.fea-popular .container {
    padding: 30px;
    border-radius: 12px;
    background: #fff;
    position: relative;
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.fea-benefits__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.fea-benefits__item {
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: box-shadow .3s ease, transform .3s ease;
    scroll-snap-align: center;
    box-sizing: border-box;
}

.fea-benefits__item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.fea-benefits__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(26, 161, 48, 0.1);
    flex: 0 0 56px;
}

.fea-benefits__icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.fea-benefits__text {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    color: #1f2937;
}

/* LICENSES */

.fea-lic{
    padding: 56px 0 56px;
}

.fea-lic__title{
    font-weight: 700;
    font-size: 32px;
    line-height: 1.15;
    text-align: left;
    margin: 0 0 28px;
    border-left: 4px solid #1aa131;
    padding-left: 10px;
}
.container-slider {
    display: flex;
    align-items: center;
    gap: 0px 50px;
}
.fea-lic__slider{
    position: relative;
    padding: 0px;
    max-width: 100%;
    width: 100%;
}

.fea-lic__slide{
    display: flex;
    justify-content: center;
}

.fea-lic__link{
    display: inline-block;
    width: 100%;
    max-width: 100%;
    border: 1px solid #4b6179;
    border-radius: 12px;
    padding: 10px;
}

.fea-lic__img{
    max-width: 100%;
    width: 100%;
    height: 353px;
    object-fit: cover;
    /*box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);*/
    border-radius: 2px;
    display: block;
    border-radius: 12px;
}

.fea-lic__nav.swiper-button-lock{
    display: none !important;
}

.fea-lic__pagination{
    display: none;
    margin-top: 12px;
    text-align: center;
}
.fea-lic__pagination .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    background: #c6d0de;
    opacity: 1;
    margin: 0 5px !important;
    transition: transform .2s ease, background .2s ease;
}
.fea-lic__pagination .swiper-pagination-bullet-active{
    background: #4b6179;
    transform: scale(1.2);
}

.fea-blog{
    padding: 34px 0 56px;
}
.fea-blog__title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.15;
    text-align: left;
    margin: 0 0 28px;
    border-left: 4px solid #1aa131;
    padding-left: 10px;
}

.fea-blog__slider{
    position: relative;
    padding: 8px;
}

.fea-blog.fea-blog--grid .fea-blog__track{
    padding: 8px 0;
}

.fea-blog__footer{
    display: flex;
    justify-content: space-between;
}

.fea-blog__allbtn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 40px;
    padding: 0px 15px;
    margin-right: 8px;
    border-radius: 5px;
    background: #08A826;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
    box-shadow: 0 10px 18px rgba(8,168,38,.18);
}
.fea-blog__allbtn:hover{
    filter: brightness(.98);
    transform: translateY(-1px);
    box-shadow: 0 14px 22px rgba(8,168,38,.22);
}
.fea-blog__allbtn:active{
    transform: translateY(0);
    box-shadow: 0 10px 18px rgba(8,168,38,.18);
}

.fea-blog-card{
    border-radius: 5px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.17);
    background: #fff;
    min-height: 530px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.fea-blog-card__imglink{
    display: block;
}

.fea-blog-card__img{
    border-radius: 5px 5px 0 0;
    width: 100%;
    max-width: 100%;
    height: 170px;
    padding: 10px;
    object-fit: contain;
    display: block;
}

.fea-blog-card__body{
    padding: 25px 15px 35px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.fea-blog-card__heading{
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    color: inherit;
    margin-bottom: 10px;
    display: inline-block;
}
.fea-blog-card__heading:hover{
    text-decoration: underline;
    text-underline-offset: 3px;
}

.fea-blog-card__announce{
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 14px;
}

.fea-blog-card__more{
    margin-top: auto;
    font-weight: 600;
    font-size: 16px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #405C70;
}

.fea-blog__pagination{
    display: none;
    margin-top: 12px;
    text-align: center;
}
.fea-blog__pagination .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    background: #c6d0de;
    opacity: 1;
    margin: 0 5px !important;
    transition: transform .2s ease, background .2s ease;
}
.fea-blog__pagination .swiper-pagination-bullet-active{
    background: #4b6179;
    transform: scale(1.2);
}

.fea-blog.fea-blog--grid .fea-blog__track{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.fea-blog.fea-blog--grid .fea-blog__slide{
    width: auto !important;
}

/* footer */
.footer {
    background: #111827;
    border-top: 1px solid #1f2937;
    padding: 64px 0 32px;
}

.fea-footer {
    color: #d1d5db;
}

.fea-footer__top {
    display: grid;
    grid-template-columns: minmax(260px, 340px) 1fr;
    gap: 48px;
    align-items: start;
}

.fea-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fea-footer__logo-link {
    display: inline-block;
    width: 256px;
    max-width: 100%;
    transition: transform .3s ease;
    transform-origin: left center;
}

.fea-footer__logo-link:hover {
    transform: scale(1.03);
}

.fea-footer__logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.fea-footer__brand-text {
    max-width: 290px;
    font-size: 14px;
    line-height: 1.7;
    color: #9ca3af;
}

.fea-footer__phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    min-height: 52px;
    padding: 12px 20px;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 12px;
    text-decoration: none;
    color: #e5e7eb;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, color .3s ease;
}

.fea-footer__phone:hover {
    background: #263244;
    border-color: #4b5563;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
    color: #ffffff;
}

.fea-footer__phone-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: color .3s ease;
    flex: 0 0 auto;
}

.fea-footer__phone:hover .fea-footer__phone-ico {
    color: #ffffff;
}

.fea-footer__phone-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: inherit;
    white-space: nowrap;
}

.fea-footer__nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    padding-top: 4px;
}

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

.fea-footer__title {
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #e5e7eb;
}

.fea-footer__link {
    display: inline-block;
    width: fit-content;
    font-size: 15px;
    line-height: 1.45;
    color: #9ca3af;
    text-decoration: none;
    position: relative;
    transition: color .25s ease;
}
.fea-footer__link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
.fea-footer__link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #18a835;
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.fea-footer__link:hover {
    color: #f3f4f6;
}

.fea-footer__bottom {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid #1f2937;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.fea-footer__copy {
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
}

.fea-footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.fea-footer__bottom-link {
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
    text-decoration: none;
    transition: color .25s ease;
}

.fea-footer__bottom-link:hover {
    color: #d1d5db;
}

@media (max-width: 1199px) {
    .fea-footer__top {
        grid-template-columns: 280px 1fr;
        gap: 36px;
    }

    .fea-footer__nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 32px;
    }
}

@media (max-width: 991px) {
    .footer {
        padding: 52px 0 28px;
    }

    .fea-footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fea-footer__brand {
        gap: 20px;
    }

    .fea-footer__brand-text {
        max-width: 100%;
    }

    .fea-footer__nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 24px;
    }

    .fea-footer__bottom {
        margin-top: 48px;
        padding-top: 24px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 40px 0 24px;
    }

    .fea-footer__logo-link {
        width: 200px;
    }

    .fea-footer__phone {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }

    .fea-footer__phone-text {
        font-size: 16px;
    }

    .fea-footer__nav {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fea-footer__col {
        gap: 10px;
    }

    .fea-footer__title {
        margin-bottom: 4px;
        font-size: 12px;
    }

    .fea-footer__link {
        font-size: 15px;
    }

    .fea-footer__bottom-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .fea-footer__copy,
    .fea-footer__bottom-link {
        font-size: 13px;
    }
}
/* footer END */

/* detail */

.fea-detail {
  padding: 18px 0 56px;
}

.fea-detail .fea-header__search-input {
    border-left: 0.5px solid #d1d5db !important;
    border-radius: 10px;
}
.fea-detail .fea-header__search-input:hover,
.fea-detail .fea-header__search-input:focus,
.fea-detail .fea-header__search-input:active
{
    border-left: 0.5px solid #2e9634 !important;
    border-radius: 10px;
}

.fea-detail__breadcrumbs {
  margin: 0 0 16px;
}

.fea-detail__crumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.fea-detail__crumblink {
  text-decoration: none;
  color: inherit;
}

.fea-detail__crumblink:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fea-detail__crumbsep {
  opacity: .6;
}

.fea-detail__crumbcurrent {
  opacity: .8;
}

.fea-detail__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
}

.fea-detail-aside__box{
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.fea-detail-aside__title{
  display: none;
}

.fea-detail-aside__item{
  border-bottom: 1px solid #f0f0f0;
}

.fea-detail-aside__btn{
  width: 100%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 20px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
  color: inherit;
}
.fea-detail-aside__btn img {
    max-width: 36px;
}

.fea-detail-aside__chev{
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: transform .22s ease, opacity .22s ease;
}

.fea-detail-aside__btn[aria-expanded="true"] .fea-detail-aside__chev{
  transform: rotate(180deg);
}

.fea-detail-aside__panel{
  overflow: hidden;
  max-height: 0;
  transition: max-height .26s ease;
}
.fea-detail-aside__panel .fea-detail-aside__list .fea-detail-aside__item {
    max-width: 255px;
}

.fea-detail-aside__list{
  list-style: none;
  margin: 0;
  padding: 10px 0 20px 20px;
  display: grid;
  gap: 18px;
}

.fea-detail-aside__link{
  text-decoration: none;
  color: inherit;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
}

.fea-detail-aside__link:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fea-detail__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.fea-detail__layout .fea-popular-card{
  padding: 24px 30px;
  height: 100%;
}

.fea-detail__layout .fea-popular-card__imglink{
  width: 100%;
  height: 192px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 0;
  margin-bottom: 20px;
}

.fea-detail__layout .fea-popular-card__img{
  width: 100%;
  height: 100%;
  max-width: 150px;
  margin: 0 auto;
  object-fit: contain;
}

.fea-detail__layout .fea-popular-card__name{
  font-weight: 400;
  font-size: 16px;
  color: #000;
  margin: 0 0 30px;
  min-height: auto;
}

.fea-detail__layout .fea-popular-card__price{
  font-weight: 600;
  font-size: 26px;
  color: #000;
  margin: 0 0 16px;
}

.fea-detail__layout .fea-popular-card__actions{
  gap: 10px;
}

.fea-detail__layout .fea-btn{
  height: 40px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
}

.fea-detail__layout .fea-btn--primary{
  color: #fff;
}

.fea-detail__layout .fea-btn--outline{
  color: #000;
}

/* detail */

.fea-popular-yousee .fea-popular__title {
    text-align: left;
}

.fea-prod__grid{
  display: grid;
  grid-template-columns: 365px 1fr 280px;
  gap: 34px;
  align-items: flex-start;
}
.fea-popular-yousee {
    padding-top: 80px;
}
.fea-prod__grid {
    padding-top: 60px;
    padding-bottom: 80px;
}

.fea-prod-media{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.17);
  padding-bottom: 15px;
}

.fea-prod-media__link{
  display: block;
  width: 365px;
  max-width: 100%;
}

.fea-prod-media__img{
  width: 365px;
  max-width: 100%;
  height: 274px;
  object-fit: contain;
  display: block;
}

.fea-prod-media__fav{
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  transition: transform .18s ease, background .18s ease;
}
.fea-prod-media__fav:hover{
  background: #f5f5f5;
  transform: scale(1.03);
}
.fea-prod-media__fav:active{
  transform: scale(.98);
}

.fea-prod-media__favicons{
  position: relative;
  width: 18px;
  height: 14px;
  display: inline-block;
}

.fea-prod-media__favico{
  position: absolute;
  inset: 0;
  width: 18px;
  height: 18px;
  opacity: 0;
  transform: scale(.96);
  transition: opacity .22s ease, transform .22s ease;
}

.fea-prod-media__favico--off{ opacity: 1; transform: scale(1); }
.fea-prod-media.is-fav .fea-prod-media__favico--off{ opacity: 0; transform: scale(.96); }
.fea-prod-media.is-fav .fea-prod-media__favico--on{ opacity: 1; transform: scale(1); filter: brightness(0) saturate(100%) invert(53%) sepia(78%) saturate(1800%) hue-rotate(329deg) brightness(99%) contrast(89%);}

.fea-prod-info{
  min-width: 0;
}

.fea-prod-info__title{
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 10px;
  color: inherit;
}

.fea-prod-info__line{
  border: 1px solid rgba(64, 92, 112, 0.3);
  margin: 0 0 12px;
}

.fea-prod-spec__title{
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 10px;
}

.fea-prod-spec__list{
  display: grid;
  gap: 10px;
}

.fea-prod-spec__row {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.fea-prod-spec__text{
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
  width: 100%;
}

.fea-prod-spec__strong{
  font-weight: 600;
  text-align: right;
}

.fea-prod-buy{
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.17);
  background: #fff;
  border-radius: 5px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: auto;
  min-width: 0;
}

.fea-prod-buy__price{
  font-weight: 700;
  font-size: 24px;
  color: #000;
  margin: 0 0 15px;
}

.fea-prod-buy__actions{
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.fea-prod-buy__btn{
  height: 50px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
}

/* tabs */

.fea-prodtabs__nav{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fea-prodtabs__tab{
  border: 0;
  cursor: pointer;
  padding: 10px;
  background: #f6f7fb;
  font-weight: 600;
  font-size: 16px;
  color: #405C70;
  border-radius: 4px;
  transition: background .18s ease, color .18s ease, transform .02s ease;
}

.fea-prodtabs__tab:active{
  transform: translateY(1px);
}

.fea-prodtabs__tab.is-active{
  background: #08A826;
  color: #fff;
}

.fea-prodtabs__content{
  margin-top: 40px;
}

.fea-prodtabs__panel{
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}

.fea-prodtabs__panel p{
  margin: 0 0 20px;
}

.fea-prodtabs__panel p:last-child{
  margin-bottom: 0;
}
.fea-detail__crumb:last-child a {
    color: #08A826;
}
.fea-inner h1 {
    font-weight: 600;
    font-size: 32px;
    text-align: left;
    border-left: 4px solid #1aa131;
    padding-left: 10px;
    margin-bottom: 30px;
    margin-top: 30px;
}
.inner-content p {
    margin-bottom: 20px;
}
.inner-content {
    margin-bottom: 30px;
}
.fea-dealers__tablewrap{
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.fea-dealers__table{
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
  border: 1px solid rgba(64, 92, 112, 0.3);
  background: #fff;
}

.fea-dealers__th,
.fea-dealers__td{
  border: 1px solid rgba(64, 92, 112, 0.3);
  padding: 18px 16px;
  vertical-align: top;
}

.fea-dealers__th{
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  background: #fff;
}

.fea-dealers__td{
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
}

.fea-dealers__link{
  color: #3f57ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fea-contacts__row{
  display: flex;
  gap: 34px;
  align-items: stretch;
}

.fea-contacts__card{
  flex: 0 0 48%;
  background: #f6f7fb;
  border-radius: 5px;
  padding: 34px 38px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
  justify-content: center;
}

.fea-contacts__item{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
}

.fea-contacts__ico{
  width: 18px;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.fea-contacts__ico img{
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.fea-contacts__text{
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  min-width: 0;
}

.fea-contacts__link{
  color: inherit;
  text-decoration: none;
}

.fea-contacts__link:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fea-contacts__mail{
  font-weight: 400;
  color: #5e63d0;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 2px;
}

.fea-contacts__mapbox{
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.fea-contacts__maptitle{
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 12px;
}

.fea-contacts__mapwrap{
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 320px;
  border-radius: 5px;
  overflow: hidden;
  background: #f6f7fb;
}

.fea-contacts__map{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
}

.fea-contacts__mapshield{
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 2;
  cursor: pointer;
}

.fea-contacts__mapwrap.is-active .fea-contacts__map{
  pointer-events: auto;
}

.fea-contacts__mapwrap.is-active .fea-contacts__mapshield{
  display: none;
}

.fea-contacts__mapbox iframe {
    height: 100%;
    border: none !important;
}
.inner-content ul {
    list-style-type: none;
    margin-bottom: 20px;
}
.fea-about__list {
    list-style-type: none;
}
.top-banner-content ul {
    color: #fff;
    list-style-type: none;
}
div[data-panel="desc"] ul {
    list-style-type: none;
    padding-left: 20px;
    margin-bottom: 20px;
}
.inner-content ul li,
.fea-about__list li,
.top-banner-content ul li,
div[data-panel="desc"] ul li {
    position: relative;
    padding-left: 20px;
}
.inner-content ul li:not(:last-child) {
    margin-bottom: 10px;
}
.inner-content ul li:before,
.fea-about__list li:before,
.top-banner-content ul li:before,
div[data-panel="desc"] ul li:before {
    content: '';
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #08A826;
    min-width: 10px;
    left: 0;
    top: 7px;
}
.fea-ship__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(64, 92, 112, 0.3);
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
}

.fea-ship__item{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 22px;
  min-width: 0;
}

.fea-ship__item + .fea-ship__item{
  border-left: 1px solid rgba(64, 92, 112, 0.3);
}

.fea-ship__ico{
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
  margin-top: 2px;
}

.fea-ship__text{
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}
.fea-catmenu__overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 998;
}

.fea-catmenu{
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-top: 1px solid #e9e9e9;
  box-shadow: 0 18px 34px rgba(0,0,0,.12);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 999;
}

.fea-catmenu__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 0 22px;
  width: 100%;
}

.fea-catmenu__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 0 14px;
}

.fea-catmenu__title{
  font-weight: 700;
  font-size: 18px;
  color: #2f2f2f;
}

.fea-catmenu__close{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  cursor: pointer;
  color: #1aa131;
}

.fea-catmenu__body{
  max-height: calc(100vh - 170px);
  overflow: auto;
  padding: 0 2px 2px;
}

.fea-catmenu__grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px 26px;
}

.fea-catmenu__item{
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #2f2f2f;
  min-width: 0;
}

.fea-catmenu__img{
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 6px;
  flex: 0 0 auto;
  background: #f6f7fb;
}

.fea-catmenu__name{
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.fea-catmenu__item:hover .fea-catmenu__name{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fea-header.is-cat-open .fea-catmenu{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fea-header.is-cat-open ~ .fea-catmenu__overlay,
.fea-header.is-cat-open .fea-catmenu__overlay{
  opacity: 1;
  pointer-events: auto;
}

.fea-header.is-cat-open .fea-catmenu__overlay{
  display: none;
}

.fea-catmenu__overlay.is-active{
  opacity: 1;
  pointer-events: auto;
}
.btn-clear-fav {
    max-width: 250px;
    margin: 0px auto 20px;
}
.fea-empty {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    padding: 40px 0px;
    font-size: 18px;
}
.fea-empty .fea-btn--primary {
    max-width: 250px;
    text-transform: uppercase;
}
.favorite-wrapper .fea-detail__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Pagination */
.fea-pagination{
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0 20px;
}

.fea-pagination .pagination{
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  align-items: center;
}

.fea-pagination .page-item{
  margin: 0;
}

.fea-pagination .page-link{
  display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 6px;
    border: 1px solid rgb(159 177 200);
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    line-height: 1;
    transition: transform .15s 
ease, box-shadow .15s 
ease, border-color .15s 
ease, background-color .15s 
ease, color .15s 
ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover){
  .fea-pagination .page-link:hover{
    border-color: rgba(0,0,0,.22);
    box-shadow: 0 6px 16px rgba(0,0,0,.08);
    transform: translateY(-1px);
  }
}
.fea-pagination .page-link:focus-visible{
  outline: 3px solid rgba(78,113,255,.35);
  outline-offset: 2px;
}

.fea-pagination .page-item.active .page-link{
    background: linear-gradient(135deg, #1aa131, #1aa131);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 22px rgb(159 177 200 / 14%);
}

.fea-pagination .page-item.disabled .page-link,
.fea-pagination .page-item.disabled > a.page-link{
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  transform: none;
}

.fea-pagination .page-link{
  white-space: nowrap;
}

.fea-pagination .page-item:first-child,
.fea-pagination .page-item:last-child{
display: none;
}

.grid-under-btn-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.grid-under-btn-list__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #484848;
}
.grid-under-btn-list__icon {
    width: 18px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #484848;
    margin-top: 1px;
}
.grid-under-btn-list__icon svg {
    width: 22px;
    height: 22px;
    display: block;
}
.grid-under-btn-list__item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 400;
    color: #484848;
}
.grid-under-btn-list__item--green {
    color: #1aa131;
}
.grid-under-btn-list__item--green .grid-under-btn-list__icon,
.grid-under-btn-list__item--green p {
    color: #1aa131;
}

.fea-prodtabs-files {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.icon-pdf {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e3e3e3;
    text-align: center;
    color: #484848;
    text-decoration: none;
    font-size: 14px;
    min-height: 115px;
    padding: 10px 5px;
}
.icon-pdf__top {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    text-align: center;
}

.icon-pdf__top img {
    max-width: 42px;
}

.fea-prodtabs-files p {
    margin-bottom: 0px;
}

.file-size {
    color: #b3b0b0;
}

.fea-prod-spec__all {
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: .2em;
    text-decoration-style: dotted;
    color: #484848;
    font-size: 14px;
    display: block;
    margin-top: 15px;
}

.fea-prod-spec__list .fea-prod-spec__row:nth-child(n + 6) {
  display: none;
}

.specs2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
}

.specs2 > .fea-prod-spec__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid #e9edf3;
}

.specs2 .fea-prod-spec__text {
  color: #7b8696;
  line-height: 1.35;
}

.specs2 .fea-prod-spec__strong {
  color: #111;
  font-weight: 600;
  text-align: right;
}

.fea-prod__grid .fea-prod-media__fav {
    z-index: 2;
}

.dostavka-block ul {
    margin-bottom: 20px;
    padding-left: 20px;
}
.dostavka-block p {
    margin-bottom: 10px;
}

.fea-icons-pt {
    position: absolute;
    top: 15px;
    left: 20px;
    z-index: 2;
}
.fea-icons-pt img {
    max-width: 60px;
}

.ocb-modal__title {
    text-align: center;
}
:root{--ocb-green:#1aa131;--ocb-white:#fff;--ocb-dark:#2f2f2f;}

.fancybox-close-small{ display:none!important;}
.fancybox-content#ocb-modal {
    padding: 20px !important;
    background: #fff !important;
}
#ocb-modal{
  width:min(460px, calc(100% - 24px));
  background:var(--ocb-white);
  color:var(--ocb-dark);
  border-radius:18px;
  padding:18px 18px 16px;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
  box-sizing:border-box;
}
a {
    outline: none !important;
}
.ocb-modal__close{
    float: right;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 0;
    background: #2da942;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    color: #ffffff;
}
.ocb-modal__title{font-weight:900;font-size:18px;margin:4px 0 12px;clear:both;}

.ocb__product{
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    align-items: center;
    padding: 14px;
    border: 1px solid #e8ecef;
    border-radius: 14px;
    margin-bottom: 14px;
    background: var(--ocb-white);
}
.ocb__product img {
    max-width: 50px;
}
.ocb__title{font-weight:800;line-height:1.25;text-align: left;}
.ocb__price{margin-top:6px;color:var(--ocb-green);font-weight:900;text-align: left;}

.ocb__field{display:block;margin:12px 0;}
.ocb__label{display:block;font-size:13px;margin:0 0 6px;color:var(--ocb-dark);opacity:.9;}
.ocb__input{
  width:100%;box-sizing:border-box;
  border:1px solid #dfe6ea;border-radius:12px;
  padding:12px 12px;outline:none;color:var(--ocb-dark);background:var(--ocb-white);
}
.ocb__input:focus{border-color:var(--ocb-green);box-shadow:0 0 0 3px rgba(26,161,49,.15);}

.ocb__error{display:block;min-height:16px;font-size:12px;color:#c02626;margin-top:6px;}

.ocb__btn{
  width:100%;
  border:0;background:var(--ocb-green);color:var(--ocb-white);
  border-radius:14px;padding:13px 14px;font-weight:900;
  cursor:pointer;display:flex;align-items:center;justify-content:center;gap:10px;
}
.ocb__btn[disabled]{cursor:not-allowed;filter:grayscale(.3) opacity(.75);}
.ocb__btnSpinner{
  width:16px;height:16px;border-radius:50%;
  border:2px solid rgba(255,255,255,.45);
  border-top-color:rgba(255,255,255,1);
  display:none;
  animation:ocbSpin .8s linear infinite;
}
@keyframes ocbSpin{to{transform:rotate(360deg);}}
.ocb__formMsg{margin-top:10px;font-size:13px;color:var(--ocb-dark);opacity:.9;}

.ocb-success__icon{
  width:54px;height:54px;border-radius:999px;background:rgba(26,161,49,.12);
  color:var(--ocb-green);display:grid;place-items:center;font-size:28px;margin:6px auto 10px;
}
.ocb-success__title{text-align:center;font-weight:900;font-size:20px;}
.ocb-success__text{text-align:center;margin-top:8px;opacity:.9;}
.ocb-success__ok{
  margin:14px auto 0;display:block;width:100%;
  border:0;background:var(--ocb-green);color:var(--ocb-white);
  border-radius:14px;padding:10px 14px;font-weight:900;cursor:pointer;
}

.fea-detail-catalog-title {
    font-size: 28px;
    margin-bottom: 26px;
    border-left: 4px solid #1aa131;
    padding-left: 10px;
}

.fea-detail__content {
    padding-top: 10px;
}

/* mega menu */

.fea-catalog-mega {
  position: fixed;
  top: 115px;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  z-index: 200;

  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
}

.fea-catalog-mega.is-open {
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
  transform: translateY(0);
  pointer-events: auto;
}

.fea-catalog-mega__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 24px 32px;
}

.fea-catalog-mega__inner .fea-kipa-card__title {
    align-items: center;
}

.fea-header__catalog.is-open {
  background: #149c2f;
  color: #fff;
}
.header {
    position: relative;
}
.fea-prodtabs__tabs {
    padding-bottom: 30px;
}
.form__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 0px 20px;
}
.form__checkbox-label span {
    font-size: 12px;
    display: block;
}
.form__checkbox-label input {
    position: relative;
    top: 2px;
}
.form__checkbox-label span a {
    color: #1aa131;
}
.fea-catalog-mega .fea-kipa-card__head {
    flex-direction: initial;
}
.fea-catalog-mega .fea-kipa-card,
.fea-catalog-mega .fea-kipa-card:hover {
    border: none;
}
.fea-catalog-mega .fea-kipa-card__title {
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}
.fea-catalog-mega .fea-kipa-card {
    min-height: auto;
    justify-content: flex-start;
    flex-direction: initial;
}
.fea-catalog-mega .fea-kipa-card__imgbox {
    min-width: 73px;
    max-width: 79px;
}
.fea-header__search-input[type="search"]::-webkit-search-decoration,
.fea-header__search-input[type="search"]::-webkit-search-cancel-button,
.fea-header__search-input[type="search"]::-webkit-search-results-button,
.fea-header__search-input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.fea-header__search-input[type="search"] {
  -webkit-appearance: textfield;
  appearance: textfield;
}
.inner-content .fea-header__search {
    max-width: 450px;
    margin: 0px auto 50px;
}
.karta-saita-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.karta-saita-block a {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    min-height: auto;
}

.sheme-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.sheme-wrapper img {
    max-width: 100%;
}
.consult-callback-strip {
    background: #f7f8fa;
    padding: 40px 24px;
}
.consult-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.consult-strip__text {
  flex: 1 1 auto;
  min-width: 0;
}

.consult-strip__title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #0f2747;
}

.consult-strip__desc {
  font-size: 15px;
  line-height: 1.55;
  color: #4e5d6c;
}

.consult-strip__btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 52px;
  padding: 12px 26px;
  background: #18a835;
  border: 1px solid #18a835;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  box-sizing: border-box;
}

.consult-strip__btn:hover {
  background: #14912d;
  border-color: #14912d;
  color: #ffffff;
}

.consult-strip__btn:active {
  transform: translateY(1px);
}

.consult-strip__btn:focus-visible {
  outline: 2px solid #0f2747;
  outline-offset: 2px;
}

@media (max-width: 991px) {
  .consult-strip {
    padding: 18px 20px;
    gap: 18px;
  }

  .consult-strip__title {
    font-size: 20px;
  }

  .consult-strip__desc {
    font-size: 14px;
  }

  .consult-strip__btn {
    min-width: 200px;
    min-height: 48px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .consult-strip {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 14px;
    border-radius: 10px;
  }

  .consult-strip__title {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .consult-strip__desc {
    font-size: 14px;
    line-height: 1.5;
  }

  .consult-strip__btn {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 12px 18px;
    font-size: 16px;
  }
}

@media (max-width: 479px) {
  .consult-strip {
    padding: 14px;
  }

  .consult-strip__title {
    font-size: 17px;
  }

  .consult-strip__desc {
    font-size: 13px;
  }

  .consult-strip__btn {
    min-height: 44px;
    font-size: 15px;
  }
}
.callback-form {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.callback-form__field {
    margin-bottom: 16px;
}

.callback-form input,
.callback-form textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 18px;
    border: 1px solid #d8dee6;
    border-radius: 14px;
    background: #ffffff;
    font-size: 16px;
    line-height: 1.4;
    color: #1f2d3d;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.callback-form input {
    height: 56px;
}

.callback-form textarea {
    min-height: 130px;
    padding-top: 16px;
    padding-bottom: 16px;
    resize: vertical;
}

.callback-form input::placeholder,
.callback-form textarea::placeholder {
    color: #9aa5b1;
    opacity: 1;
}

.callback-form input:focus,
.callback-form textarea:focus {
    border-color: #22a93a;
    box-shadow: 0 0 0 3px rgba(34, 169, 58, 0.12);
}

.callback-form__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    padding: 14px 24px;
    border: 0;
    border-radius: 14px;
    background: #1fad36;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: background .2s ease, transform .15s ease;
}

.callback-form__btn:hover {
    background: #17912d;
}

.callback-form__btn:active {
    transform: translateY(1px);
}

.callback-form__agree {
    margin: 14px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280;
}

.callback-form__agree a {
    color: #1fad36;
    text-decoration: underline;
}

.callback-form__agree a:hover {
    text-decoration: none;
}

.fancybox-content .callback-form,
.fancybox__content .callback-form {
    padding: 0;
}

.fancybox-content,
.fancybox__content {
    border-radius: 24px;
    padding: 28px 24px 24px;
    background: #f8f8f8;
    box-sizing: border-box;
}

.fancybox-button.fancybox-close-small,
.carousel__button.is-close {
    background: #22a93a !important;
    border-radius: 50%;
    color: #fff !important;
    width: 38px;
    height: 38px;
    top: 14px;
    right: 14px;
}

@media (max-width: 991px) {
    .callback-form input {
        height: 52px;
    }

    .callback-form textarea {
        min-height: 120px;
    }

    .callback-form__btn {
        min-height: 54px;
        font-size: 17px;
    }

    .fancybox-content,
    .fancybox__content {
        padding: 24px 20px 20px;
        border-radius: 20px;
    }
}

@media (max-width: 767px) {
    .callback-form__field {
        margin-bottom: 14px;
    }

    .callback-form input,
    .callback-form textarea {
        font-size: 15px;
        border-radius: 12px;
    }

    .callback-form input {
        height: 50px;
        padding: 0 15px;
    }

    .callback-form textarea {
        min-height: 110px;
        padding: 14px 15px;
    }

    .callback-form__btn {
        min-height: 50px;
        font-size: 16px;
        border-radius: 12px;
    }

    .callback-form__agree {
        font-size: 12px;
        margin-top: 12px;
    }

    .fancybox-content,
    .fancybox__content {
        padding: 20px 16px 16px;
        border-radius: 16px;
    }
}
.ms2c-price,
.ms2c-cost {
    text-align: center;
}
.fea-detail .fea-kipa__cards {
    padding: 30px 0px 40px;
}
.fea-gallery__thumb-nav {
    display: none;
}

.fea-nav-pop-wrap-gation {
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 5;
}

.top-banner-slider-container {
    margin-bottom: 40px;
}

.top-banner-slider {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.top-banner {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.top-banner__picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.top-banner__img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.top-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
   /* background: linear-gradient(
        90deg,
        rgba(10, 27, 60, 0.92) 0%,
        rgba(11, 34, 58, 0.88) 14%,
        rgba(10, 53, 58, 0.78) 34%,
        rgba(11, 74, 46, 0.72) 58%,
        rgba(14, 109, 35, 0.76) 78%,
        rgba(18, 132, 33, 0.82) 100%
    );*/
}

.top-banner .container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    margin: 0 auto;
    height: 100%;
}

.top-banner-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    max-width: 700px;
    padding: 40px 64px;
}

.top-banner-content p {
    margin: 0;
}

.top-banner-content p:first-child {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #88d27a;
}

.top-banner-content h1,
.top-banner-content h2 {
    margin: 0;
    font-size: 36px;
    line-height: 42px;
    font-weight: 800;
    color: #fff;
    text-transform: none;
    max-width: 560px;
}

.top-banner-content p:not(:first-child) {
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
}

.top-banner-content p strong,
.top-banner-content p b {
    color: #fff;
    font-weight: 700;
}

.top-banner-content a:last-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 32px;
    border-radius: 10px;
    background: #fff;
    color: #25324a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.top-banner-content a:hover {
    background: #1aa131;
    color: #fff;
    border-color: #1aa131;
}

.top-banner-slider__prev,
.top-banner-slider__next {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.top-banner-slider__prev::before,
.top-banner-slider__next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 11px;
    border-top: 3px solid #1aa131;
    border-right: 3px solid #1aa131;
}

.top-banner-slider__prev {
    left: 12px;
    transform: translateY(-50%);
}

.top-banner-slider__prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.top-banner-slider__next {
    right: 12px;
    transform: translateY(-50%);
}

.top-banner-slider__next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

.top-banner-slider .swiper-pagination {
    position: absolute;
    left: 50%;
    bottom: 14px;
    z-index: 5;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.top-banner-slider .swiper-pagination-bullet {
    margin: 0 !important;
    width: 10px;
    height: 10px;
    background: rgba(17, 33, 61, 0.45);
    opacity: 1;
}

.top-banner-slider .swiper-pagination-bullet-active {
    background: #08a826;
}

.inner-content-news-in img {
    max-width: 450px;
    margin-bottom: 30px;
    width: 100%;
}
div[data-panel="desc"] p:not(:last-child),
div[data-panel="desc"] h2,
div[data-panel="desc"] h3 {
    margin-bottom: 20px;
}
.inner-content-news-in td,
div[data-panel="desc"] table td {
    padding: 10pt !important;
    border: 1px solid;
    border-radius: 10px;
    text-align: left;
}
ol {
    padding-left: 20px;
}

.inner-content-news-block {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.footer-docs-file {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 2px 20px 2px 10px;
    width: fit-content;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, color .3s ease;
}
.footer-docs-file img {
    max-width: 36px;
}
.container-white-menu-hd {
    max-width: 100%;
    background: #fff;
}
.container-white-menu-hd > .fea-header {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.inner-content-news-in table,
div[data-panel="desc"] table {
    border: 1px solid;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
}

.fea-lic__inner,
.fea-blog__inner {
    padding: 30px;
    border-radius: 12px;
    background: #fff;
    position: relative;
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.fea-lic__inner-nav {
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 5;
}
.fea-popular__inner {
    position: relative;
}
.fea-popular__inner .fea-lic__inner-nav {
    top: 10px;
    right: 0;
}
.top-banner__img-mobile {
    display: none;
    width: 100%;
    height: 100%;
}
.ms2c-order #deliveries,
.ms2c-order #payments,
#msOrder > div.ms2c-bottom > div > .ms2c-summary-row:nth-child(1),
#msOrder > div.ms2c-bottom > div > .ms2c-summary-row:nth-child(2){
    display: none;
}
.ms2c-success .ms2c-table td {
    text-align: center;
}