﻿/* Tour Detail Page Styles */
.tour-detail {
    background-color: #f9f9f9;
    min-height: 100vh;
}

.tour-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.tour-info h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.tour-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    color: #666;
    font-size: 1rem;
}

.tour-meta i {
    color: var(--accent-color);
    margin-right: 8px;
}

.tour-main-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 0;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tour-description h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 30px;
}

.tour-description p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.tour-route-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
}

.tour-route-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
}

.tour-route-list li::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

@media (max-width: 480px) {
    .tour-route-list {
        grid-template-columns: 1fr;
    }
}

/* Booking Widget */
.booking-widget-container {
    position: relative;
    z-index: 10;
}

.booking-widget {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.booking-widget:hover {
    transform: translateY(-5px);
}

.booking-widget h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
}

.price-display {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.price-display .currency {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    vertical-align: top;
}

.price-display #price-value {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1;
}

.price-display .per-person {
    display: block;
    color: #888;
    font-size: 0.9rem;
    margin-top: 5px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #444;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    background-color: #fcfcfc;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background-color: #fff;
}

.total-calculation {
    background: #f8f9fa;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.total-calculation .row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #666;
}

.total-calculation .row.total {
    margin-bottom: 0;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.full-width {
    width: 100%;
    text-align: center;
    cursor: pointer;
    padding: 16px;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.full-width:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: #fff;
    margin: 20px auto;
    padding: 40px;
    border: none;
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.voucher-modal-content {
    max-width: 600px;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

/* Order Summary Styles */
.order-summary {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #eee;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 10px;
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-item.total {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #ddd;
    border-bottom: none;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.summary-item .label {
    color: #666;
    font-weight: 500;
}

.summary-item .value {
    color: var(--primary-color);
    font-weight: 700;
    text-align: right;
}

.voucher-header {
    text-align: center;
    margin-bottom: 30px;
}

.voucher-header h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.voucher-header p {
    color: #666;
}

.voucher-actions {
    text-align: center;
}

.voucher-actions p {
    margin-bottom: 20px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff;
    padding: 16px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    border: 1px solid #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .tour-detail-grid {
        grid-template-columns: 1fr;
    }

    .booking-widget {
        position: static;
        margin-top: 40px;
    }
}

/* Print Styles */
@media print {
    body * {
        visibility: hidden;
    }

    #voucher-modal,
    #voucher-modal * {
        visibility: visible;
    }

    #voucher-modal {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-content {
        box-shadow: none;
        border: none;
        width: 100%;
        max-width: 100%;
    }

    .close-modal,
    .voucher-actions {
        display: none !important;
    }
}

.flight-type-options {
    display: flex;
    gap: 15px;
}

.flight-option {
    flex: 1;
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
}

.flight-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.flight-option .option-content {
    display: block;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    background-color: #fcfcfc;
}

.flight-option input:checked~.option-content {
    border-color: var(--accent-color);
    background-color: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 0 1px var(--accent-color);
}

.flight-option .option-title {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
}

.flight-type-info {
    font-size: 0.8rem;
    color: #777;
    margin-top: 8px;
    line-height: 1.3;
}

/* Boarding Pass Styles */
.boarding-pass {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    font-family: 'Outfit', sans-serif;
    position: relative;
}

.pass-header {
    background-color: #0f2027;
    /* Dark Blue */
    padding: 20px;
    text-align: center;
}

.pass-logo {
    height: 60px;
    display: block;
    margin: 0 auto;
}

.pass-strip {
    background: linear-gradient(to right, #d4af37, #f2d06b, #d4af37);
    /* Gold */
    color: #0f2027;
    text-align: center;
    padding: 8px 0;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.pass-body {
    background: #fff;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pass-info {
    flex: 1;
    padding-right: 20px;
}

.pass-row {
    margin-bottom: 15px;
}

.pass-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.pass-info label {
    display: block;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.pass-info strong {
    display: block;
    font-size: 1rem;
    color: #0f2027;
    font-weight: 700;
    text-transform: uppercase;
}

.pass-qr {
    text-align: center;
    width: 120px;
}

.pass-qr p {
    font-size: 0.6rem;
    color: #888;
    margin-top: 5px;
    text-transform: uppercase;
}

#qrcode img {
    width: 100%;
    height: auto;
}

.pass-footer {
    background-color: #0f2027;
    color: #d4af37;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Perforation effect */
.pass-footer::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: radial-gradient(circle, transparent 5px, #0f2027 6px);
    background-size: 20px 20px;
    background-position: center bottom;
    transform: rotate(180deg);
}

.pass-stub-info label,
.pass-stub-seat label {
    display: block;
    font-size: 0.6rem;
    opacity: 0.7;
    text-transform: uppercase;
}

.pass-stub-info strong,
.pass-stub-seat strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

.pass-stub-seat {
    text-align: right;
}

.pass-stub-seat strong {
    font-size: 1.5rem;
}

/* Ticket Modal Styles */
.ticket-modal-content {
    max-width: 600px;
    padding: 30px;
    background: #f4f4f4;
}

.ticket-visual {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    position: relative;
}

.ticket-header {
    background: var(--primary-color);
    color: #fff;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-logo {
    height: 40px;
}

.ticket-id {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    letter-spacing: 1px;
    opacity: 0.8;
}

.ticket-body {
    padding: 25px;
    border-bottom: 2px dashed #eee;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.ticket-row:last-child {
    margin-bottom: 0;
}

.ticket-col {
    flex: 1;
}

.ticket-col:last-child {
    text-align: right;
}

.ticket-label {
    display: block;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.ticket-value {
    display: block;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.ticket-value.highlight {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.ticket-value.status-pending {
    color: #e67e22;
    font-size: 0.9rem;
    background: rgba(230, 126, 34, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
}

.ticket-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.ticket-stub {
    background: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ticket-stub::before,
.ticket-stub::after {
    content: '';
    position: absolute;
    top: -10px;
    width: 20px;
    height: 20px;
    background: #f4f4f4;
    border-radius: 50%;
}

.ticket-stub::before {
    left: -10px;
}

.ticket-stub::after {
    right: -10px;
}

.ticket-qr img {
    width: 100px;
    height: 100px;
    display: block;
}

.ticket-actions {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    color: white;
}


/* Ticket Modal Styles */
.ticket-modal-content {
    max-width: 600px;
    width: 95%;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
}

.ticket-container {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    position: relative;
}

.ticket-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.3);
}

.ticket-logo img {
    height: 50px;
}

.ticket-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--accent-color);
}

.ticket-body {
    padding: 25px;
    background-image: radial-gradient(circle at 0 0, transparent 10px, #fff 11px), radial-gradient(circle at 100% 0, transparent 10px, #fff 11px);
    background-size: 50% 100%;
    background-position: top left, top right;
    background-repeat: no-repeat;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.ticket-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.ticket-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ticket-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.ticket-value {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.ticket-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px dashed #eee;
}

.ticket-code .ticket-value {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--primary-color);
}

.voucher-actions {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* Ticket Styles */
.ticket-modal-content {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    max-width: 400px !important;
}

.ticket-container {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-family: 'Outfit', sans-serif;
    position: relative;
}

.ticket-header {
    background-color: #0f2027;
    /* Dark Blue */
    padding: 20px;
    text-align: center;
    position: relative;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ticket-logo {
    height: 60px;
    margin-bottom: 10px;
}

.ticket-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 30px;
    opacity: 0.5;
}

.ticket-strip {
    background: linear-gradient(90deg, #d4af37, #f2d06b, #d4af37);
    /* Gold Gradient */
    color: #0f2027;
    text-align: center;
    font-weight: 700;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.ticket-body {
    padding: 25px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
}

.ticket-info {
    flex: 1;
}

.ticket-row {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.ticket-group {
    display: flex;
    flex-direction: column;
}

.ticket-group.full-width {
    width: 100%;
}

.ticket-group label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.ticket-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f2027;
}

.ticket-value.highlight {
    font-size: 1.1rem;
}

.ticket-qr {
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    text-align: center;
}

.ticket-qr img {
    width: 100%;
    height: auto;
    margin-bottom: 5px;
}

.ticket-qr p {
    font-size: 0.5rem;
    color: #888;
    line-height: 1.2;
    text-transform: uppercase;
}

.ticket-footer {
    background-color: #0f2027;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    color: #fff;
    position: relative;
}

/* Perforated Line Effect */
.ticket-footer::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: radial-gradient(circle, transparent 5px, #0f2027 6px);
    background-size: 20px 20px;
    background-position: bottom;
    transform: rotate(180deg);
}

.ticket-footer .ticket-group label {
    color: rgba(255, 255, 255, 0.6);
}

.ticket-footer .ticket-value.gold {
    color: #d4af37;
    font-size: 1.1rem;
}

.ticket-footer .ticket-group.right {
    text-align: right;
    align-items: flex-end;
}

.voucher-actions {
    margin-top: 20px;
    background: white;
    padding: 15px;
    border-radius: 12px;
}


/* Ticket Styles */
.ticket-modal-content {
    background: transparent;
    box-shadow: none;
    padding: 0;
    max-width: 450px;
}

.ticket-container {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    margin-bottom: 20px;
}

.ticket-header {
    background: var(--primary-color);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.2);
}

.ticket-logo {
    height: 50px;
}

.ticket-type {
    color: var(--accent-color);
    font-family: var(--font-heading);
    letter-spacing: 2px;
    font-size: 0.9rem;
    border: 1px solid var(--accent-color);
    padding: 5px 10px;
    border-radius: 4px;
}

.ticket-body {
    padding: 25px;
    background: #fff;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.ticket-row:last-child {
    margin-bottom: 0;
}

.ticket-col {
    display: flex;
    flex-direction: column;
}

.ticket-col:last-child {
    text-align: right;
}

.ticket-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.ticket-value {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.ticket-value.highlight {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.ticket-footer {
    background: #f9f9f9;
    padding: 15px 25px;
    border-top: 2px dashed #ddd;
    position: relative;
}

/* Efeito de furinhos do ticket */
.ticket-footer::before,
.ticket-footer::after {
    content: '';
    position: absolute;
    top: -10px;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    /* Cor do fundo do modal */
    border-radius: 50%;
}

.ticket-footer::before {
    left: -10px;
}

.ticket-footer::after {
    right: -10px;
}

.ticket-barcode {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.barcode-lines {
    height: 30px;
    width: 80%;
    background: repeating-linear-gradient(90deg,
            #333,
            #333 2px,
            transparent 2px,
            transparent 4px);
}

.ticket-code {
    font-family: monospace;
    letter-spacing: 3px;
    color: #555;
    font-size: 0.9rem;
}

/* Ticket Styling */
.voucher-content {
    padding: 0 !important;
    border: 2px solid var(--accent-color);
    overflow: hidden;
    background: #fff;
}

.voucher-body {
    padding: 25px;
}

.order-summary {
    background: #fff;
    border: none;
    padding: 0;
    margin-bottom: 20px;
}

.summary-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

.summary-item .label {
    color: var(--primary-color);
    font-weight: 600;
}

.summary-item .value {
    color: #333;
    font-weight: 500;
}

.summary-item.total {
    border-top: 2px dashed var(--primary-color);
    border-bottom: none;
    margin-top: 15px;
    padding-top: 15px;
}

.summary-item.total .value {
    color: var(--primary-color);
    font-size: 1.4rem;
}


/* Ticket Styling */
.voucher-content {
    padding: 0 !important;
    border: 2px solid var(--accent-color);
    overflow: hidden;
    background: #fff;
}

.voucher-body {
    padding: 25px;
}

.order-summary {
    background: #fff;
    border: none;
    padding: 0;
    margin-bottom: 20px;
}

.summary-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

.summary-item .label {
    color: var(--primary-color);
    font-weight: 600;
}

.summary-item .value {
    color: #333;
    font-weight: 500;
}

.summary-item.total {
    border-top: 2px dashed var(--primary-color);
    border-bottom: none;
    margin-top: 15px;
    padding-top: 15px;
}

.summary-item.total .value {
    color: var(--primary-color);
    font-size: 1.4rem;
}
