.header__wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  width: max-content;
  flex: 0 0 auto;
}

.header__image {
  width: 50px;
  flex-shrink: 0;
}

.header__image img {
  width: 100%;
}

.header__rating {
  margin-bottom: 5px;
}

.header__item,
.header__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__stars {
  display: flex;
  align-items: center;
}
.header__star {
  position: relative;
  width: 14px;
  height: 14px;
}
.header__star::before {
  content: "\e907";
  color: #ecb911;
  position: absolute;
  left: 0;
  top: 2px;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-family: "ikony";
  line-height: 13px;
}
.header__percent {
  margin: 0;
  font-size: 17px;
  font-family: "Poppins", sans-serif !important;
  font-weight: 600;
  line-height: 1.2;
  color: black;
}
.header__phone {
  margin: 0;
  font-size: 14px;
  font-family: "Poppins", sans-serif !important;
  font-weight: 600;
  line-height: 0.5;
  color: black;
}
.header__descr {
  margin: 0;
  font-family: "Poppins", sans-serif !important;
  font-size: 12px;
  font-weight: 300;
  line-height: 0.5;
  color: #747474;
}
.header__text {
  margin: 0;
  font-family: "Poppins", sans-serif !important;
  font-size: 12px;
  font-weight: 400;
  line-height: 0.5;
  color: black;
}
@media (min-width: 1200px) {
  .header-top {
    justify-content: space-between;
  }
  .header-top > div,
  .header-top > div.search {
    flex: 0 0 auto;
    width: max-content;
  }
}
@media (max-width: 992px) {
  .header__image {
    width: 30px;
  }
  .header__item,
  .header__rating {
    gap: 5px;
  }
  .header__star {
    width: 10px;
    height: 10px;
  }
  .header__star::before {
    font-size: 10px;
    line-height: 10px;
  }
  .header__percent {
    font-size: 14px;
  }
  .header__phone {
    font-size: 12px;
  }
  .header__descr {
    width: max-content;
    font-size: 10px;
  }
  .header__text {
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  .header__wrapper {
    position: absolute;
    top: -44px;
    left: 18%;
    gap: 10px;
  }
}
