@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}
#loading {
    border: 1px solid #000;
    border-right: 0;
    border-bottom: 0;
    -webkit-border-radius: 100px;
    height: 100px;
    width: 100px;
    margin: 0 auto;
    -webkit-transition: all 0.5s ease-in;
    -webkit-animation-name:             rotate;
    -webkit-animation-duration:         1.0s;
    -webkit-animation-iteration-count:  infinite;
    -webkit-animation-timing-function: linear;
}
.hbox input {
    border: 0;
}
.gbutton {
    margin-bottom: 10px;
    width: 191px;
    height: 46px;
    display: block;
    background: transparent url("../images/btn_google_signin_dark_normal_web.png") center top no-repeat;
}
.gbutton:hover {
    background-image: url("../images/gButton_dark_focus.png");
}
.gbutton:active {
    background-image: url("../images/btn_google_signin_dark_pressed_web.png");
}
.vertical-center {
    min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
    min-height: 100vh; /* These two lines are counted as one :-)       */

    display: flex;
    align-items: center;
}
/*.alert {display:inline-block;}*/
.alert-auto {
    display:inline-block;
}
body  {
    background: #ffffff url("../images/background-black.jpg");
}
.white {
    color: white;
    /*text-shadow: 0 0 10px #ffffff;*/
}
.table-condensed{
    font-size: 24px;
}
.row-bordered:after {
    content: "";
    display: block;
    border-bottom: 1px solid #ccc;
    margin: 0 15px;
}
hr.style18 {
    height: 30px;
    border-style: solid;
    border-color: #8c8b8b;
    border-width: 1px 0 0 0;
    border-radius: 20px;
}
hr.style18:before {
    display: block;
    content: "";
    height: 30px;
    margin-top: -31px;
    border-style: solid;
    border-color: #8c8b8b;
    border-width: 0 0 1px 0;
    border-radius: 20px;
}