﻿#googleSignInBtn {
    position: relative;
    background: white;
    color: #fff;
    background: #e04a39;
    width: 100%;
    border-radius: 4px;
    white-space: nowrap;
}

#googleSignInBtn:hover {
    cursor: pointer;
}

#googleSignInBtn .icon {
    background: url('/Images/icons/login/icon_google.png') center center;
    display: inline-block;
    vertical-align: middle;
    width: 64px;
    height: 64px;
    transform: scale(.5);
    border-radius: 50%;
}

/* 登入中, add signIning class */
#googleSignInBtn .buttonText span {
    display: none;
}
#googleSignInBtn .signIning span {
    display: inline-block;
}

/* loader, boucing ball */
.bounceball {
    position: absolute;
    top: 2px;
    display: inline-block;
    height: 37px;
    width: 15px;
    margin-left: 5px;
}

.bounceball:before {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: bounce 500ms alternate infinite ease;
    animation: bounce 500ms alternate infinite ease;
}

@-webkit-keyframes bounce {
    0% {
        top: 30px;
        height: 5px;
        border-radius: 60px 60px 20px 20px;
        -webkit-transform: scaleX(2);
        transform: scaleX(2);
    }

    35% {
        height: 12px;
        border-radius: 50%;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    100% {
        top: 0;
    }
}

@keyframes bounce {
    0% {
        top: 30px;
        height: 5px;
        border-radius: 60px 60px 20px 20px;
        -webkit-transform: scaleX(2);
        transform: scaleX(2);
    }

    35% {
        height: 12px;
        border-radius: 50%;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    100% {
        top: 0;
    }
}
