@charset "utf-8";
/* CSS Document */

a {
	text-decoration: none;
	transition: all 0.2s linear 0s;
}

.page_tabs {
	width: 100%;
	margin: 0;
	padding-top: 0;
	margin-bottom: 20px;
}

.page_tabs ul {
	display: flex;
	/* grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr)); */
	gap: 0;
	justify-content: space-evenly;
	width: 100%;
	margin: 0px;
}

.page_tabs ul li {
	margin: 0px;
	width: 100%;
	border-bottom: 1px solid #A0A0A0;
	padding: 0px;
	list-style: none;
}

.page_tabs ul li a {
	padding: 10px 5px;
	text-align: center;
	background: #fff;
	font-weight: bold;
	display: block;
	color: #000;
	text-transform: uppercase;
	border-left: 1px solid rgb(255, 255, 255, 0.3);
	border-right: 1px solid rgb(255, 255, 255, 0.3);
	cursor: pointer;
	font-size: 18px;
	white-space: nowrap;
	font-weight: 100;
}

.page_tabs ul li a:hover {
	background: #A0A0A0;
	color: #ffffff;
}

.page_tabs ul li a.active {
	background: #A0A0A0;
	color: #ffffff;
	font-weight: 100;
}

.entry-content-wrapper div li {
	text-indent: 0;
}

@media only screen and (max-width:768px) {
	.page_tabs ul li a {
		font-size: 13px;
	}
}

@media only screen and (max-width:420px) {
	.page_tabs ul {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(4rem, 1fr));
		justify-content: unset;
	}

	.page_tabs ul li a {
		padding: 5px 0px;
		font-size: 10px;
	}
}