/* Page container */
@media screen and (max-width: 1200px) {
	.woocommerce-page main#content {
		max-width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* Page Banner */
.page-banner {
	height: 66px;
	background-color: rgb(129, 20, 39) !important;
	background-image: none;
	background-size: cover;
	background-position: center center;
	width: 100%;
	position: absolute;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-banner-links {
	list-style-type: none;
	display: flex;
	gap: 60px;
	padding: 0;
}

.page-banner-links li,
.page-banner-links li a {
	color: #fff;
	font-size: 22px;
	font-family: "Lato", Arial, Helvetica, sans-serif;
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 300;
	position: relative;
}

@media screen and (min-width: 768px) {
	.page-banner-links li:not(:last-child)::after {
		content: "";
		width: 24px;
		height: 24px;
		background-image: url("../../icons/right-arrow.svg");
		background-size: contain;
		position: absolute;
		right: -40px;
		top: 50%;
		transform: translateY(-50%);
	}
}

.page-banner-links li.active {
	border-bottom: 2px solid #86ab03;
}

.page-banner-links li.active a:hover {
	opacity: 1 !important;
	color: #fff !important;
}

.page-banner-links .not-active {
	opacity: 0.7;
}

.page-banner-links .not-active:hover a {
	opacity: 1 !important;
	color: #fff !important;
}

@media screen and (max-width: 768px) {
	.not-active {
		display: none;
	}
}
