/* Ajustando as dimenções dos paineis das abas, pra nao dar barra de rolagem sem necessidade */
.tabs-panels .panel.panel-htop,
.tabs-panels .panel.panel-htop>.panel-body.panel-body-noheader.panel-body-noborder {
    height: 100% !important;
    width: 100% !important;
    padding: 0 !important;
}

/* Ajustando o header e as rows da dg, para pegar 100% de largura */
/* .datagrid-htable,
.datagrid-btable {
    width: 100%;
}

.datagrid-header-inner {
    width: 100%;
} */

/* Removendo as bordas e margins da dg e garantindo que ela peencha todo o espaço da div pai */
.datagrid-wrap.panel-body.panel-body-noheader {
    display: flex;
    flex: 1;
    padding: 0;
    margin: 0;
}

/* Ajustando as setas dos combobox */
.combo-arrow,
.combo-arrow:focus,
.combo-arrow:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    background: url('../../libs/jquery-easyui-1.8.1/themes/material/images/combo_arrow.png') no-repeat center center !important;
}

.datebox .textbox-addon-right .combo-arrow,
.datebox .textbox-addon-right .combo-arrow:focus,
.datebox .textbox-addon-right .combo-arrow:active {
    background: url('../../libs/jquery-easyui-1.8.1/themes/material/images/datebox_arrow.png') no-repeat center center !important;
}

.textbox-icon-disabled {
    background: none !important;
}

/* Ajustando o painel do comboboc */
.combo-panel.panel-body.panel-body-noheader {
    width: 100%;
    padding: 2px;
}

.combo,
.combobox-item,
.checkbox.inputbox {
    cursor: pointer;
}

.textbox-addon-right {
    /* ajustando a posição da seta nos combobox */
    display: flex;
    flex-direction: row-reverse;
}

/* Configurando os elementos readonly */
.textbox-readonly,
.checkbox-readonly,
.validatebox-readonly,
.textbox-icon-disabled {
    user-select: none !important;
    caret-color: transparent !important;
    cursor: not-allowed !important;
    border-bottom-color: #5177A8 !important;
}

.checkbox-readonly {
    border-color: #5177A8 !important;
}

.checkbox-readonly .checkbox-checked {
    background: #5177A8 !important;
}

/* Ajustando os icones dos nos da tree e o X do window */
.tree-file,
.panel-tool-close {
    /* Removendo o icone de 'arquivo' dos nodes sem children nas tg */
    /* Removendo o X de fechar o window */
    display: none !important;
}

/*  */
.textbox-text.validatebox-text {
    margin: 0 !important;
}

/* Calendario - datebox */
.calendar-nav {
    position: inherit;
    margin: 0;
}

.calendar-header {
    position: inherit;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/* ajustandoo conteudo do window */
.easyui-window.panel-body.panel-body-noborder.window-body {
    width: 100% !important;
}

.panel-title {
    color: #fff;
}

.textbox .easyui-fluid .filebox {
    display: flex !important;
    justify-content: flex-end !important;

}