.top_header {
  background: var(--sm-bg-header);
  padding: 20px 0;
}

.container_top_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.container_top_header .logo {
  max-width: 122px;
  width: 100%;
  height: 40px;
}

.main_nav {
  font-size: 14px;
}

.location {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.language_select {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language_select > * {
  display: flex;
  align-items: center;
  padding: 9px 15px;
  width: 57px;
  height: 46px;

  border-radius: var(--border-radius);
}

.language__active {
  background-color: var(--color-grey);
  color: var(--sm-btn-text-color);
  cursor: not-allowed;
}

.language_select a:hover {
  background-color: var(--color-grey);
  color: var(--sm-btn-text-color);
  text-decoration: none;
}

.language-seperator {
  width: 2px;
  height: 16px;
  background-color: var(--color-grey);
  padding: 0;
}

.phone_header a:focus,
.phone_header a {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 48px;
  padding: 9px 20px;
  gap: 5px;
  border-radius: var(--border-radius);
  background-color: var(--sm-btn-color);
  color: var(--sm-btn-text-color);
  text-decoration: none;
  white-space: nowrap;
  
}

.phone_header a:hover {
  background-color: var(--color-hover);
}

.phone_header svg {
  height: 30px;
  min-width: 30px;
}

.middle_header {
  background-color: var(--color-grey-dark);
}

.btn.btn-catalog {
  min-height: 48px;
  min-width: 270px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
}

.btn.btn-catalog > div {
  display: flex;
  align-items: center;
} 

.btn.btn-catalog svg {
  font-size: 24px;
}

.header-btns-wrap {
  display: flex;
  gap: 15px;
  margin-left: auto;
}

.header-btns-wrap a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 48px;
  margin: 0;
  border-radius: var(--border-radius);
}

.header-btns-wrap a:hover {
  background-color: var(--color-grey-light);
}

.header-btns-wrap a svg {
  margin: 0;
  width: 32px;
  height: 30px;
  fill: transparent;
  stroke: var(--color-white);
  stroke-width: 1.5px;
}

.header-btns-wrap .basket svg,
.header-btns-wrap .compare svg {
  fill: transparent;
  stroke: unset;
  stroke-width: unset;
}

.like-number-block span {
  position: absolute;
  top: 4px;
  right: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: var(--sm-btn-color);
  color: var(--sm-btn-text-color);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  border-radius: 50%;
}

.box:empty {
  background: lime;
  width: 40px;
height: 40px;
}
.box {
  background: red;
  width: 40px;
  height: 40px;
}