.slick-prev {
    left: 3% !important;
    z-index: 1;
    background-color: darkblue !important;
    color: darkblue;
}
.slick-next {
    right: 3% !important;
    z-index: 1;
    background-color: darkblue !important;
    color: darkblue;
}

.pageTitle {
    font-size: 1.25rem;
    text-align: center;
    font-weight: 800;
}


/* locationSearch */
.locationSearch .react-autosuggest__container {
    position: relative;
  }
  
  .locationSearch .react-autosuggest__input {
    /* width: 240px;
    height: 30px; */
    width: 100%;
    padding: 10px 20px;
    font-family: Helvetica, sans-serif;
    font-weight: 300;
    font-size: 16px;
    border: 1px solid #aaa;
    border-radius: 4px;
  }
  
  .locationSearch .react-autosuggest__input--focused {
    outline: none;
  }
  
  .locationSearch .react-autosuggest__input--open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  .locationSearch .react-autosuggest__suggestions-container {
    display: none;
  }
  
  .locationSearch .react-autosuggest__suggestions-container--open {
    display: block;
    position: absolute;
    top: 51px;
    width: 280px;
    border: 1px solid #aaa;
    background-color: #fff;
    font-family: Helvetica, sans-serif;
    font-weight: 300;
    font-size: 16px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    z-index: 2;
  }
  
  .locationSearch .react-autosuggest__suggestions-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  
  .locationSearch .react-autosuggest__suggestion {
    cursor: pointer;
    padding: 10px 20px;
  }
  
  .locationSearch .react-autosuggest__suggestion--highlighted {
    background-color: #ddd;
  }
  
