.popup .overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  display: none;
}

.popup .content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #fff;
  width: 700px;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  border-radius: 8px;
}

.contact-form h4 {
  margin-top: 15px;
}

.popup .content h4 {
  text-align: center;

}

.contact-form p {
  text-align: center;
  padding: 0px 25px;
  line-height: 23px;

}

.popup .content .form-label {
  font-size: 13px;
  margin-bottom: 2px;
}


@media only screen and (max-width: 600px) {
  .popup .content {
    width: 80%;
    height: 600px;
  }
}

.popup .close-btn {
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 30px;
  height: 30px;
  color: #666666;
  font-size: 35px;
  font-weight: 200;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
}

.popup.active .overlay {
  display: block;
}

.popup.active .content {
  transition: all 300ms ease-in-out;
  transform: translate(-50%, -50%) scale(1);
}