.form-popup-overlay {
  position: fixed;
  z-index: 99999999 !important;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(49,70,105,.3);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
}

.form-popup-overlay:target {
  visibility: visible;
  opacity: 1;
}

.form-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  border: 0px solid #ff9b63;
  width: 30%;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}

@media(max-width:993px) {
	.form-popup {
		width: 50%;
	}
}

@media(max-width:500px) {
	.form-popup {
    width: 90%;
    padding: 15px;
	}
}

.form-popup .popup-close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.form-popup .popup-close:hover {
  color: #ff9b63;
}

.form-popup .popup-content {
  max-height: 30%;
  overflow: auto;
}

.popup-sent-heading {
  color: green;
}

.popup-sent-text {
  color: #333;
  font-weight: 300;
  letter-spacing: 2px;
}

input[type="number"] {
  -moz-appearance: textfield;
}