body {
	background: beige;
}

.wrapper{
	min-height: 100vh;
	box-sizing: border-box;
	padding-top: 1%;
	font-family: montserrat;
	line-height: 1.5;
	max-width: 900px;
	margin: 0 auto;

}

.box {
	display: flex;
	flex-wrap: wrap;
}

.box label{
	background: #ec6633;
	font-weight: bold;
	text-align: center;
	box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.5);
	order: 1;
	display: block;
	padding: 16px 12px;
	margin-right: 4px;
	cursor: pointer;
}

.box .content{
	display: none;
	padding: 30px;
	background: #fff;
	box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.5);
	order: 99;
	flex-grow: 1;
	width: 100%;

}

.box input[type="radio"]{
	display: none;
}

.box input[type="radio"]:checked + label{
	background: #fff;
}

.box input[type="radio"]:checked + label + .content{
	display: block;
}

@media(max-width: 600px) {
	.box .content,
	.box label{
		width: 100%;
		margin-right: 0;
		margin-top: 4px;
	}
	
}