.overlay {
  overflow: scroll;
  position: fixed;
  top: 0;
  bottom: 110%;
  left: 0;
  right: 0;
  width: 100%;
  z-index: -10000;
  opacity: 0;
  background: transparent;
  transition: opacity 200ms linear, bottom 0s linear 200ms;
}

.overlay-open {
  top: 50px;
  bottom: 0;
  opacity: 1;
  z-index: 10000;
  transition: opacity 200ms linear, bottom 0s linear;
}

.overlay-view {
  overflow: hidden;
}

.overlay-inner {
  background: #FFF;
  opacity: 0.8;
  position: fixed;
  top: 65%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 2rem;
  width: 800px;
  max-width: 90%;
  box-shadow: 5px 5px 10px #888888;
}

.overlay-inner h5 {
  font-size: 16px;
  padding-left: 10px;
}

.overlay-inner table {
  font-size: 11px;
  text-align: right;
  vertical-align: middle;
  margin-bottom: 12px;

}
