.modal{
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0!important;
  margin: 0!important;
  z-index: 10000;
}
.modal__bg{
  background: rgba(0,0,0,0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content{
  background: #fff;
  left: 50%;
  padding: 40px;
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 60%;
}
@media screen and (max-width: 580px) {
  .modal__content{
    width: 85%;
    overflow-y: auto;
    overflow-scrolling: touch;
	  -webkit-overflow-scrolling: touch;
    padding: 1.5rem;
    max-height: 100%;
  }
}
.section .modal__content a {
  display: block;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
.section .modal__content a.js-modal-close {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
  display: inline;
}
.section.relatedData .content .overview + .overview {
  justify-content: flex-end;
}
.section.relatedData .content .overview a.js-modal-open {
  background-color: transparent;
}
.section.relatedData .content .overview + .overview a {
  display: inline;
  background-color: transparent;
  border-color: transparent;
  text-align: right;
  height: auto;
  flex-basis: auto;
}
.section.modal a.js-modal-close:after {
  content: "";
}