
.loader_mapp_icon {
	background-color:rgba(255, 255, 255, 1);
	position: fixed;
	top: 0;
	left:0;
	width: 100%;
	height: 100vh;
	z-index: 10000;
}

.loader-icon-contaier {
	position: relative;
	background-color:transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.inner-film-box {
	background-color: #ccd4d3;
	height: auto;
	width: 182px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	padding: 5px 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	position: relative;

}
.inner-film-box::before {
	content: '';
	width: 50px;
	height: 50px;
	background-color: black;
	border-radius: 50%;
	position: absolute;
	filter: blur(25px);
	transform: perspective(4cm) rotateX(70deg) rotateY(0);
	bottom: -3rem;


}
.left-right-strip {
	width:36.5px ; 
	height: 146px;
	overflow: hidden;
	margin-top: -5px;
	margin-bottom: -5px;
	transition: all .3s;

}

.strip-dot-container { 
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
	background-color: transparent;
	height: 360px;
	background-color: transparent;
	transform: translateY(-40%); 
	animation-direction: initial;
	animation: straightLine 4.5s linear infinite; 
}

@keyframes straightLine {
	0% {
		transform: translateY(-40%);
	}
	100% {
		transform: translateY(0%);
	}
}

.strip-dot-container span {
	background-color: white;
	width:12px ;
	height: 12px;
	margin:  7px 0;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.film-roll-body {
	width: 109px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: white;
	position: relative;
}

.loader-logo-container {
	width: 60px; 
	height: 55px;
	background-color: transparent;
	display: flex;
	justify-content: space-between;
	animation-duration: 3s;
}

.round-loader-container {
	display: flex;
	width: 100%;
	min-height: 80px; 
	align-items: center;  
	justify-content: center;  
}

.loader-round {  
	width: 50px;
	height: 50px;  
	position: relative;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;  
}

.loader-round img {  
	height: 30px;    
}

.loader-round::before {
	content: '';
	position: absolute;
	top: 0;
	left: -47px;
	/* background-color: red;  */
	margin-left: 3rem;
	width: 50px;
	height: 50px;
	background-image: url('/images/loader-d3-circle-bg.png');
	background-size: 50px;
	transform: rotate(0deg);
	animation: rotateBg 1s linear infinite;
	z-index: -1;
}
 
@keyframes rotateBg {
	0%{
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}