/******************************************************************************/
/* GLOBAL */
/******************************************************************************/

* {
    /* font-family: Helvetica, Arial, Sans-serif; */
    color: darkslategray;
}

.v-messages__message {
    /* Message from vuetify like to big file */
    color: #ff5252 !important;
}

body {
    background: url('/static/img/back.jpg');
    overflow-x: hidden;
    transition: 0.7s;
}

h2 {
    text-align: center;
}

hr {
    margin-top: 0.4rem;
    border-bottom-width: 0px;
    border-top-color: rgba(0, 0, 0, 0.1);
}

#spinner {
    opacity: 0;
    /* display: none; */
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid rgba(0,0,0,0.2);
    border-radius: 50%;
    border-top: 16px solid #32D4CF;
    width: 130px;
    height: 130px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    transition-duration: 1s;
    transition-delay: 0.7s;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.theme--light.v-application {
    background: none;
}

.btn-top-sticky {
    margin-top: 10px;
}

/******************************************************************************/
/* NAVBAR */
/******************************************************************************/

*{ text-transform: none !important; }

a.v-btn--text, a.v-list-item--link {
    text-decoration: none;
}

.navbar {
    padding: 0;
}


.navbar-brand {
    font-size: 2em;
}

.navbar-brand img {
    padding-bottom: 12px;
    margin-right: -16px;
}


.dropdown .dropdown-menu {
    background: inherit;
    display: block;
    /* transitions */
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s ease;
}

/* dropdown menu on hover */
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    /* transitions */
    background-color: #F1F1EF;
    visibility: visible;
    opacity: 1;
}


.navbar-nav > a:focus, .navbar-nav > a:hover, .dropdown-menu > a:hover {
    background: #C3DEE6 ;
}

/******************************************************************************/
/* LOGIN */
/******************************************************************************/


#login, #change-password {
    background-color: #FAF8E6;
    padding-top: 15px;
    padding: 1.5% 3%;
    margin: 20px;
    border: 1px #EDEBDA solid;
    box-shadow: 10px 8px 6px lightgrey;
}

/* change password */
.auth-error li {
    color: #ff5252;
    list-style: none;
}

.auth-help li {
    font-size: 0.8rem;
    color:#5E5E5E;
}
