
    .active:nth-of-type(1) {
        background-color: #EDF0F4;
    }

    .active:nth-of-type(2n+1) {
        background-color: #EDF0F4;
    }

    .active:nth-of-type(2n) {
        background-color: #F7F9FA;
    }

    select:focus {
        outline: none;
    }
</style>


<style>
  
  .careers-fixed-header {
    position: sticky;
    max-width: 1152px;
    width: 100%;
    background-color: #F7F9FA;
    top: 20px;
  }
  .careers-fixed-header:before {
    content:'';
    height: 20px;
    top:-20px;
    background:#F7F9FA;
    position: absolute;
    left:0;
    width: 100%;
  }
  
  .careers-fixed-header .column.title-column {
  grid-column: span 5 / span 5;
  }
  .careers-fixed-header .column.team-column {
    grid-column: span 4 / span 4;
  }
  .careers-fixed-header .column.location-column {
    grid-column: span 3 / span 3;
  }
  
  .careers-fixed-header .column p {
    font-size: 16px;
    font-weight: bold;
  }
  @media (max-width: 767px){
    .careers-fixed-header {
      display: none!important;
    }
  }

