
.ffsi-box {
  margin: 10px 15px 10px 15px;
  padding: 10px;
  background: #f6f9fc;
  border: 1px solid #dbe4ee;
  border-radius: 4px;
  font-size: 14px;
}

.ffsi-text {
  margin-bottom: 6px;
}

.ffsi-progress {
  width: 100%;
  height: 8px;
  background: #e1e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.ffsi-bar {
  height: 100%;
  background: #5bc0de;
  transition: width 0.6s ease;
}


.ffsi-tooltip {
  position: relative;
  display: inline-block;
  margin-left: 6px;
}

.ffsi-info-icon {
  cursor: pointer;
  font-size: 14px;
}

.ffsi-tooltip-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 8px 10px;
  border-radius: 4px;
  font-size: 12px;
  width: 220px;
  text-align: left;
  z-index: 1000;
  transition: opacity 0.2s ease;
}

.ffsi-tooltip:hover .ffsi-tooltip-content {
  visibility: visible;
  opacity: 1;
}
