/**
 * Sprout Forms Google reCAPTCHA plugin for Craft CMS
 *
 * Sprout Forms Google reCAPTCHA CSS
 *
 * @author    Piccirilli Dorsey, Inc. (Nicholas O'Donnell)
 * @copyright Copyright (c) 2016 Piccirilli Dorsey, Inc. (Nicholas O'Donnell)
 * @link      http://picdorsey.com
 * @package   SproutFormsGoogleRecaptcha
 * @since     2.0.1
 */


.g-recaptcha {
    position: relative;

    display: block;
    height: 78px;
    width: 303px;
    overflow: hidden;

    background-color: #f9f9f9;
    border: 1px solid #d3d3d3;
}

.g-recaptcha:before {
    content: '';

    position: absolute;
    top: -250px;
    left: -600px;

    display: block;
    width: 500px;
    height: 500px;


    background: rgba(0,0,0,0);
    background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.04) 50%, rgba(0,0,0,0) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,0,0,0)), color-stop(50%, rgba(0,0,0,0.04)), color-stop(100%, rgba(0,0,0,0)));
    background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.04) 50%, rgba(0,0,0,0) 100%);
    background: -o-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.04) 50%, rgba(0,0,0,0) 100%);
    background: -ms-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.04) 50%, rgba(0,0,0,0) 100%);
    background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.04) 50%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=1 );

    -ms-transform: rotate(35deg);
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);

    -webkit-animation-name: moving-gradient;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
}

.g-recaptcha div {
    position: absolute;
    top: 0;
    left: 0px;

    display: block;
    width: 100%;
    height: 100%;
}

@-webkit-keyframes moving-gradient {
    0% {
        left: -600px;
    }

    100% {
        left: 150%;
    }
}
@-moz-keyframes moving-gradient {
    0% {
        left: -600px;
    }

    100% {
        left: 150%;
    }
}
@keyframes moving-gradient {
    0% {
        left: -600px;
    }

    100% {
        left: 150%;
    }
}
