.title {
  font-size: large;
  color: black;
  margin: 15px 0;
}

.column-80 {
  margin-bottom: 30px;
}

.vacancy_block {
  height: fit-content;
  border: 1px solid lightgray;
  /* margin-bottom: 30px; */
  /* padding-bottom: 20px; */
  position: relative;
  overflow: hidden;
}

.vacancy_block:hover {
  -webkit-box-shadow: 0px 15px 19px -12px rgba(34, 60, 80, 0.57);
  -moz-box-shadow: 0px 15px 19px -12px rgba(34, 60, 80, 0.57);
  box-shadow: 0px 15px 19px -12px rgba(34, 60, 80, 0.57);
}

.active {
  opacity: 1;
  box-shadow: none;
}

/* ======================================================================== */
/* ================================VACANCY_TOP============================= */
/* ======================================================================== */

.vacancy_top {
  width: 100%;
  height: fit-content;
  padding: 30px 15px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

.job {
  margin-left: 15px;
  font-size: small;
  color: black;
  margin-right: auto;
}

.salary {
  font-size: medium;
  color: black;
  font-weight: 500;
  opacity: 0.9;
  margin-right: 15px;
}

.btn_exp_l,
.btn_exp_m {
  border: 1px solid lightgray;
  text-align: center;
  cursor: pointer;
  padding: 7px;
}

.btn_exp_l {
  display: none;
}

.btn_exp:hover {
  transition: 0.5s;
}

/* ======================================================================== */
/* ===================================VACANCY_INFO========================= */
/* ======================================================================== */

.vacancy_info ul {
  padding: 0;
  list-style: none;
}

.vacancy_info li {
  color: gray;
  font-size: medium;
}

.vacancy_info li::marker {
  content: "";
}

.vacancy_info li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-right: 10px;
}

.divider {
  width: 99%;
  border-top: 0.5px solid lightgray;
  margin: -20px auto 20px auto;
}

a.btn {
  font-size: 0.7em;
}

.vacancy_info {
  display: none;
  padding: 20px;
  overflow: hidden;
}

.vacancy_block .vacancy_info.active {
  max-height: fit-content;
}

/* ======================================================================== */
/* =============================МОДАЛЬНОЕ_ОКНО============================= */
/* ======================================================================== */

#file-input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}

#file-input:focus {
  outline: none;
}

#fake-input {
  display: inline-block;

  height: calc(3.5rem + 2px);
  line-height: 1.25;
  margin-bottom: 1rem;
  width: 100%;

  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;

  border-radius: .25rem;

  display: flex;
  align-items: center;
}

#fake-button {
  margin: 0 15px;
}

.form-feedback__form-bottom {
  display: flex;
}

.reset_btn {
  margin-left: 15px;
  font-size: 0.7em;
}

/* ======================================================================== */
/* =================================320PX================================== */
/* ======================================================================== */

@media screen and (max-width: 320px) {
  .column-80 {
    width: 100%;
  }

  .vacancy_top {
    flex-flow: column nowrap;
    padding: 15px;
  }

  .job {
    margin-left: 0;
    margin-bottom: 10px;
  }

  .salary {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .btn_exp_l {
    display: none;
  }

  .btn_exp_m {
    display: block;
  }

  .vacancy_info {
    padding: 10px;
  }

  .fake-input {
    height: calc(2.5rem + 2px);
  }

  .form-feedback__form-bottom {
    flex-flow: column nowrap;
  }

  .send {
    margin-right: 0;
    margin-bottom: 10px;
  }
  a.modal-link-content{
    margin: 0 auto;
  }
}