/*** Flip effect ***/
.tck-flip-module {
z-index: auto;
overflow: visible;
background: none;
perspective: 1000px;
position: relative;

}

.tck-flip-module .tck-module-text {
box-sizing: border-box;
z-index: 1;
-webkit-backface-visibility: hidden; /* Safari */
backface-visibility: hidden;
transform: rotateY(180deg);
top:0;
/*! overflow: visible; */
}

.tck-flip-module .tck-module {
transform-style: preserve-3d;
transition: transform 0.8s;
position: relative;
width: 100%;
height: 100%;
text-align: center;
overflow: visible;
}

.tck-flip-module h3 {
opacity: 1;
z-index: 2;
/* for firefox 31 */
transform: rotateY(0deg);
position:absolute;
}

.tck-flip-module h3,
.tck-flip-module .tck-module-text {
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden; /* Safari */
backface-visibility: hidden;
}

.tck-flip-module:hover .tck-module {
transform: rotateY(-180deg);
}
