/* Source common/css/styles/friendly_captcha/friendly_captcha.scss */

.frc-captcha {
  color: #fff;
  margin-bottom: 1.5em;
}
.frc-captcha .frc-container svg {
  width: 3.125rem;
  height: 3.125rem;
  margin-right: 0.9375rem;
}
.frc-captcha .frc-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.frc-captcha button {
  display: none;
}
.frc-captcha .frc-banner {
  display: none;
}
.frc-captcha .frc-progress {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0.1875rem 0;
  height: 0.25rem;
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 100%;
  transition: all 0.5s linear;
}
.frc-captcha .frc-progress::-webkit-progress-bar {
  background: rgba(255, 255, 255, 0.2);
}
.frc-captcha .frc-progress::-webkit-progress-value {
  background: #fff;
}
.frc-captcha .frc-progress::-moz-progress-bar {
  background: #fff;
}
.frc-captcha .frc-icon {
  fill: #fff;
  stroke: #fff;
}
.frc-captcha .frc-success .frc-icon {
  fill: #fff;
  stroke: #fff;
}
.frc-captcha .frc-icon.frc-warning {
  fill: #ff0000;
  stroke: #ff0000;
}

