/*Прелоадер*/
.preloading {
	position: absolute;
	display: flex;
	top: 50%;
	left: 50%;
	z-index: 1050;
	width: 48px;
	height: 48px;
	margin-top: -24px; /* Negative half of height. */
	margin-left: -24px; /* Negative half of width. */
	vertical-align: -0.125em;
	background-repeat: no-repeat;
	background-position: center center;
	border: 0.25em solid #FFBB3D;
	border-right-color: transparent;
	border-radius: 50%;
	-webkit-animation: .75s linear infinite spinner-border;
	animation: .75s linear infinite spinner-border;
}