/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.dsp-btn-google-login {
	margin-bottom: 10px;
	width: 100%;
	height: 44px;
	background-size: 100%;
	background: #4285F4;
	text-align: center;
	vertical-align: middle;
	line-height: 44px;
	cursor: pointer;
	text-transform: uppercase;
}

.dsp-btn-google-login .title {
    color: #fff;
    line-height: 30px;
    padding: 0 10px;
    font-size: 16px;
    letter-spacing: 0.6px;
}

.dsp-btn-google-login .fa {
    color: #fff;
    line-height: 30px;
    padding: 0 10px;
    font-size: 16px;
    letter-spacing: 0.6px;
}
/* 
.dsp-btn-google-login {
	content:url('/wp-content/plugins/dsp-google-login-addons/public/assets/google_login.png');
} */

.google-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

.dsp-google-login-loader {
    display: none;
}

@keyframes google-pulse {
    0% {
        -webkit-transform: rotate(
                0deg
        );
        transform: rotate(
                0deg
        );
    }
    100% {
        -webkit-transform: rotate(
                359deg
        );
        transform: rotate(
                359deg
        );
    }
}