.buttons-wrapper {
  display: flex;
}
.buttons-wrapper.alignleft > .buttons-wrapper__inner-wrapper {
  justify-content: flex-start;
}
.buttons-wrapper.aligncenter > .buttons-wrapper__inner-wrapper {
  justify-content: center;
}
.buttons-wrapper.alignright > .buttons-wrapper__inner-wrapper {
  justify-content: flex-end;
}
.buttons-wrapper__inner-wrapper {
  width: 100%;
  display: flex;
  gap: var(--spacing-xs);
}
@media (max-width: 575px) {
  .buttons-wrapper__inner-wrapper {
    flex-direction: column;
  }
}
.buttons-wrapper__button .a-button {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-width: 170px;
  padding: var(--spacing-s) var(--spacing-l);
  background-color: var(--secondary-ruby-color);
  color: var(--primary-white-color);
  border-radius: var(--border-radius-xs);
  border: 2px solid var(--secondary-ruby-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  transition: all 0.3s ease;
  text-decoration: none;
}
@media (max-width: 575px) {
  .buttons-wrapper__button .a-button {
    width: 100%;
  }
}
.buttons-wrapper__button .a-button:hover, .buttons-wrapper__button .a-button:focus, .buttons-wrapper__button .a-button:active {
  background-color: transparent;
  color: var(--secondary-ruby-color);
  border-color: var(--secondary-ruby-color-hover);
}
.buttons-wrapper__button .a-button--secondary {
  background-color: transparent !important;
  color: var(--secondary-ruby-color);
  border: 2px solid var(--secondary-ruby-color);
}
.buttons-wrapper__button .a-button--secondary:hover, .buttons-wrapper__button .a-button--secondary:focus, .buttons-wrapper__button .a-button--secondary:active {
  background-color: rgba(150, 0, 81, 0.05) !important;
  color: var(--secondary-ruby-color) !important;
  border: 2px solid var(--secondary-ruby-color) !important;
}