.autoComplete {
  height: 3rem;
  width: 370px;
  padding: 1rem;
  border-radius: 3px;
  border: 1px solid white;
}

.c2mSelect {
  height: 3rem;
  width: 370px;
  padding: 0 1rem;
  display: block;
  border-radius: 3px;
  border: 1px solid white;
  margin-bottom: .5rem;
}

.autoComplete_list {
  padding: 0;
  list-style-type: none;
  border: 1px solid white;
  margin-top: 0;
  width: auto;
  width: 370px;
  position: absolute;
  z-index: 999;
  background-color: white;
  border: 1px solid #2d55b3;
}

.autoComplete_result {
  margin: 0.3rem;
  padding: 0.3rem 0.5rem;
  color: #212121;
  background-color: rgba(255, 255, 255, 1);
  transition: all 0.2s ease;
  text-align: left;
}

.autoComplete_result:hover {
  cursor: pointer;
  background-color: #f5f5f5;
}

.autoComplete_highlighted {
  color: #2d55b3;
  font-weight: 600;
}

#jobsResults table, #jobsResults table tr, #jobsResults table tr td, #jobsResults table tr th {
  border: 1px solid #ccc;
  border-collapse: collapse;
}
#jobsResults table tr td, #jobsResults table tr th {
  padding: 0.5rem;
}
#jobsResults table tr th:nth-child(3) {
  width: 13rem;
}
#jobsResults {
  margin: 0 auto;
  width: 100%;
}
#jobsResults table {
  width: 100%;
}

ul#occupations {
  width: 100%;
}
ul#occupations > li {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style-type: none;
  border: 1px solid #ccc;
}
ul#occupations > li > span {
  display: block;
  padding: 0.5rem 1rem 0.5rem 3rem;
  cursor: pointer;
  position: relative;
}
ul#occupations > li > span:before {
  content: '+';
  display: block;
  position: absolute;
  left: 1rem;
  top: 0.1rem;
  color: #2d55b3;
  font-weight: 600;
  font-size: 1.5rem;
}
ul#occupations > li.active, ul#occupations > li:hover {
  background-color: #f5f5f5;
}
ul#occupations > li.active > span:before {
  content: '-';
}
ul#occupations > li > ul {
  background-color: white;
  overflow: hidden;
  max-height: 0;
  transition: .25s ease max-height;
  padding: 0 3rem;
  list-style-type: disc;
}
ul#occupations > li > ul > li {
  padding: 0.25rem 0;
}
ul#occupations > li > ul > li > span {
  font-weight: 600;
  font-size: 14px;
  color: #2d55b3;
  cursor: pointer;
}
ul#occupations > li.active > ul {
  max-height: 10000px;
}

@media only screen and (max-width: 768px) {
  #jobsResults {
    margin: 0 auto;
  }
  .jobs-table-wrapper {
    max-width: 100vw;
    overflow-x: auto;
	padding: 0 1rem;
  }
  #jobsResults p {
	text-align: center;
  }
  #jobsResults table {
    width: 768px;
  }
  #jobsResults table tr th, #jobsResults table tr td {
    text-align: left;
  }
}