.user-menu-wrapper {
	display: flex;
	justify-content: flex-end;
}

.user-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 0;
	line-height: 0;
	text-align: right;
	display: flex;
}

.user-menu li {
	display: inline-block;
	margin-left: 15px;
	vertical-align: top;
}

.user-menu li:first-child {
	margin: 0;
}

.user-menu li .icon-wrapper {
	cursor: pointer;
	width: 30px;
	height: 30px;
	display: block;
	margin: 0;
	position: relative;
}

.user-menu li .icon-wrapper,
.user-menu li .icon-wrapper .icon {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
    justify-content: center;
}

.user-menu.user-menu-icons-orange li .icon-wrapper .icon svg path {
	fill: #e65928;
}

.user-menu.user-menu-icons-white li .icon-wrapper .icon svg path {
	fill: #ffffff;
}

.user-menu.user-menu-icons-gray li .icon-wrapper .icon svg path {
	fill: #484A48;
}

.user-menu li.shopping-cart .icon-wrapper .icon {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
    justify-content: center;
}

.user-menu li.shopping-cart .icon-wrapper .icon svg {
    width: 30px;
    height: 30px;
}

.user-menu li.shopping-cart .icon-wrapper .cart-count {
	font-weight: inherit;
    font-size: inherit;
    color: inherit;
}

.user-menu li.shopping-cart .icon-wrapper .cart-count span {
	position: absolute;
	top: -5px;
	left: -5px;
	width: 20px;
	height: 20px;
	font-size: 10px;
	line-height: 18px;
	text-align: center;
	font-weight: 900;
	border-radius: 50%;
	background: #fff;
}

.user-menu.user-menu-icons-orange li.shopping-cart .icon-wrapper .cart-count span {
	color: #e65928;	
	border: 1px solid #e65928;	
}

.user-menu.user-menu-icons-white li.shopping-cart .icon-wrapper .cart-count span {
	color: #484A48;	
	border: 1px solid #ffffff;	
}

.user-menu.user-menu-icons-gray li.shopping-cart .icon-wrapper .cart-count span {
	color: #484A48;	
	border: 1px solid #484A48;	
}

@-webkit-keyframes blinker {
	0% {
		opacity: 1.0;
		color: #E65928;
	}
	50% {
		opacity: 0.0;
		color: #484A48;
	}
	100% {
		opacity: 1.0;
		color: #E65928;
	}
}

@-moz-keyframes blinker {
	0% {
		opacity: 1.0;
		color: #E65928;
	}
	50% {
		opacity: 0.0;
		color: #484A48;
	}
	100% {
		opacity: 1.0;
		color: #E65928;
	}
}

.cart-count {
	-webkit-animation: blinker 1s 1;
	-moz-animation: blinker 1s 1;
	animation: blinker 1s 1;
}

.cart-count-loaded {
	animation: blinker 5s 1;
}

@media only screen and (max-width: 420px) {
    .user-menu li {
        margin-left: 5px;
    }
}
