.catalog-order {
  display: flex;
  background: #ffffff;
  justify-content: space-between;
  padding: 17px 20px;
  align-items: center;
  margin-bottom: 20px;
}
.catalog-order__select {
  position: relative;
}
.catalog-order__select:after {
  content: "";
  width: 10px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='12' viewBox='0 0 16 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_91_116)'%3E%3Cpath d='M14.8574 1.225L8.30031 10L1.74316 1.225' stroke='%23111111' stroke-width='1.6' stroke-linecap='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_91_116'%3E%3Crect width='12' height='16' fill='white' transform='matrix(0 -1 -1 0 16 12)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  pointer-events: none;
  margin-top: 2px;
}
.catalog-order__select select {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 6px;
  height: 30px;
  padding: 0 30px 0 10px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.catalog-order__select select:hover {
  cursor: pointer;
}
.catalog-order__select select::-ms-expand {
  display: none;
}
.catalog-order__count {
  display: flex;
  column-gap: 20px;
}
.catalog-order__count span {
  font-size: 16px;
  line-height: 20px;
  color: #111111;
}
.catalog-order__count a {
  font-size: 16px;
  line-height: 20px;
  color: #8F96A2;
  opacity: 0.9;
}
.catalog-order__count a.catalog-order__active {
  color: #E74A41;
}