#open-modal {
  padding-top: 50px;
}

#open-modal .inner {
  max-width: 960px;
  margin: auto;
}

.modal-window {
  background-color: rgba(38, 38, 38, 0.98);
  width: 100vw;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  min-height: 100%;
  top: 0;
  bottom: 0;
  position: fixed;
  overflow-y: scroll;
  overflow-x: hidden;
}

.modal-close {
  text-align: right!important;
  margin-right: 0px;
  margin-left: auto;
  display: table;
  color: #fff;
  line-height: 50px;
  text-decoration: none;
}

.modal-close i {
  color: #a60909;
}

.modal-window:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal-close:hover {
  color: #a60909;
}

