/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 17/04/2017, 06:12:24 PM
    Author     : OLA
*/
.flip {
  -webkit-perspective: 800;   
          perspective: 800;
        position: relative;
        text-align: center;
}
.flip .card.flipped {
  -webkit-transform: rotatey(-180deg);
          transform: rotatey(-180deg);
}
.flip .card {
    width: 270px;
    height: 178px; 
    transform-style: preserve-3d;
    transition: 0.5s;
    background-color: #fff;
    -webkit-backface-visibility: hidden;
    -webkit-transition: .5s linear;
    -webkit-transform-style: preserve-3d;
   
}
.flip .card .face {
    -webkit-backface-visibility: hidden ;
    backface-visibility: hidden ;
    z-index: 2;
    background-color: #fff;
}
.flip .card .front {
   position: absolute;
   width: 270px;
   z-index: 1;
}
.flip .card .img {
   position: relaitve;
   width: 270px;
   height: 178px;
   z-index: 1;
   border: 2px solid #000;
}
.flip .card .back {
    padding-top: 10%;
    -webkit-transform: rotatey(-180deg);
    transform: rotatey(-180deg);
}
.inner{
    margin: 15px !important;
}
  
.card .name {
    font-family: 'Arima Madurai', cursive;
    font-size: 22px;
    line-height: 28px;
    margin: 10px 0 0;
    text-align: center;
    text-transform: capitalize;
}

.card .content .main {
    min-height: 160px;
}

.card .user {
    border-radius: 50%;
    display: block;
    height: 120px;
    margin: -55px auto 0;
    overflow: hidden;
    width: 120px;
}
.back {
    width: 100%;
    height: 140%;
}