#menu-burger {
    cursor: pointer
}

#animated-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 25px;
    height: 20px;
    margin: 0px auto
}

#animated-menu span {
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    background: #767999
}

#animated-menu-txt {
    padding-top: 10px;
    margin: 0 auto 0 auto
}

#animated-menu .blist {
    width: 35px;
    height: 35px
}

.side-menu {
    list-style: none
}

.side-menu a {
    text-decoration: none
}

.menu-drop {
    cursor: pointer
}

.menu-drop .chevron {
    margin-left: 5px;
    height: 10px;
    width: 10px;
    transition: .20s ease-in-out
}

.menu-link a {
    color: #767999
}

nav {
    margin-left: 20px
}

nav .side-menu {
    line-height: 2
}

#sidebar-menu {
    padding-left: inherit;
    padding-top: 20px
}

#side-down {
    margin-top: 8vh;
    width: 80%
}

.shown .chevron {
    transform: rotate(180deg)
}

.menu-drop ul {
    display: none
}

.shown ul {
    display: block
}

button.button-close {
    padding: 10px;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    cursor: pointer
}

button.button-close:hover span {
    color: #db0084
}

#sidebar-title {
    text-align: center;
    padding-top: 20px
}

#vigilance-bloc {
    display: flex;
    justify-content: space-evenly;
    align-items: center
}

.vigilance-vignette {
    display: none;
    text-align: center
}

#info-links :first-child {
    margin-top: 5px;
    margin-bottom: 5px
}

#info-links a {
    padding-left: 10px
}

.overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000
}

.animate-opacity {
    animation: opac 0.8s
}

@keyframes opac {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.sidebar {
    display: none;
    padding: 10px;
    z-index: 2000;
    right: 0px;
    height: 100%;
    width: 300px;
    top: 0px;
    background-color: #fff;
    position: fixed;
    overflow: auto
}

.animate-right {
    animation: animateright 0.4s
}

@keyframes animateright {
    from {
        right: -300px;
        opacity: 0
    }

    to {
        right: 0;
        opacity: 1
    }
}

@media (max-width:580px) {
    #header-menu {
        position: absolute;
        top: 30px;
        right: 10px;
    }
}