/*Css para el carrito con hover*/

.container_cart {
	width:320px;
	background:white;
	border:1px solid black;
	position: absolute;
    z-index: 1;
    left: auto;
    right: 0;
    min-height:320px;
    top:45px;
}
.container_cart .product-image {
	width:35%;
	float:left;
}
.container_cart .name_price_cart {
	width:55%;
	float:left;
	padding-top:15px;
}
.container_cart .remove_product_cart {
	width:10%;
	float:left;
	    padding-top: 15px;
}
.container_cart a.shopping-buy {
    text-transform: uppercase;
    border: 1px solid black;
    padding: 8px 80px;
}
.container_cart a.shopping-buy:hover, .container_cart a.product-name:hover, .container_cart .remove_product_cart a:hover {
	color:black !important;
}
.container_cart .cart-bottom {
    padding: 30px 0px;
    text-align: center;

}
#header .header-top .blockcart {
    cursor: pointer;
}
.container_cart section#cart-list .product-item {
	width: 100%;
    overflow: hidden;
    padding: 20px 0px;
}
.container_cart .product-price {
    display: block;
    padding-top: 15px;
}
.container_cart span.price {
	font-size:18px
}
.container_cart a.product-name {
    
}
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; }
}
/* // MOD #59370 (29/08/22) - Comentar todo */
/*Numero de productos en el carrito*/
/*
#header .header-top .cart-preview .cart-products-count {
    background: black;
    color: white;
    position: absolute;
    width: 17px;
    height: 17px;
    transform: none !important;
    line-height: 18px;
    font-size: 12px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 1.8px;
    text-align: center;
    padding-left: 2px;
    right: -14px;
    bottom: -7px;
}
*/

.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;
    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;
}
.cart-popup .buy {
    display: block;
    width: 100%;
    text-align: left;
}

.cart-popup::-webkit-scrollbar {
    display: none;
}

.cart-popup .close-popup {
    float: right;
    height: 15px;
    cursor: pointer;
    padding-top:3px; 
}

.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;*/
    position: absolute;
    right: 0px;
    top: 29px;
    right: 55px;
    margin-bottom: 0px;
    border: none;
}

/*.cart-popup a.shopping-buy {
    text-transform: uppercase;
    border: 1px solid black;
    padding: 8px 80px;
}*/

.cart-popup .product-image {
    width: 30%;
    float: left;
    margin-right: 13px;
}

.cart-popup .product-image img {
    width: 100%;
}
.cart-popup .name_price_cart {
	width:55%;
	float:left;
	padding-top:15px;
    text-align: left;
    font-size: 14px;
}
.cart-popup .remove_product_cart {
	width:10%;
	float:left;
	    padding-top: 15px;
}

.cart-popup .product-price {
    display: block;
    padding-top: 15px;
}

.cart-popup .quantity-controls {
    padding-top: 15px;
}
.cart-popup .quantity-controls .product-price {
    padding-top: 0px;
    display: inline-block;
    float: right;
    width: 50%;
}
.cart-popup .quantity-controls .btn-subtract-cart,
.cart-popup .quantity-controls .btn-add-cart{
    padding: 0px 5px;
    line-height: 1.5;
    vertical-align: top;
}

.cart-popup span.price {
	font-size:18px
}

.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;
}

.cart-bottom {
    margin-top: 30px;
}


.shopping-buy:hover {
	/*background-color: #45adb7 !important;*/
    background-color: transparent!important;
    border: 1px solid black;
}	
.shopping-buy {
    background-color: #e4f2f2!important;
    border: 1px solid transparent;
    box-shadow: none;
    font-size: 14px;
    outline: none;
    padding: 12px 47px;
    margin-bottom: 17px;
    margin-top: 25px;
    color: black!important;
    text-transform: uppercase;
    cursor: pointer;
}

.cart-popup .product-item .name_price_cart .quantity-controls .quantity .quantity{
    color: black;
    text-align: center;
    width: 3em;
}
.cart-popup .product-item .name_price_cart .quantity-controls .quantity{
    display: inline-block;
    width: 50%;
    font-size: 15px;
    -moz-appearance: textfield;
}
.cart-popup .product-item .remove_product_cart .icon-trash{
    font-size: 24px;
}
.cart-popup .product-item .name_price_cart .quantity-controls .quantity .quantity::-webkit-outer-spin-button, .cart-popup .product-item .name_price_cart .quantity-controls .quantity .quantity::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}
.cart-popup #errors-popup {
  text-align: left;
  margin-top: 20px;
}


/*********************************MEDIA QUERIES*****************************/
@media (max-width: 767px) {
    .cart-popup .quantity-controls .product-price {
        width: 40%;
    }
    .cart-popup .product-item .name_price_cart .quantity-controls .quantity {
        width: 60%;
    }
}
@media (max-width: 480px) {
	.cart-popup {
	    width: 100vw;
	    right: -480px;
	}
}

/*********************************END MEDIA QUERIES*****************************/
section.cart-popup hr {
    margin-top: 23px;
    margin-bottom: 0px;
        border-color: #d8d8d8;
}
