/* CONTACT FORM CSS */
.contact_box {
	position: relative;
	padding: 20px;
	background: #011688;
	color: #fff;
	width: 100%;
	max-width: 600px;
	border-radius: 2px;
  font-size: 16px;
}
.contact_box form {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	max-width: 600px;
	transition: all .2s;
}
.contact_box input, .submit_msg, select {
	margin: 0px;
	margin-bottom: 10px;
	padding: 10px;
	border: none;
	border-radius: 2px;
	background: #fffc;
	color: black;
	width: 100%;
}
.contact_box textarea {
	margin: 0px;
	margin-bottom: 10px;
	padding: 10px;
	width: 100%;
	flex-basis: 150px;
	flex-grow: 4;
	resize: none;
	border-radius: 2px;
	background: #fffd;
}

.form_submitted {
  position: relative;
  width: 100%;
  text-align: center;
}
.form_submitted input, .submit_msg {
  background: #e45305;
  color: white;
  padding: 15px;
  border-radius: 2px;
  box-shadow: none;
  margin: 0px;
  font-size: 16px;
  line-height: 1;
}
.submit_msg {
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  opacity: 0;
  z-index: -1;
}

input[type="submit"] {
  cursor: pointer;
}

@keyframes fade_out {
  0% {opacity: 1;}
  100% {opacity: 0;}
}
@keyframes message_sent_anim {
  0% {
    z-index: 1;
    opacity: 0;
    background: #e45305;
    color: white;
    text-shadow: 0 0 10px #0000;
}
  100% {
    z-index: 1;
    opacity: 1;
    background: #0b0;
    color: white;
    text-shadow: 0 0 10px #0004;
  }
}

textarea, input, select {
  font-family: inherit;
  font-size: 14px;
}

.required {
  color: red;
}

.contact_box input, .contact_box textarea {
  width: 100%;
  border: none;
}

.jobUnselected, ::placeholder {
  color: #747474;
}

.contact_box_header {
  font-weight: bold;
  font-size: 1.5em;
  text-align: left;
  width: 100%;
  display: block;
  padding-bottom: 20px;
  padding-left: 20px;
}

.appearancenone {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

@media (max-width: 767px) {
  .contact_box {
    margin: auto;
  }
  textarea, input, select {
    font-size: 16px !important;
  }
}