.DrawerNextFooter {
  display: flex;
  padding-inline: var(--drawer-inline-padding);
  padding-block: var(--drawer-blocks-gap) var(--drawer-block-padding);
  margin-block-start: auto;
}

  /* ---- MODE ---- */
  .DrawerNextFooter_mode_start {
    justify-content: flex-start;
  }
  .DrawerNextFooter_mode_end {
    justify-content: flex-end;
  }
  .DrawerNextFooter_mode_space-between {
    justify-content: space-between;
  }
  /* ---- DEVICE TYPE ---- */
  .DrawerNextFooter_deviceType_mobile {
    flex-direction: column;
  }
