.loading span {
    animation: loading 1s infinite alternate;
    background: #007DB6;
    border-radius: .6em;
    display: inline-block;
    height: .6em;
    margin: .19em;
    vertical-align: middle;
    width: .6em;
}

/*
 * Dots Colors
 * Smarter targeting vs nth-of-type?
 */



.loading span:nth-of-type(2) {
    animation-delay: 0.2s;
    background: #008FB2;
}

.loading span:nth-of-type(3) {
    animation-delay: 0.4s;
    background: #009B9E;
}

.loading span:nth-of-type(4) {
    animation-delay: 0.6s;
    background: #00A77D;
}

.loading span:nth-of-type(5) {
    animation-delay: 0.8s;
    background: #00B247;
}

.loading span:nth-of-type(6) {
    animation-delay: 1.0s;
    background: #5AB027;
}

.loading span:nth-of-type(7) {
    animation-delay: 1.2s;
    background: #A0B61E;
}

/*
 * Animation keyframes
 * Use transition opacity instead of keyframes?
 */

@keyframes loading {
    0% { opacity: 0; }

    100% { opacity: 1; }
}



.button-17 {
    -webkit-user-select: none;
    align-items: center;
    appearance: none;
    background-color: #fff;
    border-radius: 24px;
    border-style: none;
    box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px, rgba(0, 0, 0, .14) 0 6px 10px 0, rgba(0, 0, 0, .12) 0 1px 18px 0;
    box-sizing: border-box;
    color: #3c4043;
    cursor: pointer;
    display: inline-flex;
    fill: currentcolor;
    font-family: "Google Sans", Roboto, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    height: 48px;
    justify-content: center;
    letter-spacing: .25px;
    line-height: normal;
    max-width: 100%;
    overflow: visible;
    padding: 2px 24px;
    position: relative;
    text-align: center;
    text-transform: none;
    touch-action: manipulation;
    transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1), opacity 15ms linear 30ms, transform 270ms cubic-bezier(0, 0, .2, 1) 0ms;
    user-select: none;
    width: auto;
    will-change: transform, opacity;
    z-index: 0;
}

.button-17:hover {
    background: #F6F9FE;
    color: #174ea6;
}

.button-17:active {
    box-shadow: 0 4px 4px 0 rgb(60 64 67 / 30%), 0 8px 12px 6px rgb(60 64 67 / 15%);
    outline: none;
}

.button-17:focus {
    border: 2px solid #4285f4;
    outline: none;
}




.button-17:not(:disabled) { box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px; }

.button-17:not(:disabled):hover { box-shadow: rgba(60, 64, 67, .3) 0 2px 3px 0, rgba(60, 64, 67, .15) 0 6px 10px 4px; }

.button-17:not(:disabled):focus { box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px; }

.button-17:not(:disabled):active { box-shadow: rgba(60, 64, 67, .3) 0 4px 4px 0, rgba(60, 64, 67, .15) 0 8px 12px 6px; }

.button-17:disabled { box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px; }



