/* add custom arrow to product sorting */
.wc-sort-1 .woocommerce-ordering {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.wc-sort-1 .woocommerce-ordering .orderby {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: calc(8px + 8.5px + 8px);
}


.wc-sort-1 .woocommerce-ordering::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}