.floating-element {
  position: var(--floating-position, absolute);
  left: var(--floating-left, 0);
  top: var(--floating-top, 0);
  visibility: var(--floating-visibility, hidden);
  opacity: var(--floating-opacity, 0);
  min-width: var(--floating-min-width, auto);
  max-width: var(--floating-max-width, auto);
  max-height: var(--floating-max-height, 350px);
  width: max-content;
  z-index: 70;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #e4e6ef;
  border-radius: 0.62rem;
  box-shadow: 4px 4px 34px 0px rgba(0, 0, 0, 0.0509803922);
}
.floating-element--hidden {
  display: none;
}
