.l-loading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 9997;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 1;
	visibility: visible;
	-webkit-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
	-webkit-transition-property: opacity, visibility;
	transition-property: opacity, visibility;
}

@media print, screen and (min-width: 751px) {
	.is-menu-loading .l-loading {
		padding-left: 100px;
	}
}

.is-loaded .l-loading {
	opacity: 0;
	visibility: hidden;
}

.l-loading__icon {
	position: relative;
	width: 40px;
}

.l-loading__icon:before {
	content: "";
	display: block;
	padding-top: 100%;
}

.l-loading__icon-circular {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	-webkit-transform-origin: center center;
	transform-origin: center center;
	-webkit-animation: loading-rotate 2.2s ease infinite;
	animation: loading-rotate 2.2s ease infinite;
	will-change: transform;
}

.l-loading__icon-path {
	-webkit-animation: loading-dash 1.5s ease-in-out infinite, loading-color 6s ease-in-out infinite;
	animation: loading-dash 1.5s ease-in-out infinite, loading-color 6s ease-in-out infinite;
	stroke-dasharray: 1, 200;
	stroke-dashoffset: 0;
	stroke-linecap: round;
	will-change: stroke-dasharray, stroke-dashoffset, stroke
}

.ie .l-loading__icon-path {
	stroke-dasharray: 100, 200;
	stroke-dashoffset: -5px;
	stroke: #ED416A;
}
