/* HIDE UNTIL VUE IS INITIALIZED */

[v-cloak] { display: none; }

.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-top: 16px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.body_login .v-card__text img{
    display: block;
    height: 100px;
    margin-top: -15px;
}

/* 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;
}

.itemLanguageSelect{
    background-color: #8c57ff !important;
    font-weight: 500; 
    color: #fff !important;
}
.itemMenuSelect{
    background-color: #8c57ff !important; 
    font-weight: 500; 
    color: #fff !important;
}
.iconSidebarSelect{
    font-size: 30px !important;
    color: #fff !important;
}

.itemLanguage{
    font-weight: 500; 
    color: #757575 !important;
}
.itemMenu{
    font-weight: 500; 
    color: #757575 !important;
}
.iconSidebar{
    font-size: 30px !important;
    color: #757575 !important;
}
