@charset "UTF-8";
.job__apply-modal {
  border-radius: 24px;
  background-color: #fff;
  padding: 15px;
}
.job__apply-modal__step {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.job__apply-modal__step__remove-file {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
}
.job__apply-modal__step__remove-file:after {
  display: inline-block;
  content: "×";
  position: absolute;
  top: 0;
  line-height: 10px;
  font-size: 24px;
  cursor: pointer;
}
.job__apply-modal__step__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8px;
}
.job__apply-modal__step__block select {
  padding: 0.6em 1.15em;
  border-radius: 0.85em;
  border-color: #112E3C;
  height: 3.8rem;
  font-size: 1em;
}
.job__apply-modal__step__block textarea {
  padding: 0.6em 1.15em;
  border-radius: 0.85em;
  border-color: #112E3C;
  font-size: 1em;
}
.job__apply-modal__step__block .checkbox-modal {
  margin-bottom: 27px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .job__apply-modal__step__block .checkbox-modal {
    align-items: unset;
  }
}
.job__apply-modal__step__block .checkbox-modal input[type=checkbox] {
  margin: -4px 0px 0 0;
}
.job__apply-modal__step__block .checkbox-modal input[type=checkbox]:checked + label:before {
  content: "\f00c";
  background-color: #112E3C;
  border-radius: 5px;
}
.job__apply-modal__step__block .checkbox-modal label:before {
  content: "";
  display: inline-block;
  cursor: pointer;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  border: 1px solid #4252CD;
  border-radius: 1px;
  box-sizing: border-box;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  font-family: "Font Awesome 5 Free", serif;
  color: #97F85C;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
  line-height: 17px;
}
@media only screen and (max-width: 767px) {
  .job__apply-modal__step__block .checkbox-modal label:before {
    top: 1px;
  }
}
.job__apply-modal__step__block .checkbox-modal label {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  margin-left: 18px;
  color: #0A0A0A;
}
.job__apply-modal .form {
  margin-bottom: 0;
}
.job__apply-modal__stepper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}
.job__apply-modal__stepper__block {
  gap: 16px;
  position: relative;
  display: flex;
}
.job__apply-modal__stepper__block::before {
  width: 100%;
  height: 1px;
  background-color: #112e3c;
  content: "";
  position: absolute;
  right: 50%;
  transform: translate(50%, -50%);
  top: 50%;
  z-index: 1;
}
.job__apply-modal__stepper__block__step {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 1px solid black;
  z-index: 2;
  background-color: #fff;
}

.job-counter-wrapper {
  position: relative;
}

.swipe-hint {
  position: absolute !important; /* keep it out of flow inside controls */
  top: calc(100% + 12px) !important; /* drop below the counter bar */
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(17, 46, 60, 0.9) !important;
  color: #fff !important;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 14px;
  display: none;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 5;
  animation: swipeHintFade 4s ease forwards;
}

.swipe-hint .arrows {
  animation: swipeArrows 1.2s infinite;
}

@keyframes swipeHintFade {
  0% { opacity: 0; transform: translate(-50%, 6px); }
  15% { opacity: 1; transform: translate(-50%, 0); }
  85% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes swipeArrows {
  0% { transform: translateX(0); }
  50% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

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