.ContentTabs .Navigator {
	z-index: 10;
	position: relative;
}
.ContentTabs .Navigator .Item {
	cursor: pointer;
	border-right: 2px solid #fff;
	position: relative;
	perspective: 800px;
	border-bottom: 2px solid #fff;
}
.ContentTabs .Navigator .Item:after,
.ContentTabs .Navigator .Item:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transition: all 300ms cubic-bezier(0.75, 0, 0.125, 1);
}
.ContentTabs .Navigator .Item:before {
	z-index: 0;
	background: #37434c;
}
.ContentTabs .Navigator .Item:hover:before {
	height: 110%;
	top: -5%;
}
.ContentTabs .Navigator .Item.Active:before {
	height: 120%;
	top: -10%;
}
.ContentTabs .Navigator .Item:after {
	max-height: 0;
	background: #e9725c;
	border-radius: 0 0 50% 50%;
	transition: max-height 300ms cubic-bezier(0.75, 0, 0.125, 1), border-radius 500ms 50ms cubic-bezier(0.75, 0, 0.125, 1);
}
.ContentTabs .Navigator .Item.Active:after {
	border-radius: 0 0 0% 0%;
	max-height: 120%;
	height: 120%;
	top: -10%;
}
.ContentTabs .Navigator .Item span {
	display: block;
	position: relative;
	z-index: 10;
	padding: 12px 35px;
	color: #fff;
}
.ContentTabs .Navigator .Item.Active span {
	color: #fff !important;
}
.ContentTabs .Navigator .Item span:after {
	content: '';
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 16px 12.5px 0 12.5px;
	border-color:  #e9725c transparent transparent transparent;
	position: absolute;
	top: 99%;
	left: 50%;
	transform: translate3d(-50%,1px, 1px) rotate3d(1,0,0,-115deg);
	transform-origin: 50% 0;
	opacity: 0;
	transition: all 250ms ;
}
.ContentTabs .Navigator .Item.Active span:after {
	transform: translate3d(-50%,1px, 1px) rotate3d(1,0,0,0);
	opacity: 1;
	transition: all 250ms 300ms ;
}
.ContentTabs .Intro {
	z-index: 1;
	position: relative;
	padding-bottom: 1rem;
}
@media all and (min-width: 900px) {
	.ContentTabs .Intro .PixToZoom {
		width: 48%;
	}
	.ContentTabs .Intro .PixToZoom + .TabContents {
		width: 48%;
	}
}
.ContentTabs .ProductBody {
	background: #e7eaef;
	padding: 2rem 0;
}
.ContentTabs .TabContents {
	width: 100%;
}
.ContentTabs .TabContents .Title {
	color: #e9725c;
}
.ContentTabs .TabContents .Title {
	font-size: 30px;
	line-height: 120%;
	margin-bottom: 10px;
}
.ContentTabs .TabContents .Item {
	left: 0;
	top: 0;
	width: 100%;
	opacity: 1;
	transition: opacity 250ms;
	z-index: 10;
	padding: 1rem;
	box-sizing: border-box;
}
.ContentTabs .TabContents .Item.Hide {
	opacity: 0;
	z-index: -1;
}