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-button {
			background: #fafafa;
			text-transform: uppercase;
			font-size: 13px;
			line-height: 1.0;
			color: #444442;
			cursor: pointer;
			display: flex; display: -webkit-flex; 
			flex-flow: row wrap; -webkit-flex-flow: row wrap;
			margin: 0 10px;
			text-align: center;
			width: 230px;
			font-weight: bold;
			height: 46px;
			border-radius: 5px;
		}
		div.tabs-buttons .tabs-button.active {
			color: #ed1a3b;
		}
		div.tabs-buttons .tabs-button:hover {
			text-decoration: none;
		}

		div.tabs-buttons .tabs-button span {
			margin: auto;
		}

/*	TABS > CONTENT	*/
div.tabs-wrapper div.tabs-content {
	display: none;
	padding: 0;
}
div.tabs-wrapper div.tabs-content-active {
	display: block !important;
}

/*	TABS > CONTENT > SECTION	*/
div.tabs-section {
}


/* TABS > W LINKS 	*/
div.tabslinks-wrapper {
	display: flex; display: -webkit-flex; 
	flex-flow: row nowrap; -webkit-flex-flow: row nowrap;
	justify-content: space-around; -webkit-justify-content: space-around;
}
	.tabs-link {
		position: relative;
		width: 220px;
	}
		.tabs-link.hsmall {
			height: 125px;
			background: url('../../_img/tabs/small-out.png') no-repeat top left;
		}
		.tabs-link.hsmall.is-active {
			background: url('../../_img/tabs/small-in.png') no-repeat top left;
		}

		.tabs-link.hbig {
			height: 163px;
			background: url('../../_img/tabs/big-out.png') no-repeat top left;
		}
		.tabs-link.hbig.is-active {
			background: url('../../_img/tabs/big-in.png') no-repeat top left;
		}
		.tabs-link.hbig.gold {
			background: url('../../_img/tabs/big-gold-out.png') no-repeat top left;
		}
		.tabs-link.hbig.is-active.gold {
			background: url('../../_img/tabs/big-gold-in.png') no-repeat top left;
		}

		.tabs-link .icon-top {
			position: absolute;
			top: 0px;
			left: 12px;
			height: 35px;
			width: 35px;
		}
			.tabs-link .icon-top img {
				height: 35px;
				width: auto;
			}
		
		
		.tabs-link .label-wrapper {
			font-size: 20px;
			color: #FFF;
			line-height: 0.9;
			text-transform: uppercase;
			font-family: 'DIN Black'; font-weight: bold; font-style: italic;
			display: flex; display: -webkit-flex; 
			flex-flow: row nowrap; -webkit-flex-flow: row nowrap;
			justify-content: flex-start; -webkit-justify-content: flex-start;
		}
			.tabs-link .label-wrapper span {
				margin: auto 0;
			}
			.tabs-link.hsmall .label-wrapper {
				position: absolute;
				top: 40px;
				left: 16px;
				height: 45px;
				width: 190px;
			}
			.tabs-link.hbig .label-wrapper {
				position: absolute;
				top: 39px;
				left: 18px;
				height: 78px;
				width: 190px;
			}

		.tabs-link .more-wrapper {
			font-size: 10px;
			font-family: 'DIN Black'; font-weight: bold; font-style: italic;
			line-height: 1.0;
			text-transform: uppercase;
			color: #85c4eb;
			display: flex; display: -webkit-flex; 
			flex-flow: row nowrap; -webkit-flex-flow: row nowrap;
			justify-content: flex-start; -webkit-justify-content: flex-start;
		}
			.tabs-link .more-wrapper span {
				margin: auto 0;
			}
			.tabs-link.hsmall .more-wrapper {
				position: absolute;
				bottom: 21px;
				right: 8px;
				height: 24px;
				width: 58px;
			}
			.tabs-link.hbig .more-wrapper {
				position: absolute;
				bottom: 24px;
				right: 8px;
				height: 24px;
				width: 58px;
			}

		.tabs-link.is-active .more-wrapper {
			color: #ca521f;
		}
		.tabs-link.gold .more-wrapper {
			color: #f2aa05;
		}

