.hotspot-section{
    position: relative;
}
.hotspot-section .elementor-widget {
    position: static;
}
    /* Hotspot (����� � ������� +) */
.hotspot {
  position: absolute;
}

.hotspot.active .hotspot-btn{
  transform: rotate(45deg);
  animation: none;
}

.hotspot-btn {
  position: relative;
  display:flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;  
  border: none !important;
  outline: none !important;
  /* border-radius: 50%; */
  background-color: var(--e-global-color-1ec2c03) !important;
  box-shadow: 4px 4px 12px 0px #00000026;
  cursor: pointer;
  z-index: 2;
  padding: 0 !important;
  animation: pulse 3s infinite;
  transition: transform 0.3s ease-in-out;  
}
.hotspot-btn:hover {
  animation: none;
}
.hotspot-btn svg {
  width: 33px;
  height: 33px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(.8); }
  100% { transform: scale(1); }
}

/* Tooltip */
.tooltip {
  position: absolute;
  width: 400px;
  color: var(--e-global-color-text);
  background: var(--e-global-color-secondary);
  box-shadow: 4px 4px 12px 0px #00000026;
  border: 1px solid #00000014;
  border-radius: 16px;
  padding: 24px;
  /* font-size: 14px; */
  /* white-space: normal; */
  z-index: 5;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.tooltip--long{
width: 500px;
}
.tooltip__title{
  font-size: 20px !important;
  line-height: 24px !important;
  /* font-weight: 600; */
  margin: 0 0 12px 0;
}
.tooltip__content{
  font-size: 12px;
  line-height: 16px;
}

/* ��� ��������� */
.tooltip.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* �������������� ���������������� */
.tooltip[data-x="left"] {
  right: 100%;
}
.tooltip[data-x="right"] {
  left: 100%;
}
.tooltip[data-x="center"] {
  left: 50%;
  transform: translateX(-50%) scale(0.95);
}

/* data y */
.tooltip[data-y="top"] {
  bottom: 100%;
}
.tooltip[data-y="bottom"] {
  top: 100%;
}
.tooltip[data-y="center"] {
  top: 50%;
  transform: translateY(-50%) scale(0.95);
}

@media (max-width: 1024px) {
  .tooltip {
    padding: 20px;
  }
  .tooltip--long {
    width: 400px;
  }
  .tooltip__title{
  font-size: 18px !important;
  line-height: 22px !important;}
}