.job_board_list {

}

.job_board_list .wrapper .widget {
  display: flex;
  flex-direction: column;
}

.job_board_list .wrapper .widget article.job_posting {
  width: 100%;
  margin: 0 auto 40px;
  border: 1px solid #ccc;
}
.job_board_list .wrapper .widget article.job_posting.open .job_title::after {
  animation: openChange 0.5s linear 1 alternate;
  content: "\e04f";
}
.job_board_list .wrapper .widget article.job_posting.closed .job_title::after {
  animation: closeChange 0.5s linear 1 alternate;
  content: "\e050";
}

.job_board_list .wrapper .widget article.job_posting .job_title {
  background-color: #005288;
  color: #fff;
  padding: 10px 20px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
}
.job_board_list .wrapper .widget article.job_posting .job_title::after {
  content: "\e050";
  position: absolute;
  font-size: 16px;
  color: #fff;
  top: 50%;
  margin: -16px 0 0 0;
  right: 20px;
  left: auto;
  font-family: ETmodules;
}

@keyframes openChange {
  0% {
    content: "\e050";
  }
  50% {
    color: #5D91B3;
  }
  100% {
    content: "\e04f";
  }
}
@keyframes closeChange {
  0% {
    content: "\e04f";
  }
  50% {
    color: #5D91B3;
  }
  100% {
    content: "\e050";
  }
}

.job_board_list .wrapper .widget article.job_posting .content {
  padding: 10px 20px;
  background-color: #fff;
  display: none;
}

.job_board_list .wrapper .widget article.job_posting .content .section {
  margin: 0 auto 20px auto;
}
.job_board_list .wrapper .widget article.job_posting .content .section ul {
  margin: 0 auto;
}
.job_board_list .wrapper .widget article.job_posting .content .section ul ul {
  margin: 0 auto;
  padding: 0 0 0 1em;
  list-style: circle;
}

.job_board_list .wrapper .widget article.job_posting .content .section .label {
  font-weight: 500;
}

.job_board_list .wrapper .widget article.job_posting .content .job_location {

}
.job_board_list .wrapper .widget article.job_posting .content .job_location ul.location_list {
  display: inline;
  list-style: none;
  padding: 0;
}
.job_board_list .wrapper .widget article.job_posting .content .job_location ul.location_list li.location {
  display: inline-block;
}
.job_board_list .wrapper .widget article.job_posting .content .job_location ul.location_list li.location:after {
  content: "•";
  margin: 0 10px;
}
.job_board_list .wrapper .widget article.job_posting .content .job_location ul.location_list li.location:last-child:after {
  content: "";
}
.job_board_list .wrapper .widget article.job_posting .content .job_description {
  
}
.job_board_list .wrapper .widget article.job_posting .content .job_responsiblities {
  
}
.job_board_list .wrapper .widget article.job_posting .content .job_qualifications {
  
}
.job_board_list .wrapper .widget article.job_posting .content .application {
  margin: 0 auto;
  text-align: center;
  padding-bottom:40px;
}

.gform_body li.job_application_select select {
  width: 100%;
}