.btn:hover,
.btn:focus,
.btn:active{
    outline: 0 !important;
}
/* entire container, keeps perspective */
.cardAbout-container {
	-webkit-perspective: 800px;
    -moz-perspective:    800px;
    -o-perspective:      800px;
    perspective:         800px;
    margin-bottom: 30px;
}
/* flip the pane when hovered */
.cardAbout-container:not(.manual-flip):hover .cardAbout,
.cardAbout-container.hover.manual-flip .cardAbout{
	-webkit-transform: rotateY( 180deg );
    -moz-transform: rotateY( 180deg );
    -o-transform: rotateY( 180deg );
    transform: rotateY( 180deg );
}


.cardAbout-container.static:hover .cardAbout,
.cardAbout-container.static.hover .cardAbout {
	-webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    transform: none;
}
/* flip speed goes here */
.cardAbout {
	-webkit-transition: -webkit-transform .5s;
    -moz-transition: -moz-transform .5s;
    -o-transition: -o-transform .5s;
    transition: transform .5s;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
	position: relative;
}

/* hide back of pane during swap */
.front, .back {
	-webkit-backface-visibility: hidden;
   -moz-backface-visibility: hidden;
     -o-backface-visibility: hidden;
        backface-visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #FFF;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.14);
}

/* front pane, placed above back */
.front {
	z-index: 2;
}

/* back, initially hidden pane */
.back {
	-webkit-transform: rotateY( 180deg );
    -moz-transform: rotateY( 180deg );
    -o-transform: rotateY( 180deg );
    transform: rotateY( 180deg );
    z-index: 3;
}

.back .btn-simple{
    position: absolute;
    left: 0;
    bottom: 4px;
}
/*        Style       */


.cardAbout{
    background: none repeat scroll 0 0 #FFFFFF;
    border-radius: 4px;
    color: #444444;
}
.cardAbout-container, .front, .back {
	width: 100%;
	height: 450px; /*Modificar para altura*/
	border-radius: 4px;
}
.cardAbout .cover{
    height: 105px;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}
.cardAbout .cover img{
    width: 100%;
}
.cardAbout .user{
    border-radius: 50%;
    display: block;
    height: 120px;
    margin: -55px auto 0;
    overflow: hidden;
    width: 120px;
}
.cardAbout .user img{
    background: none repeat scroll 0 0 #FFFFFF;
    border: 4px solid #FFFFFF;
    width: 100%;
}

.cardAbout .contentcardAbout{
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
    padding: 10px 20px 20px;
}
.cardAbout .contentcardAbout .main {
    min-height: 160px;
}
.cardAbout .back .contentcardAbout .main {
    height: 150px ;
}
.cardAbout .name {
    font-size: 22px;
    line-height: 28px;
    margin: 10px 0 0;
    text-align: center;
    text-transform: capitalize;
}
.cardAbout h5{
    margin: 5px 0;
    font-weight: 400;
    line-height: 20px;
}
.cardAbout .profession{
    color: #999999;
    text-align: center;
    margin-bottom: 20px;
}
.cardAbout .footer {
    border-top: 1px solid #EEEEEE;
    color: #999999;
    text-align: center;
}
.cardAbout .footer .social-links{
    font-size: 18px;
}
.cardAbout .footer .social-links a{
    margin: 0 7px;
}
.cardAbout .footer .btn-simple{
    margin-top: -6px;
}
.cardAbout .header {
    padding: 15px 20px;
    height: 90px;
}
.cardAbout .motto{
    border-bottom: 1px solid #EEEEEE;
    color: #999999;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 10px;
    text-align: center;
}

.cardAbout .stats-container{
	width: 100%;
	margin-top: 50px;
}
.cardAbout .stats{
	display: block;
	float: left;
	width: 33.333333%;
	text-align: center;
}

.cardAbout .stats:first-child{
	border-right: 1px solid #EEEEEE;
}
.cardAbout .stats:last-child{
	border-left: 1px solid #EEEEEE;
}
.cardAbout .stats h4{
	font-weight: 300;
	margin-bottom: 5px;
}
.cardAbout .stats p{
	color: #777777;
}
