.tabs {
    display: flex;
}

.tabs a {
    text-decoration: none;
}

.tabs > a {
    padding: 1rem 2rem;
    flex: 0 1 auto;
    color: #555;
    border-bottom: 2px solid var(--lightGrey-color);
    text-align: center;
}

.tabs > a.active,
.tabs > a:hover {
    opacity: 1;
    border-bottom: 2px solid #555;
}

.tabs > a.active {
    border-color: var(--primary-color);
}

.tabs.is-full a {
    flex: 1;
}
