@import url(//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css);
@import url('https://fonts.googleapis.com/css?family=Montserrat');

/****************************************** 

Author : Joseph Goddard

[Table of contents]

1. Body / Typography 
2. Header
3. Nav
4. Slideshow - Media
5. Footer
6. Misc
7. Media Queries



******************************************/

/***********
1.) Body / Typography
************/
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	justify-content: space-between;
	font-family: 'Montserrat', sans-serif;
}

img {pointer-events: none;}

#member-wrapper, #member-wrapper-with-sidebar {
	flex:1;
}

#site-wrapper {
	/*width: 80%;*/
	margin: 0 auto;
	flex:1;
	padding-top: 32px;
}

#home-wrapper {
	 width: 100%;
	 flex:1;
}

.home-container {
	width: 80%;
	margin: 20px auto;
	text-align: center;
	font-size: 20px;
    line-height: 30px;
}

a {
	text-decoration: none;
	color: #000;
}

#member-wrapper, #member-wrapper-with-sidebar {
	padding-top: 20px;
}

/***********
2.) Header
************/
#site-header{
	 width: 100%;
	 background-color: #eee;
	 background: url('../img/bg.jpg');
	 background-size: cover;
	 display: flex;
	 flex-direction: column;
	 justify-content: space-between;
	}
#inner-header {
	width: 90%;
	min-height: 130px;
	margin:0 auto;
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
}

.logo { width:35%}
.logo img {
	width: 100%;
	height: auto;
}

.form-set {
	margin-bottom: 2px;
}

.header-log-in a:link, .header-log-in a:visited { color: #ffffff; /*tan #ffe9d0*/ }


/***********
3.) Nav
************/
#site-nav-wrapper {
	background-color: #000;
}

.site-nav {
	width: 80%;
	margin: 0 auto;
}

/***********
4.) Slideshow - Media
************/

/***********
5.) Footer
************/
#site-footer{
	width: 100%;
	background-color: #eee;
	background: url('../img/bottom_bg.jpg');
	background-size:cover;
}

#inner-footer {
	width: 90%;
	min-height: 100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.social {
    display: flex;
    list-style-type: none;
    font-size: 26px;
}

.social li {
	padding: 0 10px;
}

.social li a {
	color: #ffffff; /*tan #ffe9d0;*/
}

.social li:first-child {
	padding-left: 0; 
}

/***********
6.) Misc
************/
.center {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	text-align: center;
}

#loginWrapper {
	width: 60%;
	margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    align-items: center;
    line-height: 20px;
}

.logininfo {
    width: 50%;
    padding-right: 20px;
}

#member-Sidebar {
	width: 300px !important;
	/*padding-top: 0 !important;*/
	border-right: 2px solid #000;
}

.currentCat select {
	max-width: 350px;
}

#side-nav {
	text-align: left;
}

.nav-sub-category {
	padding-left: 24px !important;
}

.pages {
	padding: 10px 0;
}

.catpic img {
    height: auto;
}

.subcat-item {
	min-height: 70px;
	margin-bottom:50px;
}

.subcat-item a:hover, #side-nav li a:hover {
	color: blue;
}
.subcat-item img.thumbnail {max-height:125px;max-width:125px}

.item {
	font-size: 14px;
}

.search-box {
	background-color: #fff;
}

.search-button, .search-submit {
	border: none;
	padding: 10px;
}

.inner-cart-item {border-none}
.outter-cart-item {padding:1%}
.outter-cart-item:nth-child(even){background:#eeeeee}


/**********
ByList
***********/
.BodyBg {width:80%;margin-left:10%}

.byList-item-container, .byListItem {width:100%}

.left-container {
  float:left;
  text-align: left;
  width:20%;
}
.right-container {
  float:left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 80%; /*40%;*/
}
div#byList-sku, div#byList-price, div#byList-qty, div#byList-min  {float:left;width:45%;margin:10px 0}
.space-between {
  display: flex;
  justify-content: space-between;
  text-align: left;
}


/***********
7.) Media Queries
************/
/*Responsive*/
@media (max-width: 1440px) {
	
}
/*Laptop*/
@media (max-width: 1024px) {
	
}
/*Tablet*/
@media (max-width: 768px) {
	#inner-header {
		flex-direction: column;
	}
	#loginWrapper {
		width: 90%;
		flex-direction: column;
		line-height: 24px;
	}
	.logininfo {
		width: 100%;
	}
	#site-nav-wrapper {
		background-color: #fff;
	}
}
/*Iphone6+*/
@media (max-width: 414px) {
	#inner-header, #inner-footer {
		flex-direction: column;
	}
	#inner-footer {
		padding: 10px 0;
	}
}
/*Iphone6*/
@media (max-width: 375px) {
	#inner-header, #inner-footer {
		flex-direction: column;
	}
	#inner-footer {
		padding: 10px 0;
	}
}


