.background {
	background-image: linear-gradient(rgb(27, 20, 16), rgb(0, 60, 88));
	position:fixed;
	top:-30vh; left:-30vw;
	width:160vw;
	height:160vh;
	z-index:-1;
}
body {
	overflow-x:hidden;
	color:#F7F7F9;
	font-family:Helvetica, Arial;
	line-height:30px;
	font-size:16px;
	margin:0;
	padding:0;
	text-shadow:0px 1px 0px rgba(0,0,0,.95);
	-webkit-text-size-adjust: 100%;
}
button {
	background: rgba(255, 255, 255, .1);
	text-shadow: 1px 1px 0 rgba(0, 0, 0, .9);
	border: 1px solid #fff;
	color: #fff;
	padding: 3px 10px;
	opacity: .6;
	outline: 0;
	cursor: pointer;
	font-size: 15px;
}
.buttons {
	position: fixed;
	top: 0px; right: 0px;
	padding: 15px;
	z-index: 1;
}
* {
	box-sizing:border-box;
	-webkit-font-smoothing: antialiased;
}
html {
	height: 100%;
}
body {
	margin: 0;
	padding: 40px 0;
	font-family: Helvetica;
	-webkit-font-smoothing: antialiased;
	font-size: 22px;
	width: 100%;
	min-height: 100%;
	font-weight: 200;
	letter-spacing: 1px;
	color: white;
	background: rgb(0, 60, 88);
	text-shadow: 0px 0px 10px rgba(0, 0, 0, .75)
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
}
div {
	padding: 7px;
}
h2 {
	margin: 0;
	padding: 30px 0;
	text-transform: capitalize;
}
a {
	color: white;
	text-decoration: none;
	text-transform: capitalize;
}
.ingredient span {
	cursor: pointer;
}

/* vuejs transition */
.list-complete-move {
  transition: transform .5s;
}
.list-complete-item {
  transition: all .5s;
  display: block;
  margin-right: 10px;
}
.list-complete-enter, .list-complete-leave-to {
  opacity: 0;
  transform: translateY(15px);
}
.list-complete-leave-active {
  position: absolute;
}


.slide-from-right-enter-active,
.slide-from-right-leave-active,
.slide-from-left-enter-active,
.slide-from-left-leave-active {
	transition: all .75s ease-in-out;
	position: absolute;
}
.slide-from-right-enter,
.slide-from-right-leave-to {
	transform: translateX(100%);
	opacity: 0;
}


.slide-from-left-enter,
.slide-from-left-leave-to {
	transform: translateX(-100%);
	opacity: 0;
}
.cat-in-cart .list-complete-item span {
	position: relative;
	text-decoration: line-through;
}
/* .cat-in-cart .list-complete-item span::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: white;
	opacity: .75;
	top: 50%;
	left: 0;
	position: absolute;
} */