.flex-between-start {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.flex-center-gap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.flex-gap {
  gap: 0.5rem;
}

.flex-col-start {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.flex-end-start {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.flex-end-center {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.color-button .pickr {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.pickr {
  display: flex;
  width: 42px;
  border-radius: 8px;
  border: 1px solid #D8DCE9;
}

.pickr .pcr-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
}

.pickr .pcr-button:focus {
  box-shadow: none;
  outline: 2px solid var(--pcr-color);
  outline-offset: 1px;
  transition: none;
}

.pickr .pcr-button::before,
.pickr .pcr-button::after {
  width: 80%;
  height: 80%;
  top: unset;
  left: unset;
}

.pcr-app .pcr-interaction .pcr-save,
.pcr-app .pcr-interaction .pcr-type.active {
  background-color: #5068A5;
}

.pcr-app input {
  width: unset;
  height: unset;
}

.pcr-app .pcr-swatches {
  gap: 10px;
}