.nr-job-offer-closed{
  text-align: center;
  font-weight: bold;
  padding:100px 0;
}

.nr-jobs-single-title{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.nr-jobs-tags{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 15px;
}

.nr-jobs-taxonomy-list{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0 0 5px 0;
}

.nr-jobs-taxonomy-list li{
  margin: 0 5px 0 0 !important;
  padding:3px 5px;
  border:1px solid #D0D0D0;
  background-color: #fff;
  border-radius: 5px;
  font-size: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.nr-jobs-taxonomy-list li:before{
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: contain;
  background-image: url("../images/icon-type.svg");
  background-repeat: no-repeat;
  margin-right: 5px;
}
.nr-jobs-taxonomy-list.nr-jobs-taxonomy-list-location li:before{
  background-image: url("../images/icon-location.svg");
}


.card-nr-job-offer{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border:1px solid #D0D0D0;
  padding: 10px;
  gap:10px;
}


.nr-jobs-filter{
  margin-bottom: 30px;
}
.nr-jobs-js-filters-mobile{
  display: none !important;
}
@media screen and (max-width: 767px) {
  .nr-jobs-filter{
    position:fixed;
    right:0;
    bottom:0;
    z-index:10;
    width: 100%;
    margin-bottom: 0px;
    transform: translateY( calc(100% - 35px) );
    transition: all .3s;
  }
  .nr-jobs-filter.active{
    transform: translateY( 0 );
  }
  .nr-jobs-filter form{
    background-color: #ffffff;
    padding:5px;
  }
  .nr-jobs-js-filters-mobile{
    display: flex !important;
    margin:0 0 0 auto;
    width: 100%;
    justify-content: center;
    height: 35px;
  }

  .nr-jobs-filter.active .nr-jobs-js-filters-mobile{
    color:#000;
  }
}

.nr-jobs-filter form{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.nr-jobs-filter form select{
  margin: 0 5px;
}

.nr-jobs-filter button{
  border:none;
  flex:none;
}


@media screen and (max-width: 767px) {
  .nr-jobs-filter form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .nr-jobs-filter form select, .nr-jobs-filter form input[type=text]{
    margin: 0 0 10px;
  }
}


.card-nr-job-offer-col-1{
  flex:1;
}

.card-nr-job-offer-end{
  font-size: 14px;
  margin-top: 10px;
}
.card-nr-job-offer-link{
}

.card-nr-job-offer-link:hover{
  box-shadow: unset;
}

.card-nr-job-offer:hover{
  outline:1px solid #000;
}
.nr-job-offer-btn-back{
  text-align: center;
}

.nr-jobs-pagination{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.nr-jobs-pagination .page-numbers{
  min-width: 25px;
  text-align: center;
  margin: 0 5px;
}


.nr-jobs-no-results{
  font-size: 20px;
  text-align: center;
  padding: 50px 0;
}