﻿.productCart
{
    width: 25vw;
    border-radius: 25px;
    text-align: center;
    background-color: #D7C59E;
    border: 5px outset rgba(0, 0, 0, 0.16);
    box-shadow: 5px 5px rgba(0, 0, 0, 0.16);
    margin-top: 20px;
    margin-right: 1vw;
    display: inline-block;
    padding-bottom: 8px;
}

.productDescription 
{
    margin: 15px 10px 10px 10px;
    font-size: 1.2vw;
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 2px 2px rgba(0, 0, 0, 0.20);
    border-radius: 10px;
    height: 5vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.productRange
{
    font-size: 1.2vw;
}

.divProductImage
{   
    margin: 0px 10px 5px 10px;
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 2px 2px rgba(0, 0, 0, 0.20);
    border-radius: 10px;
    padding: 5px;
    height: 18vh;
    display: flex;
}

.productCart:hover 
{
    background-color: #FCC44A;
    box-shadow: 7px 7px rgba(0, 0, 0, 0.35);
}

.productTitle 
{
    margin: 15px 10px 10px 10px;
    font-size: calc(1.5vw + 0.2vh);
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 2px 2px rgba(0, 0, 0, 0.20);
    border-radius: 10px;
}

.productImage 
{
    height: 100%; 
}