.section--helper {
  position: absolute;
  margin: auto;
  bottom: 30px;
  left: 0px;
  right: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  z-index: 1;
  display: none;
}

/* action buttons */

.section--helper-button {
  color: var(--color-primary);
  background-color: transparent;
  font-size: 16px;
  padding: 0px;
  border-radius: 50%;
  width: 38px;
  height: 31px;
  opacity: 0;
}

.section--helper-button:hover, .section--helper-button:focus {
  opacity: 1;
}

.section--helper-button.remove {
  color: var(--color-primary);
  background-color: var(--bs-danger);
}

.section--helper-button.edit {
  color: var(--color-primary);
  background-color: var(--color-primary);
}

.section--helper-button.edit-colors {
  color: var(--color-primary);
  background-color: var(--color-primary);
}

.section--helper-button:hover {
  color: var(--color-primary);
}

.section--helper-button.remove:hover {
  background-color: var(--bs-danger);
}

.section--helper-button.edit:hover {
  background-color: var(--color-primary);
}

.section--helper-button.edit-colors:hover {
  background-color: var(--color-primary);
}

