.tp-flipbox-scene {
    perspective: 1000px;
    width: 100%;
    height: 100%;
    overflow: visible
}

.tp-flipbox-card {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 1s;
    transform-style: preserve-3d;
    overflow: visible
}

.tp-flipbox-face {
    position: absolute;
    height: 100%;
    width: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden
}

.tp-flipbox-face-front {
    z-index: 2;
    transform: rotateY(0deg) translateZ(1px)
}

.tp-flipbox-face-back {
    transform: rotateY(180deg) translateZ(1px)
}