.caption-large,
.customer .field input,
.field__input,
.form__label,
.select__select {
  line-height: var(--leading-normal);
  font-size: var(--text-base);
  letter-spacing: var(--tracking-wider);
}

/* component-form */
.field__input,
.select__select,
.customer .field input {
  appearance: none;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  width: 100%;
  box-sizing: border-box;
  color: #000;
  font-size: 1.6rem;
  height: 4.5rem;
  transition: box-shadow var(--duration-short) ease;
}


.customer.addresses select {
  appearance: none;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  width: 100%;
  box-sizing: border-box;
  font-size: var(--text-base);
  height: auto;
  transition: none;
  border: 1px solid black;
}

.select__select {
  font-style: normal;
  font-weight: var(--font-normal);
  font-size: var(--text-sm);
  color: var(--color-foreground-75);
}

.field__input:focus-visible,
.select__select:focus-visible,
.field input:focus-visible {
  box-shadow: 0 0 0 0.1rem var(--color-foreground-55),
    0 0 0 0.3rem var(--color-background),
    0 0 0.5rem 0.4rem var(--color-foreground-30);
}

.field__input:focus,
.select__select:focus,
.field input:focus {
  box-shadow: 0 0 0 0.1rem var(--color-foreground-55),
    0 0 0 0.3rem var(--color-background),
    0 0 0.5rem 0.4rem var(--color-foreground-30);
}

.text-area,
.select {
  display: inline-block;
  position: relative;
  width: 100%;
}

/* Select */

.select .icon-caret,
.customer select + svg {
  pointer-events: none;
  position: absolute;
  right: 0;
  height: 0.6rem;
  top: calc(50% - 0.35rem);
}

.select__select {
  cursor: pointer;
  padding: 0 2rem 0 1rem;
}

/* Field */

.field {
  position: relative;
  width: 100%;
  display: flex;
}

.customer .field {
  display: block;
}

.field--with-error {
  flex-flow: wrap;
}

.field__input,
.customer .field input {
  flex-grow: 1;
  text-align: left;
  padding: 1.5rem;
}

.field__label,
.customer .field label {
  margin-bottom: 0;
  pointer-events: none;
  position: absolute;
  left: 1.5rem;
  line-height: var(--leading-normal);
  font-size: var(--text-lg);
  top: 1.3rem;
  transition: top var(--duration-short) ease,
    font-size var(--duration-short) ease;
  color: var(--color-foreground-75);
  letter-spacing: 0.1rem;
}

.field__input:focus ~ .field__label,
.field__input:not(:placeholder-shown) ~ .field__label,
.field__input:-webkit-autofill ~ .field__label,
.customer .field input:focus ~ label,
.customer .field input:not(:placeholder-shown) ~ label,
.customer .field input:-webkit-autofill ~ label {
  font-size: var(--text-base);
  top: 0.3em;
  letter-spacing: 0.04rem;
}

.field__input:focus,
.field__input:not(:placeholder-shown),
.field__input:-webkit-autofill,
.customer .field input:focus,
.customer .field input:not(:placeholder-shown),
.customer .field input:-webkit-autofill {
  padding: 0 1.2rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.field__input::-webkit-search-cancel-button,
.customer .field input::-webkit-search-cancel-button {
  display: none;
}

.field__input::placeholder,
.customer .field input::placeholder {
  opacity: 0;
}

.field__button {
  height: 4.4rem;
  width: 4.4rem;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  color: currentColor;
}

.field__button > svg {
  height: 2.5rem;
  width: 2.5rem;
}

/* Text area */

.text-area {
  font-style: normal;
  font-weight: var(--font-normal);
  font-family: var(--font-paragraph);
  resize: none;
  padding: 1.2rem;
  min-height: 10rem;
}

.text-area--resize-vertical {
  resize: vertical;
}

input[type='checkbox'] {
  display: inline-block;
  width: auto;
  margin-right: .5rem;
}

/* Form global */

.form__label {
  display: block;
  margin-bottom: 0.6rem;
}

.form__message {
  margin-top: 1rem;
  display: flex;
  align-items: center;
}

.form__message--large {
  font-size: var(--text-lg);
}

.customer .field .form__message {
  text-align: left;
  font-size: var(--text-base);
}

.form__message .icon,
.customer .form__message svg {
  flex-shrink: 0;
  margin-right: .5rem;
  height: 1.3rem;
  width: 1.3rem;
}

.form__message--large .icon,
.customer .form__message svg {
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 1rem;
}

.customer .field .form__message svg {
  align-self: flex-start;
}

.form-status {
  margin: 0;
  font-size: var(--text-lg);
}

.form-status-list {
  padding: 0;
  margin-top: 2rem;
  margin: 0 0 3.5rem;
}

.form-status-list li {
  list-style-position: inside;
}

.form-status-list .link::first-letter {
  text-transform: capitalize;
}

/* component-quantity */
.quantity {
  position: relative;
  display: flex;
  border: 1px solid black;
  width: var(--quantity-width);
  height: var(--button-height);
}

#qty__container .quantity {
  height: 100%;
}

.quantity--small {
  height: var(--button-quant-small);
}

.quantity__input {
  text-align: center;
  background-color: transparent;
  border: 0;
  padding: 0;
  width: 100%;
  flex-grow: 1;
  appearance: none;
  color: currentColor;
  font-size: var(--text-sm);
}

.quantity__button {
  flex-shrink: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  font-size: var(--text-xl);
  color: var(--color-foreground);
}

.quantity__button svg {
  pointer-events: none;
  width: 1rem;
}

.quantity__input:-webkit-autofill,
.quantity__input:-webkit-autofill:hover,
.quantity__input:-webkit-autofill:active {
  box-shadow: 0 0 0 10rem var(--color-background) inset !important;
  -webkit-box-shadow: 0 0 0 10rem var(--color-background) inset !important;
}

.quantity__input::-webkit-outer-spin-button,
.quantity__input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.quantity__input[type='number'] {
  -moz-appearance: textfield;
}

/* input--checkbox */

input[type='checkbox'].input--checkbox,
.input--checkbox {
  appearance: none;
  border: 1px solid black;
  background: white;
  width: 2rem;
  height: 2rem;
  position: relative;
}

.input--checkbox::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--url-icon-checkbox-tick) no-repeat 50% 50% / 1rem 1rem;
  opacity: 0;
}

.input--checkbox:checked::after {
  opacity: 1;
}

.input--checkbox + label {
  display: inline;
}

label .input--checkbox {
  margin-right: 1.2rem;
}
input[type='checkbox'].input--checkbox.error,
.input--checkbox.error {
  border-color: var(--color-error-red);
}
input[type='checkbox'].input--checkbox.error + label,
.input--checkbox.error + label {
  color: var(--color-error-red);
}


/* radio */


[role="radio"]) span::before {
  background-image: var(--url-radio-icon);
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 3px;
}

[role="radio"][aria-checked="true"] span::before {
  background-image: var(--url-radio-checked-icon);
} 



#SortList [role="radio"]::before {
  background-image: var(--url-radio-icon);
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0px;
  top: 3px;
}

#SortList [role="radio"][aria-checked="true"]::before {
  background-image: var(--url-radio-checked-icon);
}



/* 

    position: relative;
    right: 10
px
;
    top: 0;
    width: 15
px
;
    height: 13
px
;
} */

/* 
[role="radiogroup"] {
  padding: 0;
  margin: 0;
  list-style: none;
}

[role="radiogroup"]:focus {
  outline: none;
}

[role="radio"] {
  display: inline-block;
  position: relative;
  padding-left: 1.4em;
  cursor: default;
}

[role="radio"] + [role="radio"] {
  margin-left: 1em;
}

[role="radio"]::before,
[role="radio"]::after {
  position: absolute;
  top: 50%;
  left: 7px;
  transform: translate(-50%, -50%);
  content: '';
}



[role="radio"]:active::before {
  background-image: linear-gradient(to bottom, hsl(300, 3%, 73%), hsl(300, 3%, 93%));
}

[role="radio"][aria-checked="true"]::before {
  border-color: hsl(216, 80%, 50%);
  background: hsl(217, 95%, 68%);
  background-image: linear-gradient(to bottom, hsl(217, 95%, 68%), hsl(216, 80%, 57%));
      background-image: var(--url-sort-icon);
}



[role="radio"][aria-checked="mixed"]:active::before,
[role="radio"][aria-checked="true"]:active::before {
  background-image: linear-gradient(to bottom, hsl(216, 80%, 57%), hsl(217, 95%, 68%) 60%);
}

[role="radio"]:hover::before {
  border-color: hsl(216, 94%, 65%);
}

[role="radio"]:focus {
  outline: none;
}

[role="radio"].focus:before,
[role="radio"]:focus::before {
  width: 16px;
  height: 16px;
  box-sizing: content-box;
  border-color: hsl(216, 94%, 73%);
  border-width: 3px;
  border-radius: 100%;
  box-shadow: inset 0 0 0 1px hsl(216, 80%, 50%);
} */