.financial-screener-wrapper {
  border-radius: 20px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 8px 14px 0px rgba(0, 20, 83, 0.15);
}
.financial-screener-wrapper table {
  margin: 0;
  font-size: 11px;
  color: var(--e-global-color-text);
  table-layout: fixed;
}
.financial-screener-wrapper table thead tr {
  border-bottom: 2px solid #85d0e5;
}
.financial-screener-wrapper table tr th {
  padding: 0 0 6px;
  border: none !important;
  vertical-align: middle;
}
.financial-screener-wrapper table tbody tr:hover {
  background: #edfafc;
  cursor: pointer;
}
.financial-screener-wrapper table td,
.financial-screener-wrapper table th {
  padding: 5px 0;
  border: none;
  background: transparent !important;
  text-align: center;
}
.financial-screener-wrapper table thead th {
  font-size: 0.8em;
}
.financial-screener-wrapper table thead th span {
  display: block;
  font-size: 0.7em;
}
.financial-screener-wrapper table tbody td:first-of-type {
  border-right: 1px solid #c2e7f2;
}
.financial-screener-wrapper table tbody td span {
  display: flex;
  justify-content: center;
  border-radius: 30px;
  margin: 0 auto;
  align-items: center;
  height: 20px;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
}
.financial-screener-wrapper table tbody td span.low {
  width: 90%;
  border-width: 1px;
}
.financial-screener-wrapper table tbody td span.mid {
  width: 95%;
  border-width: 1px;
}
.financial-screener-wrapper table tbody td span.high {
  width: 99%;
  border-width: 1px;
}
.financial-screener-wrapper table tbody td span.positive {
  border-color: #00fb83;
}
.financial-screener-wrapper table tbody td span.high.positive {
  border-color: #00fb83;
  background: #00fb83;
  color: #fff;
}
.financial-screener-wrapper table tbody td span.negative {
  border-color: #ff3535;
}
.financial-screener-wrapper table tbody td span.high.negative {
  border-color: #ff3535;
  background: #ff3535;
  color: #fff;
}
.financial-screener-wrapper tbody:before,
.financial-screener-wrapper tbody:after {
  content: "";
  height: 10px;
  display: block;
}
.jet-menu-item .financial-screener-wrapper table {
  font-size: 9px !important;
}
.jet-menu-item .financial-screener-wrapper table td,
.financial-screener-wrapper table th {
  padding: 2.5px !important;
}
@media (max-width: 600px) {
  .financial-screener-wrapper table tbody td span.low {
    width: 70%;
  }
  .financial-screener-wrapper table tbody td span.mid {
    width: 80%;
  }
  .financial-screener-wrapper table tbody td span.high {
    width: 90%;
  }
}
