#modal {
  position: fixed;
  display: block;
  width: 960px;
  height: 540px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #011020;
  z-index: 5;
  max-width: 90%;
}

#modal #close-modal {
  position: absolute;
  top: 3px;
  right: 3px;
  border: none;
  background: transparent;
  background-color: #ffffff;
  color: #011020;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 25px;
  padding: 0;
  margin: 0;
  font-weight: bold;
  z-index: 5;
}

#modal iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  #modal {
    width: 100%;
    max-width: 100%;
  }
}
/*# sourceMappingURL=modal.css.map */