.attributes-control {
  display: grid;
  gap: var(--size-content-space-sm);
}
.attributes-switcher {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  padding: var(--size-button-padding-xs);
  align-items: flex-start;
  align-self: stretch;
  border-radius: var(--radius-button-xl);
  background: var(--color-button-filled-neutral-bg-sm-default);
}
.attributes-switcher__element {
  display: inline-grid;
  flex: 1 1 auto;
  height: var(--size-button-height-sm);
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-button-lg);
  cursor: pointer;
  transition: var(--transition);
}
.attributes-switcher__element-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--color-button-filled-neutral-content-primary-default);
  font-family: var(--font-button);
  font-size: var(--size-font-sm-size);
  font-style: normal;
  font-weight: 500;
  line-height: var(--size-font-xs-line);
  letter-spacing: var(--size-font-xs-letter-spacing);
}
.attributes-switcher__element.active {
  background: var(--color-button-filled-neutral-bg-variable-default);
}
.attributes-switcher__element.inactive {
  pointer-events: none;
  opacity: 0.5;
}
.attributes-selecter {
  display: inline-grid;
  position: relative;
  width: 100%;
  margin: 0;
  padding: var(--size-base-0x-0);
  height: var(--size-button-height-md);
  align-items: center;
  border-radius: var(--radius-button-xl);
  background: var(--color-button-filled-neutral-bg-md-default);
}
.attributes-selecter__label {
  display: inline-grid;
  grid-template-columns: repeat(2, max-content);
  gap: 4px;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: var(--color-button-filled-neutral-content-primary-default);
  font-family: var(--font-button);
  font-size: var(--size-font-lg-size);
  font-style: normal;
  font-weight: 500;
  line-height: var(--size-font-xs-line);
  letter-spacing: var(--size-font-lg-letter-spacing);
  cursor: pointer;
}
.attributes-selecter__label::after {
  content: "";
  position: relative;
  width: 16px;
  height: 16px;
  background-image: url(../assets/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s;
}
.attributes-selecter__list {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  display: grid;
  gap: var(--size-button-padding-xs);
  left: 0;
  bottom: calc(100% + var(--size-grid-gutter-variable));
  width: 100%;
  padding: var(--size-card-padding-xs);
  border-radius: var(--radius-button-md, 12px);
  background: var(--color-bg-variable);
  z-index: -20;
  box-shadow: 51px 50px 20px 0px rgba(135, 135, 135, 0), 33px 32px 18px 0px rgba(135, 135, 135, 0.01), 18px 18px 15px 0px rgba(135, 135, 135, 0.05), 8px 8px 11px 0px rgba(135, 135, 135, 0.09), 2px 2px 6px 0px rgba(135, 135, 135, 0.1);
}
.attributes-selecter__list.show {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.attributes-selecter__element {
  position: relative;
}
.attributes-selecter__element-name {
  display: grid;
  position: relative;
  width: 100%;
  padding: var(--size-button-padding-2xs);
  border-radius: var(--radius-button-sm);
  overflow: hidden;
  cursor: pointer;
}
.attributes-selecter__element-name::before {
  content: "";
  display: inline-block;
  width: var(--size-icon-sm);
  height: var(--size-icon-sm);
  position: absolute;
  top: 50%;
  right: calc(var(--size-button-padding-2xs) + 10px);
  transform: translate(50%, -50%);
  border-radius: 50%;
  transition: var(--transition);
}
.attributes-selecter__element-name::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: var(--size-button-padding-2xs);
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid var(--color-button-outline-neutral-border-default);
  border-radius: 50%;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  transition: var(--transition);
}
.attributes-selecter__element.active .attributes-selecter__element-name {
  background: var(--color-button-filled-neutral-bg-variable-active);
  color: var(--color-button-filled-neutral-content-primary-active);
}
.attributes-selecter__element.active .attributes-selecter__element-name::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'><path fill-rule='evenodd' clip-rule='evenodd' d='M12.7682 5.64018C13.1218 5.2159 13.0645 4.58534 12.6402 4.23177C12.2159 3.87821 11.5853 3.93553 11.2318 4.35981L6.9328 9.51858L4.70711 7.29289C4.31658 6.90236 3.68342 6.90236 3.29289 7.29289C2.90237 7.68341 2.90237 8.31658 3.29289 8.7071L5.51859 10.9328C6.35019 11.7644 7.71635 11.7024 8.46924 10.799L12.7682 5.64018Z' fill='white'/></svg>");
  background-color: var(--color-button-filled-primary-bg-default);
}
.attributes-selecter__element.active .attributes-selecter__element-name::after {
  border-color: var(--color-button-filled-primary-bg-default);
  border-width: 3px;
}

/*# sourceMappingURL=attributes-current-variation.css.map */
