.custom-button {
  display: flex;
  margin-top: 15px;
}
.custom-button:not(:last-child) {
  margin-bottom: 15px;
}
.custom-button--left {
  justify-content: flex-start;
}
.custom-button--center {
  justify-content: center;
}
.custom-button--right {
  justify-content: flex-end;
}
.custom-button__btn {
  font-size: var(--block-button-font-size, var(--button-font-size, 16px));
  cursor: pointer;
  border: none;
  transition: 0.3s;
}
.custom-button__btn.button {
  background: var(--cb-button-bg, var(--button-bg));
  color: var(--cb-button-text-color, var(--button-text-color));
}
.custom-button__btn.button:hover {
  background: var(--cb-button-bg-hover, var(--cb-button-bg, var(--button-bg)));
  color: var(--cb-button-text-color-hover, var(--cb-button-text-color, var(--button-text-color)));
}

/*# sourceMappingURL=custom-button.css.map */
