.product-notification .sca-qv-button-wrap {
    display: none!important
}

.product-notification {
    position: fixed;
    bottom: 50px;
    background: #fff;
    width: 300px;
    z-index: 9999;
    left: 30px;
    visibility: hidden;
    border: 1px solid var(--gray);
    opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    transition: all .4s ease-in-out 0s;
    -webkit-transition: all .4s ease-in-out 0s;
    -moz-transition: all .4s ease-in-out 0s;
    -o-transition: all .4s ease-in-out 0s;
    -ms-transition: all .4s ease-in-out 0s;
    box-shadow: 0 5px 40px -7px #0000001a;
    border-radius: 5px
}

.product-notification.pos-right {
    right: 30px;
    left: auto
}

.product-notification.active {
    bottom: 30px;
    opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible
}

.product-notification .closeNotify .icon {
    width: 10px;
    height: 10px
}

.product-notification .closeNotify {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 999;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    transition: all .4s ease-in-out 0s;
    -webkit-transition: all .4s ease-in-out 0s;
    -moz-transition: all .4s ease-in-out 0s;
    -o-transition: all .4s ease-in-out 0s;
    -ms-transition: all .4s ease-in-out 0s;
    cursor: pointer
}

.product-notification .closeNotify:hover {
    color: var(--color-highlight);
}

.product-notification .product-suggest {
    float: left;
    width: 100%;
    padding: 10px
}

.product-notification .product-suggest .product-image {
    display: block;
    max-width: 90px;
    float: left;
    width: 30%
}

.product-notification .product-suggest .column-right {
    padding: 0 15px;
    line-height: 24px;
    overflow: hidden
}

.product-notification .product-suggest .column-right label {
    color: var(--color-main);
    font-size: 14px;
    font-weight: 400;
    float: left;
    width: 100%;
    margin: 0
}

.product-notification .product-suggest .column-right .product-name {
    float: left;
    width: 100%;
    margin: 0;
    line-height: 23px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-main);
}
.product-notification .product-suggest .column-right .product-name:hover{
    color:var(--color-highlight)
}
.product-notification .product-suggest .column-right .from-ago,.product-notification .product-suggest .column-right .time-ago {
    font-size: 13px;
    font-weight: 400;
    float: left;
    width: 100%;
    color: var(--color-text);
}

@media only screen and (max-width: 480px) {
    .product-notification {
        width:290px;
        left: 15px;
        bottom: 100px
    }
}

