div.tabs-wrapper {
}
	/*	TABS > BUTTON	*/
	div.tabs-buttons {
		margin: 20px 0;
		background: none;
		display: flex; display: -webkit-flex; 
		flex-flow: row nowrap; -webkit-flex-flow: row nowrap;
		justify-content: center; -webkit-justify-content: center;
		width: 100%;
	}
		div.tabs-buttons .tabs-bt {
		    background-image:-moz-linear-gradient(90deg, #3d68a4, #285896);
		    background-image:-webkit-linear-gradient(90deg, #3d68a4, #285896);
		    background-image:-o-linear-gradient(90deg, #3d68a4, #285896);
		    background-image:linear-gradient(90deg, #3d68a4, #285896);

			font-size: 18px;
			line-height: 1.0;
			font-weight: 500;
			color: #FFF;
			cursor: pointer;
			border-radius: 5px;
			padding: 9px 30px 9px 10px;
			margin: 0 15px 0 0;
		}
		div.tabs-buttons .tabs-bt.is-active {
		    background-image:-moz-linear-gradient(90deg, #b08242, #b6894c);
		    background-image:-webkit-linear-gradient(90deg, #b08242, #b6894c);
		    background-image:-o-linear-gradient(90deg, #b08242, #b6894c);
		    background-image:linear-gradient(90deg, #b08242, #b6894c);
		}
		div.tabs-buttons .tabs-bt:hover {
			text-decoration: none;
		}

/*	TABS > CONTENT	*/
div.tabs-wrapper div.tabs-content {
	display: none;
	padding: 0;
	width: 100%;
}
div.tabs-wrapper div.tabs-content.is-active {
	display: block !important;
}
