ul.dropdown-menu li a:first-letter {
  text-transform: uppercase;
}

.well {
  margin: 5px;
}

.alert {
  margin: 5px;
}

.alert a {
  color: white;
  text-decoration: underline;
}

.modal-header .close {
  color: #222222;
}

.modal-footer {
  margin: 0px;
}

.autocomplete-suggestions {
  border: 1px solid #999;
  background: #FFF;
  overflow: auto;
}

.autocomplete-suggestion {
  padding: 2px 5px;
  white-space: nowrap;
  overflow: hidden;
}

.autocomplete-selected {
  background: #D9EDF7;
}

.autocomplete-suggestions strong {
  font-weight: normal;
  color: #3399FF;
}

.clickableRow:hover {
  cursor: pointer;
}

.modal-dialog {
  z-index: 1050;
}

.appheader {
  display: flex;
  justify-content: space-between;
  align-content: center;
}

.appheader2 {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 100%;
}

.overlay {
  display: none;
}

.overlay__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  opacity: 0;
  transition: opacity 0.2s;
  will-change: opacity;
  background-color: #000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.overlay__header {
  /* Optional */
  padding: 1.5rem;
  display: none;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.overlay__close {
  /* Optional */
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='15px' height='16px' viewBox='0 0 15 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='2.-Menu' transform='translate(-15.000000, -13.000000)' stroke='%23000000'%3E%3Cg id='Group' transform='translate(15.000000, 13.521000)'%3E%3Cpath d='M0,0.479000129 L15,14.2971819' id='Path-3'%3E%3C/path%3E%3Cpath d='M0,14.7761821 L15,-1.24344979e-14' id='Path-3'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  width: 15px;
  height: 15px;
}

.overlay__wrapper {
  width: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 0;
  max-width: 540px;
  max-height: 80vh;
  transition: transform 0.2s, opacity 0.2s;
  will-change: transform;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  -webkit-transform: translateY(5%);
  transform: translateY(5%);
  -webkit-overflow-scrolling: touch;
  /* enables momentum scrolling in iOS overflow elements */
  /* Optional */
  box-shadow: 0 2px 6px #777;
  border-radius: 5px;
  margin: 20px;
}

.overlay__content {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  flex-grow: 1;
  /* Optional */
  /*  padding: 1.5rem; */
}

.overlay.is-active {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 9999;
}

.overlay.is-visible .overlay__wrapper {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.overlay.is-visible .overlay__overlay {
  opacity: 0.5;
}

.options ul {
  padding: 8px 0;
  list-style-type: none;
  margin: 0;
}

.options a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0 16px;
  cursor: pointer;
  text-decoration: none;
}

.options a:hover {
  background-color: #4353FF;
  color: white;
}

/* card css ui */

.card {
  position: relative;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  /*  border: 1px solid rgba(0,0,0,.125); */
  border-radius: .25rem;
  margin-bottom: 30px;
}

img.card-img-top {
  border-top-left-radius: calc(.25rem - 1px);
  border-top-right-radius: calc(.25rem - 1px);
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.card-body {
  padding: 2px;
  text-align: center;
}

.card-footer {
  text-align: center;
  padding: 2px 0;
}

.card a:first-child {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* Cards Horizontal */

.card.horizontal {
  min-height: 195px;
}

.card.horizontal .card-img-top {
  position: absolute;
  height: 100%;
  width: 50%;
  border-bottom: 0;
  object-fit: contain;
  object-position: center;
}

.card.horizontal .card-body {
  position: absolute;
  height: 100%;
  width: 50%;
  right: 0;
}

.card.horizontal .card-body p.card-text {
  font-size: 12px;
}

.card.horizontal .card-footer {
  position: absolute;
  width: 50%;
  bottom: 0;
  right: 0;
}




/* exp card */
.expcard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; 
  border-radius: 10px;
  /* background: gray;  */
  padding: 1em;
  margin-top: 5px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.expcard-Normal {
  border-left: 10px solid #4FC1E9;;
}
.expcard-Medio {
  border-left: 10px solid #AC92EC;;
}
.expcard-Alto {
  border-left: 10px solid #FFCE54;;
}
.expcard-Critico {
  border-left: 10px solid #ED5565;;
}

  
.expcard-info {
/*   text-align: center; */
  flex: 1;
  width: 100%;
  font-weight: bold;
  margin-bottom: 3em; /* maybe remove?*/
  
}

.expcard-actions {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}




root {
  --ggs: .9;
}

.knopf-menu {
  --knopf-hue: 262;
  --knopf-saturation: 57%;
  --knopf-luminosity: 51%;
}

.knopf-primary {
  --knopf-hue: 211;
  --knopf-saturation: 100%;
  --knopf-luminosity: 51%;
}

.knopf-secondary {
  --knopf-hue: 211;
  --knopf-saturation: 100%;
  --knopf-luminosity: 51%;
}

.knopf-warning {
  --knopf-hue: 45;
  --knopf-saturation: 100%;
  --knopf-luminosity: 51%;
}
.knopf-success {
  --knopf-hue: 134;
  --knopf-saturation: 70%;
  --knopf-luminosity: 41%;
}
.knopf-danger {
  --knopf-hue: 354;
  --knopf-saturation: 70%;
  --knopf-luminosity: 54%;
}
.knopf-info {
  --knopf-hue: 187;
  --knopf-saturation: 57%;
  --knopf-luminosity: 51%;
}
.knopf-default {
  --knopf-hue: 4;
  --knopf-saturation: 57%;
  --knopf-luminosity: 51%;
}
.knopf-gray {
  --knopf-hue: 210;
  --knopf-saturation: 11%;
  --knopf-luminosity: 71%;
}


.watap {
  --knopf-hue: 174;
  --knopf-saturation: 65%;
  --knopf-luminosity: 53%;
}

/* Knopf Colors */

.double-val-label {
  display: flex;
  font-family: 'Roboto', sans-serif;
  margin: 0.4em;
}

.double-val-label>span {
  background-color: #434A54;
  color: #ffffff;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1;
  padding: 0.3em 0.6em;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
}

.double-val-label>span:first-child {
  border-bottom-left-radius: 0.25em;
  border-top-left-radius: 0.25em;
}

.double-val-label>span:nth-child(2) {
  border-bottom-right-radius: 0.25em;
  border-top-right-radius: 0.25em;
}

.double-val-label>span.primary {
  background-color: #337ab7;
}

.double-val-label>span.Normal {
  background-color: #00bdff;
}

.double-val-label>span.Medio {
  background-color: #AC92EC;
}

.double-val-label>span.Alto {
  background-color: #FFCE54;
}

.double-val-label>span.Critico {
  background-color: #ff7300;
}


.styled-table { border-collapse: collapse; font-size: 0.9em; font-family: sans-serif; min-width: 400px; box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); }


.styled-table thead tr { background-color: white; color: black; text-align: left; }

.styled-table th, .styled-table td { padding: 12px 15px; }

.styled-table tbody tr { border-bottom: 1px solid #dddddd; } .styled-table tbody tr:nth-of-type(even) { background-color: white; } .styled-table tbody tr:last-of-type { border-bottom: 2px solid #009879; }



.form-control:focus { border-color: #2196F3; box-shadow: 0 0 0 0.3rem rgba(33, 150, 243, 0.29); } 



