.fxgp-avs-verification-bar {
    --fxgp-avs-bar-bg: var(--bg-color, #000000);
    --fxgp-avs-bar-text: var(--text-default-color, #e2eef3);
    --fxgp-avs-bar-primary: var(--primary-color, #00a980);
    --fxgp-avs-bar-primary-hover: var(--primary-color-hover, #00bd90);
    align-items: center;
    background: color-mix(in oklab, var(--fxgp-avs-bar-bg) 88%, transparent);
    box-sizing: border-box;
    color: var(--fxgp-avs-bar-text);
    display: flex;
    font-family: Lato, "Helvetica Neue", Arial, sans-serif;
    gap: 16px;
    justify-content: center;
    left: 0;
    min-height: 84px;
    padding: 24px 50px;
    position: sticky;
    right: 0;
    bottom: 0;
    z-index: 99998;
}

.fxgp-avs-verification-bar.is-hidden {
    display: none;
}

.fxgp-avs-verification-bar__content {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: center;
    min-width: 0;
}

.fxgp-avs-verification-bar__badge {
    align-items: center;
    background: var(--fxgp-avs-bar-primary);
    border-radius: 50%;
    color: var(--fxgp-avs-bar-bg);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 700;
    height: 37px;
    justify-content: center;
    line-height: 1;
    width: 37px;
}

.fxgp-avs-verification-bar__message {
    color: var(--fxgp-avs-bar-text);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

.fxgp-avs-verification-bar__divider {
    background: var(--border-color,rgba(226, 238, 243, 0.45));
    display: block;
    flex: 0 0 auto;
    height: 22px;
    width: 1px;
}

.fxgp-avs-verification-bar__button {
    align-items: center;
    background: var(--fxgp-avs-bar-primary);
    border: 0;
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box;
    color: var(--fxgp-avs-bar-text);
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    line-height: 1;
    min-height: 30px;
    padding: 8px 19px;
    text-decoration: none;
    white-space: nowrap;
}

.fxgp-avs-verification-bar__button:hover,
.fxgp-avs-verification-bar__button:focus {
    background: var(--fxgp-avs-bar-primary-hover);
    color: var(--fxgp-avs-bar-text);
    text-decoration: none;
}

.fxgp-avs-verification-bar__button:focus-visible,
.fxgp-avs-verification-bar__close:focus-visible {
    outline: 2px solid var(--fxgp-avs-bar-text);
    outline-offset: 3px;
}

.fxgp-avs-verification-bar__button.is-disabled,
.fxgp-avs-verification-bar__button:disabled {
    cursor: wait;
    opacity: 0.7;
}

.fxgp-avs-verification-bar__check {
    border-bottom: 2px solid currentColor;
    border-left: 2px solid currentColor;
    display: block;
    height: 5px;
    transform: rotate(-45deg) translateY(-1px);
    width: 10px;
}

.fxgp-avs-verification-bar__status {
    color: var(--fxgp-avs-bar-text);
    font-size: 12px;
    line-height: 1.2;
}

.fxgp-avs-verification-bar__status.is-error {
    color: var(--error-color, #ff9aa2);
}

.fxgp-avs-verification-bar__status.is-success {
    color: var(--success-color, #7ff0cf);
}

.fxgp-avs-verification-bar__close {
    align-items: center;
    background: transparent;
    border: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-flex;
    height: 28px;
    justify-content: center;
    padding: 0;
    position: absolute;
    right: 16px;
    top: 12px;
    width: 28px;
}

.fxgp-avs-verification-bar__close span,
.fxgp-avs-verification-bar__close span::after {
    background: var(--fxgp-avs-bar-text);
    border-radius: 1px;
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    width: 14px;
}

.fxgp-avs-verification-bar__close span {
    transform: rotate(45deg);
}

.fxgp-avs-verification-bar__close span::after {
    transform: rotate(90deg);
}

@media (max-width: 720px) {
    .fxgp-avs-verification-bar {
        align-items: stretch;
        min-height: 0;
        padding: 18px 46px 18px 18px;
    }

    .fxgp-avs-verification-bar__content {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: flex-start;
        width: 100%;
    }

    .fxgp-avs-verification-bar__message {
        flex: 1 1 190px;
        line-height: 1.25;
        text-align: left;
        white-space: normal;
    }

    .fxgp-avs-verification-bar__divider {
        display: none;
    }

    .fxgp-avs-verification-bar__button {
        flex: 1 0 100%;
        min-height: 36px;
    }
}
