.flipbox {
	background-color: transparent;
	margin-top: @line-height;
	width: 100%;
	min-height: 335px;
	perspective: 1000px;

	.flip-front {
		opacity: 1;
		transition: opacity .2s;
	}

	&:hover {
		.flip-front {
			opacity: 0;
		}
	}
}

.flipbox-inner {
  	position: relative;
  	width: 100%;
  	min-height: 100%;
  	text-align: center;
  	transition: transform 0.2s;
  	transform-style: preserve-3d;
}

.flipbox:hover .flipbox-inner {
	transform: rotateY(180deg);
}

.flip-front,
.flip-back {
	position: absolute;
	width: 100%;
	min-height: 100%;
	//box-shadow: 0 10px 40px 0 rgba(0,0,0,0.1);
	backface-visibility: hidden;
}

.flip-front {
	background-color: @white-color;
	//color: @primary-color;
}

.flip-back {
	background-color: @primary-color;
	transform: rotateY(180deg);
}

.flip-content {
	margin: 2.4rem;

	.fa {
		font-size: 1.6*4rem;
		margin-bottom: 1.6rem;
	}

	p {
		line-height: 1.9;
	}
}

.flip-title {
	font-size: @font-size*1.2rem;
	margin-bottom: .8rem;
	font-weight: 700;
}
