/**
  En este documento se definen estilos base abstractos que deben ser respetados por el resto
  de las implementaciones de estilos del sistema.
**/

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
}

#cover-home {
  background-size: cover;
  width: 100%;
  height: 100%;
}

.cover-home1 {
  background: #000 url(/static/images/wallpapers/1.jpeg) no-repeat center center fixed;
}
.cover-home2 {
  background: #000 url(/static/images/wallpapers/2.jpeg) no-repeat center center fixed;
}
.cover-home3 {
  background: #000 url(/static/images/wallpapers/3.jpeg) no-repeat center center fixed;
}
.cover-home4 {
  background: #000 url(/static/images/wallpapers/4.jpeg) no-repeat center center fixed;
}
.cover-home5 {
  background: #000 url(/static/images/wallpapers/5.jpeg) no-repeat center center fixed;
}
.cover-home6 {
  background: #000 url(/static/images/wallpapers/6.jpeg) no-repeat center center fixed;
}
.cover-home7 {
  background: #000 url(/static/images/wallpapers/7.jpeg) no-repeat center center fixed;
}
.cover-home8 {
  background: #000 url(/static/images/wallpapers/8.jpeg) no-repeat center center fixed;
}
.cover-home9 {
  background: #000 url(/static/images/wallpapers/9.jpeg) no-repeat center center fixed;
}
.cover-home10 {
  background: #000 url(/static/images/wallpapers/10.jpeg) no-repeat center center fixed;
}
.cover-home11 {
  background: #000 url(/static/images/wallpapers/11.jpeg) no-repeat center center fixed;
}
.cover-home12 {
  background: #000 url(/static/images/wallpapers/12.jpeg) no-repeat center center fixed;
}
.cover-home13 {
  background: #000 url(/static/images/wallpapers/13.jpeg) no-repeat center center fixed;
}
.cover-home14 {
  background: #000 url(/static/images/wallpapers/14.jpeg) no-repeat center center fixed;
}
.cover-home15 {
  background: #000 url(/static/images/wallpapers/15.jpeg) no-repeat center center fixed;
}
.cover-home16 {
  background: #000 url(/static/images/wallpapers/16.jpeg) no-repeat center center fixed;
}
.cover-home17 {
  background: #000 url(/static/images/wallpapers/17.jpeg) no-repeat center center fixed;
}
.cover-home18 {
  background: #000 url(/static/images/wallpapers/18.jpeg) no-repeat center center fixed;
}
.cover-home19 {
  background: #000 url(/static/images/wallpapers/19.jpeg) no-repeat center center fixed;
}

#sidebar-wrapper {
  min-height: 100vh;
  margin-left: -15rem;
  -webkit-transition: margin .25s ease-out;
  -moz-transition: margin .25s ease-out;
  -o-transition: margin .25s ease-out;
  transition: margin .25s ease-out;
  background-color: #3E5364;
}

#sidebar-wrapper .sidebar-heading {
  padding: 1em 1.25rem;
  font-size: 1.1rem;
  color: white;
  font-weight: bold;
  text-align: center;
}

#sidebar-wrapper .sidebar-heading a {
  color: white;
  text-decoration: none;
}

#sidebar-wrapper .list-group {
  width: 15rem;
}

#page-content-wrapper {
  min-width: 100vw;
}

#wrapper.toggled #sidebar-wrapper {
  margin-left: 0;
}

@media (min-width: 768px) {
  #sidebar-wrapper {
    margin-left: 0;
  }

  #page-content-wrapper {
    min-width: 0;
    width: 100%;
  }

  #wrapper.toggled #sidebar-wrapper {
    margin-left: -15rem;
  }
}


/**
  fixed-container - Contenedor principal, fijo con scroll automático en el eje Y
**/

.fixed-container {
  max-height: 100%;
  max-width: 100%;
  position: fixed;
  overflow-y: scroll;
}

/** 
  Background Colors & Text Colors
**/

.bg-green {
  background-color: var(--tripanGreen);
}

.color-green {
  color: var(--tripanGreen);
}

/** 
  Menu
**/
.menu-item {
  background-color: var(--secondary);
  border-top: none;
}

.menu-item .fa {
  width: 25px;
}

.menu-item:hover {
  border-bottom: 1px solid var(--darkGreenBorders) !important;
  color: var(--darkGreenBorders);
}

.menu-item:selected {
  font-weight: bold;
}

.btn.btn-menu-switcher {
  border: none;
}

.btn.btn-menu-switcher:selected {
  border: 1px solid var(--darkGreenBorders) !important;
}

.btn-menu-switcher {
  color: var(--light);
}

.nav-link {
  color: var(--light) !important;
}

/** 
  Footer
**/

.footer {
  background-color: var(--tripanGreen);
  color: #ffffff;
  padding: 5px;
}

/**
  Forms
**/
.error, .error small {
  color: var(--error) !important;
}

.form-control.error {
  border: 1px solid var(--error);
}

.form-group.error input {
  border: 1px solid var(--error);
}

/**
  Calendar control
**/
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/**
  Loading overlay spinner
**/
#overlay-spinner {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.800);
  z-index: 9999;
  display: none;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

#overlay-spinner span {
  content: 'Cargando datos...';
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
  display: block;
  position: absolute;
  left: 50%;
  top: 49%;
  margin-right: -50%;
  transform: translate(-50%, -50%)
}

#overlay-spinner::after {
  content: '';
  display: block;
  position: absolute;
  left: 48%;
  top: 40%;
  width: 40px;
  height: 40px;
  border-style: solid;
  border-color: rgb(255, 255, 255);
  border-top-color: transparent;
  border-width: 4px;
  border-radius: 50%;
  -webkit-animation: spin .8s linear infinite;
  animation: spin .8s linear infinite;
}

/**
  Datatable backgrounds green palette
**/
.table-bg-green td {
  border: 1px solid var(--light);
}

.table-bg-green tr:hover td {
  font-weight: bold;
  /*color: var(--tripanGreen);*/
  background-color: var(--greenTableRowOdd);
  transition-timing-function: ease-in;
  -webkit-transition: all .1s;
  -moz-transition: all .1s;
  -o-transition: all .1s;
  transition: all .1s;
}

.table-bg-green tbody tr:nth-of-type(odd) {
  background-color: var(--greenTableRowOdd) !important;
}

.table-bg-green tbody tr:nth-of-type(even) {
  background-color: var(--greenTableRowEven) !important;
}

/**
  Datatable backgrounds green palette - Pagination block
**/
.pagination .page-link {
  color: var(--gray-dark);
}

:link:focus,
:visited:focus {
  outline: none;
}

.pagination .active .page-link {
  background-color: var(--tripanGreen);
  border-color: transparent;
}

/**
  Material Ripple button effect
**/

.ripple {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  outline: 0;
}

.ripple:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform .5s, opacity 1s;
}

.ripple:active:after {
  transform: scale(0, 0);
  opacity: .3;
  transition: 0s;
}

/* Side Off canvas menu */

.list {
  /*max-height: 80vh;*/
  padding: 0 1.25rem;
  font-size: 11px;
}

.list-item {
  padding: 0;
  margin-top: 0.625rem;
  line-height: 2.125rem;
}

.list-title {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: bold;
}

.list-hidden {
  display: none;
  padding-left: 0.625rem;
  margin: 0.9375rem 0 0.9375rem 0.625rem;
}

.list-link {
  display: block;
  padding: 0 0.625rem;
  margin-bottom: 0.125rem;
  border-radius: 0.25rem;
  color: #fff
}

.list-link .fa {
  margin-right: 5px;
  width: 10px;
}

.link-current,
.list-link:hover {
  text-decoration: none;
  background-color: var(--tripanGreen);
  color: var(--white);
}

.list-link:hover .fa {
  transform: rotate(360deg);
  transition: 0.5s all;
}

.link-arrow:before {
  font-family: "FontAwesome";
  margin-right: 0.1875rem;
  float: right;
}

.link-arrow.up:before {
  content: "\f106";
}

.link-arrow.down:before {
  content: "\f107";
}

.link-arrow.transition:before {
  transition: 0.2s all;
}

.link-arrow.rotate:before {
  transform: rotate(180deg);
}

.link-arrow.rotate-revert:before {
  transform: rotate(-180deg);
}

.list-scrollbar {
  position: relative;
  overflow: hidden;
}

/* custom */

ul.list-unstyled li {
  white-space: nowrap;
}

img.user_avatar {
  width: 35px;
  border-radius: 34px;
  margin-right: 5px;
}

.logout-link {
  margin-left: 10px;
}

.object_list_cell_content a {
  color: #0c964d;
  text-decoration: none;
}

form.list-filters {
  padding: 0 20px 0 20px;
}

.badge {
  font-size: inherit;
}

.detail-buttons {
  margin-bottom: 10px;
}

.detail-buttons a, .detail-buttons button {
  margin-right: 10px;
}

.edit-buttons a, .edit-buttons button {
  margin-right: 10px;
}

label.required {
  font-weight: bold;
}

ul.field-errors li {
  list-style: none;
  font-size: 13px;
  margin-top: 5px;
}

.errorlist {
  padding-left: 30px;
}

.btn {
  font-size: 12px;
}

.navbar {
  padding: .65rem 1rem;
}

small {
  font-size: 90%;
}

.form-control {
  font-size: 13px;
}

.chosen-container {
  width: 100% !important;
}

form.list-filters .btn {
  margin-right: 5px;
}

/*
 Remove right margin to the last item in the content row.
*/
form.list-filters .btn:last-child {
  margin-right: 0;
}

.grow-children .form-group {
  margin: 0 5px 16px;
  flex-grow: 1;
  flex-basis: 0;
}

a.user_link {
  color: #fff;
  float: left;
  margin-top: 9px;
  text-decoration: none;
}

.table-bg-green thead td {
  background-color: #006666;
  color: #fff;
}

a {
  color: green;
  font-weight: bold;
  text-decoration: none;
}

#tblData th {
  width: 49.0104px;
  background: #3E5364;
  color: #fff;
  vertical-align: middle;
  }

.m-login__action {
  float: left;
}

.password-recovery-link {
  text-align: right;
  float: right; 
  margin-top: 10px;
}
.password-recovery-link a {
  text-decoration: none;
  color: #fff;
}

.login-footer {
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  text-align: center;
}
.login-footer a {
  text-decoration: none;
  color: #fff;
}

.help-information {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    width: 100%;
    margin-top: 40px;
    color: #fff;
}
.help-information a {
  text-decoration: none;
  color: #fff;
}

.fa-2 {
  font-size: 20px;
}

.info-message {
    background-color: #f7c17b;
    padding: 10px;
    border-radius: 5px;
    color: #000;
    width: 50%;
}
.info-message i {
    vertical-align: middle;
    margin-right: 5px;
    color: darkred;
}

.swal-confirm-button {
  background-color:#89a332;
}

td.dt-body-center {
  text-align: center;
}

i.scalereading_info {
  color: indianred; 
  cursor: pointer;
}

tr.status-open td {
  background: orange;
}

.SelectMultipleForm h2{
  margin-bottom: 0;
  font-size: 1.5em;
}
.SelectMultipleForm .selector-chosen h2{
  background: #86a641;
}
.see-more{
  color: inherit;
  font-weight: 600;
  padding: 0;
  cursor: default !important;
}

a.action {
  margin-right: 6px;
}

.table-bg-green tbody tr.volume_exceeded {
  background-color: orange !important;
}

#menu-search {
  outline: none;
  border-top: none;
  border-bottom: none;
  border-left: none;
  border-right: 1px solid #ccc;
  padding-left: 7px;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #122a40;
  color: white;
}

#menu-search::placeholder {
    color: rgba(255, 255, 255, 0.8);!important;
}