/*TABS*/
.tabs__link {
    display: inline-block;
    width: 50%;
    text-align: center;
    color: #888888;
    padding: 11px 10px;
    background-color: #fff;
    border-top: 1px solid #f2f2f2;
    border-left: 1px solid #f2f2f2;
    border-right: 1px solid #f2f2f2;
    text-decoration: none;
    transition: .2s;
    font-size: 13px;
    font-weight: 700;
}

.tabs__link:hover {
    background-color: #efefef;
    transition: 0.2s;
}

.tabs__link:first-child {
    border-radius: 3px 0 0 0;
}
.tabs__link:last-child {
    border-radius: 0 3px 0 0;
    border-left: 0;
}

.tabs__link_active {
    background-color: #f9f9f9;
    color: #1976d2;
}
.tabs__link_active:hover,
.tabs__link_active:focus {
    color: #1976d2;
}

.tabs__content {
    display: none;
    border-radius: 0;
}

.tabs__content_active {
    display: block;
}

.left_block .tabs__content .left_menu {
    border-radius: 0 0 3px 3px;
}

/*END TABS*/