.modal-btn {
  font-size: 15px;
  font-weight: bold;
  padding: 10px 30px;
  color: #fff;
  text-decoration: none;
  outline: none;
  display: inline-block;
  cursor: pointer;
  border-radius: 5px;
  background: #3aa486;
}
.modal-window {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba("0, 0, 0, 0.75");
  display: none;
  overflow: auto;
  width: 100%;
  height: 100%;
  z-index: 99999;
}
.modal-window:target {
  display: block;
  animation: fade .6s
}
.modal-table {
  display: table;
  width: 100%;
  height: 100%
}
.modal-cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding-bottom: 15px;
}
.modal-form {
  display: inline-block;
  padding: 20px;
  width: 85%;
  max-width: 30em;
  background: #3aa486;
  box-shadow: 0 0 0 5px #4D4B49;
  color: #fff;
  text-align: left;
  border: 1px solid #fff;
}
.modal-close {
  z-index: 9999;
  float: right;
  width: 30px;
  height: 30px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  line-height: 26px;
  cursor: pointer
}
.modal-close:after {
  display: block;
  border: 2px solid #fff;
  border-radius: 50%;
  content: 'X';
  transition: all 0.6s;
  transform: scale(0.85)
}
.modal-close:hover:after {
  border-color: #fff;
  color: #fff;
  transform: scale(1)
}
.modal-title {
  text-decoration: none;
  font-size: 1.5em;
  color: #fff;
  padding-bottom: 5px;
}
.modal-text {
  text-align: center;
  text-transform: uppercase;
  margin: 10px;
  margin-bottom: 10px;
  font-weight: bold;
}
.modal-field {
  margin: 5px auto;
  color: #fff;
}
form input, form text, select, textarea {
  display: block;
  width: 100%;
  padding: 8px 13px;
  margin-top: 5px;
  color: #4D4B49;
  border-radius: 5px;
  border: 1px solid #727272;
  box-sizing: border-box;
  background: #fff;
}
.modal-button {
  width: 100%;
  font-size: 15px;
  font-weight: bold;
  padding: 10px 30px;
  color: #fff;
  text-decoration: none;
  outline: none;
  display: inline-block;
  cursor: pointer;
  border: 2px solid #fff;
  border-radius: 5px;
  background: #3aa486;
}
.modal-info {
  font-size: 12px;
  color: #fff;
  text-align: center;
}