/*

    ___                     ______                            __
   /   | ____ ___  ______ _/ ____/___  ____  ________  ____  / /_
  / /| |/ __ `/ / / / __ `/ /   / __ \/ __ \/ ___/ _ \/ __ \/ __/
 / ___ / /_/ / /_/ / /_/ / /___/ /_/ / / / / /__/  __/ /_/ / /_
/_/  |_\__, /\__,_/\__,_/\____/\____/_/ /_/\___/\___/ .___/\__/
         /_/                                       /_/


*/

/**
 ** Comment style **
 **/

/*
Futura Bold  /  Headlines
Futura Book  /  Footers
Roboto Bold  /  Subtitles
Roboto Light /  Body tekst

Aquablauw   :      #36bfc5;
Aquawit     :      #fff;
Aquagrijs   :      #f1f1f1;
Aquazwart   :      #3a3a3a;
*/

/* add to boilerplate css */
.radio label, .checkbox label {
    position: relative;
    font-weight: 300;
}

/*******************
 ** Fonts && Body **
 *******************/

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    padding-top: 0px;
    overflow-y: scroll;
}
body.overflow-hidden {
    overflow: hidden !important;
}
.master-container {
    background-color: #f1f1f1;
    padding-bottom: 50px;
}
h1, h2, h3, h4 {
    font-family: "futura-pt", sans-serif;
    font-weight: 700;
}
.font-light {
    font-weight: 300;
}
.font-medium {
    font-weight: 400;
}
.font-heavy {
    font-weight: 700;
}
.uppercase {
    text-transform: uppercase;
}
.subset {
    margin-top: -3px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
}
p {
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}
a {
    color: #36bfc5;
    text-decoration: none !important;
}
a:visited,
a:focus {
    color: #36bfc5;
    text-decoration: none !important;
}
a:hover {
    color: #3a3a3a;
    text-decoration: none !important;
}

a.btn, a:visited.btn {
    color:#fff;
    text-decoration: none !important;
}

.roboto {
    font-family: 'Roboto', sans-serif;
}
/*******************
    ** Tweaks **
 *******************/

/* Verwijder winkelmandje icon uit intro knop voor floating */
@media (max-width: 991px) {
    .icon-mandje-laden {
        display: none;
    }
}
.alert-standaard {
    background-color: #F9F9F9;
    border-color: #F0F0F0;
    color: #aaa;
}
.alert-donkerblauw {
    background-color: #DDE3FF;
    border-color: #B9BEFF;
    color: #0011DD;
}
.text-blauw {
    color: #36bfc5;
}
.text-black {
    color: #3a3a3a;
}
.checkbox {
    margin-bottom: 17px;
}
.checkbox-styled input {
    opacity: 0;
    visibility: visible;
}
.checkbox-styled::after {
    border-left: 2px solid #36bfc5;
    border-bottom: 2px solid #36bfc5;
}
.radio-styled::after {
    background-color: #36bfc5;
}
.radio-styled.disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: not-allowed;
}
.push-down {
    margin-top: 17px;
}
.text-muted {
    color: #c7c7c7;
}

*:focus,
*:visited {
    outline: none !important;
}
.no-inputs {
    width: 100%;
    float: left;
}

.no-inputs input {
    opacity: 0;
}
.dimensie-tekst {
    display: block;
    padding-left: 15px;
}
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.nullify-top-margin {
    margin-top: -25px;
}
@media (max-width: 990px) {
    .padding-l {
        font-size: 14px;
    }
    .padding-l .h3{
        font-size:21px;
    }
}
.wide-list li {
    margin-bottom: 10px;
}
.wide-list li:nth-last-child(1) {
    margin-bottom: 30px;
}
@media (max-width: 990px) {
    .wide-list .fa {
        margin-right: 10px;
        margin-bottom: 10px;
        margin-top: 2px;
        float: left;
    }
}
.list-group-item {
    -moz-border-radius: 0 !important;
         border-radius: 0 !important;
    overflow: hidden;
}

.btn-loader .loading-bar {
    background-color: #2DAEB3;
}

.btn-loader.loading .loading-bar {
    -webkit-animation: progressbutton 6.7s;
    -moz-animation: progressbutton 6.7s;
         animation: progressbutton 6.7s;
}
.btn-loader.finish {
    background: #B5B5B5;
}
.config .checkbox-styled.chosen {
    pointer-events: none;
}
.config .checkbox-styled.chosen::before {
    opacity: 0;
}
.config .checkbox-styled.disabled {
    opacity: 0.5;
    pointer-events: none;
}
.config .checkbox-styled.disabled::before {
    background-color: #B2B2B2;
    border: 1px solid #B2B2B2;
    -moz-box-shadow: none;
         box-shadow: none;
    -moz-border-radius: 300px;
         border-radius: 300px;
    width: 10px;
    height: 10px;
    top: 5px;
    left: 5px;
}

.config .checkbox-styled.filler::before, .config .radio-styled.filler::before {
    background-color: white !important;
    border-color: #36bfc5;
}

.fill-ani {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #36bfc5;
    -moz-border-radius: 300px;
         border-radius: 300px;
    top: 8px;
    left: 6px;
    -webkit-animation: grow 1s infinite;
    -moz-animation: grow 1s infinite;
    -0-animation: grow 1s infinite;
    animation: grow 1s infinite;
}

@-webkit-keyframes grow {
    0% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: 1;
    }
    80% {
        -webkit-transform: scale(4.4);
                transform: scale(4.4);
    }
    100% {
        -webkit-transform: scale(4.5);
                transform: scale(4.5);
        opacity: 0;
    }
}

@-moz-keyframes grow {
    0% {
        -moz-transform: scale(1);
             transform: scale(1);
        opacity: 1;
    }
    80% {
        -moz-transform: scale(4.4);
             transform: scale(4.4);
    }
    100% {
        -moz-transform: scale(4.5);
             transform: scale(4.5);
        opacity: 0;
    }
}

@keyframes grow {
    0% {
        -webkit-transform: scale(1);
           -moz-transform: scale(1);
                transform: scale(1);
        opacity: 1;
    }
    80% {
        -webkit-transform: scale(4.4);
           -moz-transform: scale(4.4);
                transform: scale(4.4);
    }
    100% {
        -webkit-transform: scale(4.5);
           -moz-transform: scale(4.5);
                transform: scale(4.5);
        opacity: 0;
    }
}

/*******************
   ** Elements **
 *******************/

/**
 ** Cards **
 **/

.cards {
    padding-top: 30px;
}
.card {
    -moz-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.22);
         box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.22);
    position: relative;
    -webkit-transform: translate3d(0,0,0);
            -moz-transform: translate3d(0,0,0);
         transform: translate3d(0,0,0);
}

.card.no-data {
    background-color: #e6e6e6;
}

.card.card-thin .panel-body {
    padding: 0px;
}

.card.noborder {
    border: none;
    overflow: hidden;
}
.card .panel-body {
    -webkit-transform: translate3d(0, 0, 0);
            -moz-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0);
    overflow: hidden;
    padding: 20px 25px;
    -moz-transition: 0.5s ease-in-out all;
         transition: 0.5s ease-in-out all;

}
.card .panel-body.custom-body {
    padding: 20px;
}
.card.transparant {
    background-color: transparent;
    -moz-box-shadow: none;
         box-shadow: none;
    border: none;
}
.card.filt .panel-body {

}
.card .panel-body.open {

}
.card .panel-body hr {
    margin-bottom: 5px;
}
.card .stap-indicatie {
    margin-bottom: 1px;
}
.card .stap-indicatie small,
.titles-small th {
    font-size: 86%;
    color: #36bfc5;
    font-family: "futura-pt", sans-serif;
    font-weight: normal;
}
.card .stap-indicatie small i {
    background-color: #36bfc5;
    color: white;
    -moz-border-radius: 300px;
         border-radius: 300px;
    padding: 0px;
    font-style: normal;
    font-weight: 700;
    width: 20px;
    height: 20px;
    display: inline-block;
    /* float: right; */
    text-align: center;
    margin-left: 5px;
}
.card .card-title {
    margin-bottom: 0px;
    -moz-transition: all 0.2s ease-in-out;
         transition: all 0.2s ease-in-out;
}
.intro .card-title {
    margin-bottom: 30px;
}
.card-action {
    position: absolute;
    right: 15px;
    top: 24px;
    background-color: #fff;
    padding: 10px 15px;
    color: #36bfc5;
    cursor: pointer;
    font-weight: 400;
    -moz-border-radius: 2px;
         border-radius: 2px;
    text-align: right;
    width: 126px;
    height: 45px;
    opacity: 0.5;
    overflow: hidden;
}
.card-action:hover  {
    opacity: 1;
    background-color: #fff;
    color: #36bfc5;
}
.card-action span {
    margin-bottom: 5px;
    display: block;
    -webkit-transform: translate3d(0,0,0);
            -moz-transform: translate3d(0,0,0);
         transform: translate3d(0,0,0);
    transition: 0.3s -webkit-transform ease;
    -moz-transition: 0.3s -moz-transform ease;
         transition: 0.3s transform ease;
}
.panel-body.open .card-action {
    opacity: 1;
}
.panel-body.open .card-action span {
    -webkit-transform: translateY(-30px);
            -moz-transform: translateY(-30px);
             -ms-transform: translateY(-30px);
         transform: translateY(-30px);
}

.card-action::-moz-selection {
    background: transparent;
}

.card-action::selection {
    background: transparent;
}
.card-action::-moz-selection{
    background: transparent;
}
.card-action span::-moz-selection {
    background: transparent;
}
.card-action span::selection {
    background: transparent;
}
.card-action span::-moz-selection {
    background: transparent;
}

.card .boxes .alert {
    margin-bottom: 18px;
    display: block;
    clear: both;
}

.card .boxes .alert-groen {
    background-color: rgba(54, 191, 197, 0.11);
    border-color: #36BFC5;
    color: #36BFC5;
    margin-top: 20px;
    -moz-transition: opacity 0.3s ease-in-out;
         transition: opacity 0.3s ease-in-out;
}

.card .boxes .alert-groen a {
    font-weight: 400;
}

#info-maat-alert {
    opacity: 0;
    -moz-transition: all 1s ease-in-out;
         transition: all 1s ease-in-out;
    -webkit-transform: translateY(50px);
       -moz-transform: translateY(50px);
        -ms-transform: translateY(50px);
            transform: translateY(50px);
}

#info-maat-alert.fade-in {
    opacity: 1;
    -webkit-transform: translateY(0px);
       -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
}

.card .prod-img-wrapper {
    overflow: hidden;
    margin-left: -25px;
    margin-right: -25px;
    margin-bottom: -20px;
    margin-top: 20px;
    background-color: #36bfc5;
}

.card .product-cat-img {
    width: 100%;
}

a.prod-cat-link .card .panel-body {
    -moz-transition: all 0.1s ease-in-out;
         transition: all 0.1s ease-in-out;
}

a.prod-cat-link .card .panel-body img {
    -moz-transition: all 0.2s ease-in-out;
         transition: all 0.2s ease-in-out;
}

a.prod-cat-link:hover .card .panel-body img {
    opacity: 0.8;
}

a.prod-cat-link .prod-cat-title {
    font-weight: 300;
    font-family: 'roboto', sans-serif;
    color: #333;
    -moz-transition: all .2s ease-in-out;
         transition: all .2s ease-in-out;
}

a.prod-cat-link:hover .prod-cat-title {
    font-weight: 400;
    color: #36BFC5;
}

/**
 ** Buttons **
 **/

.btn-grijs {
    background-color: transparent;
    border-color: transparent;
    color: #aaa;
    padding: 0;
}

.btn-grijs:hover {
    background-color: transparent;
    border-color: transparent;
}

.btn-grijs.verberg-resultaat {
    background-color: #DBDBDB;
    padding: 10px 18px;
    position: relative;
    -moz-transition: background-color .2s ease-in-out;
         transition: background-color .2s ease-in-out;
}

.btn-grijs.verberg-resultaat span {
    opacity: 1;
    -moz-transition: all .2s ease-in-out;
         transition: all .2s ease-in-out;
}

.btn-grijs.verberg-resultaat i {
    opacity: 0;
    -moz-transition: all .2s ease-in-out;
         transition: all .2s ease-in-out;
    position: absolute;
    left: 0;
    right: 0;
    top: 13px;
    margin: 0 auto;
    display: block;
    float: none;
}

.btn-grijs.verberg-resultaat:hover span {
    opacity: 0;
}

.btn-grijs.verberg-resultaat:hover i {
    opacity: 1;
}

.btn-lg, .btn-group-lg>.btn {
    padding: 14px 25px;
}
.btn {
    -moz-box-shadow: none;
         box-shadow: none;
    -moz-border-radius: 2px;
         border-radius: 2px;
    font-family: "futura-pt", sans-serif;
}
.btn-blauw {
    background: #36bfc5;
    border-color: #36bfc5;
}
.btn-link {
    color: #36bfc5;
}
.btn-zwart {
    background: #3a3a3a;
    border-color: #3a3a3a;
}
.btn-blauw:hover,
.btn-blauw:focus {
    background-color: #3AB5BA;
    border-color: #3AB5BA;
}

.btn-text {
    background-color: transparent;
    border-color: transparent;
    color: #3a3a3a;
}

.btn-text:hover {
    background-color: transparent;
    border-color: transparent;
    color: #36bfc5;
}

.btn-group .btn:active, .btn.active {
    -moz-box-shadow: none;
         box-shadow: none;
}

.custom-btn-group .btn-blauw {
    background-color: #fff;
    border-color: #3AB5BA;
    color: #3AB5BA;
}

.custom-btn-group .btn-blauw {
    background-color: #fff;
    border-color: #ddd;
    color: #ddd;
}

.custom-btn-group .btn-blauw:hover, .btn-blauw:focus, .btn-blauw:active, .btn-blauw.active, .open>.btn-blauw.dropdown-toggle {
    background-color: #3AB5BA;
    color: #fff;
    border-color: #3AB5BA;
}



/**
 ** Navbar **
 **/

.navbar-default.navbar-ac {
    background-color: #fff;
    border-color: #fff;
    border-bottom: 4px solid #36bfc5;
    height: 120px;
    -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.22);
         box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.22);
    margin-bottom: 25px;
}
.navbar-right {
    float: right !important;
}

/**
 ** Logo in navbar **
 **/

.navbar-brand.logo-ac img {
    width: 100%;
    max-width: 190px;
}

/**
 ** Flags in navbar
 **/

.flags {
    margin: 42px 0px;
}

.flags ul {
    margin: 0;
}

/**
 ** kruimelpad
 **/

.kruimelpad-container,
.for-selection {
    width: 98% !important;
    max-width: 1170px !important;
    position: relative;
}

.kruimelpad {
    width: 100%;
    padding: 10px 15px 0px;
    background-color: #EAEAEA;
    -moz-border-radius: 2px;
         border-radius: 2px;
    color: #555;
    margin-bottom: 20px;
    display: block;
    float: left;
}

.kruimelpad.vergelijk {
    display: block;
    float: left;
    padding-right: 300px;
}

.kruimelpad span {
    padding: 5px 9px;
    border: 1px solid;
    -moz-border-radius: 2px;
         border-radius: 2px;
    -moz-transition: 0.2s ease-in-out all;
         transition: 0.2s ease-in-out all;
    display: block;
    float: left;
    margin-bottom: 10px;
}

.kruimelpad a {
    display: block;
    float: left;
    margin-right: 5px;
    color: #36bfc5;
}

@media (max-width: 990px) {
    .kruimelpad.vergelijk a {
        margin-bottom: 5px;
    }
}

/**
 ** Modal voor ongeldige stappen
 **/

ul.false-steps {
    list-style: none;
    padding-left: 0px;
    margin-top: 20px;
}

ul.false-steps li {
    color: #C74D40;
}

/**
 ** Seperator block intro pagina **
 **/

.seperator-block {
    display: block;
    margin: 0 auto;
    width: 80px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}
.underline {
    width: 90px;
    height: 3px;
    background-color: #36bfc5;
    margin-top: 0px;
    margin-bottom: 20px;
}
.seperator-block hr {
    border-top: 1px solid #3a3a3a;
    margin: 20px 0;
}

/**
 ** Form inputs
 **/

.form-control {
    background-color: #fff;
    color: #797979;
    -moz-transition: 0.3s ease-in-out all;
         transition: 0.3s ease-in-out all;
    -moz-box-shadow: none;
         box-shadow: none;
}
.form-control:focus {
    border-color: #36bfc5;
    outline: 0;
    /*box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(54, 191, 197, .2);*/
    -moz-box-shadow: none;
         box-shadow: none;
    background-color: #fff;
    color: #3a3a3a;
}
.input-lg, .form-horizontal .form-group-lg .form-control, .input-group-lg>.form-control, .input-group-lg>.input-group-addon, .input-group-lg>.input-group-btn>.btn {
    -moz-border-radius: 2px;
         border-radius: 2px;
}
.form-group {
    position: relative;
}
.input-metric {
    color: #B4B4B4;
    position: absolute;
    right: 14px;
    bottom: 11px;
}
.inline-radio-buttons .radio {
    float: left;
}
/**
 ** Boxes small **
 **/

.boxes {
    width: 100%;
    float: left;
}
.boxes .box {
    position: relative;
    float: left;
    display: block;
    width: 200px;
    height: 200px;
    text-align: center;
    border: 2px solid #DAD7D7;
    -moz-border-radius: 2px;
         border-radius: 2px;
    margin-right: 21px;
    margin-bottom: 17px;
    padding: 10px;
    cursor: pointer;
    -moz-transition: all 0.1s ease-in-out;
         transition: all 0.1s ease-in-out;
    overflow: hidden;
}

.boxes .box i {
    opacity: 0;
    color: #36bfc5;
    position: absolute;
    top: 14px;
    right: 5px;
    -moz-transition: all 0.2s cubic-bezier(.66,-0.51,.49,1.28);
         transition: all 0.2s cubic-bezier(.66,-0.51,.49,1.28);
    -webkit-transform: scale(0.5);
            -moz-transform: scale(0.5);
             -ms-transform: scale(0.5);
         transform: scale(0.5);
}

.boxes .box img {
    margin: 0 auto;
    max-height: 120px;
    width: auto;
    max-width: 170px;
    margin-top: 4px;
    opacity: 1;
    -moz-transition: all 0.1s ease-in-out;
         transition: all 0.1s ease-in-out;
    display: block;
}

.boxes.boxes-lg .box img {
    margin: 0 auto;
    max-height: 160px;
    width: auto;
    max-width: 200px;
    margin-top: 14px;
    opacity: 1;
    -moz-transition: all 0.1s ease-in-out;
         transition: all 0.1s ease-in-out;
    display: block;
}

.img-fade-out::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    z-index: 100;
    background-color: white;
}

.boxes .box p {
    position: absolute;
    bottom: 15px;
    /*top: 200px;*/
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 14px;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.5;
    -moz-transition: all 0.1s ease-in-out;
         transition: all 0.1s ease-in-out;
}
div#deurtype-2 .box p { bottom:inherit; top:200px; }
/**
 ** Boxfix
 **/

[data-toggle="buttons"] .deurtype-variant>.btn>input[type="radio"],
[data-toggle="buttons"] .deurtype-variant>.btn>input[type="checkbox"] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    filter: alpha(opacity=0);
}

/**
 ** Spacefix for collapse
 **/

.space-fix {
    width: 100%;
    height: 30px;
    display: block;
    opacity: 0;
    background-color: transparent;
}

/**
 ** For box count
 ** Deze div zit om gegroepeerde twig loops heen zodat er goed geteld kan worden met css en mediaqueries
 **/

.for-box-count {
    height: auto;
    width: 100%;
    position: relative;
}

/**
 ** Boxes lg **
 **/

.boxes.boxes-lg .box {
    position: relative;
    display: block;
    float: left;
    width: 255px;
    height: 270px;
    text-align: center;
    border: 2px solid #DAD7D7;
    -moz-border-radius: 2px;
         border-radius: 2px;
    margin-right: 21px;
    margin-bottom: 21px;
    padding: 10px;
    cursor: pointer;
    -moz-transition: all 0.1s ease-in-out;
         transition: all 0.1s ease-in-out;
}

.boxes.boxes-lg .box p {
    overflow: visible;
    text-overflow: initial;
    width: 100%;
    white-space: normal;
    bottom: 20px;
}

.boxes.boxes-lg .box .card-subtitle {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    margin: 0 auto;
    font-size: 12px;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.5;
    -moz-transition: all 0.1s ease-in-out;
         transition: all 0.1s ease-in-out;
    color: #36bfc5;
}

/**
 ** Box active & hover **
 **/

.boxes .box.active i {
    opacity: 1;
    -webkit-transform: scale(1.2);
            -moz-transform: scale(1.2);
             -ms-transform: scale(1.2);
         transform: scale(1.2);
}

.boxes .box.active,
.boxes .box:hover {
    border: 2px solid #36bfc5;
    /*box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(54, 191, 197, .2);*/
}
.boxes .box.active img,
.boxes .box.active p,
.boxes .box.active .card-subtitle,
.boxes .box:hover img,
.boxes .box:hover p,
.boxes .box:hover .card-subtitle {
    opacity: 1;
}

/**
 ** Box mediaquaries **
 **/

@media (min-width: 1200px) {
    /* Small boxes */
    .boxes .box:nth-of-type(5n) {
        margin-right: 0px;
    }
    /* Large boxes */
    .boxes.boxes-lg .box:nth-of-type(5n) {
        margin-right: 21px;
    }
    .boxes.boxes-lg .box:nth-of-type(4n) {
        margin-right: 0px;
    }
}
@media (max-width: 1199px) {
    /* Small boxes */
    .boxes .box {
        margin-right: 28px;
        margin-bottom: 24px;
    }
    .boxes .box:nth-of-type(4n) {
        margin-right: 0px;
    }
    /* Large boxes */
    .boxes.boxes-lg .box {
        width: 276px;
        margin-right: 25px;
        margin-bottom: 25px;
    }
    .boxes.boxes-lg .box:nth-of-type(3n) {
        margin-right: 0px;
    }
}
@media (max-width: 991px) {
    /* Small boxes */
    .boxes .box {
        margin-right: 16px;
        width: 155px;
        height: 155px;
    }
    .boxes .box img {
        max-height: 78px;
        margin-top: 0px;
    }
    .boxes.boxes-lg .box img {
        max-width: 170px;
    }
    .boxes .box:nth-of-type(4n) {
        margin-right: 0px;
    }
    /* Large boxes */
    .boxes.boxes-lg .box {
        width: 203px;
    }
    .boxes.boxes-lg .box:nth-of-type(4n) {
        margin-right: 25px;
    }
    .boxes.boxes-lg .box:nth-of-type(3n) {
        margin-right: 0px;
    }
}
@media (max-width: 767px) {
    /* Small boxes */
    .boxes .box {
        margin-right: 2%;
        width: 23%;
        height: 148px;
        display: block;
        float: left;
    }
    .boxes .box img {
        max-height: 78px;
        margin-top: 16px;
    }
    .boxes .box:nth-of-type(4n) {
        margin-right: 0%;
    }
    /* Large boxes */
    .boxes.boxes-lg .box {
        width: 31%;
        margin-right: 3%;
        display: block;
        float: left;
    }
    .boxes.boxes-lg .box:nth-of-type(4n) {
        margin-right: 3%;
    }
    .boxes.boxes-lg .box:nth-of-type(3n) {
        margin-right: 0%;
    }
}

.maatopgave i.deur-indicator,
.aw-input-filter i.deur-indicator {
    position: absolute;
    left: 10px;
    top: 13px;
    background-color: #36bfc5;
    color: #fff;
    -moz-border-radius: 300px;
         border-radius: 300px;
    text-align: center;
    width: 23px;
    height: 23px;
    font-size: 11px;
    font-style: normal;
    font-weight: normal;
    padding-top: 5px;
    font-family: 'futura';
    opacity: 0.7;
    padding-left: 1px;
}

.maatopgave i.deur-indicator::after,
.aw-input-filter i.deur-indicator::after {
    content: '';
    width: 1px;
    height: 23px;
    position: absolute;
    top: 0;
    left: 30px;
    background-color: #ddd;
}

.maatopgave .maat-inputs input,
.aw-input-filter input {
    padding-left: 49px;
    padding-right: 62px;
}

.stap-2-images {
    position: relative;
    overflow: hidden;
}

.stap-2-images .stap-2-img {
    border: 1px solid #E9E9E9;
    -moz-border-radius: 2px;
         border-radius: 2px;
    padding: 20px;
    background: #f7f7f7;
    opacity: 0;
    -moz-transition: all 0.2s ease-in-out;
         transition: all 0.2s ease-in-out;
}

.stap-2-images .stap-2-img.pos-abs {
    position: absolute;
    width: 343px;
    height: auto;
    top: 0;
    left: 0;
    margin-left: 15px;
}

@media (max-width: 1200px) {
    .stap-2-images .stap-2-img.pos-abs {
        width: 276px;
    }
}

@media (max-width: 991px) {
    .stap-2-images .stap-2-img.pos-abs {
        width: 319px;
    }
}

.stap-2-images .stap-2-img.glow {
    opacity: 1;
}

.stap-2-images .bol1,
.stap-2-images .bol2,
.stap-2-images .bol3 {
    position: absolute;
    left: 10px;
    bottom: 13px;
    background-color: #36bfc5;
    color: #fff;
    -moz-border-radius: 300px;
         border-radius: 300px;
    text-align: center;
    width: 23px;
    height: 23px;
    font-size: 11px;
    font-style: normal;
    font-weight: normal;
    padding-top: 5px;
    font-family: 'futura';
    opacity: 0;
    padding-left: 1px;
    -moz-transition: all 0.2s ease-in-out;
         transition: all 0.2s ease-in-out;
}

/* nis */
.bolletjes.nis .bol1 {
    opacity: 1;
    bottom: 8%;
    left: 47%;
}

.bolletjes.nis .bol2,
.bolletjes.nis .bol3 {
    opacity: 0;
}

/* hoek */

.bolletjes.hoek .bol1 {
    opacity: 1;
    bottom: 23%;
    left: 27%;
}

.bolletjes.hoek .bol2 {
    opacity: 1;
    bottom: 23%;
    left: 69%;
}

.bolletjes.hoek .bol3 {
    opacity: 0;
}

/* u */

.bolletjes.u .bol1 {
    opacity: 1;
    bottom: 43%;
    left: 11%;
}

.bolletjes.u .bol2 {
    opacity: 1;
    bottom: 8%;
    left: 47%;
}

.bolletjes.u .bol3 {
    opacity: 1;
    bottom: 43%;
    left: 83%;
}


/**********************
 ** Vergelijk pagina **
 **********************/

/**
 ** Vergelijken / Custom grid
 **/

.nopadding-scroll {
    padding: 0;
    position: relative;
    padding-left: 250px;
    -moz-border-radius: 3px;
         border-radius: 3px;
    overflow: hidden;
    -moz-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.22);
         box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.22);
    width: 95% !important;
    max-width: 1140px !important;
}

.col-links {
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    height: 100%;
    background-color: #fff;
    padding: 15px;
    width: 250px;
    border-right: 1px solid #ddd;
    z-index: 1;
}

.col-links.no-padding {
    padding: 0;
}

.col-links .image-holder-col {
    width: 100%;
    position: relative;
    margin-top: 25px;
    float: left;
    display: block;
    border-bottom: 1px solid #eee;
    padding-bottom: 26px;
    min-height: 217px;
}

.col-links .image-holder-col img {
    max-height: 190px;
    display: block;
    margin: 0 auto;
    max-width: 210px;
}

@media (max-width: 990px) {
    .col-links .image-holder-col {
        min-height: 178px;
        max-height: 178px;
        margin-top: 17px;
        border-bottom: 0px solid black;
    }
    .col-links .image-holder-col img {
        max-width: 100%;
    }
}

.ball-item-title {
    margin-bottom: 10px;
    text-align: center;
    color: #36bfc5;
    font-family: "futura-pt", sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-top: 15px;
}

.col-links .item-ball-holder {
    width: 100%;
    float: left;
    text-align: center;
    margin-top: 10px;
}

.col-links .item-ball-holder .ball {
    padding: 10px 10px;
    text-align: center;
    width: 45px;
    height: 45px;
    color: #333;
    display: inline-block;
    -moz-border-radius: 300px;
         border-radius: 300px;
    background-color: #ddd;
    margin: 0 11px;
}

@media (max-width: 990px) {
    .col-links .item-ball-holder .ball {
        height: 35px;
        width: 35px;
        margin: 0px 5px;
        padding-top: 9px;
    }
}

.col-links .item-ball-holder .ball.is-ok {
    background-color: #ddd;
    color: #36bfc5;
    position: relative;
    font-weight: normal;
}

.col-links .item-ball-holder .ball.is-ok::after {
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f00c";
    position: absolute;
    color: #35bfc5;
    bottom: -3px;
    font-size: 20px;
    right: -2px;
}

.col-links .item-ball-holder .ball.is-ok.active::after {
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f00c";
    position: absolute;
    color: white;
    bottom: -3px;
    font-size: 20px;
    right: -2px;
      text-shadow: 1px 1px 0 #35bfc5, -1px -1px 0 #35bfc5, 1px -1px 0 #35bfc5, -1px 1px 0 #35bfc5, 1px 1px 0 #35bfc5;
}

/*Deze volgorde aanhouden mbt is-ok en active class!*/
.col-links .item-ball-holder .ball.active, .preview-img.no-active .ball {
    background-color: #36bfc5;
    color: #fff;
    font-weight: normal;
}

.col-links .item-ball-holder .ball.no-match {
    background-color: #E74C3C;
    color: #333;
    font-weight: normal;
    position: relative;
}

.col-links .item-ball-holder .ball.no-match::after {
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f00d";
    position: absolute;
    color: #fff;
    bottom: -3px;
    font-size: 20px;
    right: -2px;
    text-shadow: 1px 1px 0 #E74C3C, -1px -1px 0 #E74C3C, 1px -1px 0 #E74C3C, -1px 1px 0 #E74C3C, 1px 1px 0 #E74C3C;
}

.col-rechts {
    width: 100%;
    padding-left: 1px;
    position: relative;
    overflow-x: scroll;
    background-color: #FBFAFA;
}

.col-item {
    display: table-cell;
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    height: 100%;
    border-right: 1px solid #ddd;
    padding: 15px;
    background-color: #FBFAFA;
    overflow: hidden;
    position: relative;
    -moz-transition: background-color .1s ease, -moz-box-shadow .1s ease;
         transition: background-color .1s ease, box-shadow .1s ease;
}

.col-item.chosen {
    -moz-box-shadow: inset 0px 0px 7px 0px rgba(54,191,197,0.1);
    box-shadow: inset 0px 0px 7px 0px rgba(54,191,197,0.1);
    border-right: 1px solid rgba(54, 191, 197, 0.54);
    overflow: visible;
    border-top: 1px solid rgba(130, 204, 207, 0.65);
    background-color: rgba(238, 238, 238, 0.4);
}

.col-item.chosen::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    height: 100%;
    width: 1px;
    background-color: rgba(54, 191, 197, 0.54);
    z-index: 0;
}

.col-item.no-match.filter {
    display:none;
    /* wgr maak jij hier iets moois van please? */
}

.col-item.no-match:after {
    font: normal normal normal 14px/1 FontAwesome;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f06a";
position: absolute;
color: #E74C3C;
top: 29px;
font-size: 20px;
right: 18px;
}

.col-item.is-ok:after {
    font: normal normal normal 14px/1 FontAwesome;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f00c";
position: absolute;
color: #35bfc5;
top: 29px;
font-size: 20px;
right: 18px;
}

@media (max-width: 990px) {
    .col-links {
        width: 200px;
    }
    .col-item {
        width: 150px;
        min-width: 150px;
        max-width: 150px;
    }
    .nopadding-scroll {
        padding-left: 200px;
        font-size: 14px;
        white-space: nowrap;
    }
    .col-item.is-ok:after {
        font-size: 14px;
        right: 11px;
    }
}

.col-item .link-wrapper-modal {
    text-align: center;
    cursor: pointer;
    display: block;
}

.col-item .link-wrapper-modal .fa {
    font-size: 80px;
    position: absolute;
    top: 11%;
    color: white;
    opacity: 0;
    left: 0;
    right: 0;
    -moz-transition: all 0.2s ease-in-out;
         transition: all 0.2s ease-in-out;
    margin-right: 0;
}

.col-item .link-wrapper-modal:hover .fa {
    opacity: 0.4;
}

@media (max-width: 990px) {
    .col-item .link-wrapper-modal {
        height: 186px;
    }
    .col-item .link-wrapper-modal .fa {
        top: 8% !important;
    }
}

.col-item img {
    width: auto;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    -moz-border-radius: 2px;
         border-radius: 2px;
    height: 169px;
    max-height: 169px;
    padding: 10px;
    background: white;
    border: 1px solid #eee;
    -moz-border-radius: 2px;
         border-radius: 2px;
}

@media (max-width: 990px) {
    .col-item img {
        width: 100%;
        height: auto;
        max-height: 119px;    }
}

.col-titel {
    font-size: 21px;
    white-space: normal;
    margin-bottom: 19px;
    margin-top: 12px;
    font-weight: 300;
    max-width: 169px;
    padding-right: 20px;
    min-height: 58px;
    max-height: 58px;
    overflow: hidden;
    -moz-transition: all .2s ease;
         transition: all .2s ease;
}

.chosen .col-titel {
    color: #368D91;
}

.side-data {
    margin-top: 21px;
}

@media (max-width: 990px) {
    .side-data {
        margin-top: 15px;
    }
    .col-titel {
        font-size: 15px;
        padding-right: 12px;
        min-height: 42px;
    }
}

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
    background-color: #eee;
    color: #3a3a3a;
    border: 1px solid #ddd;

}

.side-data ul li.active {
    background-color: #eee;
    color: #3a3a3a;
    border: 1px solid #ddd;
}

.col-item .overlay-item {
    text-align: center;
    height: 100%;
    width: 0px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    color: white;
    background-color: #d4d4d4;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    -moz-transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
         transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
    cursor: pointer;
}

.col-item .overlay-item i.fa {
    margin: 0;
    margin-top: 20px;
    font-size: 23px;
    color: #eee;
}

.col-item .overlay-item .serie-nummer-rotate {
      -webkit-transform: rotate(270deg);
         -moz-transform: rotate(270deg);
          -ms-transform: rotate(270deg);
              transform: rotate(270deg);
      display: block;
      float: left;
      width: 100%;
      clear: both;
      margin-top: 290px;
      color: rgb(113, 113, 113);
      -moz-transition: all 0.2s ease-in-out;
           transition: all 0.2s ease-in-out;
}

.overlay-item:hover {
    background-color: #36bfc5;

}

.overlay-item:hover i.fa {
    color: white;
}

.overlay-item:hover .serie-nummer-rotate {
    color: white;
}

.col-item.verborgen .overlay-item {
    width: 100%;
    opacity: 1;
}

.overlay-item.zero-op {
    opacity: 0 !important;
}

/**
 ** Custom Modal
 **/

.product-view-modal-background {
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    top:0;
    left:0;
    position: fixed;
    z-index: 1000;
    overflow: scroll;
    margin-right: -15px;
    padding-right: 15px;

    opacity: 0;
    -webkit-transform: scale(1.2) translate3d(0,0,0);
       -moz-transform: scale(1.2) translate3d(0,0,0);
            transform: scale(1.2) translate3d(0,0,0);
    height: 0px;

    -moz-transition: opacity 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;

         transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;

         transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.product-view-modal-background.open {
    opacity: 1;
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    height: 100%;
    display: block;
}

.product-view-modal-background.open.fade-out {
    opacity: 0;
}

.product-view-modal-background .container {
    margin-top: 8%;
}

.product-view-modal-background .cpm {
    position: absolute;
    right: 17px;
    top: 19px;
    font-size: 30px;
    color: #CCC;
    -moz-transition: all 0.2s ease;
         transition: all 0.2s ease;
    cursor: pointer;
}

.product-view-modal-background .cpm:hover {
    color: #36bfc5;
}

@media (max-width: 991px) {
    .product-view-modal-background .cpm {
        position: absolute;
        right: -6px;
        top: -324px;
        font-size: 30px;
        color: #CCC;
        -moz-transition: all 0.2s ease;
             transition: all 0.2s ease;
        cursor: pointer;
        z-index: 1000;
        padding: 10px;
        background: #36bfc5;
        -moz-border-radius: 200px;
             border-radius: 200px;
        color: white;
        height: 50px;
        width: 50px;
        text-align: center;
        padding: 0;
        padding-top: 9px;
    }
    .product-view-modal-background .cpm:hover {
        color: #fff;
    }
}

/* Swiper basics */
    .swiper-wrap-up {
        height: 490px;
    }
    @media (max-width: 991px) {
        .swiper-wrap-up {
            height: 300px;
        }
        .product-view-modal-background .modal-title {
            margin-top: 20px;
            font-size: 22px;
        }
    }

    .swiper-container {
        width: 100%;
        height: 100%;
    }
    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #eee;
        width: auto;
    }
    .swiper-slide img {
        height: 100%;
        width: auto;
    }
    .swiper-pagination-bullet-active {
        background: #36BFC5;
    }

/**
 ** pagination
 **/

.pagination-scroll {
    text-align: center;
    margin-top: 21px;
    float: left;
    width: 100%;
    display: block;
}

.pagination-scroll p {
    color: #eee;
}
.pagination-scroll .button {
    text-align: center;
    background-color: #eee;
    padding: 15px;
    -moz-border-radius: 3px;
         border-radius: 3px;
    cursor: pointer;
    -moz-transition: all 0.2s ease-in-out;
         transition: all 0.2s ease-in-out;
}
.pagination-scroll .button:hover {
    background-color: #ddd;
}
.pagination-scroll .button .fa {
    margin: 0;
}

@media (max-width: 990px) {
    .pagination-scroll {
        margin-top: 14px;
    }
}

/**
 ** Hover classes
 **/

.col-item .list-container {
    margin-top: 11px;
}

@media (max-width: 990px) {
    .col-item .list-container {
        margin-top: 71px;
    }
}

.list-group-item {
    -moz-transition: all 0.1s ease-in-out;
         transition: all 0.1s ease-in-out;
    cursor: default;
    white-space: nowrap;
    position: relative;
    min-height: 47px;
}

.side-data .list-group-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0);
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 67%, rgba(255,255,255,0) 68%, rgba(255,255,255,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(67%, rgba(255,255,255,0)), color-stop(68%, rgba(255,255,255,0)), color-stop(100%, rgba(255,255,255,1)));
    background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 67%, rgba(255,255,255,0) 68%, rgba(255,255,255,1) 100%);

    opacity: 1;
    -moz-transition: all 0.2s ease-in-out;
         transition: all 0.2s ease-in-out;
}

.side-data .list-group-item:first-child::after,
.side-data .list-group-item.no-grad::after {
    display: none;
}

.list-group-item span {
    -moz-transition: all 0.2s ease-in-out;
         transition: all 0.2s ease-in-out;
}

.list-group-item.hover  {
    background-color: rgba(54, 191, 197, 0.11);
}

.side-data .list-group-item.hover::after {
    opacity: 0;
}

/**
 ** Configuratie type rows **
 **/

.custom-table {
    border-bottom: 1px solid #ddd;
}

.glassoort-rows td.type {
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    padding-right: 20px;
}

thead tr th.type {
    padding-right: 20px;
}

.custom-table .titles-small {
    margin-top: 23px;
}

.glassoort-rows td.zes-type {
    border-right: 1px solid #ddd;
}

.glassoort-rows td.acht-type {
    border-right: 1px solid #ddd;
}

.glassoort-rows .true {
    color: #36bfc5;
}

.glassoort-rows .false {
    color: #333;
    font-size: 10px;
    opacity: 0.5;
}

.glassoort-rows.active td.type,
.glassoort-rows.active td.zes-type,
.glassoort-rows.active td.acht-type {
    background-color: #36BFC5;
    color: #fff;
    border-color: #30A6AC;
}

.glassoort-rows.active .true,
.glassoort-rows.active .false {
    color: #fff;
}

.option-box {

}

.option-box-title {
    margin: 10px 0px;
    display: block;
}

/**
 ** Da Matrix
 **/

.grid-data-container {

}

.matrix-wrapper {
    background-color: #fff;
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 100%;
    -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.22);
         box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.22);
    height: 70px;
    -moz-transition: 0.3s height ease-in-out, 0.3s background-color ease-in-out 0.3s, padding-top ease-in-out 0.3s;
         transition: 0.3s height ease-in-out, 0.3s background-color ease-in-out 0.3s, padding-top ease-in-out 0.3s;
    z-index: 9998;
    padding-top: 0px;
}

.matrix-wrapper.open {
    height: 100%;
    /*padding-top: 116px;*/
    background-color: #eee;
    overflow: scroll;
}

.matrix-top-bar {
    position: relative;
    height: 70px;
}

.matrix-top-bar img.matrix-logo.pull-left {
    max-width: 170px;
    margin-top: 21px;
    opacity: 0;
    -moz-transition: all 0.3s ease-in-out;
         transition: all 0.3s ease-in-out;
}

.matrix-wrapper.open .matrix-top-bar img.matrix-logo.pull-left {
    opacity: 1;
}

.matrix-open-close-text {
    float: right;
    position: absolute;
    top: 13px;
    right: 80px;
    white-space: nowrap;
    -moz-transition: all 0.3s ease-in-out 0.5s;
         transition: all 0.3s ease-in-out 0.5s;
    cursor: pointer;
    font-weight: 400;
}

.matrix-open-close-text-sluiten {
    float: right;
    position: absolute;
    top: 13px;
    right: 80px;
    white-space: nowrap;
    opacity: 0;
    -moz-transition: all 0.2s ease-in-out 0.5s;
         transition: all 0.2s ease-in-out 0.5s;
    cursor: pointer;
    font-weight: 400;
}

.matrix-open-close-button {
    float: right;
    position: absolute;
    top: 10px;
    right: 0;
    -moz-transition: all 0.2s ease-in-out;
         transition: all 0.2s ease-in-out;
}
.matrix-open-close-button .fa {
    padding: 8px 9px 24px;
    background-color: #36bfc5;
    -moz-border-radius: 100px;
         border-radius: 100px;
    font-size: 30px;
    color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    -moz-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.22);
         box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.22);
    -moz-transition: all 0.2s ease-in-out;
         transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.matrix-open-close-button:hover .fa {
    background-color: #33B6BC;
}

/**
 ** matrix open, rotate closebutton
 **/

.matrix-wrapper.open .matrix-open-close-button {
    top: 27px;
}

.matrix-wrapper.open .matrix-open-close-button .fa {
    -webkit-transform: rotate(180deg);
            -moz-transform: rotate(180deg);
             -ms-transform: rotate(180deg);
         transform: rotate(180deg);
    -moz-box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.22);
         box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.22);
}

.matrix-wrapper.open .matrix-open-close-button .matrix-open-close-text {
    opacity: 0;
}

.matrix-wrapper.open .matrix-open-close-button .matrix-open-close-text-sluiten {
    opacity: 1;
}

.matrix-grid-wrapper {
    margin-top: 30px;
    opacity: 0;
    -moz-transition: opacity 0.3s ease-in-out 0.5s;
         transition: opacity 0.3s ease-in-out 0.5s;
}

.matrix-wrapper.open .matrix-grid-wrapper {
    opacity: 1;
}

.matrix-grid-wrapper .matrix-grid {

}

.matrix-grid-table thead>tr>th,
.matrix-grid-table tbody>tr>td {
    border: 0px;
}

.matrix-grid-table td,
.matrix-grid-table th {
    padding: 2px !important;
}

.matrix-grid-table .grid-color {
    background-color: #36bfc5;
    padding: 30px 2% !important;
    border: 2px solid #fff;
    vertical-align: middle;
    text-align: center;
}

.matrix-grid-table .grid-data {
    padding: 10px !important;
    font-size: 16px;
    text-align: right;
    line-height: 24px;
}

.matrix-grid-table .grid-data.selected {
    background-color: #D0E8E9 !important;
}

.matrix-grid-table .grid-data:nth-of-type(2n) {
    background-color: #eee;
    border: 2px solid #fff;
}

.matrix-grid .matrix-ball {
    background-color: #fff;
    text-align: center;
    width: 27px;
    height: 27px;
    float: left;
    padding-top: 1px;
    -moz-border-radius: 50px;
         border-radius: 50px;
}

.matrix-grid .fa {
    float: right;
    margin-top: 5px;
    color: #fff;
}

.matrix-grid .grid-num {
    font-style: normal;
    margin-top: 1px;
    float: right;
    color: #fff;
}

.hidden-nav {
    position: fixed;
    opacity: 0;
    top: 0;
    left: 0;
    -webkit-transform: translateY(-116px);
            -moz-transform: translateY(-116px);
             -ms-transform: translateY(-116px);
         transform: translateY(-116px);
    -moz-transition: all 0.2s ease-in-out;
         transition: all 0.2s ease-in-out;
    width: 100%;
    z-index: 9999;
}

.hidden-nav.unhide {
    opacity: 1;
    -webkit-transform: translateY(-4px);
            -moz-transform: translateY(-4px);
             -ms-transform: translateY(-4px);
         transform: translateY(-4px);
}

/**
 ** Mediaqueries matrix table
 **/

@media (max-width: 990px) {
    .grid-data-container {
        width: 100% !important;
    }
    .card .matrix-grid.panel-body {
        padding: 10px;
    }

    .matrix-grid-table {
        font-size: 14px;
    }
    .matrix-grid .matrix-ball {
        width: 20px;
        height: 20px;
    }
    .matrix-grid .grid-num {
        font-size: 12px;
    }
    .matrix-grid-table .grid-data {
        font-size: 14px;
    }
}

/**
 ** 4x rows in confgureren
 **/

.options-diverse label {
    font-size: 16px;
    white-space: nowrap;
}

.options-diverse .radio-styled::before {
    top: -1px;
}

.options-diverse .radio-styled::after {
    top: 4px;
}

.options-diverse .panel-body {
    /*min-height: 527px;*/
}

.options-diverse .card .stap-indicatie small {
    margin-top: 23px;
    display: block;
}

.options-diverse.config .card .stap-indicatie small {
    margin-top: 0px;
    margin-bottom: 10px;
}

.options-diverse .radio,
.options-diverse .checkbox {
    margin-bottom: 15px;
}

/******************
 ** Winkelmandje **
 ******************/

.table.winkelmandje>thead>tr>th,
.table.winkelmandje>tbody>tr>td {
    padding: 14px;
    vertical-align: middle;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.table.winkelmandje .stukprijs {
    /*padding-right: 40px;*/
}

.winkelmandje-row th {
    font-weight: 400;
    font-family: "futura-pt", sans-serif;
    font-size: 88%;
    color: #36bfc5;
}

.winkelmandje-img {
    max-width: 40px;
    -moz-border-radius: 2px;
         border-radius: 2px;
}

.winkelmandje-row th:nth-of-type(1),
.winkelmandje-row td:nth-of-type(1) {
    padding-left: 0px !important;
}

.winkelmandje-row th:nth-last-child(1),
.winkelmandje-row td:nth-last-child(1) {
    padding-right: 0px !important;
}

 .winkelmandje-totaal hr {
    margin-top: 10px;
}

.indent {
    display: block;
    width: 20px;
    height: 20px;
    float: left;
}

.indented-row td {
    color: #838383;
    white-space: nowrap;
    font-size: 14px;
}

td:nth-of-type(2) .fa {
    opacity: 0;
    display: none;
}

.indented-row td:nth-of-type(2) .fa {
    display: block;
    opacity: 1;
    font-size: 12px;
    float: left;
    margin-top: 3px;
    color: #36bfc5;
}

@media (max-width: 990px) {
    .table.winkelmandje {
        font-size: 14px;
    }
    .indent {
        display: none;
    }
    .indented-row td:nth-of-type(2) .fa {
        margin-top: 4px;
    }
}

/**
 ** Selection items
 **/

.selection-container {
    padding: 15px;
    background-color: #E8E8E8;
    -moz-border-radius: 2px;
         border-radius: 2px;
    margin-bottom: 20px;
    width: 100%;
    float: left;
    min-height: 123px;
    overflow: visible;
}
.selection-container.one-item {
    height: 1px;
    overflow: hidden;
    opacity: 0;
    position: absolute;
}

/* Selected Item */

.selection-container .selection .selection-item {
    width: 32.33333%;
    background-color: #ddd;
    -moz-border-radius: 2px;
         border-radius: 2px;
    border: 2px solid #D3D3D3;
    padding: 5px 10px;
    padding-right: 30px;
    margin-right: 1.33333%;
    min-height: 93px;
    float: left;
    position: relative;
    -moz-transition: all 0.2s ease-in-out;
         transition: all 0.2s ease-in-out;
    z-index: 10;
}

.selection-container .selection .selection-item .place-text {
    display: none;
    position: absolute;
    top: 0;
    left: 0;

}

.selection-container .selection .selection-item.active .place-text {
    display: block;
    margin-bottom: 0 auto;
    margin-top: 33px;
    font-weight: 500;
    width: 100%;
    text-align: center;
    color: rgba(45, 88, 90, 0.38);
}

.selection-container .selection .selection-item:nth-last-child(1) {
    margin-right: 0;
}

.selection-container .selection .selection-item .selection-item-title {
    font-family: "futura-pt", sans-serif;
    font-size: 14px;
    color: #aaa;
    font-weight: 700;
    max-width: 95%;
}

.selection-container .selection .selection-item .selection-item-selection {
    margin-top: 4px;
    margin-bottom: 0px;
    font-weight: normal;
    color: #aaa;
}

.selection-container .selection .selection-item .selection-item-wijzig {
    font-family: "futura-pt", sans-serif;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.32);
    font-weight: 700;
    max-width: 95%;
    margin: 0px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    cursor:pointer;
    /*display: none;*/
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.selection-container .selection .selection-item .selection-item-wijzig:hover {
    color: rgba(255, 255, 255, 1);
}

.selection-container .selection .selection-item .fa.close-icon {
    position: absolute;
    top: 9px;
    right: 2px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

.selection-container .selection .selection-item .fa.close-icon:hover {
    position: absolute;
    top: 9px;
    right: 2px;
    color: #ddd;
    font-size: 15px;
}

.selection-container .selection .selection-item.active .selection-item-title,
.selection-container .selection .selection-item.active .selection-item-selection,
.selection-container .selection .selection-item.active .selection-item-wijzig,
.selection-container .selection .selection-item:not(.is-ok) .selection-item-title,
.selection-container .selection .selection-item:not(.is-ok) .selection-item-selection,
.selection-container .selection .selection-item:not(.is-ok) .selection-item-wijzig{
    display: none
}

/* Approved selected item */

.selection-container .selection .selection-item.is-ok {
    background-color: #3FADB2;
    border-color: #39A9AE;
    -webkit-backface-visibility: visible;
       -moz-backface-visibility: visible;
            backface-visibility: visible;
    z-index: 11;
    opacity: 0.6;
}


.selection-container .selection .selection-item.is-ok:hover {
    background-color: #39B5BA;
    border-color: #3BACB0;
    -webkit-transform: scale(1.02);
       -moz-transform: scale(1.02);
        -ms-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 1;
}

.selection-container .selection .selection-item.is-ok.active {
    background-color: #39B5BA;
    border-color: #3BACB0;
    opacity: 1;
}

.selection-container .selection .selection-item.is-ok .fa
.selection-container .selection .selection-item.no-match .fa {
    opacity: 1;
    color: white;
    font-size: 15px;
    margin-left: 3px;
}

.selection-container .selection .selection-item.is-ok .selection-item-title,
.selection-container .selection .selection-item.is-ok .selection-item-selection,
.selection-container .selection .selection-item.no-match .selection-item-title,
.selection-container .selection .selection-item.no-match .selection-item-selection {
    color: white;
    position: relative;
}

.selection-container .selection .selection-item.is-ok .selection-item-title::after {
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f00c";
    position: absolute;
    color: #fff;
    font-size: 16px;
    right: -25px;
    top: 0px;
}

/* No match item */

.selection-container .selection .selection-item.no-match {
    background-color: #C74D40;
    border-color: #A04339;
    opacity: 0.6;
}

.selection-container .selection .selection-item.no-match:hover {
    background-color: #B94C40;
    border-color: #A04339;
    opacity: 1;
}
.selection-container .selection .selection-item.no-match.active {
    background-color: #E74C3C;
    border-color: #C0392B;
    opacity: 1;
}
.selection-container .selection .selection-item.no-match.active:hover {
    background-color: #D64C3E;
    border-color: #C0392B;
    opacity: 1;
}
/*
.selection-container .selection .selection-item.no-match .selection-item-wijzig {
    display: block;
}

.selection-container .selection .selection-item.no-match.active .selection-item-wijzig {
    display: none;
}
*/
/* OF OFF switch */
.switch {
    position: absolute;
    height: 34px;
    max-width: 276px;
    right: 30px;
    top: 12px;
    opacity: 0;
    -webkit-transform: translateX(-30px);
       -moz-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
            transform: translateX(-30px);
    -moz-transition: opacity 1s ease-in-out, -moz-transform 1s ease-in-out;
         transition: opacity 1s ease-in-out, -webkit-transform 1s ease-in-out;
         transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.ready .switch {
    opacity: 1;
    -webkit-transform: translateX(0px);
       -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);
}

.switch > p {
    float: left;
    vertical-align: middle;
    font-family: "futura-pt", sans-serif;
    font-size: 14px;
    color: #aaa;
    font-weight: 700;
    margin-bottom: 0px;
    margin-right: 10px;
    margin-top: 8px;
}

.onoffswitch {
    float: right;
    position: relative;
    width: 66px;
    height: 34px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    vertical-align: text-bottom;
}
.onoffswitch-checkbox {
    display: block;
    position: absolute;
    opacity: 0;
    left: 0;
    bottom: 0;
    z-index: -100;
}
.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #999999;
    -moz-border-radius: 2px;
         border-radius: 2px;
}
.onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    -moz-transition: margin 0.3s ease-in 0s;
    transition: margin 0.3s ease-in 0s;
}
.onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 30px;
    padding: 0;
    line-height: 26px;
    font-size: 14px;
    color: white;
    font-weight: bold;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid transparent;
    -moz-background-clip: padding-box;
         background-clip: padding-box;
}
.onoffswitch-inner:before {
    content: "Aan";
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    padding-left: 10px;
    background-color: #EEEEEE;
    color: #000000;
}
.onoffswitch-inner:after {
    content: "Uit";
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    padding-right: 14px;
    background-color: #EEEEEE;
    color: #C74D40;
    text-align: right;
}
.onoffswitch-switch {
    display: block;
    width: 18px;
    margin: 0px;
    background: #A1A1A1;
    background: #C74D40;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 48px;
    -moz-transition: all 0.3s ease-in 0s;
    transition: all 0.3s ease-in 0s;
    -moz-border-radius: 2px;
         border-radius: 2px;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px;
    background-color: #36BFC5;
}

/* Bottom Bar */

.bottom-bar {
    background-color: #fff;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: -10;
    -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.22);
         box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.22);
    -webkit-transform: translateY(141px) scale(1.1);
       -moz-transform: translateY(141px) scale(1.1);
        -ms-transform: translateY(141px) scale(1.1);
            transform: translateY(141px) scale(1.1);
    -moz-transition: -moz-transform 0.3s ease-in-out .2s, visibility .0s ease;
         transition: -webkit-transform 0.3s ease-in-out .2s, visibility .0s ease;
         transition: transform 0.3s ease-in-out .2s, visibility .0s ease;
    visibility: hidden;
}

.bottom-bar.is-ok {
    z-index: 10;
    visibility: visible;
    -webkit-transform: translateY(0px) scale(1);
       -moz-transform: translateY(0px) scale(1);
        -ms-transform: translateY(0px) scale(1);
            transform: translateY(0px) scale(1);
}

/*.ready .bottom-bar.small {
    transform: translateY(0px) scale(1);
}*/

.bottom-bar .container {
    padding: 35px 15px;
}

@media (max-width: 1200px) {
    .bottom-bar .container {
        padding: 15px;
    }
}

.bottom-bar.small .container {
    padding: 15px 15px;
}

.bottom-bar .container .btn {
    margin-bottom: 0px;
}

.bottom-bar .container p {
    margin-top: 19px;
    margin-bottom: 0px;
    margin-right: 15px;
    height: 25px;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 400;
}

.bottom-bar.small .container>.fa{
    font-size: 20px;
    margin-top: 15px;
}

.bottom-bar .container>.fa{
    font-size: 20px;
    margin-top: 21px;
}

.bottom-bar .bottom-text-large {
    margin-top: 20px !important;
    font-size: 18px;
}

/* modal voor ongeldige combinaties filteren = UIT*/

.modal-overlay-background {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.53);
    padding-top: 0%;
    opacity: 0;
    -webkit-transform: scale(1.2);
       -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
    height: 0px;
    -moz-transition: opacity 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
         transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
         transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.modal-overlay-background.open {
    padding-top: 13%;
    opacity: 1;
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    height: 100%;
}

.modal-overlay-background.open.fadeout {
    opacity: 0;
}

/**
 ** Bevestigpagina
 **/

.config-show-img {
    width: 100%;
    border: 1px solid #eee;
    -moz-border-radius: 2px;
         border-radius: 2px;
}

.config-show-img img {

}

div.preview-img{position:relative !important; }

/* Swiper test */

.swiper-container {
        width: 100%;
        height: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .swiper-slide {
        -moz-background-size: contain;
             background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
    .gallery-top {
        height: 80%;
        width: 100%;
    }
    .gallery-thumbs {
        height: 20%;
        -moz-box-sizing: border-box;
             box-sizing: border-box;
        padding: 10px 0;
    }
    .gallery-thumbs .swiper-slide {
        width: 25%;
        height: 100%;
        opacity: 0.4;
    }
    .gallery-thumbs .swiper-slide-active {
        opacity: 1;
    }

/* config scherm */

.config-show-img img {
    padding: 0px 10px;
    margin: 0 auto;
    display: block;
    height: 280px;
}

.title-for-bev {
    display: block;
    margin-bottom: 0px;
}

.title-for-bev.margin-bottom {
    margin-bottom: 10px;
}

.panel-body .no-border {
    border-bottom: none !important;
}

.data-wrapper .radios-in-config {
    display: block;
}

.config .option-box {
    margin-bottom: 30px;
}

.config .component {
    margin-bottom: 18px;
}

/* basket fixed footer */

.fixed-footer-basket {
    background-color: white;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.form-control.has-error, label.has-error,
.card .stap-indicatie small.has-error{
    border-color: #E74C3C !important;
    color: #E74C3C !important;
    position: relative;
}

input[type="text"].has-error, input[type="number"].has-error {
    border: 1px solid; color: #E74C3
}

.stap-indicatie .has-error::after {
    content: "\f06a";
    font-size: 14px;
    position: absolute;
    z-index: 10;
    right: 0;
    top: 4px;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translate(0, 0);
       -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
}

.remove-icon{
    font-size:12px;
}

.db-wrapper {
    background-color: #E8E8E8;
    -moz-border-radius: 3px;
         border-radius: 3px;
    overflow: hidden;
    -moz-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.22);
         box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.22);
}
.remove-icon span.fa-stack:first-child{
    color:#ccc;
}

.remove-icon span.fa-stack:hover:first-child{
    color:#36bfc5;
    cursor:pointer;
}

.db-wrapper .head {
    background-color: #F9F9F9;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.db-wrapper .filter-controls {
    background-color: white;
    padding: 20px;
    min-height: 100vh;
}

.db-wrapper .filter-controls label,
.db-selectie-data label {
    color: #36bfc5;
    font-size: 86%;
    margin-bottom: 10px;
    font-family: "futura-pt", sans-serif;
    font-weight: normal;
}

.db-wrapper .filter-controls .form-group,
.db-selectie-data .form-group {
    position: relative;

    width: 100%;
}

.db-wrapper .filter-controls .unit,
.db-selectie-data .unit {
    position: absolute;
    top: 47px;
    right: 10px;
    opacity: 1;
    z-index: 99999;
    color: #aaa;
    background-color: white;
}

.db-wrapper .filter-controls .materialen .color-hider {
    max-height: 265px;
    overflow: hidden;
    border-bottom: 37px solid white;
    -moz-transition: max-height .4s ease-in-out;
         transition: max-height .4s ease-in-out;
}

.db-wrapper .filter-controls .materialen .color-hider:hover {
    max-height: 300px;
}

.db-wrapper .filter-controls .materialen .color-hider .pull-button-line {
    border-top: 1px solid #eee;
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    text-align: center;
}

.db-wrapper .filter-controls .materialen .color-hider .pull-button-line .fa {
    padding: 1px 15px;
    color: white;
    background-color: #4A4A4A;
    margin: 0 auto;
    margin-top: -10px;
    display: block;
    width: 63px;
    -moz-border-radius: 2px;
         border-radius: 2px;
    -moz-transition: all .2s ease-in-out;
         transition: all .2s ease-in-out;
    cursor: pointer;
}

.db-wrapper .filter-controls .materialen .color-hider .pull-button-line .color-count-text {
    color: #aaa;
    font-style: italic;
    font-size: 14px;
    float: right;
    margin-bottom: -10px;
}

.db-wrapper .filter-controls .materialen .color-hider .pull-button-line .fa:hover {
    background-color: #36bfc5;
}

.db-wrapper .filter-controls .materialen .color-hider.is-open .pull-button-line .fa {
    moz-transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
    -moz-transform: scaleY(-1);
     -ms-transform: scaleY(-1);
         transform: scaleY(-1);
}

.db-wrapper .filter-controls .materialen .radio-styled {
    font-family: 'Roboto';
    font-size: 18px;
    color: #333;
    font-size: 72%;
}

.db-wrapper .filter-controls .materialen .radio-styled:before,
.db-wrapper .filter-controls .materialen .radio-styled:after {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -999;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.db-wrapper .filter-controls .materialen .radio-styled {
    width: 100%;
    padding: 5px;
    padding-left: 5px !important;
    background: rgb(247, 247, 247);
    -moz-border-radius: 3px;
         border-radius: 3px;
    -moz-transition: all .2s ease;
         transition: all .2s ease;
}

.db-wrapper .filter-controls .materialen .radio-styled img {
    -moz-border-radius: 999px;
         border-radius: 999px;
    margin-right: 10px;
}

.db-wrapper .filter-controls .materialen .radio-styled:hover {
    background-color: rgba(54, 191, 197, 0.18);
}

.db-wrapper .filter-controls .materialen .radio-styled.checked {
    color: white;
    background-color: #36bfc5;
    font-weight: bold;
}

.db-wrapper .filter-controls .materialen .radio-styled.checked img {
    -moz-box-shadow: 0px 0px 5px 0px rgba(54,191,197,1);
    box-shadow: 0px 0px 5px 0px rgba(54,191,197,1);
}

.db-wrapper .filter-controls .extra label {
    margin-bottom: 0px;
}

.db-wrapper .filter-controls .extra .checkbox-styled {
    font-family: 'Roboto';
    font-size: 18px;
    color: #333;
    font-size: 72%;
    padding-top: 2px;
}

/*@media (min-width: 991px) {*/
    .db-wrapper .col-left {
        padding-right: 0px;
    }

    .db-wrapper .col-right {
        padding-left: 0px;
    }
    .db-wrapper .results-head {
        border-left: 1px solid #ddd;
    }


.db-wrapper .result-box {
    padding: 20px;
    border-left: 1px solid #ddd;
}

.db-wrapper .panel-body {
    padding: 5px;
}

.db-wrapper .panel-body .custom-panel-col-15 {
    width: 25%;
    display: block;
    float: left;
    padding:0 10px;
    border:1px solid #f1f1f1;
}

.db-wrapper .panel-body .custom-panel-col-85 {
    width: 75%;
    display: block;
    float: left;
    padding: 5px 5px 0px 15px;
}

@media (max-width: 1200px) {
    .db-wrapper .panel-body .custom-panel-col-15 {
        width: 25%;
    }

    .db-wrapper .panel-body .custom-panel-col-85 {
        width: 75%;
    }
}

.db-wrapper .panel-body .custom-panel-col-15 .img-holder {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #fff;
    -moz-border-radius: 2px;
         border-radius: 2px;
}

.db-wrapper .panel-body .custom-panel-col-15 .img-holder img {
    display: block;
    margin: 0 auto;
    width: 100%;

    position: absolute;
    top: 50%;
    bottom: 50%;
    margin: auto;
}

.db-wrapper .result-title {
    width: 100%;
    display: block;
    float: left;
    padding-bottom: 5px;
    margin-bottom: 6px;
}

.db-wrapper .custom-col-left {
    width: 60%;
    display: block;
    float: left;
    padding-bottom: 0;
    position: relative;
}

.db-wrapper .custom-col-right {
    width: 40%;
    display: block;
    float: left;
    padding: 10px 0px;
    padding-bottom: 0;
    position: relative;
}

@media (max-width: 1200px) {
    .db-wrapper .custom-col-left {
        width: 90%;
    }

    .db-wrapper .custom-col-right {
        width: 10%;
    }
}

.db-wrapper .custom-col-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: -11px;
    width: 1px;
    height: 100%;
    background-color: #f5f5f5;
}

.db-wrapper .custom-col-right {
    padding-right: 10px;
}

.db-wrapper .custom-col-right ul li {
    font-size: 72%;
    margin-bottom: 15px;
    white-space: nowrap;
    /*opacity: 0.6;*/
}

@media (max-width: 1200px) {
    .db-wrapper .custom-col-right ul li {
        font-size: 0px;
        height: 17px;
    }
}

.db-wrapper .custom-col-right ul li.chosen-color {
    opacity: 1;
    color: #36bfc5;
    font-weight: normal;
    position: relative;
}

.db-wrapper .custom-col-right ul li.chosen-color::after {
    content: '';
    height: 26px;
    width: 1px;
    background-color: #36bfc5;
    top: -3px;
    left: -11px;
    position: absolute;
    z-index: 999;
}

.db-wrapper .custom-col-right ul li:nth-last-child(1) {
    margin-bottom: 0;
}

.db-wrapper .custom-col-right ul li span {
    width: 25px;
    height: 25px;
    display: block;
    float: left;
    -moz-border-radius: 999px;
         border-radius: 999px;
    margin-right: 10px;
    margin-top: -3px;
    -moz-background-size: cover;
         background-size: cover;
}

.db-wrapper .custom-col-right ul li.chosen-color span {
    -moz-box-shadow: 0px 0px 5px 0px rgba(54,191,197,1);
    box-shadow: 0px 0px 5px 0px rgba(54,191,197,1);
}

.db-wrapper .hoogte,
.db-wrapper .breedte,
.db-wrapper .kenmerk {
    width: 100%;
    display: block;
    float: left;
    margin-bottom: 5px;
    padding-bottom: 6px;
}

.db-wrapper .hoogte .label,
.db-wrapper .breedte .label,
.db-wrapper .kenmerk .label {
    font-family: 'futura';
    font-size: 12px;
    color: #36bfc5;
    display: block;
    float: left;
    font-weight: normal;
    margin-right: 10px;
    width: 42px;
}

.db-wrapper .hoogte .data,
.db-wrapper .breedte .data,
.db-wrapper .kenmerk .data {
    font-size: 72%;
    opacity: 0.5;
    float: left;
}

.db-wrapper .kenmerk {
    margin-bottom: 0;
}

.db-wrapper .fa-times, .db-wrapper .fa-warning {
    color: #F44336;
}

.db-wrapper .kenmerk .no-match {
    text-decoration: line-through;
    font-style: italic;
}

.if-chosen-banner {
    padding: 10px;
    background-color: #36bfc5;
    color: rgb(48, 120, 123);
    position: absolute;
    right: 240px;
    top: -1px;
    text-align: center;
    border-radius: 0px 0px 3px 3px;
    -moz-border-radius: 0px 0px 3px 3px;
    -webkit-border-radius: 0px 0px 3px 3px;

    -moz-transition: all .2s ease-in-out;

         transition: all .2s ease-in-out;

    opacity: 0;
    -webkit-transform: translateY(-30px);
       -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
            transform: translateY(-30px);
    z-index:10;
}

@media (max-width: 1200px) {
    .if-chosen-banner {
        right: 120px;
    }
}

.results .panel.card.no-match {
    opacity: 0.5;
    pointer-events: none;
}

.results .panel.card.no-match::after {
    content: '';
    position: absolute;
    width:100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.results .panel.card.chosen .if-chosen-banner {
    opacity: 1;
    -webkit-transform: translateY(0px);
       -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
}

.if-chosen-banner .fa {
    margin: 0;
}

.results .panel.card {
    -moz-transition: -moz-box-shadow .2s ease-in-out, -moz-transform .2s ease-in-out, height .5s ease .2s, min-height .5s ease .2s, margin .2s ease, opacity .2s ease-in-out;
         transition: box-shadow .2s ease-in-out, -webkit-transform .2s ease-in-out, height .5s ease .2s, min-height .5s ease .2s, margin .2s ease, opacity .2s ease-in-out;
         transition: box-shadow .2s ease-in-out, transform .2s ease-in-out, height .5s ease .2s, min-height .5s ease .2s, margin .2s ease, opacity .2s ease-in-out;
    -webkit-transform: translateY(0px);
       -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
    cursor: pointer;
    overflow: hidden;
    border: none;
    opacity: 1;
    min-height: 181px;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
     -ms-transform: translateX(0px);
         transform: translateX(0px);
}

.results .panel.card.no-match {
    height: 0 !important;
    min-height: 0 !important;
    margin: 0;
    padding: 0;
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
     -ms-transform: translateX(-20px);
         transform: translateX(-20px);
}

.results .panel.card.chosen,
.results .panel.card:hover {
    border-color: #fff;
    -moz-box-shadow: 0px 9px 18px 0px rgba(0, 0, 0, 0.32);
         box-shadow: 0px 9px 18px 0px rgba(0, 0, 0, 0.32);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
     -ms-transform: translateY(-3px);
         transform: translateY(-3px);
}

/* Douchebakken */

.db-details .img-container {
    margin-top: 5px;
}

.db-details h4 {
    margin-top: 5px;
    font-size: 18px;
}

@media (max-width: 767px) {
    .db-details h4 {
        margin-top: 30px;
    }
}

.db-details .blauwe-lijn {
    height: 2px;
    width: 300px;
    background-color: #36bfc5;
    margin-bottom: 10px;
}

.data-wrapper .radio {
    margin-bottom: 15px;
}

.data-wrapper label.radio-styled,
.data-wrapper label.checkbox-styled {
    font-size: 16px;
}

.data-wrapper .radio-styled.filler::before,
.data-wrapper .checkbox-styled.filler::before {
    border-color: #36bfc5;
    background-color: #fff;
}

.data-wrapper .radio .fill-ani {
    top: 9px;
}

.data-wrapper .panel-border {
    border-color: #eee;
    margin: 20px 0 10px !important;
    display: block;
    clear: both;
}


/* achterwanden */

.aw-wrapper label.aw-label {
    width: 100%;
    background-color: white;
    -moz-border-radius: 3px;
         border-radius: 3px;
    position: relative;
    overflow: hidden;
    -moz-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.22);
         box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    -moz-transition: all 0.5s cubic-bezier(.62,-0.34,.33,1.4);
         transition: all 0.5s cubic-bezier(.62,-0.34,.33,1.4);
    -webkit-transform: translate3d(0, 0, 0);
            -moz-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0);
    will-change: transform;
}

.aw-wrapper .aw-label input.aw-radio {
    opacity: 0;
    position: absolute;
    -webkit-transform: translate3d(0, 0, 0);
            -moz-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0);
}

.aw-wrapper label.aw-label .aw-titel {
    font-size: 18px;
    font-weight: 300;
    display: block;
    position: relative;
    z-index: 50;
    padding: 20px 0px;
    background-color: white;
    -moz-transition: all 0.2s ease-in-out;
         transition: all 0.2s ease-in-out;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px solid #eee;
    width: 87%;
    margin: 0 auto;
}

.aw-wrapper .aw-label .aw-img-wrapper {
    overflow: hidden;
    position: relative;
    display: block;
    margin: 0 0;
    height: 250px;
    -moz-background-size: contain;
         background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 40;
    margin: 15px 0px;
}

.aw-wrapper .aw-label .btn-aw {
    margin: 0;
    -moz-border-radius: 0;
         border-radius: 0;
    font-size: 22px;
    padding: 15px;
    max-height: 63px;
    border: none;
    -moz-transition: background-color 0.2s ease-in-out .3s;
         transition: background-color 0.2s ease-in-out .3s;
}

.aw-wrapper .aw-label .btn-aw .btn-marker,
.aw-wrapper .aw-label .btn-aw .aw-checked {
    -moz-transition: all .5s cubic-bezier(.62,-0.34,.33,1.4);
         transition: all .5s cubic-bezier(.62,-0.34,.33,1.4);
    width: 100%;
    text-align: center;
    display: block;
    margin-bottom: 20px;
    -webkit-transform: translate3d(0, 0, 0);
            -moz-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0);
}

/* label hover */

.aw-wrapper label.aw-label:hover .aw-titel {
    color: #36bfc5;
    font-weight: 500;
}

/* label checked */

.aw-wrapper label.aw-label.checked {
    -webkit-transform: translate3d(0, -10px, 0);
            -moz-transform: translate3d(0, -10px, 0);
         transform: translate3d(0, -10px, 0);
    -moz-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.3);
         box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.3);
}

.aw-wrapper .aw-label.checked .btn-aw .btn-marker {
    -webkit-transform: translate3d(0, -100px, 0);
            -moz-transform: translate3d(0, -100px, 0);
         transform: translate3d(0, -100px, 0);
    opacity: 0;
}

.aw-wrapper .aw-label.checked .btn-aw {
    background-color: #36bfc5;
}

.aw-wrapper .aw-label.checked .btn-aw .btn-marker,
.aw-wrapper .aw-label.checked .btn-aw .aw-checked {
    -webkit-transform: translate3d(0, -45px, 0);
            -moz-transform: translate3d(0, -45px, 0);
         transform: translate3d(0, -45px, 0);
}

.aw-wrapper label.aw-label.checked .aw-titel {
    color: #36bfc5;
    font-weight: 500;
}

.aw-data-inputs .aw-images-filter {
    position: relative;
    min-height: 370px;
    padding: 0px;
}

.aw-data-inputs .aw-images-filter img.filter-image {
    -moz-transition: opacity .2s ease-in-out;
         transition: opacity .2s ease-in-out;
    border: 1px solid #E9E9E9;
    -moz-border-radius: 2px;
         border-radius: 2px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: 1;
    width: 362px;
    height: 362px;
    opacity: 0;
}

@media (max-width: 991px) {
    .aw-data-inputs .aw-images-filter img.filter-image {
        height: 334px;
    }
}

.aw-data-inputs .aw-images-filter img.filter-image.no-selection {
    z-index: 10;
    opacity: 1;
}

.aw-data-inputs .aw-images-filter img.filter-image.down {
    opacity: 0;
    z-index: 0;
}

.aw-data-inputs .aw-images-filter img.filter-image.active {
    opacity: 1;
    z-index: 10;
}

.aw-data-inputs .wrapper hr {
    margin: 0 0 27px;;
}

/* balls in filter ding */

.aw-data-inputs .aw-images-filter .ball {
    background-color: #36bfc5;
    color: white;
    font-family: 'futura-pt', sans-serif;
    -moz-border-radius: 3000px;
         border-radius: 3000px;
    padding-top: 2px;
    text-align: center;
    font-weight: 500;
    position: absolute;
    z-index: 20;
    opacity: 0;
    top: 0;
    left: 0;
    -moz-transition: all .5s cubic-bezier(.62,-0.34,.33,1.4);
         transition: all .5s cubic-bezier(.62,-0.34,.33,1.4);
    -webkit-transform: translate3d(0, 0, 0);
            -moz-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0);
    will-change: transform;
    height: 30px;
    width: 30px;
}


/* Een wand */
.aw-data-inputs.een-wand .aw-images-filter .ball.one {
    opacity: 1;
    top: 20%;
    left: 47%;
}

.aw-data-inputs.een-wand .aw-images-filter .ball.two {

}

.aw-data-inputs.een-wand .aw-images-filter .ball.three {

}

/* Twee wand */
.aw-data-inputs.twee-wand .aw-images-filter .ball.one {
    opacity: 1;
    top: 31%;
    left: 29%;
}

.aw-data-inputs.twee-wand .aw-images-filter .ball.two {
    opacity: 1;
    top: 31%;
    left: 63%;
}

.aw-data-inputs.twee-wand .aw-images-filter .ball.three {

}

/* Drie wand */
.aw-data-inputs.drie-wand .aw-images-filter .ball.one {
    opacity: 1;
    top: 44%;
    left: 20%;
}

.aw-data-inputs.drie-wand .aw-images-filter .ball.two {
    opacity: 1;
    top: 19%;
    left: 47%;
}

.aw-data-inputs.drie-wand .aw-images-filter .ball.three {
    opacity: 1;
    top: 44%;
    left: 73%;
}

/* Inputs */

.aw-data-inputs .aw-input-filter {
    opacity: 0;
    -moz-transition: all .2s ease-in-out;
         transition: all .2s ease-in-out;
}

.aw-data-inputs .aw-input-filter .input-maat-een,
.aw-data-inputs .aw-input-filter .input-maat-twee,
.aw-data-inputs .aw-input-filter .input-maat-drie {
    display: none;
}

.aw-data-inputs.een-wand .aw-input-filter,
.aw-data-inputs.twee-wand .aw-input-filter,
.aw-data-inputs.drie-wand .aw-input-filter {
    opacity: 1;
}

.aw-data-inputs.een-wand .aw-input-filter .input-maat-een {
    display: block;
}

.aw-data-inputs.twee-wand .aw-input-filter .input-maat-een,
.aw-data-inputs.twee-wand .aw-input-filter .input-maat-twee {
    display: block;
}

.aw-data-inputs.drie-wand .aw-input-filter .input-maat-een,
.aw-data-inputs.drie-wand .aw-input-filter .input-maat-twee,
.aw-data-inputs.drie-wand .aw-input-filter .input-maat-drie {
    display: block;
}

/* Bottom wrapper */

.bottom-wrapper {
    background-color: white;
    width: 100%;
    display: block;
    position: fixed;
    padding: 10px;
    border-top: 1px solid #EDEDED;
    left: 0;
    bottom: 0;

    -moz-transition: -moz-transform 0.4s ease-in-out;

         transition: -webkit-transform 0.4s ease-in-out;

         transition: transform 0.4s ease-in-out;
    -webkit-transform: translateY(200px) scale(1.2);
       -moz-transform: translateY(200px) scale(1.2);
        -ms-transform: translateY(200px) scale(1.2);
            transform: translateY(200px) scale(1.2);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
}

.bottom-wrapper.open {
    -webkit-transform: translateY(0px) scale(1);
       -moz-transform: translateY(0px) scale(1);
        -ms-transform: translateY(0px) scale(1);
            transform: translateY(0px) scale(1);
}

.bottom-wrapper button {
    margin-bottom: 0px;
}

.bottom-wrapper p {
    margin: 20px 20px 0 0;
}

/* Kies bekleding */

a.modal-bestel{
    margin-top:15px;
    width:100%;
}

.kb-wrapper {
    background-color: #fff;
    -moz-border-radius: 3px;
         border-radius: 3px;
    overflow: hidden;
    -moz-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.22);
         box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.22);
}

.kb-wrapper .custom-col {
    width: 33.3333333%;
    float: left;
    position: relative;
    display: block;
}

/* Eerste kolom */
.kb-wrapper .custom-col:nth-of-type(1) {
    border-right: 1px solid #ddd;
}

.kb-wrapper .custom-col:nth-of-type(1) .content {
    background-color: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
    display: block;
    left: 0;
}

.kb-wrapper .custom-col:nth-of-type(1) .content ul li {
    padding-left: 0;
    text-align: right;
    color: #36bfc5;
    font-weight: 500;
}


/* Tweede kolom */
.kb-wrapper .custom-col:nth-of-type(2) {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    margin-left: -1px;
}

/* Derde kolom */
.kb-wrapper .custom-col:nth-of-type(3) {

}


/* Algemeen kolommen */
.kb-wrapper .custom-col .head {
    background-color: #fefefe;
    padding: 20px;
    border-bottom: 1px solid #ECECEC;
}

.kb-wrapper .custom-col .head h4 {
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    position: relative;
}

.kb-wrapper .custom-col .head .image {
    width: 100%;
    height: 300px;
    -moz-border-radius: 2px;
         border-radius: 2px;
    border: 1px solid #eee;
    display: block;
    margin: 0 auto;
    -moz-background-size: contain;
         background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.kb-wrapper .custom-col .content .description {
    max-height: 200px !important;
    -moz-transition: max-height .9s ease-in-out;
         transition: max-height .9s ease-in-out;
}

.kb-wrapper .custom-col .content .description:hover {
    height: auto !important;
    max-height: 500px !important;
}

@media (max-width: 990px) {
    .kb-wrapper .custom-col .head .image {
        height: 150px;
    }
}

.kb-wrapper .custom-col .content {
    padding: 20px;
}

.list-group.no-truncate .list-group-item {
    white-space: normal;
    font-size: 16px;

    background-color: transparent;
    border: none;
    border-bottom: 1px solid #eee;
    padding: 15px 0px;
}

.kb-wrapper .list-group {
    -moz-border-radius: 2px;
         border-radius: 2px;
    overflow: hidden;
    background-color: #fff;
}

.kb-wrapper .list-group.no-truncate .list-group-item li {
    list-style: none;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.kb-wrapper .list-group.no-truncate .list-group-item li:last-child {
    margin-bottom: 0px;
}

.kb-wrapper .list-group.no-truncate .list-group-item:last-child {
    border-bottom: none;
}

.kb-wrapper .list-group.no-truncate .list-group-item li.is-ok::before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 4px;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translate(0, 0);
       -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    font-size: 12px;
    color: #36BFC5;
}

.kb-wrapper .list-group.no-truncate .list-group-item li.no-match::before {
    content: "\f00d";
    position: absolute;
    left: 0;
    top: 4px;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translate(0, 0);
       -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    font-size: 12px;
    color: #E74C3C;
}

.modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    display: block;
    z-index: 9999;
    overflow: hidden;

    background-color: rgba(0, 0, 0, 0.2);
    -moz-transition: -moz-transform .2s ease-in-out, opacity .2s ease-in-out;
         transition: -webkit-transform .2s ease-in-out, opacity .2s ease-in-out;
         transition: transform .2s ease-in-out, opacity .2s ease-in-out;
    -webkit-transform: scale(1.2);
       -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
}

.modal-wrapper .col-sm-8 {
    padding: 0 10px;
}

.modal-wrapper.open {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    height: 100%;
    overflow-y: scroll;
}

.modal-wrapper.open.fadeout{
    opacity: 0;
    -webkit-transform: scale(1.2);
       -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
}

.modal-wrapper .container {
    margin-top: 8%;
}

.bekleding-wrapper i.fa.fa-times.closeModal {
  padding: 10px;
  position: absolute;
  right: -10px;
  font-size: 22px;
  top: -10px;
  color: #D0D0D0;
  -moz-transition: all .2s ease-in-out;
       transition: all .2s ease-in-out;
  cursor: pointer;
}

.bekleding-wrapper i.fa.fa-times.closeModal:hover {
    color: #36BFC5;
}

.bekleding-wrapper .modal-wrapper .blue-line {
    width: 50%;
    max-width: 200px;
    height: 2px;
    background-color: #36BFC5;
    margin-bottom: 20px;
}

.bekleding-wrapper .modal-wrapper .list-unstyled li a {
    font-size: 16px;
}

.bekleding-wrapper .modal-wrapper .list-unstyled li a i {
    width: 20px;
}

/* achterwand selectie items */

.selectie-container-wanden {
    padding: 15px;
    background-color: #E8E8E8;
    -moz-border-radius: 2px;
         border-radius: 2px;
    margin-bottom: 20px;
    width: 100%;
    float: left;
    min-height: 123px;
    overflow: visible;
}

.selectie-container-wanden .items {
    width: 100%;
}

.selectie-container-wanden .items .item {
    float: left;
    padding: 10px;
    width: 32.33333%;
    margin-right: 1.33333%;
    background-color: #ddd;
    border: 2px solid #d3d3d3;
    min-height: 93px;
    cursor: pointer;
    -moz-transition: all 0.2s ease-in-out;
         transition: all 0.2s ease-in-out;
    z-index: 10;
    -moz-border-radius: 2px;
         border-radius: 2px;
    position: relative;
}

.selectie-container-wanden .items .item.is-ok {
    background-color: #36bfc5;
    border-color: #3BACB0;
    padding-right: 30px;
}

.selectie-container-wanden .items .item:last-child {
    margin-right: 0%;
}

.selectie-container-wanden .items .item p {
    font-size: 14px;
    font-family: 'futura-pt', sans-serif;
    font-weight: 700;
    margin: 0;
    padding: 0;
    max-width: 95%;
    color: white;
}

.selectie-container-wanden .items .item h4 {
    font-family: 'roboto', sans-serif;
    font-size: 18px;
    margin: 0;
    font-weight: 400;
    margin-top: 4px;
    color: white;
}

.selectie-container-wanden .items .fa {
    position: absolute;
    right: 10px;
    top: 10px;
    margin: 0;
    color: white;
}

.selectie-container-wanden .items span {
    font-family: 'futura-pt', sans-serif;
    font-size: 14px;
    position: absolute;
    margin: 0;
    right: 10px;
    bottom: 10px;
    color: white;
    font-weight: 700;
}

.selectie-container-wanden .items p.no-selection-yet {
    font-family: 'roboto', sans-serif;
    text-align: center;
    color: #ddd;
    text-align: center;
    color: #B5B5B5;
    font-family: 'roboto';
    font-weight: 400;
    font-size: 18px;
    margin-top: 23px;
}

.bolletjes {
    text-align: center;
    margin-top: 15px;
    display: block;
}

/* standaard bolletje */
.custom-col .bolletjes .boll {
    padding: 10px 10px;
    text-align: center;
    width: 45px;
    height: 45px;
    color: #333;
    display: inline-block;
    -moz-border-radius: 300px;
         border-radius: 300px;
    background-color: #ddd;
    margin: 0 11px;
    position: relative;
    margin-bottom: 10px;
}

/* active */
.custom-col .bolletjes .boll.active {
    background-color: #36bfc5;
    color: #fff;
    font-weight: normal;
}

/*is-ok*/
.custom-col .bolletjes .boll.is-ok {
    padding: 10px 10px;
    text-align: center;
    width: 45px;
    height: 45px;
    color: #333;
    display: inline-block;
    -moz-border-radius: 300px;
         border-radius: 300px;
    background-color: #ddd;
    margin: 0 11px;
}

@media (max-width: 991px) {
    .custom-col .bolletjes .boll.is-ok {
        padding: 8px 10px 0;
        text-align: center;
        width: 35px;
        height: 35px;
        color: #333;
        display: inline-block;
        -moz-border-radius: 300px;
             border-radius: 300px;
        background-color: #ddd;
        margin: 0 11px;
        font-size: 15px;
    }
}

.custom-col .bolletjes .boll.is-ok::after {
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f00c";
    position: absolute;
    color: #35bfc5;
    bottom: -3px;
    font-size: 20px;
    right: -2px;
}

/*is-ok active*/

.custom-col .bolletjes .boll.is-ok.active {
  background-color: #36bfc5;
  color: #fff;
  font-weight: normal;
}

.custom-col .bolletjes .boll.is-ok.active::after {
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f00c";
    position: absolute;
    color: white;
    bottom: -3px;
    font-size: 20px;
    right: -2px;
    text-shadow: 1px 1px 0 #35bfc5, -1px -1px 0 #35bfc5, 1px -1px 0 #35bfc5, -1px 1px 0 #35bfc5, 1px 1px 0 #35bfc5;
}

/*no-match*/
.custom-col .bolletjes .boll.no-match {
    background-color: #DDDDDD;
    color: #333;
    font-weight: normal;
    position: relative;
}

.custom-col .bolletjes .boll.no-match::after {
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f00d";
    position: absolute;
    color: #E74C3C;
    bottom: -3px;
    font-size: 20px;
    right: -2px;
}


/*no-match active*/
.custom-col .bolletjes .boll.no-match.active {
    background-color: #E74C3C;
    color: #333;
    font-weight: normal;
    position: relative;
}

.custom-col .bolletjes .boll.no-match.active::after {
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f00d";
    position: absolute;
    color: #fff;
    bottom: -3px;
    font-size: 20px;
    right: -2px;
    text-shadow: 1px 1px 0 #E74C3C, -1px -1px 0 #E74C3C, 1px -1px 0 #E74C3C, -1px 1px 0 #E74C3C, 1px 1px 0 #E74C3C;
}

.custom-col .image-wrap-ab {
    width: 100%;
    overflow: hidden;
    height: 261px;
    margin-top: 10px;
    padding: 20px;
    display: block;
    border-bottom: 1px solid #eee;
}

@media (max-width: 991px) {
    .custom-col .image-wrap-ab {
        height: 180px;
    }
}

.custom-col .image-wrap-ab img {
    width: auto;
    height: 100%;
    margin: 0 auto;
    display: block;
}

.remove-borders th {
    border-bottom: none !important;
}

.title-for-bev {
    font-weight: 500;
}

.standaartext {
    margin-top: 10px;
    color: #aaa;
}

.dimensie-radios label.active{color:#fff!important}

div.item-filter-spinner
{
    position:relative;
    float:left;
    padding:100px 0;
    left:45%;
    height:100px;
    width:100px;
}
















