#an-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(127, 127, 127, 0.3);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

#an-popup-inner {
  background-color: white;
  padding: 25px 25px 15px 25px;
  border-radius: 10px;
  box-shadow: 0 9px 8px -3px rgb(64 60 67 / 24%), 8px 0 8px -7px rgb(64 60 67 / 24%), -8px 0 8px -7px rgb(64 60 67 / 24%);
  border: 0;
  max-width: 800px;
  width: 90%;
}

#an-popup-content {
  padding: 25px 0 0 0;
}

#an-popup-content p {
  line-height: 1.44;
}

#an-popup-footer {
  padding-top: 15px;
  text-align: center;
}

#an-popup-footer .btn {
  padding: 3px 10px;
}