.ets-popup {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
}
.ets-popup.ets-popup-closed {
  display: none;
}
.ets-popup.ets-popup-opened {
  display: flex;
  opacity: 1;
}
.ets-popup .ets-popup__wrapper {
  display: flex;
  background-color: white;
  flex-direction: column;
  position: relative;
  min-width: 50px;
  min-height: 50px;
  max-width: 80%;
  max-height: 80vh;
}
.ets-popup .epw__close {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 3.5rem;
  color: #fff !important;
  z-index: 10000;
}
.ets-popup .ets-popup__header {
  width: 100%;
  padding: 1rem;
  text-align: center;
}
.ets-popup .ets-popup__header .eph__title {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 0;
}
.ets-popup .ets-popup__content {
  padding: 1rem;
  position: relative;
  max-width: 680px;
  overflow-y: auto;
}
.ets-popup .epc__image img {
  max-width: 100%;
  height: auto;
}
.ets-popup .ets-popup__footer {
  padding: 1rem;
  text-align: right;
}
.ets-popup .ets-popup__footer:empty {
  display: none;
}
.ets-popup .ets-popup__footer .epf__cta {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #ccc;
}
.ets-popup .ets-popup__footer .epf__cta:hover {
  text-decoration: none;
  color: inherit;
}

.ets-popup--image .ets-popup__content {
  padding: 0;
  max-height: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}