.webbo-popup-selector__form {
  display: flex;
  width: 100%;
  align-items: stretch;
}

.webbo-popup-selector__form--inline {
  flex-direction: row;
}

.webbo-popup-selector__form--stacked {
  flex-direction: column;
}

.webbo-popup-selector__select,
.webbo-popup-selector__button {
  min-height: 52px;
  line-height: 1.2;
  box-sizing: border-box;
}

.webbo-popup-selector__select {
  width: 100%;
  flex: 1 1 auto;
  border: 1px solid #d5d7da;
  border-radius: 10px;
  padding: 0 42px 0 16px;
  outline: none;
  color: #111827;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666666' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  background-size: 12px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.webbo-popup-selector__select::-ms-expand {
  display: none;
}

.webbo-popup-selector__select:focus {
  border-color: currentColor;
}

.webbo-popup-selector__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 20px;
  background-color: #111827;
  color: #fff;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.webbo-popup-selector__button:hover {
  opacity: 0.92;
}

.webbo-popup-selector__button:active {
  transform: translateY(1px);
}

.webbo-popup-selector__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.webbo-popup-selector__button-icon svg,
.webbo-popup-selector__button-icon i {
  display: block;
  width: 1em;
  height: 1em;
}

@media (max-width: 767px) {
  .webbo-popup-selector__form--inline {
    flex-direction: column;
  }
}
