#tabs {
	width: 100%;
	height: 100%;
	display: none;
	z-index: 2;
}

.tabs-frame {
	border-style: solid;
	border-width: 10px;
	border-color: rgba(243,134,63,0.4);
	border-radius: 20px;
	background-color: rgba(39,36,35,1);
	color: white;
	padding: 100px;
	font-size: 18px;
	line-height: 200%;
	transition: height 0.5s, opacity 0.5s;
}

.tabs-frame-inactive {
	width: 900px;
	height: 100px;
	opacity: 0;
}

.tabs-frame-active
{
	width: 900px;
	height: 100%;
	border-style: solid;
	opacity: 1;
	
}