/*
 * PLASTIC
 * Colors
 * Site-wide color palette and helper classes
 */
/* Greyscale */
/* Transparents */
/* Spaces */
/* Colors */
/* 2016 colors */
/* Stats colors */
/* External Services */
html {
  font-size: 16px;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', 'Helvetica', sans-serif;
  font-size: 18px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2C2D30;
  position: relative;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  -ms-interpolation-mode: bicubic;
}

select::-ms-expand {
  display: none;
}

.content {
  width: 100%;
  max-width: 800px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 768px) {
  .content {
    padding-left: 0;
    padding-right: 0;
  }
}

.clearfix:before, .clearfix:after {
  content: '';
  display: table;
  clear: both;
}

.float_left {
  float: left;
}

.float_right {
  float: right;
}

.hide {
  display: none !important;
}

.show_on_tablet {
  display: none;
}

@media only screen and (max-width: 768px) {
  .show_on_tablet {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .hide_on_tablet {
    display: none;
  }
}

.btn, .button, button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  display: inline-block;
  text-decoration: none;
  color: #FFF;
  border-radius: 0.25rem;
  padding: 9px 14px 11px;
  font-family: 'Lato', 'Helvetica Neue', sans-serif;
  cursor: pointer;
  position: relative;
}

.btn.btn_transparent:hover, .button.btn_transparent:hover, button.btn_transparent:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.btn:after, .button:after, button:after {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: .25rem;
}

.btn:hover, .button:hover, button:hover {
  box-shadow: inset 0 -2px rgba(0, 0, 0, 0.25);
}

.btn:active, .button:active, button:active {
  box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.2);
}

.btn.border {
  border: 2px solid;
}

.search_bar {
  position: relative;
  z-index: 30;
}

.search_bar_container {
  position: fixed;
  height: 90px;
  width: 100%;
  top: 0;
  left: 0;
  background: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.13);
}

@media only screen and (max-width: 768px) {
  .search_bar_container {
    height: 60px;
    -webkit-transition: height 250ms ease;
    transition: height 250ms ease;
    overflow: hidden;
    cursor: text;
  }
  .search_bar_container.has_focus {
    height: 230px;
    cursor: default;
  }
  .search_bar_container.has_focus + .search_bar_overlay {
    display: block;
  }
  .search_bar_container + .search_bar_overlay {
    display: none;
  }
  .search_bar_container .filter {
    border-bottom: 0;
  }
  .search_bar_container .search_companies {
    border: 2px solid rgba(59, 69, 82, 0.2);
    border-radius: 0.25rem;
    width: 100%;
  }
}

@media only screen and (max-width: 768px) and (max-width: 768px) {
  .search_bar_container .search_companies {
    height: 43px;
    margin-bottom: 10px;
  }
}

.search_bar_container .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 768px) {
  .search_bar_container .content {
    display: block;
    padding: 0 20px;
    overflow: hidden;
  }
}

.search_bar_container input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  display: inline-block;
  width: auto;
  margin: 0;
  padding: 0;
  font: 400 17px/22px 'Lato', 'Helvetica Neue', sans-serif;
  outline: none;
  padding: 10px 30px 10px 37px;
}

@media only screen and (max-width: 768px) {
  .search_bar_container input {
    width: 100%;
    padding: 8px 8px 8px 42px;
  }
}

.search_bar_overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -10;
}

.search_job {
  position: relative;
}

@media only screen and (max-width: 768px) {
  .search_job {
    display: inline-block;
    border-radius: 0.25rem;
    border: 2px solid rgba(59, 69, 82, 0);
    -webkit-transition: border 250ms ease;
    transition: border 250ms ease;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

.search_job input {
  font: 400 17px/22px 'Lato', 'Helvetica Neue', sans-serif;
  outline: none;
  min-width: 323px;
  padding: 34px 8px 34px 42px;
}

@media only screen and (max-width: 768px) {
  .search_job input {
    width: 100%;
    min-width: 100%;
    padding: 8px 8px 8px 42px;
    font-size: 0.8rem;
  }
}

@media only screen and (max-width: 768px) {
  .has_focus .search_job {
    border: 2px solid rgba(59, 69, 82, 0.2);
    margin-bottom: 10px;
  }
}

.search_location_container {
  border-radius: 0.25rem;
  display: inline-block;
  position: relative;
  top: 1px;
  width: 255px;
  z-index: 20;
}

@media only screen and (max-width: 768px) {
  .search_location_container {
    width: 100%;
  }
}

.search_location_container .ts_icon {
  vertical-align: middle;
  color: #FF4B36;
  margin: 0 2px 0 0;
}

.search_location {
  margin-left: auto;
}

@media only screen and (max-width: 768px) {
  .search_location {
    margin-left: 0;
    width: 100%;
    margin-bottom: 10px;
  }
  .search_location .location_filter {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    background: none;
    border: 2px solid rgba(59, 69, 82, 0.2);
    border-radius: 0.25rem;
    box-shadow: none;
    font: 400 17px/22px 'Lato', 'Helvetica Neue', sans-serif;
    outline: none;
    padding: 7px 6px 7px 37px;
    top: 0;
    width: 100%;
  }
  .search_location .location_filter:focus {
    color: #4FAFE6;
  }
  .search_location .location_filter:focus ~ span.show_on_tablet .caret_expand .ts_icon {
    color: #4FAFE6;
  }
}

.search_location input {
  position: relative;
}

@media only screen and (max-width: 768px) {
  .search_location input {
    top: 0;
  }
}

.search_job .ts_icon,
.search_location .ts_icon {
  position: absolute;
  top: 50%;
  z-index: 10;
  pointer-events: none;
}

.search_job .ts_icon {
  -webkit-transform: translate(15px, -50%);
          transform: translate(15px, -50%);
}

.search_location .ts_icon {
  -webkit-transform: translate(11px, -50%);
          transform: translate(11px, -50%);
}

.ts_icon.ts_icon_caret_up {
  right: 11px;
  top: 7px;
}

.ts_icon.ts_icon_caret_down {
  right: 11px;
  top: 16px;
}

.search_job .ts_icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(15px, -50%);
          transform: translate(15px, -50%);
  z-index: 10;
  pointer-events: none;
}

.search_btn {
  background: #49C68E;
  border: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  margin-left: 20px;
  margin-top: 2px;
  padding: 12px 20px 13px;
}

@media only screen and (max-width: 768px) {
  .search_btn {
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    line-height: 22px;
  }
}

.btn_browse_all_jobs {
  background: #f9f9f9;
  border: 2px solid #B2B2B2;
  color: #303336;
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin: 40px auto;
}

.btn_browse_all_jobs.btn_transparent:hover {
  background: rgba(249, 249, 249, 0.4);
  box-shadow: none;
}

@media only screen and (max-width: 768px) {
  .btn_browse_all_jobs {
    line-height: 22px;
    display: block;
  }
}

header {
  background: #2477A3;
  position: relative;
  color: #FFF;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  header .content {
    padding: 0 20px;
  }
}

.home header {
  height: 715px;
  margin-top: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 768px) {
  .home header {
    height: 697px;
    margin-top: 60px;
  }
}

.home header .header_container {
  height: 715px;
  max-width: 1080px;
  width: 100%;
  background-image: url("../images/cactus.png"), url("../images/coffee.png"), url("../images/phone.png");
  background-position: top -90px right 0, bottom 208px right 115px, bottom 0 right 294px;
  background-size: 426px 437px,  209px 210px,  290px 309px;
  background-repeat: no-repeat;
  background-color: #2477A3;
}

@media (min--moz-device-pixel-ratio: 1.3), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .home header .header_container {
    background-image: url("../images/cactus@2x.png"), url("../images/coffee@2x.png"), url("../images/phone@2x.png");
  }
}

@media only screen and (max-width: 768px) {
  .home header .header_container {
    background-position: top -59px right 0px, bottom 172px right 0px, bottom 55px right 61px;
    background-size: 208px 355px,  123px 210px,  254px 205px;
    background-image: url("../images/cactus_mobile.png"), url("../images/coffee_mobile.png"), url("../images/phone_mobile.png");
  }
}

@media only screen and (max-width: 640px) and (min--moz-device-pixel-ratio: 1.3), (max-width: 640px) and (-webkit-min-device-pixel-ratio: 1.3), (max-width: 640px) and (min-device-pixel-ratio: 1.3), (max-width: 640px) and (min-resolution: 1.3dppx) {
  .home header .header_container {
    background-position: top -59px right 0px, bottom 172px right 0px, bottom 55px right 61px;
    background-size: 208px 355px,  123px 210px,  254px 205px;
    background-image: url("../images/cactus_mobile@2x.png"), url("../images/coffee_mobile@2x.png"), url("../images/phone_mobile@2x.png");
  }
}

.home header .header_container .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.home header .header_container .content .content_container {
  margin-top: -90px;
}

header h1 {
  font-size: 3.9rem;
  font-weight: 900;
  position: relative;
  z-index: 10;
}

.home header h1 {
  margin: 0;
  line-height: 85px;
}

@media only screen and (max-width: 768px) {
  .home header h1 {
    font-size: 2.9rem;
    line-height: 1.3;
  }
}

@media screen and (max-width: 510px) {
  .home header h1 {
    font-size: 2.3rem;
    line-height: 1.3;
  }
}

@media screen and (max-width: 420px) {
  .home header h1 {
    font-size: 1.9rem;
    line-height: 1.3;
  }
}

header h1 a {
  border-bottom: 3px solid #fff;
  padding-bottom: 3px;
}

@media only screen and (max-width: 768px) {
  header h1 a {
    border-bottom: 2px solid #fff;
    padding-bottom: 2px;
  }
}

header .content {
  position: relative;
}

header .content img {
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

#cactus_img {
  right: -200px;
  top: -200px;
}

#coffee_img {
  right: 0;
  top: 170px;
}

#phone_img {
  left: 290px;
  top: 177px;
}

.single header,
.page header {
  padding-bottom: 50px;
}

@media only screen and (max-width: 768px) {
  .single header,
  .page header {
    padding: 0 0 51px;
  }
}

.single header h1,
.page header h1 {
  margin-bottom: 0;
  margin-top: 50px;
}

@media only screen and (max-width: 768px) {
  .single header h1,
  .page header h1 {
    font-size: 2.9rem;
    line-height: 1.3;
  }
}

@media only screen and (max-width: 640px) {
  .single header h1,
  .page header h1 {
    font-size: 2.3rem;
    line-height: 1.3;
  }
}

.single header .company_meta,
.page header .company_meta {
  margin: 16px 0 0;
}

@media only screen and (max-width: 768px) {
  .single header .company_meta,
  .page header .company_meta {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}

@media only screen and (max-width: 640px) {
  .single header .company_meta,
  .page header .company_meta {
    font-size: 1.2rem;
    line-height: 1.3;
  }
}

.single header.sticky,
.page header.sticky {
  height: 80px;
  position: fixed;
  width: 100%;
  z-index: 20;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 300ms ease;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease;
  margin-top: 0;
}

.single header.sticky.stick,
.page header.sticky.stick {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.single header.sticky nav,
.page header.sticky nav {
  z-index: 10;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .single header.sticky nav a,
  .single header.sticky nav date,
  .page header.sticky nav a,
  .page header.sticky nav date {
    display: none;
  }
}

.single header.sticky .sticky_nav_header,
.page header.sticky .sticky_nav_header {
  position: absolute;
  left: 50%;
  top: 10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  width: 100%;
}

.single header.sticky .sticky_nav_header h1,
.page header.sticky .sticky_nav_header h1 {
  margin: 0;
  font-size: 1.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0px 10px;
}

.single header.sticky .sticky_nav_header .company_meta,
.page header.sticky .sticky_nav_header .company_meta {
  font-size: 1.1rem;
  margin: 0;
}

.single header.sticky .sticky_nav_header {
  top: -20px;
}

header .post {
  margin-top: 32px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  z-index: 10;
  position: relative;
}

header .post .btn {
  margin-left: 10px;
  border-color: rgba(255, 255, 255, 0.6);
  color: #FFF;
}

header .scroll {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  line-height: 90px;
  text-align: center;
  background: rgba(15, 85, 121, 0.94);
  color: #FFF;
  -webkit-transition: opacity 150ms;
  transition: opacity 150ms;
}

header .scroll:hover {
  opacity: 0.9;
}

@media only screen and (max-width: 768px) {
  header .scroll {
    height: 60px;
    line-height: 60px;
  }
}

header .scroll strong {
  font-weight: 900;
}

header .scroll .ts_icon {
  vertical-align: middle;
  margin-left: 5px;
  opacity: 0.6;
}

header nav {
  margin-top: 30px;
  font-size: 16px;
  line-height: 20px;
}

header nav a {
  font-weight: 700;
}

header nav .ts_icon {
  display: inline-block;
  vertical-align: middle;
  line-height: 20px;
}

header nav .ts_icon_chevron_left {
  margin: 0 -3px 0 -8px;
}

header nav .ts_icon_clock_o {
  margin-left: 2px;
  opacity: 0.5;
}

header .company_meta {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin: 15px 0 50px 1px;
}

header .company_meta a {
  background: -webkit-linear-gradient(bottom, transparent, transparent 1px, #FFF 1px, #FFF 2px, transparent 2px, transparent);
  background: linear-gradient(to top, transparent, transparent 1px, #FFF 1px, #FFF 2px, transparent 2px, transparent);
  color: #FFF;
}

.search_companies_main .company_filter_container {
  display: inline;
}

.caret_expand {
  position: absolute;
  display: inline-block;
  vertical-align: top;
  margin: 0 2px 0 -2px;
  pointer-events: none;
  right: 10px;
  top: 10px;
}

.caret_expand .ts_icon {
  display: block;
  font-size: 16px;
  line-height: 8px;
  color: #4A4A4A;
}

.caret_expand .ts_icon:before {
  font-size: 16px;
}

.filter {
  border-bottom: 1px solid #EDEDED;
  height: 50px;
  font-size: 16px;
  color: #797984;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .filter {
    height: 40px;
  }
}

@media screen and (max-width: 495px) {
  .filter {
    height: 90px;
  }
}

.filter .company_filter_label {
  position: relative;
}

@media only screen and (max-width: 768px) {
  .search_companies .filter {
    height: 70px;
  }
}

.filter .content {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) and (min-width: 520px) {
  .filter .content {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 20px;
  }
}

@media screen and (max-width: 495px) {
  .filter .content {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-right: 0;
  }
}

.filter .company_filter {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  font: inherit;
  color: #797984;
  vertical-align: top;
  outline: none;
  padding: 10px 35px 10px 0;
  max-width: 312px;
}

@media only screen and (max-width: 768px) {
  .filter .company_filter {
    width: 100%;
    max-width: 100%;
    padding: 8px 35px 10px 15px;
  }
}

.filter .company_filter:focus {
  color: #4FAFE6;
}

.filter .company_filter:focus ~ .caret_expand .ts_icon {
  color: #4FAFE6;
}

.filter .job_types {
  margin-left: auto;
}

@media screen and (max-width: 495px) {
  .filter .job_types {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    float: none;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    height: 100%;
    -webkit-align-content: space-around;
        -ms-flex-line-pack: distribute;
            align-content: space-around;
    padding: 0 20px;
  }
}

@media only screen and (max-width: 768px) {
  .filter .job_types {
    margin-left: 0;
  }
}

.filter .job_types label {
  margin-left: 1rem;
}

@media screen and (max-width: 495px) {
  .filter .job_types label {
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    display: block;
    width: 35%;
    margin: 0;
  }
}

.filter .job_types input {
  vertical-align: middle;
  margin: -2px 3px 0;
  font-size: 16px;
  line-height: 1rem;
  outline: none;
}

.jobs_message {
  text-align: center;
  width: 100%;
  font-style: italic;
  margin: 60px 0;
}

.job_item {
  padding: 30px 0;
  border-bottom: 1px solid rgba(151, 151, 151, 0.18);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .job_item {
    padding: 25px 20px;
  }
}

.job_item .job_details_secondary {
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 768px) {
  .job_item .job_details_secondary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.job_item .job_title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}

@media only screen and (max-width: 768px) {
  .job_item .job_title {
    font-size: 17px;
  }
}

@media screen and (min-width: 500px) {
  .job_item .job_title {
    white-space: initial;
    max-width: 430px;
  }
}

@media only screen and (max-width: 520px) {
  .job_item .job_title {
    max-width: 50vw;
  }
}

.job_item .job_title a {
  color: inherit;
  text-decoration: none;
}

.job_item .job_company {
  display: inline-block;
  margin-top: 0.1rem;
}

@media only screen and (max-width: 768px) {
  .job_item .job_company {
    margin-top: 0;
  }
}

.job_details_secondary .job_item .job_company .job_type {
  -webkit-align-self: flex-center;
      -ms-flex-item-align: flex-center;
          align-self: flex-center;
  background-color: #f06;
}

.job_item .job_company_logo {
  width: 20px;
  max-height: 20px;
  vertical-align: middle;
  margin: 0 0.5rem 0 1px;
}

.job_item .job_company_name {
  vertical-align: middle;
  font-size: 17px;
}

@media only screen and (max-width: 768px) {
  .job_item .job_company_name {
    font-size: 16px;
  }
}

.job_item .job_type {
  font-size: 15px;
  color: #888;
  padding: 4px 6px 5px;
  background: #ECEDF1;
  border-radius: 0.25rem;
}

@media only screen and (max-width: 768px) {
  .job_item .job_type {
    padding: 2px 6px 3px;
    font-size: 14px;
    margin-top: 3px;
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end;
  }
}

.job_item .job_location {
  color: #797984;
  margin-top: -1px;
  margin-right: 24px;
  font-size: 16px;
}

@media only screen and (max-width: 768px) {
  .job_item .job_location {
    margin-top: 0;
    margin-right: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 37vw;
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end;
    text-align: right;
  }
}

.job_item .job_location .ts_icon {
  vertical-align: middle;
  margin-left: 6px;
}

#load_more_jobs {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  font: 700 20px/20px 'Lato', 'Helvetica', sans-serif;
  color: #878787;
  background: #ECEDF1;
  padding: 18px 30px 20px;
  border-radius: 0.25rem;
  margin: 40px auto;
  cursor: pointer;
  outline: none;
}

@media only screen and (max-width: 768px) {
  #load_more_jobs {
    margin: 26px auto;
  }
}

#load_more_jobs .ts_icon {
  vertical-align: baseline;
  line-height: 20px;
  margin-left: 0.25rem;
}

footer {
  width: 100%;
  padding: 0 20px;
  background: #F9F9F9;
  border-top: 1px solid #F5F5F5;
  color: #797984;
}

#job_posting {
  margin: 50px auto 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 768px) {
  #job_posting {
    padding: 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#job_posting h2 {
  font-size: 20px;
  font-weight: 900;
  line-height: 22px;
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #D8D8D8;
}

@media only screen and (max-width: 768px) {
  #job_posting h2 {
    padding-bottom: 20px;
  }
}

#job_posting .left_content {
  max-width: 530px;
}

@media only screen and (max-width: 768px) {
  #job_posting .left_content {
    max-width: 100%;
  }
}

#job_posting .left_content p,
#job_posting .left_content li {
  font-size: 1rem;
  line-height: 1.66rem;
  margin: 1rem 0;
}

@media only screen and (max-width: 768px) {
  #job_posting .left_content p,
  #job_posting .left_content li {
    margin-top: 18px;
  }
}

#job_posting .left_content .posting_date {
  font-size: 14px;
  margin-bottom: 20px;
}

#job_posting .left_content .posting_date .ts_icon {
  vertical-align: middle;
}

#job_posting .job_description {
  margin: 1rem 0;
  line-height: 1.66rem;
}

#job_posting .job_description a {
  text-decoration: underline;
}

#job_posting .company_sidebar {
  width: 200px;
  font-size: 16px;
  margin-left: auto;
}

@media only screen and (max-width: 768px) {
  #job_posting .company_sidebar {
    width: 100%;
    float: none;
  }
}

@media only screen and (max-width: 768px) {
  #job_posting .company_sidebar .company_details {
    margin: 20px 0;
  }
}

#job_posting .company_sidebar .job_company_logo {
  display: inline-block;
  width: 20px;
  max-height: 20px;
  vertical-align: middle;
  margin: 1px 6px 8px 0;
}

#job_posting .company_sidebar h3 {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  vertical-align: top;
}

#job_posting .company_sidebar p {
  line-height: 22px;
  margin: 0.5rem 0;
}

#job_posting .company_sidebar .company_tagline {
  color: #797984;
}

#job_posting .company_sidebar .company_website {
  color: #797984;
  text-decoration: underline;
}

#posting_notice {
  display: none;
}

@media only screen and (max-width: 768px) {
  .company_sidebar {
    margin-top: 20px;
  }
}

.company_sidebar #more_jobs {
  border: 1px solid #E7E7E7;
  border-radius: 0.25rem;
}

.company_sidebar #more_jobs h3 {
  font-size: 12px;
  text-transform: uppercase;
  display: block;
  text-align: center;
  padding: 9px;
  border-bottom: 1px solid #E7E7E7;
  color: #ABABAC;
}

.company_sidebar #more_jobs .job {
  display: block;
  padding: 16px 0;
  margin: 0 18px;
}

.company_sidebar #more_jobs .job:not(:last-of-type) {
  border-bottom: 1px solid #E7E7E7;
}

.company_sidebar #more_jobs .job h4 {
  font-size: 16px;
  margin: 0 0 2px;
}

.company_sidebar #more_jobs .job date {
  font-size: 14px;
  color: rgba(44, 45, 48, 0.5);
}

.apply {
  background: rgba(244, 245, 247, 0.6);
  border: 1px solid #E7E7E7;
  border-radius: 0.25rem;
  text-align: center;
  padding: 12px 20px;
  margin: 30px 0;
}

.apply .btn {
  background: #49C68E;
  font-weight: 900;
  width: 100%;
  margin: 10px 0 5px;
}

.apply.show_on_tablet {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.apply.show_on_tablet .btn {
  margin: 0;
  border-radius: 0;
  height: 63px;
  vertical-align: middle;
  line-height: 46px;
  font-size: 18px;
}

#preview_nav {
  position: fixed;
  background: #FFF;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 15px 0;
  z-index: 20;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.13);
}

@media only screen and (max-width: 768px) {
  #preview_nav {
    padding: 15px 20px;
  }
}

#preview_nav .button {
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
}

#preview_nav .edit_button {
  border: 2px solid rgba(178, 178, 178, 0.54);
  background: none;
  color: #36373B;
  padding: 7px 12px 9px;
}

#preview_nav .submit_button {
  border: none;
  background: #49C68E;
}

#preview_nav .preview_text,
#preview_nav .preview_text_mobile {
  display: block;
  text-align: center;
  line-height: 38px;
  font-size: 15px;
  color: #707173;
}

#preview_nav .preview_text .ts_icon,
#preview_nav .preview_text_mobile .ts_icon {
  vertical-align: middle;
  margin-right: 0.2rem;
}

@media screen and (max-width: 520px) {
  #preview_nav .preview_text {
    display: none;
  }
}

#preview_nav .preview_text_mobile {
  display: none;
}

@media screen and (min-width: 380px) and (max-width: 520px) {
  #preview_nav .preview_text_mobile {
    display: block;
  }
}

.post_preview header {
  margin-top: 70px;
}

.post_preview header nav {
  display: none;
}

#faq {
  float: right;
  max-width: 500px;
  margin-right: 15px;
}

@media only screen and (max-width: 768px) {
  #faq {
    float: none;
    margin-right: 0;
  }
}

#faq ol {
  font-weight: 700;
  font-size: 16px;
  line-height: 25px;
  margin: 20px 0 0;
  padding: 0;
  list-style-position: inside;
}

#faq ol li {
  padding-left: 0;
  margin-bottom: 20px;
}

#faq h3 {
  font-weight: 400;
  margin: 0;
}

#faq h4 {
  margin: 0.5rem 0 0;
}

@media only screen and (max-width: 768px) {
  #faq h4 {
    margin-top: 1rem;
    display: inline;
  }
}

#faq p {
  margin: 0;
  font-weight: 400;
}

@media only screen and (max-width: 768px) {
  footer {
    padding-bottom: 63px;
  }
}

footer .content {
  padding: 40px 0;
}

@media only screen and (max-width: 768px) {
  footer nav {
    margin-top: 33px;
  }
}

footer nav .logo {
  margin: 3px 0;
}

footer nav ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style-type: none;
}

@media only screen and (max-width: 768px) {
  footer nav ul {
    margin-top: 0.4rem;
  }
}

footer nav ul li {
  margin: 0.1rem 0;
}

footer nav a {
  font-size: 16px;
  line-height: 25px;
  text-decoration: none;
  color: inherit;
}

footer nav a:hover {
  text-decoration: underline;
}

footer nav p {
  margin: 1rem 0;
}

/* Alerts */
.alert {
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1px solid #E8E8E8;
  background: white;
  color: #555459;
  border-left-width: 5px;
  margin: 0 auto 3rem;
  border-radius: 0.25rem;
  line-height: 1.5rem;
}

.alert > i.ts_icon:first-of-type {
  margin-right: 0.5rem;
  margin-left: -2rem;
  width: 1.25rem;
  text-align: center;
  float: left;
}

.alert.alert_error {
  border-left-color: #CB5234;
}

.alert.alert_error > i:first-of-type {
  color: #CB5234;
}

.chosen-container-single {
  background: none;
  font: 400 17px/22px 'Lato', 'Helvetica Neue', sans-serif;
  padding: 7px 6px 7px 37px;
  box-shadow: none;
  top: 0;
  border: 2px solid rgba(59, 69, 82, 0.2);
  border-radius: 0.25rem;
}

.chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single {
  background: none;
  border: none;
  box-shadow: none;
}

.chosen-container-single .chosen-single {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.chosen-container-single .chosen-single div b {
  display: none;
}

.chosen-container-single .chosen-single span {
  margin-right: 0;
}

.chosen-container-single .chosen-search {
  border-bottom: 2px solid #B7BCC0;
  padding-top: 2px;
  padding-bottom: 2px;
}

.chosen-container-single .chosen-search input[type=text] {
  background-image: none !important;
  border: 0;
  font: 400 17px/22px 'Lato', 'Helvetica Neue', sans-serif;
  padding: 5px 25px 7px 33px;
}

.chosen-container-single .chosen-drop {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.05);
  top: 0;
  border: 2px solid #B7BCC0;
  border-radius: 0.25rem;
  background-clip: none;
  margin-top: 0;
  box-sizing: content-box;
  margin: -2px;
}

.chosen-container-single .chosen-results {
  padding-top: 4px;
}

@media only screen and (max-width: 768px) {
  .chosen-container-single .chosen-results {
    max-height: 110px;
  }
}

.chosen-container-single .chosen-results li {
  border-radius: 0.25rem;
  padding: 10px 6px;
}

.chosen-container-single .chosen-results li.highlighted {
  background-color: #439fe0;
  background-image: none;
  color: #fff;
}

.chosen-container-single .chosen-results .no-results {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/*# sourceMappingURL=main.css.map */
