/*------------------------
  TABS PRODUCT PAGE
------------------------*/


#read-more-text h3 {
	font-size: 18px;
}

ul.tabs {
	margin: 15px 0;
	border-top: 0px!important;
}

ul.tabs li.tab {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	justify-content: space-between;
	cursor: pointer;
	line-height: 40px;
	flex-grow: 1;
	cursor: pointer;
	text-transform: uppercase;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	font-size: 18px;
	margin-bottom: 0;
	font-weight: 500;
	font-family: 'Bebas Neue', sans-serif;
	color: var(--lowlight-color1);
}


ul.tabs li.tab.active {
	background: var(--base-background1);
	color: inherit;
	margin-bottom: 0;
}

ul.tabs li.tabContent {
	order: 10;
	width: 100%;
	float: left;
	display: none;
	padding: 1rem 0;
}

ul.tabs li.tabContent.active {
	display: block;
}

#Produktinfo {
	display: block !important;
	visibility: visible !important;
}

.tabs .tab {
	font-size: 12px;
	margin-bottom: 2em;
}

@media screen and (max-width: 850px) {

	/* horisontal tabs */
	ul.tabs li.tab {
		width: 100%;
		line-height: 40px;
		text-align: left;
		padding:0 0 0 10px;
		margin-top: 10px;
	}

	ul.tabs li.tab:after {
		font-family: "Font Awesome 5 Pro";
		content: "\f078";
		display: inline-block;
		float: right;
		transition: all 0.1s ease;
		width: 40px;
		height: 40px;
		text-align: center;
	}

	ul.tabs li.tab.active:after {
		content: "\f077";
	}

	ul.tabs li.tabContent {
		order: unset;
		border: 0px;
		padding: 10px;
	}
}