.tabs .tab-header {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    margin-bottom: 2px;
    cursor: pointer;
    line-height: 20px;
    background: rgb(0 0 0 / 25%);
    color: silver;
    position: relative;
    z-index: 2;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    padding-left: 50px;
}
.tabs .tab-header:before {
    content: "";
    width: 22px;
    height: 8px;
    display: block;
    background: var(--color);
    position: absolute;
    border-radius: var(--border-radius);
    top: 14px;
    left: 15px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.tabs .tab-header:hover {
    background: rgb(0 0 0 / 45%);
}
.tabs .tab-header.active:before {
    background: black;
    height: 24px;
    top: 5px;
    width: 8px;
    left: 22px;
}
.tabs .tab-header.active {
    background: var(--color);
    font-weight: 600;
    opacity: 1;
    color: black;
}
.tabs .tab-content {
    display: none;
    border: var(--border);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 6px;
    background: var(--darker);
    border-top-left-radius: unset;
    border-top-right-radius: unset;
    border-top: unset;
    margin-top: -15px;
    padding-top: 25px;
    font-size: 17px;
}
.tabs .tab-content.active {
    display: block;
}
.tabs .tab-content p:last-of-type {
    margin-bottom: 0;
}
@media all and (max-width: 960px) {
    .tabs .tab-content {
        font-size: 15px;
        line-height: 17px
    }
}