.kt-btn {
  cursor: pointer;
  width: 50%;
  height: 20px;
  margin-top: 28px;
  margin-bottom: 20px;
  margin-left: -110px;
  padding-bottom: 6px;
  border: 1px solid #fff;
  border-radius: .25rem;
  color: #7aadda;
  -webkit-transition: color .15s ease-in-out;
  transition: color .15s ease-in-out;
  background-color: #fff;
  font-size: 0.8em;
}

.kt-btn:hover, .kt-btn:active, .kt-btn:focus {
  color: #fff;
  background-color: #7aadda;
}

.fa-search {
  margin-left: 0px;
}

.kt-tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted #7aadda;
}

.kt-tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: #7aadda;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  left: 0;
  top:40px;
  z-index: 1;
}

.kt-tooltip:hover .tooltiptext {
  visibility: visible;
}

/* INPUTS */
.kt-input {
    width: 100%;
    height: 27px;
    border: 1px solid #c4e5ff;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #b3b3b3;
    font-size: 0.9em;
}


/* 
  PANEL DE ALERTAS
*/

/*
.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}*/
    
.dropdown {
  position: relative;
  display: inline-block;

}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
          box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
    max-height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  width: 300px;
  font-size: .8em;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;}

span.label.label-alert {
    font-size: .1em;
    background: red;
    color: white;
    padding: 2px;
    border-radius: 50%;
    position: absolute;
    right: 12px;
    top: 2px;
    height: 15px;
    text-align: center;
}
#alerts{width: 320px;}
.card-text-alerts {
  cursor: pointer;
}
.card-text-alerts:hover {
    color: darkslategray;
}
.alerts-ul{
  line-height: .4em;
  list-style: none;
}
