/* ----------------------------------------------------------- *
 |
 | Main styles - outside of Angular
 |
 |  Author : David Hofer [david@dna-studios.ch]
 |
 * ----------------------------------------------------------- */

body {
    background-color: #76928f;
}

.app-loader {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
}

.app-loader img {
    animation: rotation 2s infinite linear;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}

.va {
    display: table;
    height: 100%;
    table-layout: fixed;
    width: 100%;
}

.va-middle,
.va-bottom {
    display: table-cell;
}

.va-middle {
    vertical-align: middle;
}

.va-bottom {
    vertical-align: bottom;
}

.align-center {
    text-align: center;
}
