﻿
.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;
    }

/* 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;
    }
