/* Popup Loja Física ApoloEX v1.0.2 */

.apx-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: apxFadeIn 0.25s ease;
}

.apx-popup-box {
  position: relative;
  width: 100%;
  max-width: 430px;
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 26px 26px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  font-family: Arial, Helvetica, sans-serif;
  animation: apxZoomIn 0.25s ease;
}

.apx-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: transparent;
  font-size: 22px;
  color: #777;
  cursor: pointer;
}

.apx-popup-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.apx-popup-title {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin: 0 0 14px;
  line-height: 1.25;
}

.apx-popup-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin: 0 0 12px;
}

.apx-popup-text strong {
  color: #111;
}

.apx-popup-footer {
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

.apx-popup-button {
  width: 100%;
  margin-top: 18px;
  border: none;
  border-radius: 14px;
  padding: 14px 18px;
  background: #111;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

@keyframes apxFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes apxZoomIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .apx-popup-box {
    padding: 28px 22px 24px;
  }

  .apx-popup-title {
    font-size: 20px;
  }

  .apx-popup-text {
    font-size: 14px;
  }
}