:root {
  --green_bg: #b9e500;
  --blcak_bg: #0f0f0f;
  --ash_bg: #d9d9d9;
  --text-color-white: #fcfcfc;
}

.door_main_con {
  width: 1240px;
  margin: 50px auto 0px auto;

  display: flex;
  flex-direction: column;
  gap: 50px;
}

.door_head_span {
  color: #0f0f0f;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px;
  margin-bottom: -20px;
}

.door_input_con {
  width: 100%;
  padding: 24px;
  background-color: var(--green_bg);
  display: flex;
  gap: 25px;
  border-radius: 10px;
  justify-content: space-around;
}
.door_text_input_fields {
  width: 277px;
  height: 44px;
  color: #0f0f0f;
  padding-left: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 19.68px;
  font-weight: 600;
}

.door_select_input_fields {
  position: relative;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: url('arrow.svg') no-repeat;
  background-position: right 15px top 50%;
  width: 277px;
  height: 44px;
  background-color: var(--blcak_bg);
  padding-left: 18px;
  color: var(--text-color-white);
  font-size: 18px;
  line-height: 19.68px;
  font-weight: 600;
  cursor: pointer;
}

.door_post_info_con {
  width: 595px;
  height: 179px;
  padding: 25px;
  background-color: var(--blcak_bg);
  color: var(--text-color-white);
  display: flex;
  flex-direction: column;
  border-radius: 5px;
}

.door_line {
  margin: 3px 0px;
  width: 100%;
  height: 1px;
  background-color: var(--green_bg);
}
.door_jobs_filter_val {
  margin-top: 21px;
  display: flex;
  justify-content: space-between;
}

.door_jobs_filter_val > a {
  text-decoration: none;
  color: var(--green_bg) !important;
}

.door_jobs_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.door_pagination_con {
  align-self: center;
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}
.paginated_btns {
  color: var(--blcak_bg) !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 5px;
  display: flex;
  width: 30px;
  height: 30px;
  padding: 5px 0px 4px 0px;
  justify-content: center;
  align-items: center;
  background-color: var(--ash_bg) !important;
  border: none;
}

.active_btn {
  background-color: var(--green_bg) !important;
  color: var(--blcak_bg) !important;
}

.door_form_group {
  width: 100%;
  position: relative;
  display: flex;
  gap: 10px;
}

.door_form_input {
  display: flex;
  width: 332px;
  height: 42px;
  padding: 15px 51px 17px 22px;
  background-color: var(--text-color-white);
  color: var(--blcak_bg);
  border: none !important;
  border-radius: 5px;
}

.door_form_btn {
  display: flex;
  width: 90px;
  height: 42px;
  justify-content: center;
  align-items: center;
  font-size: 18px !important;
  font-weight: 600 !important;
  border: none !important;
  background-color: var(--green_bg) !important;
  color: var(--blcak_bg) !important;
  border-radius: 5px;
}

.door_form_sug {
  overflow-y: scroll;
  z-index: 999;
  position: absolute;
  display: flex;
  height: 120px;
  padding: 8px 51px 17px 22px;
  border: 2px solid var(--green_bg);
  width: 332px;
  flex-direction: column;
  gap: 4px;
  bottom: -125px;
  left: 0;
  background-color: var(--text-color-white);
  color: var(--blcak_bg);
  border-radius: 5px;
}

.door_form_sug > span {
  cursor: pointer;
}

.hide_form {
  display: none;
}

.show_form {
  display: flex;
}

@media all and (max-width: 900px) {
  .door_main_con {
    width: 100%;
    margin: 28px auto 0px auto;
    gap: 24px;
  }

  .door_head_span {
    color: #0f0f0f;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: -10px;
  }

  .door_input_con {
    width: 100%;
    padding: 16px;
    flex-direction: column;
    gap: 12px;
    border-radius: 6px;
    align-items: center;
  }
  .door_text_input_fields {
    width: 100%;
    height: 42px;
    padding-left: 16px;
    font-size: 16px;
  }

  .door_select_input_fields {
    background-position: right 15px top 50%;
    width: 100%;
    height: 42px;
    padding-left: 16px;
    font-size: 16px;
  }

  .door_post_info_con {
    width: 100%;
    height: auto;
    padding: 16px;
    flex-direction: column;
    border-radius: 5px;
  }

  .door_jobs_filter_val {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
  }

  .door_jobs_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .door_form_group {
    position: relative;
    display: flex;
    gap: 2px;
  }

  .door_form_input {
    height: 42px;
    padding: 8px 8px;
    font-size: 14px !important;
  }

  .door_form_btn {
    height: 42px;
    justify-content: center;
    align-items: center;
    font-size: 14px !important;
    font-weight: 500 !important;
  }

  .door_form_sug {
    padding: 8px 16px;
    border: 1px solid var(--green_bg);
    width: 100%;
  }
}
