.alert-color{
  color: #F96446 !important;
  font-weight: 700 !important;
}
.tooltip-font {
  font-size:16px !important; 
  font-family: Raleway !important;
}
.tooltip-inner {
    font-size: 16px;
    line-height:18px;
}
.hubdb-filter__legend{
  display:inherit;
   color: #132639;
  font-family: Raleway;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 24px;
  text-align: left;
  text-transform: uppercase;
}

.hubdb-filters__alerts{ margin-top:2rem;
}

{# Mobile #}
@media (max-width: 670px) {
  .hubdb-filters__info-alerts{
    flex-direction: column;
  }
  .hubdb-filters__alerts{
    flex-direction: column;
  }
  .hubdb-filters__info-alert{
    justify-content:center;
  }
  .hubdb-filter__legend{
    text-align:center !important;
    display:block;
    margin-top:30px;
    color: #132639;
    font-family: Raleway;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 24px;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
}

/* Results - Legend */

.providers__results-legend-title {
  font-weight: 700;
  letter-spacing: 1.5px;
  margin: 0;
  text-transform: uppercase;
}

.providers__results-legend {
  margin-bottom: 1rem;
  margin-top:2rem;
}

.providers__results-legend ul {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 -0.25rem 0 -0.25rem;
  justify-content: flex-end;
  padding: 0;
}

.providers__results-legend ul li {
  align-items: center;
  background-color: #FDEBE7;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: row;
  margin: 0.25rem;
  padding: 0.5rem 0.75rem;
}

.providers__results-legend ul li:first-child {
  background-color: transparent;
  border-radius: 0;
}

.providers__results-legend ul li > span {
  color: #F96446;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0 0.5rem;
}

@media (max-width: 767px) {
  .providers__results-legend ul {
    justify-content: center;
  }
  
  .providers__results-legend ul li {
    width: 100%;
  }
  
  .providers__results-legend ul li > span {
    font-size: 0.875rem;
  }
}

.providers__tooltip-text {
    background-color: #fdebe7;
    border-radius: .25rem;
    bottom: calc(100% + .5rem);
    display: none;
    left: 50%;
    opacity: 0;
    padding: .75rem;
    position: absolute;
    transform: translateX(-50%);
    visibility: hidden;
    width: 260px;
}

.providers__tooltip {
    position: relative;
}

.providers__tooltip:hover .providers__tooltip-text {
    display: block;
    opacity: 1;
    visibility: visible;
}

.providers__tooltip-text:after {
    background-color: #f7f7f7;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    content: "";
    height: .5rem;
    left: 50%;
    position: absolute;
    top: 100%;
    transform: translateX(-50%);
    width: 1rem;
}