#_desktop_cart
{
    position: relative;
}
#rc_cartpreview
{
    right: 0px;
    position: absolute;
    /*border:1px solid rgba(0,0,0,.25);*/
    /*padding: 15px;*/
    width:349px;
    z-index: 10;
    max-height: 0;
    overflow: hidden;
    transition-duration: 200ms;    
    opacity: 0;
    padding-top: 15px;

    /*    opacity: 1;
        transition-duration: 200ms;
        max-height: 1000px;*/
}
#rc_cartpreview .wrap
{
    /*background: #fff;*/
    /*box-shadow: 2px 2px 8px 0 rgba(0,0,0,.2);*/
}
#_desktop_cart:hover #rc_cartpreview,
#_mobile_cart #rc_cartpreview.expanded
{
    opacity: 1;
    transition-duration: 200ms;
    max-height: 1000px;
}
#rc_cartpreview .cover
{
    position: absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    background-color: rgba(255,255,255,0.8);
    display: none;
}
#rc_cartpreview.refreshing .cover
{
    display: block;
    z-index: 10;
}
#rc_cartpreview .cart_empty
{
    text-align: center;
    padding: 15px;
}
#rc_cartpreview .products
{
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-top: 1px solid #dbdbdb;
    border-left: 1px solid #dbdbdb;
    border-right: 1px solid #dbdbdb;
}
#rc_cartpreview .products .item
{
    border-bottom: 1px solid #ccc;
    padding: 15px 15px 15px 15px;
    width: 100%;
    display: flex;
    /*margin-bottom: 4px;*/
    /*padding-bottom: 4px;*/
}
#rc_cartpreview .products .item .column-img img
{
    max-width: 64px;
}
#rc_cartpreview .products .item .column-1
{
    width: 100%;
    max-width: 70%;
}
#rc_cartpreview .products .item .column-2
{
    width: 30px;
}
#rc_cartpreview .products .item .remove
{
    float: right;
}
#rc_cartpreview .summary > div
{
    display: flex;

}
#rc_cartpreview .products .item .name
{
    font-family: Montserrat-Medium;
    color: #000;
    /*width:248px;*/
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
#rc_cartpreview .products .item .price
{
    color: #000;
}
#rc_cartpreview .summary .name
{
    width: 50%;
    text-align: left;
}
#rc_cartpreview .summary .price
{
    width: 50%;
    text-align: right;
}
#rc_cartpreview .products .item .attributes
{
    width: 100%;
    clear: both;
    font-size: 12px;
    line-height: 14px;
    color: #7a7a7a;
}
#rc_cartpreview .summary
{
    padding: 15px;
    color: #fff;
    background: #008080;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
#rc_cartpreview a.btn-default
{
    border-radius: 10px;
}
#rc_cartpreview #rc_total_shipping,
#rc_cartpreview #rc_cart_total
{
    margin-bottom: 5px;
}
#rc_cartpreview #rc_shipping_free
{
    /*display: none;*/
}

@media (min-width: 992px) and (max-width: 1199px)
{
/*    #_mobile_cart:hover #rc_cartpreview
    {
        opacity: 1;
        transition-duration: 200ms;
        max-height: 1000px;
    }*/
    #rc_cartpreview
    {
        padding-top: 0px;
    }
}
@media (min-width: 768px) and (max-width: 991px)
{
/*    #_mobile_cart:hover #rc_cartpreview
    {
        opacity: 1;
        transition-duration: 200ms;
        max-height: 1000px;
    }*/
    #rc_cartpreview
    {
        padding-top: 0px;
    }
}