﻿/* CSS Document */
html, body {
	height: 100%;
}
body {
	background-image: url('../img/main_bg.png');
	background-position: center;
	background-repeat: repeat-x;
	background-attachment: fixed;
}
.wrapper {
	max-width: 1126px;
	width: 100%;
	margin: 0 auto -20px;
}
/* ------------------ header ------------------- */
#header {
	width: 100%;
	margin-top: 25px;
	height: 218px;
	background-image: url('../img/lumaan_logo_s.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
/* ------------------ navigation ------------------- */
#nav {
	width: 100%;
	height: 66px;
	position: -webkit-sticky;
	position: sticky;
	top: 0px;
	background-color: transparent;
	border-radius: 0px 0px 5px 5px;
}
#nav .wrap-nav {
	height: 50px;
	background: #333333;
}
#nav table {
	border: 0px solid black;
	width: 100%;
	height: 66px;
	margin-top: 0px;
	display: block;
}
#nav table tbody tr {
	border: 0px solid black;
	width: 100%;
	height: 60px;
}
#nav table tbody tr td {
	border: 0px solid black;
	width: 100px;
	height: 50px;
}
#nav table tbody tr td:hover {
	background-image: url('../img/buzzing_bee_s.gif');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#filler {
	width: inherit;
	background-color: fuchsia;
	background-image: none;
}
#filler:hover {
	width: inherit;
	background-color: fuchsia;
	background-image: none;
}
/* ------------------ nav buttons ------------------ */
#navButtonHome {
	border-style: none;
	border-color: inherit;
	border-width: 1px;
	background-image: url('../img/nav_home.png');
	background-position: center;
	background-repeat: no-repeat;
	width: 100px;
	height: 50px;
	margin: 0;
	padding: 0;
	cursor: pointer;
}
#navButtonHome:hover, #navButtonHome:focus {
	padding-left: 0px;
	width: 100px;
	height: 50px;
	background-image: url('../img/nav_home_hover.png');
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
}
#navButtonOurStore {
	border-style: none;
	border-color: inherit;
	border-width: 1px;
	background-image: url('../img/nav_our_store.png');
	background-position: center;
	background-repeat: no-repeat;
	width: 100px;
	height: 50px;
	margin: 0;
	padding: 0;
	cursor: pointer;
}
#navButtonOurStore:hover, #navButtonOurStore:focus {
	padding-left: 0px;
	width: 100px;
	height: 50px;
	background-image: url('../img/nav_our_store_hover.png');
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
}
#navButtonAboutUs {
	padding-left: 0px;
	width: 100px;
	height: 50px;
	background-image: url('../img/nav_about_us.png');
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
}
#navButtonAboutUs:hover, #navButtonAboutUs:focus {
	padding-left: 0px;
	width: 100px;
	height: 50px;
	background-image: url('../img/nav_about_us_hover.png');
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
}
#navButtonShoppingTote {
	padding-left: 0px;
	width: 100px;
	height: 50px;
	background-image: url('../img/nav_shopping_tote_empty.png');
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
}
#navButtonShoppingTote:hover, #navButtonShoppingTote:focus,   {
	padding-left: 0px;
	width: 100px;
	height: 50px;
	background-image: url('../img/nav_shopping_tote_empty_hover.png');
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
}
@keyframes fadein {
	from {background-color: transparent; opacity: 1;}
	to {background-color: white; opacity: 0.8;}
}
@keyframes fadeout {
	from {background-color: white; opacity: 0.8;}
	to {background-color: transparent; opacity: 1;}
}
/* ------------------ Tooltips ------------------ */
.tooltip {
	position: relative;
	display: inline-block;
}
.tooltip .tooltiptext {
	visibility: hidden;
	min-width: 130px;
	background-color: gray;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
	top: 100%;
	left: 50%;
	margin-left: -60px;
	opacity: 0;
	transition: opacity 1s linear 1s;
}
.tooltip .tooltiptext::after {
	content: " ";
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent gray transparent;
}
.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}
/* ------------------ dropdown menus ------------ */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	overflow: auto;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}
.dropdown-content a:hover {
	background-color: #f1f1f1;
}
.show {
	display: block;
}
/* ------------------ content ------------------- */
#content {
	width: 100%;
	min-height: 1000px;
}
#content h2 {
	font-size: 16px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 16px;
}
#content h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 110%;
	font-weight: normal;
	text-align: center;
	color: #008493;
	text-shadow: 0 1px 1px #dadada;
}
#content p {
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	line-height: 18px;
	text-align: justify;
}
#content a {
	color: #DA251D;
}
.box1 {
	margin: 5px 7px;
	padding: 10px;
}
.box1 h2 {
	text-align: center;
}
.box2 {
	margin: 0px 7px;
	padding: 10px;
	text-align: left;
}
.box3 {
	margin: 5px 7px;
	padding: 10px;
	text-align: left;
}
div.line {
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #D7D7D7;
}
.shopping-cart {
	width: 750px;
	height: 423px;
	margin: 80px auto;
	background: #FFFFFF;
	box-shadow: 1px 2px 3px 0px rgba(0,0,0,0.10);
	border-radius: 6px;
	display: flex;
	flex-direction: column;
}
.title {
	height: 60px;
	border-bottom: 1px solid #E1E8EE;
	padding: 20px 30px;
	color: #5E6977;
	font-size: 18px;
	font-weight: 400;
}
.item {
	padding: 20px 30px;
	height: 120px;
	display: flex;
}
.item:nth-child(3) {
  border-top:  1px solid #E1E8EE;
  border-bottom:  1px solid #E1E8EE;
}
/* Buttons -  Delete and Like */
.buttons {
	position: relative;
	padding-top: 30px;
	margin-right: 60px;
}
.delete-btn {
	display: inline-block;
	cursor: pointer;
	width: 18px;
	height: 17px;
	background: url('../img/delete-icn.svg') no-repeat center;
	margin-right: 20px;
}
.like-btn {
	position: absolute;
	top: 9px;
	left: 15px;
	display: inline-block;
	background: url('../img/twitter-heart.png') no-repeat;
	width: 60px;
	height: 60px;
	background-size: 2900%;
	cursor: pointer;
}
.is-active {
	animation-name: animate;
	animation-duration: .8s;
	animation-iteration-count: 1;
	animation-timing-function: steps(28);
	animation-fill-mode: forwards;
}
@keyframes animate {
  0%   { background-position: left;  }
  50%  { background-position: right; }
  100% { background-position: right; }
}
/* Product Image */
.image {
	margin-right: 50px;
}
/* Product Description */
.description {
	padding-top: 10px;
	margin-right: 60px;
	width: 115px;
}
.description span {
	display: block;
	font-size: 14px;
	color: #43484D;
	font-weight: 400;
}
.description span:first-child {
	margin-bottom: 5px;
}
.description span:last-child {
	font-weight: 300;
	margin-top: 8px;
	color: #86939E;
}
/* Product Quantity */
.quantity {
	padding-top: 20px;
	margin-right: 60px;
}
.quantity input {
	-webkit-appearance: none;
	border: none;
	text-align: center;
	width: 32px;
	font-size: 16px;
	color: #43484D;
	font-weight: 300;
}
button[class*=btn] {
	width: 30px;
	height: 30px;
	background-color: #E1E8EE;
	border-radius: 6px;
	border: none;
	cursor: pointer;
}
.minus-btn img {
	margin-bottom: 3px;
}
.plus-btn img {
	margin-top: 2px;
}
button:focus, input:focus {
	outline: 0;
}
/* Total Price */
.total-price {
	width: 83px;
	padding-top: 27px;
	text-align: center;
	font-size: 16px;
	color: #43484D;
	font-weight: 300;
}
/* ------------------ footer -------------------- */
#footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100px;
	text-align: center;
	background-image: url('../img/footer_grass.png');
	background-position: center;
	background-repeat: repeat-x;
}
#footer p {
	font-size: 12px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	line-height: 30px;
	color: #ffffff;
	vertical-align: bottom;
	padding-top: 60px;
}
#footer a {
	color: #ffffff;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: underline;
}
/* Responsive */
@media (max-width: 800px) {
.shopping-cart {
	width: 100%;
	height: auto;
	overflow: hidden;
}
.item {
	height: auto;
	flex-wrap: wrap;
	justify-content: center;
}
.image img {
	width: 50%;
}
.image, .quantity, .description {
	width: 100%;
	text-align: center;
	margin: 6px 0;
}
.buttons {
	margin-right: 20px;
}
/* -------------------- column and row ------------------- */
.wraptext {
	margin: 5px;
}
.text .co1umn1, .text .co1umn2 {
	float: left;
	display: inline-block;
}
.text .wraptext {
	margin: 16px;
}
}
/*----------	Tablet size    ---------*/
@media only screen and (max-width: 760px) {
body {
	margin-top: 10px;
}
#header {
	width: 100%;
	background-repeat: no-repeat;
	height: 150px;
	margin-left: 0;
	display: block;
}
#nav {
}
#nav table {
	border: 0px solid black;
	width: 100%;
	height: 33px;
	margin-top: 0px;
	display: block;
}
#nav table tbody tr {
	border: 0px solid black;
	width: 100%;
	height: 30px;
}
#nav table tbody tr td {
	border: 0px solid black;
	width: 50px;
	height: 25px;
}
#nav table tbody tr td:hover {
	background-image: url('../img/buzzing_bee_s.gif');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#filler {
	width: inherit;
	background-color: fuchsia;
	background-image: none;
}
#filler:hover {
	width: inherit;
	background-color: fuchsia;
	background-image: none;
}
/* ------------------ nav buttons ------------------ */
#navButtonHome {
	padding-left: 0px;
	width: 50px;
	height: 25px;
	background-image: url('../img/nav_home.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#navButtonHome:hover {
	padding-left: 0px;
	width: 50px;
	height: 25px;
	background-image: url('../img/nav_home_hover.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#navButtonOurStore {
	padding-left: 0px;
	width: 50px;
	height: 25px;
	background-image: url('../img/nav_our_store.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#navButtonOurStore:hover {
	padding-left: 0px;
	width: 50px;
	height: 25px;
	background-image: url('../img/nav_our_store_hover.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#navButtonAboutUs {
	padding-left: 0px;
	width: 50px;
	height: 25px;
	background-image: url('../img/nav_about_us.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#navButtonAboutUs:hover {
	padding-left: 0px;
	width: 50px;
	height: 25px;
	background-image: url('../img/nav_about_us_hover.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#navButtonShoppingTote {
	padding-left: 0px;
	width: 50px;
	height: 25px;
	background-image: url('../img/nav_shopping_tote_empty.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#navButtonShoppingTote:hover {
	padding-left: 0px;
	width: 50px;
	height: 25px;
	background-image: url('../img/nav_shopping_tote_empty_hover.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
/* ------------------ content ---------------------- */
.wrapper {
	margin-bottom: 0;
}
#content {
	min-height: 640px;
}
#content .wrap-content {
	display: block;
	width: 100%;
}
.text .wraptext {
	margin: 16px;
}
.box1 .box2 .box3 {
	margin: 0px 7px;
	padding: 5px;
}
}