.awx-header-cta {
  display: flex;
  align-items: center;
  /* vertikal ausrichten */
  gap: 8px;
}

.awx-header-cta .awx-arrow {
  margin-left: -16px;
  margin-top: 5px;
}

.awx-overlay-left {
  position: sticky !important; /* statt fixed */
  position: -webkit-sticky !important; /* Safari */
  top: 0;
  left: 0;
  width: 50%;
  z-index: 999;
}

.awx-close-overlay {
  background-image: url("../images/svg/close-orange.svg");
  background-repeat: no-repeat;
  cursor: pointer;
  position: fixed;
  top: 25px !important;
  right: 25px !important;
  transition: transform 0.5s ease;
  transform-origin: center center;
  width: 64px !important;
  height: 64px !important;
}

.awx-close-overlay:hover {
  transform: rotate(180deg);
}
