.display-block {
  display: block;
}

.flex-row {
  display: flex;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.flex-start {
  justify-content: flex-start;
}

.flex-end {
  justify-content: flex-end;
}

.space-between {
  justify-content: space-between;
}

.space-evenly {
  justify-content: space-evenly;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-none {
  flex: none;
}

.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

.flex-3 {
  flex: 3;
}

.flex-4 {
  flex: 4;
}

.width-fit-content {
  width: fit-content;
}

.width-50 {
  width: 50%;
}

.width-75 {
  width: 75%;
}

.width-100 {
  width: 100%
}

.width-100-important {
  width: 100% !important;
}

.width-20vw {
  width: 20vw;
}

.max-width-300px {
  max-width: 300px;
}

.height-100 {
  height: 100%
}

.height-initial-important {
  height: initial !important;
}

.min-height-0 {
  min-height: 0;
}

.border-radius-md {
  border-radius: var(--border-radius-md);
}

.border-radius-lg {
  border-radius: var(--border-radius-lg);
}

.border-top {
  border-top: 1px solid var(--default-border-color);
}

.border-top-thick {
  border-top: 2px solid var(--default-border-color);
}

.border-bottom {
  border-bottom: 1px solid var(--default-border-color);
}

.border-right {
  border-right: 1px solid var(--default-border-color);
}

.border-left {
    border-left: 1px solid var(--default-border-color);
}

.border-thick {
  border: 3px solid var(--default-border-color);
}

.border-primary-dark {
  border: 1px solid var(--primary-dark);
}

.border-warning {
  border: 2px solid var(--warning);
}

.background-white {
  background-color: var(--white);
}

.background-subtle {
  background-color: var(--background-subtle);
}

.background-success {
  background-color: var(--success);
}

.background-warning-subtle {
  background-color: var(--warning-subtle);
}

.background-light {
  background-color: var(--background-light);
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.table-no-headers th {
  display: none;
}

.table-no-row-borders, .table-no-row-borders td {
  border-bottom: none !important;
}

.table-last-column-align-right td:last-child, .table-last-column-align-right th:last-child {
  text-align: right;
}

.table-last-column-align-right td:last-child * {
  width: 100%;
}

.circled {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circled-font-size-md {
  width: calc(var(--padding-xs) + var(--font-size-md));
  height: calc(var(--padding-xs) + var(--font-size-md));
}

.circled-primary {
  border: 1px solid var(--primary);
}

.clickable {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.code-block {
  font-family: "Fira Code", monospace !important;
  color: rgb(210, 187, 133);
  background-color: rgb(32, 32, 32);
  padding: var(--padding-md);
  font-size: var(--font-size-sm);
}

.checkout-disclaimer-banner {
  display: flex;
  align-items: center;
  gap: var(--padding-xs);
  width: 100%;
  background: var(--info-dark, #02538A);
  color: var(--white);
  padding: var(--padding-sm) var(--padding-md);
  font-size: var(--font-size-xs);
  font-style: italic;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.checkout-disclaimer-banner > i {
  flex-shrink: 0;
  font-style: normal;
  font-size: var(--font-size-lg);
}

.checkout-disclaimer-banner a {
  color: var(--white);
  text-decoration: underline;
}

.transition-transform {
  transition: transform 0.2s ease-in-out;
}

.rotate-180 {
  transform: rotate(180deg);
}

.offline-banner {
  background-color: var(--warning);
  color: var(--black);
  padding: var(--padding-xs) var(--padding-md);
  z-index: var(--layer-offline-banner);
}
