.card {
    height: 100%;
}

.card td {
    vertical-align: top;
}

.card-grey {
    background: #e2e2e2 !important;
}

.card .body {
    overflow: hidden;
}
.btn-actions {
    display: inline;
    position: absolute;
    right: 20px;
    top:5px;
}

.front {
    position: relative;
    transform: translateY(0);
    transition: 0.4s all ease;
}

.front.actions-active {
    transform: translateY(-100%);
}

.back {
    width: 90%;
    position: absolute;
    /*bottom: 0;*/
    top: 110%;
    /*transform: translateY(100%);*/
    transition: 0.4s all ease;
}

.back.actions-active {
    top: 0;
    /*transform: translateY(0%);*/
}

.back .btn {
    margin: 0 10px 10px;
}