.overflow-auto {
	overflow: auto;
}

.relative {
	position: relative;
}

.flex {
	display: flex;
  &-auto {
    flex: auto;
  }
  &.gap-5 {
    gap: 5px;
  }
  &.gap-10 {
    gap: 10px;
  }
  &.gap-20 {
    gap: 20px;
  }
}

.inline-block {
  display: inline-block;
}

.width-full {
  width: 100%;
}

.align-items-center {
	align-items: center;
}

.justify-between {
	display: flex;
	justify-content: space-between;
}

.justify-center {
	justify-content: center;
}

.justify-end {
	justify-content: flex-end;
}

.text-right {
	text-align: right !important;
}

.order-0 {
	order: 0 !important;
}
.order-1 {
	order: 1 !important;
}
.order-2 {
	order: 2 !important;
}
.order-3 {
	order: 3 !important;
}
.order-4 {
	order: 4 !important;
}
.order-5 {
	order: 5 !important;
}
