.tab-menu { display: flex; }

.tab-content > div {
    height: 100%;
    position: relative;
}

.tab-content > div,
.tab-menu > h1 { transition: all ease-in-out 100ms; }

.tab-menu > h1 {
    border-right: 1px solid #e3e3e3;
    border-bottom: 3px solid transparent;
    color: #aeaeae;
    background-color: #f1f2f4;
    cursor: pointer;
    padding: 10px 21px;
    font-size: 14px;
    margin: 0;
}
.tab-menu > h1:hover { color: #000; }
.tab-menu > h1:hover:active { color: #aeaeae !important; }

.tab-content {
    padding: 10px;
    border-top: 1px solid #e3e3e3;
    margin-top: -3px;
    position: relative;
    background-color: white;
}

@media (min-width: 813px) and (min-height: 726px) {
    .tab-menu > h1 {
        border-right: 0.13793103448275862vh solid #e3e3e3;
        border-bottom: 0.41379310344827586vh solid transparent;
        padding: 1.3793103448275863vh 2.896551724137931vh;
        font-size: 1.9310344827586208vh;
    }
    
    .tab-content {
        padding: 1.3793103448275863vh;
        border-top: 0.13793103448275862vh solid #e3e3e3;
        margin-top: -0.41379310344827586vh;
    }
}