@media screen and (max-width: 490px) {
	.wrap {
		padding: 0px 0;
		height: 100%;
	}

	.wrap-list {
		padding: 5px 2% 20px 2%;
		height: 100%;
	}

	.box-content {
		padding: 0px 0;
	}

	.topBox>div {
		height: 446px;
	}
}

@media screen and (min-width: 490px) {
	.wrap {
		height: 100%;
	}

	.wrap-list {
		padding: 2px 2% 20px 2%;
		height: 100%;
	}

	.box-content {
		padding: 0px 0;
	}

	.topBox {
		display: flex;
		gap: 1rem;
		flex-flow: row wrap;
	}

	.topBox>div {
		flex: 1;
		max-height: 446px;
		min-width: 432px;
	}
}

.Page {
	position: relative;
	width: 100%;
	min-height: 100vh;
}

.Page .adsolt1 {
	width: 100%;
}

.Page .wrap {
	position: relative;
	z-index: 1000;
	padding-top: 0px;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background-color: #313001;
}


.loading {
	width: 40px;
	height: 40px;
	position: absolute;
	z-index: 2000;
	left: 48%;
	top: 10%;
	text-align: center;

}

.loading .dot1 {
	width: 60%;
	height: 60%;
	display: inline-block;
	position: absolute;
	top: 0;
	border-radius: 100%;
	background-color: #888034;
}

.loading .dot2 {
	background-color: #888034;
	width: 60%;
	height: 60%;
	display: inline-block;
	position: absolute;
	top: auto;
	bottom: 0;
	border-radius: 100%;
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}


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

@keyframes sk-bounce {

	0%,
	100% {
		transform: scale(0);
		-webkit-transform: scale(0);
	}

	50% {
		transform: scale(1);
		-webkit-transform: scale(1);
	}
}

.loading {
	-webkit-animation: sk-rotate 2s infinite linear;
	animation: sk-rotate 2s infinite linear;

}

.loading .dot1 {
	animation: sk-bounce 2s infinite ease-in-out;
}

.loading .dot2 {
	animation: sk-bounce 2s infinite ease-in-out;
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}

.all {
	position: fixed;
	padding: 13px 29px;
	bottom: 15%;
	right: 5%;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	font-size: 20px;
	font-weight: 500;
	background-color: #35fdff;
	box-shadow: rgb(30 17 52 / 65%) 0 0 12px 2px;
	color: #005065;
	cursor: pointer;
}
