.my-promotions-card
{
    padding: 10px;
    margin: 10px;
    box-shadow: 0px 0px 10px gray;
    border-radius: 5px;
    color: gray;
    text-align:center;
}

.pd-image-modal
{
    width: 100%;
    text-align: center;
}

.pd-image-modal img
{
    height: 60%;
    transition: .5s ease;
}

.pd-product-tile:hover img
{
    height: 67%;
}

.pd-modal{
    display: none;
    overflow: hidden;
    position: fixed;
    top: 20px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.pd-product-tile
{
    height: 180px;
    margin 5px;
    padding: 5px;
}

.pd-product-tile:hover, .pd-product-row:hover
{
    box-shadow: 2px 3px 7px gray;
}

.pd-hidden-btn
{
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
    margin-top: 20px;
}

.pd-product-tile:hover .pd-hidden-btn, .pd-product-row:hover .pd-hidden-btn
{
    visibility: visible;
    opacity: 1;
}

.pd-description
{
    height: 55px;
}

.pd-row-img img
{
    width: 100%;
    padding: 10px;
}
.pd-product-row-name
{
    padding: 10px;
}