@charset "UTF-8";

.location-selecter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  cursor: pointer
}

@media (min-width: 961px) {
  .location-selecter:hover:after {
    background: var(--clr-text-red)
  }

  .location-selecter:hover select {
    color: var(--clr-text-red)
  }

  .location-selecter:hover select option {
    color: var(--clr-text-black)
  }
}

.location-selecter:before {
  content: "";
  width: 24px;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0;
  background: var(--clr-text-black);
  -webkit-mask: url(/html/template/default/assets/img/icon_location-on.svg) no-repeat center/contain;
  mask: url(/html/template/default/assets/img/icon_location-on.svg) no-repeat center/contain
}

@media (min-width: 961px) {
  .location-selecter:before {
    width: 16px
  }
}

.location-selecter:after {
  content: "";
  width: 24px;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  background: var(--clr-text-black);
  -webkit-mask: url(/html/template/default/assets/img/icon_arrow.svg) no-repeat center/contain;
  mask: url(/html/template/default/assets/img/icon_arrow.svg) no-repeat center/contain;
  pointer-events: none
}

@media (min-width: 961px) {
  .location-selecter:after {
    width: 16px
  }
}

.location-selecter.--footer select {
  width: 120px;
  font-size: 14px;
  line-height: 150%;
  font-weight: 400
}

.location-selecter select {
  width: 135px;
  height: 24px;
  padding: 0 26px;
  border: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: nowrap
}

@media (min-width: 961px) {
  .location-selecter select {
    width: 100px;
    height: 18px;
    padding: 0 18px;
    font-size: 12px;
    line-height: 150%;
    font-weight: 400
  }
}
