/* Set-up */


/* Container box to set the sides relative to */
.cube {
	text-align: center;
    margin: 0 auto;
    height: 177px;
	-webkit-transition: -webkit-transform .33s;
	transition: transform .33s; /* Animate the transform properties */
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d; /* <-NB */
	margin-bottom:0px;
}

/* The two faces of the cube */
.flippety,.flop {
	background:#e46142;
	padding:10px !important;
	border: 1px solid rgba(147, 184, 189, .8);
	height: 152px;
	cursor:pointer;
}

.flippety,.other {
	background:#0042a2;
}

.flippety,.flop p {
	width:100% !important;
	font-size:12px !important;
	text-align:justify !important;
	color:#fff !important;
}

.flippety h1 {
	font-size:26px !important;
	color:#000 !important;
	text-align:center !important;
	margin-top:26px;
}

.flippety h1 > i {
	font-size:36px !important;
}

/* Position the faces */
.flippety {
	background:#fff;
	-webkit-transform: translateZ(50px);
	transform: translateZ(50px);
	opacity:0.8;
}


.flop {
	-webkit-transform: rotateX(-90deg) translateZ(-50px);
	transform: rotateX(-90deg) translateZ(-50px);
}

/* Rotate the cube */
.cube:hover {
	-webkit-transform: rotateX(89deg);
	transform: rotateX(89deg); /* Text bleed at 90º */
}
