/*
============================================================
 VOLTCORE AFRICA
 CLICKABLE PRODUCT CARDS
============================================================
*/

.vc-clickable-product-card {

    cursor:
        pointer !important;

    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;

}


.vc-clickable-product-card:hover {

    transform:
        translateY(-3px);

    border-color:
        rgba(80, 220, 70, .75) !important;

    box-shadow:
        0 8px 25px rgba(0,0,0,.35);

}


.vc-clickable-product-button {

    cursor:
        pointer !important;

}


/*
Make product text easier to read.
*/

.vc-clickable-product-card
.vc-clickable-product-title {

    font-size:
        21px !important;

    line-height:
        1.3 !important;

    font-weight:
        900 !important;

    color:
        #ffffff !important;

}


.vc-clickable-product-card
.vc-clickable-product-description {

    font-size:
        16px !important;

    line-height:
        1.5 !important;

    color:
        #edf2f4 !important;

}


/*
Mobile
*/

@media (max-width: 768px) {

    .vc-clickable-product-card
    .vc-clickable-product-title {

        font-size:
            22px !important;

    }


    .vc-clickable-product-card
    .vc-clickable-product-description {

        font-size:
            17px !important;

    }

}
