.widget.box.border-top:last-child {
 margin-bottom:0px;
}
	.panel{
	padding:0px !important;	
	}
	.panel-body{
		
		padding:10px 0px 0px;
	}
	#panel-filter{
		background-color:#f0f0f0;
	}
	.panel-heading .colpsible-panel:after {
    
    font-family: 'Glyphicons Halflings'; 
    content: "\e113";    
    float: right;        
    color: #408080;         
}
.panel-heading .colpsible-panel.collapsed:after {
    content: "\e114"; 
}

	.badge {
    float: right;
	
}
.main-category{

padding-top:50px;

}
.main-category .pagination-wrapper.top {
    border-top: 0px none;
    padding-bottom: 10px;
    padding-top: 0px;
    margin-bottom: 10px;
    margin-top: 0px;
    border-bottom: 1px solid #E9E9E9;
}
.main-category .pagination-wrapper {
    border-top: 1px solid #E9E9E9;
    margin-top: 30px;
    padding-top: 30px;
    line-height: 0;
}
.main-category .pagination {
    margin: -10px 0px 0px;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1;
}
.main-category .pagination > li {
    cursor: pointer;
}
.main-category .pagination > li:first-child > a, .main-category .pagination > li:first-child > span {
    border-radius: 0px;
    background-color: transparent;
}
.main-category .pagination > li > a, .main-category .pagination > li > span {
    border: 3px solid rgba(35, 35, 35, 0.1);
}
.main-category .pagination > li > a {
    font-weight: 700;
    background-color: transparent;
    color: #232323;
    margin: 10px 10px 0px 0px;
    padding: 7px 15px;
}
.main-category .pagination > li:last-child > a, .main-category .pagination > li:last-child > span {
    border-radius: 0px;
    background-color: transparent;
}
.main-category .pagination > .active > a, .main-category .pagination > .active > span, .main-category .pagination > .active > a:hover, .main-category .pagination > .active > span:hover, .main-category .pagination > .active > a:focus, .main-category .pagination > .active > span:focus {
    background-color: rgba(35, 35, 35, 0.1) !important;
    border-color: transparent;
    color: #232323;
}
#custom-search-input {
    margin-top: 15px;
	padding: 3px;
    border: solid 1px #161f40;
    background-color: #fff;
}
#custom-search-input input {
    border: 0;
    box-shadow: none;
}
#custom-search-input button:hover {
    border: 0;
    box-shadow: none;
    border-left: solid 1px #ccc;
}
#custom-search-input button {
    margin: 2px 0 0 0;
    background: none;
    box-shadow: none;
    border: 0;
    color: #666666;
    padding: 0 8px 0 10px;
    border-left: solid 1px #ccc;
}

.read-more-trigger {
  cursor: pointer;
  display: inline-block;
  padding: 0 .5em;
  color: #666;

  font-size: 1em;
  line-height: 2;
  border: 1px solid #ddd;
  border-radius: .25em;
}
.contact-form-li{
	padding: 15px;
}
@media (min-width: 1025px)  {
  
#productsList li{
		width:33.33%;
	}
  
}
@media (min-width: 768px) and (max-width: 1024px)  {
	
	#productsList li{
		width:49%;
	}
	
}
@media (min-width: 500px) and (max-width: 736px) and (orientation: landscape) {
  
#productsList li{
		width:49%;
	}
  
}

}
		
.wrap {
   background: #ECF0F1;
   color: #607D8B;
   height: 100%;
   overflow: auto;
   padding: 1em 2.5em;
   text-align: center;
   width: 100%;
}

h1 {
   color: #e91e63;
   font-family: "Audiowide", cursive;
   font-size: 2em;
   font-size: 7vw;
   font-weight: bold;
   line-height: 1.2;
   margin: 0.5em 0 2.5em;
   text-shadow: 1px 1px 1px #fefefe;
}

@media (min-width: 1075px) {
   h1 {
      font-size: 4.7em;
   }
}

pre {
   background: #fff;
   display: inline-block;
   font-size: .55em;
   margin-top: 2em;
   padding: 1em;
}

@media (min-width: 360px) {
   pre {
      font-size: .7em;
   }
}

@media (min-width: 500px) {
   pre {
      font-size: 1em;
   }
}


/*== start of code for tooltips ==*/
.tool {
    cursor: help;
    position: relative;
}


/*== common styles for both parts of tool tip ==*/
.tool::before,
.tool::after {
    left: 50%;
    opacity: 0;
    position: absolute;
    z-index: -100;
}

.tool:hover::before,
.tool:focus::before,
.tool:hover::after,
.tool:focus::after {
    opacity: 1;
    transform: scale(1) translateY(0);
    z-index: 100; 
}


/*== pointer tip ==*/
.tool::before {
    border-style: solid;
    border-width: 1em 0.75em 0 0.75em;
    border-color: #3E474F transparent transparent transparent;
    bottom: 100%;
    content: "";
    margin-left: -0.5em;
    transition: all .65s cubic-bezier(.84,-0.18,.31,1.26), opacity .65s .5s;
    transform:  scale(.6) translateY(-90%);
} 

.tool:hover::before,
.tool:focus::before {
    transition: all .65s cubic-bezier(.84,-0.18,.31,1.26) .2s;
}


/*== speech bubble ==*/
.tool::after {
    background: #f6a000;
    border-radius: .25em;
    bottom: 180%;
    color: #fff;
    content: attr(data-tip);
    margin-left: -8.75em;
    padding: 1em;
    transition: all .65s cubic-bezier(.84,-0.18,.31,1.26) .2s;
    transform:  scale(.6) translateY(50%);  
    width: 17.5em;
}

.tool:hover::after,
.tool:focus::after  {
    transition: all .65s cubic-bezier(.84,-0.18,.31,1.26);
}

@media (max-width: 570px) {
  .tool::after { 
        font-size: .75em;
        margin-left: -5em;
        width: 18em; 
  }
}

#content-desktop {display: block;}
#content-mobile {display: none;}

@media screen and (max-width: 576px) {
#content-desktop {display: none;}
#content-mobile {display: block;}
}

.padding20{
	padding-bottom: 20px;
}
		
.contactbutton {
  background-color: #f6a000;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;			
		}

body{
    background-repeat:no-repeat;
    background-position: center right;
    background-image:url(http://configurator.ropeblock.com/img/bolletjes.png);
    font-family:Arial, Helvetica, sans-serif;
    min-height:100%;
}