/*
Theme Name:   	Storefront Child Theme
Theme URI:    	https://github.com/stuartduff/storefront-child-theme
Author:       	Stuart Duff
Author URI:     http://stuartduff.com
Template:     	storefront
Description:  	This is a blank child theme for WooThemes StoreFront theme
Version:      	1.0.0
License:      	GNU General Public License v2 or later
License URI:  	http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  	storefront
Tags:         	black, white, light, two-columns, left-sidebar, right-sidebar, responsive-layout, custom-background, custom-colors, custom-header, custom-menu, featured-images, full-width-template, threaded-comments, accessibility-ready
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
Storefront is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.
Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
FontAwesome License: SIL Open Font License - http://scripts.sil.org/OFL
Images License: GNU General Public License v2 or later
*/
/*
 * Add your own custom css below this text.
 */

.black {color: black;}
.x-large {font-size: 1.6em;}
.x-small {font-size: .8em;}

.siteLogo {
	display:flex;
	flex-direction:row;
}

.logo-container {
	border: 1px solid #888888;
}


/* Cart > Buttons > QTY*/


/*Minus button *style*/
selector .cart button.minus{
    margin-right: 0px;
    background-color: black;
    color: white;
    padding: 0px 20px 0px 20px;
    border: none;
    font-size: 33px
	height: 100%;
}
/*plus button style*/
selector .cart button.plus{
    margin-left: 0px;
    background-color: black;
    color: white;
    padding: 0px 20px;
    border: none;
    font-size: 22px
	height: 100%;
	vertical-align: top;
}
/*Button clicked*/
selector .cart button:focus{
    outline: none;
}

/* Top bar Cart */

#topBarCart a{
	padding:0;
}

#header-search-button .eael-advanced-search-button {
    margin-left: 0;

}

/*Add to cart button*/
.woocommerce div.product form.cart .button {
    margin-left: 15px;
    padding: 15px 70px
}
/*Cart price*/
.woocommerce div.product span.price {
    color: black;
}

/*Cart price bottom spacing*/
.woocommerce-variation-price{
    margin-bottom: 10px;
}

/* Disable input arrows Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Disable input arrows Firefox */
input[type=number] {
  -moz-appearance: textfield;
}



@media(max-width:917px){
	
	/*Add to cart button*/
	.woocommerce div.product form.cart .button {
		margin-left: 10px;
		padding: 15px 20px
	}

	/*Minus button *style*/
	selector .cart button.minus{
		padding: 0px 13px;
	}

	/*plus button style*/
	selector .cart button.plus{
		padding: 0px 13px;
	}
	
}