.slack24 {
    height: 24;
    max-height: 24;
    width: 24;
    max-width: 24;
}

.slack32 {
    height: 32;
    max-height: 32px;
    width: 32px;
    max-width: 32px;
}

.bar {
    display: flex;
    align-items: center;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

.bar {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #222;
    border-bottom: 1px solid #090909;
    padding: 0px;
    max-height: 35px;
}

.bar>* {
    margin-left: 5px;
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    color: #999;
    position: -webkit-sticky;
}

.bar>a:hover {
    color: white;
    text-decoration: none;
}

.logo {
    max-height: 32px;
    display: none;
}

.portrait {
    margin-right: 5px;
}

.bar .menu-active {
    background-color: black;
    color: white;
}

.bar .menu-compte {
    margin-left: auto;
    white-space: nowrap;
}

.bar .icon {
    align-self: flex-end;
}

.bar .menu {
    display: flex;
    flex-direction: row;
    height: 32px;
}

.menu-texte {
    margin: auto;
    margin-left: 5px;
    flex: 1;
}

.menu-icon {
    margin: auto;
    flex: 1;
}

.logo-fondu {
    background-image: linear-gradient(to right, white 10px, #222);
    height: 100px;
    flex: 1;
    flex-direction: row;
}

.logo-header {
    background-image: linear-gradient(to right, white, #222);
    height: 100px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.sticky {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 2000;
    border-top: 0;
}

#logo-grand {
    display: block;
}

#logo-petit {
    display: none;
}

@media screen and (max-width: 599px) {
    .bar .menu-texte {
        display: none;
    }
    .menu-icone {
        display: initial;
    }
    #logo-grand {
        display: none;
    }
    #logo-petit {
        display: block;
    }
    .bar .menu-active>* {
        display: initial;
    }
    .bar a.icon {
        display: block;
    }
}