/* Modern redesign for Build Your Custom Solution */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #e0e7ff;
    --primary-dark: #1e40af;
    --secondary-color: #f3f4f6;
    --secondary-hover: #e5e7eb;
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-light: #6b7280;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --border-color: #e5e7eb;
    --background-light: #f9fafb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: all 0.2s ease-in-out;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f7fb;
    color: var(--text-primary);
    line-height: 1.5;
}

.page-container {
    min-height: 100vh;
    padding: 40px 20px;
}

.build-your-own-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* Section Title */
.section-title {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(to right, #2563eb, #3b82f6);
    color: white;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title p {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
}

/* Progress Steps */
.progress-container {
    padding: 30px 20px;
    background-color: white;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    list-style: none;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.progress-steps:before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.progress-steps .step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 33.33%;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 22px;
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step.active .step-icon {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.step.completed .step-icon {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.step-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
}

.step.active .step-text {
    color: var(--primary-color);
    font-weight: 600;
}

/* Chatbot styles */
.chatbot-container {
    padding: 20px;
    background-color: white;
}

.chat-messages {
    height: 350px;
    overflow-y: auto;
    padding: 20px;
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-light) var(--background-light);
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: var(--background-light);
}

.chat-messages::-webkit-scrollbar-thumb {
    background-color: var(--primary-light);
    border-radius: 6px;
}

.bot-message, .user-message {
    margin-bottom: 15px;
    max-width: 80%;
    display: flex;
    align-items: flex-end;
}

.bot-message {
    margin-right: auto;
}

.user-message {
    margin-left: auto;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    font-size: 12px;
}

.bot-message .message-avatar {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.user-message .message-avatar {
    background-color: var(--primary-color);
    color: white;
}

.message-content {
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    max-width: 100%;
    box-shadow: var(--shadow-sm);
}

.bot-message .message-content {
    background-color: white;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.user-message .message-content {
    background-color: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: 10px;
    margin-top: 5px;
    color: var(--text-light);
    text-align: right;
}

.user-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.option-btn {
    padding: 10px 16px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.option-btn:hover {
    background-color: var(--secondary-hover);
    border-color: var(--text-light);
}

/* Checklist styles */
.checklist-container {
    padding: 20px;
    background-color: white;
}

.category-selector {
    display: flex;
    margin-bottom: 20px;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px;
    background-color: var(--background-light);
    border-radius: var(--radius-md);
}

.category-btn {
    padding: 8px 16px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover {
    background-color: var(--secondary-hover);
}

.category-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.search-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 300px;
}

.search-box input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-primary);
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 16px;
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.view-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.view-btn:hover {
    background-color: var(--secondary-hover);
}

.view-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.features-grid.list-view {
    grid-template-columns: 1fr;
}

.feature-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    background-color: white;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-card.selected {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
}

.feature-card.selected:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
}

.feature-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-bottom-left-radius: var(--radius-sm);
    text-transform: uppercase;
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature-header h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.feature-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.feature-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    cursor: pointer;
}

.feature-checkbox input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.feature-checkbox input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.feature-checkbox input:checked:after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
}

.feature-checkbox label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
}

.price-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 15px 20px;
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.price-breakdown {
    display: flex;
    flex-direction: column;
}

.selected-features {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.price-estimate {
    text-align: right;
}

.price-estimate h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

#price-total {
    color: var(--primary-color);
    font-size: 20px;
}

/* Summary Section Styles */
.summary-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 32px;
    max-width: 1200px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* Header Styling */
.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeef3;
}

.summary-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2a3342;
    margin-bottom: 8px;
}

.summary-header .subtitle {
    color: #6b7280;
    font-size: 16px;
    font-weight: 400;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* Main Content Area */
.summary-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 32px;
}

/* Solution Summary */
.solution-details {
    background-color: #f9fafb;
    border-radius: 10px;
    padding: 24px;
    height: 100%;
    border: 1px solid #eaeef3;
}

/* PDF Preview */
.pdf-preview-container {
    position: relative;
}

.pdf-preview {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 30px;
    border: 1px solid #eaeef3;
    position: relative;
    height: 100%;
}

.pdf-preview::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #eaeef3;
    border-radius: 8px;
    pointer-events: none;
}

.pdf-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.pdf-logo {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 24px;
}

.pdf-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.pdf-content {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Next Steps */
.next-steps {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.next-steps button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
}

/* Email form */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
}

.overlay.active {
    display: flex;
}

.email-form {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 90%;
    max-width: 500px;
    overflow: hidden;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--primary-color);
    color: white;
}

.form-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
}

.close-btn:hover {
    opacity: 1;
}

#quote-email-form {
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.input-with-icon input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-primary);
    transition: var(--transition);
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 30px;
}

/* Button styles */
.btn-primary, .btn-secondary, .btn-outline {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-light);
}

.action-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.action-buttons button {
    min-width: 150px;
}

/* Loading states */
.loading-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Feature card list view */
.features-grid.list-view .feature-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
}

.features-grid.list-view .feature-header {
    margin-bottom: 5px;
}

.features-grid.list-view .feature-checkbox {
    margin-top: 0;
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: var(--text-primary);
    color: white;
    text-align: center;
    border-radius: var(--radius-sm);
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    font-weight: normal;
    box-shadow: var(--shadow-md);
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.tag {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

/* Notifications */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    border-radius: var(--radius-md);
    padding: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    max-width: 400px;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.notification-success .notification-icon {
    background-color: var(--success-color);
}

.notification-error .notification-icon {
    background-color: var(--danger-color);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.notification-message {
    font-size: 14px;
    color: var(--text-secondary);
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
}

/* Chat message styling improvements */
.chat-messages .message-group {
    margin-bottom: 20px;
}

.chat-messages .message-group:last-child {
    margin-bottom: 0;
}

.message-typing {
    display: flex;
    gap: 3px;
    align-items: center;
    margin: 10px 0;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background-color: var(--text-light);
    border-radius: 50%;
    animation: typing 1.4s infinite both;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 100% { 
        opacity: 0.3;
        transform: translateY(0);
    }
    50% { 
        opacity: 1; 
        transform: translateY(-5px);
    }
}

/* Empty state */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.empty-icon {
    font-size: 48px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.empty-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.empty-message {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 400px;
    margin-bottom: 20px;
}

/* Styling for JavaScript-generated content */

/* Solution Summary Content */
#solution-summary h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2a3342;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eaeef3;
}

#solution-summary p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 12px;
}

#solution-summary strong {
    font-weight: 600;
    color: #2a3342;
}

/* Selected Features List */
#solution-summary ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

#solution-summary li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 5px;
}

/* Price Highlight */
#solution-summary .price-highlight {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin: 20px 0;
    padding: 12px 16px;
    background-color: rgba(37, 99, 235, 0.05);
    border-radius: 8px;
    display: inline-block;
}

/* PDF Preview Content */
#pdf-preview h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    text-align: center;
}

#pdf-preview p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 12px;
}

#pdf-preview .proposal-date {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
    text-align: center;
}

#pdf-preview .proposal-details {
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

#pdf-preview .price-total {
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
    margin: 16px 0;
}

/* Make certain text stand out */
.highlight-text {
    color: #2563eb;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .summary-content {
        grid-template-columns: 1fr;
    }
    
    .next-steps {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-container {
        padding: 20px 10px;
    }

    .section-title {
        padding: 30px 20px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .progress-steps .step-text {
        font-size: 12px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .next-steps {
        flex-direction: column;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .action-buttons button {
        width: 100%;
    }
    
    .price-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .price-estimate {
        text-align: left;
        width: 100%;
    }
    
    .category-selector {
        padding: 10px;
    }
    
    .category-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .search-filter {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .search-box {
        max-width: 100%;
        width: 100%;
    }
    
    .view-toggle {
        align-self: flex-end;
    }

    .summary-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .summary-container {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-text {
        font-size: 10px;
    }
    
    .chat-messages {
        height: 300px;
    }
    
    .bot-message, .user-message {
        max-width: 90%;
    }
    
    .form-header h3 {
        font-size: 18px;
    }
}