.job-respond-area {
  margin-top: 48px;
  margin-left: -16px;
  margin-right: -16px;
  padding: 16px 16px 24px 16px;

  border-top: 1px solid rgba(166, 221, 255, 0.05);
  background: rgba(166, 221, 255, 0.05);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.06);
}

@media (min-width: 1024px) {
  .job-respond-area {
    margin-left: 0;
    margin-right: 0;
    padding: 30px 40px;
  }
}

.job-respond-title {
  margin-bottom: 0.5em;

  font-family: 'Fira Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;

  color: #FFFFFF;
}

@media (min-width: 1024px) {
  .job-respond-title {
    font-size: 32px;
    line-height: 40px;
  }
}

.job-respond-form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}

.job-respond-input {
  width: 100%;
  height: 48px;
  padding: 4px 8px;

  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-bottom: 2px solid rgba(255, 255, 255, 0.20);
  background: rgba(3, 12, 21, 0.60);

  font-family: 'Fira Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);

  transition: all 0.2s ease-out;
}

.job-respond-input:focus {
  border-color: rgba(49, 227, 238, 0.50);
  border-bottom-color: #31E3EE;
  outline: none;
}

.job-respond-input::placeholder {
  color: rgba(255, 255, 255, 0.50);
}

.job-respond-field {
  display: flex;
  flex-wrap: wrap;
}

.job-respond-field.w50 {
  width: 100%;
}

@media (min-width: 1024px) {
  .job-respond-field.w50 {
    width: calc(50% - 8px);
  }
}

.job-respond-field.w100 {
  width: 100%;
}

.job-respond-field.has-error .job-respond-input {
  /* border-color: #FF9270; */
}

.job-respond-textarea {
  flex-grow: 1;
  width: 100%;
}

@media (min-width: 1024px) {
  .job-respond-textarea {
    width: calc(66.6% - 10.66667px);
  }
}

.job-respond-textarea textarea {
  display: block;
  width: 100%;
  padding: 12px;

  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-bottom: 2px solid rgba(255, 255, 255, 0.20);
  background: rgba(3, 12, 21, 0.60);

  font: 400 16px / 24px 'Fira Sans', Arial, sans-serif;
  color: rgba(255, 255, 255, 0.8);

  outline: none;
  resize: none;
}

.job-respond-textarea textarea:focus {
  border-color: rgba(49, 227, 238, 0.50);
  border-bottom-color: #31E3EE;
  outline: none;
}

.job-respond-textarea textarea::placeholder {
  color: rgba(255, 255, 255, 0.50);
}

.job-respond-textarea.has-error textarea {
  /* border-color: #FF9270; */
}

.job-respond-upload {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;

  width: 100%;
  max-width: 100%;
  height: 147px;
  margin: 0;
  padding: 6px;

  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-bottom: 2px solid rgba(255, 255, 255, 0.20);
  background: rgba(3, 12, 21, 0.60);

  color: #29B2BC;
}

@media (min-width: 1024px) {
  .job-respond-upload {
    width: calc(33.3% - 10.66667px);
    max-width: 176px;
  }
}

.job-respond-upload:focus-within {
  border-color: rgba(49, 227, 238, 0.50);
  border-bottom-color: #31E3EE;
}

.job-respond-upload::after {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;

  content: '';
  width: calc(100% - 8px);
  height: calc(100% - 8px);

  border-radius: 2px;
  border: 2px dashed rgba(255, 255, 255, 0.10);

  pointer-events: none;
  transition: all 0.2s ease-out;
}

.job-respond-upload:hover::after {
  border-color: rgba(49, 227, 238, 0.50);
}

.job-respond-upload.is-dragging::after {
  border-color: rgba(49, 227, 238, 0.50);
}

.job-respond-upload.has-error {
  /* border-color: #FF9270; */
}

.job-respond-upload__file {
  position: absolute;
  left: 0;
  top: 0;

  height: 100%;
  width: 100%;

  opacity: 0;

  cursor: pointer;
}

.job-respond-upload__filename {
  padding: 8px;

  text-align: center;
}

.job-respond-upload__primary {
  text-align: center;
}

.job-respond-upload__semi {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.job-respond-agreement {
  display: none;

  width: 100%;
  margin-bottom: 0.5em;

  font-family: 'Fira Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 1280px) {
  .job-respond-agreement {
    display: block;

    width: calc(50% - 8px);
    margin-bottom: 0;
  }
}

.job-respond-captcha-and-submit {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;

  width: 100%;
}

.job-respond-captcha-and-submit .job-respond-agreement {
  display: block;
}

@media (min-width: 1280px) {
  .job-respond-captcha-and-submit {
    width: calc(50% - 8px);
    margin-bottom: 0;
  }

  .job-respond-captcha-and-submit .job-respond-agreement {
    display: none;
  }
}

.job-respond-captcha {
  position: relative;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;

  width: 100%;
  margin-bottom: 0.5em;
}

.job-respond-captcha__group {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: flex-start;
  gap: 5px;

  width: 100%;
}

.job-respond-captcha__input {
  height: 48px;
  padding: 4px 8px 4px 41px;
  max-width: 200px;
  min-width: 100px;

  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-bottom: 2px solid rgba(255, 255, 255, 0.20);
  background: rgba(3, 12, 21, 0.60) url(/i/ent/smart_toy.png) no-repeat 8px center;
  background-size: 25px 25px;

  font-family: 'Fira Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);

  transition: all 0.2s ease-out;
}

.job-respond-captcha__input:focus {
  border-color: rgba(49, 227, 238, 0.50);
  border-bottom-color: #31E3EE;
  outline: none;
}

.job-respond-captcha__input::placeholder {
  color: rgba(255, 255, 255, 0.50);
}

.job-respond-captcha.has-error .job-respond-captcha__input {
  /* border-color: #FF9270; */
}

.job-respond-captcha__visual {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
  gap: 0;

  height: 46px;
  margin: 0;
  padding: 1px 0 0 0;
}

.job-respond-captcha__visual-corner {
  content: '';

  width: 20px;
  height: 46px;

  background: url(/i/ent/captcha-corner.svg) no-repeat top left;
  background-size: cover;
}

.job-respond-captcha__image-container {
  display: flex;
  align-items: center;

  width: auto;
  height: 46px;

  background: #000;
}

.job-respond-captcha__image {
  width: auto;
  height: 32px;
}

.job-respond-captcha__update {
  height: 46px;
  margin: 0;
  padding: 0 8px;

  border: none;
  border-radius: 0 4px 4px 0;
  background: #000;

  outline: none;
}

.job-respond-captcha__update:focus {
  outline: 1px solid rgba(49, 227, 238, 0.50);
}

.job-respond-captcha__update img {
  height: 25px;
  width: 25px;
  min-width: 25px;

  transition: all .3s ease;
}

.job-respond-captcha__update:hover img {
  transform: rotate(-30deg);
  cursor: pointer;
}

.job-respond-footer {
  width: 100%;
}

.job-respond-btn {
  height: 64px;
  width: 100%;

  background: linear-gradient(180deg, #23E0EC 0%, #07DBC1 100%);
  box-shadow: inset 0px 1px 0px #7DE6FD;
  border: none;
  border-radius: 4px;

  color: #051323;
  text-align: center;
  font-family: 'Fira Sans', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.96px;
  text-transform: uppercase;

  transition: all 0.2s linear;
}

.job-respond-btn:hover {
  background: linear-gradient(180deg, #3EF3FF 0%, #26FFE5 100%);
  box-shadow: 0 4px 23px 0 rgba(22, 222, 215, 0.56), 0 1px 0 0 #7DE6FD inset;
}

.job-respond-btn:active {
  opacity: 0.62;
  background: linear-gradient(180deg, #23E0EC 0%, #07DBC1 100%);
  box-shadow: 0 1px 0 0 #7DE6FD inset;
}

.job-respond-btn:disabled {
  background: linear-gradient(180deg, #17B9C3 0%, #07DBC1 100%);
  opacity: 0.5;
}

.job-respond-btn:disabled:hover, .job-respond-btn:disabled:active {
  background: linear-gradient(180deg, #17B9C3 0%, #07DBC1 100%);
  box-shadow: inset 0px 1px 0px #7DE6FD;
}

.job-respond-btn.is-loading {
  position: relative;
  overflow: hidden;

  background: linear-gradient(180deg, #2E8187 0%, #269186 100%);

  cursor: default;
}

.job-respond-btn.is-loading:hover, .job-respond-btn.is-loading:active {
  background: linear-gradient(180deg, #2E8187 0%, #269186 100%);
  box-shadow: inset 0px 1px 0px #7DE6FD;
}

.job-respond-btn.is-loading::after {
  position: absolute;
  left: 0;
  bottom: 0;

  content: "";
  width: 80%;
  height: 4px;

  border-radius: 100%;
  background: #26FFE5;

  transform: translateX(-100%);
  animation: slide-left-to-right 0.8s ease-in-out infinite;

  pointer-events: none;
}

@keyframes slide-left-to-right {
  to {
    transform: translateX(100%);
    left: 100%;
  }
}

.job-respond-error-summary {
  width: 100%;
  padding-top: 16px;

  color: #FF9270;
}

.job-respond-field-error {
  width: 100%;
  padding: 5px 8px;

  color: #FF9270;
}

.job-respond-field-error_cv-file {
  margin-top: -16px;
}

.job-respond-success {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 50vh;
  max-height: 400px;

  background: rgba(166, 221, 255, 0.05);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.06);

  text-align: center;
  font-family: 'Fira Sans', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  color: #FFF;
}

.job-respond-success__icon {
  width: 36px;
  height: 33px;

  margin-bottom: 24px;
}

.job-respond-success__text {
  width: 100%;
}

.job-respond-hidden {
  display: none;
}
