@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800,900&display=swap');

*{
	margin:0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;

}


body{
	background: #f0f0f0;
}

.container{
	width: 100%;
	max-width: 700px;
	margin:auto;
	margin-top: 100px;
}

.lbl-menu{
	background: #234;
	
}

.lbl-menu label{
	display:inline-block;
	padding: 20px;
	color:#fff;
	cursor: pointer;
	transition: all 400ms ease;
	
}

.lbl-menu label:hover{
	background: #28435d;

	
}
.content{
	
	position:relative;
}

.content div{
	position: absolute;
	line-height: 1.8;
	transition: all 600ms ease;
	opacity: 0;
	visibility: hidden;
	transform: scale(0.90);
	padding: 30px;
	background: #fff;
	padding-bottom: 40px;
	
}



#radio1,#radio2,#radio3,#radio4,#radio5,#radio6{
	display: none;
}

#radio1:checked ~ .tab1,
#radio2:checked ~ .tab2,
#radio3:checked ~ .tab3,
#radio4:checked ~ .tab4,
#radio5:checked ~ .tab5,
#radio6:checked ~ .tab6
{

	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.content div:after{
	position:absolute;
	content:"";
	border-left: 10px solid
	transparent;
	border-right: 10px solid
	transparent;
	border-top: 10px solid
	transparent;
	border-bottom: 10px solid #fff;
	bottom: 100%;
	left: 28px;
	
}

.content .tab2:after{
	left: 142px;
}

.content .tab3:after{
	left: 308px;
}

.content .tab4:after{
	left: 430px;
}

.content .tab5:after{
	left: 510px;
}

.content .tab6:after{
	left: 590px;
}















