/* Overlay Styles */

:root {
  --designColor: #f7f7f7;
  --borderRadius: 0px;
}

.a-overlay {
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.5s;
}

.a-none, .a-hidden {
  display: none;
}

/* Popup Positioning */
.a-popup {
  position: absolute;
  background: #ffffff;
  color: #000000;
  padding: 24px 24px;
  box-shadow: 0 14px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: var(--borderRadius);
}

.a-popup__close {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--designColor);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 100;
  cursor: pointer;
  border: none;
  border-radius: var(--borderRadius);
}

/* Animation */
.a-overlay {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.a-overlay.active {
  opacity: 1;
}

.a-popup {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.a-overlay.active .a-popup {
  opacity: 1;
}

/* Positions */
.position-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.position-bottom-right {
  bottom: 20px;
  right: 20px;
}

.position-bottom-left {
  bottom: 20px;
  left: 20px;
}

/* Add other positions as needed */
