﻿body {
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/*Navbar*/
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav { flex-wrap: wrap; }
}

.favorites-list a {
    font-size: 16px;
    color: #d13530;
}

/*Departementen*/
.department-list {
    list-style-type: none;
    border-top: #ccc 1px solid;
    padding-left:20px;
}

.department-list li{
    padding: 5px 10px;
    border-bottom: #ccc 1px solid;
}

.department-list li:hover {
    background-color: #ccc;
}

.department-list a:hover {
    color: black;
    text-decoration: none;
}

.btn-cart {
    margin-left: auto;
}

/* === BREADCRUMBS =================================== */
/*customizable buttons*/
.btn-breadcrumb-custom {
    color: #343a40;
    border-color: #343a40;
}

.btn-breadcrumb-custom:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-breadcrumb-custom:focus, .btn-breadcrumb-custom.focus {
    box-shadow: 0 0 0 0 rem rgba(52, 58, 64, 0);
}

.btn-breadcrumb-custom.disabled, .btn-breadcrumb-custom:disabled {
    color: #343a40;
    background-color: transparent;
}

.btn-breadcrumb-custom:not(:disabled):not(.disabled):active, .btn-breadcrumb-custom:not(:disabled):not(.disabled).active,
.show > .btn-breadcrumb-custom.dropdown-toggle {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-breadcrumb-custom:not(:disabled):not(.disabled):active:focus, .btn-breadcrumb-custom:not(:disabled):not(.disabled).active:focus,
.show > .btn-breadcrumb-custom.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0);
}

.productpage-header {
    margin: 15px 15px 15px 0px;
}

.btn-back {
    margin: 0 15px;
}

.btn-breadcrumb .btn:not(:last-child):after {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 10px solid white;
    position: absolute;
    top: 50%;
    margin-top: -17px;
    left: 100%;
    z-index: 3;
}

.btn-breadcrumb .btn:not(:last-child):before {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 10px solid #343a40;
    position: absolute;
    top: 50%;
    margin-top: -17px;
    margin-left: 1px;
    left: 100%;
    z-index: 3;
}

/** The Spacing **/
.btn-breadcrumb .btn {
    padding: 6px 12px 6px 24px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-breadcrumb .btn:focus{
        outline: 0;
        box-shadow: none;
    }

    .btn-breadcrumb .btn:first-child {
        padding: 6px 6px 6px 10px;
    }

    .btn-breadcrumb .btn:last-child {
        padding: 6px 18px 6px 24px;
    }

    /** Default button **/
    .btn-breadcrumb .btn-breadcrumb-custom:not(:last-child):after {
        border-left: 10px solid #fff;
        transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

.btn-breadcrumb .btn-breadcrumb-custom:not(:last-child):before {
    border-left: 10px solid #343a40;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-breadcrumb .btn-breadcrumb-custom:hover:not(:last-child):after {
    border-left: 10px solid #343a40;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-breadcrumb .btn-breadcrumb-custom:hover:not(:last-child):before {
    border-left: 10px solid #343a40;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.card-body {
    padding: 0.25rem;
}
.fade-in {
    animation: fadeIn ease 0.5s;
    -webkit-animation: fadeIn ease 0.5s;
    -moz-animation: fadeIn ease 0.5s;
    -o-animation: fadeIn ease 0.5s;
    -ms-animation: fadeIn ease 0.5s;
}

.banner {
    border-radius: 3px;
    margin-right: 25px;
    color: #e69500;
    width: 100%;
    display: block;
    font-weight: bold;
    border: 3px solid #e69500;
    text-align: center;
    padding: 15px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error {
    color: #ff0000;
}

.field-validation-valid {
    display: none;
}

.input-validation-error {
    border: 1px solid #ff0000;
    background-color: #ffeeee;
}

.validation-summary-errors {
    font-weight: bold;
    color: #ff0000;
}

.validation-summary-valid {
    display: none;
}

.has-error .help-block,
.has-error .control-label {
    color: #b94a48;
}

.has-error .form-control {
    border-color: #b94a48;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

    .has-error .form-control:focus {
        border-color: #953b39;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
    }

.has-error .input-group-addon {
    color: #b94a48;
    background-color: #f2dede;
    border-color: #b94a48;
}

.has-search .form-control {
    padding-right: 1.775rem;
}

.has-search .form-control-feedback {
    position: relative;
    z-index: 2;
    display: block;
    width: 1.375rem;
    height: 1.375rem;
    line-height: 1.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

.index-ol-container {
    padding-left: 30px;
    padding-right: 10px;
}

@media (max-width: 768px) {
    .index-ol-container {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 99% !important;
        max-width: 99% !important;
    }
}
