.service-help {
	position: fixed;
	right: 24px;
	bottom: 92px;
	z-index: 1000;
	display: flex;
	align-items: flex-end;
}

.service-help__toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: none;
  cursor: pointer;
  flex: 0 0 auto;
  padding: 0;
  border-radius: 50%;
  background: radial-gradient(113.62% 74.62% at 104.93% 99%, #ff64a3 0%, rgba(255, 255, 255, 0.00) 100%),
              radial-gradient(111.37% 95.34% at 4.07% -18%, #7373fd 0%, rgba(255, 255, 255, 0.00) 100%),
              #FFF;
}
.service-help__toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: radial-gradient(112.82% 100.82% at 0.64% -20.29%, #ff64a3 0%, rgba(255, 255, 255, 0.00) 100%),
              radial-gradient(105.8% 71.57% at 94.82% 100%, #8383ff 0%, rgba(255, 255, 255, 0.00) 100%),
              #FFF;

  opacity: 0;
  transition: opacity 0.3s ease;
}

/* hover */
.service-help__toggle:hover::before {
  opacity: 1;
}
.service-help__toggle svg {
  filter: drop-shadow(0 4px 10px rgba(177, 137, 248, 0.72));
}

.service-help__toggle--new::after {
	content: "";
	position: absolute;
	top: 4px;
	right: 4px;
	width: 10px;
	height: 10px;
	background: #FF7188;
	border-radius: 50%;
	box-sizing: border-box;
}

.service-help__popover {
	position: absolute;
	right: 0;
	bottom: 72px;
	width: 280px;
	max-width: 90vw;
	padding: 20px;
	background: #FFFFFF;
	border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.service-help__popover[hidden] {
	display: none;
}

.service-help__popover::after {
	content: "";
	position: absolute;
	right: 21px;
	bottom: -10px;
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 10px solid #FFFFFF;
}

.service-help__close {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
}

.service-help__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.service-help__title-wrap {
	width: 100%;
}

.service-help__title {
  padding-right: 12px;
  font-family: Inter, Arial, sans-serif;
	font-size: 14px;
	line-height: 22px;
	font-weight: 600;
	color: #242426;
}

.service-help__text {

  font-family: Inter, Arial, sans-serif;
	font-size: 12px;
	line-height: 18px;
	color: #48494D;
	word-break: break-word;
  margin-top: 8px;
}

.service-help__link {

  font-family: Inter, Arial, sans-serif;
	font-size: 13px;
	line-height: 20px;
	font-weight: 600;
	color: #436FFF;
	text-decoration: none;
  margin-top: 12px;
}

.service-help__link:hover {
	text-decoration: underline;
}

@media (max-width: 767px) {
	.service-help {
		display: none;
	}
}


