.jlg-front-bar {
    overflow: hidden;
    margin: 12px 0 16px;
    border-radius: 6px;
    background: #20a7b8;
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .08);
}

.jlg-front-bar-in-paybox {
    clear: both;
    width: 100%;
    margin: 14px 0 0;
    box-shadow: none;
}

.jlg-front-bar-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 42px;
    padding: 8px 14px;
    text-align: center;
    flex-wrap: wrap;
}

.jlg-front-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    font-weight: 700;
}

.jlg-front-message {
    color: #fff;
    font-weight: 700;
}

.jlg-front-detail-list {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.jlg-front-detail {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.jlg-front-detail-failed {
    background: rgba(255, 255, 255, .22);
}

.jlg-front-time {
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
}

.jlg-front-recheck {
    min-height: 28px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 4px;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    cursor: pointer;
    font-weight: 700;
}

.jlg-front-recheck:hover {
    background: rgba(255, 255, 255, .24);
    color: #fff;
}

.jlg-front-bar-normal {
    background: #20a7b8;
}

.jlg-front-bar-failed {
    background: #d63638;
}

.jlg-front-bar-warning,
.jlg-front-bar-pending {
    background: #1684f7;
}

.jlg-front-bar-checking .jlg-front-icon {
    animation: jlg-front-pulse 1s linear infinite;
}

@keyframes jlg-front-pulse {
    0% { opacity: .45; }
    50% { opacity: 1; }
    100% { opacity: .45; }
}
