﻿
.klantenfiche .form-group, .leveranciersfiche .form-group {
    margin-bottom: 10px;
}

.klantenfiche .form-control, .leveranciersfiche .form-control {
    height: 35px;
    padding: 2px 12px;
}

legend {
    padding: 1% 0%;
}

col-md-offset-2-1 {
    margin-left: 9.666667px;
}

.action-btn {
    padding: 6.5px 12px;
}

@media (min-width: 992px) {
    .klantenfiche > .tab-content, .leveranciersfiche > .tab-content {
        min-height: 650px;
    }

    .klantenfiche .adres .col-md-8, .leveranciersfiche .adres .col-md-8 {
        width: 65.3%;
    }

    .klantenfiche .adres .land, .leveranciersfiche .adres .land {
        width: 6.833333%;
    }
}

.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 #e7e7e7;
    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 rgb(173, 173, 173);
    position: absolute;
    top: 50%;
    margin-top: -17px;
    margin-left: 1px;
    left: 100%;
    z-index: 3;
}

#bootstrap-overrides {
    padding-top: 0.4%;
    padding-bottom: 0.4%;
}

.btn-breadcrumb .btn {
    padding: 6px 12px 6px 24px;
}

    .btn-breadcrumb .btn:last-child {
        padding: 6px 18px 6px 24px;
    }

    /** Default button **/
    .btn-breadcrumb .btn.btn-default:not(:last-child):after {
        border-left: 10px solid #e7e7e7;
    }

    .btn-breadcrumb .btn.btn-default:not(:last-child):before {
        border-left: 10px solid #ccc;
    }

    .btn-breadcrumb .btn.btn-default:hover:not(:last-child):after, .btn-breadcrumb .btn.btn-default.active:not(:last-child):after, .btn-breadcrumb .btn.btn-default:active:not(:last-child):after {
        border-left: 10px solid #cecece;
    }

    .btn-breadcrumb .btn.btn-default:hover:not(:last-child):before, .btn-breadcrumb .btn.btn-default.active:not(:last-child):before, .btn-breadcrumb .btn.btn-default:active:not(:last-child):before {
        border-left: 10px solid #adadad;
    }

    .btn-breadcrumb btn.active.btn-default, .btn-breadcrumb .btn.btn-default:hover {
        z-index: auto
    }

    /** Success button **/
    .btn-breadcrumb .btn.btn-success:not(:last-child):after {
        border-left: 10px solid #43ac6a;
    }

    .btn-breadcrumb .btn.btn-success:not(:last-child):before {
        border-left: 10px solid #3c9a5f;
    }

    .btn-breadcrumb .btn.btn-success:hover:not(:last-child):after, .btn-breadcrumb .btn.btn-success.active:not(:last-child):after, .btn-breadcrumb .btn.btn-success:active:not(:last-child):after {
        border-left: 10px solid #327f4e;
    }

    .btn-breadcrumb .btn.btn-success:hover:not(:last-child):before, .btn-breadcrumb .btn.btn-success.active:not(:last-child):before, .btn-breadcrumb .btn.btn-success:active:not(:last-child):before {
        border-left: 10px solid #2b6e44;
        /*327f4e*/
    }

.btn-breadcrumb btn.active.btn-success, .btn-breadcrumb a.btn.btn-default:hover {
    z-index: auto;
}

.btn.active.btn-success {
    border-right: solid 1px #358753;
}
/* The responsive part */
.btn-breadcrumb > * > div {
    /* With less: .text-overflow(); */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-breadcrumb > *:nth-child(n+2) {
    display: none;
}

input[type=tel] {
    text-align: right;
}

/* === For phones =================================== */
@media (max-width: 767px) {
    .btn-breadcrumb > *:nth-last-child(-n+2) {
        display: block;
    }

    .btn-breadcrumb > * div {
        max-width: 60px;
    }
}

/* === For tablets ================================== */
@media (min-width: 768px) and (max-width:991px) {
    .btn-breadcrumb > *:nth-last-child(-n+4) {
        display: block;
    }

    .btn-breadcrumb > * div {
        max-width: 100px;
    }
}

/* === For desktops ================================== */
@media (min-width: 992px) {
    .btn-breadcrumb > *:nth-last-child(-n+6) {
        display: block;
    }

    .btn-breadcrumb > * div {
        max-width: 170px;
    }
}


/*.table > tbody > tr > th,
.table > tbody > tr > td {
    padding: 2px 8px;
    line-height: 1.4;
    vertical-align: top;
    border-top: 1px solid #ddd
}*/


.error {
    border-color: red;
    background: #FDD;
}

    .error:focus {
        outline-color: #F99;
    }

.fullwidthdropdown > .multiselect-parent, .fullwidthdropdown > .dropdown-toggle {
    display: block;
    width: 100%;
}
/* Tooltip container */
.css-tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
    cursor: pointer;
}

    /* Tooltip text */
    .css-tooltip .tooltiptext {
        visibility: hidden;
        width: 160px;
        background-color: rgb(34, 34, 34);
        color: #fff;
        text-align: center;
        padding: 5px 0;
        border-radius: 6px;
        /* Position the tooltip text */
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
    }

    /* Show the tooltip text when you mouse over the tooltip container */
    .css-tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }

.product {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    border: 1px solid #ddd;
}

    .product:hover {
        border: 1px solid #555;
    }

    .product .image {
        overflow: hidden;
        max-height: 190px;
        display: flex;
        align-content: center;
        align-items: center;
    }

    .product .image {
        padding: 5%;
    }

        .product .image a {
            margin: 0;
        }

    .product .text {
        padding: 10px;
    }

        .product .text h3 {
            min-height: 63px;
        }

    .product .price {
        font-size: 1.1rem;
    }

        .product .price del {
            color: #999;
            display: inline-block;
            margin-right: 5px;
        }

    .product img {
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .product:hover img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    .product a {
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #333;
        text-decoration: none !important;
        margin-top: 15px;
    }

.products-big .image {
    min-height: 250px;
    max-height: 250px;
}

.ribbon {
    /*width: 80px;*/
    height: 32px;
    line-height: 32px;
    background: #467fbf;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    position: absolute;
    top: 30px;
    left: -15px;
    text-align: center;
    padding: 0 10px;
}

    .ribbon.sale {
        background: #467fbf;
    }

    .ribbon.new {
        background: #5bc0de;
    }

        .ribbon.new::after {
            content: '';
            border-top: 15px solid #1f7e9a;
        }

    .ribbon.sold {
        background: #f0ad4e;
    }

        .ribbon.sold::after {
            content: '';
            border-top: 15px solid #b06d0f;
        }

    .ribbon.gift {
        background: #5cb85c;
    }

        .ribbon.gift::after {
            content: '';
            border-top: 15px solid #2d672d;
        }

    .ribbon:nth-of-type(2) {
        top: 82px;
    }

    .ribbon::after {
        content: '';
        border-top: 15px solid #2b527e;
        border-left: 15px solid transparent;
        border-right: 0 solid transparent;
        position: absolute;
        bottom: -15px;
        left: 0;
        display: block;
    }
