/*
serve for module-index
*/

#mask-box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 999;
}
body{
  display:flex;
  flex-flow:column nowrap;
}

#base-index{
  --form-width: 250px;
  --left-bg : #f7f8f9;
  flex:auto;
  height: 100%;
}

*::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

*::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #e5e5e5;
}

*::-webkit-scrollbar-track {
  /*border-radius: 2px;*/
  background-color: unset;
}

* {
  scrollbar-color: rgba(121, 121, 121, 0.3) transparent; /*firefox*/
  -ms-scrollbar-highlight-color: transparent;
  -ms-scrollbar-face-color: rgba(121, 121, 121, 0.3);
  -ms-scrollbar-3dlight-color: rgba(255, 255, 255, 0);
  -ms-scrollbar-darkshadow-color: rgba(255, 255, 255, 0);
  -ms-scrollbar-track-color: rgba(121, 121, 121, 0.3);
  -ms-scrollbar-arrow-color: rgba(255, 255, 255, 0);
}

.br-text{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selectize-control .selectize-input.disabled {
  background-color: #eee;
  border: 1px solid #ccc;
  opacity: unset;
}

.selectize-input > * {
  vertical-align: middle;
}

.icon-group {
  display: block;
  float: left !important;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 30px;
  color: rgba(255, 255, 255, .8);
  color: #fff \9;
  text-align: center;
  cursor: pointer;
  background: none repeat scroll 0 0 rgba(0, 0, 0, .3);
  background: url('../img/opacity-30.png') repeat \9;
  border-radius: 3px;
}

.icon-group:hover {
  color: #fff;
  background-color: #252d3b;
}

.search-form-collapse form {
  display: none;
}

.search-form-collapse > .left-search {
  /*width: 45px;*/
}

.index {
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  padding: 5px;
}

.left-search {
  position: relative;
  margin-right: 5px;
  background-color: #f7f8f9;
  /*border: 1px solid #ddd;*/
  border-radius: 3px;
  flex: 1 ;
  align-items: stretch;
  overflow-y: auto;

}
.left-search {
  scrollbar-width: none;
}
.left-search::-webkit-scrollbar {
  display: none;
}

#collapse-btn {
  margin-left: -16px;
  position: fixed;
  width: 16px;
  bottom: 50%;
  height: 60px;
  cursor: pointer;
  z-index: 100;
  text-align: center;
  transition: ease 0.3s
}

#collapse-btn #collapse-wrapper {
  width: 0;
  height: 60px;
  position: absolute;
  left: -5px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 0;
  border-right: 16px solid #f2f3f4;
  line-height: 44px;
  transition: ease 0.3s;
}

#collapse-btn #collapse-wrapper .fa {
  transition: ease 0.3s;
  margin-left: 4px;
}

#base-index.form-collapsed:not(.vertical-index) #collapse-wrapper .fa {
  margin-left: -4px;
  transform: rotate(180deg);
}

#base-index.form-collapsed:not(.vertical-index) #collapse-btn:hover #collapse-wrapper .fa {
  margin-left: -14px;
}

#base-index.form-collapsed:not(.vertical-index) #collapse-btn {
  margin-left: -6px;
}

#base-index.form-collapsed:not(.vertical-index)  #collapse-wrapper {
  border-left: 8px solid #d1d1d1;
  border-right: 0;
}

#base-index.form-collapsed:not(.vertical-index) #collapse-btn:hover #collapse-wrapper {
  border-left: 16px solid #d1d1d1;
}


.left-search #search-form,
.left-search .modal-search-form,
.left-search > form{

  width: var(--form-width, 250px);
  display: flex;
  flex-direction: column;
  padding: 5px;
  overflow: visible;
  height: 100%;
}

#search-form #form_in {
  flex: 1 1 auto;
  padding-bottom: 100px;
}

#search-form #searchButton {
  flex: 0 0 auto;
  position: sticky;
  bottom: 0;
  z-index: 3;
  background-color: var(--left-bg);
}

#search-form label {
  font-weight: normal;
}

.search-form > form {
  clear: both;
}

.list-content {
  position: absolute;
  top:0;
  right:0;
  bottom:0;
  left: var(--form-width, 250px);
  height: 100% !important;
  padding: 0 5px;
  flex: 1 auto;
  align-items: stretch;
  overflow-y: auto;
  /*border: 1px solid #ddd;*/
  border-radius: 3px;
  background: #fff;
  /*box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);*/
}

.list-content > table tbody {
  overflow-y: auto;
}

/*.base-index .search-form{*/
/*width: 256px;*/
/*height: auto;*/
/*background-color: #E4E4E4;*/
/*padding-top: 5px;*/
/*}*/

.search-toggle {
  display: inline;
  margin-left: 160px;
}

.search-toggle a:hover {
  cursor: pointer;
}

.search-form .icon-groups {
  padding-left: 15px;
}

.search-form .form-group {
  margin-left: 15px;
  margin-right: 15px;
}

.quick-search {
  height: 30px;
  line-height: 30px;
  color: #428bca;
  color: var(--brand-primary);
}

.toggle-icon {
  margin-right: -10px;
  font-size: 18px;
}

.tip-msg {
  position: absolute;
}

.toggle-msg {
  width: 0px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background: #56abe4;
  display: none;
  top: -3px;
  z-index: 1;
  border-radius: 4px;
  color: #fff;
}

.toggle-triangle {
  border: 7px solid transparent;
  border-right-color: #56abe4;
  position: absolute;
}

.toggle-up-msg {
  margin-top: -35px;
  margin-left: 254px;
}

.toggle-up-triangle {
  top: -26px;
  left: 240px;
}

.toggle-down-msg {
  margin-top: -30px;
  margin-left: 49px;
}

.toggle-down-triangle {
  top: -22px;
  left: 35px;
}

.search-table {
  word-wrap: break-word;
}

.search-table > thead:first-child > tr > th {
  padding: 5px 3px;
  background: #f3f4f5;
  /*font-weight:bold;*/
  color: #333;
}

.search-table > thead:first-child > tr > th > a {
  color: #333;
}

.search-table > thead:first-child > tr > th > a:hover {
  color: #266fcb;
  color: var(--brand-primary);
}

table.dataTable {
  border: 1px solid #edeeef;
}

.vertical-list-content {
  /*padding-right: 5px;*/
  /*height: 100%;*/
  order: 3;
  flex: 1 1 auto;
  align-items: stretch;
  margin-top: 5px;
}

.vertical-list-content > table tbody {
  overflow-y: auto;
}

/*.vertical-list-content{*/
/*align-items: stretch;*/
/*}*/

/*.vertical-list-content table tbody{*/
/*overflow: auto!important;*/
/*}*/
.vertical-list-content .dataTables_scrollHead table {
  margin-left: 8px;
}

.top-search #search-form {
  padding-bottom: 5px;
  padding-top: 5px;
  width: 100%;
  background-color: #F2F4F6;
  border: solid 1px #ccc;
}

.search-form .level1-row {
  display: flex;
  max-height: 60px;
  width: 100%;

}

.search-form .col-group {
  flex: 0 0 auto;
  padding: 5px 5px 0 5px;
  width: 12.5%;
  min-width: 120px;
  height: 50px;
  margin: 0 auto;
}

.vertical-index {
  display: -webkit-flex; /* 新版本语法: Chrome 21+ */
  display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */
  /*display: -moz-box;      !* 老版本语法: Firefox (buggy) *!*/
  display: -ms-flexbox; /* 混合版本语法: IE 10 */
  padding: 0;

  flex-direction: column;
  align-items: stretch;
}

.top-search {
  margin-top: 5px;
  order: 1;
  flex: 1 0 auto;
  align-items: stretch;
  /*overflow-y: auto;*/
  /*overflow-x: hidden;*/
}

/** 清理bootstrap的 input select button 的样式*/

.search-form.top-search .selectize-control.semester {
  margin-top: 17px;
  height: 26px;
}

#cascadeQuery {
  width: 100%;
  /*margin-top: 5px;*/
  height: 26px;
  margin-top: 17px;
}

#cascadeSearch .opera button {
  /*width: 100%;*/
  height: 26px;
  margin-left: 6px
}

#search-form .selectize-control.semester {
  margin-top: 17px;
}

.top-search .selectize-control.form-control, .selectize-control.semester, .bootstrap-select.form-control {
  height: 26px !important;

}

.top-search .selectize-control.form-control .selectize-input, .selectize-control.semester .selectize-input {
  min-height: 26px;
  height: 26px;
  padding: 1px 6px;
}

.search-form .selectize-control.form-control .selectize-input,
.search-form .selectize-control.semester .selectize-input,
.search-form input.form-control {
  min-height: 26px;
  height: 26px;
  padding: 2px 20px 2px 5px;
}

.search-form .selectize-control.single .selectize-input:after {
  line-height: 24px;
}

.search-form input.form-control {
  padding-right: 6px;
}


.search-form .selectize-control.form-control .selectize-input div {
  max-width: 90%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  vertical-align: middle;
}

/**semester 超出部分 变...*/
.top-search .selectize-control .selectize-input .item {
  width: 80%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.top-search .selectize-control .selectize-input .item, .top-search .selectize-control .selectize-input input {
  vertical-align: middle;
}

.top-search .selectize-control.single .selectize-input {
  padding-right: 15px;
}

.top-search .selectize-control.single .selectize-input:after {
  right: 6px;
}

.top-search input, .search-form select {
  height: 26px !important;
  padding: 6px;
  border-radius: 4px;
}

.vertical-index button.btn {
  /*height: 26px !important;*/
  line-height: 1.2 !important;
  padding: 5px 5px !important;
  border-radius: 3px;
}

.top-search label {
  font-weight: normal;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: -6px;
  padding-left: 6px;
  text-align: left !important;
  padding-top: 0 !important;
}

.top-search .searchButton {
  padding-top: 23px !important;
  flex: 7 0 auto;
  width: 12.5%;
  text-align: right;
}

.search-table:not(.ag-theme-balham) input[type="checkbox"] {
  margin: 0 6px 0 4px;
  vertical-align: middle;
}

/**
范围 第二个框会下移的问题*/

.col-group .row .col-md-5.col-sm-5.col-xs-5:first-child {
  padding-right: 0px;
}

.col-group .row .col-md-5.col-sm-5.col-xs-5:last-child {
  padding-left: 0px;
}

.col-group .row .col-md-2.col-sm-2.col-xs-2 {
  padding-right: 0px;
  padding-left: 0px;
  text-align: center;
}

#more-form-data {
  color: black;
  font-size: 20px;
  text-decoration: none;
  position: absolute;
  right: 5px;
  top: 0;
  z-index: 4;
}

.btn-toolbar {
  margin-left: -5px;
  /*margin-right:-5px;*/
}

.btn-toolbar .btn {
  margin-bottom: 2px;
}

.semi-auto-table-toolbar {
  background-color: #fff;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
}

.semi-auto-table-toolbar .semi-auto-table-menubar {
  /*flex: 1 0 auto;*/
}

.semi-auto-table-menubar .fa.fa-caret-down::before {
  content: "\f107";
}

.semi-auto-table-toolbar .semi-auto-table-menubar .btn-toolbar > .btn-group {
}

.semi-auto-table-toolbar .semi-auto-table-paginator {
  /*flex: 0 0 auto;*/
}

.semi-auto-table-toolbar .semi-auto-table-paginator .module-index-page-config .dropdown-menu {
  padding: 10px;
  left: 100%;
  width: 500px;
  transform: translateX(-100%);
}

.semi-auto-table-toolbar .semi-auto-table-paginator .module-index-page-config .dropdown-menu > li > span {
  display: inline-block;
  width: 100%;
  padding-right: 73%;
  text-align: right;
  color: #999;
}

.semi-auto-table-toolbar .semi-auto-table-paginator .module-index-page-config .dropdown-menu > li > span::after {
  content: ':';
}

.semi-auto-table-toolbar .semi-auto-table-paginator .module-index-page-config .dropdown-menu li > .btn-group {
  width: 70%;
}

/*.semi-auto-table-toolbar .selected-items {*/
/*color: #000;*/
/*}*/

/*.semi-auto-table-menubar .selectize-item .selected-items-num{*/
/*color: dodgerblue;*/
/*}*/

table.col-resizable tr > td, table.col-resizable tr > th {
  padding: 5px 3px;
}

.tableHead-nowrap tr th {
  padding-right: 5px !important;
}

.search-table tr th, .search-table tr td {
  overflow: hidden;
  white-space: nowrap;
  word-break: break-all;
  text-overflow: ellipsis;
}

.search-table {
  table-layout: fixed;
}

.dataTables_scroll table > thead > tr > th,
.dataTables_scroll table > thead > tr > td,
.dataTables_scroll table > tbody > tr > th,
.dataTables_scroll table > tbody > tr > td {
  vertical-align: middle;
}

.bootstrap-select.form-control > button {
  height: 26px;
}

.bootstrap-select > .dropdown-toggle {
  padding-right: 20px !important;
}

#shortcut #shortcutConfig {
  margin: 5px 0;
  font-size: 20px;
  float: right;
  color: #3F5D7F;
  cursor: pointer;
}

.modalMenu {
  border: 1px solid #7d7d7d;
  margin: 0 0 10px 0;
  height: 300px;
  overflow-y: auto;
}

#menuList table .tdCheckbox {
  display: inline;
}

#menuList table td {
  padding-left: 20px;
}

#menuBasket {
  background-color: #e4e4e4;
}

.view {
  background-color: white;
  margin: 5px;
}

.view label {
  list-style-type: none;
  color: #06568b;
  color: var(--color-C-8);
}

.view .destroy {
  padding: 0;
  width: 40px;
  height: 30px;
  float: right;
  color: red;
  text-align: right;
  cursor: pointer;
}

#more-form-data {
  display: none;
}

.searchButton {
  text-align: center;
}


.searchButton > * {
  margin: 0 auto;
}


#collapse {
  position: absolute;
  right: -10px;
  bottom: 0;
}

/*#table_wrapper {*/
/*overflow: hidden;*/
/*}*/

.semi-auto-table-toolbar .semi-auto-table-menubar.semi-auto-table-menubar {
  flex: auto;
}

.semi-auto-table-toolbar .semi-auto-table-paginator.semi-auto-table-paginator {
  flex: none;
  white-space: nowrap;
}


/*上下布局*/
.base-index.vertical-index {
  flex-flow: column;
}

.base-index.vertical-index .left-search {
  height: auto;
  width: auto;
  /*margin-top: 5px;*/
  margin: 0;
  padding: 5px;
  order: 2;
  flex: none;
  align-items: stretch;
  background-color: #f8fafc;
  /*border: solid 1px #ccc;*/
  border-radius: 3px;
  overflow: visible;
  /*box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);*/
}

.base-index:not(.vertical-index) #search-param-ul{
  top:unset;
  bottom:100%;
  border-radius: 4px 4px 0 0 !important;
  margin:0 0 2px 0;
}

.base-index:not(.vertical-index) #queryMenu>.fa-angle-down{
  transform: rotate(180deg);
}

.base-index.vertical-index .left-search #search-form {
  width: initial;
  padding: 0 5px;
  display: flex;
  flex-direction: row;
  overflow: visible;
  flex-wrap: nowrap;
}

.base-index.vertical-index #search-form #form_in{
  flex: auto;
  height: auto;
  width: 90%;
  padding-bottom: unset;
  flex-direction: row;
}

.base-index.vertical-index #searchButton {
  flex: none;
  width: 10%;
}

.base-index.vertical-index .left-search .row {
  /*margin:0 auto;*/
}

.base-index.vertical-index .list-content {
  position:initial;
  inset: initial;
  height: auto;
  width: auto;
  margin-top: 5px;
  padding: 0 10px;
  flex: 1 1 auto;
  order: 3;
  align-items: stretch;
  border-radius: 3px;
  /*background-color: #fff;*/
  /*box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);*/
}

.base-index.vertical-index #icon-groups {
  display: none;
}

.base-index.vertical-index #search-form #form_in {
  display: flex;
  flex-wrap: wrap;
  overflow-x: visible;
  overflow-y: visible;
}

.base-index.vertical-index #search-form .form-group {
  /*display:inline-block !important;*/
  flex: 0 0 auto;
  padding: 0 5px 5px;
  margin: 0;
  width: 12.5%;
  /*min-width: 120px;*/
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 3px;
  transition: box-shadow 0.2s ease-out;
}

.base-index.vertical-index #search-form .form-group:hover {
  border: 1px solid #eaeaea;
  box-shadow: 0 0 8px 0 rgb(232 237 250 / 60%), 0 2px 4px 0 rgb(232 237 250 / 50%);
}

.base-index.vertical-index .searchButton {
  padding: unset;
  min-width: 130px !important;
  height: auto;
  margin: 0 auto;
  padding-top: 18px !important;
  flex: 7 0 auto;
  /*width: 12.5%;*/
  text-align: right;
}

.base-index.vertical-index #clear-form-data {
  margin: 0;
}

.base-index.vertical-index .searchButton a.btn {
  /*height: 26px !important;*/
  line-height: 1.25 !important;
  padding: 5px 5px !important;
  border-radius: 3px;
}

.base-index.vertical-index #more-form-data {
  display: inline-block;
  cursor: pointer;
}

/*.base-index.vertical-index .form-group.ignore {*/
/*padding-top: 18px !important;*/
/*}*/

.base-index.vertical-index .search-group.searchButton a.shortcutConfig {
  display: inline-block;
}

.base-index.vertical-index #collapse-btn {
  display: none;
}

.base-idnex.vertical-index .selectize-control.semester {
  padding-top: 4px;
}

.base-index.vertical-index .selectize-control.batch {
  padding-top: 17px;
}

#search-form .form-group .row {
  margin: 0;
}

#search-form .form-group .row .col-sm-5,
#search-form .form-group .row .col-sm-2,
#search-form .form-group .row .col-md-5,
#search-form .form-group .row .col-md-2 {
  padding: 0;
}

#search-form .form-group .row .col-sm-2,
#search-form .form-group .row .col-md-2 {
  text-align: center;
  line-height: 26px;
}

#search-form .form-group::after {
  content: "e";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.input-group-addon {
  padding: 5px 12px;
}

.tdCheckbox {
  cursor: pointer;
}

.base-index #search-form #form_in .form-group.tab-btn-wrapper {
  min-width: 12.5%;
  width: auto;
  text-align: center;
  padding-top: 1.5em;
}

.base-index #search-form #form_in .form-group.tab-btn-wrapper button+button{
  margin-left:1ex;
}

#base-index.form-collapsed:not(.vertical-index) #left-search {
  display:none;
}

#base-index.form-collapsed:not(.vertical-index) .list-content {
  top:0;
  right:0;
  bottom:0;
  left: 16px;
}


/*==========save query conditions begin============*/
/*查询条件的下拉*/

.dropdown-left .dropdown-menu {
  left: unset;
  right: 0;
}

.paramsButton {
  font-size: 15px;
}

.selectedParamsContainer {
  background-color: #daedf6;
  min-height: 30px;
  color: #34708E;
  border-radius: 3px;
  padding: 5px
}

#search-param-ul {
  border-radius: 0 0 4px 4px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  width: 215px;
  padding: 0;
}

.search-param .list-param-item {
  height: 30px;
  /*border-bottom: solid 1px #ccc;*/
  padding: 5px 5px 5px 20px;
  display: flex;
}

.search-param .list-param-item .paramItem {
  flex: auto;
}

.search-param .list-param-item .param-del {
  flex: none;
  line-height: 1.4em;
}

.search-param .list-param-item:last-child {
  /*border-bottom: solid 0px #ccc;*/
}

.search-param .list-param-item:hover {
  text-decoration: none;
  background-color: #8AABD1 !important;
}

table.col-resizable.dms tr > td, table.col-resizable.dms tr > th {
  font-size: 12px;
  line-height: 1.5;
}

table.col-resizable.dmm tr > td, table.col-resizable.dmm tr > th {
  font-size: 13px;
  line-height: 1.8;
}

table.col-resizable.dml tr > td, table.col-resizable.dml tr > th {
  font-size: 14px;
  line-height: 2;
}

/*==========save query conditions end============*/

@-webkit-keyframes slide-fade-in {
  0% {
    -webkit-transform: translateX(30%);
    transform: translateX(30%);
    opacity: 0
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

@keyframes slide-fade-in {
  0% {
    -webkit-transform: translateX(30%);
    transform: translateX(30%);
    opacity: 0
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

@-webkit-keyframes slide-fade-out {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
  100% {
    -webkit-transform: translateX(30%);
    transform: translateX(30%);
    opacity: 0
  }
}

@keyframes slide-fade-out {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
  100% {
    -webkit-transform: translateX(30%);
    transform: translateX(30%);
    opacity: 0
  }
}

.el-dialog__wrapper.right.dialog-fade-enter-active {
  animation: slide-fade-in 0.3s !important;
}

.el-dialog__wrapper.right.dialog-fade-leave-active {
  animation: slide-fade-out 0.3s !important;
}

.el-dialog__wrapper.right .el-dialog {
  display: flex;
  flex-flow: column nowrap;
  position: fixed;
  margin: 0 !important;
  top: 0;
  left: 100%;
  bottom: 0;
  max-width: 50%;
  width: 410px;
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0)
}

.module-index-page-config-dialog .el-dialog__title,
.module-index-page-config-dialog .config-title {
  font-size: 16px;
  font-weight: bold;
  color: #222;
}

.module-index-page-config-dialog .config-learn-more {
  margin-left: 20px;
}

.module-index-page-config-dialog .el-dialog__header {
  display: flex;
  min-height: 50px;
  padding: 0 20px;
  align-items: center;
  background-color: #F8FAFC;
  border-bottom: 1px solid #ECF0F6;
}
.module-index-page-config-dialog .el-dialog__headerbtn {
  top:unset;
  font-size:20px;

}
.module-index-page-config-dialog .el-dialog__headerbtn .el-dialog__close{
  color:#222;
}

.module-index-page-config-dialog .el-dialog__footer {
  display: flex;
  min-height: 64px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #ECF0F6;
}

.module-index-page-config-dialog .el-dialog__body {
  padding: 20px 10px 20px 20px;
}

.module-index-page-config-dialog .el-dialog__header,
.module-index-page-config-dialog .el-dialog__footer {
  flex: none;
}

.module-index-page-config-dialog .el-dialog__body {
  flex: auto;
  min-height: 0;
  overflow: auto;
}


.module-index-page-config-dialog .el-dialog__body  .el-checkbox__label{
  font-weight: normal;
  color:#222;
}
.module-index-page-config-dialog .el-dialog__body .el-checkbox__input.is-checked + .el-checkbox__label {
  color: #222;
}

.module-index-page-config-dialog .config-panel {
  display: flex;
  flex-flow: column nowrap;
  background: #FFFFFF;
  border: 1px solid #D6DCE3;
}

.module-index-page-config-dialog .config-panel__header {
  flex: none;
  padding: 4px 12px;
  background-color: #F8FAFC;
  font-size: 12px;
  font-weight: bold;
  color: #222222;
  line-height: 20px;

}

.module-index-page-config-dialog .config-panel__body {
  flex: auto;
  background-color: #fff;
  overflow: auto;
}

.column-panel .config-panel__body {
  padding: 0 12px;
}

.column-panel .config-panel__body {

}

.sort-panel .config-panel__body {
  /*max-height: 320px;*/
  overflow: visible;
}

.sort-panel .sort-li {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  transition: background-color 0.2s ease-out;
}

.sort-panel .sort-li.sort-li-content:hover {
  background-color: #3394E11A;
  background-color: var(--opacity-10);
}

.sort-panel .sort-li.sort-li-content .sort-btn-wrapper a.el-link {
  visibility: hidden;
}

.sort-panel .sort-li.sort-li-content:hover .sort-btn-wrapper a.el-link {
  visibility: visible;
}

a.el-link:hover, a.el-link:active {
  text-decoration: none;
}

.sort-panel .sort-li > div {
  padding: 0 12px;
}

.sort-panel .sort-li > div:nth-child(1) {
  flex: 0 1 64px;
  min-width: 48px;
}

.sort-panel .sort-li > div:nth-child(2) {
  flex: 1 1 144px;
}

.sort-panel .sort-li > div:nth-child(3) {
  flex: 1 1 92px;
}

.sort-panel .sort-li > div:nth-child(4) {
  flex: auto;
}

.pageLayoutPic {
  width: 145px;
  height: 87px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.pageLayoutPic.horizontal {
  background-image: url("./img/layout-horizontal.png");
}

.pageLayoutPic.vertical {
  background-image: url("./img/layout-vertical.png");
}

.module-index-page-config-dialog .el-form-item {
  margin-bottom: 0;
}

.module-index-page-config-dialog .config-panel__body .el-checkbox {
  display: flex;
  flex-flow: row nowrap;
}

.module-index-page-config-dialog .config-panel__body .el-checkbox .el-checkbox__input {
  flex: none;
  align-self: center;
}

.module-index-page-config-dialog .config-panel__body .el-checkbox .el-checkbox__label {
  flex: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.module-index-page-config-dialog .el-checkbox__label,
.module-index-page-config-dialog .el-form-item__label,
.module-index-page-config-dialog .el-radio__label
{
  font-size:12px;
}

.learn-more-dialog {
  background-color: rgba(0,0,0,0.1);
  backdrop-filter: blur(5px);
}
.learn-more-dialog .el-dialog.is-fullscreen {
  background-color: unset;
  background: url("./img/grid-manual.png") no-repeat center center;
  background-size: contain;
}
.learn-more-dialog .learn-more-close {
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  font-size: 18px;
  color: #fff;
  background-color: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background-color 0.2s ease-out;
}
.learn-more-dialog .learn-more-close:hover {
  background-color: rgba(255,255,255,0.4);
}

.ag-theme-balham.is-bordered .ag-cell-value {
  min-height: 26px;
}

.ag-cell-value, .ag-group-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ag-theme-balham.is-bordered .ag-cell:not(.ag-cell-last-left-pinned) {
  box-shadow: 1px 0px 0 0px var(--ag-row-border-color, #d9dcde);
}

.ag-theme-balham[display-mode="dmm"] {
  font-size: 14px;
}

/*.ag-theme-balham[display-mode="dmm"] .ag-cell{*/
/*  padding:2px 11px;*/
/*}*/

.ag-theme-balham[display-mode="dml"] {
  font-size: 16px;
}

.ag-theme-balham.ag-theme-balham {
  --ag-border-color: #e6e6e6;
  --ag-row-border-color: #e6e6e6;
  --ag-row-hover-color: var(--opacity-5);
  --ag-selected-row-background-color: var(--opacity-10);
  --ag-data-color:#333;
  --ag-balham-active-color:var(--brand-primary);
  --ag-modal-overlay-background-color:rgba(255,255,255,0.8);
}
.ag-theme-balham.ag-theme-balham.is-striped {
  --ag-odd-row-background-color:var(--opacity-5);
}

.ag-theme-balham.ag-theme-balham .ag-header-cell {
  user-select: none;
}

.ag-theme-balham.ag-theme-balham .ag-overlay{
  height:unset;
  top:32px;
  bottom:0;
  overflow: hidden;
}

.ag-theme-balham.ag-theme-balham .ag-header-row {
  font-weight: 400;
  color: var(--ag-header-foreground-color, var(--ag-secondary-foreground-color, #333));
}

.ag-theme-balham.ag-theme-balham .ag-pinned-left-cols-container,
.ag-theme-balham.ag-theme-balham .ag-pinned-left-header,
.ag-theme-balham.ag-theme-balham .ag-pinned-right-cols-container,
.ag-theme-balham.ag-theme-balham .ag-pinned-right-header{
  box-shadow: rgb(0 0 0 / 12%) 0px 0px 10px;
  z-index: 1;
}

.ag-theme-balham.ag-theme-balham .ag-header-cell, .ag-theme-balham.ag-theme-balham .ag-header-group-cell{
  padding-left:3px;
  padding-right:3px;
}
.ag-theme-balham.ag-theme-balham .ag-cell, .ag-theme-balham.ag-theme-balham .ag-full-width-row .ag-cell-wrapper.ag-row-group{
  padding-left:2px;
  padding-right:2px;
  min-height:28px;
}

.ag-theme-balham.ag-theme-balham .ag-checkbox-input-wrapper:focus-within,
.ag-theme-balham.ag-theme-balham .ag-checkbox-input-wrapper:active{
  box-shadow: none;
}
.ag-theme-balham.ag-theme-balham .ag-overlay-loading-center{
  border:none;
  background-color: unset;
}
.ag-theme-balham.ag-theme-balham .ag-cell-wrapper{
  align-items: flex-start;
}


.br-text{
  white-space: nowrap;
  text-overflow:ellipsis;
  overflow: hidden;
}

/*.ag-theme-balham[display-mode="dml"] .ag-cell{*/
/*  padding:4px 11px;*/
/*}*/

/*.fa.fa-caret-down{*/
/*  font-family: 'Glyphicons Halflings';*/
/*  font-size:12px;*/
/*  line-height:1;*/
/*}*/