#modal-window {
  width: 100%;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  /*background-color: #fefefe;*/
  background-color: #333;
  margin: 50px auto;
  /*padding-left: 8px;*/
  border: 1px solid #888;
  border-radius: 10px;
}

.modal-close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  text-align: right;
  float: right;
  position: relative;
  top: -10px;
}

.modal-close:hover,
.modal-close:focus {
  color: #eee;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  margin: 10px 8px 10px 0px;
  height: 25px;
}

.modal-title {
  margin-top: 20px;
  margin-left: 20px;
  font-size: 1em;
  font-style: italic;
  color: #fff;
  text-align: left;
}

.modal-footer {
  height: 30px;
}

