@-webkit-keyframes dotline-move {
	40% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		opacity: .8
	}
	to {
		-webkit-transform: translateX(300px);
		transform: translateX(300px);
		opacity: 0
	}
}
@keyframes dotline-move {
	40% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		opacity: .8
	}
	to {
		-webkit-transform: translateX(300px);
		transform: translateX(300px);
		opacity: 0
	}
}
.preloader-dotline {
	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
}
.preloader-dotline .dot {
	display: inline-block;
	background: rgba(16, 16, 16, .4);
	height: 4px;
	width: 4px;
	border-radius: 1000px
}
.preloader-dotline .dot:not(:last-child) {
	margin-right: 1rem
}
.preloader-dotline:not(.is-active) {
    opacity: 0;
}
.preloader-dotline.is-active .dot {
	-webkit-transform: translateX(-300px);
	-ms-transform: translateX(-300px);
	transform: translateX(-300px);
	-webkit-animation: dotline-move 4s infinite;
	animation: dotline-move 4s infinite;
	opacity: 0
}
.preloader-dotline.is-active .dot:not(:last-child) {
	margin-right: 0
}
.preloader-dotline.is-active .dot:first-child {
	-webkit-animation-delay: .8s;
	animation-delay: .8s
}
.preloader-dotline.is-active .dot:nth-child(2) {
	-webkit-animation-delay: .7s;
	animation-delay: .7s
}
.preloader-dotline.is-active .dot:nth-child(3) {
	-webkit-animation-delay: .6s;
	animation-delay: .6s
}
.preloader-dotline.is-active .dot:nth-child(4) {
	-webkit-animation-delay: .5s;
	animation-delay: .5s
}
.preloader-dotline.is-active .dot:nth-child(5) {
	-webkit-animation-delay: .4s;
	animation-delay: .4s
}
.preloader-dotline.is-active .dot:nth-child(6) {
	-webkit-animation-delay: .3s;
	animation-delay: .3s
}
.preloader-dotline.is-active .dot:nth-child(7) {
	-webkit-animation-delay: .2s;
	animation-delay: .2s
}
.preloader-dotline.is-active .dot:nth-child(8) {
	-webkit-animation-delay: .1s;
	animation-delay: .1s
}