#logout,
#deleteall {
	margin-bottom: 20px;
	background-color: #205648;
	border: none;
	padding: 8px;
	color: #fff;
	font-size: 12px;
	font-family: sans-serif;
	transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
}
#deleteall {
	display: none;
}
#logout:hover {
	background-color: #C9E6CA;
	color: #205648;
}
#login {
	margin: 50px;
}
#login .login_form h1 {
	font-family: sans-serif;
}
#login input {
	margin: 10px 0px;
}
#login .btn {
	background-color: #205648;
	border: none;
	padding: 8px;
	color: #fff;
	font-size: 12px;
	font-family: sans-serif;
	transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
}
#lists .search .btn:hover {
	background-color: #C9E6CA;
	color: #205648;
}
#lists {
	margin: 50px 0px;
}
#lists .search {
	margin-bottom: 20px;
}
#lists .search input {
	display: inline-block;
}
#lists .search .btn {
	background-color: #205648;
	border: none;
	padding: 8px;
	color: #fff;
	font-size: 12px;
	font-family: sans-serif;
	transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
}
#lists .search .btn:hover {
	background-color: #C9E6CA;
	color: #205648;
}
#lists table {
	width: 100%;
}
#lists thead tr {
	background-color: #205648;
}
#lists thead tr th {
	font-family: sans-serif;
	text-align: left;
	padding: 10px;
	border: 1px solid #2D2926;
	color: #fff;
}
#lists tbody tr {
	transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
}
#lists tbody tr:hover {
	background-color: #C9E6CA;
}
#lists tbody tr td {
	font-family: sans-serif;
	font-weight: lighter;
	padding: 10px 9px;
	border: 1px solid #2D2926;
	font-size: 15px;
}
#lists tbody tr td .delete {
	display: block;
	color: #cc0000;
	font-weight: bold;
}
#lists tfoot tr td {
	text-align: center;
	font-family: sans-serif;
	font-weight: lighter;
	padding: 10px;
	border: 1px solid #2D2926;
	font-size: 15px;
}
.count {
	font-family: sans-serif;
	background-color: #c9e6ca;
	padding: 8px 5px;
	text-align: center;
}
.backs {
	background-color: #c9e6ca;
	cursor: pointer;
}
/*******************************************/
#popup-overlay {
	position: fixed;
	z-index: 11111;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.2);
	transition: opacity 500ms;
	display: none;
}
#popup-overlay #popup {
	background-color: #fff;
	box-shadow: 10px 10px 50px #000;
	width: 25%;
	margin: 0 auto;
	position: fixed;
	z-index: 11111;
	top: 25%;
	right: 0px;
	left: 0px;
	transition: all 5s ease-in-out;
}
#popup-overlay #popup .popup-header {
	background-color: #205648;
}
#popup-overlay #popup .popup-header .heading {
	padding: 10px;
}
#popup-overlay #popup .popup-header .heading h3 {
	font-family: sans-serif;
	color: #fff;
}
#popup-overlay #popup .popup-header .close {
	text-align: center;
}
#popup-overlay #popup .popup-header .close button {
	border: none;
	color: #fff;
	font-size: 20px;
	padding: 6px 0px;
	background: none;
}
#popup-overlay #popup .popup-body {
	height: 250px;
	overflow-x: auto;
}
#popup-overlay #popup .popup-ul {
	margin: 15px 20px;
}
#popup-overlay #popup .popup-li {
	list-style: none;
	line-height: 30px;
	font-family: sans-serif;
}
@media screen and (max-width: 992px) {
	#popup-overlay #popup {
		width: 50%;
	}
}
@media screen and (max-width: 767px) {
	#popup-overlay #popup {
		width: 80%;
	}
}
/*******************************************/
#items-added {
	position: fixed;
	width: 230px;
	bottom: 40px;
	left: 0px;
/*	right: 0px;*/
	z-index: 2;
	background-color: #205648;
	padding: 10px 20px;
	box-shadow: -5px -5px 0px #272928;
	cursor: not-allowed;
	/*
	transition-duration: 0.1s;
	-webkit-transition-duration: 0.1s;
	*/
}
#items-added:active {
	background-color: #a8d1a9;
	box-shadow: -4px -4px 0px #272928;
	transform: translate(-4px);
}
#items-added h5 {
	font-family: sans-serif;
	font-weight: lighter;
	font-size: 15px;
	color: #fff;
}
#items-added p {
	font-family: sans-serif;
	font-weight: lighter;
	font-size: 13px;
	color: #fff;
	margin: 5px 0px;
}
#items-added img {
	width: 30px;
	float: left;
	margin: 5px 10px 5px 0px;
	animation: bounce 2s infinite;
	-webkit-animation: bounce 2s infinite;
	-moz-animation: bounce 2s infinite;
	-o-animation: bounce 2s infinite;
}
@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);} 
	40% {-webkit-transform: translateY(-15px);}
	60% {-webkit-transform: translateY(-10px);}
}
@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
	40% {-moz-transform: translateY(-15px);}
	60% {-moz-transform: translateY(-10px);}
}
@-o-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
	40% {-o-transform: translateY(-15px);}
	60% {-o-transform: translateY(-10px);}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-15px);}
	60% {transform: translateY(-10px);}
}
.item_active {
	background-color: #c9e6ca;
}
.product-clone {
	position: fixed;
	z-index: 9999;
}
.effects {
	animation: 1s ease 0s 2 normal none running items;
	/*	animation: 1s ease 0s infinite normal none running items;*/
}
@keyframes items {
	% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}
.category {
	margin: 10px;
}
.category li {
	list-style: none;
	margin: 10px 0px;
}
.category li a {
	background-color: #c9e6ca;
	padding: 10px 20px;
	display: block;
	font-size: 15px;
	color: #205648;
	font-family: sans-serif;
	transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
}
.category li a:hover {
	background-color: #205648;
	color: #fff;
}
.category li .active {
	background-color: #205648;
	color: #fff;
}
/*******************************************/
