/* ============================================
   FIRE CALCULATOR STYLES
   Калькулятор пожарного запаса воды
   ============================================ */

:root {
    --fire-primary: #a33;
    --fire-primary-light: #c55;
    --fire-primary-dark: #822;
    --fire-accent: #e67e22;
    --fire-success: #2e7d32;
    --fire-bg: #fdf8f6;
    --fire-border: #e8d6d0;
}

.fire-calc-page {
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Ubuntu', Arial, sans-serif;
}

/* Hero Section */
.fire-calc-hero {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border: 2px solid var(--fire-primary);
    border-radius: 16px;
    color: #333;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.hero-icon {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: none;
}

.fire-calc-hero h1 {
    font-size: 28px;
    margin: 0 0 10px 0;
    font-weight: 700;
    color: #333;
}

.hero-subtitle {
    font-size: 16px;
    opacity: 1;
    color: #666;
    margin: 0;
}

/* Wizard Container */
.fire-calc-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 40px;
}

/* Progress Steps */
.wizard-progress {
    display: flex;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    gap: 10px;
}

.wizard-step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #eee;
    opacity: 0.5;
    transition: all 0.3s;
}

.wizard-step.active {
    opacity: 1;
    border-color: var(--fire-primary);
}

.wizard-step.completed {
    opacity: 1;
    border-color: var(--fire-success);
    background: #f0fff0;
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.wizard-step.active .step-num {
    background: var(--fire-primary);
    color: #fff;
}

.wizard-step.completed .step-num {
    background: var(--fire-success);
    color: #fff;
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.wizard-step.active .step-label {
    color: #333;
}

/* Wizard Panels */
.wizard-panel {
    display: none;
    padding: 30px;
}

.wizard-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-panel h2 {
    font-size: 22px;
    margin: 0 0 10px 0;
    color: #333;
}

.step-hint {
    color: #666;
    margin: 0 0 25px 0;
}

/* Object Type Grid */
.object-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.object-type-card {
    padding: 25px 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.object-type-card:hover {
    border-color: var(--fire-primary-light);
    background: var(--fire-bg);
}

.object-type-card.selected {
    border-color: var(--fire-primary);
    background: var(--fire-bg);
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}

.card-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.card-desc {
    font-size: 13px;
    color: #888;
}

/* Form Elements */
.form-row {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.help-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #0073aa;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    cursor: pointer;
    margin-left: 5px;
}

.fire-select,
.fire-input {
    width: 100%;
    height: 44px;
    padding: 0 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.fire-select:focus,
.fire-input:focus {
    outline: none;
    border-color: var(--fire-primary);
}

.error-field {
    border-color: #ff4d4f !important;
    background-color: #fff1f0;
    box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
}

.fire-input.small {
    width: 90px;
    text-align: center;
}

.volume-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-input-group .fire-input {
    flex: 1;
}

.volume-unit {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.form-hint {
    font-size: 13px;
    color: #888;
    margin: 10px 0;
}

.dimensions-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.dimensions-row span {
    color: #999;
}

.btn-calc-volume {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--fire-primary);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
}

.btn-calc-volume:hover {
    background: var(--fire-primary-dark);
}

/* Radio Group */
.radio-group {
    display: flex;
    gap: 15px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-item:hover {
    border-color: var(--fire-primary-light);
}

.radio-item input[type="radio"] {
    accent-color: var(--fire-primary);
}

.radio-item input[type="radio"]:checked+span {
    font-weight: 600;
}

/* Wizard Navigation */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: 30px;
}

.btn-wizard {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-back {
    background: #f5f5f5;
    color: #666;
}

.btn-back:hover {
    background: #eee;
}

.btn-next {
    background: var(--fire-primary);
    color: #fff;
}

.btn-next:hover {
    background: var(--fire-primary-dark);
}

/* Result Card */
.result-card {
    background: #fff;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
    margin-bottom: 25px;
}

.result-icon {
    font-size: 36px;
}

.result-header h2 {
    margin: 0;
    font-size: 24px;
}

/* Result Sections */
.result-section {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
}

.result-section h3 {
    font-size: 16px;
    margin: 0 0 15px 0;
    color: #333;
}

/* Legal Block */
.legal-block {
    background: #f0f7ff;
    border: 1px solid #cce0f5;
}

.legal-text {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.legal-text strong {
    color: #0073aa;
}

.result-volume-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #0073aa;
}

.volume-label {
    font-size: 14px;
    color: #666;
}

.volume-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--fire-primary);
}

/* Tech Block */
.tech-block {
    background: #fff8e1;
    border: 1px solid #ffe082;
}

.tech-text {
    font-size: 14px;
    line-height: 1.6;
    color: #5d4037;
    margin-bottom: 15px;
}

.tank-config {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Products Block */
.products-block {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

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

.product-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #eee;
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s;
}

.product-card:hover {
    border-color: var(--fire-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 6px;
    background: #f8f8f8;
}

.product-info {
    flex: 1;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.product-volume {
    font-size: 13px;
    color: #666;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--fire-primary);
    margin-top: 8px;
}

.product-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 30px;
    color: #999;
}

/* Sets Sections (standard / custom split) */
.sets-section {
    grid-column: 1 / -1;
    margin-bottom: 25px;
}

.sets-section:last-child {
    margin-bottom: 0;
}

.sets-section h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #193857;
    font-weight: 700;
}

.sets-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Modular Set Cards */
.modular-set-card {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    border: 2px solid #e9ecef;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    height: 100%;
    cursor: pointer;
}

.modular-set-card:hover {
    border-color: #b0c4de;
}

.modular-set-card.selected-for-pdf,
.modular-set-card.best-set.selected-for-pdf {
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.15);
}

.modular-set-card.selected-for-pdf .set-header {
    background: #e8f4fd;
    color: #0073aa;
}

.modular-set-card.selected-for-pdf .set-header::after {
    content: '-- выбран для PDF';
    font-size: 11px;
    font-weight: 400;
    color: #0073aa;
    margin-left: 8px;
}

.modular-set-card.best-set {
    border: 2px solid #2ecc71;
    box-shadow: 0 8px 24px rgba(46, 204, 113, 0.1);
}

.set-header {
    background: #f8f9fa;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.best-set .set-header {
    background: rgba(46, 204, 113, 0.05);
    color: #27ae60;
}

.set-badge {
    background: #2ecc71;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.set-items {
    padding: 20px;
    flex: 1;
}

.set-item {
    margin-bottom: 15px;
}

.set-item:last-child {
    margin-bottom: 0;
}

.set-item-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.set-item-row img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 5px;
}

.set-item-info {
    flex: 1;
}

.set-item-name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 3px;
}

.set-item-count {
    font-size: 14px;
    color: #333;
    font-weight: 700;
}

.set-footer {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.set-stats {
    margin-bottom: 15px;
}

.set-stat {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 5px;
}

.set-stat strong {
    color: #2ecc71;
    font-size: 16px;
}

.add-set-to-cart {
    width: 100%;
    margin-top: 10px;
    background: #e74c3c;
    font-size: 14px;
}

.add-set-to-cart:hover {
    background: #c0392b;
}

.add-set-to-cart.btn-quote {
    background: #193857;
}

.add-set-to-cart.btn-quote:hover {
    background: #0d2035;
}

/* GRP Button */
.add-set-to-cart.btn-grp {
    background: #193857;
}

.add-set-to-cart.btn-grp:hover {
    background: #0d2035;
}

.grp-price-note {
    display: block;
    font-size: 11px;
    color: #888;
    font-weight: 400;
    margin-top: 2px;
}

/* RFQ Panel */
.rfq-panel {
    background: #f8fbff;
    border: 2px solid #c5d9ed;
    border-radius: 12px;
    padding: 25px;
    margin-top: 25px;
}

.rfq-panel h3 {
    font-size: 18px;
    margin: 0 0 5px 0;
    color: #193857;
}

.rfq-subtitle {
    font-size: 13px;
    color: #888;
    margin: 0 0 20px 0;
}

.rfq-summary {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.rfq-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 14px;
    border-bottom: 1px dashed #eee;
}

.rfq-summary-row:last-child {
    border-bottom: none;
}

.rfq-summary-items {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.rfq-item {
    font-size: 13px;
    color: #555;
    padding: 3px 0;
}

/* RFQ Options */
.rfq-options {
    margin-bottom: 20px;
}

.rfq-options h4 {
    font-size: 15px;
    margin: 0 0 12px 0;
    color: #333;
}

.rfq-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.rfq-option {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    cursor: pointer;
    padding: 8px 10px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    transition: border-color 0.2s;
}

.rfq-option:hover {
    border-color: #193857;
}

.rfq-option input[type="checkbox"] {
    margin-top: 2px;
    accent-color: #193857;
}

.rfq-textarea {
    width: 100%;
    min-height: 60px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    resize: vertical;
    font-family: inherit;
}

/* RFQ Contacts */
.rfq-contacts {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

.rfq-contacts .fire-input {
    height: 42px;
    font-size: 14px;
}

/* RFQ Consent */
.rfq-consent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    cursor: pointer;
}

.rfq-consent input[type="checkbox"] {
    accent-color: #193857;
}

.rfq-consent.error-field {
    color: #c62828;
}

/* RFQ Result */
.rfq-success {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-top: 15px;
}

.rfq-success h4 {
    color: #2e7d32;
    margin: 0 0 10px 0;
}

.rfq-success p {
    margin: 5px 0;
    font-size: 14px;
}

.rfq-error {
    background: #ffebee;
    border: 1px solid #ef9a9a;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    color: #c62828;
    margin-top: 15px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .sets-row {
        grid-template-columns: 1fr;
    }

    .rfq-checkboxes {
        grid-template-columns: 1fr;
    }

    .rfq-contacts {
        grid-template-columns: 1fr;
    }
}

/* Result Actions */
.result-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.pdf-select-hint {
    flex: 1;
    text-align: center;
    font-size: 14px;
    color: #888;
    padding: 15px 20px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 10px;
    margin: 0;
}

.btn-pdf {
    background: #0073aa;
    color: #fff;
}

.btn-pdf:hover {
    background: #005580;
}

.btn-pdf:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.action-icon {
    font-size: 18px;
}

/* Lead Gate (appears on PDF button click) */
.lead-gate {
    margin-top: 20px;
    padding: 20px 24px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
}

.lead-gate-title {
    font-weight: 600;
    font-size: 16px;
    color: #193857;
    margin-bottom: 12px;
}

.lead-gate-fields {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.lead-gate-fields input {
    flex: 1;
}

.lead-gate-consent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    cursor: pointer;
}

.lead-gate-consent input[type="checkbox"] {
    accent-color: #193857;
}

.lead-gate-consent.error-field {
    color: #c62828;
}

.lead-gate-success {
    padding: 15px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 8px;
    color: #166534;
    font-size: 14px;
    line-height: 1.6;
}

.lead-gate-success a {
    color: #193857;
    font-weight: 600;
}

/* Cart Success Banner */
.cart-success-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 10px;
    margin-bottom: 16px;
    animation: slideDown 0.3s ease;
}

.cart-success-text {
    font-weight: 600;
    color: #166534;
}

.cart-success-link {
    color: #193857;
    font-weight: 600;
    text-decoration: underline;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Highlight: выбор варианта не сделан */
.highlight-select {
    animation: pulseHighlight 0.6s ease 3;
}

@keyframes pulseHighlight {
    0%, 100% { box-shadow: none; }
    50% { box-shadow: 0 0 0 4px rgba(0, 115, 170, 0.3); border-radius: 12px; }
}

.pdf-select-hint.hint-attention {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
    font-weight: 600;
}

/* Error Card */
.error-card {
    text-align: center;
    padding: 40px;
}

.error-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.error-card h3 {
    font-size: 20px;
    margin: 0 0 10px 0;
    color: var(--fire-primary);
}

.error-card p {
    color: #666;
    margin-bottom: 25px;
}

/* Info Block */
.fire-info-block {
    margin-bottom: 40px;
}

.fire-info-block h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 25px;
}

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

.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.info-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.info-card h4 {
    font-size: 16px;
    margin: 0 0 10px 0;
}

.info-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* CTA */
.fire-cta {
    background: #f0f7ff;
    border: 1px solid #cce0f5;
    color: #333;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
}

.fire-cta h3 {
    font-size: 22px;
    margin: 0 0 10px 0;
}

.fire-cta p {
    margin: 0 0 20px 0;
    opacity: 0.9;
}

.fire-cta .button {
    background: #B8FA2C !important;
    color: #000 !important;
}

/* Related Tools */
.related-tools {
    margin-bottom: 40px;
}

.related-tools h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.tools-grid {
    display: flex;
    gap: 15px;
}

.tool-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s;
}

.tool-card:hover {
    border-color: #0073aa;
    background: #f0f7ff;
}

.tool-icon {
    font-size: 24px;
}

.tool-name {
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .object-type-grid {
        grid-template-columns: 1fr;
    }

    .wizard-progress {
        flex-direction: column;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .result-actions {
        flex-direction: column;
    }

    .dimensions-row {
        flex-wrap: wrap;
    }

    .fire-input.small {
        width: 70px;
    }

    .lead-gate-fields {
        flex-direction: column;
    }

    .cart-success-banner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .step-label {
        font-size: 12px;
    }
}

/* Tank Config — сводка из каталога */
.tank-config-loading {
    text-align: center;
    color: #888;
    padding: 12px;
    font-size: 14px;
}

.tank-config-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #e8d6d0;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    font-size: 14px;
    line-height: 1.5;
}

.tank-config-line:last-child {
    margin-bottom: 0;
}

.tank-config-line:hover {
    border-color: var(--fire-primary);
    background: #fdf8f6;
}

.tank-config-pool {
    font-weight: 700;
    color: #333;
    white-space: nowrap;
}

.tank-config-items {
    color: #555;
}

.tank-config-price {
    color: var(--fire-primary);
    font-weight: 600;
}

.tank-config-empty {
    text-align: center;
    color: #888;
    padding: 10px;
    font-size: 14px;
}

/* PDF button standalone (outside result-actions) */
#btn-pdf-main {
    margin-top: 12px;
    width: 100%;
}

/* Selected Variant Summary */
.selected-variant-summary {
    margin-top: 16px;
    padding: 16px 20px;
    background: #f0f7ff;
    border: 2px solid #b0cfe0;
    border-radius: 10px;
}

.svs-header {
    font-weight: 700;
    font-size: 15px;
    color: #0073aa;
    margin-bottom: 8px;
}

.svs-items {
    margin-bottom: 8px;
}

.svs-item {
    font-size: 14px;
    color: #333;
    padding: 2px 0;
}

.svs-total {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    padding-top: 6px;
    border-top: 1px solid #cce0f5;
}