/* HIDE UNTIL VUE IS INITIALIZED */

[v-cloak] { display: none; }

/* LOGIN BG */

.body_login [data-app="true"]{
    background: url('../img/login_background.png') !important;
    background-size: cover !important;
}

/* PRINCIPAL BG */
body [data-app="true"]{
    background: url('../img/logo_transparent.png') !important;
    background-position-x: 115% !important; /* Center the image */
    background-repeat: no-repeat !important; /* Do not repeat the image */
    background-size: 45% !important;
}


.body_login .v-card__text{
    padding: 50px 50px 50px 50px !important;
}

.body_login .v-card__text .v-btn--absolute{
    left: 50%;
    top: -45px !important;
    margin-left: -45px;
    height: 90px;
    width: 90px;
}

.body_login .v-card__text h2{
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.body_login .v-card__text img{
    margin-top: 3px;
    display: block;
}

/* BLOCK UI */

.spinner-container{
    display: block !important;
    margin: 0 !important;
    /* background: rgba(255,255,255,.8); */
    /*background: rgba(80, 80, 80, 0.7);*/
    background: rgba(155, 173, 206, 0.77);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999999999;
    top: 0;
    left: 0;
    visibility: hidden;
      
    opacity: 1;
}

.spinner-container .v-progress-linear{
    margin: 0 !important;
    position: absolute;
    bottom: 0;
    left: 0;
}

.spinner-container.show-spinner{
    opacity: 1 !important;
    visibility: visible !important;
}

.spinner:after {
    content: '';
    width: 50px;
    height: 50px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 100%;
    /*
    border: 8px solid rgba(48, 54, 65, 0.2);
    border-bottom-color: #303641;
    */
    border: 8px solid rgba(255, 255, 255, 0.4);
    border-bottom-color: rgba(255, 255, 255, 1);
    animation: spin 1s linear 0s infinite;
}

@font-face {
    font-family: Advent;
    src: url('../fonts/Advent-Sans-Logo.otf');
}

@-moz-keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* FIX TABLE */

.v-data-table-header th{
    white-space: nowrap;
}
