/**
 * @author: Yoann Le Crom <yoann.lecrom@abstractive.fr>
 * date:    2020-02-05 16:40:13
 */

.SimpleMenu {
}

.SimpleMenu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 .3rem;
    padding: 0;
    list-style: none;
}

.SimpleMenu-item {
    display: flex;
    flex-direction: column;
    margin: 0 1.5rem;
}
.SimpleMenu-item-link {
    text-decoration: none;
    transition: color .5s ease, .5s border-bottom-color ease;
    border-bottom: 1px solid transparent;
}

.SimpleMenu-item.active .SimpleMenu-item-link,
.SimpleMenu-item-link:hover {
    text-decoration: none;
    border-color: #00a377;
}

.SimpleMenu-item-subMenu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.SimpleMenu-item-subMenu .SimpleMenu-item {
    display: block;
    text-transform: none;
    margin: 0;
}

.SimpleMenu--small {
    font-size: 1rem;
}

.SimpleMenu--small .SimpleMenu-item {
    text-transform: none;
    margin: 0 .5rem;
}
