#msg-text {
	overflow: scroll;
}

@-moz-keyframes spin {
	100% {
		-moz-transform: rotate(360deg);
	}
}

@-webkit-keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.spin-animation {
	animation: spin 2s linear infinite;
}

[v-cloak] {
	display: none;
}

.flex {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

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

.column {
	flex-direction: column;
}

.justify-center, .flex-center {
	justify-content: center;
}

.align-center, .flex-center {
	align-items: center;
}

.gutter-y-sm > * {
	margin-top: 4px;
	margin-bottom: 4px;
}

.gutter-y-md > * {
	margin-top: 8px;
	margin-bottom: 8px;
}

.mx-sm, .ml-sm {
	margin-left: 8px;
}
.mx-sm, .mr-sm {
	margin-right: 8px;
}

.mx-md, .ml-md {
	margin-left: 16px;
}
.mx-md, .mr-md {
	margin-right: 16px;
}

.mx-lg, .ml-lg {
	margin-left: 32px;
}
.mx-lg, .mr-lg {
	margin-right: 32px;
}

.my-sm, .mt-sm {
	margin-top: 8px;
}
.my-sm, .mb-sm {
	margin-bottom: 8px;
}

.my-md, .mt-md {
	margin-top: 16px;
}
.my-md, .mb-md {
	margin-bottom: 16px;
}

.my-lg, .mt-lg {
	margin-top: 32px;
}
.my-lg, .mb-lg {
	margin-bottom: 32px;
}

.my-none {
	margin-top: 0;
	margin-bottom: 0;
}

.order-first {
	order: 1;
}

.order-last {
	order: 99;
}

.absolute-full {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.sticky {
	position: sticky;
	top: 5px;
}

@media screen and (min-width: 992px) {
	.order-md-first {
		order: 1;
	}

	.order-md-last {
		order: 99;
	}

	.my-md-none {
		margin-top: 0;
		margin-bottom: 0;
	}

	.my-md-sm {
		margin-top: 8px;
		margin-bottom: 8px;
	}

	.my-md-md {
		margin-top: 16px;
		margin-bottom: 16px;
	}

	.sticky-md {
		position: sticky;
		top: 5px;
	}
}

@media screen and (min-width: 1200px) {
	.order-lg-first {
		order: 1;
	}
	.order-lg-last {
		order: 99;
	}
	.sticky-lg {
		position: sticky;
		top: 5px;
	}
}

.sortable {
	cursor: pointer;
	user-select: none;
}

.sortable::after {
	content: " ▲▼";
}

.sortable.ascending::after {
	content: " ▲";
}

.sortable.descending::after {
	content: " ▼"
}

.sortable.small::after {
	font-size: 85%
}

.table-centered > tbody > tr > td {
	vertical-align: middle;
}