.spinner_outer {
    position: absolute;
    left: 50%;
    top: 40%;
    color: rgba(24, 24, 24, 0.53);
}

.spinner-text {
    z-index: 9001;
    margin-top: 10px;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 22px;
    font-weight: 500;
}

.spinner {
    height:40px;
    width:40px;
    margin:0px auto;
    -webkit-animation: rotation 1.2s infinite ease-in-out;
    -moz-animation: rotation 1.2s infinite ease-in-out;
    -o-animation: rotation 1.2s infinite ease-in-out;
    animation: rotation 1.2s infinite ease-in-out;
    border-left:6px solid rgba(0,174,239,.15);
    border-right:6px solid rgba(0,174,239,.15);
    border-bottom:6px solid rgba(72, 72, 72, 0.8);
    border-top:6px solid rgba(72, 72, 72, 0.8);
    border-radius:100%;
    z-index: 9002;
}

@-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
    from {-moz-transform: rotate(0deg);}
    to {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
    from {-o-transform: rotate(0deg);}
    to {-o-transform: rotate(359deg);}
}
@keyframes rotation {
    from {transform: rotate(0deg);}
    to {transform: rotate(359deg);}
}
