verdocs-status-indicator {
  display: flex;
  font-size: 18px;
  flex-wrap: nowrap;
  border-radius: 6px;
  color: #33364b;
  align-items: center;
  flex-direction: row;
  font-family: "Inter", "Barlow", sans-serif;
}
verdocs-status-indicator.has-document:hover {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.1);
}
verdocs-status-indicator .icon {
  width: 25px;
  height: 25px;
  margin: 0 10px 0 0;
}
verdocs-status-indicator.dark {
  color: #ffffff;
}
verdocs-status-indicator.small {
  font-size: 16px;
}
verdocs-status-indicator.small .icon {
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0;
}
verdocs-status-indicator .content {
  white-space: nowrap;
}
verdocs-status-indicator .detail-panel {
  display: none;
  background: #ffffff;
  border: 1px solid #1e2031;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  font-weight: 500;
}
verdocs-status-indicator .detail-panel h1 {
  font-size: 44px;
  color: #092c4c;
}
verdocs-status-indicator .detail-panel[data-show] {
  display: flex;
}