/* START Last Viewed Products */
.lvp_blk {
    animation: .5s ease .5s forwards lvpanim;
    line-height: normal;
    opacity: 0;
}
@keyframes lvpanim {100% {opacity: 1;}}
.lvp_blk .tvp_title {
    font-size: 18px;
    font-weight: bold;
}
.lvp_blk .products-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 12px 0 18px;
}
.lvp_blk .product {
    align-items: center;
    border: 1px solid #e2e2e2;
    box-shadow: 0 6px 6px rgba(154,160,185,.05), 0 6px 18px rgba(166,173,201,.2);
    display: flex;
    flex-wrap: wrap;
    min-width: 150px;
    transition: all .3s ease-in-out;
    width: 100%;
}
.lvp_blk:not(.lvp_simple) .product {
    align-content: space-between;
    flex-direction: column;
    margin: 12px .5%;
}
.lvp_blk:not(.lvp_simple) .product:first-child {
    margin-left: 0;
}
.lvp_blk:not(.lvp_simple) .product:last-child {
    margin-right: 0;
}
.lvp_blk .product:hover {
    box-shadow: 6px 6px 18px -8px rgba(0, 0, 0, .4);
    border-color: #d2d2d2;
}
@media screen and (max-width:480px) {
    .lvp_blk:not(.lvp_simple) .product {
        max-width: 49% !important;
    }
}
@media screen and (max-width:375px) {
    .lvp_blk:not(.lvp_simple) .product {
        max-width: 94% !important;
        margin-right: 0;
        margin-left: 0;
    }
}
.lvp_blk .product-thumbnail {
    border: none;
    box-shadow: none;
    display: flex;
    margin: 0;
    width: 100%;
}
.lvp_blk .product-thumbnail > img {
    border: none;
    border-radius: 0;
    height: 100%;
    margin: 0;
    transition: all .3s ease-in-out;
    width: 100%;
}
.lvp_blk .product-thumbnail > img:hover {
    -webkit-filter: saturate(150%);
    filter: saturate(150%);
    opacity: .8;
}
.lvp_blk .rcl-cart-box {
    margin: 0;
    text-align: center;
}
.lvp_blk:not(.lvp_simple) .product-price {
    margin: 6px;
}
.lvp_blk:not(.lvp_simple) .cart-button,
.lvp_blk  .cart-button a {
    justify-content: center;
    margin: 0 !important;
    width: 100%;
}


/* simple */
.lvp_simple .product {
    margin: 3px 0;
}
.lvp_simple .product > * {
    padding: 6px;
}
.lvp_simple .product .product-title:hover {
    text-decoration: underline;
}
.simple_right_base {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
}
.lvp_simple .rcl-cart-box .rcl-cart-form {
    display: flex;
}

/* new-card */
.lvp_new-card .product-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.lvp_new-card .product-title {
    border-bottom: 1px dashed transparent;
    box-shadow: none;
    display: flex;
    font-size: 16px;
    padding: 12px 6px;
    text-align: center;
    text-decoration: none !important;
    transition: all .3s ease-in-out;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}
.lvp_blk.lvp_new-card .product-title:hover {
    border-bottom-color: currentColor;
}
.lvp_new-card .cart-button {
    padding: 3px 0 0;
}

/* card */
.lvp_card .product {
    padding: 6px;
}
.lvp_cover {
    position: relative;
}
.lvp_card .product-title {
    background-color: rgba(255, 255, 255, .85);
    color: #000;
    font-size: 14px;
    left: 0;
    line-height: normal;
    padding: 6px 3px;
    position: absolute;
    text-align: center;
    top: 0;
    pointer-events: none;
}