
.menu-tabs{
    height: 100%;
}

.menu-tabs .menu-tab-header{
    font-size: 16px;
    font-weight: bold;
    height: 38px; /*default*/
}
.menu-tabs .menu-tab-header ul{
    margin: 0;
    padding: 5px 0;
}
.menu-tabs .menu-tab-header li{
    display: inline-block;
    padding: 3px 10px;
    margin: 0;
    cursor: pointer;
    border-bottom: 3px solid transparent;
}
.menu-tabs .menu-tab-header li.active{
    border-bottom: 3px solid lightgray;
}
.menu-tabs .menu-tab-header li:hover{
    text-shadow: 0 3px 7px darkgrey;
}
.menu-tabs .menu-tab-header li.disabled{
    pointer-events: none;
    opacity: 0.5;
}
.menu-tabs .menu-tab-header li.highlighted{
    position: relative;
}
.menu-tabs .menu-tab-header li.highlighted::after{
    content: '*';
    position: absolute;
    top: 0;
    right: 2px;
    color: red;
    font-size: 14px;
}
.menu-tabs .menu-tab-content{
    height: calc(100% - 38px); /*default*/
}
.menu-tabs .tab-content{
    display: none;
    height: 100%;
    overflow: auto;
}
.menu-tabs .tab-content.active{
    display: block;
}