.age-modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 99999999;
	/* Sit on top */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
	background-color: rgb(0, 0, 0);
	/* Fallback color */
	background-color: rgba(0, 0, 0, 0.4);
	/* Black w/ opacity */
	display: flex;
	align-items: center;
	/* Align vertical */
	justify-content: center;
	/* Align horizontal */
}

/* Modal Content/Box */
.age-modal-content {
	background-color: #fefefe;
	padding: 10px;
	border: 1px solid #888;
	width: 70%;
	/* Width to 70% of viewport width */
	border-radius: 15px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	/* Add some shadow */
	text-align: center;
}

/* The Close Button */
.age-modal-close {
	color: #aaa;
	float: right;
	font-size: 30px;
	font-weight: bold;
}

.age-modal-close:hover,
.age-modal-close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

/* Warning Message styles */
.age-modal-warning-message {
	color: #ff0000;
	/* Red color for the warning message */
	margin: 10px 0;
	font-size: 18px;
	/* Adjust the font size as needed */
	font-weight: bold;
}

/* Sub-message styles */
.age-modal-sub-message {
	color: #ff0000;
	/* Black color for the sub message */
	margin-bottom: 15px;
	font-size: 15px;
	/* Adjust the font size as needed */
	margin-left: 5px;
	margin-right: 5px;
}

/* Button styles */
.age-modal-button {
	display: block;
	/* Make buttons stack vertically */
	width: 80%;
	/* Adjust the width as needed */
	margin: 8px auto;
	/* Center the buttons with automatic margin */
	/* Adjust padding as needed for size */
	border: none;
	color: white;
	background-color: #f14e8c;
	/* Pink color */
	cursor: pointer;
	border-radius: 50px;
	/* Fully rounded corners for pill shape */
	font-size: 14px;
	font-weight: bold;
	/* Adjust the font size as needed */
	transition: background-color 0.3s;
	/* Smooth color transition */
	outline: none;
	line-height: normal;
	padding: 5px 0; 
}

.age-modal-button:not(.gray-button):active {
	background-color: #757575;
	/* Change color to gray when clicked */
}

/* Gray button style */
.age-modal-gray-button {
	background-color: #757575;
	/* Gray color */
}

/* Gray button style */
.gray-button {
	background-color: #757575;
	/* Gray color */
}

/* Set a style for all buttons */
button:focus {
	outline: none;
}

.loader-modle {
	width: 100%;
	height: 100%;
	z-index: 99999999999;
	background: rgba(0, 0, 0, 0.3);
	position: fixed;
	top: 0;
	bottom: 0;
	align-items: center;
	display: flex;
	justify-content: center;
}

.loder-model-min {
	position: relative;
	background: #000000;
	border-radius: 20px;
	padding: 20px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader,
.loader:before,
.loader:after {
	background: #FFF;
	/*
        * load1：执行的动画名
        * 1s：执行一秒
        * infinite：执行无限次
        * ease-in-out：动画以低速开始和结束
        */
	animation: load1 1s infinite ease-in-out;
	width: 1em;
	height: 2.5em;
}

.loader:before,
.loader:after {
	position: absolute;
	top: 0;
	content: '';
}

.loader:before {
	left: -1.5em;
}

.loader {
	text-indent: -9999em;
	/*margin: 40% auto;*/
	position: relative;
	font-size: 11px;
	/* 延时0.16s */
	animation-delay: 0.16s;

	align-items: center;
	justify-content: center;
	/*top: 50%;*/
	/*left: 50%;*/
}

.loader:after {
	left: 1.5em;
	/* 延时0.32s */
	animation-delay: 0.32s;
}

@keyframes load1 {

	0%,
	80%,
	100% {
		box-shadow: 0 0 #FFF;
		height: 2.5em;
	}

	40% {
		/* 实现上部拉伸 */
		box-shadow: 0 -1.5em #ffffff;
		/* 实现下部拉伸 */
		height: 3em;
	}
}