.order-containers {
  position: relative;
  overflow: visible;
}
.hint {
  position: absolute;
  left: 0;
  top: calc(100% + 20px);
  border-radius: 8px;
  padding: 20px;
  background: #FFFFFF;
  width: 100%;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.3);
  display: none;
}

.hint-option {
  display: block;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 8px;
}

.hint-option:hover {
  background: #8bb5fc;
  color: #FFFFFF;
}

.active-hint {
  display: block;
}