/* HEADER */

/* Replace .search-field and the media query with a more specific reference - necessary because I had to change the structure to get the search to work - I added a form */

  #header-top .search-field {
    appearance: none;
    -webkit-appearance: none;
    height: 36px;
    border: 1px solid #828282;
    border-right: none;
    border-radius: 0px;
    width: 265px;
    font-family: effra, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--primary-2);
    font-size: 12px;
    letter-spacing: .9px;
  }

  #ces-main .mobile-nav .main-nav .search-field {
    appearance: none;
    -webkit-appearance: none;
    height: 36px;
    border: 1px solid #828282;
    border-right: none;
    border-radius: 0px;
    width: 265px;
    font-family: effra, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--primary-2);
    font-size: 12px;
    letter-spacing: .9px;
  }
  
  @media screen and (min-width: 800px) and (max-width: 1200px) {
    #header-top .search-field {
      width: 200px;
    }
	  
	#ces-main .mobile-nav .main-nav .search-field {
	  width: 200px;
    }
  }



  /* MISC */

  /* Class to hide elements for accessibility */

  .hide-accessible {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

 /* Class to reset UL elements after being transformed by the CMS xmlns:dm and xmlns:dmd */
.default-bullets {
    list-style: inside;
    column-count: 2;
}

main .white {
    color: #fff;
}
