@charset "UTF-8";
.sorting {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sorting-block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 5px;
  padding-left: 10px;
  border: 1px solid rgba(21, 54, 38, 0.6);
  border-radius: 10px;
  max-width: 800px;
  width: 80%;
  height: 48px;
}
@media (max-width: 550px) {
  .sorting-block {
    height: 35px;
  }
}

.search-block {
  border-radius: 10px;
  min-width: 200px;
  width: 100%;
  height: 100%;
  background: #f7f7f7;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 17px;
  gap: 12px;
}

.input_searchbar {
  background-color: transparent;
  border: none;
  width: 89%;
  height: 50%;
}

.input_searchbar:focus {
  outline: none;
  border-bottom: 1px solid black;
}

#searchbar-btn {
  border: none;
  background-color: transparent;
}

#searchbar-btn:hover {
  cursor: pointer;
}

.slider-container {
  display: none;
  flex-direction: column;
  justify-content: center;
}
.slider-container button {
  background-color: transparent;
  border: none;
  height: 100%;
  aspect-ratio: 1/1; /* Соотношение сторон 1:1 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.slider-container button:hover {
  cursor: pointer;
}
.slider-container button:focus {
  outline: none;
}
.slider-container img {
  width: 24px;
  height: 24px;
}
@media (max-width: 850px) {
  .slider-container {
    display: flex;
  }
}
