﻿.product-card {
    padding: 75% 0 0 0 !important;
    width: 100%;
    height: 100%;
    padding-top: 75% !important;
    display: inline-block !important;
    border-radius: 0 !important;
    border: 0 !important;
    background-repeat: no-repeat;
    background-size: cover;
}

    .product-card:hover > .product-card-hover {
        display: block;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 121, 50, 0.7);
        top: 0;
        left: 0;
        position: absolute;
    }

        .product-card:hover > .product-card-hover > .product-card-title {
            padding-left: 0;
            padding-right: 0;
            text-align: left;
            background-color: rgba(0, 121, 50, 0);
        }

            .product-card:hover > .product-card-hover > .product-card-title > .product-card-info {
                display: block;
                border-top: 1px solid white;
                color: white;
                padding-top: 15px;
                padding-left: 15px
            }

.product-card-title {
    padding: 0 15px;
    background-color: rgba(0, 121, 50, 0.7);
    color: white;
    display: inline-block;
    border-radius: 8px 8px 0 0;
    width: 100%;
    text-align: center;
    font-weight: 700;
}

.product-name {
    margin: 10px 0;
    text-align: center;
}

.product-card-info {
    display: none;
    text-transform: none;
}

    .product-card-info a {
        color: white;
        text-decoration: none;
        font-size: 1.2rem;
    }

        .product-card-info a:hover {
            color: white;
            text-decoration: underline;
        }


