/* here you can put your own css to customize and override the theme */

.grid {
  width: 100% !important;
  height: auto;
  /*
      Se comenta este atributo, para poder modelar libremente el tamaño de una table en pixeles

      min-height: 100px;
  */
  position:relative;
}

/* Para que si una celda tiene un dropdown éste sea visible */
.ui-grid-cell {
    overflow: visible;
}

.ui-grid-cell-contents
{
    overflow: visible;
    /* Bug 24766: Se agrego este estilo por bug en la libreria ui-grid al faltar el icono de selectedAll */
    min-height: 30px;
}

.ui-grid-cell-action {
    display: flex;
    align-items: center;
    justify-content: center;
}

/***
Rounded Portlets
***/
/*
.portlet {
	border-radius: 4px !important;
}

.portlet .portlet-title {
	border-radius: 4px 4px 0px 0px !important;
}

.portlet .portlet-body,
.portlet .portlet-body .form-actions  {
	border-radius: 0px 0px 4px 4px !important;
}
*/

/*
Change Quick Sidebar Width
*/

/*
.page-quick-sidebar-wrapper {
  right: -370px;
  width: 370px;
}

.page-quick-sidebar-open.page-quick-sidebar-push-content .page-sidebar-wrapper {
  margin-left: -370px;
}

.page-quick-sidebar-open.page-quick-sidebar-push-content .page-footer {
  margin-right: 370px;
  margin-left: -370px;
}

.page-sidebar-reversed.page-quick-sidebar-open.page-quick-sidebar-push-content .page-sidebar-wrapper {
  margin-right: 370px;
}

.page-quick-sidebar-open.page-quick-sidebar-push-content.page-quick-sidebar-full-height .page-header {
  margin-left: -370px;
}

.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-list {
  width: 370px !important;
}

.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-item {
  width: 370px !important;
  margin-left: 370px;
}

.page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-content-item-shown .page-quick-sidebar-list {
  margin-left: -370px;
}
*/
/*
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 300px,300px,300px,300px;
  overflow: hidden;
}

.embed-responsive.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive-item {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}*/

/* Estilos para cuando se dragguea un item dentro de la grilla */

.ui-grid-draggable-row-target {
  opacity: 1 !important;
}
.ui-grid-draggable-row {
  height: 30px;
}
.ui-grid-draggable-row-over {
  position: relative;
}
.ui-grid-draggable-row-over:before {
  content: "";
  display: block;
  background: #ff0000;
  position: relative;
  left: 0;
  width: 100%;
  border-bottom: 2px dotted #ff0000;
}
.ui-grid-draggable-row-over--above:before {
  top: 0;
}
.ui-grid-draggable-row-over--below:before {
  bottom: 0;
}

.iframe-fullscreen {
    z-index: 10060;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #f1f3fa;
}
.row-fullscreen {
    margin-left: 5px !important;
    margin-right: 5px !important;
}

/* Al tener un modal abierto evita que se haga scroll en el background*/
.modal-open {
    overflow:hidden !important;
}

.form-group {
  margin-bottom: 0px !important;
}

.form .form-section {
  margin: 5px 0px 5px 0px !important;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}

.check_inactive {
    margin-top: 30px;
    margin-left: 30px;
}

.modal-xlg {
    width: 1200px;
}