.color-preview-switcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(220px, calc(100vw - 36px));
  padding: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(52, 57, 53, 0.14);
  box-shadow: 0 18px 45px rgba(52, 57, 53, 0.18);
  font-family: var(--body-font, sans-serif);
}

.color-preview-switcher__title {
  margin: 0 0 2px;
  color: #343935;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.color-preview-switcher__button {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 6px 9px;
  border: 1px solid rgba(52, 57, 53, 0.14);
  background: #fff;
  color: #343935;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.color-preview-switcher__button:hover,
.color-preview-switcher__button.is-active {
  border-color: currentColor;
}

.color-preview-switcher__swatch {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(52, 57, 53, 0.18);
}

@media (max-width: 575px) {
  .color-preview-switcher {
    right: 10px;
    bottom: 10px;
    width: min(190px, calc(100vw - 20px));
  }
}
