.frc-captcha {
    font-size: 12px;
    position: relative;
    min-width: 227px;
    max-width: 350px;
    border: 1px solid;
    border-image:
        linear-gradient(
            77deg,
            rgba(255, 96, 0, .3) 1%,
            rgba(255, 46, 77, .3) 52%,
            rgba(255, 46, 86, .3) 57%,
            rgba(255, 47, 132, .3) 85%,
            rgba(255, 47, 150, .3) 99%
        );
    border-image-slice: 1;
}

.frc-container {
    display: flex;
    align-items: center;
    min-height: 46px;
}

.frc-icon {
    fill: #fff;
    stroke: #fff;
    flex-shrink: 0;
    margin: 0 8px;
}

.frc-icon.frc-warning {
    fill: #c00;
}

.frc-success .frc-icon {
    animation: frc-fade-in 1s both ease-in;
}

.frc-content {
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    margin: 4px 6px 0 0;
    overflow-x: auto;
    flex-grow: 1;
}

.frc-banner {
    display: none;
}

.frc-banner * {
    display: none;
}

.frc-progress {
    appearance: none;
    margin: 3px 0;
    height: 4px;
    border: none;
    background-color: #eee;
    color: #fff;
    width: 100%;
    transition: all .5s linear;
}

.frc-progress::-webkit-progress-bar {
    background: #eee;
}

.frc-progress::-webkit-progress-value {
    background: #fff;
}

.frc-progress::-moz-progress-bar {
    background: #fff;
}

.frc-button {
    cursor: pointer;
    padding: 2px 6px;
    background-color: #f1f1f1;
    border: 1px solid transparent;
    text-align: center;
    font-weight: 600;
    text-transform: none;
}

.frc-button:focus {
    border: 1px solid #333;
}

.frc-button:hover {
    background-color: #fff;
    color: #121a2d;
}

.frc-captcha-solution {
    display: none;
}

.frc-err-url {
    text-decoration: underline;
    font-size: .9em;
}

@keyframes frc-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
