#loader {
	display: none;
	position: fixed;
	z-index:    1000;
	top: 50%; 
	left: 50%;
  	transform: translate(-50%, -50%);
	border: 8px solid #f3f3f3; /* Light grey */
	/*border: 8px solid #f3f3f3;*/ /* Light grey */
	/*border: 8px solid rgb(186, 122, 76);*/ /* Light gold */
	/*border-top: 8px solid #3498db;*/ /* Blue */
	border-top: 8px solid rgba(41, 49, 57, 1);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*.cart-size
{
	width: 55px;
	height: 75px;
}*/

/*.cart-top-size
{
	width: 55px; 
	height: 22px;
}*/

#cart_icon
{
	position: relative;
	cursor: pointer;
	margin-right: 30px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	width: 55px;
	height: 75px;
}

#cart_icon:hover
{
	z-index: 2;
	opacity:0.5;
}

#cart_bag
{
	width: 55px;
	height: 60px;
	border-radius: 0px 0px 5px 5px;
}

#cart_top
{
	position: absolute;
	top: -2px;
	width: 55px; 
	height: 22px;
	border-radius: 0 0 50% 50%;
}

/*#cart_handle
{
	position: absolute;
	top: 30px;
	width: 30px;
	height: 10px;
	border-radius: 50% 50% 0% 0% ;
	border-top: none;
	z-index: 1;
}*/

#cart_handle
{
	position: absolute;
	top: 2px;
	width: 35px;
	height: 13px;
	border-radius: 50% 50% 0% 0% ;
	border-bottom: none;
	z-index: 1;
}

#nb_articles
{
	position: absolute;
	z-index: 2;
	top: 28px;
	right: auto; 
	background-color: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
}

#nb_articles span
{
	margin: 0px;
	padding: 0px;
	font-family: 'Zapfino';
	/*line-height: 30px;*/
}

