.card{
    /*
    box-shadow: 0 5px 5px rgba(0,0,0,.05);
    transition: all 0.3s ease;
    border:0;
    border-radius: 25px !important;
    padding-bottom:20px;*/
}

.card:hover{
    box-shadow: 0 10px 20px rgba(0,0,0,.07) !important;
    transition: box-shadow 0.5s;
}

.card-without-shadow{
    border-radius: 0;
    transition: all 0.3s ease;
    border:1px solid #eee;
}

.card-without-shadow:hover{
    box-shadow: 0 10px 20px rgba(0,0,0,.07) !important;
    border-radius: 0;
}

.card-footer{
    background: transparent;
    border-radius: 0;
    border-top: 0px solid rgba(0,0,0,.125);
}
.card .h1
{
    font-size:24px;
    line-height:28px;
}

.card h6,
.card h6 *{
    color: #999;
    text-transform: uppercase;
}

.card-img-top {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.card-rounded
{
    border-radius: 5px;
}

.card-body{
    border-radius: 0 !important;
}
.card-image
{
    position:relative;
}
.card-image > img
{
    position:absolute;
    top:0;
    left:20px;
    max-width:65px;
}