.js-tabs .tabs {
    border-bottom: .12em solid #ccc;
    margin-bottom: 30px;
}

.js-tabs .tab {
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    position: relative;
    top: 2px;
    padding: 10px 15px;
}

.js-tabs .tab:hover {
    color: var(--primary);
}

.js-tabs .tab.active {
    border-bottom: .12em solid var(--primary);
    cursor: default;
    color: var(--primary);
    font-weight: bold;
}

.js-tabs .panels {
    background: none;
}

.js-tabs .panel {
    display: none;
}

.js-tabs .panel.active {
    background: none;
    display: block;
}
