#appFrontAD {
	position : fixed;
	width : 100%;
	height : 100%;
	top : 0px;
	left : 0px;
	background : #ffffff;
	z-index : 9999999;
}

#appFrontAD #appFrontLayer {
	height : 100%;
}

#appFrontLayer #appFront-body {
	display : flex;
	justify-content : center;
	align-items : center;
	height : 100%;
}
#appFrontLayer #appFront-footer {
	position : absolute;
	bottom : 0px;
	width : 320px;
	height : 50px;
	left : 50%;
	transform : translateX(-50%);
	margin-bottom : 17px;
	display : flex;
	justify-content : space-between;
	align-items : center;
}
#appFront-footer .custom-checkbox {
	position: relative;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	user-select: none;
	gap: 6px;
	height : 100%;
}

#appFront-footer .custom-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

#appFront-footer .custom-checkbox .checkmark {
	width: 27px;
	height: 27px;
	border: 2px solid #aaa;
	border-radius: 1px;
	display: inline-block;
	box-sizing: border-box;
	transition: all 0.25s ease;
}

#appFront-footer .custom-checkbox input:checked ~ .checkmark {
	background-color: #007bff;
	border-color: #007bff;
	position: relative;
}

#appFront-footer .custom-checkbox input:checked ~ .checkmark::after {
	content: "";
	position: absolute;
	left: 7px;
	top: 0px;
	width: 7px;
	height: 13px;
	border: solid #fff;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}

.appAd-close-btn {
	position: relative;
	width: 32px;
	height: 32px;
	cursor: pointer;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}

.appAd-close-btn::before,
.appAd-close-btn::after {
	content: "";
	position: absolute;
	width: 27px;
	height: 2px;
	background: #999;
	border-radius: 2px;
	box-shadow: 0 0 2px rgba(0,0,0,0.3);
}

.appAd-close-btn::before {
	transform: rotate(45deg);
}

.appAd-close-btn::after {
	transform: rotate(-45deg);
}