/* ---------------------------------
-----  dimension variables --------
---------------------------------- */
/* ------  standard elements padding & margin  ------- */
/* spacing */
.ux-modal-footer {
  align-items: stretch;
  border-top: 1px solid #eaedf2;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}
.ux-modal-footer ux-button, .ux-modal-footer > .ux-button {
  flex: 1 0 auto;
}
.ux-modal-footer__spacer {
  flex: 0 0 15px;
}
@media (width >= 569px) {
  .ux-modal-footer {
    flex-flow: row-reverse nowrap;
  }
  .ux-modal-footer ux-button, .ux-modal-footer > .ux-button {
    flex: 1 1 50%;
  }
  .ux-modal-footer__spacer {
    flex: 0 0 30px;
  }
}