
:root {
  --bs-body-bg-rgb: 244, 244, 244;
  --bs-body-bg: #f4f4f4;
  --bs-body-font-size: 13px;
  --s-sidebar-band-bg: var(--bs-primary);
  --header-height: 48px;
  --header-bg-color: #3c8dbc;
  --s-input-padding-v: .375rem;
  --s-input-line-height: 1.5rem;
  --s-input-inner-height: 2.25rem;
  --s-input-outline: rgba(38, 113, 203, .25);
  --s-sidebar-link-active: #007eff;
  --slickgrid-header-color: #000;
}

  :root.theme-azure {
    --bs-body-font-size: 14px;
    --bs-body-bg-rgb: 0, 0, 0;
    --header-height: 62px;
    --header-bg-color: #1f7dce;
    --bs-link-color: #0f41c9;
    --bs-link-hover-color: #1c77ff;
    --s-sidebar-link-active: #007eff;
    --slickgrid-header-color: #016fce;
  }

html {
  font-size: var(--bs-body-font-size);
}

.s-container-tight,
.s-container-narrow {
  width: 100%;
  padding-right: var(--bs-gutter-x, 1.5rem);
  padding-left: var(--bs-gutter-x, 1.5rem);
  margin-right: auto;
  margin-left: auto;
}

.s-container-tight {
  max-width: 32rem;
}

.s-container-narrow {
  max-width: 48rem;
}

.s-full-page {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100vh;
}

.s-sidebar {
  position: fixed;
  top: var(--header-height);
  left: 0;
  bottom: 0;
  transform: translateX(-100%);
  z-index: 11;
  display: flex;
  width: 300px;
}

.s-sidebar-expanded .s-sidebar {
  transform: translateX(0);
}

.s-sidebar-menu,
.s-sidebar-header-actions {
  list-style: none;
  margin: 0;
  padding: 0;
}

.s-sidebar a:hover {
  text-decoration: none;
}

.s-sidebar-header-link {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.s-sidebar-header-link {
  margin-right: 1.5rem;
  font-size: 21px;
}

.s-sidebar-pane {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  bottom: 0;
  background: #fff;
  border-right: 1px solid #e8e9ea;
  font-size: 14px;
  display: flex;
  flex-direction: column;
}

.s-sidebar-icon {
  line-height: 1;
  text-align: center;
  margin-right: 8px;
  display: flex;
  justify-content: center;
  align-content: center;
  flex: 0 0 1em;
  vertical-align: middle;
  color: #0c6190;
}

.s-sidebar-link {
  vertical-align: middle;
  display: flex;
  position: relative;
  align-items: center;
  text-decoration: none;
  padding: 0.2rem 12px 0.2rem 18px;
  color: #2d3542;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
}

  .s-sidebar-link:hover,
  .s-sidebar-pane .active > .s-sidebar-link {
    color: var(--s-sidebar-link-active);
  }

    .s-sidebar-link:hover .s-sidebar-icon,
    .active > .s-sidebar-link > .s-sidebar-icon {
      color: var(--s-sidebar-link-active);
    }

.s-sidebar-menu .s-sidebar-menu {
  margin-left: 1em;
}

  .s-sidebar-menu .s-sidebar-menu .s-sidebar-link {
    font-weight: 400;
  }

.s-sidebar-link-text {
  flex-grow: 1;
}

.s-sidebar-menu-toggle {
  flex: 0 0 1em;
  text-align: center;
  transform-origin: 0.5em 50%;
}

.s-sidebar-header {
  background-color: var(--header-bg-color);
  border-bottom: 1px solid #e8e9ea;
  border: none;
  height: var(--header-height);
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
}

.s-sidebar-header-actions {
  margin-left: auto;
  display: flex;
  justify-content: center;
}

.s-sidebar-toggler {
  font-size: 32px;
  line-height: 32px;
  text-align: center;
  color: white;
  border: none;
  background: none;
}

  .s-sidebar-toggler:focus,
  .s-sidebar-toggler:focus-visible {
    outline: none;
    box-shadow: none;
  }

.s-sidebar-header-logo {
  width: calc(var(--header-height) - 12px);
  height: calc(var(--header-height) - 12px);
}

.logo-text {
  color: white;
  font-size: 2rem;
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

.s-sidebar-header-branding a{
    text-decoration:none;
}

@media (min-width: 800px) {
  .s-sidebar-header-branding .s-sidebar-header-logo {
    animation: fa-spin 10s infinite linear reverse;
  }
}

.s-sidebar-header-title {
  margin-left: 8px;
  color: #007eff;
}

[aria-expanded=true] > .s-sidebar-menu-toggle {
  transform: rotate(90deg);
}

.s-sidebar-search {
  position: relative;
}

.s-sidebar-search-icon {
  position: absolute;
  left: 0.4em;
  top: 0.4em;
  font-size: 15px;
}

.s-sidebar-search-input {
  padding-left: 2.3rem;
  border: 1px solid #ddd;
  line-height: 23px;
}

  .s-sidebar-search-input:active,
  .s-sidebar-search-input:focus {
    outline: none;
  }

.is-match > .s-sidebar-menu.collapse {
  display: block;
}

.is-match.s-sidebar-group {
  display: block;
  margin-bottom: 1.5rem;
}

.s-sidebar-item.non-match,
.s-sidebar-group.non-match {
  display: none !important;
}

.s-sidebar-item.is-match.has-children > a {
  pointer-events: none;
}

@media (min-width: 1200px) {
  .s-sidebar {
    top: var(--header-height);
    transform: translateX(0);
  }

  .s-main {
    padding-left: 300px;
  }

  .s-sidebar-toggler {
    visibility: hidden;
    width: 10px !important;
  }
}

.hidden,
:root .hidden {
  display: none !important;
}

.text-aqua {
  color: #51b6ff !important;
}

.text-blue {
  color: var(--bs-blue) !important;
}

.text-fuchsia {
  color: #f012be !important;
}

.text-gray {
  color: var(--bs-gray) !important;
}

.text-green {
  color: var(--bs-green) !important;
}

.text-light-blue {
  color: #3c8dbc !important;
}

.text-lime {
  color: #01ff70 !important;
}

.text-maroon {
  color: #d81b60 !important;
}

.text-navy {
  color: #0055ad !important;
}

.text-olive {
  color: #3d9970 !important;
}

.text-orange {
  color: var(--bs-orange) !important;
}

.text-purple {
  color: var(--bs-purple) !important;
}

.text-red {
  color: var(--bs-red) !important;
}

.text-teal {
  color: var(--bs-teal) !important;
}

.text-yellow {
  color: var(--bs-yellow) !important;
}

body.disable-css-transitions *,
body.disable-css-transitions *:after,
body.disable-css-transitions *:before {
  transition: none !important;
}

.card {
  background-color: #fff;
  border: 1px solid #e8e9ea;
  border-radius: 4px;
  box-shadow: 0 2px 4px 0 rgba(53, 65, 76, 0.03);
}

.card-header {
  border-bottom-color: #e8e9ea;
}

  .card-header:first-child {
    border-radius: 4px 4px 0 0;
  }

body {
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga" 0;
}

section.content-header {
  padding-bottom: 1rem;
}

section.content {
  padding: 1.25rem;
  min-height: calc(100vh - var(--header-height));
}

.grid-container {
  flex: 1 1 auto;
}

.s-DataGrid {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.full-height-page section.content {
  display: flex;
  flex-direction: column;
}

section.content > .s-Panel,
section.content > .s-DataGrid {
  flex: 1 1 auto;
}

@media (min-width: 768px) {
  .full-height-page section.content {
    height: calc(100vh - var(--header-height));
  }
}

section.content-header > h1 {
  font-size: 1.75rem;
}

section.content > .s-DataGrid {
  background-color: #fff;
  border: 1px solid #e8e9ea;
  padding: 1rem;
}

.slick-row {
  line-height: 19px;
}

.slick-cell a,
.category-anchor {
  text-decoration: none;
}

.slick-cell input[type=text] {
  padding-top: 0;
  padding-bottom: 0;
}

.slick-cell input[type=text],
select {
  border-color: #ddd;
  border-style: solid;
  border-width: 1px;
}

.s-Toolbar .button-inner {
  line-height: 18px;
}

.s-Form input, s-sidebar-search-input {
  padding: 5px 5px;
}

.ui-front {
  z-index: 1031;
}

.ui-dialog-titlebar-close {
  border: none;
  background: transparent;
  color: white;
}

.ui-dialog.mobile-layout .ui-dialog-titlebar-close {
  filter: invert(1);
}

.ui-dialog-buttonset button {
  border-width: 1px;
}

.ui-datepicker-trigger {
  border: none;
  background-color: transparent;
}

.fa-clipboard-check::before {
  content: "\f0c7";
}

.s-Form .caption {
  text-align: left; /*por default es rigth*/
}

/*alert-error*/
.alert.alert-error {
  color: #fff;
  background-color: #dd4b39;
}

input:focus, input:focus-visible, select:focus, select:focus-visible, textarea:focus, textarea:focus-visible, .form-control:focus, .form-control:focus-visible, input[type=checkbox]:focus, input[type=radio]:focus, .select2-container-active {
  outline: 0;
  box-shadow: 0 0 0 .15rem var(--s-input-outline);
}

.ui-widget-overlay {
  opacity: 0.3;
  background-color: black;
  cursor: not-allowed;
}
/*#region Serenity Extra*/
.inline-actions {
  opacity: 0.80;
  cursor: pointer;
}

  .inline-actions :hover {
    text-shadow: 0px 0px 1px #111;
    opacity: 1;
  }

.slick-row:hover {
  /*background: none repeat scroll 0 0 #f1f1ef;*/
  text-shadow: 0px 0px 1px #ccc;
}

/*#endregion */

/*Image Upload*/


.s-ImageUploadEditor ul, .s-MultipleImageUploadEditor ul {
  min-height: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}

  .s-ImageUploadEditor ul li, .s-MultipleImageUploadEditor ul li {
    margin-top: 8px;
    margin-bottom: 8px;
  }

.s-ImageUploadEditor .s-Toolbar, .s-MultipleImageUploadEditor .s-Toolbar {
  padding: 0px;
  min-height: 10px;
}

.s-Form .caption sup {
  float: right;
  top: 10px;
  font-size: 15px;
}

.s-Panel .s-DialogToolbar {
  border-bottom: 1px solid #e7e7e7;
}

@media (min-width: 768px) {
  .pathImage-fixed-height {
    height: 20px;
  }
}


.s-Form .caption {
  text-align: left;
  padding-left: 5px;
  padding-right: 0px;
  width: 170px;
}
/*NProgress estilos*/
#nprogress .bar {
  background: #29d;
}

#nprogress .peg {
  box-shadow: 0 0 10px #FFBB00, 0 0 5px #FFBB00;
}

#nprogress .spinner-icon {
  border-top-color: lightgray;
  border-left-color: lightgray;
  border-bottom-color: lightgray;
}

#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  left: 50%;
  /*right: 0px;*/
}


/*Inline editor en grids*/
.slick-cell.editable {
  border: 0px;
}

.col-editable .editor {
  flex: 1 auto;
  min-width: 0;
  width: 100%;
  height: 100%;
  border: 0px;
  background-color: transparent;
}

  .col-editable .editor:focus,
  .col-editable .editor:focus-visible {
    box-shadow: 0 0 0 0 var(--s-input-outline) !important; /*Para no incluir el shadow*/
  }

.col-editable .input-group-text {
  padding: 0px; /*Corregir el tamaño del % en la edicion inline del grid*/
}

.slick-cell {
  line-height: 25px;
  border-left: 1px solid #ddd !important;
  border-width: thin !important;
}

  .slick-cell.r0 {
    border-left: none !important;
  }



.inline-actions-column {
  overflow: visible; /*Evita el . . .  en la columna de edicion cuando sobrepasa*/
}
/*para que los botones alado de los fields se centren*/
.inplace-button {
  text-align: center;
  margin-top: 2px;
  /*    style="font-size:24px*/
}
  /*Tamaño del icono*/
  .inplace-button i {
    font-size: 24px;
  }

.slick-header-column.ui-state-default,
.slick-header-column.ui-state-default {
  color: var(--header-bg-color);
}


.s-user-profile-link:hover{
    color:lightblue;
}