.product-in-cart{
    background-color: rgba(250, 177, 177,0.5);
    padding: 15px !important;
}

/* Welcome modal */
.modalDialogWelcome {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}
.modalDialogWelcome.active {
    opacity:1;
    pointer-events: auto;
}
.modalDialogWelcome > div {
    width: 25%;
    position: relative;
    margin: 10% auto;
    padding: 40px;
    border-radius: 6px;
    background-color: #fff;
}
.modalDialogWelcome h2,
.modalDialogWelcome h3 {
    display: block;
    text-align: center;
    font-size: 21px;
}
