
.tab-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.tabs {
    list-style-type: none;
    padding: 0;
    margin: 0;
    border-right: 1px solid #ccc;
    flex: 0 0 200px;
}

.tabs .tab-link {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
    background: #f1f1f1;
    text-align: left;
}

.tabs .tab-link.active {
    background: #2E3585;
    font-weight: bold;
	color:#FFFFFF;
}

.tab-content {
    padding: 10px;
    display: none;
    width: 100%;
}

.tab-content.active {
    display: block;
}

<!--------------------------->


.tab-container1 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.tabss {
    list-style-type: none;
    padding: 0;
    margin: 0;
    border-right: 1px solid #ccc;
    flex: 0 0 200px;
}

.tabss .tab-link {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
    background: #f1f1f1;
    text-align: left;
}

.tabss .tab-link.active {
    background: #2E3585;
    font-weight: bold;
	color:#FFFFFF;
}

.tab-content2 {
    padding: 10px;
    display: none;
    width: 100%;
}

.tab-content2.active {
    display: block;
}

