/* Styles généraux pour les onglets */
#onglets {
    background-color: #2c3e50;
    padding: .4rem;
}

#onglets>div:nth-child(2),
#onglets>div:nth-child(3) {
    background-color: #ccc;
    margin-bottom: .2rem;
    padding: .75rem;
}

.tabs {
    border-bottom: 2px solid #ccc;
    margin-bottom: 0px !important;
}

.tabs ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.tabs ul li {
    display: inline-block;
    margin-right: 2px;
}

.tabs ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, .8);
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: background-color 0.4s ease;
    /** Bors arrondis aux coins du dessus */
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.tabs ul li a:hover {
    background-color: rgba(204, 204, 204, .8);
}

.tabs ul li a.is-active {
    background-color: rgb(204, 204, 204);
    color: #333;
}