.fade {
    /* content: ''; */
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000000b0;
    z-index: 99;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.recaptcha_images img {
    display: block;
    margin: auto;
    width: 32px;
    height: 32px;
}

.recaptcha_images span {
    display: block;
    color: #555;
    cursor: default;
    font-family: Roboto, sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 10px;
    margin-top: 5px;
    text-align: center;
}

.recaptcha_images {
    text-align: center;
}

.recaptcha-wrap {
    display: flex;
    width: 90%;
    max-width: 300px;
    background: #f9f9f9;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    border-radius: 3px;
    /* top: 20%; */
    /* position: relative; */
    padding: 10px;
    box-sizing: border-box;
}

.recaptcha_text {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    font-family: Roboto,  sans-serif;
    margin-left: 10px;
    margin-bottom: 0;
}

.recaptcha-wrap-left,
.recaptcha-left-block {
    display: flex;
    align-items: center;
}

.recaptcha-check {
    stroke-dashArray: 340;
    stroke-dashoffset: 340;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-duration: 0.6s;
    animation-delay: .1s;
    animation-name: check;
    width: 60px;
    height: 60px;
}

.recaptcha-check svg {
    width: 60px;
    height: 60px;
    transform: rotate( 90deg);
}

@keyframes check {
    0% {
        stroke-dashArray: 340;
        stroke-dashoffset: 340;
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    100% {
        stroke-dashOffset: 94;
        opacity: 1;
    }
}

.recaptcha-checkbox {
    border: none;
    font-size: 1px;
    height: 30px;
    width: 30px;
    overflow: visible;
    outline: 0;
    vertical-align: text-bottom;
    border-radius: 2px;
    background-color: #fff;
    border: 2px solid #c1c1c1;
    box-sizing: border-box;
    cursor: pointer ;
}

.spinner {
    animation: rotator 1.4s linear infinite;
    width: 30px;
}

@keyframes rotator {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(270deg);
    }
}

.recaptcha-left-block {
    width: 30px;
    height: 30px;
}

.path {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    transform-origin: center;
    animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

.recaptcha-spinner,
.recaptcha-check {
    display: none;
}

.recaptcha-check {
    position: absolute;
    left: -4px;
    top: 17%;
}

.recaptcha-check img {
    width: 30px;
    height: 30px;
}

@keyframes colors {
    0% {
        stroke: #4d90fe;
    }
    25% {
        stroke: #4d90fe;
    }
    50% {
        stroke: #4d90fe;
    }
    75% {
        stroke: #4d90fe;
    }
    100% {
        stroke: #4d90fe;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }
    50% {
        stroke-dashoffset: 46.75;
        transform: rotate(135deg);
    }
    100% {
        stroke-dashoffset: 187;
        transform: rotate(450deg);
    }
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

img {
    vertical-align: middle;
    width: 60%;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}
.recaptcha-bottom {
    display: flex;
    max-width: 300px;
    text-align: center;
    color: #ffffff;
    background-color: #fc7979bd;
    border-radius: 3px;
    padding: 7px;
    box-sizing: border-box;
    line-height: normal;
    font-size: 12px;
    /* border: 2px solid #F44336; */
    font-family: 'Roboto';
}