.filter-sticky-container {
  position: sticky;
  bottom: -0.5px;
  z-index: 9998;
}

.filter-sticky {
  width: 100%;
  display: none;
}
.filter-sticky .box-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  color: #fff;
  border-right: 1px solid #fff;
  background-color: #e83687;
}
.filter-sticky .box-search input[type=search] {
  font-size: 20px;
  border: none;
  color: #fff;
  outline: none;
  width: inherit;
  padding: 14px 25px;
  background-color: transparent;
}
.filter-sticky .box-search input[type=search]::-moz-placeholder {
  color: #fff;
}
.filter-sticky .box-search input[type=search]::placeholder {
  color: #fff;
}
.filter-sticky .box-search input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  cursor: pointer;
  content: url("/assets/img/icon-close.png");
  width: 30px;
}
.filter-sticky .box-search input[type=search]:-moz-placeholder + img {
  display: block;
}
.filter-sticky .box-search input[type=search]:placeholder-shown + img {
  display: block;
}
.filter-sticky .box-search img {
  display: none;
  position: absolute;
  right: 3vw;
  top: 19px;
  width: 30px;
}
.filter-sticky > button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 120px;
  padding: 12px 0;
  line-height: 40px;
  font-size: 14px;
  border: none;
  color: #fff;
  outline: none;
  background-color: #e83687;
}
.filter-sticky > button > span {
  font-size: 40px;
  font-weight: 400;
  vertical-align: middle;
}

@media screen and (max-width: 950px) {
  .filter-sticky {
    display: flex;
  }
}
