.job_block {
  display: flex;
  min-height: 100%;
  width: 100%;
  align-items: center;
}
.job_block .images_block {
  padding: 50px 0 30px;
  width: 44%;
}
.job_block .images_block img {
  width: 100%;
  height: auto;
}
.job_block .contact_block {
  width: 54%;
  padding: 50px 30px 50px;
}
.job_block .form_block {
  max-width: 520px;
  margin: 0 auto;
}
.job_block .form_description {
  color: #4A4A4A;
  font-size: 160%;
  line-height: 24px;
  text-align: center;
  padding: 0 15px 45px;
}
.job_block .personal_form_row {
  display: flex;
  align-items: center;
  width: 100%;
}
.job_block .personal_form_row .form_elements {
  width: 50%;
  padding: 0 15px;
  margin-bottom: 25px;
}
.job_block .personal_form_row .form_elements:first-child {
  padding-left: 0;
}
.job_block .personal_form_row .form_elements:nth-child(2) {
  padding-right: 0;
}
.job_block input {
  border: 1px solid #ffffff;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
  height: 55px;
  font-size: 160%;
  line-height: 24px;
  color: #000000;
  padding: 5px 20px;
}
.job_block input:focus {
  border: 1px solid #ffffff;
}
.job_block .message_block {
  padding-bottom: 26px;
}
.job_block .message_block textarea {
  width: 100%;
  min-height: 110px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.05);
  font-size: 160%;
  line-height: 24px;
  color: rgba(74, 74, 74, 0.6);
  padding: 16px 20px;
}
.job_block .message_block textarea:focus {
  border: 1px solid #ffffff;
}
.job_block .attach_block {
  position: relative;
}
.job_block .attach_block label {
  width: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.job_block .attach_block .connect_cv {
  color: rgba(74, 74, 74, 0.6);
  font-size: 160%;
  line-height: 24px;
  padding-left: 20px;
  padding-right: 10px;
}
.job_block .attach_block .attach_button:before {
  display: block;
  font-size: 260%;
  border: none;
  color: rgba(74, 74, 74, 0.6);
}
.job_block .attach_block .upload_success {
  border: 1px solid rgba(74, 74, 74, 0.6);
  color: black;
  font-size: 140%;
  line-height: 23px;
  padding: 10px 22px;
  border-radius: 4px;
  text-align: center;
  justify-content: center;
}
.job_block .attach_block .upload_success .attach_remove {
  padding: 0 10px;
  display: block;
}
.job_block .attach_block .upload_success .attach_remove:before {
  display: block;
  font-size: 80%;
  color: #303D87;
}
.job_block .attach_block .upload_errors {
  margin-top: -35px;
  right: 10px;
  left: auto;
}
.job_block .attach_block .error_hint {
  padding: 0 10px;
  background: #ffffff;
  border-radius: 4px;
  z-index: 2;
  margin: 12px 0 12px 0;
}
.job_block .attached .attach_label {
  display: none;
}
.job_block .attached .upload_success {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.job_block .attached .upload_success .file_name {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: rgba(74, 74, 74, 0.6);
  font-size: 16px;
  line-height: 24px;
}
.job_block .validate_button {
  width: 100%;
  height: 59px;
  border-radius: 5px;
  background: #F4A21F;
  color: #ffffff;
  font-size: 160%;
  font-family: "bold", "arm-bold";
  line-height: 19px;
  text-align: center;
  border: none;
  text-transform: uppercase;
}

.attach_block {
  position: relative;
}
.attach_block label {
  position: relative;
  font-weight: normal;
  margin: 0;
}
.attach_block label input {
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  visibility: hidden;
}
.attach_block label .attach_button {
  display: inline-block;
  cursor: pointer;
  text-align: center;
}

.upload_success {
  display: none;
}

.upload_errors {
  position: absolute;
  top: 100%;
  left: 0;
}
.upload_errors .size_error,
.upload_errors .format_error {
  display: none;
}

.attached .attach_label {
  display: none;
}
.attached .upload_success {
  display: flex;
}
.attached .upload_success .file_name {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.size_error .upload_errors .size_error,
.format_error .upload_errors .format_error {
  display: block;
  font-size: 120%;
  line-height: 15px;
  color: #b94a48;
}

.web .attach_remove,
.web .validate_button,
.web .attach_button {
  -o-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.web .attach_remove:hover,
.web .validate_button:hover,
.web .attach_button:hover {
  opacity: 0.7;
}

.touch .attach_remove,
.touch .validate_button,
.touch .attach_button {
  -o-transition: opacity 0.25s;
  -ms-transition: opacity 0.25s;
  -moz-transition: opacity 0.25s;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
.touch .attach_remove:active,
.touch .validate_button:active,
.touch .attach_button:active {
  opacity: 0.7;
}

@media (max-width: 1199px) {
  .job_block .form_description {
    font-size: 140%;
    padding-bottom: 20px;
  }
  .job_block input {
    font-size: 140%;
  }
  .job_block .validate_button {
    font-size: 140%;
  }
  .job_block .personal_form_row {
    align-items: center;
    flex-direction: column;
  }
  .job_block .personal_form_row .form_elements {
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .job_block {
    flex-direction: column;
  }
  .job_block .contact_block {
    width: 100%;
    padding: 0 15px 40px;
  }
  .job_block .form_description {
    font-size: 160%;
  }
  .job_block .attached .upload_success .file_name {
    font-size: 110%;
  }
  .job_block .images_block {
    padding: 50px 0 30px;
    width: 50%;
  }
}
@media (max-width: 575px) {
  .job_block .images_block {
    padding: 30px 0 30px;
    width: 91%;
  }
}
@media (max-width: 479px) {
  .job_block .form_description {
    font-size: 140%;
    padding-bottom: 20px;
  }
  .job_block input {
    font-size: 130%;
  }
  .job_block .validate_button {
    font-size: 130%;
  }
}

/*# sourceMappingURL=job.css.map */
