﻿.card {
    position: relative;
    padding: 0 !important;
}

    .card .info {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        color: white;
        background-color: yellowgreen;
        opacity: 0;
        margin: 15px;
        text-align: center;
        transition: all 0.4s ease-in-out;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
    }

    .card:hover .info {
        opacity: 0.8;
    }

.info {
    padding-top: 10px;
}

.address {
    padding-top: 5px;
}

.info p {
    margin-top: 45px;
}

.card .info p,
.card .info span {
    font-size: 15pt;
    color: black;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.card .info .address span {
    font-size: 10pt;
}

.card:hover .info p,
.card:hover .info span {
    opacity: 1;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.autoCard {
    padding: 0 !important;
}

@media all and (max-width: 600px) {
    .FeaturedFlowCard {
        width: 225px !important;
        height: 500px !important;
    }
}
