/* FILTERS */

#filters {
  display: flex;
  align-items: flex-start;
}

#form1 {
  margin-right: 32px;
}

#form1,
#form2 {
  width: 300px;
}

.filter-title {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1A154C;
  padding: 5px 20px;
  color: white;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 4px;
}

.filter-title i {
  margin-left: 8px;
  margin-top: 2px;
}

.filter-modal {
  z-index: 20;
  display: none;
  padding: 10px;
  background: white;
  border-radius: 2px;
  font-size: 15px;
  background-color: #1A154C;
  color: white;
  top: 40px;
  width: 100%;
}

.label-filterjobs {
  padding-left: 10px;
  text-align: left;
}


div.job-box:hover {
  background-color: #E4E4E4;
}

a.job-text {
  color: #1A154C;
}

a.job-text:hover {
  background: #E4E4E4;
  color: #202020;
}

a.job-subtext {
  padding: 10px;
  color: #202020;
  font-size: 15px;
}

a.job-subtext:hover {
  background: #E4E4E4;
  color: #202020;
  text-decoration: none;
}

.img-job {
  background-image: url(./../assets/imgs/icon-job.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.job-box>a {
  transition: opacity .5s ease-out, margin .5s ease-out;
  -moz-transition: opacity .5s ease-out, margin .5s ease-out;
  -webkit-transition: opacity .5s ease-out, margin .5s ease-out;
  -o-transition: opacity .5s ease-out, margin .5s ease-out;
  color: white;
  font-size: 16px;
}

.job-box:hover>a {
  opacity: 1 !important;
  transition: opacity 0.1s 0.3s linear, margin .5s ease-out;
  -moz-transition: opacity 0.1s 0.3s linear, margin .5s ease-out;
  -webkit-transition: opacity 0.1s 0.3s linear, margin .5s ease-out;
  -o-transition: opacity 0.1s 0.3s linear, margin .5s ease-out;
  margin-bottom: 20px;
  background: #1A154C;
  padding: 8px 12px;
  border-radius: 20px;
  margin-top: 16px;
}

.job-box {
  transition: max-height 1s ease-out;
  -moz-transition: max-height 1s ease-out;
  -webkit-transition: max-height 1s ease-out;
  -o-transition: max-height 1s ease-out;
}

.job-box:hover {
  transition: max-height 1s linear;
  -moz-transition: max-height 1s linear;
  -webkit-transition: max-height 1s linear;
  -o-transition: max-height 1s linear;
  max-height: 900px;
}

.job-text {
  max-width: 260px;
}

.response-container {
  justify-content: space-evenly;
}

label.filters-container {
  padding-left: 10px;
}

.landing-button a {
  color: #202020 !important;
}


.filters-container {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-flow: row wrap;
  margin-bottom: 25px;
}

.jobs-container {
  display: flex;
  width: 100%;
  flex-flow: row wrap;
  justify-content: center;
  margin-top: 50px;
  padding-bottom: 40px;
}

div.job-box {
  background-color: #ffffff;
  font-weight: 900;
  z-index: 10;
  border-radius: 3px;
  text-align: center;
  text-decoration: none;
  align-items: center;
  display: flex;
  flex-flow: column;
  color: #202020;
  margin: 10px;
  padding: 30px 20px 0;
  width: 250px;
  min-height: 200px;
  margin-top: 10px;
  text-align: center;
  border: 1px solid white;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.position-row-filter {
  justify-content: center;
}

@media (max-width: 700px) {
  .position-row-filter {
    flex-direction: column;
    flex-wrap: nowrap !important;
    margin-bottom: 5%;
  }

  .filter-title {
    margin-bottom: 5%;
  }

  #filters {
    display: flex;
    align-items: center;
  }
}