/*TABS VERTICAL*/
.tab {
    overflow: hidden;
    border-bottom: 1px solid #ccc;
    position: relative;
    overflow: hidden;
}

.tab button {
    background-color: #f2f2f2;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 5px 20px;
    transition: 0.3s;
}

.tab button:hover {
    background-color: #ddd;
}

.tab button.active {
    background-color: #ccc;
}

.tabcontent {
    display: none;
    position: relative;
    overflow: hidden;
    padding: 20px;
    background-color: #ffffff !important;
}

.tabcontent h3 {
    margin-top: 0;
}
