/*
Theme Name: Supply
Theme URI: http://www.demo.themesoldier.com/supply
Description: A Minimal WordPress / WooCommerce Theme by ThemeSoldier.
Author: David Vassett / ThemeSoldier
Author URI: http://www.themesoldier.com
License: GNU General Public License version 3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Version: 1.1.1
*/


/*--------------------------------------------------------------------------------*/
/*  CSS Reset & Clearfix
/*--------------------------------------------------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 */

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;
}

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;
}

.clearfix:after {
	visibility: hidden;
	display: block;
	content: "";
	clear: both;
	height: 0;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}


/*--------------------------------------------------------------------------------*/
/*  Setup
/*--------------------------------------------------------------------------------*/

/* Defaults */

body {
	color: #666;
	font: 12px/24px "Raleway", Verdana, Geneva, sans-serif;

	-webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #444;
	font-family: "Raleway", Verdana, Geneva, sans-serif;
	font-weight: 300;
	margin: 0 0 24px 0;
	text-transform: uppercase;
}

h1 {
	font-size: 32px;
	line-height: 44px;
}

h2 {
	font-size: 26px;
	line-height: 38px;
}

h3 {
	font-size: 22px;
	line-height: 34px;
}

h4 {
	font-size: 18px;
	line-height: 30px;
	font-weight: 700;
}

h5 {
	font-size: 14px;
	line-height: 26px;
	font-weight: 700;
}

h6 {
	font-size: 12px;
	line-height: 24px;
	font-weight: 700;
}

p {
	color: #666;
	font: 12px/24px "Raleway", Verdana, Geneva, sans-serif;
	margin: 0 0 24px 0;
}

p:last-child {
	margin-bottom: 0;
}

strong {
	font-weight: bold;
}

em {

}

img {
	display: block;
	height: auto;
	max-width: 100%;
}

pre {
	background-color: #f8f8f8;
	border: 1px solid #e2e2e2;
	font-family: Consolas, "Andale Mono", Courier, "Courier New", monospace;
	clear: both;
	margin: 0 0 24px 0;
	overflow: auto;
	padding: 20px;
	white-space: pre;
}

dl {
	margin: 0 0 24px 0;
	overflow: hidden;
}

dl:last-child {
	margin-bottom: 0;
}

dt,
dd {
	float: left;
}

dt {
	clear: both;
	font-weight: bold;
	margin: 0 5px 0 0;
}

hr {
	background-color: #e2e2e2;
	border: 0;
	height: 1px;
	margin: 40px 0;
}

/* Forms */

input[type="text"],
input[type="email"],
input[type="password"] {
	background-color: #fff;
	border: 1px solid #e2e2e2;
	display: block;
	height: 34px;
	line-height: 14px;
	padding: 0 10px;
	width: 100%;

	-webkit-appearance: none;

	-webkit-border-radius: 0;

	-webkit-transition: border-color 0.2s linear;
	transition:         border-color 0.2s linear;
}

textarea {
	background-color: #fff;
	border: 1px solid #e2e2e2;
	display: block;
	height: 142px;
	line-height: 24px;
	padding: 10px;
	resize: vertical;
	width: 100%;

	-webkit-appearance: none;

	-webkit-border-radius: 0;

	-webkit-transition: border-color 0.2s linear;
	transition:         border-color 0.2s linear;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
	border-color: #666;
	outline: 0;
}

label {
	display: inline-block;
	margin: 0 10px 10px 0;
}

select {
	margin: 0;
	max-width: 100%;
}

input[type="button"],
input[type="reset"],
input[type="submit"],
button[type="button"],
button[type="reset"],
button[type="submit"] {
	border: 0;
	color: #fff;
	display: block;
	font-weight: 700;
	height: 34px;
	line-height: 24px;
	margin: 0;
	padding: 5px 10px;
	text-transform: uppercase;

	-webkit-appearance: none;

	-webkit-border-radius: 0;

	-webkit-transition: background-color 0.2s linear, color 0.2s linear;
	transition:         background-color 0.2s linear, color 0.2s linear;
}

input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
button[type="button"]:hover,
button[type="reset"]:hover,
button[type="submit"]:hover {
	background-color: #4a5456;
	cursor: pointer;
}

input:focus,
textarea:focus {
	outline: none;
}

input[type="number"] {
	-webkit-appearance: none;

	-webkit-border-radius: 0;
	-moz-border-radius:    0;
	border-radius:         0;
}

input[type="radio"] {
	margin: 4px 10px 5px 0;
}

input[type="checkbox"] {
	margin: 5px 10px 5px 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	margin: 0;

    -webkit-appearance: none;
}

/* Hyperlinks */

a {
	text-decoration: none;

	-webkit-transition: background-color 0.2s linear, color 0.2s linear;
	transition:         background-color 0.2s linear, color 0.2s linear;
}

a:hover {
	color: #555;
}

a.button {
	color: #fff;
	display: inline-block;
	font-weight: 700;
	/*height: 34px;*/
	padding: 5px 10px;
	text-transform: uppercase;
}

a.button:hover {
	background-color: #4a5456;
	cursor: pointer;
	text-decoration: none;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: #444;
}


/*--------------------------------------------------------------------------------*/
/*  Header
/*--------------------------------------------------------------------------------*/

#header {
	background-color: #fff;
}

.header-top {
	background-color: #4a5456;
}

/* Account */

.header-account {
	float: left;
}

.header-login {
	color: #999;
	display: block;
	float: left;
	font-size: 11px;
	font-weight: 700;
	line-height: 30px;
	margin: 0 0 0 20px;
	text-transform: uppercase;
}

.header-cart {
	color: #fff;
	display: block;
	float: left;
}

.header-cart a:hover {
	color: #fff;
}

.cart-contents {
	color: #fff;
	display: none;
	float: left;
	font-size: 11px;
	font-weight: 500;
	line-height: 50px;
	padding: 0 10px;
	text-transform: uppercase;
}

.cart-contents:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

.header-checkout {
	background-color: rgba(0, 0, 0, 0.1);
	color: #fff;
	float: left;
	height: 50px;
	text-align: center;
	width: 50px
}

.header-checkout:hover {
	background-color: transparent;
}

.header-checkout i {
	display: block;
	font-size: 18px;
	line-height: 50px;
}

.header-bottom {
	border-color: #e2e2e2;
	border-style: solid;
	border-width: 1px 0;
	padding: 20px 0;
}

.header-bottom .search-form input[type="text"] {
	background-color: #fff;
	padding: 10px;
	width: 220px;
}

/* Logo */

.logo {
	margin: 40px auto;
	max-width: 100%;
}

.logo-plain {
	font-size: 52px;
	letter-spacing: 4px;
	line-height: 52px;
	margin: 40px 0;
	text-align: center;
}

.logo-plain a {
	color: #4a5456;
}


/*--------------------------------------------------------------------------------*/
/*  Navigation
/*--------------------------------------------------------------------------------*/

/* Primary Nav */

#primary-nav li {
	position: relative;
}

#primary-nav li:last-child a {
	border-right: 1px solid #e2e2e2;
}

#primary-nav li a {
	border-left: 1px solid #e2e2e2;
	color: #666;
	display: block;
	font: 700 12px/24px "Raleway", "Helvetica Neue", Helvetica, sans-serif;
	padding: 13px 15px;
	text-transform: uppercase;
}

#primary-nav li:hover > a {
	background-color: #f8f8f8;
}

#primary-nav li.current-menu-item a,
#primary-nav li.current-menu-parent a {
	background-color: #f8f8f8;
}

#primary-nav li:hover > ul {
	opacity: 1;
	visibility: visible;
}

#primary-nav ul ul {
	background-color: #f8f8f8;
	border-color: #e2e2e2;
	border-style: solid;
	border-width: 0 1px 1px 1px;
	opacity: 0;
	position: absolute;
	visibility: hidden;
	width: 180px;
	z-index: 200;

	-webkit-transition: opacity 0.2s linear, visibility 0.2s linear;
	transition:         opacity 0.2s linear, visibility 0.2s linear;
}

#primary-nav ul ul li {
	float: none;
}

#primary-nav ul ul li:hover > a {
	float: none;
}

#primary-nav ul ul li a {
	border-color: #e2e2e2;
	border-style: solid;
	border-width: 1px 0 0 0;
}

#primary-nav ul ul li:last-child a {
	border-right-width: 0;
}

#primary-nav ul ul ul {
	left: 178px;
	top: 0;
}

/* Secondary */

#secondary-nav {
	float: left;
}

#secondary-nav li {
	float: left;
}

#secondary-nav li a {
	border-left: 1px solid #556163;
	color: #fff;
	display: block;
	font-size: 11px;
	font-weight: 500;
	line-height: 24px;
	padding: 13px 15px;
	text-transform: uppercase;
}

#secondary-nav li:last-child a {
	border-right: 1px solid #556163;
}

#secondary-nav li:hover > ul {
	opacity: 1;
	visibility: visible;
}

#secondary-nav ul ul {
	background-color: #4a5456;
	opacity: 0;
	position: absolute;
	visibility: hidden;
	width: 180px;
	z-index: 200;

	-webkit-transition: opacity 0.2s linear, visibility 0.2s linear;
	transition:         opacity 0.2s linear, visibility 0.2s linear;
}

#secondary-nav ul ul li {
	float: none;
}

#secondary-nav ul ul li a {
	border-top: 1px solid #556163;
	margin: 0;
	padding: 13px 10px 11px 10px;
}

#secondary-nav ul ul ul {
	left: 178px;
	top: -1px;
}

/* Account */

.account-nav {
	float: left;
}

.account-nav li {
	float: left;
}

.account-nav li a {
	border-left: 1px solid #556163;
	color: #fff;
	display: block;
	font-size: 11px;
	font-weight: 500;
	line-height: 24px;
	padding: 13px 15px;
	text-transform: uppercase;
}

.account-nav li:first-child a {

}

.account-nav li:last-child a {

}

.account-nav li i {
	font-size: 12px;
	margin: 0 5px 0 0;
}

/* Footer */

#footer-nav li {
	display: inline-block;
}

#footer-nav li a {
	color: #fff;
	display: inline-block;
	font-size: 11px;
	padding: 13px 15px;
}

/* Responsive */

#primary-nav ul,
#secondary-nav ul {
	display: none;
}

#primary-nav select,
#secondary-nav select {
	display: block;
}

#primary-nav select {
	margin: 0 0 20px 0;
}

#secondary-nav select {
	margin: 16px 15px 16px 0;
}

/*--------------------------------------------------------------------------------*/
/*  Structure
/*--------------------------------------------------------------------------------*/

.inner {
	margin: 0 auto;
	padding: 0 10px;
}

#content {
	margin: 40px auto;
}

#content.home {
	margin: 20px auto 40px auto
}

#primary.full {
	float: none;
	width: 100%;
}


/*--------------------------------------------------------------------------------*/
/*  Pages & Posts
/*--------------------------------------------------------------------------------*/

/* Pages */

.page-title {
	border-bottom: 1px dotted #444;
	padding: 0 0 24px 0;
}

.page-content ol,
.page-content ul {
	list-style: disc inside;
	margin: 0 0 24px 0;
}

.page-content ol:last-child,
.page-content ul:last-child {
	margin-bottom: 0;
}

.page-thumbnail {
	border-top: 1px dotted #444;
	margin: 24px 0 0 0;
	padding: 24px 0 0 0;
}

.page-thumbnail img {
	width: 100%;
}

/* Posts */

.post {
	margin: 0 0 60px 0;
}

.post:last-child {
	margin-bottom: 0;
}

.entry-meta {
	border-color: #e2e2e2;
	border-style: solid;
	border-width: 1px 0 0 0;
}

.entry-meta li {
	border-bottom: 1px solid #e2e2e2;
	display: block;
	padding: 13px 0;
}

.entry-meta li:first-child {
	padding-left: 0;
}

.entry-meta li:last-child {
	border-right: 0;
}

.entry-thumbnail {
	margin: 0 0 24px 0;
}

.entry-thumbnail img {
	width: 100%;
}

.entry-content {
	margin: 0 0 24px 0;
}

.entry-content ol,
.entry-content ul {
	list-style: disc inside;
	margin: 0 0 24px 0;
}

.entry-content ol:last-child,
.entry-content ul:last-child {
	margin-bottom: 0;
}

/* Single */

.single-post .post {
	border-bottom: 1px dotted #444;
	padding: 0 0 60px 0;
}

.single-post .entry-meta {
	margin: 0 0 24px 0;
}

.entry-categories i,
.entry-tags i {
	float: left;
	font-size: 14px;
	line-height: 24px;
	width: 24px;
}

/* Search Results */

.search-result {
	border-bottom: 1px solid #e2e2e2;
	margin: 0 0 30px 0;
	padding: 0 0 30px 0;
}

.search-result h5 {
	margin-bottom: 10px;
}

/* Pagination */

.pagination .alignleft {
	float: left;
}

.pagination .alignright {
	float: right;
}

.pagination a {
	color: #fff;
	display: block;
	font-weight: 700;
	line-height: 30px;
	padding: 0 10px;
}

.pagination a:hover {
	background-color: #4a5456;
}


/*--------------------------------------------------------------------------------*/
/*	COMMENTS
/*--------------------------------------------------------------------------------*/

#comment-container {
	margin: 40px 0 0 0;
}

.comment-none {
	margin: 0 0 20px 0;
}

#comment-container #respond {
	background-color: #fff;
	border: 1px solid #e2e2e2;
	clear: both;
	margin: 40px 0;
	padding: 20px;
}

#comment-container > #respond {
	margin-bottom: 0;
}

#comment-container #respond:last-child {
	margin-bottom: 0;
}

#reply-title {
	font-size: 14px;
	font-weight: 700;
	line-height: 26px;
}

#cancel-comment-reply-link:hover {
	color: #444;
}

.comment-list li {
	margin: 0 0 20px 0;
}

.comment-list li:last-child {
	margin-bottom: 0;
}

.comment-list .children {
	margin: 0 0 20px 0;
}

.comment-list .children:last-child {
	margin-bottom: 0;
}

.comment-avatar {
	float: left;
	margin: 0 20px 20px 0;
}

.comment-meta {
	margin: 0 0 10px 0;
}

.comment-meta .comment-date,
.comment-meta .comment-reply {
	font-size: 11px;
}

.comment-author {
	font-weight: bold;
}

.comment-content {
	overflow: auto;
}

.comment-content ul {
	list-style-type: disc;
	margin: 0 0 20px 30px;
}

.comment-content ol {
	margin: 0 0 20px 30px;
}

.comment-content ul li,
.comment-content ol li {
	line-height: 24px;
	margin: 0;
}

#commentform .form-submit {
	margin-bottom: 0;
}

/* Pagination */

.pagination-comment {
	margin: 40px 0 0 0;
}

.pagination-comment a {
	color: #fff;
	display: block;
	font-weight: 700;
	line-height: 30px;
	padding: 0 10px;
}

.pagination-comment a:hover {
	background-color: #4a5456;
}

.pagination-comment .alignleft {
	float: left;
}

.pagination-comment .alignright {
	float: right;
}


/*--------------------------------------------------------------------------------*/
/*  Contact
/*--------------------------------------------------------------------------------*/

/* Map */

.pw_map_canvas {
	margin: 0 0 20px 0;
}

.pw_map_canvas:last-child {
	margin-bottom: 0;
}

/* Contact Form 7 */

.wpcf7 {
	background-color: #fff;
	border: 1px solid #e2e2e2;
	margin: 0 0 20px 0;
	padding: 20px;
}

.wpcf7:last-child {
	margin-bottom: 0;
}

.wpcf7 p:last-of-type {
	margin-bottom: 0;
}

.wpcf7-not-valid {
	border-color: #e25552 !important;
}

.wpcf7-not-valid-tip {
	display: none;
}

.wpcf7-validation-errors {
	color: #e25552;
	font-weight: 700;
}

.wpcf7-response-output {
	display: none;
	margin: 20px 0 0 0;
}

.ajax-loader {
	display: none;
}


/*--------------------------------------------------------------------------------*/
/*  Sidebar
/*--------------------------------------------------------------------------------*/

#sidebar {
	border-top: 1px dotted #444;
	margin: 60px 0 0 0;
	padding: 60px 0 0 0;
}

#sidebar .back {
	display: none;
	height: 69px;
	border-bottom: 1px solid #ddd;
	margin: 0 0 20px 0;
	padding: 14px 0 31px 0;
}

#sidebar .back a {
	color: #9a9a9a;
	font-weight: 700;
	text-transform: uppercase;
}


/*--------------------------------------------------------------------------------*/
/* Widgets
/*--------------------------------------------------------------------------------*/

.widget h5 {
	font-size: 12px;
	font-weight: 700;
	line-height: 24px;
	text-transform: uppercase;
}

.widget p {
	font-size: 12px;
}

/* Menu */

.widget_nav_menu ul {
	-webkit-column-count: 2;
	-moz-column-count:    2;
	column-count:         2;
}

.widget_nav_menu ul ul {
	-webkit-column-count: 1;
	-moz-column-count:    1;
	column-count:         1;
}

/* Tag Cloud */

.widget_tag_cloud a {
	background-color: #fff;
	border: 1px solid #e2e2e2;
	color: #666;
	display: inline-block;
	font-size: 11px !important;
	line-height: 14px;
	margin: 0 2px 5px 0;
	padding: 5px;

	-webkit-transition: border-color 0.2s linear;
	transition:         border-color 0.2s linear;
}

/* Calendar */

.widget_calendar #wp-calendar {
	width: 100%;
}

.widget_calendar #wp-calendar caption {
	margin: 0 0 10px 0;
	text-transform: uppercase;
}

.widget_calendar #calendar_wrap thead th,
.widget_calendar #calendar_wrap tbody td {
	border: 1px solid #e2e2e2;
	height: 29px;
	padding: 0;
	text-align: center;
	vertical-align: middle;
}

.widget_calendar #wp-calendar thead th {
	font-weight: bold;
}

.widget_calendar #calendar_wrap tbody td {
	height: 29px;
}

.widget_calendar #calendar_wrap tbody a {
	font-weight: bold;
}

.widget_calendar #calendar_wrap tfoot td#prev {
	padding: 10px 0 0 0;
}

.widget_calendar #calendar_wrap tfoot td#prev {
	text-align: left;
}

.widget_calendar #calendar_wrap tfoot td#next {
	text-align: right;
}

/* RSS */

.widget .widget-title .rsswidget img {
	float: right;
	margin: 5px 0;
}

.widget_rss li {
	margin: 0 0 20px 0 !important;
}

.widget_rss li:last-child {
	margin-bottom: 0;
}

.widget_rss .rss-date {
	display: block;
	font-size: 11px;
}

.widget_rss .rssSummary {
	margin: 10px 0 0 0;
}

.widget_rss cite {
	font-size: 12px;
	margin: 5px 0 0 0;
}

/* Sidebar */

#sidebar .widget {
	border-bottom: 1px solid #ddd;
	margin: 0 auto 30px auto;
	padding: 0 0 30px 0;
	width: 220px;
	text-align: center;
}

#sidebar .widget:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

#sidebar .widget li {
	margin: 0 0 5px 0;
}

#sidebar .widget li:last-child {
	margin-bottom: 0;
}

/* Footer */

.footer-widgets .widget {
	margin: 0 auto 40px auto;
	text-align: center;
	width: 220px;
}

.footer-widgets .widget:last-child {
	margin-bottom: 0;
}


/*--------------------------------------------------------------------------------*/
/*  Footer
/*--------------------------------------------------------------------------------*/

#footer {
	background-color: #fff;
	border-top: 1px solid #e2e2e2;
	clear: both;
}

.footer-widgets {
	padding: 40px 0;
}

.footer-bottom {
	background-color: #4a5456;
	text-align: center;
}

.copyright p {
	color: #fff;
	font-size: 11px;
	margin: 13px 0;
}

.copyright a:hover {
	color: #fff;
}

.social-follow a {
	color: #fff;
	display: inline-block;
	height: 50px;
	margin: 0 -4px 0 0;
	text-align: center;
	width: 26px;
}

.social-follow a:last-child {
	margin-right: 0;
}

.social-follow a i {
	font-size: 16px;
	line-height: 50px;
}


/*--------------------------------------------------------------------------------*/
/*  Homepage
/*--------------------------------------------------------------------------------*/

.page-template-template-homepage-php #header {
	margin: 0 0 20px 0;
}

/* Slider */

.home-slider {
	margin: 0 0 20px 0;
}

.home-slider .flexslider {
	position: relative;
}

.home-slider .flexslider .slides li {
	position: relative;
}

.home-slider .flex-slide-title {
	background-color: #4a5456;
	bottom: 20px;
	color: #fff;
	display: none;
	left: 20px;
	margin-bottom: 0;
	padding: 5px 10px;
	position: absolute;
}

.home-slider .flex-control-nav {
	line-height: 0;
	position: absolute;
	right: 20px;
	top: 20px
}

.home-slider .flex-control-nav li {
	display: block;
	float: left;
	margin: 0 10px 0 0;
}

.home-slider .flex-control-nav li:last-child {
	margin-right: 0;
}

.home-slider .flex-control-nav li a {
	background-color: #4a5456;
	cursor: pointer;
	display: block;
	height: 12px;
	text-indent: -9999px;
	width: 12px;
}

.home-slider .flex-control-nav li a.flex-active {
	cursor: default;
}

.home-slider .flex-direction-nav {
	display: none;
}

/* Tagline */

.home-tagline {
	color: #444;
	border-bottom: 1px solid #e2e2e2;
	border-top: 1px dotted #444;
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 20px 0;
	padding: 10px 20px;
	text-align: center;
	text-transform: uppercase;
}


/*--------------------------------------------------------------------------------*/
/* Misc
/*--------------------------------------------------------------------------------*/

.aligncenter {
	clear: both;
	display: block;
	float: none;
	margin: 0 auto;
}

.clear {
	clear: both;
}

.wp-caption,
.wp-caption-text,
.gallery-caption {
    margin: 10px 0;
    text-align: center;
}

.sticky {
}

.bypostauthor {
}

.seperator {
	border-bottom: 1px solid #e2e2e2;
	clear: both;
	margin: 0 0 40px 0;
	padding: 40px 0 0 0;
}




.top-search{ float: right; margin-top: 90px;}
.logo{ float: left;}
.products .product .thumbnail-alt{ width: 100% !important;}




.woocommerce div.product form.cart div.quantity{ margin-bottom: 20px !important;}


.products .product .thumbnail img {height:230px !important;}











