/* =============================================
   HOMEPAGE STYLES — Gervent
   ============================================= */

/* --- HERO --- */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1d4ed8 100%);
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="80" r="60" fill="rgba(255,255,255,0.02)"/></svg>') no-repeat center;
    background-size: cover;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59,130,246,0.2);
    border: 1px solid rgba(59,130,246,0.4);
    color: #93c5fd;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-title span {
    color: #60a5fa;
}
.hero-desc {
    font-size: 1.125rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.hero-stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 4px;
}
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2563eb;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(37,99,235,0.4);
}
.hero-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,99,235,0.5);
    color: #fff;
}
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}
.hero-btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.hero-image-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.hero-image-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.hero-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hero-image-badge-icon {
    width: 40px;
    height: 40px;
    background: #dbeafe;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
}

/* --- ABOUT --- */
.about-section {
    padding: 96px 0;
    background: #fff;
}
.section-label {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 600px;
}
.about-text p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}
.about-feature:last-child { border-bottom: none; }
.about-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
}
.about-feature-title {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.about-feature-desc {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
}
.about-image-wrap {
    position: relative;
}
.about-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}
.about-cert-badge {
    position: absolute;
    top: 24px;
    right: -16px;
    background: #fff;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    text-align: center;
    min-width: 120px;
}
.about-cert-num {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
}
.about-cert-text {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 4px;
}
.about-exp-badge {
    position: absolute;
    bottom: 24px;
    left: -16px;
    background: #2563eb;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 8px 40px rgba(37,99,235,0.3);
    text-align: center;
    min-width: 130px;
}
.about-exp-num {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.about-exp-text {
    font-size: 0.75rem;
    color: #bfdbfe;
    margin-top: 4px;
}

/* --- ADVANTAGES --- */
.advantages-section {
    padding: 96px 0;
    background: #f8fafc;
}
.adv-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}
.adv-card:hover {
    border-color: #2563eb;
    box-shadow: 0 12px 40px rgba(37,99,235,0.12);
    transform: translateY(-4px);
}
.adv-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.adv-card:hover .adv-icon {
    background: #2563eb;
    color: #fff;
}
.adv-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}
.adv-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* --- PRODUCTS --- */
.products-section {
    padding: 96px 0;
    background: #fff;
}
.product-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    transform: translateY(-4px);
    border-color: #bfdbfe;
}
.product-img-wrap {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
    height: 240px;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img {
    transform: scale(1.05);
}
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #2563eb;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.product-body {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.4;
    text-decoration: none;
}
.product-title:hover { color: #2563eb; }
.product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 16px;
    margin-top: auto;
}
.product-price-label {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 400;
    margin-left: 4px;
}
.product-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #2563eb;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.product-btn:hover {
    background: #1d4ed8;
    color: #fff;
    transform: none;
}

/* --- FAQ --- */
.faq-section {
    padding: 96px 0;
    background: #f8fafc;
}
.faq-item {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open {
    border-color: #2563eb;
    box-shadow: 0 4px 20px rgba(37,99,235,0.08);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
}
.faq-question-text {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
}
.faq-item.open .faq-question-text {
    color: #2563eb;
}
.faq-icon-wrap {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #eff6ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    transition: all 0.3s;
}
.faq-item.open .faq-icon-wrap {
    background: #2563eb;
    color: #fff;
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-answer-inner {
    padding: 0 28px 22px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

/* --- CTA --- */
.cta-section {
    padding: 96px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.cta-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.cta-desc {
    font-size: 1.1rem;
    color: #bfdbfe;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.cta-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #2563eb;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-btn-white:hover {
    background: #f0f9ff;
    color: #1d4ed8;
    transform: translateY(-2px);
}
.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}
.cta-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    color: #fff;
}

/* --- GRID HELPERS --- */
.hp-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hp-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hp-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.hp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.hp-text-center { text-align: center; }
.hp-mb-16 { margin-bottom: 64px; }
.hp-mb-8 { margin-bottom: 32px; }
.hp-flex-gap { display: flex; gap: 16px; flex-wrap: wrap; }
.hp-flex-center { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

@media (max-width: 1024px) {
    .hp-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hp-grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .hp-grid-3 { grid-template-columns: 1fr; }
    .hp-grid-4 { grid-template-columns: 1fr 1fr; }
    .about-cert-badge { right: 8px; }
    .about-exp-badge { left: 8px; }
    .hero-stats { gap: 20px; }
}
@media (max-width: 480px) {
    .hp-grid-4 { grid-template-columns: 1fr; }
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes grv-ripple {
    to { transform: scale(1); opacity: 0; }
}

@keyframes grv-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

@keyframes grv-pulse-ring {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes grv-slide-in-left {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes grv-slide-in-right {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes grv-fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hero — анимация при загрузке */
.hero-section .hero-badge    { animation: grv-fade-up 0.5s ease both; }
.hero-section .hero-title    { animation: grv-slide-in-left 0.6s ease 0.1s both; }
.hero-section .hero-desc     { animation: grv-slide-in-left 0.6s ease 0.2s both; }
.hero-section .hero-stats    { animation: grv-fade-up 0.6s ease 0.3s both; }
.hero-section .hp-flex-gap   { animation: grv-fade-up 0.6s ease 0.4s both; }
.hero-section .hero-image-card { animation: grv-slide-in-right 0.7s ease 0.2s both; }

/* Плавающая картинка в hero */
.hero-image-card {
    animation: grv-float 5s ease-in-out infinite !important;
}

/* Hover на карточках преимуществ */
.adv-card {
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s !important;
}

/* Hover на карточках товаров */
.grv-product-card {
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s !important;
}

/* Плавный переход ссылок */
a { transition: color 0.2s, opacity 0.2s; }

/* Уважаем prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* =============================================
   GLOBAL — Popup Maker + CF7
   Подключается на всех страницах сайта
   ============================================= */

/* --- Оверлей --- */
.pum-overlay {
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(6px) !important;
}

/* --- Контейнер любого попапа --- */
.pum-container {
    border-radius: 20px !important;
    border: none !important;
    box-shadow: 0 32px 80px rgba(0,0,0,0.3) !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #fff !important;
    max-width: 460px !important;
    width: calc(100vw - 32px) !important;
}

/* --- Кнопка закрытия --- */
.pum-close {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    width: 34px !important;
    height: 34px !important;
    background: rgba(255,255,255,0.15) !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 34px !important;
    text-align: center !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    transition: background 0.2s !important;
    z-index: 10 !important;
    padding: 0 !important;
    cursor: pointer !important;
}
.pum-close:hover {
    background: rgba(255,255,255,0.28) !important;
}

/* --- Контент попапа --- */
.pum-content {
    padding: 0 !important;
}

/* --- Шапка попапа (grv-popup-header) --- */
.grv-popup-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #1d4ed8 100%);
    padding: 28px 28px 22px;
    position: relative;
}
.grv-popup-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(59,130,246,0.2);
    border: 1px solid rgba(59,130,246,0.4);
    color: #93c5fd;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}
.grv-popup-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 14px;
}
.grv-popup-product-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 10px 14px;
}
.grv-popup-product-icon { color: #60a5fa; flex-shrink: 0; }
.grv-popup-product-label {
    font-size: 10px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
    margin-bottom: 2px;
}
.grv-popup-product-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #e2e8f0;
}

/* --- Тело попапа --- */
.grv-popup-body {
    padding: 24px 28px 28px;
    background: #fff;
}

/* =============================================
   CF7 внутри попапа — универсальные стили
   ============================================= */

/* Убираем <br> которые CF7 вставляет */
.pum-content .wpcf7-form br {
    display: none !important;
}

/* Параграф-обёртка полей */
.pum-content .wpcf7-form p {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin: 0 !important;
}

/* Обёртка каждого поля */
.pum-content .wpcf7-form-control-wrap {
    display: block !important;
    width: 100% !important;
}

/* Текстовые поля */
.pum-content input[type="text"],
.pum-content input[type="tel"],
.pum-content input[type="email"] {
    width: 100% !important;
    padding: 13px 16px !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 10px !important;
    font-size: 0.95rem !important;
    color: #0f172a !important;
    background: #f8fafc !important;
    outline: none !important;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s !important;
    box-sizing: border-box !important;
    font-family: inherit !important;
    -webkit-appearance: none !important;
}
.pum-content input[type="text"]:focus,
.pum-content input[type="tel"]:focus,
.pum-content input[type="email"]:focus {
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1) !important;
    background: #fff !important;
}
.pum-content input::placeholder {
    color: #94a3b8 !important;
}
.pum-content input.wpcf7-not-valid {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important;
}

/* Чекбокс согласия */
.pum-content .wpcf7-acceptance {
    display: block !important;
}
.pum-content .wpcf7-acceptance .wpcf7-list-item {
    margin: 0 !important;
}
.pum-content .wpcf7-acceptance label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    cursor: pointer !important;
}
.pum-content .wpcf7-acceptance input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    margin: 2px 0 0 !important;
    accent-color: #2563eb !important;
    cursor: pointer !important;
}
.pum-content .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 0.78rem !important;
    color: #64748b !important;
    line-height: 1.55 !important;
}
.pum-content .wpcf7-acceptance a {
    color: #2563eb !important;
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
}
.pum-content .wpcf7-acceptance a:hover {
    color: #1d4ed8 !important;
}

/* Кнопка отправки */
.pum-content input[type="submit"].wpcf7-submit {
    width: 100% !important;
    padding: 14px !important;
    background: #2563eb !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    font-family: inherit !important;
    box-shadow: 0 4px 16px rgba(37,99,235,0.3) !important;
    -webkit-appearance: none !important;
    letter-spacing: 0.01em !important;
}
.pum-content input[type="submit"].wpcf7-submit:hover:not(:disabled) {
    background: #1d4ed8 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(37,99,235,0.4) !important;
}
.pum-content input[type="submit"].wpcf7-submit:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

/* Спиннер — скрываем */
.pum-content .wpcf7-spinner {
    display: none !important;
}

/* Ошибки под полями */
.pum-content .wpcf7-not-valid-tip {
    font-size: 0.75rem !important;
    color: #dc2626 !important;
    margin-top: 4px !important;
    display: block !important;
}

/* Ответ формы */
.pum-content .wpcf7-response-output {
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 0.875rem !important;
    border: none !important;
    margin: 8px 0 0 !important;
}
.pum-content .wpcf7-mail-sent-ok {
    background: #f0fdf4 !important;
    color: #166534 !important;
    border: 1px solid #bbf7d0 !important;
}
.pum-content .wpcf7-validation-errors,
.pum-content .wpcf7-mail-sent-ng,
.pum-content .wpcf7-acceptance-missing {
    background: #fef2f2 !important;
    color: #991b1b !important;
    border: 1px solid #fecaca !important;
}

/* Скрытые служебные поля */
.pum-content .hidden-fields-container,
.pum-content input[name="pum_form_popup_id"],
.pum-content .wpcf7-pum {
    display: none !important;
}
#popmake-15 .pum-title{
	margin-bottom: 10px !important;
	padding: 10px 10px 0px 20px;
}
#popmake-15 .wpcf7-form{
	padding: 20px;
}
/* --- Адаптив --- */
@media (max-width: 480px) {
    .pum-container {
        border-radius: 16px !important;
    }
    .grv-popup-header {
        padding: 22px 20px 18px !important;
    }
    .grv-popup-body {
        padding: 20px 20px 24px !important;
    }
}
