@charset "UTF-8";

.scrollLock { overflow: hidden !important; }

.touchBlock {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top:0;
	left:0;
	background-color: black;
	opacity: 0.5;
	z-index: 100000;
}

.imageLoaderWrap {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 150px;
    z-index: 101;
}
.imageLoader {
    text-align: center;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.loader_img {
    width: 60px;
    height: 60px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 100001;
}

.loader_ment {
    color: whitesmoke;
    position: fixed;
    left: 50%;
    top: 56%;
    transform: translate(-50%, -50%);
    z-index: 100001;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}