.status-container {
	margin-bottom: 20px;
	display: flex;
	width: 100%;
	/* background-color: #F8FAFC; */
	border-bottom: 1px solid #e3e3e3;
	gap: 2px;
}

.status-container .item {
	font-size: 20px;
	letter-spacing: 1px;
	width: calc(33% - 0px);
	text-align: center;
	padding: 15px 10px;
	border-radius: 5px;
	color: #b0b0b0;
}

.status-container .item.focus {
	color: #fff;
	background-color: #185e99;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 5px;
}

.status-container .item:hover {
	color: #fff;
	background-color: #1e78c2;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 5px;
	cursor: pointer;
}

.status-container .item:nth-child(2) {
	position: relative;
}

.status-container .item:nth-child(2)::before {
	content: "";
	position: absolute;
	width: 1px;
	height: calc(100% - 10px);
	background-color: #e3e3e3;
	z-index: 1;
	top: 50%;
	transform: translateY(-50%);
	left: -1px;
}

.status-container .item:nth-child(2)::after {
	content: "";
	position: absolute;
	width: 1px;
	height: calc(100% - 10px);
	background-color: #e3e3e3;
	z-index: 1;
	top: 50%;
	transform: translateY(-50%);
	right: -1px;
}

@media (max-width: 400px) {
	.status-container {
		border-bottom: none;
		border-radius: 10px;
		box-shadow: #e3e3e3 0px 0px 10px;
	}

	.status-container .item {
		font-size: 16px;
	}

	.status-container .item:nth-child(2)::before,
	.status-container .item:nth-child(2)::after {
		background-color: transparent;
	}
}

.match-status {
	color: #646464;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 2px;
	position: relative;
	padding-left: 10px;
	margin: 0px 10px;
}

.match-status::before {
	content: "";
	position: absolute;
	width: 10px;
	height: 100%;
	left: -10px;
}

.match-status.blue::before {
	background-color: #185e99;
}

.match-status.orange::before {
	background-color: #ff8d28;
}

.match-status.gray::before {
	background-color: #6b7280;
}

.itemcontainer {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 20px;
}

.match-item {
	width: calc(33.3% - 15px);
	box-shadow: #ccc 0px 0px 5px;
	border-radius: 5px;
	overflow: hidden;
}

.match-item .mainimg {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 8 / 5;
}

.match-item .lablearea {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 10px;
}

.match-item .lablearea .lable {
	background-color: #6b7280;
	display: flex;
	border-radius: 5px;
	padding: 3px 8px;
	color: #fff;
	align-items: center;
}

.match-item .lablearea .lable.location {
	background-color: #80a8c6;
}

.match-item .lablearea .lable.type {
	background-color: #73b691;
}

.match-item .lablearea .lable span {
	font-size: 12px;
	margin-left: 5px;
	text-wrap: nowrap;
	letter-spacing: 1px;
}

.match-item .lablearea .lable img {
	height: 12px;
	width: 12px;
	object-fit: contain;
}

.match-item .name {
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	color: #185e99;
	padding: 10px 5px;
	min-height: 50px;
}

.match-item .btnarea {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding-bottom: 20px;
	padding: 10px;
}

.match-item .btn {
	background-color: #185e99;
	color: #fff;
	padding: 10px;
	border-radius: 5px;
	width: calc(50% - 10px);
	text-align: center;
	letter-spacing: 1px;
	font-size: 14px;
}

.match-item .btn:hover {
	cursor: pointer;
	background-color: #2270b1;
}

.match-item .btn:active {
	cursor: pointer;
	background-color: #13558a;
}

@media (max-width: 900px) {
	.match-item {
		width: calc(50% - 10px);
	}
}

@media (max-width: 600px) {
	.match-item {
		width: calc(100% - 0px);
	}
}

.showtypearea {
	margin-left: auto;
	display: flex;
	border-radius: 10px;
	border: #c2c2c2 1px solid;
	width: calc(100% - 10px);
	max-width: 250px;
	min-width: 200px;
	padding: 5px;
	gap: 10px;
}

.showtypearea .type {
	padding: 15px;
	color: #686869;
	font-size: 14px;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc(50% - 10px);
}

.showtypearea .type img {
	margin-right: 5px;
}

.showtypearea .type:hover {
	background-color: rgb(138, 138, 138);
	border-radius: 8px;
	color: white;
	cursor: pointer;
}

.showtypearea .type#type-img:hover img {
	content: url("./img/img-white.png");
}

.showtypearea .type#type-list:hover img {
	content: url("./img/list-white.png");
}

.showtypearea .type.focus {
	background-color: #686869;
	border-radius: 8px;
	color: white;
}

.showtypearea .type.focus#type-img img {
	content: url("./img/img-white.png");
}

.showtypearea .type.focus#type-list img {
	content: url("./img/list-white.png");
}

.nodata{
	width:calc(100% - 20px);
	background-color: #eaeaea;
	color:#555;
	padding:10px;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 1px;
	text-align: center;
}