input,
select,
textarea {
  display: block;
  width: 100%;
  height: 40px;
  padding-left: 10px;
  border-radius: 15px;
  margin-bottom: 10px;
  font-size: 16px;
  color: rgb(130, 130, 130);
  background-color: #55555555;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--background0);
  outline: none; /* remove default OS outline */
}

.newSubscriptionSelectWrap {
  position: relative;
  width: 100%;
}

.newSubscriptionSelectWrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: #000;
  mask: url("/assets/icons/chevron.down%201.svg") no-repeat center center;
  mask-size: contain;
  -webkit-mask: url("/assets/icons/chevron.down%201.svg") no-repeat center center;
  -webkit-mask-size: contain;
  pointer-events: none;
}

.newSubscriptionSelect {
  width: 100%;
  height: 50px;
  display: block;
  font-size: 16px;
  color: #000;
  background-color: var(--background5);
  border: 0;
  border-radius: 10px;
  padding: 10px 40px 10px 12px; /* extra right padding so text doesn't overlap arrow */
  appearance: none !important; /* remove default arrow (most browsers) */
  -webkit-appearance: none !important; /* Safari/Chrome */
  -moz-appearance: none !important; /* Firefox */
  background-image: none !important;
  cursor: pointer;
}

/* Optional: for Firefox, prevent weird dropdown arrow spacing */
.newSubscriptionSelect::-ms-expand {
  display: none;
}

.contact_honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact_input_button,
.subscriber-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.contact_input_button:hover,
.subscriber-submit:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.contact_input_button:active,
.subscriber-submit:active {
  background-color: rgba(0, 0, 0, 0.3);
}

.contact_input_button:disabled,
.subscriber-submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.contact_input_button.is-success,
.subscriber-submit.is-success {
  background-color: #2f9d62;
}

.contact_input_button.is-error,
.subscriber-submit.is-error {
  background-color: #b84444;
}

textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  color: rgb(150, 150, 150);
  font-family: "Noto Sans", sans-serif;
}
