.aaa-popup-nav-wrap {
  position: fixed;
  inset: 0;
  width: 0;
  height: 0;
  z-index: 8800 !important;
  pointer-events: none;
}

.aaa-popup-nav-fab {
  pointer-events: auto;
  position: fixed;
  z-index: 8800;
  bottom: var(--aaa-offset-y, 24px);
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 999px;
  background: var(--aaa-accent, #c02f8f);
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.aaa-popup-nav-position-right .aaa-popup-nav-fab {
  pointer-events: auto;
  right: var(--aaa-offset-x, 24px);
}

.aaa-popup-nav-position-left .aaa-popup-nav-fab {
  pointer-events: auto;
  left: var(--aaa-offset-x, 24px);
}

.aaa-popup-nav-fab:hover,
.aaa-popup-nav-fab:focus {
  transform: translateY(-1px);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.24);
  outline: none;
}

.aaa-popup-nav-fab-icon svg {
  width: 31px;
  height: 31px;
}

.aaa-popup-nav-backdrop {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 8800;
  pointer-events: none;
  display: none !important;
}

.aaa-popup-nav-panel {
  position: fixed;
  inset: 0;
  z-index: 8800 !important;
  pointer-events: none;
}

.aaa-popup-nav-card {
  pointer-events: auto;
  position: absolute;
  z-index: 8800;
  bottom: calc(var(--aaa-offset-y, 24px) + 78px);
  width: min(var(--aaa-panel-width, 325px), calc(100vw - 32px));
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.20);
  padding: 28px 31px 26px;
  pointer-events: auto;
}

.aaa-popup-nav-position-right .aaa-popup-nav-card {
  pointer-events: auto;
  right: var(--aaa-offset-x, 24px);
}

.aaa-popup-nav-position-left .aaa-popup-nav-card {
  pointer-events: auto;
  left: var(--aaa-offset-x, 24px);
}

.aaa-popup-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.aaa-popup-nav-header h3 {
  margin: 0;
  color: #333;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
}

.aaa-popup-nav-close {
  position: relative;
  z-index: 8800;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  color: var(--aaa-accent, #c02f8f);
  box-shadow: 0 3px 10px rgba(0,0,0,.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
  transition: transform .18s ease;
}

.aaa-popup-nav-close:hover,
.aaa-popup-nav-close:focus {
  transform: scale(1.04);
  outline: none;
}

.aaa-popup-nav-close svg {
  width: 17px;
  height: 17px;
}

.aaa-popup-nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aaa-popup-nav-menu li {
  margin: 0;
}

.aaa-popup-nav-menu a {
  display: block;
  color: #5d5d5d;
  text-decoration: none;
  font-size: 17px;
  line-height: 1.45;
  padding: 10px 0 10px;
  border-bottom: 1px solid #d8d8d8;
  transition: color .18s ease, padding-left .18s ease;
}

.aaa-popup-nav-menu a:hover,
.aaa-popup-nav-menu a:focus {
  color: var(--aaa-accent, #c02f8f);
  padding-left: 4px;
  outline: none;
}

.aaa-popup-nav-actions {
  margin-top: 18px;
}

.aaa-popup-nav-cta {
  display: block;
  background: var(--aaa-accent, #c02f8f);
  color: var(--aaa-cta-text, #fff) !important;
  text-decoration: none;
  text-align: center;
  padding: 14px 16px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 20px;
}

.aaa-popup-nav-cta:hover,
.aaa-popup-nav-cta:focus,
.aaa-popup-nav-cta:visited,
.aaa-popup-nav-cta:active {
  color: var(--aaa-cta-text, #fff) !important;
  opacity: .94;
  outline: none;
}

.aaa-popup-nav-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--aaa-accent, #c02f8f);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.aaa-popup-nav-secondary a:hover {
  color: #99c339;
}

.aaa-popup-nav-secondary span {
  font-size: 23px;
  line-height: 1;
}

html.aaa-popup-nav-open,
html.aaa-popup-nav-open body {
  overflow: auto !important;
}

@media (max-width: 767px) {
  .aaa-popup-nav-fab {
  pointer-events: auto;
    width: 62px;
    height: 62px;
    bottom: 22px;
  }

  .aaa-popup-nav-position-right .aaa-popup-nav-fab {
  pointer-events: auto;
    right: 22px;
  }

  .aaa-popup-nav-position-left .aaa-popup-nav-fab {
  pointer-events: auto;
    left: 22px;
  }

  .aaa-popup-nav-card {
  pointer-events: auto;
    bottom: 100px;
    width: min(var(--aaa-panel-width, 325px), calc(100vw - 24px));
    padding: 26px 30px 24px;
  }

  .aaa-popup-nav-position-right .aaa-popup-nav-card {
  pointer-events: auto;
    right: 12px;
  }

  .aaa-popup-nav-position-left .aaa-popup-nav-card {
  pointer-events: auto;
    left: 12px;
  }
}

@media (min-width: 768px) {
  .aaa-popup-nav-mobile-only .aaa-popup-nav-fab,
  .aaa-popup-nav-mobile-only .aaa-popup-nav-panel,
  .aaa-popup-nav-mobile-only .aaa-popup-nav-backdrop {
    display: none !important;
  }
}


.aaa-popup-nav-backdrop[hidden],
.aaa-popup-nav-panel[hidden] {
  display: none !important;
}
