
.d-block {
	display: block;
}
.d-flex {
	display: flex;
}
.d-flex-column {
	display: flex;
	flex-direction: column;
}
.d-flex-s-s {
	justify-content: flex-start;
	align-items: flex-start;
}
.d-flex-s-c {
	justify-content: flex-start;
	align-items: center;
}
.d-flex-s-e {
	justify-content: flex-start;
	align-items: end;
}
.d-flex-c-s {
	justify-content: center;
	align-items: flex-start;
}
.d-flex-c-c {
	justify-content: center;
	align-items: center;
}
.d-flex-c-e {
	justify-content: center;
	align-items: end;
}
.d-flex-e-s {
	justify-content: end;
	align-items: flex-start;
}
.d-flex-e-c {
	justify-content: end;
	align-items: center;
}
.d-flex-e-e {
	justify-content: end;
	align-items: end;
}
.d-flex-sb-s {
	justify-content: space-between;
	align-items: flex-start;
}
.d-flex-sb-c {
	justify-content: space-between;
	align-items: center;
}
.d-flex-sb-e {
	justify-content: space-between;
	align-items: end;
}

.gap-5 {
	gap: 5px;
}
.gap-10 {
	gap: 10px;
}

.p-sticky {
	position: sticky;
	top: 0;
}

.p-relative {
	position: relative;
}
.mt-5 {
	margin-top: 5px;
}
.mt-10 {
	margin-top: 10px;
}
.mt-15 {
	margin-top: 15px;
}
.mt-20 {
	margin-top: 20px;
}
.mt-25 {
	margin-top: 25px;
}
.mt-30 {
	margin-top: 30px;
}

.ml-5 {
	margin-left: 5px;
}
.ml-10 {
	margin-left: 10px;
}
.ml-15 {
	margin-left: 15px;
}
.ml-20 {
	margin-left: 20px;
}
.ml-25 {
	margin-left: 25px;
}
.ml-30 {
	margin-left: 30px;
}

.mb-5 {
	margin-bottom: 5px;
}
.mb-10 {
	margin-bottom: 10px;
}
.mb-15 {
	margin-bottom: 15px;
}
.mb-20 {
	margin-bottom: 20px;
}
.mb-25 {
	margin-bottom: 25px;
}
.mb-30 {
	margin-bottom: 30px;
}

.mr-5 {
	margin-right: 5px;
}
.mr-10 {
	margin-right: 10px;
}
.mr-15 {
	margin-right: 15px;
}
.mr-20 {
	margin-right: 20px;
}
.mr-25 {
	margin-right: 25px;
}
.mr-30 {
	margin-right: 30px;
}

.h-centered {
    left: 50%;
    transform: translate(-50%, 0);
}
.v-centered {
    top: 50%;
    transform: translate(0, -50%);
}

.padding-16 {
	padding: 16px;
}
.h-padding-16 {
	padding-left: 16px;
	padding-right: 16px;
}
.v-padding-16 {
	padding-top: 16px;
	padding-bottom: 16px;
}
.no-top-padding {
	padding-top: 0;
}
.no-btm-padding {
	padding-bottom: 0;
}
.no-padding {
	padding: 0;
}
.no-margin {
	margin: 0;
}