.tabs {
    display: flex;
    cursor: pointer;
}

.tabs__tab {
    background-color: #F1F5F2;
    border: 1px solid var(--border-sec-color);
    width: 50%;
    text-align: center;
    overflow: hidden;
}

.tabs__tab.active {
    background-color: #fff;
    font-weight: 600;
    border-bottom: none;
}

.tabs__tab--1 {
    border-radius: var(--border-radius) 0 0 0;
}

.tabs__tab--2 { 
    border-radius: 0 var(--border-radius) 0 0;
}

.tabs__tab a,
.tabs__tab a:focus,
.tabs__tab a:active,
.tabs__tab a:visited {
    text-decoration: none;
    color: var(--body-text-color);
    width: 100%;
    display: block;
    padding: 15px 0;
    font-size: calc(var(--font-size-base) + 2px);
}

.tabs__tab a:hover {
    background-color: #f3f6f4;
}