.frc-captcha * {
  /* Mostly a CSS reset so existing website styles don't clash */
  margin: 0;
  padding: 0.25rem;
  border: 0;
  text-align: initial;
  border-radius: px;
  filter: none !important;
  transition: none !important;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  background-color: initial;
  color: var(--si-primary);
}

.frc-captcha {
  position: relative;
  min-width: 250px;
  max-width: 450px;
  border: 1px solid #f4f4f4;
  padding-bottom: 12px;
  background-color: #fff;
}

.frc-captcha b {
  font-weight: bold;
}

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

.frc-icon {
  fill: var(--si-primary);
  stroke: var(--si-primary);
  flex-shrink: 0;
  margin: 8px 8px 0 8px;
}

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

.frc-success .frc-icon {
  animation: frc-fade-in 1s both ease-in;
  fill: var(--si-success);
  stroke: var(--si-success);
}

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

.frc-content > .frc-text {
  color: var(--si-body-color);
}

.frc-banner {
  position: absolute;
  bottom: 0px;
  right: 6px;
  line-height: 1;
}

.frc-banner *,
.frc-banner * b {
  font-size: 10px;
  opacity: 0.8;
  text-decoration: none;
  color: var(--si-body-color);
}

.frc-banner *:hover,
.frc-banner *:hover b {
  text-decoration: underline;
  color: var(--si-primary);
}

.frc-progress {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 3px 0;
  height: 4px;
  border: none;
  background-color: #eee;
  color: var(--si-primary);
  width: 100%;
  transition: all 0.5s linear;
}

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

.frc-progress::-webkit-progress-value {
  background: var(--si-primary);
}

.frc-progress::-moz-progress-bar {
  background: var(--si-primary);
}

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

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

.frc-button:hover {
  text-decoration: underline;
}

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

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

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