/* estilos carrito compras */
.shop_car_link{
	
	/*color: #007298;*/
	color:white;
	padding: 8px 25px;
	padding-right: 0px;
	font-size: 14px;
	font-family: "FontAwesome","Open Sans", "Arial", "Sans-serif";
	font-weight: 700;
	display: flex;
	align-items: center;
	/*white-space: nowrap;
	max-width: 280px;*/
}

.shop_car_link>a{
	width:100%;
	color:white;
	text-decoration:none;
}

.shop_car_div{
	width:250px;
	position: fixed;
	top:30%;
	right: 0px;
	z-index:150;
	border-right: none;
	/*border: 2px solid #007298;
	background-color: white;*/
	background-color:#007298;
	border-radius: 12px 0px 0px 12px;
}

.animate_car{
	animation-duration: 2s;
	animation-delay: -1s;
    animation-name: slideOut;
    animation-timing-function: linear;
    right: -190px;
    /*animation-iteration-count: 1;*/
}

.animate_car:hover {
	background-color:#007298; 
	color:white;
	right: 0px;
	animation-timing-function: linear;
	animation-duration: 2s;
	animation-delay: -1s;
	
    animation-name: slideIn;
}

.shop_car_div:hover>.shop_car_link{
	color:white;
	text-decoration: none;
}

.shop_car_detail_div{
	display:none;	
    padding: 5px 25px;
    background: white;
    color: black;
    border: 2px solid #cdcdcd;
    border-radius: 0px 0px 0px 12px;
    box-shadow: 2px 2px 0px #888888;
    font-size: 14px;
}

.shop_car_div:hover>.shop_car_detail_div{
	display:block;	
}

.shop_car_detail_div>div{
	padding-top: 5px;
    padding-bottom: 5px;
}

.center{
	text-align:center;
}

.btn-efx-red {
    background: #a31f34;
    color: #ffffff;
}
.btn-efx-red:hover {
  color: #ffffff;
}

.img_shopping_cart{
	margin-right: 15px;
}

.light_div{
	background-color: #ffffff;
	border: 1px solid #007298;
}

.light_div>.shop_car_link{
	color:#007298;
}

.light_div>.shop_car_link>a{
	color:#007298;
}

.light_div:hover>.shop_car_link{
	color:#007298;
	text-decoration: none;
	background-color:white;
	border-radius: 12px 0px 0px 12px;
}

.cart_title>span{
	margin-bottom: -5px;
	margin-top: -5px;
	display:block;
	text-align:justify;
}

.cart_title>span:first-child{
	margin-top: 0px;
	margin-bottom: -5px;
}

.cart_title>span:last-child{
	margin-top: -5px;
	margin-bottom: 0px;
}


/* Lista de detalles con bullet personalizado */
.shop_car_detail_div>ul{
	list-style-type: none;
	padding-left: 0px;
}
.shop_car_detail_div li {
	display: flex;
	text-align: justify;
}

.shop_car_detail_div li>i {
    font-weight: 700;
    color: gray;
}
/*.shop_car_detail_div li:before {
	font-family: 'equifax-icons';
	font-size: 20px;
	content: "\ea98"; 
	margin-left: -30px;
    margin-right: 10px;
}*/

@keyframes slideOut {
  from {right: 0px;}
  to {right: -190px;}
}

@keyframes slideIn {
  from {right: -190px;}
  to {right: 0px;}
}

/*@keyframes slide {
	0% {right:0px; right:-194px;}  
	30%  {right:-194px; right:0px;}
	60%  {right:-194px; right:0px;}
	100%  {right:0px; right:-194px;}
}*/

/* Extra small devices (phones, 600px and down) */
@media only screen and (hover: none) and (pointer: coarse) {
	.animate_car{
		animation-delay: 0s;
	}	
	
	.animate_car:hover{
		animation-delay: 0s;
	}
}