pre {
	position: static;
	background: #ffffff80;
	width: 100vw;
	word-wrap: break-word;
	white-space: pre-wrap;
	white-space: pre-wrap; /* Since CSS 2.1 */
	white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
	white-space: -pre-wrap; /* Opera 4-6 */
	white-space: -o-pre-wrap;
}
pre::-webkit-scrollbar {
	width: 1rem;
}
.ajaxResponse {
	position: relative;
}
.ajaxResponse.loading {
	min-height: 500px;
}
.ajaxResponse.loading::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	height: 100%;
	background: #f6f6f6;
	transition: opacity 0.3s;
}
.loading-spinner {
	width: 60px;
	z-index: 20;
	height: 60px;
	border: 8px solid #e7e7e7;
	border-top: 5px solid #0c6ab0;
	border-radius: 50%;
	animation: spin 0.6s linear infinite;
	margin: 50px auto;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
