.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.agenda-popup__trigger {
  /* default styles reset */
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: normal;

  text-decoration: underline;
  display: block;
  color: #0070c0;
  margin: 5px 0;
}

.agenda-popup {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: scale(1.3);
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 17, 17, 0.61);
  display: flex;
  align-items: center;
  justify-content: center;
}

.agenda-popup.shown {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.agenda-popup__wrapper {
  position: relative;
  background-color: #fff;
}

.agenda-popup__content {
  padding: 30px;
  width: 80vw;
  height: 80vh;
  max-width: 600px;
  max-height: 500px;
  overflow-y: auto;
}

@media only screen and (min-width: 768px) {
  .agenda-popup__content {
    padding: 40px 60px;
  }
}

.agenda-popup__close {
  /* default styles reset */
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: normal;

  font-size: 35px;
  position: absolute;
  top: -3px;
  right: 8px;
}
.agenda-popup__header {
  margin-bottom: 10px;
}

.agenda-popup__content ol,
.agenda-popup__content ul {
  padding-left: 20px;
}
