/*filter*/
.searchJobs_filter {
  display: flex;
  font-size: 18px;
  margin-bottom: 30px;
  align-items: center;
}

  .searchJobs_filter .input {
    height: 50px;
    width: 245px;
    border-radius: 3px;
    color: #0e2d6d;
    border: 1px solid #d4d5d6;
    padding: 5px 12px;
    font: 300 18px/18px 'migdalFont', calibri, arial;
    transition: .25s ease-in-out;
  }

  .searchJobs_filter .select {
    height: 50px;
    width: 245px;
    border-radius: 3px;
    color: #0e2d6d;
    border: 1px solid #d4d5d6;
    padding: 5px 12px;
    font: 300 18px/18px 'migdalFont', calibri, arial;
    transition: .25s ease-in-out;
    background: url(/imgs/icon_select_arrow.jpg) no-repeat 15px center;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    line-height: 2;
  }

  .searchJobs_filter .searchJobs_filter_text .input:focus, .searchJobs_filter .searchJobs_filter_fields .select:focus {
    border-color: #0e2d6d;
  }

  .searchJobs_filter .searchJobs_filter_text .input {
    background: url(../imgs/header_search_mobile.png) no-repeat 15px 10px;
    background-size: 10%;
    line-height: 1.6
  }

  .searchJobs_filter .searchJobs_filter_text {
    margin-left: 5px;
  }

  .searchJobs_filter .searchJobs_filter_area {
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

    .searchJobs_filter .searchJobs_filter_area span {
      margin-left: 15px;
    }

    .searchJobs_filter .searchJobs_filter_area .searchJobs_filter_fields_fileds {
      display: flex;
      border: 1px solid #d4d5d6;
      margin-left: 30px;
      border-radius: 4px;
    }

      .searchJobs_filter .searchJobs_filter_area .searchJobs_filter_fields_fileds.mobile {
        display: none;
      }

      .searchJobs_filter .searchJobs_filter_area .searchJobs_filter_fields_fileds input[type="radio"] {
        opacity: 0;
        position: absolute;
      }

    .searchJobs_filter .searchJobs_filter_area .searchJobs_filter_fields_filed {
      display: flex;
      align-items: center;
      justify-content: center;
      border-left: 1px solid #efefef;
      border-left: 1px solid #efefef;
      min-width: 100px;
      padding: 10px 15px;
      text-align: center;
      min-height: 50px;
      cursor: pointer;
      transition: .25s ease-in-out;
    }

  .searchJobs_filter .searchJobs_filter_fields_fileds .searchJobs_filter_fields_filed:first-of-type {
    min-width: 113px;
  }

  .searchJobs_filter .searchJobs_filter_fields_fileds .searchJobs_filter_fields_filed:first-of-type {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }

  .searchJobs_filter .searchJobs_filter_fields_fileds .searchJobs_filter_fields_filed:last-of-type {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
  }

  .searchJobs_filter .searchJobs_filter_fields_fileds .searchJobs_filter_fields_filed:last-of-type {
    border-left: none;
    transition: .25s ease-in-out;
  }

  .searchJobs_filter .searchJobs_filter_area .searchJobs_filter_fields_fileds input[type="radio"]:checked + label {
    font-weight: 700;
    background-color: #f6f6f6
  }

  .searchJobs_filter .searchJobs_filter_area .searchJobs_filter_fields_fileds input[type="radio"]:focus + label {
    background-color: #f6f6f6;
    outline: 1px dashed #0e2d6d;
    outline-offset: 2px;
  }

  .searchJobs_filter .searchJobs_filter_action .button {
    width: 110px;
    height: 50px;
    font-size: 24px;
    color: #fff;
    border-radius: 50px;
    background-color: #0e2d6d;
    border: 0;
    cursor: pointer;
  }

.searchJobs_filter_row {
  display: flex;
}

  .searchJobs_filter_row:nth-child(2) {
    margin-right: auto;
  }

/*results list*/
.searchJobs_results {
  margin-top: 15px;
}

.searchJobs_results_item {
  display: flex;
  box-sizing: border-box;
  margin-bottom: 20px;
}

  .searchJobs_results_item .searchJobs_results_item_main {
    width: 410px;
    height: 110px;
    background-color: #0e2d6d;
    color: #fff;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    position: relative;
    transition: width .25s ease
  }

    .searchJobs_results_item .searchJobs_results_item_main:after {
      content: '';
      display: block;
      border-style: solid;
      border-width: 9px 11px 9px 0;
      border-color: transparent #0e2d6d transparent transparent;
      position: absolute;
      left: -11px;
      transition: left .25s ease-in-out;
      top: calc(50% - 11px);
    }

    .searchJobs_results_item .searchJobs_results_item_main:before {
      content: '';
      display: block;
      border-style: solid;
      border-width: 9px 11px 9px 0;
      border-color: transparent #0e2d6d transparent transparent;
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: rotate(-90deg);
      transition: bottom .25s ease-in-out;
    }

    .searchJobs_results_item .searchJobs_results_item_main.ended:before {
      bottom: -14px;
    }

.searchJobs_results_item_main .jobItem_main_title {
  font-size: 24px;
  font-weight: 400;
}

.searchJobs_results_item_main .jobItem_main_number {
  font-size: 18px;
  font-weight: 300;
}

.searchJobs_results_item_details {
  height: 110px;
  transition: opacity .4s ease;
  background-color: #f6f6f6;
  margin-right: 20px;
  width: calc(100% - 430px);
  display: flex;
  align-items: center;
  padding: 30px;
}

.searchJobs_results_item.active {
  flex-direction: column;
}

.searchJobs_results_item_main.active {
  width: 100%;
}

  .searchJobs_results_item_main.active button.jobItem_details_action_close {
    visibility: visible;
    opacity: 1;
  }

.searchJobs_results_item.active .searchJobs_expanded_details {
  display: block;
  background-color: #e9e9e9;
  padding: 20px;
}

.searchJobs_results_item_main.hid:after {
  left: 5px;
}

.searchJobs_results_item_details.active {
  width: 0;
  opacity: 0;
  visibility: hidden;
  margin: 0;
  padding: 0;
  height: 0;
  min-height: 0;
  transition: opacity .25s ease;
}

.searchJobs_results_item_main .jobItem_details_action_close {
  border: 0;
  color: #0e2d6d;
  border-radius: 50px;
  background-color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 18px;
  color: #0e2d6d;
  width: 170px;
  position: absolute;
  left: 20px;
  margin: auto;
  top: 0;
  bottom: 0;
  height: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s;
}

  .searchJobs_results_item_main .jobItem_details_action_close img {
    margin-right: 10px;
    transition: .25s ease-in-out;
    transform: rotate(90deg);
  }

.searchJobs_results_item_details .jobItem_details_field {
  margin-left: 100px;
}

.searchJobs_results_item_details .jobItem_details_action {
  border: 0;
  color: #0e2d6d;
  margin-right: auto;
  border-radius: 50px;
  background-color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 18px;
  transition: .25s ease-in-out;
}

  .searchJobs_results_item_details .jobItem_details_action:hover {
    color: #fff;
    background-color: #0e2d6d;
  }

  .searchJobs_results_item_details .jobItem_details_action .white-arrow {
    display: none
  }

  .searchJobs_results_item_details .jobItem_details_action:hover .blue-arrow {
    display: none
  }

  .searchJobs_results_item_details .jobItem_details_action:hover .white-arrow {
    display: block
  }

  .searchJobs_results_item_details .jobItem_details_action.active {
    opacity: 0;
    visibility: hidden;
  }

  .searchJobs_results_item_details .jobItem_details_action img {
    margin-right: 10px;
    transition: .25s ease-in-out;
  }

.searchJobs_results_item_details .jobItem_details_field_blockValue {
  font-size: 24px;
  font-weight: 400;
}

.searchJobs_results .mobile-opener {
  display: none;
}

.searchJobs_results_item_main .mobile-info {
  display: none;
}

/*expanded item*/
.searchJobs_expanded_details {
  display: none;
  background-color: #e9e9e9;
}

.searchJobs_expanded_details_wrapper {
  display: flex;
}

.searchJobs_expanded_details_info {
  background-color: #f6f6f6;
  width: 70%;
  padding: 40px 35px 20px 100px;
}

.searchJobs_expanded_details_form {
  background-color: #f6f6f6;
  margin-right: 20px;
  width: 30%;
  padding: 40px 35px 20px 35px;
}

  .searchJobs_expanded_details_form .details_form_title {
    color: #0e2d6d;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
  }

  .searchJobs_expanded_details_form .form-label {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: 400;
    color: #0e2d6d;
    margin-bottom: 15px;
  }

    .searchJobs_expanded_details_form .form-label input {
      transition: .25s ease;
      height: 36px;
      border: 1px solid #d4d5d6;
      background-color: #fff;
      border-radius: 3px;
      padding: 10px;
    }

  .searchJobs_expanded_details_form .button {
    background-color: #0e2d6d;
    font-weight: 400;
    font-size: 24px;
    border: 0;
    color: #fff;
    border-radius: 50px;
    padding: 5px 15px;
    cursor: pointer;
  }

.details_form_title_button-wrapper {
  text-align: center;
  margin-top: 20px;
}

.searchJobs_expanded_details_form .form-label.file input[type="file"] {
  display: none;
}

.searchJobs_expanded_details_form .form-label input:focus {
  border-color: #0e2d6d;
}

.searchJobs_expanded_details_form .form-label.file {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 40px;
  background: #fff;
  border-radius: 3px;
  color: #0e2d6d;
  text-align: center;
  border: 1px solid #d4d5d6;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .searchJobs_expanded_details_form .form-label.file span {
    display: flex;
    align-items: center;
    justify-content: center;
  }

    .searchJobs_expanded_details_form .form-label.file span img {
      margin-left: 10px;
    }

.details_form_title_error {
  font-size: 14px;
  color: #da0913;
  font-weight: 400;
}

  .details_form_title_error span {
    display: block;
  }

  .details_form_title_error a {
    color: #0e2d6d;
    text-decoration: underline;
  }

.searchJobs_expanded_details_info_row {
  display: flex;
  font-size: 18px;
  margin-bottom: 30px;
}

.details_info_row_name {
  font-weight: 300;
  width: 18%;
}

.details_info_row_value {
  font-weight: 400;
  width: 82%;
}

.searchJobs_expanded_details_info_row_after {
  font-size: 14px;
}

.searchJobs_expanded_details_info ul li {
  position: relative;
  padding-right: 15px;
}

  .searchJobs_expanded_details_info ul li:before {
    content: '>';
    display: inline-block;
    font-weight: 700;
    position: absolute;
    right: 0
  }

.searchJobs_expanded_details_info a {
  border-bottom: 1px solid #cdd0d9;
}

  .searchJobs_expanded_details_info a:hover {
    text-decoration: none;
  }
/*.type_file_wrapper input[type="file"] {display: none;}*/

/*owl-carousel*/
.wouldLikeBlock {
  margin: 30px -6px 0px;
}

  .wouldLikeBlock .item {
    padding: 0px 6px;
  }

    .wouldLikeBlock .item a {
      background-color: #f6f6f6;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      text-align: center;
      align-items: center;
      justify-content: center;
      font-size: 48px;
      height: 200px;
      padding: 30px;
    }

      .wouldLikeBlock .item a span:after {
        content: '';
        background: url(../imgs/left_arrow_icon.png);
        width: 15px;
        height: 26px;
        display: inline-block;
        margin-right: 10px;
      }

      .wouldLikeBlock .item a:hover, .wouldLikeBlock .item a:focus {
        background-color: #0e2d6d;
        color: white;
      }

        .wouldLikeBlock .item a:hover span:after, .wouldLikeBlock .item a:focus span:after {
          background: url(../imgs/left_arrow_icon-white.png);
        }

  .wouldLikeBlock .owl-carousel .owl-nav .owl-next {
    position: absolute;
    left: -50px;
    top: 47%;
    transform: translate(0, -50%);
    width: 60px;
    height: 60px;
    font-size: 0px;
    background: url(../imgs/how_help_gallery_left.png) left 19px top 15px / 18px auto repeat-y;
  }

  .wouldLikeBlock .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    right: -50px;
    top: 47%;
    transform: translate(0, -50%);
    width: 60px;
    height: 60px;
    font-size: 0px;
    background: url(../imgs/how_help_gallery_right.png) left 23px top 15px / 18px auto repeat-y;
  }

  .wouldLikeBlock .owl-carousel .owl-nav .owl-next:hover {
    background-position: left 19px top 65px;
  }

  .wouldLikeBlock .owl-carousel .owl-nav .owl-prev:hover {
    background-position: left 23px top 65px;
  }

/*paginations*/
.searchJobs_difduf {
  text-align: center;
  padding: 64px 0px 0px 0px;
  margin-bottom: 100px;
}

  .searchJobs_difduf ul {
    display: inline-block;
  }

  .searchJobs_difduf li {
    display: inline-block;
    padding: 0px 3px;
    font: 300 24px/24px 'migdalFont', calibri, arial;
    vertical-align: text-top;
  }

    .searchJobs_difduf li:nth-child(1) {
      padding: 0px 0px 0px 6px;
    }

    .searchJobs_difduf li:nth-last-child(1) {
      padding: 0px 6px 0px 0px;
    }

    .searchJobs_difduf li a {
      display: block;
      text-align: center;
      text-decoration: none;
      padding: 0px 4px;
      min-width: 26px;
      height: 26px;
      color: #0e2d6d;
      border-radius: 4px;
      vertical-align: text-top;
    }

      .searchJobs_difduf li a.active {
        background-color: #0e2d6d;
        color: white;
      }

      .searchJobs_difduf li a.searchJobs_difdufRight {
        background: url(/imgs/header_plazma_right.png) center / 13px auto no-repeat;
        font-size: 0px;
      }

      .searchJobs_difduf li a.searchJobs_difdufLeft {
        background: url(/imgs/header_plazma_left.png) center / 13px auto no-repeat;
        font-size: 0px;
      }

      .searchJobs_results_item_main .info_block {
         width: 100%;

         }


@media screen and (max-width: 1400px) {
  /*owl-carousel*/
  .wouldLikeBlock {
    padding: 0 35px;
  }

  .innerPage_section h2.title_before_owl {
    padding: 0 35px;
  }
}

@media screen and (max-width: 1160px) {
  /*filter*/
  .searchJobs_filter .input, .searchJobs_filter .select {
    width: 150px;
  }

  .searchJobs_filter .searchJobs_filter_area .searchJobs_filter_fields_filed {
    min-width: 60px;
  }

  .searchJobs_filter .searchJobs_filter_text .input {
    background-position: 15px 15px;
  }

  /*owl-carousel*/
  .wouldLikeBlock .item a {
    font-size: 42px;
    line-height: 40px;
  }
}

@media screen and (max-width: 1000px) {
  /*results list*/
  .searchJobs_results_item_details .jobItem_details_field {
    margin-left: 20px;
  }
}

@media screen and (max-width: 960px) {
  /*results list*/
  .searchJobs_results_item .searchJobs_results_item_main:before {
    display: none;
  }

  .searchJobs_results_item .searchJobs_results_item_main.active {
    background-color: #e9e9e9;
  }

  .searchJobs_results_item_details {
    display: none;
  }

  .searchJobs_results_item .searchJobs_results_item_main {
    background-color: #f6f6f6;
    color: #0e2d6d;
    width: 100%;
    height: auto;
  }

    .searchJobs_results_item .searchJobs_results_item_main:after {
      display: none;
    }

  .searchJobs_results .mobile-opener {
    display: block;
    background: url(/imgs/store_plazma_arr.png);
    width: 39px;
    height: 23px;
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: .25s ease-in-out;
    border: 0;
  }

    .searchJobs_results .mobile-opener.active {
      transform: rotate(180deg);
    }

  .searchJobs_results_item {
    min-height: 110px;
    margin-bottom: 10px;
  }

  .searchJobs_results_item_main .jobItem_main_number {
    font-size: 30px;
    font-weight: 300;
    display: inline;
  }

  .searchJobs_results_item_main .mobile-info {
    display: block;
    margin-top: 10px;
    font-size: 24px;
  }

  .searchJobs_results_item_main .jobItem_main_title {
    width: calc(100% - 57px);
    box-sizing: border-box;
    display: inline;
    font-size: 30px;
    font-weight: 700;
  }

  .searchJobs_results_item_main .separator {
    color: #cbcbcb;
    margin: 0 10px;
  }

  .searchJobs_results_item_main .info_block {
    width: calc(100% - 50px);
  }

  /*expanded item*/
  .searchJobs_expanded_details_wrapper {
    flex-direction: column;
  }

  .jobItem_details_action_close {
    display: none !important;
  }

  .searchJobs_expanded_details_info {
    width: 100%;
    margin-top: 2px;
    padding: 40px 20px;
  }

  .searchJobs_expanded_details_form {
    width: 100%;
    margin-right: 0;
    margin-top: 2px;
    padding: 40px 20px;
  }

  .searchJobs_expanded_details_info_row {
    font-size: 24px;
  }

  .details_info_row_name {
    width: 25%;
  }

  .details_info_row_value {
    width: 75%;
  }

  .searchJobs_expanded_details_info_row_after {
    font-size: 18px;
  }

  .searchJobs_expanded_details_form .details_form_title {
    font-size: 36px;
  }

  .searchJobs_expanded_details_form .form-label {
    font-size: 24px;
  }

    .searchJobs_expanded_details_form .form-label input, .searchJobs_expanded_details_form .form-label.file {
      height: 60px;
    }

  .details_form_title_error {
    font-size: 24px;
  }

  .searchJobs_expanded_details_form .button {
    padding: 15px 70px;
  }

  .details_form_title_button-wrapper {
    margin-top: 30px;
  }

  .searchJobs_expanded_details {
    background-color: transparent;
    padding: 0;
  }

  /*filter*/
  .searchJobs_filter_row:nth-child(2) {
    margin-right: 0;
  }

  .searchJobs_filter_row {
    flex-direction: column;
  }

  .jobs_results h2 {
    font-size: 60px;
    margin-bottom: 25px;
  }

  .searchJobs_filter {
    flex-direction: column;
    align-items: normal;
  }

    .searchJobs_filter div {
      margin: 0 0 20px 0;
    }

    .searchJobs_filter .searchJobs_filter_text {
      margin-left: 0;
    }

    .searchJobs_filter .input, .searchJobs_filter .select {
      width: 100%;
      height: 80px;
      background: url(/imgs/icon_select_arrow_mobile.jpg) no-repeat 15px center;
      font-size: 30px;
      font-weight: 300;
    }

      .searchJobs_filter .select:after {
        position: absolute;
        content: '';
        display: block;
      }

    .searchJobs_filter .searchJobs_filter_text .input {
      background-position: 3% 50%;
      background-size: 6%;
    }

    .searchJobs_filter .searchJobs_filter_action .button {
      width: 100%;
      height: 70px;
      margin-top: 0;
      font-size: 40px;
    }

    .searchJobs_filter .searchJobs_filter_area {
      margin-right: 0;
      border: 1px solid #d4d5d6;
      border-radius: 4px;
    }

      .searchJobs_filter .searchJobs_filter_area .searchJobs_filter_fields_filed.active {
        background-color: #fff;
      }

      .searchJobs_filter .searchJobs_filter_area .searchJobs_filter_fields_fileds {
        margin: 0;
        width: 100%;
        border: 0;
      }

      .searchJobs_filter .searchJobs_filter_area .searchJobs_filter_fields_filed {
        min-width: 25%;
        min-height: 80px;
        margin: 0;
        font-size: 30px;
        padding: 10px 5px;
        line-height: 1;
      }

      .searchJobs_filter .searchJobs_filter_area span {
        padding: 15px;
        background-color: #f6f6f6;
        height: 80px;
        display: flex;
        align-items: center;
        font-size: 30px;
      }

      .searchJobs_filter .searchJobs_filter_area span {
        margin-left: 0;
      }

    .searchJobs_filter .searchJobs_filter_fields_fileds .searchJobs_filter_fields_filed:first-of-type {
      min-width: 25%;
    }

  /*owl-carousel*/
  .mobile_centered {
    text-align: center;
  }

  .wouldLikeBlock {
    padding: 0px;
  }

    .wouldLikeBlock .item a {
      font-size: 36px;
      line-height: 32px;
      padding: 20px;
    }

      .wouldLikeBlock .item a span:after {
        background-size: 100% auto;
        width: 12px;
        height: 21px;
        margin-right: 6px;
      }

      .wouldLikeBlock .item a:hover, .wouldLikeBlock .item a:focus {
        background-color: #f6f6f6;
        color: #0e2d6d;
      }

        .wouldLikeBlock .item a:hover span:after, .wouldLikeBlock .item a:focus span:after {
          background: url(../imgs/left_arrow_icon.png) left top / 100% auto no-repeat;
        }

    .wouldLikeBlock .owl-carousel .owl-nav .owl-next {
      left: -42px;
      width: 50px;
      height: 50px;
      background-position: left 14px top 9px;
    }

    .wouldLikeBlock .owl-carousel .owl-nav .owl-prev {
      right: -42px;
      width: 50px;
      height: 50px;
      background-position: left 17px top 9px;
    }

    .wouldLikeBlock .owl-carousel .owl-nav .owl-next:hover {
      background-position: left 14px top 9px;
    }

    .wouldLikeBlock .owl-carousel .owl-nav .owl-prev:hover {
      background-position: left 17px top 9px;
    }
}

@media screen and (max-width: 670px) {
  /*owl-carousel*/
  .wouldLikeBlock .owl-carousel .owl-nav .owl-next {
    left: -18px;
    width: 32px;
    height: 50px;
    background-position: left 2px top 9px;
  }

  .wouldLikeBlock .owl-carousel .owl-nav .owl-prev {
    right: -18px;
    width: 32px;
    height: 50px;
    background-position: left 12px top 9px;
  }

  .wouldLikeBlock .owl-carousel .owl-nav .owl-next:hover {
    background-position: left 2px top 9px;
  }

  .wouldLikeBlock .owl-carousel .owl-nav .owl-prev:hover {
    background-position: left 12px top 9px;
  }
}

@media screen and (max-width: 600px) {
  /*pagination*/
  .searchJobs_difduf {
    text-align: center;
    padding: 48px 0px 0px 0px;
  }
}

@media screen and (max-width: 560px) {
  /*filter*/
  .jobs_results h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .searchJobs_filter .searchJobs_filter_area span, .searchJobs_filter .searchJobs_filter_area .searchJobs_filter_fields_fileds {
    display: none;
  }

    .searchJobs_filter .searchJobs_filter_area .searchJobs_filter_fields_fileds.mobile {
      display: block;
      margin-left: 0;
    }
}

@media screen and (max-width: 480px) {
  /*owl-carousel*/
  .wouldLikeBlock {
    padding: 0 25px;
  }

    .wouldLikeBlock .owl-carousel .owl-nav .owl-next {
      left: -28px;
    }

    .wouldLikeBlock .owl-carousel .owl-nav .owl-prev {
      right: -28px;
    }
}

@media screen and (max-width: 450px) {
  /*filter*/
  .searchJobs_filter div {
    margin-bottom: 10px;
  }

  .searchJobs_filter .searchJobs_filter_action .button {
    height: 42px;
    margin-top: 10px;
    font-size: 24px;
  }

  .searchJobs_filter .input, .searchJobs_filter .select {
    width: 100%;
    height: 60px;
    background: url(/imgs/icon_select_arrow_mobile.jpg) no-repeat 15px center;
    font-size: 24px;
  }

  .searchJobs_filter .searchJobs_filter_text .input {
    background-position: 15px 10px;
    background-size: 10%;
  }

  .searchJobs_filter .searchJobs_filter_area {
    margin-right: 0;
  }

  /*results list*/
  .searchJobs_results .mobile-opener {
    left: 20px;
    top: 25px;
    bottom: auto;
  }

  /*owl-carousel*/
  .wouldLikeBlock .item a {
    font-size: 32px;
    line-height: 30px;
  }

    .wouldLikeBlock .item a span:after {
      width: 10px;
      height: 17px;
    }

  .wouldLikeBlock {
    margin-top: 20px;
  }

  .searchJobs_results_item_main .mobile-info {
    margin-top: 20px;
    font-size: 16px;
  }

  .searchJobs_results_item_main .jobItem_main_title, .searchJobs_results_item_main .jobItem_main_number {
    font-size: 18px;
    font-weight: 700;
    display: block;
    width: 100%;
  }

  .mobile_centered {
    text-align: center;
  }

  /*expanded item*/
  .searchJobs_expanded_details_info {
    width: 100%;
    margin-top: 2px;
    padding: 30px 20px;
  }

  .searchJobs_expanded_details_form {
    width: 100%;
    margin-right: 0;
    margin-top: 2px;
    padding: 30px 20px;
  }

  .searchJobs_expanded_details_info_row {
    font-size: 18px;
    flex-direction: column;
  }

  .details_info_row_name {
    width: 100%;
  }

  .details_info_row_value {
    width: 100%;
  }

  .searchJobs_expanded_details_info_row_after {
    font-size: 14px;
    font-weight: 400;
  }

  .searchJobs_expanded_details_form .details_form_title {
    font-size: 24px;
  }

  .searchJobs_expanded_details_form .form-label {
    font-size: 18px;
  }

    .searchJobs_expanded_details_form .form-label input, .searchJobs_expanded_details_form .form-label.file {
      height: 36px;
    }

  .details_form_title_error {
    font-size: 14px;
  }

  .searchJobs_expanded_details_form .button {
    padding: 5px 15px;
  }

  .details_form_title_button-wrapper {
    margin-top: 30px;
  }

  /*pagination*/
  .searchJobs_difduf {
    padding: 36px 0px 0px 0px;
  }

  /*show/hide Close button*/
  /*.jobItem_details_action_close .show {visibility: visible; opacity: 1;}

  .jobItem_details_action_close .hide {visibility: hidden; opacity: 0;}*/

}

.jobApp_result {
  padding: 40px 0px 0px 0px;
}

  .jobApp_result[aria-hidden="true"] {
    display: none;
  }

.jobApp_form[aria-hidden="true"] {
  display: none;
}

.jobApp_result img {
  display: block;
  width: 80px;
  margin: 0px auto 0px;
}

.jobApp_result strong {
  display: block;
  text-align: center;
  padding: 8px 0px 32px 0px;
  font-size: 24px;
  line-height: 30px;
}

.jobApp_result a {
  display: block;
  width: 120px;
  margin: 0px auto 0px;
  text-align: center;
  text-decoration: none;
  background-color: #0e2d6d;
  font-weight: 400;
  font-size: 24px;
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
}
