/*Cart*/
i.icon-trash:before {
    content: "delete";
    font-family: 'Material Icons';
    font-style: normal;
}
.blockcart .empty_cart {
    text-align: center;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 50%;
    margin-top: -20px;
}
#_desktop_cart .container_cart #cart-list .product-item.animate {
    animation-name: parpadeo;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: 2;
    -webkit-animation-name: parpadeo;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: 2;
}
@-moz-keyframes parpadeo{  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}
@-webkit-keyframes parpadeo {  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
   100% { opacity: 1.0; }
}
@keyframes parpadeo {  
  0% { opacity: 1.0; }
   50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}
/*Numero de productos en el carrito*/
#header .header-top .cart-preview .cart-products-count {
    background: none;
    color: black;
    right: -18px;
    top: -14px;
    background: #e6530f;
    border-radius: 100%;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    line-height: 18px;
    width: 18px;
    height: 18px;
}

.cart-popup.open {
    transition: right 300ms ease-in-out;
    right: 0;
}

.cart-popup {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -470px;
    width: 460px;
    /*height: 100vh;*/
   height: 100%;
    background-color: white;
    padding: 30px;
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.1);
    transition: right 300ms ease-in-out;
    overflow: scroll;
    color:#000;
}

.cart-popup::-webkit-scrollbar {
    display: none;
}

.cart-popup .close-popup {
    position: absolute;
    right: 30px;
    top: 65px;
    cursor: pointer;
}

.cart-popup .close-popup:before {
    content: '';
    border-bottom: 1px solid #000;
    width: 15px;
    display: inline-block;
    transform: rotate(45deg);
    margin-bottom: 7px;
    cursor: pointer;
}

.cart-popup .close-popup:after {
    content: '';
    border-bottom: 1px solid #000;
    width: 15px;
    display: inline-block;
    transform: rotate(-45deg);
    margin-left: -15px;
    margin-bottom: 7px;
    cursor: pointer;
}

.cart-popup .title-popup {
    display: block;
    clear: both;
    font-size: 20px;
    color: #000;
    padding-bottom: 9px;
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 25px;
    text-align: center;
    padding-top: 45px;
}

.cart-popup .product-image {
    width: 24%;
    display:inline-block;
    vertical-align:top;
}
.cart-popup .product-line-info{
    width: 76%;
    display:inline-block;    
    font-size: 16px;
    color:#000;
}
.cart-popup .product-image img {
    width: 100%;
}

.cart-popup .product-line-info .main-product{
    overflow:auto;
}
.cart-popup .name_price_cart {
    width:88%;
    float:left;
    padding-top:15px;
}
.cart-popup .remove_product_cart {
    width: 12%;
    float: left;
    padding-top: 15px;
    text-align: right;
}

.cart-popup .product-price {
    display: inline-block;
    float: right;
    font-size: 16px;
    color: #000;
}
.cart-popup span.price {
    font-weight:bold;
}
.cart-popup span.regular-price {
    color: #7a7a7a;
    text-decoration: line-through;
    font-size: .875rem;
}


.cart-popup .product-item.animate {
    animation-name: parpadeo;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: 2;
    -webkit-animation-name: parpadeo;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: 2;
}

.cart-popup .product-item {
    width: 100%;
    overflow: hidden;
    padding: 20px 0px 0px 0px;
    border-bottom: 1px solid #ccc;    
    font-size: 0px;
}

.cart-bottom {
    margin-top: 30px;
    position: absolute;
    width: 100%;
    right: 0;
    bottom: 40px;
}


.cart-bottom > div {
    padding: 0 30px;
}

.shopping-buy {
    background-color: #ec7334;
    border: none;
    box-shadow: none;
    font-size: 14px;
    outline: none;
    padding: 12px 47px;
    color: white!important;
    text-transform: uppercase;
    display: block;
}

.btn-subtract-cart,
.btn-add-cart{
    padding: 0px 5px;
    line-height: 1;
    vertical-align: top;
}

@media (max-width: 480px) {
    .cart-popup {
       width:100%;
        right: -480px;
    }
}

.cart-popup .block-promo{
    margin-bottom:60px;
}
.cart-popup .block-promo .promo-code {
     padding: 0px; 
}
.cart-popup .block-promo .promo-input {
    width: 74%;
    position: relative;
    border: none;
    border-bottom: 1px solid #000000;
    float: left;
    background: #fff;
    padding: 10px 0px 9px 0px;
    height:auto;
    color:#999;
    text-indent:0px;
}

.cart-popup .block-promo .promo-input:focus {
    outline: 0;
}

.cart-popup .block-promo button[type="submit"] {
    text-align: center;
    text-decoration: none;
    position: relative;
    margin-left: 0px;
    display: inline-block;
    width: 26%;
    border: 1px solid #000000;
    padding: 9px 23px;
    background: #fff;
}

.cart-popup .value {
    float: right;
}

.cart-popup .cart-bottom > div {
    margin-top: 10px;
}
@media(max-width: 767px) {
    .cart-popup .cart-bottom > div {
        margin-top: 5px;
    }
    .cms-id-4 .contenedor_guia_de_compra > .row{
        margin: 0px !important;
        padding: 0px !important;
    }
    .cms-id-4 .contenedor_guia_de_compra > .row .col-xs-12.col-md-6:last-child{
        padding: 0px;
        padding-bottom: 15px;
    }
}
.cart-popup .total {
    text-transform: uppercase;
    font-weight: bold;
}
@media(max-width: 480px) {
    .cart-popup .total {
        font-size: 16px;
    }
}
.cart-popup .cart-bottom .buy {
    bottom: 0;
    width: 100%;
    text-align: center;
    left: 0;
    margin-top:60px;
    margin-bottom:20px;
}

.products-container {
    overflow-y: scroll;
}

.products-container::-webkit-scrollbar {
    display: none;
}

.products-container {
    overflow-y: scroll;
}

@media (max-width: 480px) {
    .products-container {
        height: 140px;
    }
}

.cart-popup .product-description {
    border-bottom: 1px solid #ccc;
    padding: 8px 0px;
}

.cart-popup .product-quantity {
    display: inline-block;
}

.cart-popup .remove_product_cart img {
    width: 18.2px;
    height: 19.9px;
}

.cart-popup .products-container .name_price_cart a:hover {
    color: #000!important;
}

.cart-popup .fecha_estimada{
    padding:5px 0px;
}
.cart-popup .fecha_estimada:before{
    content:"";
    display:inline-block;
    width:20px;
    height:14px;
    margin-right: 10px;
    background:url('/img/cms/camion.png') no-repeat;
    vertical-align: middle;
}

@media (max-width: 991px) {
    .cart-popup .close-popup {
        top: 25px;
    }
    .cart-popup .title-popup {
        padding-top: 0px;
    }
    .cart-bottom{
        position: static;
        margin-left: -30px;
        margin-right: -30px !important;
        width: auto;
    }
    .cart-popup .block-promo button[type="submit"] {
        padding: 9px 0px;
    }
}

/*/Cart*/