/* Friendly recaptcha */
.frc-captcha .tooltip {
    top: 8px !important;
    left: -8px !important;
}

.frc-captcha * {
    /* Mostly a CSS reset so existing website styles don't clash */
    margin: 0;
    padding: 0;
    border: 0;
    text-align: initial;
    filter: none !important;
    transition: none !important;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
    background-color: initial;
}
.frc-captcha.enabled {
    background-color: transparent;
    opacity: 1;
    cursor: pointer;
}
#login-header-form .frc-captcha {
    opacity: 0.5;
    position: relative;
    border: none;
    overflow: hidden!important;
    border-radius: 100%;
    font-size: 0.8em;
    color: #fff;
    float: inherit;
    margin-right: calc(1.25rem / 2);
}

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

#login-header-form .frc-icon {
    fill: #ffffff;
    stroke: #ffffff;
    width: 32px;
}

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

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

#login-header-form .frc-container {
    display: block;
    background-color: initial;
    border-radius: 0;
    padding: 0;
    margin-top: 5px;
}

.frc-container {
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    font-size: 0.75rem;
    color: #666666;
    border-radius: 20px;
    padding: .3125rem 1rem;
}

.frc-content {
    flex-grow: 1;
    text-align: center;
}

.frc-icon {
    fill: #666666;
    stroke: #666666;
    width: 22px;
    margin: 0 5px 0 0;
}

.frc-banner * {
    font-size: 10px;
    opacity: 0.8;
    text-decoration: none;
}
.frc-progress {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 3px 0;
    height: 4px;
    border: none;
    background-color: #eee;
    color: #222;
    width: 100%;
    transition: all 0.5s linear;
}
.frc-err-url, .frc-captcha-solution,
.frc-progress, .frc-banner, .frc-button,
#login-header-form .frc-content {
    display: none;
}

/* Dark theme */

.dark.frc-captcha {
    color: #fff;
    background-color: #222;
    border-color: #333;
}

.dark.frc-captcha * {
    color: #fff;
}

.dark.frc-captcha button {
    background-color: #444;
}

.dark .frc-icon {
    fill: #fff;
    stroke: #fff;
}

.dark .frc-progress {
    background-color: #444;
}

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

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

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

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

.frc-captcha .tooltip.show {
    opacity: 0 !important;
}
.d-sm-flex {
    display: flex;
}

/*captcha button is to close of the submit button in mobile screen*/
@media screen and (max-width: 768px) {
    .frc-captcha {
        padding-top: 10px;
    }
}

@media screen and (min-width: 767px) {
    .frc-captcha .tooltip.show {
        opacity: .9 !important;
    }
    .no-desktop {
        display: none;
    }
}