body.overflow-none {
	/*overflow: hidden;*/
}
#stk-loader {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 25px;
	z-index: 9999999;
	background: #F4F3E7;
	transition: .3s all ease;
}
#stk-loader.loaded {
	opacity: 0;
	visibility: hidden;
	z-index: -1;
}
.stk-wheel {
	width: 80px;
	height: 80px;
		
	border: 2px solid #C6C5C2;
	border-top:3px solid #8D639C;
	border-radius: 100%;
	
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right: 0;
	margin: auto;
	
	animation: spin 1s infinite linear;
	
}
#stk-per {
	color:#8D639C; margin-left:6px;
}
@keyframes spin {
    from{
        transform: rotate(0deg);
    }to{
        transform: rotate(360deg);
    }
}