/* 2603300001 - F_021_main_page.css - Stili questionario Homentor */

/* ============================================================================
   RESET E BASE
   ============================================================================ */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    color: #444;
}

/* ============================================================================
   HEADER (allineata a P_001)
   ============================================================================ */

.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: #3b3954;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 200;
    margin-left: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.nav-right,
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 300;
    font-size: 12px;
    transition: opacity 0.2s;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-link:hover {
    opacity: 1;
}

.btn-nav {
    background: #ffffff;
    color: #3b3954;
    padding: 0.375rem 1rem;
    text-decoration: none;
    font-size: 11px;
    font-weight: 400;
    transition: all 0.2s;
    border: 1px solid #ffffff;
    border-radius: 6px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
}

.btn-nav:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-menu-toggle i {
    display: none;
}

.mobile-menu-toggle .hamburger-fallback {
    font-size: 1.5rem;
    line-height: 1;
}

/* ============================================================================
   QUESTIONARIO CONTAINER
   ============================================================================ */

.questionnaire-container {
    max-width: 640px;
    margin: 40px auto;
    padding: 70px 20px 0 20px;
}

/* ============================================================================
   BARRA DI AVANZAMENTO
   ============================================================================ */

.progress-bar-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #059669, #10b981);
    border-radius: 3px;
    transition: width 0.4s ease;
    width: 12.5%;
}

.progress-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    min-width: 30px;
    text-align: right;
}

/* ============================================================================
   STEP
   ============================================================================ */

.step {
    display: none;
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.3s ease;
}

.step.active {
    display: block;
}

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

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.3;
}

.step-welcome {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 14px 16px;
    background: #f8f9fa;
    border-left: 3px solid #059669;
    border-radius: 4px;
}

.step-subtitle {
    font-size: 15px;
    color: #888;
    margin-bottom: 24px;
    line-height: 1.5;
}

.char-counter {
    text-align: right;
    font-size: 12px;
    color: #888;
    margin-top: 6px;
}

/* ============================================================================
   FORM ELEMENTS
   ============================================================================ */

.input-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s;
    line-height: 1.5;
}

.input-textarea:focus {
    outline: none;
    border-color: #059669;
}

.input-field {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.input-field:focus {
    outline: none;
    border-color: #059669;
}

.email-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.email-input-wrapper .input-field {
    padding-right: 48px;
}
.email-submit-icon {
    position: absolute;
    right: 6px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: #059669;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.email-submit-icon.visible {
    opacity: 1;
    pointer-events: auto;
}
.email-submit-icon:hover {
    background: #047857;
}

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

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

.form-hint {
    display: block;
    font-size: 13px;
    color: #888;
    margin-top: 4px;
    font-style: italic;
}

/* ============================================================================
   RADIO BUTTONS (CARD STYLE)
   ============================================================================ */

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.radio-card {
    display: flex;
    align-items: flex-start;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    gap: 12px;
}

.radio-card:hover {
    border-color: #059669;
    background: #ecfdf5;
}

.radio-card input[type="radio"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: #059669;
    width: 18px;
    height: 18px;
}

.radio-card input[type="radio"]:checked + .radio-text {
    font-weight: 600;
    color: #1a1a2e;
}

.radio-card:has(input:checked) {
    border-color: #059669;
    background: #ecfdf5;
}

.radio-text {
    font-size: 15px;
    line-height: 1.4;
    color: #444;
}

/* Step 1: compattamento per radio cards con titolo e benvenuto */
#step-1.step {
    padding: 16px 20px;
}

#step-1 .step-title {
    margin-bottom: 6px;
}

#step-1 .step-welcome {
    margin-bottom: 10px;
    padding: 8px 14px;
    line-height: 1.5;
}

#step-1 .step-subtitle {
    margin-bottom: 8px;
    color: #1a1a2e;
    font-weight: 600;
}

/* ============================================================================
   STEP 2-7: COMPATTAMENTO VERTICALE (card domande a scelta)
   ============================================================================ */

#step-2.step,
#step-3.step,
#step-4.step,
#step-5.step,
#step-6.step,
#step-7.step {
    padding: 16px 24px;
}

#step-2 .step-title,
#step-3 .step-title,
#step-4 .step-title,
#step-5 .step-title,
#step-6 .step-title,
#step-7 .step-title {
    font-size: 20px;
    margin-bottom: 4px;
}

#step-2 .radio-group,
#step-3 .radio-group,
#step-4 .radio-group,
#step-5 .radio-group,
#step-6 .radio-group,
#step-7 .radio-group {
    gap: 6px;
    margin: 8px 0;
}

#step-2 .radio-card,
#step-3 .radio-card,
#step-4 .radio-card,
#step-5 .radio-card,
#step-6 .radio-card,
#step-7 .radio-card {
    padding: 8px 12px;
}

#step-2 .radio-text,
#step-3 .radio-text,
#step-4 .radio-text,
#step-5 .radio-text,
#step-6 .radio-text,
#step-7 .radio-text {
    font-size: 14px;
    line-height: 1.3;
}

/* Step 1: compattamento extra radio card (8 opzioni) */
#step-1 .radio-group {
    gap: 4px;
    margin: 6px 0;
}

#step-1 .radio-card {
    padding: 6px 10px;
}

#step-1 .radio-text {
    font-size: 13px;
    line-height: 1.25;
}

#step-1 .radio-card input[type="radio"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

/* ============================================================================
   RIFERIMENTO DOMANDA PRINCIPALE (step 3-7)
   ============================================================================ */

.step-reference {
    font-size: 13px;
    color: #059669;
    margin-bottom: 4px;
    padding: 6px 12px;
    background: #ecfdf5;
    border-left: 3px solid #059669;
    border-radius: 4px;
}

/* ============================================================================
   SEZIONI INFORMATIVE SOTTO LE CARD (step 3-7)
   ============================================================================ */

/* Card info separata (fuori da .step) */
.step-info-card {
    display: none;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.3s ease;
}

.step-info-card.active {
    display: block;
}

.info-card-separator {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 16px 0 12px;
}

.info-card-trial-hint {
    font-size: 13px;
    color: #059669;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.info-card-trial-hint i {
    margin-right: 6px;
}

.step-info-separator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #059669;
    font-size: 13px;
    font-weight: 600;
}

.step-info-separator::before,
.step-info-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.step-info-separator i {
    font-size: 14px;
}

.step-info-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step-info-subtitle {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
    line-height: 1.4;
}

.step-info-intro {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 14px;
}

/* I 3 rischi (step 3) */
.info-risks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-risk-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #444;
    line-height: 1.4;
}

.info-risk-item i.risk-icon {
    color: #3b3954;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.info-risk-bad {
    color: #ef4444;
}

.info-risk-good {
    color: #059669;
    font-weight: 600;
}

/* Video (step 4) */
.info-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.info-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Confronto (step 5) */
.info-comparison {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    font-size: 13px;
}

.info-comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #3b3954;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-comparison-header > div {
    padding: 8px 10px;
}

.info-comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #f0f0f0;
}

.info-comparison-row:last-child {
    border-bottom: none;
}

.info-comparison-row > div {
    padding: 7px 10px;
    line-height: 1.3;
}

.info-comparison-row > div:first-child {
    font-weight: 600;
    color: #1a1a2e;
    background: #f8f9fa;
}

.info-comparison-row > div:nth-child(2) {
    color: #888;
}

.info-comparison-row > div:nth-child(3) {
    color: #059669;
    font-weight: 600;
}

/* 7 professionisti (step 6) */
.info-experts {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.info-expert-tag {
    background: #f0f0f0;
    color: #444;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.info-experts-note {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
    font-style: italic;
}

.info-experts-note strong {
    color: #059669;
}

/* Cosa ottieni (step 7) */
.info-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-feature-group h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.info-feature-group h4 i {
    color: #059669;
    width: 18px;
    text-align: center;
    margin-right: 6px;
    font-size: 13px;
}

.info-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-feature-list li {
    font-size: 12px;
    color: #666;
    padding-left: 24px;
    line-height: 1.4;
}

.info-feature-list li i {
    color: #10b981;
    font-size: 10px;
    margin-right: 5px;
    margin-left: -24px;
    width: 19px;
    text-align: center;
}

/* Responsive mobile per sezioni info */
@media (max-width: 768px) {
    .info-comparison-header,
    .info-comparison-row {
        grid-template-columns: 0.8fr 1fr 1fr;
    }

    .info-comparison-header > div,
    .info-comparison-row > div {
        padding: 6px 6px;
        font-size: 11px;
    }

    .info-experts {
        gap: 4px;
    }

    .info-expert-tag {
        font-size: 11px;
        padding: 3px 8px;
    }
}

/* ============================================================================
   CHECKBOX
   ============================================================================ */

.checkbox-group {
    margin-top: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #444;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #059669;
    width: 18px;
    height: 18px;
}

.checkbox-label a {
    color: #059669;
    text-decoration: underline;
}

/* ============================================================================
   GOOGLE SIGN-IN
   ============================================================================ */

.google-signin-section {
    margin-bottom: 20px;
    text-align: center;
}

.google-signin-section .g_id_signin {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.google-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
}

.google-divider-line {
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.google-divider-text {
    color: #888;
    font-size: 13px;
    white-space: nowrap;
}

/* ============================================================================
   OTP E VERIFICA EMAIL
   ============================================================================ */

.email-send-confirmation {
    color: #10b981;
    font-size: 13px;
    margin-top: 6px;
}

.email-send-confirmation i {
    margin-right: 4px;
}

.otp-timer {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    color: #444;
}

.otp-timer i {
    margin-right: 6px;
}

.otp-timer-expired {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.email-help-hint {
    color: #f59e0b;
    font-size: 13px;
    margin-top: 8px;
}

.email-help-hint i {
    margin-right: 4px;
}

.btn-resend {
    background: none;
    border: 2px solid #059669;
    color: #059669;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.btn-resend:hover {
    background: #059669;
    color: #fff;
}

.trial-offer-intro {
    margin-bottom: 20px;
}

.trial-offer-intro p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 8px;
}

.trial-offer-card {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border: 2px solid #059669;
    border-radius: 12px;
    padding: 28px 24px;
    margin-top: 16px;
    text-align: center;
}

.trial-offer-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.trial-offer-text {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 8px;
}

.trial-offer-claim {
    font-size: 15px;
    font-weight: 700;
    color: #2b468d;
    margin: 12px 0 20px;
}

.trial-offer-cta {
    display: inline-block;
    background: #059669;
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.trial-offer-cta:hover {
    background: #047857;
}

.trial-offer-note {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}

.trial-offer-link {
    font-size: 13px;
    margin-top: 14px;
}

.trial-offer-link a {
    color: #059669;
    text-decoration: none;
    font-weight: 500;
}

.trial-offer-link a:hover {
    text-decoration: underline;
}

.verified-field {
    background: #ecfdf5 !important;
    color: #10b981 !important;
    border-color: #10b981 !important;
    font-weight: 600;
}

.field-warning {
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
}

.field-warning i {
    margin-right: 4px;
}

.privacy-text {
    margin-top: 20px;
}

.privacy-text p {
    color: #888;
    font-size: 13px;
    line-height: 1.5;
}

.privacy-text a {
    color: #059669;
    text-decoration: underline;
}

/* ============================================================================
   BOTTONI
   ============================================================================ */

/* ============================================================================
   BARRA NAVIGAZIONE FISSA
   ============================================================================ */

.nav-bar-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 12px 20px;
    background: rgba(59, 57, 84, 0.60);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

/* Spazio in basso per evitare che il contenuto finisca sotto la barra fissa */
main.questionnaire-container {
    padding-bottom: 80px;
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-back {
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-back:hover {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

/* ============================================================================
   CONFERMA (STEP 9)
   ============================================================================ */

.confirmation-container {
    text-align: center;
    padding: 20px 0;
}

.confirmation-icon {
    font-size: 64px;
    color: #10b981;
    margin-bottom: 20px;
}

.confirmation-trial-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.confirmation-trial-intro {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 16px;
}

.confirmation-message {
    font-size: 16px;
    color: #888;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* ============================================================================
   MESSAGGI ERRORE
   ============================================================================ */

.error-message {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: #ef4444;
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
    max-width: 90%;
    text-align: center;
}

/* ============================================================================
   RESPONSIVE TABLET (allineato a P_001 — breakpoint 1200px per header)
   ============================================================================ */

@media (max-width: 1200px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-right,
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #3b3954;
        flex-direction: column;
        padding: 1rem;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s, opacity 0.3s, visibility 0s 0.3s;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        z-index: 999;
    }

    .nav-right.mobile-active,
    .nav-links.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        transition: transform 0.3s, opacity 0.3s, visibility 0s;
    }

    .nav-right .btn-nav,
    .nav-links .btn-nav {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
}

/* ============================================================================
   RESPONSIVE MOBILE
   ============================================================================ */

@media (max-width: 768px) {

    .questionnaire-container {
        margin: 20px auto;
        padding: 70px 12px 0 12px;
    }

    .step {
        padding: 24px 18px;
        border-radius: 12px;
    }

    .step-title {
        font-size: 19px;
    }

    .radio-card {
        padding: 12px 14px;
    }

    .radio-text {
        font-size: 14px;
    }

    .btn-next {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-submit {
        padding: 14px;
        font-size: 15px;
    }

    .btn-back {
        padding: 10px 18px;
        font-size: 13px;
    }

    .nav-bar-fixed {
        padding: 10px 16px;
    }
}
