.title-search-result {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: none;
  width: 100%;
  max-height: 50vh;
  padding-bottom: 40px;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  overflow: hidden;
  z-index: 100;
}

.header__search-matches-list {
  padding: 0;
  margin: 0;
  height: 100%;
}
.header__search-matches-list li {
  padding: 0;
  margin: 0;
}

.header__search-matches-item {
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #E6E6E6;
}
.header__search-matches-item:last-of-type {
  display: none;
}

.header__search-matches-item-link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 10px 32px 10px 10px;
}

.header__search-matches-img {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  margin-right: 30px;
}
.header__search-matches-img img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__search-matches {
  height: 100%;
}

.header__search-matches-item-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.header__search-matches-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 40px;
  font-weight: bold;
  background-color: aliceblue;
}

.header__search-matches-name {
  padding-bottom: 0;
}

.header__search-matches-price {
  padding-bottom: 0;
  font-weight: bold;
}

.header__search-matches-old-price {
  margin-left: 10px;
  font-weight: 400;
  color: #808080;
  text-decoration: line-through;
}

@media (max-width: 1023px) {
  .title-search-result {
    position: fixed;
    top: 60px;
    height: calc(100vh - 60px);
    border-radius: 0;
    z-index: 101;
  }
}
@-webkit-keyframes opacityLogoHeader {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes opacityLogoHeader {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes heightLogoHeader {
  0% {
    height: 44px;
  }
  100% {
    height: 0;
  }
}
@keyframes heightLogoHeader {
  0% {
    height: 44px;
  }
  100% {
    height: 0;
  }
}
.header-search {
  position: relative;
}

.header-search__logo {
  display: none;
}

.header-search__btn-search {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1023px) {
  .form-search {
    position: relative;
  }
  .form-search.form-search--logo-hide input::-webkit-input-placeholder {
    opacity: 1;
  }
  .form-search.form-search--logo-hide input::-moz-placeholder {
    opacity: 1;
  }
  .form-search.form-search--logo-hide input:-ms-input-placeholder {
    opacity: 1;
  }
  .form-search.form-search--logo-hide input::-ms-input-placeholder {
    opacity: 1;
  }
  .form-search.form-search--logo-hide input::placeholder {
    opacity: 1;
  }

  .header-search__logo {
    position: absolute;
    top: 0;
    left: 0;
    max-height: 100%;
    width: 100%;
    height: 42px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    cursor: text;
    -webkit-animation: opacityLogoHeader 1s 2s, heightLogoHeader 0s 3s;
            animation: opacityLogoHeader 1s 2s, heightLogoHeader 0s 3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  .header-search__logo img {
    max-width: 50%;
    max-height: 80%;
  }
}