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

/* action buttons */

.section--helper-button {
  color: var(--color-text);
  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-text);
  background-color: var(--bs-danger);
}

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

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

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

.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);
}

.section--fallback {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-body);
  color: var(--color-text);
}

.section--fallback-single {
  padding: 12px 20px;
  margin: auto;
  margin-bottom: 0px;
  border-radius: var(--common-radius-md);
  max-width: 330px;
}

.section--fallback-single h4 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0px;
}

@media (max-width: 757px) {
  .section--fallback-single h4 {
    font-size: 15px;
  }
}

