.ahb-popup {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.58);
}

.ahb-popup__panel {
  width: min(100%, 520px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #fff;
}

.ahb-popup__body img,
.ahb-popup__link {
  display: block;
  width: 100%;
}

.ahb-popup__body img {
  height: auto;
}

.ahb-popup__content {
  margin: 0;
  padding: 32px;
  color: #222;
  font-size: 16px;
  line-height: 1.6;
  white-space: pre-wrap;
}

.ahb-popup__actions {
  display: flex;
  min-height: 48px;
  border-top: 1px solid #e6e6e6;
}

.ahb-popup__actions button {
  min-width: 0;
  padding: 0 18px;
  border: 0;
  background: #fff;
  color: #333;
  font: inherit;
  cursor: pointer;
}

.ahb-popup__today {
  margin-right: auto;
}

.ahb-popup__close {
  border-left: 1px solid #e6e6e6 !important;
}

.ahb-popup--top {
  align-items: flex-start;
}

.ahb-popup--bottom {
  align-items: flex-end;
}

.ahb-popup--full .ahb-popup__panel {
  width: min(100%, 960px);
  max-height: calc(100vh - 48px);
}

@media (max-width: 767px) {
  .ahb-popup {
    padding: 16px;
  }

  .ahb-popup__panel {
    max-height: calc(100vh - 32px);
  }
}
