/* ================================================================
   FLOATING AUDIT BUTTON + LABEL
   ================================================================ */

.audit-float-wrap {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition:
        opacity 0.5s ease,
        transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        visibility 0.5s;

    pointer-events: none;
}

.audit-float-wrap.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.audit-float {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;
    padding: 0;
    margin: 0;

    border: 0;
    border-radius: 50%;
    background: #f03a2f !important;
    color: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;

    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.2s ease;
    box-shadow: 0 6px 16px -4px rgba(240, 58, 47, 0.45);
}

.audit-float:focus,
.audit-float:active {
    outline: none;
}

.audit-float::before,
.audit-float::after {
    display: none !important;
    content: none !important;
}

.audit-float__img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    pointer-events: none;
    transition: transform 0.25s ease;
}

.audit-float__img--hover {
    display: none !important;
}

@media (hover: hover) {
    .audit-float:hover {
        background: #ff473c !important;
        box-shadow: 0 8px 20px -4px rgba(240, 58, 47, 0.55);
    }

    .audit-float:hover .audit-float__img {
        transform: scale(1.12) rotate(-6deg);
    }
}

.audit-float:active {
    transform: scale(0.95);
}

.audit-float__label {
    font-family: var(--font-primary, inherit);
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.2;
    text-align: center;
    max-width: 80px;
    white-space: normal;
    word-break: break-word;
    pointer-events: none;
}

/* ================================================================
   POPUP BASE
   ================================================================ */

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

.audit-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s;
}

.audit-popup.is-open {
    opacity: 1;
    visibility: visible;
}

.audit-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.audit-popup__box {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 860px;
    max-height: calc(100dvh - 48px);
    overflow-y: auto;

    padding: 44px 48px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);

    background:
        radial-gradient(ellipse 70% 55% at 50% 0%, rgba(229, 46, 46, 0.18) 0%, rgba(229, 46, 46, 0) 70%),
        linear-gradient(180deg, #121214 0%, #0b0b0c 100%);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
    color: #fff;

    transform: scale(0.94) translateY(12px);
    opacity: 0;
    transition:
        transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1),
        opacity 0.35s ease;

    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}

.audit-popup__box::-webkit-scrollbar {
    width: 6px;
}

.audit-popup__box::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.16);
    border-radius: 999px;
}

.audit-popup.is-open .audit-popup__box {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* ================================================================
   CLOSE BUTTON
   ================================================================ */

.audit-popup__close {
    position: absolute;
    top: 18px;
    right: 18px;

    width: 38px;
    height: 38px;
    padding: 0;
    margin: 0;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03) !important;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.audit-popup__close:focus,
.audit-popup__close:active {
    outline: none;
}

.audit-popup__close:focus-visible {
    box-shadow: 0 0 0 3px rgba(240, 58, 47, 0.18);
}

.audit-popup__close::before,
.audit-popup__close::after {
    display: none !important;
    content: none !important;
}

.audit-popup__close:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06) !important;
    transform: translateY(-1px);
}

.audit-popup__close svg {
    width: 18px;
    height: 18px;
    pointer-events: none;
}

/* ================================================================
   POPUP CONTENT
   ================================================================ */

.audit-popup__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f03a2f;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;
    flex-shrink: 0;
    box-shadow: 0 12px 28px -16px rgba(240, 58, 47, 0.7);
}

.audit-popup__icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.audit-popup__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
    gap: 48px;
    align-items: start;
}

.audit-popup__title {
    margin: 0 0 14px;
    font-family: var(--font-heading, inherit);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: #fff;
}

.audit-popup__text {
    margin: 0 0 20px;
    font-family: var(--font-primary, inherit);
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.6);
}

.audit-popup__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.audit-popup__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.03);

    font-family: var(--font-primary, inherit);
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.audit-popup__badge img {
    width: 12px;
    height: 12px;
    object-fit: contain;
}

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

.audit-popup__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.audit-popup__field {
    position: relative;
    width: 100%;
}

.audit-popup__field input {
    display: block;
    width: 100%;
    height: 50px;
    margin: 0;

    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.035);

    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff;

    padding: 0 18px;
    font-family: var(--font-primary, inherit);
    font-size: 13px;
    font-weight: 500;
    line-height: 50px;

    outline: none;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.audit-popup__field input::placeholder {
    color: rgba(255, 255, 255, 0.42) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.42) !important;
    opacity: 1;
    font-weight: 400;
}

.audit-popup__field input:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.045);
}

.audit-popup__field input:focus {
    border-color: rgba(240, 58, 47, 0.62);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 0 0 3px rgba(240, 58, 47, 0.13);
    outline: none;
}

.audit-popup__field input:-webkit-autofill,
.audit-popup__field input:-webkit-autofill:hover,
.audit-popup__field input:-webkit-autofill:focus {
    border-color: rgba(240, 58, 47, 0.45);
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff;
    box-shadow:
        0 0 0 1000px #111113 inset,
        0 0 0 3px rgba(240, 58, 47, 0.12);
    transition: background-color 9999s ease-in-out 0s;
}

/* ================================================================
   VALIDATION STATES
   ================================================================ */

.audit-popup__field.is-error input,
.audit-popup__field.is-error .iti__tel-input {
    border-color: rgba(255, 87, 87, 0.82) !important;
    background: rgba(28, 0, 0, 0.28) !important;
    box-shadow:
        0 0 0 3px rgba(255, 70, 70, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
}

.audit-popup__error {
    display: flex;
    align-items: flex-start;
    gap: 7px;

    margin-top: 8px;
    color: #ffaaa5;

    font-family: var(--font-primary, inherit);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
}

.audit-popup__error::before {
    content: "!";
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 15px;
    height: 15px;
    margin-top: 1px;
    border-radius: 50%;

    background: rgba(255, 87, 87, 0.18);
    color: #ffaaa5;
    font-size: 10px;
    font-weight: 800;
    flex-shrink: 0;
}

.audit-popup__message {
    width: 100%;
    margin-top: 4px;
    padding: 13px 14px;
    border-radius: 16px;

    font-family: var(--font-primary, inherit);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.42;
}

.audit-popup__message--success {
    color: #d9ffe9;
    background: linear-gradient(135deg, rgba(31, 184, 111, 0.18), rgba(31, 184, 111, 0.08));
    border: 1px solid rgba(31, 184, 111, 0.34);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.audit-popup__message--success::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 19px;
    height: 19px;
    margin-right: 8px;
    border-radius: 50%;

    background: rgba(31, 184, 111, 0.32);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    vertical-align: -2px;
}

.audit-popup__message--error {
    color: #ffd4d1;
    background: linear-gradient(135deg, rgba(240, 58, 47, 0.17), rgba(240, 58, 47, 0.075));
    border: 1px solid rgba(240, 58, 47, 0.32);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.audit-popup__message--error::before {
    content: "!";
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 19px;
    height: 19px;
    margin-right: 8px;
    border-radius: 50%;

    background: rgba(240, 58, 47, 0.32);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    vertical-align: -2px;
}

/* ================================================================
   SUBMIT BUTTON
   ================================================================ */

.audit-popup__submit {
    position: relative;
    overflow: hidden;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 50px;
    padding: 14px 24px;
    margin: 4px 0 0 0;

    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff463b 0%, #e12f24 100%) !important;
    color: #fff !important;

    font-family: var(--font-primary, inherit);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;

    box-shadow: 0 6px 16px -4px rgba(240, 58, 47, 0.45);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        opacity 0.2s ease;
}

.audit-popup__submit span {
    position: relative;
    z-index: 2;
}

.audit-popup__submit:focus,
.audit-popup__submit:active {
    outline: none;
    color: #fff !important;
}

.audit-popup__submit:focus-visible {
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.16),
        0 8px 20px -4px rgba(240, 58, 47, 0.55);
}

.audit-popup__submit::before {
    display: none !important;
    content: none !important;
}

.audit-popup__submit:not(.is-loading)::after {
    display: none !important;
    content: none !important;
}

.audit-popup__submit:disabled {
    cursor: not-allowed;
    opacity: 0.76;
    transform: none !important;
    box-shadow: none !important;
}

.audit-popup__submit.is-loading {
    pointer-events: none;
}

.audit-popup__submit.is-loading span {
    opacity: 0.78;
}

.audit-popup__submit.is-loading::after {
    content: "";
    display: inline-flex !important;

    width: 16px;
    height: 16px;
    margin-left: 10px;
    border-radius: 50%;

    border: 2px solid rgba(255, 255, 255, 0.38);
    border-top-color: #fff;

    animation: auditPopupSpin 0.75s linear infinite;
}

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

@media (hover: hover) {
    .audit-popup__submit:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px -4px rgba(240, 58, 47, 0.55);
        color: #fff !important;
        background: linear-gradient(180deg, #ff5a50 0%, #e73a2f 100%) !important;
    }
}

/* ================================================================
   intl-tel-input INSIDE POPUP
   ================================================================ */

.audit-popup .iti__country,
.audit-popup .iti__selected-country,
.audit-popup .site-prefooter__emoji-flag {
    font-family:
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        "Noto Color Emoji",
        "Twemoji Mozilla",
        "EmojiOne Color",
        "Android Emoji",
        sans-serif;
}

.audit-popup__field--phone .iti {
    width: 100%;
    display: block;
    position: relative;
}

.audit-popup__field--phone .iti__tel-input,
.audit-popup__field--phone input[type="tel"] {
    width: 100% !important;
    height: 50px !important;

    padding-left: 112px !important;
    padding-right: 18px !important;

    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff !important;

    font-family: var(--font-primary, inherit) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 50px !important;

    background: rgba(255, 255, 255, 0.035) !important;
}

.audit-popup__field--phone .iti__tel-input::placeholder,
.audit-popup__field--phone input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, 0.42) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.42) !important;
    opacity: 1 !important;
}

.audit-popup__field--phone .iti__tel-input:focus,
.audit-popup__field--phone input[type="tel"]:focus {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.audit-popup__field--phone .iti__flag {
    display: inline-block !important;
}
.audit-popup__field--phone .iti__country-container {
    left: 5px !important;
    height: 50px;
    display: flex;
    align-items: center;
    z-index: 4;
}

.audit-popup__field--phone .iti__selected-country {
    background: transparent !important;
    border: 0 !important;
    height: 50px;
    padding: 0 10px 0 8px !important;

    display: flex;
    align-items: center;
    gap: 4px;

    border-radius: 12px;
    transition: background-color 0.2s ease;
}

.audit-popup__field--phone .iti__selected-country:hover,
.audit-popup__field--phone .iti__selected-country[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.055) !important;
}

.audit-popup__field--phone .iti__selected-country-primary {
    padding: 0 !important;
    gap: 6px !important;
    background: transparent !important;
}

.audit-popup .site-prefooter__emoji-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    line-height: 1;
    width: 20px;
    height: 20px;

    flex-shrink: 0;
    font-variant-emoji: emoji;
}

.audit-popup__field--phone .iti__selected-dial-code {
    margin-left: 0 !important;
    color: rgba(255, 255, 255, 0.86) !important;

    font-family: var(--font-primary, inherit) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
}

.audit-popup__field--phone .iti__arrow {
    border: 0 !important;
    width: 10px;
    height: 10px;
    margin-left: 4px !important;
    background: none !important;
    position: relative;
}

.audit-popup__field--phone .iti__arrow::after {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 4l3 3 3-3' stroke='%23ffffff' stroke-opacity='0.62' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 10px;
}

.audit-popup__field--phone .iti__country-container::after {
    content: "";
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);

    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.10);
    pointer-events: none;
}

/* dropdown */

.audit-popup__field--phone .iti__dropdown-content,
.audit-popup__field--phone .iti__country-list {
    z-index: 10020 !important;
    min-width: 320px !important;

    background: #111113 !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 16px !important;
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.58),
        inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;

    padding: 7px !important;
    margin-top: 8px !important;

    max-height: 260px !important;
    overflow-y: auto !important;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.16) transparent;
}

.audit-popup__field--phone .iti__country-list::-webkit-scrollbar {
    width: 6px;
}

.audit-popup__field--phone .iti__country-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 4px;
}

.audit-popup__field--phone .iti__search-input {
    width: calc(100% - 4px) !important;
    height: 42px !important;

    background: rgba(255, 255, 255, 0.055) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 12px !important;

    color: #fff !important;
    -webkit-text-fill-color: #fff !important;

    padding: 0 12px !important;
    margin: 3px 2px 7px !important;

    font-family: var(--font-primary, inherit) !important;
    font-size: 14px !important;
    outline: none;
}

.audit-popup__field--phone .iti__search-input::placeholder {
    color: rgba(255, 255, 255, 0.42) !important;
}

.audit-popup__field--phone .iti__country {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 12px !important;
    border-radius: 11px;

    color: rgba(255, 255, 255, 0.88) !important;
    font-family: var(--font-primary, inherit) !important;
    font-size: 14px;

    transition:
        background-color 0.15s ease,
        color 0.15s ease;
}

.audit-popup__field--phone .iti__country:hover,
.audit-popup__field--phone .iti__country.iti__highlight {
    background: rgba(255, 255, 255, 0.075) !important;
}

.audit-popup__field--phone .iti__country-name {
    color: rgba(255, 255, 255, 0.90) !important;
    flex: 1;
    font-weight: 500;
}

.audit-popup__field--phone .iti__dial-code {
    color: rgba(255, 255, 255, 0.50) !important;
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}

.audit-popup__field--phone .iti__divider {
    border-color: rgba(255, 255, 255, 0.07) !important;
    margin: 4px 0 !important;
}

/* visual divider after Poland in priority countries */
.audit-popup__field--phone .iti__country[data-country-code="pl"] {
    position: relative;
    margin-bottom: 9px !important;
}

.audit-popup__field--phone .iti__country[data-country-code="pl"]::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: -6px;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

/* ================================================================
   BODY SCROLL LOCK
   ================================================================ */

body.audit-popup-open {
    overflow: hidden !important;
}

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

@media (max-width: 900px) {
    .audit-popup__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .audit-popup__box {
        padding: 40px 28px 32px;
    }
}

@media (max-width: 768px) {
    .audit-float-wrap {
        right: 16px;
        bottom: 16px;
    }

    .audit-float {
        width: 56px;
        height: 56px;
    }

    .audit-float__img {
        width: 24px;
        height: 24px;
    }

    .audit-float__label {
        font-size: 11px;
        max-width: 70px;
    }

    .audit-popup {
        padding: 12px;
        align-items: center;
    }

    .audit-popup__box {
        padding: 36px 20px 24px;
        border-radius: 20px;
        max-height: calc(100dvh - 24px);
    }

    .audit-popup__title {
        font-size: 20px;
    }

    .audit-popup__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
    }

    .audit-popup__icon img {
        width: 20px;
        height: 20px;
    }

    .audit-popup__close {
        top: 12px;
        right: 12px;
        width: 34px;
        height: 34px;
    }

    .audit-popup__field input {
        height: 50px;
        line-height: 50px;
    }

    .audit-popup__field--phone .iti__tel-input,
    .audit-popup__field--phone input[type="tel"] {
        height: 50px !important;
        line-height: 50px !important;
        padding-left: 110px !important;
        padding-right: 16px !important;
    }

    .audit-popup__field--phone .iti__country-container,
    .audit-popup__field--phone .iti__selected-country {
        height: 50px;
    }

    .audit-popup__field--phone .iti__dropdown-content,
    .audit-popup__field--phone .iti__country-list {
        min-width: min(320px, calc(100vw - 48px)) !important;
        max-width: calc(100vw - 48px) !important;
    }
}

@media (max-width: 380px) {
    .audit-popup__field--phone .iti__tel-input,
    .audit-popup__field--phone input[type="tel"] {
        padding-left: 104px !important;
    }

    .audit-popup__field--phone .iti__selected-country {
        padding-left: 7px !important;
        padding-right: 7px !important;
    }

    .audit-popup .site-prefooter__emoji-flag {
        width: 19px;
        height: 19px;
        font-size: 17px;
    }

    .audit-popup__field--phone .iti__selected-dial-code {
        font-size: 13px !important;
    }
}





/* =========================================================
   iOS Safari / Chrome input zoom fix
   iPhone автоматически зумит input, если font-size < 16px
   ========================================================= */

@media (max-width: 768px) {
    input,
    textarea,
    select {
        font-size: 13px !important;
    }

    .site-prefooter__field input,
    .site-prefooter__field--phone .iti__tel-input,
    .site-prefooter__field--phone input[type="tel"],
    .site-prefooter__field--phone .iti__search-input,
    .audit-popup__field input,
    .audit-popup__field--phone .iti__tel-input,
    .audit-popup__field--phone input[type="tel"],
    .audit-popup__field--phone .iti__search-input {
        font-size: 13px !important;
    }
    .audit-popup__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.03);

    font-family: var(--font-primary, inherit);
    font-size: 9px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}
}


