#s_tournament {
	min-height: 80vh;
	background: linear-gradient(to bottom, #f4cce9, #fff);
	display: flex;
	align-items: center;
	justify-content: center;
}

.mat_desc {
	position: relative;
	z-index: 5;
	border-radius: 20px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.164), 0 0 50px rgba(0, 0, 0, 0.164);
	background-image: linear-gradient(
		to right,
		rgb(250, 112, 154) 0%,
		rgb(254, 225, 64) 100%
	);
}

.team_name {
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
}

.match_act {
	z-index: 5;
}

.match_det .decesion {
	font-size: 18px;
	margin: 0;
	text-transform: uppercase;
}

.match_det .decesion span {
	font-weight: 700;
}

.match_det p {
	font-size: 18px;
	margin: 0;
	text-transform: uppercase;
}

.match_det p span {
	font-weight: 700;
}

.feature {
	z-index: 5 !important;
}

.match_btns {
	margin: 0;
}

.mat_desc .match_type {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-weight: 900;
	color: #ffffff6c;
	filter: brightness(0.6);
	z-index: 0;
	letter-spacing: 3px;
}

@media screen and (max-width: 768px) {
	.team_name {
		font-size: 18px;
	}
	.match_det .decesion {
		font-size: 14px;
	}
	.match_det .decesion span {
		font-size: 14px;
	}
	.match_det p {
		font-size: 14px;
	}
	.match_det p span {
		font-size: 14px;
	}
	.match_btns {
		margin-top: 8px;
	}
}

/* ! create tournament popup section start */

/* ? Add tournament form section start */

.tour_form {
	width: 90%;
	max-width: 800px;
	margin: 0 auto;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	flex-direction: column;
	display: none;
	z-index: 99;
	border-radius: 15px;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.397);
	background: radial-gradient(
		circle at 10% 20%,
		rgba(37, 145, 251, 0.98) 0.1%,
		rgb(0, 7, 128) 99.8%
	);
}

.form-heading {
	font-size: 28px;
	font-weight: 700;
	color: lawngreen;
	margin-top: 20px;
}

.tour_form.show {
	display: flex;
}

.tour_form form {
	width: 100%;
	max-width: 90%;
}

.tour_form .form-group {
	margin-top: 10px;
}

.tour_form label {
	width: 100%;
	color: #fff;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
}

.tour_form input {
	margin: 5px auto;
	width: 75%;
	max-width: 90%;
	display: block;
	height: 40px;
	border-radius: 8px;
	padding: 5px 15px;
	border: none;
	outline: none;
}

.right input {
	height: 40px;
	width: 40px;
}

.tour_form input:focus {
	outline: 2px solid #d61aa1;
}

.right input:focus {
	outline: none;
}

.tournament_btns {
	width: 75%;
	max-width: 90%;
	margin: 30px auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

@media screen and (max-width: 576px) {
	.tour_form label {
		font-size: 20px;
	}
	.form-heading {
		font-size: 25px;
	}
}

/* ! create tournament popup section end */
