#mobile-hint {
	display: none;
	width: 600px;
    height: 714px;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    transform: translate(0, -50%);
    top: 50%;
    z-index: 99999;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

#mobile-hint .wrapper {
	text-align: center;
}

#mobile-hint .wrapper p {
	color: #fff;
}

#mobile-hint .wrapper img:nth-child(2) {
	margin-top: 105px;
	margin-bottom: 44px;
}

#mobile-hint .wrapper p:nth-child(3) {
	font-size: 40px;
	margin-bottom: 16px;
}

#mobile-hint .wrapper p:nth-child(4) {
	font-size: 26px;
	margin-bottom: 40px;
}

#mobile-hint .wrapper img:nth-child(5) {
	margin-bottom: 40px;
}

#mobile-hint .wrapper p:nth-child(6) {
	font-weight: bold;
	font-family: BarlowBold, sans-serif;
	font-size: 26px;
}

#mobile-hint-mask {
	display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 1920px;
    height: 1080px;
    pointer-events: none;
    z-index: 99998;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.mobile-hint-close {
	position: absolute;
	top: 20px;
	right: 18px;
}

