.slice-search-support {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 0;
  /* header + 1 */
  z-index: 1001;
}

.slice-search-support .cta {
  background: #c3d7ee;
  color: black;
  font-weight: 500;
  font-size: 14px;
  line-height: 0.9;
  padding: 12px 20px;
  display: block;
}

.slice-search-support .search-form {
  flex-direction: row-reverse;
  display: flex;
}

.slice-search-support .search-form .search-submit {
  border-radius: 0;
  position: relative;
  border-radius: 0;
  background: transparent;
  color: black;
  width: 36px;
}

.slice-search-support .search-form .search-submit::before {
  font-size: 20px;
  line-height: 37px;
}

.slice-search-support input[type="search"].search-field {
  font-size: 14px;
  background: none;
  border: 0;
}

.slice-search-support .mobile {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  box-shadow: 0px -2px 12px rgba(0, 0, 0, 0.15);
}

.slice-search-support .mobile .wrap {
  display: flex;
  background: white;
}

.slice-search-support .mobile .report-incident,
.slice-search-support .mobile .cta {
  flex: 1;
  text-align: center;
  padding: 12px 10px;
}

.slice-search-support .mobile .search-form {
  width: calc(100% - 40px);
  justify-content: flex-end;
  background: white;
  position: absolute;
}

.slice-search-support .mobile .search-form label {
  flex: 1;
}

.slice-search-support .mobile .search-form .search-submit {
  width: 60px;
}

.slice-search-support .mobile .search-form .search-submit::before {
  font-size: 24px;
  line-height: 42px;
  position: absolute;
  top: -3px;
  left: 10px;
}

.slice-search-support .mobile .wrap .cta:focus {
  outline-offset: -6px;
}

.slice-search-support .desktop {
  background: white;
  position: absolute;
  height: 80px;
  width: 100%;
  padding: 22px 20px;
  transition: transform 0.3s;
  box-shadow: 0px -2px 12px rgba(0, 0, 0, 0.15);
  bottom: 0;
  left: 0;
}
.slice-search-support .desktop .wrap {
  max-width: 1152px;
  margin: 0 auto;
}

.slice-search-support .desktop.hide {
  transform: translateY(100%);
}

.slice-search-support .desktop .cta {
  margin-left: 50px;
  float: right;
}

.slice-search-support .desktop .search-form {
  float: left;
  border-left: 1px black solid;
  border-bottom: 1px black solid;
}

#searchExpandBtn {
  color: black;
  text-indent: 70px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 60px;
}

#searchExpandBtn::before {
  content: "\f400";
  font-size: 24px;
  left: 2px;
  line-height: 42px;
  position: relative;
  width: 60px;
  font-family: "Genericons";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-indent: 0;
  text-align: center;
}

#searchCollapseBtn {
  width: 40px;
  right: 0;
  position: absolute;
  display: block;
  color: black;
  line-height: 29px;
  background: white;
  font-size: 29px;
  min-height: 40px;
  text-align: center;
  cursor: pointer;
}

#searchCollapseBtn:hover {
  text-decoration: none;
}
#searchExpandWrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: none;
}

#searchExpandWrap.show {
  display: block;
}

@media screen and (max-width: 990px) {
  .slice-search-support {
    padding: 0 20px;
  }

  .slice-search-support .mobile {
    display: block;
  }

  .slice-search-support .desktop {
    display: none;
  }
}
