.circle-loader {
    margin-bottom: 3.5em;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-left-color: #5cb85c;
    animation: loader-spin 1.2s infinite linear;
    position: relative;
    display: inline-block;
    vertical-align: top;
    border-radius: 50%;
    width: 7em;
    height: 7em;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.load-complete {
    -webkit-animation: none;
    animation: none;
    border-color: #5cb85c;
    transition: border 500ms ease-out;
}

.load-complete.error {
    border-color: #caa933;
}

.checkmark,
.errormark {
    display: none;
}

.checkmark.draw:after {
    animation-duration: 800ms;
    animation-timing-function: ease;
    animation-name: checkmark;
    transform: scaleX(-1) rotate(135deg);
}

.errormark.draw:after {
    transform: scaleX(-1) rotate(136deg) !important;
}

.errormark.draw:before {
    transform: scaleX(-1) rotate(-225deg) !important;
}

.errormark:after,
.errormark:before,
.checkmark:after {
    opacity: 1;
    position: absolute;
    content: "";
    transform-origin: left top;
    width: 1.75em;
    height: 1.75em;
    height: 1.75em;
}

.checkmark:after {
    height: 3.5em;
    border-right: 3px solid #5cb85c;
    border-top: 3px solid #5cb85c;
    left: 1.75em;
    top: 3.5em;
}

.errormark:after {
    left: 35px;
    top: 75px;
    border-bottom: 3px solid #caa933;
    border-left: 3px solid #caa933;
}

.errormark:before {
    left: 35px;
    top: 2.5em;
    border-top: 3px solid #caa933;
    border-right: 3px solid #caa933;
}

.errorhtml {
    position: absolute;
    left: 0;
    right: 0;
    top: 157px;
    bottom: 0;
    height: 20px;
    margin: auto;
    text-align: center;
}

#ucx-mail-loading {
    position: absolute;
    top: 300px;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: .5s all
}

#ucx-mail-loading.active {
    opacity: 1;
}

.ucx-captcha {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    margin-top: 25px;
}
.ucx-captcha p {
    margin-top: 4px;
    margin-right: 10px;
}

.ucx-captcha img {
    width: 100px;
    height: 35px;
    border-radius: 5px;
    margin-right: 10px;
}
.ucx-captcha a {
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    float: left;
    margin-top: 5px;
}

@keyframes loader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }
    20% {
        height: 0;
        width: 1.75em;
        opacity: 1;
    }
    40% {
        height: 3.5em;
        width: 1.75em;
        opacity: 1;
    }
    100% {
        height: 3.5em;
        width: 1.75em;
        opacity: 1;
    }
}