html,
body {
    height: 100%;
    background: #f2f2f2;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

/* Controls
---------------------------------------------------------------------- */

.controls {
    padding: 1rem;
    background: transparent;
    font-size: 14px;
    float: left;
}

.control {
    width: -webkit-fill-available;
    position: relative;
    height: 2.7rem;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: background 150ms;
    display: -webkit-inline-box;
    border-style: solid;
    border-color: rgba(0,0,0,0.125) !important;
    border-left-width: 4px !important;
    border-bottom-width: 0px;
    border-top-width: 1px;
    border-right-width: 1px;
    padding-left: calc(10% - 6px);
    padding-right: 50px;
}

.control:hover {
    background: #f5f5f5;
}

.control[data-filter]:after {
    visibility:hidden;
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    top: calc(50% - 6px);
    right: calc(10% - 6px);
    border: 1.5px solid currentColor;
    border-radius: 2px;
    background: currentColor;
    transition: background-color 150ms, border-color 150ms;
}

.control[data-sort]:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 2px solid;
    border-left: 2px solid;
    top: calc(50% - 6px);
    left: calc(50% - 6px);
    transform:  translateY(1px) rotate(45deg);
}

.control[data-sort*=":desc"]:after {
    transform:  translateY(-4px) rotate(-135deg);
}

.mixitup-control-active {
    background: #f5f5f5;
    font-weight:500 !important;
    border-left-color:#39AEDA !important;

}

.mixitup-control-active[data-filter]:after {
    background: transparent;
}

.control:first-of-type {
    border-radius: 5px 5px 0 0;
}

.control:nth-of-type(5) {
    border-radius: 0 0 5px 5px;
    border-bottom-width: 1px !important;
    margin-bottom: 20px;
}

.control[data-filter] + .control[data-sort] {
    margin-left: .75rem;
}

.control[data-filter=".waterverzachter"] {
    /*color: #91e6c7;*/
    color: #999;
}

.control[data-filter=".drinkwater"] {
    /*color: #5ecdde;*/
    color: #999;
}

.control[data-filter=".regenwater"] {
    /*color: #ab95d5;*/
    color: #999;
}

.control[data-filter=".filter"] {
    /*color: #d595aa;*/
    color: #999;
}

.control[data-filter="all"] {
    /*color: #d59595;*/
    color: #999;
    border-bottom-width: 1px !important;
}

.control[data-filter="none"] {
    color: #2f2f2f;
}

/* Container
---------------------------------------------------------------------- */

.container {
    /*padding: 1rem;*/
    text-align:;
    font-size: 17px;
}

.container:after {
    content: '';
    display: inline-block;
    width: 100%;
}

/* Grid Items
---------------------------------------------------------------------- */

.item,
.gap {
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
}

.item {
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,.23);
    padding-top: 20px;
    padding-bottom: 20px;
    background: #fff;
    margin-bottom: 1rem;
    margin-right: 1rem;
    margin-left: 1rem;
    position: relative;
    height: 550px;
    min-width: 260px;
}

.item:before {
    content: '';
    display: inline-block;

}

.item.waterverzachter {
    /*color: #91e6c7;*/
    color: #999;
}

.item.drinkwater {
    /*color: #5ecdde;*/
    color: #999;
}

.item.regenwater {
    /*color: #ab95d5;*/
    color: #999;
}

.item.filter {
    /*color: #d595aa;*/
    color: #999;
}

/* Grid Breakpoints
---------------------------------------------------------------------- */


/* 1 Column */

@media screen and (max-width: 540px) {
    .item,
    .gap {
        width: calc(100%/1 - (((1 - 1) * 1rem) / 1));
	margin-left: 0;
	margin-right: 0;
    }
}

/* 2 Columns */

.item,
.gap {
    /* width: calc(100%/2 - (((2 - 1) * 1rem) / 2)); */
    width: 100%;
   
}

/* 3 Columns */

@media screen and (min-width: 541px) {
    .item,
    .gap {
        width: calc(100%/3 - (((3 - 1) * 1rem) / 3));
    }
}

/* 4 Columns */

@media screen and (min-width: 961px) {
    .item,
    .gap {
        width: calc(100%/4 - (((4 - 1) * 1rem) / 4));
    }
}

/* 5 Columns */

@media screen and (min-width: 1281px) {
    .item,
    .gap {
        width: calc(100%/5 - (((5 - 1) * 1rem) / 5));
    }
}

.zoom {
  transition: transform .2s; /* Animation */
}

.zoom:hover {
  transform: scale(1.05);
  z-index:1;
  
}

.col-xs-1.navbar-toggle{visibility:visible !important;}