.stc-flex {
	display: flex;
}

.col-gap-large {
	column-gap: var(--large-gap);
}

.col-gap-sm {
	column-gap: 15px;
}

@supports not (aspect-ratio: 1/1) {
	.col-gap-large {
		column-gap: 0;
	}

	.col-gap-large > * {
		margin-right: var(--large-gap);
	}

	.col-gap-large > *:last-child {
		margin-right: 0;
	}
}

.stc-text-center {
	text-align: center !important;
}

.stc-text-right {
	text-align: right !important;
}

.stc-mb-md {
	margin-bottom: 40px;
}

.stc-none {
	display: none;
}

.stc-flex-end {
	justify-content: flex-end;
}

.stc-rejected {
	color: var(--color-red);
}

.pending {
}

.stc-align-start {
	align-items: flex-start;
}

.stc-align-center {
	align-items: center;
}

.stc-align-end {
	align-items: flex-end;
}

.stc-align-baseline {
	align-items: baseline;
}

.stc-flex {
	display: flex;
}

.stc-justify-start {
	justify-content: flex-start;
}

.stc-justify-end {
	justify-content: flex-end;
}

.stc-justify-between {
	justify-content: space-between;
}

.stc-justify-center {
	justify-content: center;
}

.stc-mb-2 {
	margin-bottom: 20px;
}

.stc-mt-3 {
	margin-top: 30px;
}

.stc-px-2 {
	padding-left: 20px;
	padding-right: 20px;
}

/* colors */
.stc-color--red,
.stc-color--red:hover,
.stc-color--red:active,
.stc-color--focus {
	color: var(--color-red);
}

.stc-color--green,
.stc-color--green:hover,
.stc-color--green:active,
.stc-color--green:focus {
	color: var(--color-green);
}

.stc-color--grey,
.stc-color--grey:hover,
.stc-color--grey:active,
.stc-color--grey:focus {
	color: var(--color-text-grey);
}

.stc-danger {
	background-color: var(--color-red);
}

.i-mr {
	display: inline-block;
	margin-right: 7px;
}

.i-ml {
	display: inline-block;
	margin-left: 7px;
}

.mt-10 {
	margin-top: 10px;
}

.stc-padded {
	padding: 30px;
}

@media screen and (max-width: 767px) {
	.stc-padded {
		padding: 30px 15px;
	}
}

@media screen and (max-width: 480px) {
	.stc-padded {
		padding: 20px 10px;
	}
}

.mt-0 {
	margin-top: 0 !important;
}

.mt-16 {
	margin-top: 16px;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.mb-16 {
	margin-bottom: 16px;
}

.mb-24 {
	margin-bottom: 24px;
}

.mt-24 {
	margin-top: 24px;
}

.mb-40 {
	margin-bottom: 40px;
}

.d-flex {
	display: flex;
}

.justify-content-between {
	justify-content: space-between;
}

.w-100 {
	width: 100%;
}

.flex-wrap {
	flex-wrap: wrap;
}
