@charset "UTF-8";
/* CSS Document */

#shop {
	width: 100%;
    max-width: 1280px;
    margin: 20px auto 0;
}

/*MENU*/
#shop-menu {
	
}

#shop-menu-title {
	/*width:100%;*/
	padding:5px 0;
	margin:0px 10px;
	text-transform:uppercase;
	border-bottom:1px solid #1D1D1B;
	cursor:pointer;
}


#shop-menu-content {
	border-bottom:1px solid #1D1D1B;
	min-height:0;
    margin: 0px 10px;
	/*display:none;*/
}

#filter-form{
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	}

.filter-item {
    position: relative;
/*	width:20%;*/
	height:auto;
	min-height:100px;
	padding:10px;
	box-sizing:border-box;
    flex-grow: 1;
    max-width: calc(100%/3);
/*    min-width: calc(100%/6);*/
}

.filter-btn{
    display: inline;
    float: left; 
    clear: both;
}

#filter-right{
    display: block;
    float: right;
}

#filter-drop-down{
    float:left;
}

.filter-right-item{
    display: inline-block;
    float: right;
    padding: 5px;
}

.right-active{
    
}


.borderFilter{
    border-bottom-width: 2px;
    background-color: #eee;
}

.disableFilter{
    display: none;
    position: absolute;
    right: 5px;
}

/*shop button active*/
.clicked{
    background-color: #000;
    color: #fff;
}


.slidermin, .slidermax {
	pointer-events:none;	
	border:none;
	position:relative;
    margin: 0 !important;
    padding: 0 !important;
}

.slidermin {
	float:left;
}

.slidermax{
	float:right;
	text-align:right;
}

.ui-slider{
	width:100% !important;
    display:inline-block;
}

.ui-state-active, .ui-widget-content .ui-state-active {
	
	border:none;
}

.sliderwrapper {
	display:block;
	width:100%;
}

.sliderwrapper input {
	display:inline-block;
	width:50%;
}

#shop-menu-content hr {
	margin:0px 20px;
	border:none;
	
}

/*ITEMS*/

#shop-item-wrapper {
/*	width:100%;*/
	display:flex;
	flex-flow:row wrap;
}

.shop-item {
	width:33.33%;
	height:auto;
	min-height:100px;
	padding:10px;
	box-sizing:border-box;
}

.shop-item-image-wrapper {
	width:100%;
	height:auto;
	position:relative;
	cursor:pointer;
}

.shop-item-image-wrapper a {
	display:none;
}

.shop-item-image-wrapper a:first-child {
	display:inline;
}

.shop-item-image {
	position:relative;
}

.shop-item-image img{
	width:100%;
	height:auto;
	float:left;
}

.shop-item-image-over {
	width:100%;
	height:100%;
	background-color:rgba(0, 0, 0, 0.5);
	position:absolute;
	padding:10px;
	box-sizing:border-box;
	color:#fff;
	transition:ease-in-out 0.5s;
	opacity:0;
}

.shop-item-image-wrapper:hover .shop-item-image-over {
	opacity:1;
}

.shop-item-info {
	border-bottom:1px solid #1D1D1B;
	width:100%;
	padding:5px 0;
}

.shop-item-info-number {
	float:left;
	width:50%;
	text-align:left;
}

.shop-item-info-price {
	float:right;
	text-align:right;
}

/* List view*/

#content-list{
	width: 100%;
	border-bottom: 1px solid #333;
	margin: 10px;
	padding-bottom: 10px;
}

#content-list-right{
	width: 70%;
    padding: 20px 10px;
    float: right;
	height: 100%;
}
#content-list-left{
	width: 30%;
    padding: 0 10px;
    float: left;
}
#content-list-right-main{
	height: 90%;
	
}
#title-block-list{
	display: inline-block;
	width: 40%;
}

#content-list-right h2{
	text-align: center;
	margin-top: 0;
}
#description-list{
	display: inline-block;
	width: 50%;
	padding: 10px 10px;
}
#specs-list{
	padding: 10px 10px;
}
#title-list{
	padding: 0 10px;
	text-decoration: none;
	color: #333;
}



.old {
	text-decoration:line-through;
}

.add-to-cart{
	/*float:right;*/
	width:50%;
}

.new:hover, .new:hover i, .ondemand:hover {
/*	text-decoration:underline;*/
	cursor:pointer;
}

.ondemand, .unknown {
	float: right;
}

/* CUSTOM CHECKBOX */

#filter-form label{
	display:block;
	}

/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 0.5em;
  cursor: pointer;
  padding-bottom: 10px;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0; 
  top: 2px;
  width: 1.25em; height: 1.25em;
  border: 1px solid #333;
  background: #fff;
  border-radius: 0px;
/*  box-shadow: inset 0 1px 3px rgba(0,0,0,.1);*/
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: '×';
  position: absolute;
  top: 2px;
  left: 5px;
  font-size: 20px;
  line-height: 20px;
  color: #333;
  transition: all .2s;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
[type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
[type="checkbox"]:disabled + label {
  color: #aaa;
}
/* accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
  border: 1px dotted blue;
}

/* hover style just for information */
input[type="checkbox"] + label:hover:before {
  border: 1px solid #999!important;
}

input[type="checkbox"] + label span {
/*    display: inline-block;*/
    width: auto !important;
    margin: 6px 10px 0 20px !important;
    vertical-align: middle;
    cursor: pointer;
}

input[type="checkbox"] + label span p {
    display: inline-block;
   
}


/* MEDIA QUERIES SCREEN */

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

}

/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {
.shop-item, .filter-item  {
	width:33.33%;

}

}

/* Tablet Portrait size to standard 960 (devices and browsers) iPad Portrait*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

}
/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
 #shop{
        margin: 0px auto;
    }
    
.shop-item, .filter-item  {
	width:50%;

}

#shop-menu-content-left {
	width:100%;
}

#shop-menu-content-right {
	width:100%;
}

.menu-filters {
	padding-bottom:20px;
}

}
/* Mobile Landscape Size to Tablet Portrait (devices and browsers) iPhone Landscape*/
@media only screen and (min-width: 480px) and (max-width: 767px) {

}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) iPhone Portrait*/
@media only screen and (max-width: 479px) {
   
    
    .shop-item, .filter-item  {
        width:100%;

    }
    #shop-menu-content {
        display:none;
    }
}
