.grupper-container {
	display: flex;
	flex-wrap:wrap;
	gap: 30px;
}

.grupper-item .options.options {
	display: block;
	width: 100%;
	background: none;
	padding: 0;
	min-width: auto;
}
@media (max-width: 450px) {
	.grupper-item ul.options {
		min-width: 100%;
	}
}
.grupper-item li {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dotted #CADCF8;
}

.grupper-item strong {
	display: block;
	padding-bottom: 16px;
}

.grupper-item span {
	margin-bottom: -3px;
}

.grupper-item b {
	background-color: aliceblue;
	margin-bottom: -3px;
}











.prop-hint-btn{
  display: inline-flex;
  margin-left: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
}

.prop-hint-btn__icon{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #cfcfcf;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  background: #fff;
  user-select: none;
}

.ai-tooltip{
  position: fixed;
  z-index: 1000000;
  max-width: min(360px, calc(100vw - 24px));
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #e6e6e6;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  border-radius: 6px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  opacity: 0;
  pointer-events: none;
  transition: opacity .12s ease;
}

.ai-tooltip.is-open{
  opacity: 1;
  pointer-events: auto;
}

.ai-tooltip__arrow{
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  border-left: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  transform: rotate(45deg);
}
