/* Estilos genericos */
.autoTab {
    /* background: #fff;  */
    width: 100% !important;
}

.autoTab .tabsTab>div {
    /*background: #ffffff; color: #537493;*/
    padding: 5px;
    cursor: pointer;
}

.autoTab .tabsContent {
    padding: 5px;
    flex-grow: 1;
}

/*.autoTab .tabsTab .selected { background: #537493; color: #fff; }*/

/* Especificos vertical */
.autoTab.tabs-vertical {
    display: flex;
}

.autoTab.tabs-vertical .tabsTab {
    width: 200px;
    overflow: hidden;
}

/* Especificos horizontal */
.autoTab.tabs-horizontal .tabsTab {
    width: 100%;
    display: flex;
    overflow-x: auto;
}

.autoTab.tabs-horizontal .tabsTab>div {
    flex-grow: 1;
    text-align: center !important;
    font-weight: bold;
}

.tabsTab .text-left.selected {
    color: #5a9e94;
}

.tabsTab .text-left:hover {
    color: #5a9e94;
}

