@media all
{
	.icon-cart
	{
		background: rgba(255, 255, 255, .3);
		border-radius: 50%;
		box-shadow: .1em .1em .5em rgba(0, 0, 0, .3);
		display: flex;
		align-items: center;
		justify-content: center;
		height: 4em;
		opacity: .7;
		position: fixed;
		right: 1em;
		text-decoration: none;
		top: 10em;
		transition: all .5s ease;
		width: 4em;
		z-index: 100000;
	}

		.icon-cart:hover
		{
			opacity: 1;
			transform: scale(1.2);
		}
}