.general-charts-block {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.general-chart-container {
  width: 45%;
}

.chart-table-container {
  padding-left: 20px;
  width: 55%;
}

.chart-table {
  width: 100%;
  border-collapse: collapse;
}

.chart-table th,
.chart-table td {
  border: 1px solid #ddd0;
  padding: 8px;
}

.chart-table .table-percentage {
  width: 5%;
}

.table-policy-name a {
  color: #fff;
}
.table-policy-name a:hover {
  color: #d10002;
  text-decoration: underline;
}

.chart-table .table-policy-name {
  color: #fff;
  font-weight: 800;
}

.chart-table .table-percentage {
  font-weight: 800;
  text-align: right;
}

#charts-container-general-charts .bb-chart-arcs-title {
  font-size: 16px;
}

.table-stability-objetive {
  position: relative;
  display: inline-block;
  color: #006080;
}

.table-stability-objetive .tooltip-text {
  visibility: hidden;
  position: absolute;
  width: 150px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 10px;
  z-index: 1;
  opacity: 0;
  transition: opacity .6s;
}

.table-stability-objetive span {
  border-bottom: 1px dotted #8d8d8d;
}

.tooltip-text {
  top: -5px;
  right: 115%;
}

.tooltip-text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #555;
}

.table-stability-objetive:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}



