.explore {
	width: 180px;
	line-height: 40px;
	margin: 20px auto;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	color: #000;
	background-color: #ffffff;
	border: 2px solid #fff;
	box-shadow: 4px 4px 20px 0 rgb(10 148 228 / 50%);
	border-radius: 10px;
	position: relative;
}

.end {
	background-color: transparent;
	color: #000;
	font-size: 20px;
	text-align: center;
	line-height: 40px;
	box-shadow: 0px 0px 0px transparent;
	border: none;
}

.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 999;
	display: flex;
	justify-content: center;
	border: 2px solid #000;
	align-items: center;
	display: none;
}

.loading::after {
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 4px solid #fff;
	border-top-color: #000;
	animation: loading 1s linear infinite;
}

@keyframes loading {
	to {
		transform: rotate(360deg);
	}
}

.list1 {
	/* display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	grid-gap: 20px;
	grid-auto-rows: minmax(100px, 100px);
	grid-auto-flow: dense; */
	width: 95%;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin: 20px auto;
}


.cl-box:nth-of-type(9n) {
	margin-right: 0px;
}

.cl-box img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}



.cl-box:hover {
	transform: scale(1.1);
	box-shadow: 0 12px 12px 0 rgb(0 0 0 / 20%), red 0 0 3px, red 0 0 25px;
}

.cl-box:hover .ct-text {
	transform: translateY(-70px);
}

.cl-box2 {
	grid-column-end: span 2;
	grid-row-end: span 2;
}

.box {
	text-align: left;
	padding: 6px;
	background: rgba(255, 255, 255, 0.7);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 10px;
	border: 1px solid #bab6c6;
	margin: 10px 50px 30px;
	color: #002b50;
	line-height: 1.5;
}

.game-info-head {

	padding: 20px;
}

.game-info-head .title_box {
	padding-bottom: 5px;
	text-transform: capitalize;
	border-bottom: 1px solid #cac6c6;
	margin-bottom: 10px;
	text-align: left;
	color: #0b2e62;
}

h1,
h2,
h3 {
	font-size: 1.5em;
	color: var(--text-blue);
}

.type-box {
	width: 95%;
	margin: 40px auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}


.t-box {
	width: 13%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 10px;
	height: auto;
	margin-bottom: 20px;
	transition: all linear 0.2s;
	background-image: linear-gradient(to right, #2b5876 0, #4e4376 51%, #2b5876 100%) !important;
	color: #fff !important;
	height: 60px !important;

}

.t-box img {
	width: 65px;
	height: 60px;
	border-radius: 10px;
}

.t-text {
	width: 45%;
	padding: 0 5%;
	font-size: 15px;
	/* font-weight: 600; */
	text-transform: capitalize;
	color: #fff;
}

@media (max-width:1000px) {
	.box {
		width: 90%;
		margin: 20px auto;
	}

	.main {
		width: 95%;
		height: auto;
		padding: 10px 0;
		margin: auto;
	}

	.m-title {
		width: 100%;
		margin: 10px 0;
		display: flex;
		justify-content: center;

	}

	.mt-left {
		font-size: 25px;
		color: #635480;
		text-transform: uppercase;
	}

	.list1 {

		display: grid;
		grid-gap: 20px;
		grid-auto-flow: dense;
		grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
		grid-auto-rows: minmax(80px, 80px);
	}

	.cl-box {
		position: relative;
		overflow: hidden;
		display: block;
		box-sizing: border-box;
		box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .24);
		border-radius: 10px;
		transition: all linear 0.2s;
	
	}

	.type-box {
		display: none;

	}


	.t-box {
		width: 40%;
	}

	.t-text {
		font-size: 15px;
		font-weight: 400;
	}

	.ct-text {
		width: 100%;
		text-align: center;
		padding: 25px 0;
		position: absolute;
		transition: all linear 0.3s;
		transform: translateY(10px);
		color: #fff;
		font-size: 16px;
		text-transform: capitalize;
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, #000 100%);
	}



}

@media (min-width:1000px) {
	.main {
		width: 96%;
		height: auto;
		margin: auto;
	}

	.m-title {
		width: 100%;
		margin: 20px 0;
		display: flex;
		justify-content: center;
	}

	.mt-left {
		font-size: 35px;
		line-height: 2;
		color: #635480;
		text-transform: uppercase;
	}

	.t-box:hover {
		transform: translateY(-10px);
	}

	.cl-box {
		width: 10%;
		position: relative;
		overflow: hidden;
		display: block;
		box-sizing: border-box;
		box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .24);
		border-radius: 10px;
		transition: all linear 0.2s;
		margin: 0 20px 20px 0;
	}

	.ct-text {
		width: 100%;
		text-align: center;
		padding: 25px 0;
		position: absolute;
		transition: all linear 0.3s;
		transform: translateY(10px);
		color: #fff;
		font-size: 16px;
		text-transform: capitalize;
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, #000 100%);
	}

}