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

.modal-content {
  color: #444;
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0
  }
  to {
    top: 0;
    opacity: 1
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0
  }
  to {
    top: 0;
    opacity: 1
  }
}

.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

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

.modal-header {
  padding: 16px;
  padding-top: 8px;
  background-color: #101626;
  color: white;
}

.modal-body {
  padding: 16px;
  padding-bottom: 26px;
}

.modal-footer {
  padding: 16px;
  background-color: #E3E3E3;
  color: #444;
  font-size: 13px;
  cursor: default;
}

.modal-footer span::selection {
  color: #444;
  background: #E3E3E3;
}

.modal-footer span::-moz-selection {
  color: #444;
  background: #E3E3E3;
}
