/**
 * Instagur — professional UI (svetla tema)
 */

:root {
    --bg-page: #f4f6f9;
    --bg-white: #ffffff;
    --ink: #0f172a;
    --ink-muted: #475569;
    --ink-soft: #64748b;
    --border: #e2e8f0;
    --border-strong: #cbd5e1;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-muted: #dbeafe;
    --danger: #dc2626;
    --danger-bg: #fef2f2;
    --surface-muted: #f8fafc;
    --code-bg: #f1f5f9;
    --code-ink: #334155;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
    --hero-gradient: linear-gradient(125deg, #0c4a6e 0%, #1d4ed8 42%, #5b21b6 88%);
    --hero-accent: linear-gradient(90deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg-page);
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

code {
    font-size: 0.875em;
    font-family: ui-monospace, monospace;
    background: var(--code-bg);
    padding: 0.12em 0.4em;
    border-radius: 6px;
    border: 1px solid var(--border-strong);
    color: var(--code-ink);
}

/* —— Header —— */

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem clamp(1rem, 4vw, 2rem);
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
}

.site-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--ink);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.site-header__brand:hover {
    color: var(--accent);
    text-decoration: none;
}

.site-header__mark {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--hero-gradient);
    box-shadow: var(--shadow-sm);
}

.site-header__tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
}

/* —— Hero —— */

.hero {
    position: relative;
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 7vw, 5rem);
    background: var(--hero-gradient);
    overflow: hidden;
}

.hero__glow {
    position: absolute;
    inset: -40% -20% auto;
    height: 80%;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(56, 189, 248, 0.35), transparent 70%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(1.5rem, 4vw, 2.25rem);
}

.hero__copy {
    color: #fff;
    padding-top: 0.25rem;
}

.hero__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.85;
}

.hero__title {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.hero__lead {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    opacity: 0.92;
    max-width: 36rem;
}

.hero__lead strong {
    font-weight: 700;
    opacity: 1;
}

.results-anchor {
    display: none;
}

.results-anchor:has(#panel-result:not([hidden])) {
    display: block;
    padding: 0 clamp(1rem, 4vw, 2rem) 2rem;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

.results-anchor__inner {
    max-width: 1120px;
    margin: 0 auto;
}

.card--wide {
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    padding: 1.5rem clamp(1rem, 3vw, 1.75rem);
}

.hero__stack {
    max-width: 720px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* —— Cards & panels —— */

.card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.4rem;
}

.card--elevated {
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.2);
}

.card__title {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
}

.card__title--inline {
    margin: 0;
}

.card__title--error {
    color: var(--danger);
}

.card__hint {
    margin: 0 0 1.1rem;
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.5;
}

.resolve-flash {
    margin: 0 0 1rem;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-sm, 8px);
    background: #fff;
    border: 1px solid var(--border, #e2e8f0);
    border-left: 4px solid var(--danger, #dc2626);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    color: var(--ink, #0f172a);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.45;
}

.panel--form .card__title {
    margin-bottom: 0.35rem;
}

/* —— Form —— */

.form--hero {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 520px) {
    .form--hero {
        flex-direction: row;
        align-items: stretch;
    }

    .form__field {
        flex: 1;
        min-width: 0;
    }

    .btn--hero {
        flex-shrink: 0;
        align-self: stretch;
    }
}

.form__field {
    width: 100%;
}

.input,
.input--hero {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-strong);
    background: var(--surface-muted);
    color: var(--ink);
    font-size: 0.9375rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.input:focus,
.input--hero:focus {
    border-color: var(--accent);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px var(--accent-muted);
}

.input::placeholder,
.input--hero::placeholder {
    color: var(--ink-soft);
}

.btn {
    cursor: pointer;
    border: none;
    border-radius: var(--radius);
    padding: 0.85rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    font-family: inherit;
    transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease, opacity 0.15s ease;
}

.btn:active {
    transform: scale(0.98);
}

.btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.btn--primary {
    color: #fff;
    background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.8125rem;
}

.btn--primary:hover:not(:disabled) {
    background: linear-gradient(180deg, #f87171 0%, #ef4444 100%);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn--hero {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
    min-height: 48px;
}

.btn--ghost {
    background: var(--bg-white);
    color: var(--ink);
    border: 1px solid var(--border-strong);
    font-weight: 600;
}

.btn--ghost:hover {
    background: var(--surface-muted);
    border-color: var(--ink-soft);
}

.btn--download {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-top: calc(1.45rem + 20px);
    padding: 1.05rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-hover) 100%);
    border: none;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
    font-family: inherit;
}

.btn--download:hover {
    color: #fff;
    background: linear-gradient(180deg, #3b82f6 0%, var(--accent) 100%);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.45);
    text-decoration: none;
}

/* —— Status / error —— */

.panel--status {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 140px;
    gap: 1rem;
}

.status-text {
    margin: 0;
    color: var(--ink-muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    animation: spin 0.75s linear infinite;
}

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

.fetch-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.48);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.fetch-overlay[hidden] {
    display: none !important;
}

.fetch-overlay__card {
    max-width: 22rem;
    width: 100%;
    padding: 2rem 1.75rem;
    border-radius: 16px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
    text-align: center;
    animation: fetch-overlay-in 0.28s ease-out;
}

@keyframes fetch-overlay-in {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(8px);
    }

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

.fetch-overlay__spinner {
    margin: 0 auto 1.25rem;
}

.fetch-overlay__title {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.fetch-overlay__hint {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--ink-muted);
    font-weight: 500;
}

.error-message {
    margin: 0 0 1rem;
    color: var(--ink-muted);
    font-size: 0.9375rem;
    line-height: 1.55;
}

/* —— Result —— */

.result-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    margin-bottom: 0.5rem;
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.source-line {
    margin: 0 0 1.15rem;
    font-size: 0.8125rem;
    color: var(--ink-soft);
    word-break: break-all;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .media-grid--many {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .media-grid--many {
        grid-template-columns: repeat(3, 1fr);
    }
}

.media-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.85rem;
    box-shadow: var(--shadow-sm);
}

.media-card__index {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.media-preview {
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #e2e8f0;
    aspect-ratio: 9 / 16;
    max-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.media-preview--square {
    aspect-ratio: 1;
    max-height: 420px;
}

.media-preview img,
.media-preview video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.toolbar .btn {
    flex: 1 1 auto;
    min-width: 140px;
}

/* —— Content sections —— */

.content {
    flex: 1;
    max-width: 1120px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2rem);
    width: 100%;
}

.section {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__h {
    margin: 0 0 1rem;
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.section__h--center {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section__p {
    margin: 0 0 1rem;
    color: var(--ink-muted);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 52rem;
}

.section__p:last-child {
    margin-bottom: 0;
}

.section--split {
    display: grid;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

@media (min-width: 800px) {
    .section--split {
        grid-template-columns: 1.2fr 1fr;
        align-items: start;
    }
}

.section__checks {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.section__checks li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9375rem;
    color: var(--ink-muted);
    line-height: 1.5;
}

.section__checks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.section--howto {
    padding: 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #312e81 100%);
    border-radius: var(--radius-lg);
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.section--howto .section__h {
    color: #fff;
}

.howto {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.howto__step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.howto__num {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
}

.howto__title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.howto__text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    opacity: 0.88;
}

.faq {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq__item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq__q {
    padding: 1rem 1.15rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq__q::-webkit-details-marker {
    display: none;
}

.faq__q::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--ink-soft);
    border-bottom: 2px solid var(--ink-soft);
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq__item[open] .faq__q::after {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.faq__a {
    margin: 0;
    padding: 0 1.15rem 1.1rem;
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.6;
    border-top: 1px solid var(--border);
    padding-top: 0.85rem;
}

/* —— Footer —— */

.site-footer {
    margin-top: auto;
    padding: 1.5rem clamp(1rem, 4vw, 2rem) 2rem;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--ink-soft);
    font-weight: 500;
    border-top: 1px solid var(--border);
    background: var(--bg-white);
}

.site-footer__legal {
    margin: 1.25rem 0 0;
}

/* —— SEO landing (seo_landing.php) —— */

.seo-landing-body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font, "Plus Jakarta Sans", system-ui, sans-serif);
    background: var(--bg-page, #f4f6f9);
    color: var(--ink, #0f172a);
}

.seo-landing {
    max-width: 880px;
    margin: 0 auto;
    padding: 1rem clamp(1rem, 3vw, 1.5rem) 2.5rem;
}

.seo-landing__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border, #e2e8f0);
    margin-bottom: 1rem;
}

.seo-landing__brand {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--ink, #0f172a);
    text-decoration: none;
}

.seo-landing__brand:hover {
    color: var(--accent, #2563eb);
}

.seo-landing__tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-soft, #64748b);
}

.seo-landing__breadcrumb {
    font-size: 0.8125rem;
    color: var(--ink-muted, #475569);
    margin-bottom: 1.25rem;
}

.seo-landing__breadcrumb a {
    color: var(--accent, #2563eb);
    font-weight: 600;
    text-decoration: none;
}

.seo-landing__breadcrumb a:hover {
    text-decoration: underline;
}

.seo-landing__bc-sep {
    margin: 0 0.35rem;
    opacity: 0.5;
}

.seo-landing__h1 {
    font-size: clamp(1.35rem, 4vw, 1.85rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.seo-landing__meta {
    font-size: 0.875rem;
    color: var(--ink-soft, #64748b);
    margin: 0 0 1.5rem;
}

.seo-landing__h2 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.seo-landing__grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .seo-landing__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.seo-landing__card {
    background: var(--bg-white, #fff);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 12px;
    padding: 0.9rem;
    box-shadow: var(--shadow-sm, 0 1px 2px rgba(15, 23, 42, 0.06));
}

.seo-landing__card-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-soft, #64748b);
    display: block;
    margin-bottom: 0.5rem;
}

.seo-landing__preview-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #e2e8f0;
}

.seo-landing__preview-wrap--video {
    aspect-ratio: 9 / 16;
    max-height: 480px;
    width: 100%;
    margin-inline: auto;
}

.seo-landing__preview-wrap--image {
    width: 100%;
}

.seo-landing__media-el {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    border-radius: 8px;
    background: #e2e8f0;
}

.seo-landing__preview-wrap--video .seo-landing__media-el {
    height: 100%;
    max-height: 480px;
    object-fit: contain;
}

.seo-landing__preview-wrap--image .seo-landing__media-el {
    height: auto;
    max-width: 100%;
}

.seo-landing__media-skeleton {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(
        125deg,
        #e2e8f0 0%,
        #f8fafc 40%,
        #e2e8f0 80%,
        #cbd5e1 100%
    );
    background-size: 240% 240%;
    animation: seo-landing-shimmer 2.2s ease-in-out infinite;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.seo-landing__preview-wrap.is-loaded .seo-landing__media-skeleton {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes seo-landing-shimmer {
    0%,
    100% {
        background-position: 0% 40%;
    }

    50% {
        background-position: 100% 60%;
    }
}

.seo-landing__skeleton-pulse {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid rgba(37, 99, 235, 0.2);
    border-top-color: var(--accent, #2563eb);
    animation: spin 0.8s linear infinite;
}

.seo-landing__skeleton-text {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-soft, #64748b);
    max-width: 12rem;
    line-height: 1.4;
}

@media (prefers-reduced-motion: reduce) {
    .seo-landing__media-skeleton {
        animation: none;
        background: #e2e8f0;
    }

    .seo-landing__skeleton-pulse {
        animation: none;
        border-color: rgba(37, 99, 235, 0.45);
    }
}

.seo-landing__card .seo-landing__another {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0.65rem;
    text-align: center;
    text-decoration: none;
}

.seo-landing__footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border, #e2e8f0);
    font-size: 0.875rem;
    text-align: center;
}

.seo-landing__footer a {
    font-weight: 700;
    color: var(--accent, #2563eb);
}

.seo-landing__fine {
    margin: 0.75rem 0 0;
    font-size: 0.75rem;
    color: var(--ink-soft, #64748b);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

[hidden] {
    display: none !important;
}
