#modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
}

#contactForm h1 {
  color: var(--titleCol);
  font-weight: 300;
  font-size: 3rem;
  text-align: center;
}

.modal-content {
  background-color: rgba(199, 249, 255, 0.5);
  margin: 15% auto;
  padding: 0 0 20px 0;
  border-top: 0;
  border-left: 6px;
  border-bottom: 15px;
  border-right: 6px;
  border-style: solid;
  border-color: var(--navHover);
  width: 80%;
  color: black;
}

.close {
  color: whitesmoke;
  float: right;
  font-size: 2rem;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.top-modal {
  background-color: var(--navHover);
  margin: 0;
  padding: 0;
  padding-bottom: 2rem;
  color: var(--lightCol);
}

#modal .email-contact-success {
  color: var(--lightCol);
  background-color: var(--navHover);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

#emailSuccess {
  align-self: center;
}

#modal .email-contact-success span {
  display: flex;
  justify-content: center;
  font-size: 3rem;
  padding-bottom: 1rem;
}

.fa-thumbs-up:before {
  color: #22e222;
  text-shadow: 4px 3px 5px #ffffff63;
}
