﻿.vtab-container {
    display:inline-block;
}
.vtabitem {
    clear: both;
    width: 100%;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    padding-top: 8px;
}

    .selected-tab {
        clear: both;
        width: 100%;
        border-bottom: 5px solid #ccc;
        cursor: pointer;
        padding-top: 8px;
        font-weight:bold;
    }
.vtab-container-compact-mode {
    display: none;
}
.vertical-tab-menu-warnings {
    display: inline block;
}

@media only screen and (max-width:890px) {
    .vtab-container {
        display:flex;
        width:100%;

    }
    .selected-tab {
        border-bottom: 5px solid rgb(204, 204, 204) !important;
        font-weight: bold !important;
    }
    .vtabitem {
        border-bottom: 1px solid rgb(204, 204, 204);
        cursor: pointer;
        padding-top: 8px;
        float: left;
        margin-right: 15px;
    }
}

@media only screen and (max-width:650px) {
    .vtab-container {
        display: none;
        width: 100%;
    }
    .vtab-container-compact-mode {
        display:flex;
    }
}