#lightenwrapper {
	min-height: 100vh;
    display: flex;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 50;
	opacity: 0.7;
	background-color: #CADCEB;
}

.container-loading {
	min-height: 100vh;
    display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 100;
	cursor: default;
}

.loading-toast {
	background-color: #ffffff;
	background-image: url('images/pocketoption-loading.webp');
	background-repeat: no-repeat;
	background-size: contain;
	border: 3px solid #ffffff;
	box-shadow: 0 0 0 1px #E6E9ED;
	border-radius: 8px;
	max-width: 95%;
	width: 640px;
	height: 468px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	animation: fadeSlideUp 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-text {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px;
	font-weight: 700;
	letter-spacing: -0.01em;
	flex-direction: column;
}


.loading-message {
	font-size: 2.4rem;
	line-height: 1.3;
	color: #12CD1D;
	text-shadow: 0 1px 0 rgba(255,255,255,0.5);
	font-weight: 700;
}


.dots-animation {
	display: inline-flex;
	gap: 8px;
	align-items: flex-end;
}


.dot {
	display: inline-block;
	width: 38px;
	height: 38px;
	
}

.dot::before {
	content: '\25A9';
	font-size: 54px;
	color: #565D6E;
	animation: stepGreen 7s infinite;
}

.dot:nth-child(1) {
	margin-left: -4px;
}

.dot:nth-child(1)::before { animation-delay: 0s; }
.dot:nth-child(2)::before {	animation-delay: 0.5s; }
.dot:nth-child(3)::before {	animation-delay: 1s; }
.dot:nth-child(4)::before {	animation-delay: 1.5s; }
.dot:nth-child(5)::before {	animation-delay: 2s; }
.dot:nth-child(6)::before {	animation-delay: 2.5s; }
.dot:nth-child(7)::before {	animation-delay: 3s; }

@keyframes stepGreen {
	0%, 51%, 100% {
		color: #565D6E;
	}
	0.1%, 50% {
		color: #12CD1D;
	}
}

@keyframes fadeSlideUp {
	0% {
		opacity: 0;
		transform: translateY(30px) scale(0.96);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 450px) {
	.loading-message {
		font-size: 1.7rem;
	}
	.dot {
		width: 31px;
		height: 31px;
	}
	.dots-animation {
		gap: 2px;
	}
	.dot::before {
		font-size: 40px;
	}
}
