.ilmn-global-search__form {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.325s cubic-bezier(0, 0, 0.2, 1);
  -moz-transition: opacity 0.325s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 0.325s cubic-bezier(0, 0, 0.2, 1);
}
.ilmn-global-search__form--active {
  opacity: 1;
  pointer-events: auto;
}

.ilmn-global-search__form input:-ms-input-placeholder {
  opacity: 0;
}

.ilmn-global-search__form input::-webkit-input-placeholder {
  opacity: 0;
}

.ilmn-global-search__form input::-moz-placeholder {
  opacity: 0;
}

.ilmn-global-search__form input:-ms-input-placeholder {
  opacity: 0;
}

.ilmn-global-search__form input:-moz-placeholder {
  opacity: 0;
}

.tt-hint {
  color: #ccc;
}

.tt-menu {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #CCCCCC;
  padding: 8px 0px;
  border-radius: 0px 0px 3px 3px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  flex-direction: row;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: initial;
  -webkit-transition: height 0.2s;
  -moz-transition: height 0.2s;
  transition: height 0.2s;
}

.tt-suggestion a {
  font-size: 16px;
  font-weight: 300;
  padding-bottom: 6px;
  padding: 6px 15px;
  width: 100%;
  display: block;
  color: #999999;
  border-left: 4px solid transparent;
}

.tt-suggestion a:visited {
  color: #999;
}

.tt-sku-desc {
  font-size: 12px;
  display: block;
  font-weight: 400;
}

.tt-cursor a, .tt-suggestion a:hover {
  border-left-color: #ffb441;
  width: 100%;
  cursor: pointer;
  color: #666666;
}

.tt-ghostcursor {
  background: #eee;
}

.tt-dataset-termresults {
  width: 40%;
  border-right: 1px solid #e5e5e5;
}

.tt-topresults {
  width: 60%;
  padding: 0;
  position: relative;
  min-height: 178px;
}

.tt-topresults ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tt-topresults .loader-container.loading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.tt-topresults ul li {
  margin: 0;
}

.tt-topresults ul li a {
  padding: 7px 15px;
  font-size: 13px;
  display: block;
}

.tt-topresults ul li a:hover,
.tt-topresults ul li.tt-cursor a {
  background: #e5e5e5;
}

.tt-topresults ul li a:hover .site-search-label {
  border: 1px solid #999;
}

.site-search-label {
  font-size: 10px;
  padding: 2px 3px;
  margin-right: 6px;
  border-radius: 3px;
  letter-spacing: 0.1em;
  border: 1px solid #ccc;
  color: #666;
  text-transform: uppercase;
}

.tt-topresults-label, .tt-termresults-label {
  color: #BBBBBB;
  font-size: 10px;
  font-weight: normal;
  padding: 10px 15px;
}

.no-results-terms {
  font-style: italic;
}

@media (max-width: 767.98px) {
  .tt-dataset-termresults {
    width: 100%;
  }
  .tt-topresults {
    display: none;
  }
}
.loader-ellipsis {
  display: none;
}

.loading .loader-ellipsis {
  display: block;
  margin: 15px 20px;
  position: relative;
}

.loader-ellipsis > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ccc;
  position: absolute;
  -webkit-animation-duration: 0.6s;
  -moz-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-name: ellipsisGrow;
  -moz-animation-name: ellipsisGrow;
  animation-name: ellipsisGrow;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.loader-ellipsis > span:first-child {
  left: 0px;
}

.loader-ellipsis > span:nth-child(2) {
  left: 12px;
  -webkit-animation-delay: 0.15s;
  -moz-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.loader-ellipsis > span:nth-child(3) {
  left: 24px;
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

@-webkit-keyframes ellipsisGrow {
  0%, 100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}

@-moz-keyframes ellipsisGrow {
  0%, 100% {
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -moz-transform: translateY(4px);
    transform: translateY(4px);
  }
}

@keyframes ellipsisGrow {
  0%, 100% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(4px);
    -moz-transform: translateY(4px);
    transform: translateY(4px);
  }
}
/*:::::::::: / EXISTING SEARCH STYLES :::::::::*/
/*:::::::::: CUSTOM 2019 STYLES :::::::::*/
.ilmn-global-search {
  max-width: 200px;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
}
@media (min-width: 992px) {
  .ilmn-global-search {
    width: 200px;
    position: relative;
  }
}
.ilmn-global-search #q {
  height: -webkit-calc(2em + 2px);
  height: -moz-calc(2em + 2px);
  height: calc(2em + 2px);
  padding: 0.1em 0.5em 0.1em 2em;
  border-radius: 0.2em;
  border-color: #d7d7d7;
  width: 100%;
  background: none !important;
}
@media (min-width: 992px) {
  .ilmn-global-search #q {
    -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
    -moz-transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
}
.ilmn-global-search #q:hover {
  border-color: #bbb;
}
.ilmn-global-search #q:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ilmn-global-search #q::-webkit-input-placeholder {
  color: transparent;
  -webkit-transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
  -moz-transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.ilmn-global-search #q::-moz-placeholder {
  color: transparent;
  -webkit-transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
  -moz-transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.ilmn-global-search #q:-ms-input-placeholder {
  color: transparent;
  -webkit-transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
  -moz-transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.ilmn-global-search #q:-moz-placeholder {
  color: transparent;
  -webkit-transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
  -moz-transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
}
@media (min-width: 576px) {
  .ilmn-global-search #q::-webkit-input-placeholder {
    color: #999;
  }
  .ilmn-global-search #q::-moz-placeholder {
    color: #999;
  }
  .ilmn-global-search #q:-ms-input-placeholder {
    color: #999;
  }
  .ilmn-global-search #q:-moz-placeholder {
    color: #999;
  }
}
.ilmn-global-search #q:focus::-webkit-input-placeholder {
  opacity: 0;
}
.ilmn-global-search #q:focus::-moz-placeholder {
  opacity: 0;
}
.ilmn-global-search #q:focus:-ms-input-placeholder {
  opacity: 0;
}
.ilmn-global-search #q:focus:-moz-placeholder {
  opacity: 0;
}
.ilmn-global-search #q-hint {
  height: -webkit-calc(2em + 2px);
  height: -moz-calc(2em + 2px);
  height: calc(2em + 2px);
  padding: 0.1em 0.5em 0.1em 2em;
  color: #ccc;
  background: #fff !important;
}
.ilmn-global-search .ilmn-global-search__icon {
  position: absolute;
  left: 10px;
  z-index: 2;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  line-height: 1;
  fill: #666;
  pointer-events: none;
}
.ilmn-global-search .ilmn-global-search__icon svg {
  position: absolute;
}
.ilmn-global-search .input-placeholder {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}
.ilmn-global-search .input-group {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  align-items: stretch;
  width: 100%;
}
.ilmn-global-search .input-group > .form-control,
.ilmn-global-search .input-group > .custom-select,
.ilmn-global-search .input-group > .custom-file {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}
.ilmn-global-search .input-group > .form-control:focus,
.ilmn-global-search .input-group > .custom-select:focus,
.ilmn-global-search .input-group > .custom-file:focus {
  z-index: 3;
}
.ilmn-global-search .input-group > .form-control + .form-control,
.ilmn-global-search .input-group > .form-control + .custom-select,
.ilmn-global-search .input-group > .form-control + .custom-file,
.ilmn-global-search .input-group > .custom-select + .form-control,
.ilmn-global-search .input-group > .custom-select + .custom-select,
.ilmn-global-search .input-group > .custom-select + .custom-file,
.ilmn-global-search .input-group > .custom-file + .form-control,
.ilmn-global-search .input-group > .custom-file + .custom-select,
.ilmn-global-search .input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.ilmn-global-search .input-group > .form-control:not(:last-child),
.ilmn-global-search .input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ilmn-global-search .input-group > .form-control:not(:first-child),
.ilmn-global-search .input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ilmn-global-search .input-group > .custom-file {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}
.ilmn-global-search .input-group > .custom-file:not(:last-child) .custom-file-label, .ilmn-global-search .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ilmn-global-search .input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ilmn-global-search.active #q {
  border-color: #bbb;
}
.ilmn-global-search .ilmn-global-search__form {
  width: 100%;
  z-index: 2;
  position: absolute;
}
.ilmn-global-search .ilmn-global-search__btn-group {
  display: none !important;
}
.ilmn-global-search .ilmn-global-search__input-group {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  align-items: stretch;
  width: 100%;
}
.ilmn-global-search .ilmn-global-search__input-group > .form-control,
.ilmn-global-search .ilmn-global-search__input-group > .custom-select,
.ilmn-global-search .ilmn-global-search__input-group > .custom-file {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}
.ilmn-global-search .ilmn-global-search__input-group > .form-control:focus,
.ilmn-global-search .ilmn-global-search__input-group > .custom-select:focus,
.ilmn-global-search .ilmn-global-search__input-group > .custom-file:focus {
  z-index: 3;
}
.ilmn-global-search .ilmn-global-search__input-group > .form-control + .form-control,
.ilmn-global-search .ilmn-global-search__input-group > .form-control + .custom-select,
.ilmn-global-search .ilmn-global-search__input-group > .form-control + .custom-file,
.ilmn-global-search .ilmn-global-search__input-group > .custom-select + .form-control,
.ilmn-global-search .ilmn-global-search__input-group > .custom-select + .custom-select,
.ilmn-global-search .ilmn-global-search__input-group > .custom-select + .custom-file,
.ilmn-global-search .ilmn-global-search__input-group > .custom-file + .form-control,
.ilmn-global-search .ilmn-global-search__input-group > .custom-file + .custom-select,
.ilmn-global-search .ilmn-global-search__input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.ilmn-global-search .ilmn-global-search__input-group > .form-control:not(:last-child),
.ilmn-global-search .ilmn-global-search__input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ilmn-global-search .ilmn-global-search__input-group > .form-control:not(:first-child),
.ilmn-global-search .ilmn-global-search__input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ilmn-global-search .ilmn-global-search__input-group > .custom-file {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}
.ilmn-global-search .ilmn-global-search__input-group > .custom-file:not(:last-child) .custom-file-label, .ilmn-global-search .ilmn-global-search__input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ilmn-global-search .ilmn-global-search__input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ilmn-global-search .ilmn-global-search__placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ilmn-global-search .ilmn-global-search__input {
  display: block;
  width: 100%;
  padding: 0.375em 0.75em;
  font-size: 1em;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25em;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -moz-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  z-index: 1;
}
@media screen and (prefers-reduced-motion: reduce) {
  .ilmn-global-search .ilmn-global-search__input {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
  }
}
.ilmn-global-search .ilmn-global-search__input::-ms-expand {
  background-color: transparent;
  border: 0;
}
.ilmn-global-search .ilmn-global-search__input:focus {
  color: #495057;
  background-color: #fff;
  border-color: rgb(127.5, 189, 255);
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2em rgba(0, 123, 255, 0.25);
  box-shadow: 0 0 0 0.2em rgba(0, 123, 255, 0.25);
}
.ilmn-global-search .ilmn-global-search__input::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.ilmn-global-search .ilmn-global-search__input::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.ilmn-global-search .ilmn-global-search__input::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.ilmn-global-search .ilmn-global-search__input::placeholder {
  color: #6c757d;
  opacity: 1;
}
.ilmn-global-search .ilmn-global-search__input:disabled, .ilmn-global-search .ilmn-global-search__input[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.ilmn-global-search .ilmn-global-search__input:not([size]):not([multiple]) {
  height: -webkit-calc(1.5em + 0.75em + 2px);
  height: -moz-calc(1.5em + 0.75em + 2px);
  height: calc(1.5em + 0.75em + 2px);
}
.ilmn-global-search .ilmn-global-search__input:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.global-nav__overlay {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  width: 0;
  height: 0;
  -webkit-transition: opacity 0.65s cubic-bezier(0, 0, 0.2, 1), background 0.65s cubic-bezier(0, 0, 0.2, 1);
  -moz-transition: opacity 0.65s cubic-bezier(0, 0, 0.2, 1), background 0.65s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 0.65s cubic-bezier(0, 0, 0.2, 1), background 0.65s cubic-bezier(0, 0, 0.2, 1);
  background-color: transparent;
}

body.global-search-open {
  overflow: hidden;
}
body.global-search-open .ilmn-global-search #q, body.global-search-open .ilmn-global-search #q-hint {
  height: -webkit-calc(2.5em + 2px);
  height: -moz-calc(2.5em + 2px);
  height: calc(2.5em + 2px);
}
body.global-search-open .global-nav__overlay {
  z-index: 2;
  pointer-events: auto;
  opacity: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.6);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.3)), color-stop(90%, rgba(255, 255, 255, 0.95)));
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.95) 90%);
  background: -moz- oldlinear-gradient(bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.95) 90%);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.95) 90%);
}
body.global-search-open .global-nav__search {
  z-index: 3;
}
body.global-search-open .global-nav__logo,
body.global-search-open .global-nav__usernav,
body.global-search-open #global-nav-menu,
body.global-search-open .stickynav,
body.global-search-open #pageWrapper > *:not(.mainnav),
body.global-search-open .eventArticle,
body.global-search-open .icommunityArticles,
body.global-search-open .featuredArticles,
body.global-search-open .product-row,
body.global-search-open #page,
body.global-search-open .parsys,
body.global-search-open .iparsys {
  -webkit-filter: blur(0.1em);
  filter: blur(0.1em);
}

/*:::::::::: / CUSTOM 2019 STYLES :::::::::*/
/* On-page Instances of Search */
.site-search input:-ms-input-placeholder {
  opacity: 0;
}

.site-search input::-webkit-input-placeholder {
  opacity: 0;
}

.site-search input::-moz-placeholder {
  opacity: 0;
}

.site-search input:-ms-input-placeholder {
  opacity: 0;
}

.site-search input:-moz-placeholder {
  opacity: 0;
}

.site-search .input-group {
  width: 100%;
  border: none;
  border-radius: 0;
  background: none;
  display: table;
  float: none;
}

.site-search .input-group input {
  width: 100%;
  border: 0;
  margin: 0;
  border-bottom: 4px solid #666666;
  background-color: #ffffff;
  height: 44px !important;
  font-size: 20px;
  font-weight: 300;
  display: table-cell;
  float: none;
  border-radius: 2px 0px 0px 2px;
  padding: 5px 10px;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-left: -1px !important;
}

.site-search .input-group input:focus, .site-search .input-group input:active {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 4px solid #666666;
}

.site-search .input-placeholder {
  position: absolute;
  left: 0;
  top: 0;
  color: #999;
  font-size: 20px;
  font-weight: 200;
  font-family: inherit;
  width: 100%;
  height: 44px;
  border-bottom: 4px solid #666;
  pointer-events: none;
  padding: 5px 10px;
  z-index: 9;
}

.site-search .input-group-btn {
  width: 70px;
  display: table-cell;
  bottom: 10px;
  float: none;
  position: relative;
  vertical-align: middle;
}

.site-search .input-group button {
  text-align: center;
  border-radius: 0px 2px 2px 0px;
  font-size: 0px;
  float: left;
  background: transparent;
  width: 100%;
  color: white;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  -moz-transition: transform 0.2s ease-in-out, -moz-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out, -moz-transform 0.2s ease-in-out;
}

.site-search .input-group button:hover {
  border-color: transparent;
  background: none;
}

.site-search .input-group button:after {
  content: "\f002";
  font-family: "FontAwesome";
  font-size: 30px;
  color: #666666;
  position: relative;
}

.site-search .input-group button:focus {
  outline: none;
  border-color: transparent;
}

.site-search .input-group button:active {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  background: none;
}

#search-support-form .input-placeholder {
  background: #fff;
  width: 80%;
}

#search-support-form .search-input {
  width: 80%;
  position: absolute;
}

#search-products-form .input-placeholder {
  background: #fff;
  width: 85%;
}

#search-products-form .search-input {
  width: 85%;
  position: absolute;
}

@media (min-width: 992px) {
  .ilmn-global-search__input#q, .ilmn-global-search__input#q-hint {
    padding-top: 0.3em;
    padding-bottom: 0.3em;
  }
}
.search-facet {
  padding: 40px 0;
}

.search-facet .facet-list label {
  font-weight: normal;
}

.search-facet .facet-list input {
  margin-right: 5px;
}

.search-facet .site-search-tools ul {
  list-style: none;
  padding-left: 0;
}

.search-facet .site-search-results ul {
  list-style: none;
  padding-left: 0;
  padding-top: 5px;
}

.search-facet-flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  flex-direction: row;
  width: 100%;
}

.search-facet .results-col {
  position: relative;
  min-height: 250px;
}

.search-facet ilmn-loader {
  z-index: 2;
}

.search-facet .result {
  overflow: hidden;
  border-bottom: 1px solid #e5e5e5;
}

.search-facet .result-type-product {
  overflow: visible;
}

.search-facet .results-title {
  margin-bottom: 3px;
  font-size: 16px;
}

.search-facet .results-snippet {
  font-size: 13px;
}

.search-facet .result-image img {
  max-height: 100px;
}

@media (min-width: 992px) {
  .search-facet .result-image img {
    max-height: 80px;
    margin: 0 auto;
  }
  .search-facet .result {
    border-bottom: none;
  }
}
.search-sa-expand {
  position: relative;
  display: inline-block;
  margin-top: 6px;
  padding-left: 20px;
}

.search-sa-expand:before {
  content: "\f107";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 16px;
}

.panel-open.search-sa-expand:before {
  content: "\f106";
}

.search-sa-container > div {
  overflow: hidden;
}

.search-sa-container.in > div {
  overflow: visible;
}

.search-sa-container.collapsing > div {
  overflow: hidden;
}

.search-sa-container .productprimaryAddtoCart {
  padding: 0 0 4px 4px;
}

.sell-anywhere-load-container {
  position: relative;
  opacity: 0;
  -webkit-transition: height 0.6s, opacity 0.3s;
  -moz-transition: height 0.6s, opacity 0.3s;
  transition: height 0.6s, opacity 0.3s;
}

.sell-anywhere-load-container.expanded {
  opacity: 1;
}

.sell-anywhere-load-container.adjusting {
  overflow: hidden;
}

.sell-anywhere-load-container .product-select-product {
  border-top: none;
  padding-top: 0;
}

@media (min-width: 992px) {
  .sell-anywhere-load-container .mobile-only {
    display: none;
  }
}
.search-sa-specifications th {
  width: 25%;
}

.search-sa-specifications .table {
  margin-bottom: 0;
}

.search-sa-signin {
  padding: 7px 0;
}

.search-sa-links .btn:active, .search-sa-links .btn.active {
  -webkit-box-shadow: none;
  box-shadow: none;
}

#search-page-form.site-search .tt-topresults ul {
  padding: 0;
}

/* iPhone 5 custom overrides */
@media (max-width: 543px) {
  .search-sa-links .row .col-12 {
    width: 100%;
  }
  .search-sa-signin {
    float: left !important;
    padding: 15px 0 0;
    font-size: 14px;
  }
}
.search-facet {
  padding: 40px 0;
}

.search-facet .facet-list label {
  font-weight: normal;
}

.search-facet .facet-list input {
  margin-right: 5px;
}

.search-facet .site-search-tools ul {
  list-style: none;
  padding-left: 0;
}

.search-facet .site-search-results ul {
  list-style: none;
  padding-left: 0;
  padding-top: 5px;
}

.search-facet .result {
  overflow: hidden;
  border-bottom: 1px solid #e5e5e5;
  width: 100%;
  display: block;
}

.search-facet .result-type-product {
  overflow: visible;
}

.search-facet .results-title {
  margin-bottom: 3px;
  font-size: 16px;
}

.search-facet .results-snippet {
  font-size: 13px;
}

.search-facet .result-image img {
  max-height: 100px;
}

@media (min-width: 992px) {
  .search-facet .result-image img {
    max-height: 80px;
    margin: 0 auto;
  }
  .search-facet .result {
    border-bottom: none;
  }
}
.search-sa-expand {
  position: relative;
  display: inline-block;
  margin-top: 6px;
  padding-left: 20px;
}

.search-sa-expand:before {
  content: "\f107";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 16px;
}

.panel-open.search-sa-expand:before {
  content: "\f106";
}

.search-sa-container > div {
  overflow: hidden;
}

.search-sa-container.in > div {
  overflow: visible;
}

.search-sa-container.collapsing > div {
  overflow: hidden;
}

.sell-anywhere-load-container {
  position: relative;
  opacity: 0;
  -webkit-transition: height 0.6s, opacity 0.3s;
  -moz-transition: height 0.6s, opacity 0.3s;
  transition: height 0.6s, opacity 0.3s;
  overflow: hidden;
}

.sell-anywhere-load-container.expanded {
  opacity: 1;
}

.sell-anywhere-load-container.adjusting {
  overflow: hidden;
}

.sell-anywhere-load-container .product-select-product {
  border-top: none;
  padding-top: 0;
}

@media (min-width: 992px) {
  .sell-anywhere-load-container .mobile-only {
    display: none;
  }
}
.search-sa-specifications th {
  width: 25%;
}

.search-sa-specifications .table {
  margin-bottom: 0;
}

.search-sa-signin {
  padding: 7px 0;
}

.search-sa-links .btn:active, .search-sa-links .btn.active {
  -webkit-box-shadow: none;
  box-shadow: none;
}

#search-page-form.site-search .tt-topresults ul {
  padding: 0;
}

/* iPhone 5 custom overrides */
@media (max-width: 543px) {
  .search-sa-links .row .col-12 {
    width: 100%;
  }
  .search-sa-signin {
    float: left !important;
    padding: 15px 0 0;
    font-size: 14px;
  }
}