.modalio-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(100,100,100,0.2);
}

.modalio-wrapper {
  width: 80em;
  max-width: 80%;
  height: 80%;
  overflow: auto;
  margin: auto;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-overflow-scrolling: touch;
}

.modalio-wrapper-inner {
  background-color: #FFF;
  padding: 1em 1.5em;
  box-shadow: 0 1px 10px rgba(50,50,50,0.2);
  min-height: calc(100% + 1px); // Fix for dynamically added content in outer divs with -webkit-overflow-scrolling: touch that become broken sometimes
}

[id^="modalio-"] {
    display: none;
}
