/* ---------------------- */
/* ---------------------- */
/*      User toolbar      */
/* ---------------------- */
/* ---------------------- */

.user-toolbar {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 0 7px;
    background-color: #FFFFFF;
    box-shadow: rgba(0, 12, 43, .1) 0px 4px 8px;
    z-index: 10;
}
.user-buttons {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 0;
}
.user-buttons > button { margin: 0 5px; }
.notifs-button {
    color: #5C9FBE;
    border-radius: 10px;
}
.notifs-button:hover, .notifs-button:focus {
    color: #2492C1;
    background-color: rgba(148, 148, 148, .2);
}
.user-profile {
    background-color: #B6DDED;
    outline: 3px solid transparent;
}
.user-profile:hover, .user-profile:focus { outline: 3px solid rgba(148, 148, 148, .2); }

/* ---------------------- */
/* ---------------------- */
/*     Action toolbar     */
/* ---------------------- */
/* ---------------------- */
.action-toolbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    padding: 0 20px;
}

.nav-bar {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: fit-content;
    transition: all .3s ease-in-out;
}
.nav-bar.active { opacity: 0; }
.nav-button {
    color: #2492C1;
    cursor: auto;
}
.back-button { cursor: pointer; }
.back-button:hover, .back-button:focus {
    color: #F0F0F0;
    background-color: #2492C1;
}
.nav-bar > span {
    max-width: 75%;
    font-size: x-large;
    font-weight: 600;
    margin: 0 10px;
    color: rgba(24, 24, 24, .8);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.action-buttons {
    display: inline-flex;
    flex-direction: row;
}
/* .style-buttons > svg { color: #B6DDED; }
.style-buttons > svg.active { color: #2492C1; } */

@media screen and (max-width: 480px) {
    .action-toolbar { height: 80px; }
}