.cp-tab__title {
	text-align: center;
}
.cp-tab__buttons {
	display: flex;
	align-content: flex-start;
}
.cp-tab__buttons > button {
	flex: 1;
	max-height: 50px;
	margin: .5rem;
	padding: 1rem;
	font-size: 1rem;
	font-family: 'Verdana', sans-serif;
	color: #333;
	background-color: #fff;
	border: none;
	border-radius: .35rem;
	box-shadow: 0 2px 5px #ccc;
}
.cp-tab__buttons > button:hover {
	color: #fff;
	background-color: #f26722;
}

@media screen and (max-width: 1500px) {
	.cp-tab__buttons {
		flex-wrap: wrap;
	}
	.cp-tab__buttons > button {
		flex: 1 0 30%;
	}
}

@media screen and (max-width: 767px) {
	.cp-tab__buttons > button {
		flex: 1 0 45%;
	}
}

@media screen and (max-width: 500px) {
	.cp-tab__buttons {
		flex-direction: column;
		align-content: stretch;
	}
	.cp-tab__buttons > button {
		flex: 1;
		font-size: 1.2rem;
	}
}