:root {
  --job-main-color: #16b2b7;
  --job-second-color: #22DF69;
}
.job_wrapper {
  max-width: 1150px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  ;
}

@media screen and (max-width: 1200px) {
  .job_wrapper {
    max-width: 920px !important;
  }

  .job_board .job__location {
    width: 35% !important;
  }

  .job_board .job__type {
    width: 20% !important;
  }
}

@media screen and (max-width: 990px) {
  .job_wrapper {
    max-width: 700px !important;
  }

  .job_board .job__location {
    width: 45% !important;
  }

  .job_board .job__type {
    width: 10% !important;
  }
}

@media screen and (max-width: 780px) {
  .job_wrapper {
    max-width: 100% !important;
  }

  .job_search__container {
    flex-direction: column;
  }

  .job_search__container input {
    width: 90% !important;
  }

  .job_search__submit {
    width: 90% !important;

  }

  .job_filter {
    flex-direction: column !important;
    border-right: none;
  }

  .job_filter__item {

    text-align: left !important;
  }

  .job {
    display: flex !important;
    flex-direction: column;
    text-align: center;
  }

  .job_board .job__title {
    width: 100% !important;

  }

  .job_board .job__location {
    width: 100% !important;
  }

  .job_board .job__type {
    width: 100% !important;
  }
}



.job_search {
  background-color: var(--job-main-color);
  padding: 30px;
  margin: 0;
}

.job_search__container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
}

.job_search__container input {
  width: 48%;
  border-radius: 6px;
  border: none;
  padding: 10px 14px;
}

.job_search__button-container {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.job_search__submit {
  background-color: #fff;
  font-size: 14px;
  padding: 12px;
  text-align: center;
  border-radius: 4px;
  border: none;
  display: inline-block;
  width: 30%;
  text-transform: uppercase;
  transition: all .3s;
  cursor: pointer;
  color: var(--job-main-color);

}

.job_search__submit:hover {
  background-color: var(--job-second-color);
  color: #fff;
}

.job_filter {
  display: flex;
  flex-direction: row;
  border: 1px solid #ccc;
  margin: 0 !important;
  border-width: 0 1px 0 1px;
}

.job_filter__item {
  border-right: 1px solid #ccc;
  padding: 20px;
  font: 500 14px/normal Montserrat, sans-serif;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}

.job_filter__item:last-of-type {
  border: none;
}


.job_board {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  max-width: 100% !important;
}

.job_board .job {
  display: flex;
  border-bottom: 1px solid #ccc;
  margin: 0;
  padding: 1em;
  position: relative;
}

.job_board .job.hide {
  display: none;
}


.job_board .job:hover {
  box-shadow: inset 8px 0 0 var(--job-main-color);
  color: var(--job-second-color);
  cursor: pointer;
}

.hide {
  display: none;
}

.display {
  display: flex;
  justify-content: space-around;
}

.search-result {
  font-size: 13px;
  text-align: left;
  background: #fafafa;
  border: 1px solid #ccc;
  border-width: 1px 1px 0;
  padding: 15px 20px;
}

.total {
  color: #8C8C8C;
}

.reset,
.reset:before {
  color: var(--job-second-color);
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}

.reset::before {
  content: "X ";
}

.job_board a {
  text-decoration: none;
}

.job_board .job__title {
  width: 45%;

}

.job_board .job__title h3,
.job_board .job__title span {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.job_board .job__location {
  width: 25%;
}

.job_board .job__location span {
  color: var(--job-second-color);
  font-size: 12px;
  font-weight: bold;
}

.job_board .job__location span:before {
  content: url("./assets/images/mapicon.png");
  margin-right: 10px;
}

.job_board .job__type {
  width: 30%;
  display: flex;
}

.job_board .job__type .job__type-value {
  font: 700 12px/normal Montserrat, sans-serif;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  padding: 3px 10px;
  vertical-align: middle;
  background-color: var(--job-main-color);
  width: 100%;
  justify-content: center;
  align-self: center;

}