/* Eshop */
#eshop_products {
}
#eshop_products > li {
}
#eshop_products > li h4 {
	font-weight: normal;
}
#eshop_products > li h3 {
	font-family: 'proxima_nova_rgbold', 'arial', 'sans-serif';
	font-weight: normal;
}
#eshop_products > li .items img:hover {
	filter: alpha(opacity=60);
	-moz-opacity: 0.60;
	opacity: 0.60;
}
#eshop_products > li .thumbnail {
}
#eshop_products > li .thumbnail img {
}
#eshop_products > li .items {
	padding-top: 15px;
}
#eshop_products > li .items li {
	float: left;
	width: 25px;
	height: 25px;
	padding: 3px;
}
#eshop_products > li .items li img {
	width: 25px;
}
#add_product {
	padding: 20px;
}
#add_product h2 {
	margin-bottom: 20px;
}


/* Eshop tools */
#eshop_tools {
	padding: var(--default-spacing) 0;
	position: relative;
}
#search {
    padding-right: var(--default-spacing);
}
#search input {
	width: 120px;
	border: 1px solid #999;
}
#eshop_tools form > *{
    margin-bottom: 10px;
}
#search button {
	background: url('../img/search.svg') no-repeat left center;
    background-size: 100%;
	width: 21px;
	height: 28px;
	text-indent: -5000px;
	position: relative;
	top: 3px;
	left: 5px;
}
#eshop_tools .infos {
	text-transform: uppercase;
	margin-bottom: 20px;
	display: block;
	padding-right: 20px;
}
#eshop_tools .notice {
    font-size: 13px;
    letter-spacing: 0;
    text-align: right;
    margin-top: var(--default-spacing);
}
#eshop_tools .notice a {
	text-decoration: underline;
}
#eshop .query {
    margin-bottom: var(--default-spacing);
}
#eshop .query a {
    color: #fff;
    padding: 5px;
    padding-right: 25px;
    background: url('../img/close_white.svg') no-repeat center right 10px;
    background-size: 8px;
    background-color: #000;
}
.cancel {
	width: 10px;
	height: 10px;
}
@media only screen and (min-width: 768px) {
    #eshop_tools form {
    	display: inline;
    }
    #eshop_tools .notice {
    	position: absolute;
    	right: 0;
    	top: 0;
    }
    #eshop_tools form > * {
        margin-bottom: 0;
    }
}


/* Product */
#product {
	height: 100vh;
    box-sizing: border-box;
    padding: var(--default-spacing);
    background: #fff;
}
/*#product .back {
	display: inline-block;
	padding: 10px;
	margin-bottom: 10px;
}
#product .back a {
	color: #fff;
}*/
#product .price {
	font-family: 'proxima_nova_rgbold','arial','sans-serif';
	font-size: 20px;
	color: #000;
	height: 30px;
}
#product .price_total {
    font-family: 'proxima_nova_rgbold','arial','sans-serif';
    padding: 0 10px;
    font-size: 20px;
}
#slideshow_container {
	width: 100%;
}
.slides li {
	width: 100%;
	background: #fff;
}
.slides li img {
    width: 100%;
    display: block;
}
#product .details {
    padding: var(--default-spacing) 0;
} 
#product h2 {
	font-size: 23px;
	line-height: 23px;
	text-transform: uppercase;
	font-weight: normal;
	color: #000;
}
#product h3 {
	font-weight: normal;
}
#product h3,
#product .discounts,
#product .description,
#product .infos,
#product .buttons,
#product .items {
	margin-bottom: 20px;
}
#product .discounts {
	background: #f2f2f2;
	padding: 10px;
	color: #000;
	font-size: 15px;
	border-radius: 10px;
}
#product .items li {
	display: inline;
}
#product .items li img {
	padding: 3px;
	border: 1px solid #fff;
}
#product .items li:hover a img,
#product .items li a.selected img { 
	border: 1px solid #000;
}
#product .infos h4 {
	text-transform: uppercase;
	font-weight: normal;
	color: #000;
}
#product table {
	margin-bottom: 10px;
	width: 100%;
}
#product table td {
	padding: 3px;
}
@media only screen and (min-width: 768px) {
    #product {
        height: auto;
        min-height: 450px;
    }
    #product .header {
        display: flex;
    }
    #product .header .title {
        flex-grow: 1;
    }
    #product > .wrapper {
        display: flex;
    }
    #product #slideshow_container {
        width: 50%;
    }
    #product .details {
        width: 50%;
        padding: 0 var(--default-spacing);
    }
}
    
    
    
    
    
    
    
    
    
    
