/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	font-family: 'Open Sans', sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* starting scrollit css */

header {
    text-align: center;
    padding: 20px 45px;
    border-bottom: 1px solid #000;
}

.logo {
    margin-top: -11px;
}
.logo img {
    max-width: 265px;
    margin: -87px 0;
}

.search {
    float: right;
    margin-top: -44px;
}

input.searchBar {
    padding: 9px 20px;
    min-width: 224px;
    border-radius: 2px;
    border: 1px solid #dedede;
    background: #fafafa;
}

/* body */

.container {
    width: 822px;
    margin: 0 auto;
    padding: 25px 0;
}

.profile {
    display: flex;
    align-items: center;
    justify-content: left;
    padding-bottom: 35px;
}

.profileInfo {
    padding: 0 10px;
}

h2 {
    font-size: 1em;
    font-weight: bold;
    padding-bottom: 5px;
}

h3 {
    font-size: 0.75em;
    display: inline-block;
}

h3 + span {
    font-size: 0.75em;
}

/* products */

.products {
    overflow: auto;
    padding-bottom: 25px;
}

.single-product {
    width: 33.33%;
    float: left;
    min-height: 340px;
}

.single-product-image {
    padding: 0 8px;
    margin-bottom: 20px;
    max-height: 248px;
    overflow: hidden;
}

.single-product-image > img {
	width: 100%;
	height: auto;
}

.single-product-info {
    padding: 0 8px;
}

h4 {
    font-weight: bold;
    font-size: 0.8em;
}


h5 {
    font-size: 0.8em;
    padding-top: 7px;
}

.price {
    float: right;
    margin-top: -32px;
    text-align: right;
    margin-right: 10px;
}

.price {
    float: right;
    margin-top: -32px;
    text-align: right;
    margin-right: 3px;
    font-size: 0.85em;
    color: #4493b4;
    font-weight: bold;
}

h6 {
    font-weight: bold;
    text-align: center;
    letter-spacing: 1.2px;
}

footer {
    padding: 15px 0;
    text-align: center;
    font-size: 0.70em;
    border-top: 1px solid #a5a5a5;
    color: #a5a5a5;
    margin-top: 11px;
}
.mobile-hidden {
	display: none;
}

.tripledot {
    width: 25px;
    position: absolute;
    right: 10px;
    top: 120px;
}

.tripledot > img {
    width: 100%;
    height: auto;
}



/* mobile */

@media screen and (max-width: 780px) {

	.container {
		width: 100%;
		padding-top: 10px;
	}
	.logo {
		padding-top: 15px;
	}
	header {
		text-align: center;
		padding: 0;
		border-bottom: 0;
	}
	.logo > img {
		max-width: 130px;
		margin: -43px 0;
	}
	.search {
		display: none;
	}

	.profile {
		padding: 0 20px;
		padding-bottom: 25px;
	}
	.single-product {
		width: 50%;
		float: left;
		min-height: 200px;
	}
	.single-product h4, .single-product h5 {
		display: none;
	}

	.price {
		margin-top: -23px;
		margin-right: 1px;
		z-index: 20;
		position: relative;
		border: 1px solid #dedede;
		padding: 5px;
	}
	button.profileButton {
		background: #fff;
		border: 1px solid #969696;
		width: 100%;
		padding: 5px 0;
		font-size: 0.8em;
	}
	.mobile-hidden {
		display: block;
		padding: 0 5px;
		margin-bottom: 17px;
	}
	h6 {
		position: fixed;
		bottom: 0;
		z-index: 34;
		background: #fff;
		left: 0;
		right: 0;
		padding: 20px 0;
	}


}