/*************************************************
 # tab v2 : support multiple tab sets in one page
**************************************************/

/* tab */
.tab-wrap-v2 {
    position: relative;
}

.tab-wrap-v2 .btn-more {
    position: absolute;
    right: 1.8rem;
    top: 1.8rem;
}

.tab-wrap-v2 .tabs {
    display: flex;
    margin-bottom: 3rem;
    padding: 0;
    list-style-type: none;
    background-color: #f7f8fa;
}

.tab-wrap-v2 .tabs .tab-nav-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20rem;
    height: 5.5rem;
    padding: 0 2rem;
    color: #444;
    font-size: 1.6rem;
    border-right: 1px solid #fff;
    cursor: pointer;
}

.tab-wrap-v2 .tabs .tab-nav-link a:hover {
    background-color: #e0e4e8;
}

.tab-wrap-v2 .tabs .tab-nav-link.active {
    color: var(--primary3);
    background-color: #fff;
    border: 1px solid #737373;
    border-bottom: none;
    font-weight: bold;
}

.tab-nav-link a:focus {
    outline: 3px dashed #000;
}