.StackedInput {
  margin: 2px 0;
}
.StackedInput:last-child {
  margin-bottom: 0;
}

.StackedInput-input {
  height: 36px;
  max-width: 400px;
  padding: 0.2em 0.6em;
  border: 1px solid #8FADBF;
  border-radius: 8px;
  background-color: #E6EEF2;
  font-family: Raleway, sans-serif;
  font-size: 1.2em;
  color: #12679b;
}

.StackedInput-separator, .StackedInput-groupLabel, .StackedInput-label {
  display: block;
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 0.54);
  font-size: 18px;
}

.StackedInput-group {
  margin-bottom: 8px;
}
.StackedInput-group:last-child {
  margin-bottom: 0;
}
.StackedInput-group > .StackedInput {
  display: inline-block;
  vertical-align: top;
  margin-right: 8px;
}
.StackedInput-group > .StackedInput:last-child {
  margin-right: 0;
}

.StackedInput-formGroup {
  margin-bottom: 16px;
}
.StackedInput-formGroup:last-child {
  margin-bottom: 0;
}

.SearchActions {
  margin-bottom: 8px;
}
.SearchActions > * {
  margin-right: 16px;
}
.SearchActions > *:last-child {
  margin-right: 0;
}
.ClearFiltersButton {
  background-color: #fff;
  color: #12679b;
}

.JobSearchForm-wrapper {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.JobSearchForm-wrapper * {
  box-sizing: border-box;
}

/**
 * JobSearchResults
 */
.JobSearchResults {
  margin-top: 16px;
  table-layout: fixed;
}

.JobSearchResults td, .JobSearchResults th {
  width: 30%;
  padding: 4px;

  text-align: left;
  word-break: break-word;

  background: unset !important;
  font-weight: unset !important;
  font-size: unset !important;
  display: table-cell !important;
  text-align: unset !important;
}
@media (max-width: 600px) {
  .JobSearchResults td, .JobSearchResults th {
    font-size: 14px !important;
    line-height: 1.4;
  }
}

.JobSearchResults td:first-child, .JobSearchResults th:first-child {
  padding-left: 8px;
  width: 40%;
}
.JobSearchResults td:last-child, .JobSearchResults th:last-child {
  padding-right: 8px;
}

.JobSearchResults-header th a {
  font-weight: bold;
  font-size: 1.1em
}
.JobSearchResults th.is-sortedOn:after {
  content: '';
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;

  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.JobSearchResults th.is-sortedOn--asc:after {
  border-bottom: 5px solid #127dbf;
}
.JobSearchResults th.is-sortedOn--desc:after {
  border-top: 5px solid #127dbf;
}

.JobSearchResults tr:nth-of-type(2n + 2) {
  background-color: #f0f0f0;
}

/**
 * PaginationLinks
 */
.PaginationLinks {
  margin-top: 30px;
  list-style: none;
  text-align: center;
}
.PaginationLinks li{
  display: inline-block;
  margin-right: 10px;
  margin-left: 10px;
  margin-top: 20px;
}
.PaginationLinks li.is-active{
  display: inline-block;
  border: 1px solid blue;
  padding-left: 8px;
  padding-right: 8px;
}
.PaginationLinks li:first-child{
  font-size: 21px;
  margin-right: 10px;
}
.PaginationLinks li:last-child{
  font-size: 21px;
  margin-left: 10px;
}
