<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * QCaptcha is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2 of the License, or
 * any later version.
 *
 * QCaptcha is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with QCaptcha. If not, see &lt;http://www.gnu.org/licenses/&gt;.
 *
 * @package    QCaptcha
 * @author     Timo KÃ¶ssler (https://timokoessler.de)
 * @since      1.0.0
 * @license    GPL-2.0+
 * @copyright  Copyright (c) 2019, Timo KÃ¶ssler
 */

#qcaptcha {
    color: #000;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 10px;
}

#qcaptcha, #qcaptcha *, #qcaptcha *:before, #qcaptcha *:after {
    box-sizing: border-box;
  }

.qcaptcha-question {
    font-size: 18px;
    line-height: 1.2;
}

.qcaptcha-answer {
   font-size: 20px !important;
   height: 44px !important;
   background: url(../img/qcaptcha.png) no-repeat 5px 0px !important;
   background-size: 40px !important;
   text-indent: 42px;
   margin-top: 6px !important;
}

.qcaptcha label {
    font-size: 14px;
    margin-top: 10px;
    color: #444;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

.qcaptcha-loading {
    display: inline-block;
    width: 50px !important;
    height: 50px;
    border: 3px solid #2471a3;
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
  }
  
  @keyframes spin {
    to { -webkit-transform: rotate(360deg); }
  }
  @-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
  }</pre></body></html>