/**
 * @minify true
 */

body {
    padding-top: 70px;
}

.card {
    box-shadow: 1px 1px 1px rgba(0,0,0,0.125);
    transition: box-shadow 200ms ease-in-out, transform 200ms ease-in-out;
    transform: scale(1, 1);
}

.card>i.hover-icon {
    position: absolute;
    bottom: 16px; right: 16px; width: auto; height: auto;
    opacity: 0;
    transition: opacity 300ms ease-in-out;
}

.card:hover {
    box-shadow: 1px 1px 12px rgba(0,0,0,0.1);
    transform: scale(1.03,1.03);
}


.card:hover>i.hover-icon {
    opacity: 1;
}


.card .pf-img {
    transition: opacity 400ms ease-in-out;
    opacity: 1;
    cursor: pointer;

    object-fit: cover;
    height: 220px;
}

.card .pf-img:hover {
    opacity: 0.75;
}

.card .pf-img-text {
    min-height: 80px;
    white-space: wrap;
}
