/* <span class="loader"></span> */
.loader {
	width: 48px;
	height: 48px;
	border: 5px solid #fff;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	position: relative;
	animation: pulse 1s linear infinite;
}
.loader:after {
	content: "";
	position: absolute;
	width: 48px;
	height: 48px;
	border: 5px solid #fff;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	animation: scaleUp 1s linear infinite;
}

@keyframes scaleUp {
	0% {
		transform: translate(-50%, -50%) scale(0);
	}
	60%,
	100% {
		transform: translate(-50%, -50%) scale(1);
	}
}
@keyframes pulse {
	0%,
	60%,
	100% {
		transform: scale(1);
	}
	80% {
		transform: scale(1.2);
	}
}


/*Scroll to top */
 .top-to-btm {
	 position: relative;
 }

.icon-position {
	position: fixed;
	bottom: 40px;
	right: 25px;
	z-index: 20;
}

.icon-style {
	background-color: #262362;
	border: 2px solid #262362;
	border-radius: 50%;
	height: 50px;
	width: 50px;
	color: #fff;
	cursor: pointer;
	-webkit-animation: movebtn 3s ease-in-out infinite;
	animation: movebtn 3s ease-in-out infinite;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}


.icon-style:hover {
	-webkit-animation: none;
	animation: none;
	background-color: transparent;
	color: #000;
	border: 2px solid #262362;
	scale: 2;
}

i.fa-solid.fa-arrow-up {
	font-size: 20px;
	font-weight: bold;
}


@-webkit-keyframes movebtn {

	0%,
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}

	25% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
}


@keyframes movebtn {

	0%,
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}

	25% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
}
