input:where(:not(input[type=range]):not(input[type=color])),
select,
textarea {
  padding-inline: var(--form-input-padding);
  font-size: var(--form-input-text-size);
  width: 100%;
  color: var(--form-input-text-color);
  background-color: var(--form-input-bg-color);
  border: 1px solid var(--form-input-border-color);
  border-radius: var(--border-radius);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=search],
input[type=number],
input[type=date],
input[type=week],
input[type=month],
input[type=url],
input[type=file],
input[type=password],
select {
  height: var(--form-input-height);
  line-height: var(--form-input-height);
}

input[type=radio],
input[type=checkbox] {
  margin-right: 5px;
  display: inline-block;
  cursor: pointer;
}

.label,
label,
input[type=radio],
input[type=checkbox],
input[type=range],
input[type=color],
input[type=file],
input[type=date] {
  cursor: pointer;
}

input[type=file] {
  line-height: calc(var(--form-input-height) - 2px);
}

input,
label,
.label {
  display: block;
}

label {
  --top-margin-scaling-factor: 0;
}

input[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

meter,
progress,
input[type=range] {
  width: 100%;
}

input[type=color] {
  height: 2.5rem;
  width: 5rem;
}

select,
input[list]:where(:not(input[type=color])) {
  background-image: url("/assets/application/template/select-arrow-down-0e4ab649.svg");
  background-repeat: no-repeat;
  background-position: right var(--form-input-padding) center;
  background-size: 0.75rem 0.75rem;
  padding-inline-end: 2rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

select::-ms-expand {
  display: none;
}

input[list]::-webkit-calendar-picker-indicator {
  display: none !important;
}

textarea {
  resize: vertical;
  max-height: 600px;
  min-height: 150px;
  padding: var(--form-input-padding);
}

label,
.label {
  margin-bottom: var(--form-label-margin);
  color: var(--form-label-text-color);
  font-weight: 500;
}

fieldset {
  border: 0;
}

legend {
  --top-margin-scaling-factor: 0;
  --text-font-size: 20;
  font-weight: 600;
  position: relative;
}

::placeholder,
:-ms-input-placeholder {
  color: var(--form-input-text-color);
  opacity: 1;
}

input:disabled,
select:disabled,
textarea:disabled,
button:disabled {
  background: var(--grey-250);
  opacity: 0.5;
  cursor: not-allowed;
}

[disabled]:not(fieldset) {
  cursor: not-allowed;
  opacity: 0.5;
}

label:has([disabled]),
label:has(*:disabled),
label:has(+ [disabled]),
label:has(+ *:disabled) {
  cursor: not-allowed;
}

input:user-invalid {
  outline: 2px solid var(--color-error);
  outline-offset: -1px;
}

.field {
  margin-top: var(--form-grid-gap);
  font-size: 0;
}

.field--spacing-small,
.field--gdpr,
.field--checkbox + .field--checkbox {
  margin-top: 1rem;
}

.field--hidden {
  display: none;
}

.field--grid .btn,
.field--flex .btn {
  height: var(--form-input-height);
}

.field--btn {
  display: flex;
  justify-content: flex-end;
  margin-top: calc(var(--form-grid-gap) * 1.5);
  flex-direction: column;
  gap: 1.25rem;
}

.form--devise .field--btn {
  justify-content: flex-start;
}

.field--btn .btn:first-child:not(:last-child) {
  margin-right: auto;
}

.field--btn .btn {
  width: 100%;
  min-width: 10rem;
}

@media (min-width: 37.5rem) {
  .field--btn {
    flex-direction: row;
  }
  .field--btn .btn {
    width: auto;
  }
}
.field--highlighted {
  background-color: var(--surface-blue);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.field--hint {
  padding-left: 1rem;
  border-inline-start: 4px solid var(--color-primary);
  margin-top: 1.25rem;
}

.field--hint + .field--spacing-small {
  margin-top: 1.25rem;
}

legend + .field {
  margin-top: 1rem;
}

.main-content-centered form {
  margin-inline: auto;
}

.field--required label::after,
.field--required .label::after {
  padding-left: 2px;
  content: "*";
  color: var(--form-required-icon-color);
}

.field--checkbox label {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
}

.field--checkbox input[type=checkbox],
.field--checkbox input[type=radio] {
  --form-checkbox-size: 1.25rem;
  width: var(--form-checkbox-size);
  height: var(--form-checkbox-size);
  position: relative;
  margin-right: 1rem;
  padding: var(--form-input-padding);
  padding: 0;
  flex-shrink: 0;
  margin-top: calc((var(--calced-line-height) - var(--form-checkbox-size)) / 2);
}

.field--checkbox input[type=checkbox] {
  border-radius: 0;
}

.field--checkbox input[type=radio] {
  border-radius: 50%;
}

.field--checkbox input[type=checkbox]::before,
.field--checkbox input[type=radio]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.75rem;
  height: 0.75rem;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.field--checkbox input[type=checkbox]::before {
  background-color: transparent;
  transform: translate(-50%, -60%) rotate(45deg);
  width: 8px;
  height: 14px;
  border: solid var(--color-primary);
  border-width: 0 3px 3px 0;
}

.field--checkbox input[type=radio]::before {
  background-color: var(--color-primary);
  border-radius: 50%;
}

.field--checkbox input[type=radio]:checked::before,
.field--checkbox input[type=checkbox]:checked::before {
  opacity: 1;
}

.field--checkbox-block label {
  height: var(--form-input-height);
  padding-inline: calc(var(--form-input-padding) * 1.5);
  background: var(--grey-50);
  display: flex;
  align-items: center;
}

.field--checkbox-block input[type] {
  margin-block: 0;
}

.field--password .password__container {
  position: relative;
}

.field--password .password__toggle {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  color: var(--form-label-text-color);
  width: 3.25rem;
  border-left: 1px solid var(--form-input-border-color);
}

.field--password .password__toggle .eye-slash-icon,
.field--password .password__toggle.visible .eye-icon {
  display: none;
}

.field--password .password__toggle.visible .eye-slash-icon {
  display: block;
}

@media (min-width: 30rem) {
  .field--password .password__toggle {
    width: 3.5rem;
  }
}
input[type=date],
input[type=week],
input[type=month] {
  padding-inline-end: 2.25rem;
  padding-block: 0.5rem;
  line-height: inherit;
}

.field--date input[type=date],
.field--date input[type=week],
.field--date input[type=month] {
  position: relative;
  display: block;
  width: min-content;
  min-width: 11.25rem;
}

.field--date input[type=date]::-webkit-calendar-picker-indicator,
.field--date input[type=week]::-webkit-calendar-picker-indicator,
.field--date input[type=month]::-webkit-calendar-picker-indicator,
.field--date input[type=date]::-webkit-inner-spin-button,
.field--date input[type=week]::-webkit-inner-spin-button,
.field--date input[type=month]::-webkit-inner-spin-button {
  position: absolute;
  right: 0;
  width: 2.5rem;
  height: 100%;
  cursor: pointer;
  background: transparent;
}

.field--date input[type=date]::after,
.field--date input[type=week]::after,
.field--date input[type=month]::after {
  content: "";
  width: 3.25rem;
  height: 3.25rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  background-size: 1.125rem 1.125rem;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 102.5'%3E%3Cg fill='%23101010'%3E%3Cpath d='M73.1 47.6c-3.8 0-6.9 3.1-6.9 6.9 0 3.8 3.1 6.9 6.9 6.9 3.8 0 6.9-3.1 6.9-6.9 0-3.8-3.1-6.9-6.9-6.9m0 9.9c-1.6 0-3-1.3-3-3 0-1.6 1.3-3 3-3 1.6 0 3 1.3 3 3 0 1.6-1.3 3-3 3M73.1 71.7c-3.8 0-6.9 3.1-6.9 6.9 0 3.8 3.1 6.9 6.9 6.9 3.8 0 6.9-3.1 6.9-6.9 0-3.8-3.1-6.9-6.9-6.9m0 9.9c-1.6 0-3-1.3-3-3 0-1.6 1.3-3 3-3 1.6 0 3 1.3 3 3 0 1.6-1.3 3-3 3M49 71.7c-3.8 0-6.9 3.1-6.9 6.9 0 3.8 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9c0-3.8-3.1-6.9-6.9-6.9m0 9.9c-1.6 0-3-1.3-3-3 0-1.6 1.3-3 3-3 1.6 0 3 1.3 3 3 0 1.6-1.3 3-3 3M49 47.6c-3.8 0-6.9 3.1-6.9 6.9 0 3.8 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9c0-3.8-3.1-6.9-6.9-6.9m0 9.9c-1.6 0-3-1.3-3-3 0-1.6 1.3-3 3-3 1.6 0 3 1.3 3 3 0 1.6-1.3 3-3 3M24.9 71.7c-3.8 0-6.9 3.1-6.9 6.9 0 3.8 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9c0-3.8-3.1-6.9-6.9-6.9m0 9.9c-1.6 0-3-1.3-3-3 0-1.6 1.3-3 3-3 1.6 0 3 1.3 3 3 0 1.6-1.3 3-3 3M24.9 47.6c-3.8 0-6.9 3.1-6.9 6.9 0 3.8 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9c0-3.8-3.1-6.9-6.9-6.9m0 9.9c-1.6 0-3-1.3-3-3 0-1.6 1.3-3 3-3 1.6 0 3 1.3 3 3 0 1.6-1.3 3-3 3'/%3E%3Cpath d='M83.2 8.8l-.1-2.9c0-3.2-2.6-5.9-5.9-5.9h-2.9c-3.2 0-5.9 2.6-5.9 5.9v2.9h-37V5.9c0-3.2-2.6-5.9-5.9-5.9h-2.9c-3.2 0-5.9 2.6-5.9 5.9v2.9C7.5 8.8 0 16.3 0 25.6v60c0 9.3 7.5 16.8 16.8 16.8h66.4c9.3 0 16.8-7.5 16.8-16.8v-60c0-9.3-7.5-16.8-16.8-16.8M72.4 5.9c0-1.1.9-2 2-2h2.9c1.1 0 1.9.9 1.9 2v9.8c0 1.1-.9 2-2 2h-2.9c-1.1 0-2-.9-2-2l.1-9.8zm-51.6 0c0-1.1.9-2 1.9-2h2.9c1.1 0 2 .9 1.9 2v9.8c0 1.1-.9 2-2 2h-2.9c-1.1 0-2-.9-2-2l.2-9.8zm-4 6.8v2.9c0 3.2 2.6 5.9 5.9 5.9h2.9c3.2 0 5.9-2.6 5.9-5.9v-2.9h37v2.9c0 3.2 2.6 5.9 5.9 5.9h2.9c3.2 0 5.9-2.6 5.9-5.9v-2.9h.1c7.1 0 12.9 5.8 12.9 12.9v6.2H3.9v-6.2c0-7.1 5.8-12.9 12.9-12.9m66.4 85.8H16.8c-7.1 0-12.9-5.8-12.9-12.9V35.7h92.2v49.9c0 7.1-5.8 12.9-12.9 12.9'/%3E%3C/g%3E%3C/svg%3E");
}

.safari input[type=date],
.safari input[type=week],
.safari input[type=month] {
  padding-inline-end: 2.75rem;
  min-width: 10.5rem;
}

.firefox input[type=date],
.firefox input[type=week],
.firefox input[type=month] {
  padding-inline-end: 1rem;
}

.firefox input[type=date]::after,
.firefox input[type=week]::after,
.firefox input[type=month]::after {
  display: none;
}

.field--flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0 var(--form-grid-gap);
}

.field--flex legend {
  width: 100%;
}

.field--flex input[type=date] {
  width: auto;
  min-width: none;
}

.field--flex .field {
  margin-top: 1rem;
}

.field--grid {
  display: grid;
  gap: 0 var(--form-grid-gap);
  grid-template-columns: 1fr;
}

*:has(> .field--grid) {
  container-type: inline-size;
}

@container (min-width: 550px) {
  .field--grid {
    grid-template-columns: 1fr 1fr;
  }
  .field--grid .field--checkbox + .field--checkbox {
    margin-top: var(--form-grid-gap);
  }
  .field--grid-products {
    grid-template-columns: 1fr 124px;
  }
  .field--grid-products select {
    width: 100%;
  }
  .form--product-enquiry .field--grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@container (min-width: 800px) {
  .field--grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 37.5rem) {
  select,
  input[list]:where(:not(input[type=color])) {
    width: auto;
  }
}
form,
.form-comments,
.field--limited {
  max-width: 35rem;
}

.form-test-suite {
  max-width: 53rem;
}

.form--product-enquiry {
  max-width: none;
}

.form--product-enquiry .recaptcha-text {
  text-align: right;
}

/*# sourceMappingURL=/assets/application/base/forms-4680f2be.css.map */
