/* Modal: tło przyciemniające całą stronę - domyślnie ukryte, JS pokazuje je
   (display:flex, do centrowania) po kliknięciu przycisku pakietu. */
.pkgform-wrapper {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    color: #fff;
}

/* Blokada przewijania strony w tle, gdy modal jest otwarty */
body.pkgform-modal-open {
    overflow: hidden;
}

.pkgform-box {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    margin: auto;
    background: #1c1c1c;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #353535;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.pkgform-header {
    position: relative;
    text-align: left;
    margin-bottom: 25px;
    padding: 20px;
    padding-right: 150px;
    background: #2d2d2d;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    min-height: 90px;
    box-sizing: border-box;
}

/* Przycisk zamykania - w tej samej ramce co reszta nagłówka, w prawym górnym rogu */
.pkgform-close {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #232323;
    color: #ccc;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pkgform-close:hover {
    background: #1a1a1a;
    border-color: #ffba65;
    color: #fff;
}

.pkgform-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
}

.pkgform-header h3 {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
    color: #ffba65;
}

.pkgform-desc {
    margin: 0;
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
}

/* Cena przypięta do prawego-dolnego rogu ramki (poza normalnym przepływem),
   żeby nie dodawała własnej wysokości do karty. */
.pkgform-price-badge {
    position: absolute;
    right: 16px;
    bottom: 16px;
    margin: 0;
    padding: 8px 16px;
    background: #232323;
    border: 1px solid #3a3a3a;
    border-radius: 10px;
    font-size: 14px;
    color: #ccc;
    white-space: nowrap;
}

.pkgform-price-badge strong {
    font-size: 20px;
    font-weight: 800;
    color: #ffba65;
    margin: 0 3px;
}

/* ==================== KROKI: PLIKI / DANE (minimalistyczny stepper) ==================== */
.pkgform-tabs {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
}

/* Same wskaźniki kroków - nieklikalne, tylko informacyjne (nawigacja przez Dalej/Wstecz) */
.pkgform-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #888;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.pkgform-tab-dot {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #555;
    color: #aaa;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.pkgform-tab-label {
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Krok aktywny - podświetlony na pomarańczowo */
.pkgform-tab.active {
    color: #fff;
}

.pkgform-tab.active .pkgform-tab-dot {
    border-color: #ffba65;
    color: #ffba65;
}

/* Krok ukończony - zielone kółko z ptaszkiem, niezależnie od tego, czy jest aktywny */
.pkgform-tab.completed .pkgform-tab-dot {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.pkgform-tab.completed.active .pkgform-tab-dot {
    border-color: #28a745;
}

/* Łącznik między kółkami - wszystkie trzy odcinki (lewa krawędź, środek, prawa
   krawędź) mają flex:1, więc automatycznie wychodzą tej samej długości i
   rozciągają się od jednej krawędzi kontenera do drugiej. Odstępy od kropek/
   etykiet zapewnia gap na .pkgform-tabs, nie margin na samym łączniku. */
.pkgform-tab-connector {
    flex: 1;
    height: 2px;
    background: #444;
}

.pkgform-tab-panel {
    display: none;
    animation: pkgform-tab-fade-in 0.3s ease-in-out;
}

.pkgform-tab-panel.active {
    display: block;
}

@keyframes pkgform-tab-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.pkgform-tab-nav {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.pkgform-tab-nav button {
    flex: 1;
}

.pkgform-tab-next,
.pkgform-tab-prev {
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
    padding: 14px 20px;
    border: 1px solid #444;
    border-radius: 8px;
    background: #2d2d2d;
    color: #ccc;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
}

.pkgform-tab-next:hover,
.pkgform-tab-prev:hover {
    background: #333;
    border-color: #ffba65;
    color: #fff;
}

/* Krok "Dalej" (Pliki -> Dane) ma być wyróżniony jak główna akcja tego etapu */
.pkgform-tab-next {
    background: #ffba65;
    color: #1a1a1a;
    border-color: #ffba65;
}

.pkgform-tab-next:hover {
    background: #ffcb8a;
    color: #1a1a1a;
}

/* ==================== PRZEŁĄCZNIK: PRZEŚLIJ PLIKI / PODAJ LINK ==================== */
.pricing-upload-mode-switch {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.upload-mode-btn {
    -webkit-appearance: none;
    appearance: none;
    flex: 1;
    padding: 12px 16px;
    background: #2d2d2d;
    border: 1px solid #444;
    border-radius: 8px;
    color: #ccc;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.upload-mode-btn:hover,
.upload-mode-btn:focus,
.upload-mode-btn:active {
    background: #333;
    border-color: #ffba65;
    color: #fff;
    outline: none;
}

.upload-mode-btn.active,
.upload-mode-btn.active:hover,
.upload-mode-btn.active:focus {
    background: #ffba6520;
    border-color: #ffba65;
    color: #fff;
}

.upload-mode-btn:disabled,
.upload-mode-btn:disabled:hover {
    background: #2d2d2d;
    border-color: #444;
    color: #ccc;
    opacity: 0.4;
    cursor: not-allowed;
}

/* ==================== DROP ZONE ==================== */
.drop-zone {
    position: relative;
    flex-direction: column !important;
    display: flex;
    border: 2px dashed #555;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    background: #252525;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    margin-bottom: 10px;
}

.drop-zone:hover {
    border-color: #ffba65;
    background: #2a2a2a;
}

.drop-zone p {
    margin: 0 !important;
    color: #aaa !important;
    font-size: 15px !important;
}

.drop-zone p.drop-zone-hint-text {
    display: none;
    color: #ffba65 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px;
    text-shadow: 0 0 14px rgba(255, 186, 101, 0.75);
}

.drop-zone-info {
    display: block;
    font-size: 11px;
    color: #888;
    margin-top: 10px;
    line-height: 1.4;
    font-weight: normal;
    transition: opacity 0.2s ease;
}

/* Stan przeciągania pliku nad strefą uploadu: animowana, "biegnąca" przerywana
   ramka (marching ants) poruszająca się w jednym kierunku + efekt poświaty. */
.drop-zone-marching-border {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.drop-zone-marching-border rect {
    x: 1px;
    y: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    rx: 9px;
    ry: 9px;
    fill: none;
    stroke: #ffba65;
    stroke-width: 2px;
    stroke-dasharray: 10 8;
    animation: pricing-marching-ants-svg 0.6s linear infinite;
}

@keyframes pricing-marching-ants-svg {
    to {
        stroke-dashoffset: -18;
    }
}

.drop-zone.drag-active {
    border-color: transparent;
    background-color: rgba(255, 186, 101, 0.12);
    animation: pricing-glow-pulse 1.4s ease-in-out infinite;
}

.drop-zone.drag-active .drop-zone-marching-border {
    opacity: 1;
}

.drop-zone.drag-active p.drop-zone-default-text {
    display: none !important;
}

.drop-zone.drag-active p.drop-zone-hint-text {
    display: block !important;
}

.drop-zone.drag-active .drop-zone-info {
    opacity: 0.45;
}

@keyframes pricing-glow-pulse {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(255, 186, 101, 0.5),
            0 0 22px 4px rgba(255, 186, 101, 0.35),
            inset 0 0 22px rgba(255, 186, 101, 0.12);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(255, 186, 101, 0.7),
            0 0 38px 8px rgba(255, 186, 101, 0.55),
            inset 0 0 34px rgba(255, 186, 101, 0.22);
    }
}

/* ==================== PASEK POSTĘPU ==================== */
.progress-container {
    width: 100%;
    background-color: #333;
    border-radius: 8px;
    margin: 20px 0;
    overflow: hidden;
    height: 25px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

#pkgform-gdrive-bar {
    width: 0%;
    height: 100%;
    background-color: #ffba65;
    color: white;
    text-align: center;
    line-height: 25px;
    font-size: 12px;
    font-weight: bold;
    transition: width 0.3s ease;
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Pasek "nieokreślonego" postępu - używany, gdy czekamy na odpowiedź serwera
   (np. kasowanie plików), a nie ma żadnego realnego % do pokazania. */
.progress-container.is-indeterminate {
    position: relative;
}

.progress-container.is-indeterminate #pkgform-gdrive-bar {
    position: absolute;
    top: 0;
    height: 100%;
    width: 30%;
    transition: none;
    animation: pricing-indeterminate-slide 1.1s ease-in-out infinite;
}

.progress-container.is-indeterminate::after {
    content: attr(data-label);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    pointer-events: none;
}

@keyframes pricing-indeterminate-slide {
    0%   { left: -30%; }
    100% { left: 100%; }
}

/* ===== LICZNIK PLIKÓW ===== */
#pkgform-file-count-info {
    background: #2d2d2d;
    border: 1px solid #444444;
    border-radius: 8px;
    padding: 6px 12px;
    color: #d1d1d1;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pricing-file-size-line {
    color: #888;
    font-weight: 500;
}

#pkgform-session-timer {
    color: #888;
    font-size: 12px;
    font-weight: 500;
}

#pkgform-toggle-list {
    text-decoration: none !important;
    background: #2d2d2d !important;
    border: 1px solid #444444 !important;
    border-radius: 5px !important;
    padding: 6px 12px !important;
    color: #ffba65;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    margin-left: 4px;
}

#pkgform-toggle-list:hover {
    color: #ffcb8a;
}

#pkgform-gdrive-reset {
    text-decoration: none !important;
    background: #2d2d2d !important;
    border: 1px solid #444444 !important;
    border-radius: 5px !important;
    padding: 6px 12px !important;
    color: #ef4444 !important;
    cursor: pointer !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    margin-left: auto !important;
}

#pkgform-gdrive-reset:hover {
    color: #f87171 !important;
}

/* ===== LISTA PLIKÓW ===== */
#pkgform-file-list-wrapper {
    display: none;
    margin-bottom: 12px;
    margin-top: 4px;
}

#pkgform-file-list-wrapper.is-open {
    display: block;
}

#pkgform-file-list {
    list-style: none;
    margin: 0;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 260px;
    min-height: 140px;
    max-height: 600px;
    resize: vertical;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #444444;
    border-radius: 8px;
    background: #202020;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #444 #252528;
}

#pkgform-file-list::-webkit-scrollbar {
    width: 4px;
}

#pkgform-file-list::-webkit-scrollbar-track {
    background: #252528;
    border-radius: 4px;
}

#pkgform-file-list::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

.pricing-file-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: #252528;
    border: 1px solid #333336;
    border-radius: 6px;
    padding: 5px 8px;
    font-size: 11px;
    color: #bbb;
    box-sizing: border-box;
    flex-shrink: 0;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

/* Delikatny podział między plikami "w trakcie" a "przesłane" na liście */
.pricing-file-list-divider {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin: 4px 0;
}

.pricing-file-list-divider::before,
.pricing-file-list-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #333336;
}

.pricing-file-list-divider span {
    padding: 0 8px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    white-space: nowrap;
}

.pricing-file-item.status-uploading {
    border-color: rgba(0, 115, 170, 0.5);
}

.pricing-file-item.status-error,
.pricing-file-item.status-aborted {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.06);
}

.pricing-file-item.status-done {
    border-color: rgba(34, 197, 94, 0.2);
}

.pricing-file-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-file-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    color: #ddd;
    font-weight: 500;
    font-size: 12px;
}

.pricing-file-size {
    flex-shrink: 0;
    color: #888;
    font-size: 10px;
}

.pricing-file-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 16px;
}

.pricing-file-progress-bar {
    flex: 1;
    height: 4px;
    background: #3a3a3d;
    border-radius: 2px;
    overflow: hidden;
}

.pricing-file-progress-fill {
    height: 100%;
    background: #0073aa;
    border-radius: 2px;
    transition: width 0.2s ease;
}

.pricing-file-percent {
    flex-shrink: 0;
    width: 32px;
    text-align: right;
    font-size: 10px;
    color: #9ca3af;
    font-variant-numeric: tabular-nums;
}

.pricing-file-status-error {
    color: #ef4444;
    font-size: 10px;
    font-weight: 600;
}

.pricing-file-status-done {
    color: #22c55e;
    font-size: 10px;
    font-weight: 600;
}

.pricing-file-actions {
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.pricing-file-btn {
    background: #2d2d2d;
    border: 1px solid #444444;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    line-height: 1.6;
}

.pricing-file-btn:disabled {
    color: #333;
    cursor: not-allowed;
}

.pricing-btn-abort {
    color: #f0a500;
    border-color: rgba(240, 165, 0, 0.4);
}

.pricing-btn-abort:hover {
    color: #ffc247;
    background: rgba(240, 165, 0, 0.1);
}

.pricing-btn-retry {
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.4);
}

.pricing-btn-retry:hover {
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.1);
}

.pricing-btn-remove-local,
.pricing-delete-single {
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.4);
}

.pricing-btn-remove-local:hover,
.pricing-delete-single:hover {
    color: #f87171;
    background: rgba(239, 68, 68, 0.1);
}

/* Mini odtwarzacz podglądu (play/pauza + przewijanie) dla przesłanych plików */
.pricing-file-audio {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.pricing-audio-toggle {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #444;
    background: #2d2d2d;
    color: #ffba65;
    font-size: 8px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
}

.pricing-audio-toggle:hover {
    border-color: #ffba65;
    color: #ffcb8a;
}

.pricing-audio-seek {
    flex: 1;
    height: 3px;
    accent-color: #ffba65;
    cursor: pointer;
}

.pricing-audio-time {
    flex-shrink: 0;
    width: 30px;
    text-align: right;
    font-size: 10px;
    color: #888;
    font-variant-numeric: tabular-nums;
}

/* ==================== LINK ZEWNĘTRZNY ==================== */
#pkgform-alternative-link-wrapper {
    margin-top: 0;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px dashed #444;
}

#pkgform-alternative-link-wrapper label {
    display: block;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#pkgform-alt-link {
    width: 100%;
    background: #121212 !important;
    border: 1px solid #353535 !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    color: #fff !important;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#pkgform-alt-link:focus {
    border-color: #ffba65 !important;
    box-shadow: 0 0 10px rgba(255, 186, 101, 0.3) !important;
    background: #181818 !important;
}

#pkgform-alt-link::placeholder {
    color: #555;
    font-style: italic;
}

/* ==================== FORMULARZ KONTAKTOWY ==================== */
.pricing-form {
    margin: 0;
    padding: 0;
}

.pkgform-wrapper .pricing-form input[type="text"],
.pkgform-wrapper .pricing-form input[type="email"],
.pkgform-wrapper .pricing-form input[type="url"],
.pkgform-wrapper .pricing-form textarea {
    display: block !important;
    width: 100% !important;
    padding: 14px !important;
    background-color: #2d2d2d !important;
    border: 2px solid #444444 !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    margin-bottom: 25px !important;
    box-sizing: border-box !important;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.pricing-form input:focus,
.pricing-form textarea:focus {
    outline: none !important;
    border-color: #ffba65 !important;
    box-shadow: 0 0 8px rgba(255, 186, 101, 0.4) !important;
    background-color: #333 !important;
}

.pricing-form textarea {
    min-height: 100px;
    resize: vertical;
}

.pricing-form input:invalid:focus,
.pricing-form textarea:invalid:focus {
    border-color: #ff4d4d !important;
    box-shadow: 0 0 8px rgba(255, 77, 77, 0.4) !important;
}

.consent-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px;
    font-size: 13px;
    color: #ccc;
    margin-bottom: 30px !important;
    cursor: pointer;
    line-height: 1.4;
}

.consent-label input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #ffba65;
}

#pkgform-submit {
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
    padding: 14px 20px;
    background: #ffba65 !important;
    color: #1a1a1a !important;
    border: 1px solid #ffba65 !important;
    border-radius: 8px !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: normal;
    cursor: pointer;
    transition: background 0.3s;
    margin: 0;
}

#pkgform-submit:hover {
    background: #ffcb8a !important;
}

#pkgform-submit:disabled {
    background: #444 !important;
    color: #999 !important;
    cursor: not-allowed;
    opacity: 0.7;
}

/* ==================== KOMUNIKATY ==================== */
#pkgform-msg {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

#pkgform-msg p {
    margin-top: 15px;
    border-radius: 4px;
    text-align: center;
}

/* ==================== RESPONSYWNOŚĆ ==================== */
@media (max-width: 768px) {
    .pkgform-header {
        padding-right: 20px;
        min-height: 0;
    }

    .pkgform-close {
        position: static;
        display: block;
        margin: 0 0 15px auto;
    }

    .pkgform-price-badge {
        position: static;
        display: inline-block;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .pkgform-wrapper {
        padding: 10px;
    }

    .pkgform-box {
        padding: 20px;
        max-height: calc(100vh - 20px);
    }
}

/* ==================== PRZYCISK OTWIERAJĄCY OKNO PAKIETU ==================== */

/*
 * Wygląd przycisku siedzi tutaj, a nie w bloku <style> wklejanym przy każdym
 * pakiecie na stronie: jedna kopia zamiast kilkunastu, więc zmiana koloru to
 * jedno miejsce, a nie objazd po wszystkich podstronach z cennikiem.
 *
 * Ten sam przycisk co „Dalej" w kalkulatorze i w formularzu prostym - klient
 * przechodzi między nimi w jednej sesji.
 */
.pkgform-przycisk-pakietu {
    -webkit-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 14px 20px;
    border: 1px solid #ffba65;
    border-radius: 8px;
    background: #ffba65;
    color: #1a1a1a;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pkgform-przycisk-pakietu:hover,
.pkgform-przycisk-pakietu:focus {
    background: #ffcb8a;
    color: #1a1a1a;
}
