.navtabs-pills #navtabs {
	width: 100%;
	height: auto;
	list-style: none;
    display: flex;
	gap: 0.75rem;
    padding: 0;
	min-height: auto;
    margin: 0;
	margin-bottom: 1rem;
}

.navtabs-pills #navtabs .list_item_wrap {
	min-height: auto;
    flex: 1;
}

.navtabs-pills #navtabs .list_item_wrap::before {
	content: none;
}

.navtabs-pills #navtabs .list_item {
	width: 100%;
	border: 1px solid var(--green-700);
	border-radius: 999px;
	background: #fff;
	color: var(--green-700);
	padding: .5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.navtabs-pills #navtabs .list_item_wrap.active .list_item {
	background: var(--green-700);
	color: #fff;
	box-shadow: 0 14px 28px rgba(95, 74, 28, 0.22);
}

.navtabs-pills__content {
	position: relative;
}
