/****************/
/*   TAB MENU   */
/****************/

.arthaTheTab {
	text-align: center; margin: 0px auto;
	width: 850px;
	border-radius: 28px;
	overflow: hidden;
}

.arthaTab {
	width: 850px;
	overflow: hidden;
}

.arthaTabLabel {
	text-align: center; margin: 0px auto;
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--tab-header);	
  	font-family: 'Source Sans Pro', sans-serif;
	font-size: 24px;
	color: var(--tab-header-font-color);
	cursor: pointer;
}

.arthaTabLabel:hover {
	background-color: var(--tab-header-hover);
}

.arthaTabContent {
	font-family: "Maven Pro", sans-serif;
	font-size: 18px;
	color: rgba(0, 0, 0, 1);
	text-align: center; margin: 0px auto;
	max-height: 0px;
	padding: 0px;
	background-color:rgba(102, 51, 51, .1);
}

.arthaTabContentRow {
	text-align: center; margin: 0px auto;
	padding: 0px;
	background-color:rgba(102, 51, 51, .1);
}

.arthaTabContentRow:nth-child(odd){
    background-color:rgba(153, 102, 102, .1);
}

.arthaTabCheckbox {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.arthaTabCheckbox:checked ~ .arthaTabContent {
	max-height: 100000vh;
}

@media screen and (max-width: 950px) and (min-width: 768px) {
	
	.arthaTheTab {
		width: 768px;
		border-radius: 24px;
		font-size: 16px;
	}
	
	.arthaTab {
		width: 768px;
	}
	
	.arthaTabLabel {
		padding: 5px;
		font-size: 22px;
		cursor: pointer;
	}
}

@media screen and (max-width: 767px) {
	
	.arthaTheTab {
		width: 350px;
		border-radius: 24px;
		font-size: 14px;
	}
	
	.arthaTab {
		width: 350px;
	}
	
	.arthaTabLabel {
		padding: 5px;
		font-size: 20px;
		cursor: pointer;
	}
		
}