/*------------------------------------*\
#Variables
\*------------------------------------*/
:root {
    /* colors */
    --color-primary-light: #FFF;
    --color-primary: #F6F6F6;
    --color-primary-dark: #8d8d8d;
    --color-primary-x-dark: #656565;
    --color-primary-xx-dark: rgba(0,0,0,0.8);
    --color-alpha: #3B86FF;
    --color-beta: #FF8373;
    --color-blue-x-light: #6EB9F7;
    --color-blue-light: #47A7f5;
    --color-blue: #2196F3;
    --color-blue-dark: #5A59F4;
    --color-red: #DB4437;
    --color-red--light: #ff874b;
    --color-green: #5EBD3E;
    --color-yellow: #FFFF00;
    --color-orange: #FFAB40;
    --color-placeholder-light: #f5f5f5;
    --color-placeholder: #DADADA;
    --color-violet: #e9a1ff;
    --gradient-start: #00B8ED;
    --gradient-stop: #AE00FA;
    --gradient-angle: 45deg;
    --text-primary: #1B1B1B;
    /* shadows */
    --material-shadow: 0px 2px 5px #666;
    --material-shadow-large: 0px 3px 6px #666;
    --shadow: 0 0 3px 0 rgba(0,0,0,0.2);
    --shadow-big: 0 0 8px 0 rgba(0,0,0,0.2);
    /* transitions */
    --transition-alpha: 0.3s ease;
    /* spacing*/
    --row-spacing-uurrooster: 12px;
    --column-spacing-uurrooster: 6px;
    /* radius*/
    --border-radius: 5px;
    /* border */
    --border-color: rgba(20, 53, 80, 0.14);
    --border: 1px solid var(--border-color);
    /* Kalender */
    --cal-legend-width: 225px;
    --cal-col-height: 44px;
    --cal-col-min-width: 80px;
    /* Border inside element */
    --border-inside: inset 0 0 0 2px;
    /* Functieplanning kleuren */
    --color-functie-planning: #FFB300;
    --color-functie-planning-text: #0000000A;
    /* Werknemer doorgegeven prestatie kleuren */
    --color-employee-pres: #66BB6A;
    --color-employee-pres-text: #0000000A;
}

.bg-gradient {
    background: linear-gradient(var(--gradient-angle), var(--gradient-start), var(--gradient-stop));
}

.border-primary {
    border: 1px solid var(--color-blue-dark);
}

/*------------------------------------*\
#GENERIC
\*------------------------------------*/
@font-face {
    font-family: 'dosis';
    src: url('/fonts/Dosis/static/Dosis-ExtraLight.ttf') format('ttf'), url('/fonts/Dosis/static/Dosis-Light.ttf') format('ttf'), url('/fonts/Dosis/static/Dosis-Regular.ttf') format('ttf'), url('/fonts/Dosis/static/Dosis-Medium.ttf') format('ttf') format('ttf'), url('/fonts/Dosis/static/Dosis-SemiBold.ttf') format('ttf'), url('/fonts/Dosis/static/Dosis-Bold.ttf') format('ttf'), url('/fonts/Dosis/static/Dosis-ExtraBold.ttf') format('ttf');
}


html {
    height: 100%;
    min-height: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-size: 15px;
    line-height: 1.5;
    /*font-family: 'Source Sans Pro', Helvetica, arial, sans-serif;*/
    /* changed min-height: 100vh; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


body {
    background-color: var(--color-primary-light);
    padding-right: 0px !important;
    /*min-height: 100%;*/
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    flex-direction: column;
    /* ios double tap to zoom disabling */
    touch-action: manipulation;
}

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

.row {
    /* overwrite bootstrap row class */
    flex-shrink: 0;
}

.hide {
    display: none !important;
}

.ui-autocomplete {
    position: absolute;
    top: 0;
    left: 0;
    cursor: default;
    z-index: 9050 !important;
}

#ReceptProductTable {
    background-color: white;
}

input.VasteWaarde {
    width: 15px;
    height: 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'dosis', Verdana, sans-serif;
}

/*------------------------------------*\
#Elements
\*------------------------------------*/


footer {
    width: 100%;
    padding-bottom: 20px;
}

/*
* Remove text-shadow in selection highlight:
*/

::-moz-selection {
    background: var(--color-alpha);
    color: white;
    text-shadow: none;
}

::selection {
    background: var(--color-alpha);
    color: white;
    text-shadow: none;
}

/*------------------------------------*\
#OBJECTS
\*------------------------------------*/

/*
    Object: Button reset
    ---
    Small button reset object
*/


.dataTableWhiteSpaceNormal {
    white-space: normal
}


.selected {
    background-color: #ffff1a !important;
}

.o-button-reset {
    border: none;
    margin: 0;
    padding: 0;
    width: auto;
    overflow: visible;
    background: transparent;
    /* inherit font & color from ancestor */
    color: inherit;
    font: inherit;
    /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
    line-height: normal;
    /* Corrects font smoothing for webkit */
    -webkit-font-smoothing: inherit;
    -moz-osx-font-smoothing: inherit;
    /* Corrects inability to style clickable `input` types in iOS */
    -webkit-appearance: none;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-top: 50px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
    /*overflow: auto;*/
    max-width: 1440px;
    /*width: 100%;*/
    /*min-height: 80vh;*/
}

.green {
    background-color: var(--color-green) !important;
}

/* Large screen / wide desktop */
@media (min-width: 2000px) {
    .container {
        width: 1600px;
    }
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-visible {
    overflow: visible;
}


.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
}

.justify-space-between {
    justify-content: space-between;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.align-space-between {
    align-content: space-between;
}

.align-items-center {
    align-items: center;
}

.float-right {
    float: right;
}

.dashboard {
    min-height: 80vh;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}
/*#PopUpSpec{
    display:none;
}*/
.centerline {
    position: relative;
}

.small-buffer {
    margin-top: 5px;
}

.btn1 {
    white-space: normal !important;
    height: 70px;
}

.btn {
    margin: 5px;
}

 /*   .btn:hover {
        background-color:;
    }*/

a {
    color: inherit;
    text-decoration: none;
}

.tablestyle-bg {
    /*background-color: #fafafa;*/
    border-radius: 0 0 5px 5px;
    padding: 5px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

table#myTable tr:nth-child(even) {
    background-color: #eee;
}

table#myTable tr:nth-child(odd) {
    background-color: #fff;
}

table#myTable th {
    color: white;
    background-color: darkgray;
}

.btnLink, .btnLink:visited {
    background-color: rgb(221, 221, 221);
    color: var(--text-primary);
    padding: 15px;
    text-align: center;
    text-decoration: none;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    height: auto;
    border-radius: 5px;
    font-size: large;
}

.btnLinklg, .btnLinklg:visited {
    padding: 30px 5px !important;
}

.btnLink:hover, .btnLink:active,
.btnLinkFill:hover, .btnLinkFill:active {
    background-color: var(--primary);
    color: rgb(221, 221, 221);
    cursor: pointer;
    text-decoration: none;
}

.btnLink {
    background-color: transparent;
    color: var(--text-primary);
    padding: 15px;
    text-align: center;
    text-decoration: none;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    height: auto;
    border-radius: 5px;
    font-size: large;
    border: 2px solid var(--color-blue);
}

.btnLinkFill {
    width: 100%;
    height: 100%;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: rgb(221, 221, 221);
    color: darkslategray;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: large;
    border: 1px solid transparent;
}

.btnLink--home:link, button.btnLink--home {
    height: 112px;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    align-items: center;
    justify-content: center;
}

.btnLink--home svg {
    margin-right: 24px;
}

/*.dtHorizontalVerticalExampleWrapper {
    max-width: 600px;
    margin: 0 auto;
}*/

.dataTable th, td {
    white-space: nowrap;
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before {
    bottom: .5em;
}

div.dataTables_wrapper div.dataTables_filter input {
    width: 10pc;
}
/*.dataTables_scrollBody {
    height: auto !important;
    max-height: 400px;
}*/

table.dataTable tbody > tr.selected, table.dataTable tbody > tr > .selected {
    background-color: yellow !important;
    color: black;
}

.dataTables_filter {
    float: left !important;
}

.dataTables_length {
    float: right !important;
}

.clickable-row:hover {
    cursor: pointer;
    color: black;
}

.loadmore {
    visibility: hidden;
}

.row-radiobuttons-container {
    width: 100%;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    padding: 15px;
}

.row-radiobuttons {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    flex-direction: column;
    margin-left: 15px;
}

.link-disabled, .btnLink.disabled {
    cursor: not-allowed !important;
    pointer-events: none;
    opacity: 0.3;
}

.mb-lg {
    margin-bottom: 20px !important;
}

.card {
    position: relative;
    background-color: var(--color-primary-light);
    box-shadow: var(--shadow);
    transition: var(--transition-alpha);
    border-radius: var(--border-radius);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.card--taak {
    overflow: hidden;
}


.card--time {
    background-color: #FF5722;
    color: white;
}



.card--werknemer {
    background-color: lightseagreen;
    color: white;
    /*var(--color-beta); */
}

.card--schema {
    height: 100%;
}

.card--schema-overlap {
    margin-left: 50%;
    z-index: 10;
}

.card--schema-vroeg {
    color: #000;
    font-weight: 300;
    background-color: rgba(18,141,92, 0.5);
}

.card--schema-laat {
    color: #000;
    font-weight: 300;
    background-color: rgba(69,80,151, 0.5);
}


.card--active {
    background-color: #4CAF50 !important;
}

.card--done {
    background-color: #607D8B !important;
}

.card--chart {
    max-width: 450px;
}

.card--button {
}

.card--hover:hover {
    cursor: pointer;
    box-shadow: var(--shadow-big);
}

.card-badge {
    position: absolute;
    right: 0;
    top: 0;
    height: 32px;
    width: 64px;
    margin-right: -32px;
    margin-top: -16px;
    border-radius: 16px;
    z-index: 10;
    text-align: center;
    background-color: var(--color-beta);
}

.card-badge--circular {
    height: 32px;
    width: 32px;
    margin-right: -16px;
}

.card-badge_text {
    color: #FFF;
    font-size: 20px;
    line-height: 32px;
    vertical-align: middle;
    margin-bottom: 0;
}

.card-header {
    padding: 24px 36px 0;
    margin-bottom: 0;
    width: 100%;
}

.card-title {
    text-align: left;
    font-size: 22px;
    line-height: 33px;
    margin-bottom: 0;
    pointer-events: none;
}

.card--schema .card-body {
    padding: 8px 16px;
}

.card-body {
    width: 100%;
    padding: 24px;
    pointer-events: none;
}

.card-body__text {
    text-align: center;
    margin-bottom: 0;
    pointer-events: none;
}

.card-chart {
    /*padding: 50px 0;*/
}

.card-footer {
    width: 90%;
    border-top: 1px solid #E8E9EC;
    text-align: center;
    pointer-events: none;
}

.card-link {
    font-size: 16px;
    line-height: 24px;
    color: #3B86FF !important;
    padding: 22px 0;
    display: inline-block;
    pointer-events: all;
}

.c-row {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    overflow-x: auto;
    /*justify-content: space-between;*/
}

.c-row--gutter {
    margin: -24px;
    margin-bottom: 80px;
}

.c-row--gutter > .c-row-item {
    padding: 24px;
}

.c-row-item {
    width: 100%;
}

/* Material button */
.material-button {
    font-family: 'Roboto', Helvetica, arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    border-radius: 2px;
    padding: 9px 14px;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-box-shadow: none;
    outline: none;
    width: auto;
    text-align: center;
}

.material-button--neg {
    color: white;
    background-color: var(--color-red);
}

.material-button--neu {
    color: white;
    background-color: var(--color-blue);
}

/* Ripple effect */
.material-button--ripple {
    background-position: center;
    -webkit-transition: background 0.8s;
    transition: background 0.8s;
}

    .material-button--ripple:hover {
        background: var(--color-blue-light) radial-gradient(circle, transparent 1%, #47a7f5 1%) center/15000%;
    }

    .material-button--ripple:active {
        background-color: var(--color-blue-x-light);
        background-size: 100%;
        -webkit-transition: background 0s;
        transition: background 0s;
    }

/* Material flat button */
.flat-button {
    font-family: 'Roboto', Helvetica, arial, sans-serif;
    border: none;
    border-radius: 2px;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    padding: 9px 14px;
    text-transform: uppercase;
    vertical-align: middle;
    width: auto;
    -webkit-tap-highlight-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    color: #343434;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
}

    .flat-button + .material-button {
        margin-left: 16px;
    }

    .flat-button:hover {
        cursor: pointer;
        background-color: rgba(110,185,247,0.2);
    }

.flat-button--neg {
    color: #FF584C;
}

    .flat-button--neg:hover {
        background-color: rgba(255,88,76,0.2);
    }

.flat-button--neu {
    color: #0288D1;
}

    .flat-button--neu:hover {
        background-color: rgba(2,136,209,0.2);
    }

.material-button-circular {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: var(--material-shadow);
    transition: all 0.1s ease-in-out;
    font-size: 24px;
    color: white;
    text-align: center;
    line-height: 56px;
    margin: 16px 16px 32px 16px;
    cursor: pointer;
}

    .material-button-circular:hover {
        box-shadow: var(--material-shadow-large);
        transform: scale(1.02);
    }

.material-button--neutral {
    background-color: var(--color-blue);
}

.material-button--negative {
    background-color: var(--color-red);
}

/* Uurrooster classes */
/* flexible grid */
.uurrooster {
    padding: 12px 48px;
    /*min-height: 70vh;*/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin: 24px -12px;
    flex-direction: column;
    overflow: auto;
}

.uurrooster--sm {
    padding-left: 12px;
    padding-right: 12px;
}

.uurrooster--samenstellen {
    overflow-x: hidden;
}

/* Row spacing*/
.uurrooster > .uurrooster__werknemer {
    padding: var(--row-spacing-uurrooster);
}

/* row */
.uurrooster__werknemer {
    /*width: 100%;*/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin: -12px;
    flex-direction: row;
}

/* Column spacing*/
.uurrooster__werknemer > .uurrooster__col {
    padding: var(--column-spacing-uurrooster);
}

/* 1 col = 15min */
.uurrooster__col {
    /*width: 100%;*/
    min-width: 200px;
    width: 200px !important;
}

.werknemer__naam {
}

.werknemer__taak {
}


.nietTijdsGebonden {
    color: white;
    background-color: fuchsia;
}

.tijdsGebonden {
    color: white;
    background-color: skyblue;
}







.planning-titel {
    font-size: 16px;
}


/* Planning kalender */
.cal {
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Roboto', Helvetica, arial, sans-serif;
    border-radius: 5px;
    box-shadow: 0 0 3px 0 rgba(0,0,0,0.2);
    color: rgba(0,0,0,0.75);
    width: 100%;
}

.cal__header {
    padding: 25px;
    position: relative;
    transform: translate3d(0, 0, 0);
    z-index: 0;
    -webkit-box-shadow: 0 6px 4px -5px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 6px 4px -5px rgba(0,0,0,0.2);
    box-shadow: 0 6px 4px -5px rgba(0,0,0,0.2);
}

.cal__header-buttons {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    flex-wrap: wrap;
    justify-content: center;
}

.cal__date {
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.cal__nav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 22px;
    top: 0;
    bottom: 0;
}

.cal__nav--top {
    top: 20px;
    bottom: auto;
}

.cal__button {
    height: 33px;
    border: 1px solid transparent;
    background-color: transparent;
    -webkit-transition: background-color 0.25s ease-in;
    transition: background-color 0.25s ease-in;
}

.cal__button:active, .cal__button:focus {
    outline: none;
    border: 1px solid var(--color-blue);
}

.cal__button--today {
    padding: 6px 8px;
    background-color: transparent;
    font-size: 14px;
    color: var(--color-blue);
    text-transform: uppercase;
    margin: 0 2%;
}

.cal__button--today-sm {
    margin: 0 1%;
}

.cal__button--active {
    background-color: var(--color-blue);
    color: var(--color-primary-light);
}

.cal__button--active:hover {
    color: var(--color-blue);
}

.cal__button:hover {
    background-color: rgba(230, 230, 230, 0.75);
    cursor: pointer;
}

.cal__button--prev, .cal__button--next {
    padding: 3px;
    border-radius: 50%;
}



.cal__body {
    position: relative;
    transform: translate3d(0, 0, 0);
    z-index: 0;
    width: 100%;
    overflow-y: auto;
}

.cal__data-header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    position: -webkit-sticky;
    position: sticky;
    top: -2px;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.cal__col {
    min-width: var(--cal-col-min-width); /* De breedte dat een kolom minimum max zijn */
    height: var(--cal-col-height);
    width: 100%;
    flex-shrink: 1;
    border: 1px solid #E0E0E0;
    line-height: calc(var(--cal-col-height) - 2px); /* 2 x 1px border -> -2 */
    overflow: hidden;
    white-space: nowrap;
    background-color: var(--color-primary-light);
}

.cal__col--disabled {
    background-color: var(--color-primary);
}

.cal__col--header {
    min-width: var(--cal-col-min-width);
    width: 100%;
    text-align: left;
    font-size: 12px;
    color: rgba(0,0,0, 0.54);
    border-top: none;
    padding-left: 5px;
    border-left: none;
}

/*
.cal__col--header + .cal__col--header {
    // Geen border left bij de tweede van twee opeenvolgende cal__col--headers
    border-left: none;
}
*/

/** Dit tekent een wit vlak bovenop de cal__data-header en cal__legende 
  * om zowel bij horizontale als verticale scroll deze witte balk sticky in de linker bovenhoek te tonen 
  **/
.cal__placeholder {
    content: '';
    width: var(--cal-legend-width);
    min-width: var(--cal-legend-width);
    height: var(--cal-col-height);
    position: sticky;
    top: -2px;
    left: -2px;
    bottom: 0;
    transform: translate3d(0, 0, 0);
    /* cal__legende heeft z-index 100. Moet er boven komen -> 1000*/
    z-index: 1000;
    background-color: var(--color-primary-light);
    border-top: 1px solid var(--color-primary-light);
    border-right: 1px solid #E0E0E0 !important;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: calc(-1*var(--cal-col-height));
}


.cal__data {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-content: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: auto; 
}

.cal__legende {
    left: -2px;
    position: fixed;
    height: auto;
    transform: translate3d(0, 0, 0);
    z-index: 100;
    min-width: var(--cal-legend-width);
}

.cal__col--legende {
    width: var(--cal-legend-width);     /* Overwrite .cal__col min-width */
    min-width: var(--cal-legend-width); /* Overwrite .cal__col min-width */
    font-size: 14px;
    padding: 0 16px;
    border-top: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cal__col-header {
    width: 75px;
    height: 32px;
    font-size: 14px;
    line-height: 32px;
    float: right;
    margin-right: -8px;
    margin-left: 4px;
    background-color: #0288D1;
    text-align: center;
    color: #FFF;
    padding: 0;
    border-radius: var(--border-radius);
    vertical-align: middle;
}

.cal__events {
    margin-left: var(--cal-legend-width);
    min-width: calc(100% - var(--cal-legend-width));
}

.cal__data-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: relative;
    overflow-x: visible;
    min-width: 100%;
    width: auto;
    /* Cal__legend gaat weg indien deze over cal__data-row gaat */
}


/* Dont display a left and bottom border to avoid a thick border */
.cal__data-row .cal__col {
    border-left: none;
    border-bottom: none;
}

.cal__col--event {
    background-color: transparent;
    -webkit-transition: background-color 0.1s ease-out;
    transition: background-color 0.1s ease-out;
}

.cal__col--event:hover {
    cursor: pointer;
    /* background-color must differ enough from border color to avoid the disappearance of borders after hover */
    background-color: var(--color-primary);
}

.cal__ts-line {
    position: absolute;
    top: 0;
    left: 0; /* Wordt overschreven in js */
    background-color: #0078D7;
    cursor: pointer;
    height: 43px;
    z-index: 10;
}

.cal__ts-line--left {
    border-left: 3px solid #000;
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}

.cal__ts-line--right {
    border-right: 3px solid #000;
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
}

.cal__event {
    position: absolute;
    top: 0;
    left: 0; /* Wordt overschreven in js */
    padding: 2px 6px;
    color: #FFF;
    background-color: #0078D7;
    border: 1px solid #FFF;
    cursor: pointer;
    height: 43px;
    overflow: hidden;
    z-index: 1;
}

.cal__event--focus {
    border: 3px solid black;
    outline: 2px solid var(--color-yellow);
    outline-offset: -3px;
}

.cal__event--focus-bad {
    border: 3px solid black;
    outline: 2px solid var(--color-red);
    outline-offset: -3px;
}

.cal__event--pos {
    background: #5EBD3E;
}

.cal__event--neg {
    background: var(--color-red);
}

.cal__event-times {
    font-size: 11px;
    margin-bottom: 0;
    pointer-events: none;
}

.cal__event-subject {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
    white-space: nowrap;
    pointer-events: none;
}

.cal__now {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-left: 3px dotted #0288D1;
}


.cal__modal-event {
}


.cal__modal-event-body {
    margin: 24px;
    padding: 0 12px;
}


.cal__modal-event-footer > .row {
    width: 100%;
}


.cell_uren {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    align-items: center;
    justify-content: space-around;
}

.cell_uren-uur {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    align-items: center;
    justify-content: space-between;
}

.cell_uren-img {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

.cell_uren-text {
    font-size: 12px;
}


/* Persoonlijke kalender */
.mobile-calendar-section {
    margin: 0 auto 16px;
    border: var(--border);
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.08), 0 3px 6px rgba(0, 0, 0, 0.08);
    /*    max-width: 300px;*/
    transform-origin: top center;
    transition: all 0.15s ease-out;
    transform: scaleY(0);
}

.mobile-calendar-section--loaded {
    transform: scaleY(1);
}


.mobile-calendar__cell {
    /* All cells */
    padding: 1px;
}
@media (min-width: 375px) {
    .mobile-calendar__cell {
        /* All cells */
        padding: 3px;
    }
}

.mobile-calendar__weekdays .mobile-calendar__cell {
    /* Week day name cells */
    text-align: center;
    padding: 0;
    font-size: 12px;
    line-height: 2;
    font-weight: 600;
    text-transform: uppercase;
    opacity: .6;
}

.mobile-calendar__days .mobile-calendar__link {
    /* Month day cells */
    border-radius: 50%;
    border: 1px solid transparent;
    padding: 9px;
    /* Width 100% is 34px, met line-height 14px zijn de cellen vierkant */
    line-height: 14px;
    width: 100%;
}

@media (min-width: 768px) {
    .mobile-calendar__cell {
        /* All cells */
        padding: 6px;
    }

    .mobile-calendar__days .mobile-calendar__link {
        padding: 12px;
        font-size: 16px;
        line-height: 16px;
    }
}

/*.mobile-calendar__andere-maand {
}
.mobile-calendar__andere-maand > .mobile-calendar__link {*/
    /*opacity: 0.3;*/
    /*color: #c3c1c1;
}*/

/*.mobile-calendar__gepasseerd
.mobile-calendar__andere-maand {
    opacity: .25;
}*/

.mobile-calendar__andere-maand > .mobile-calendar__link:not(.mobile-calendar__link-event) {
    color: #949494;
}

.mobile-calendar__gepasseerd .mobile-calendar__link-event {
    /*color: #656565;*/
}

.mobile-calendar {
    margin: 0 auto;
}


.mobile-calendar__link {
    border-radius: 3px;
    padding: 4px;
    color: #656565;
    text-align: center;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    -webkit-transition: all 0.15s ease 0s;
    -moz-transition: all 0.15s ease 0s;
    -ms-transition: all 0.15s ease 0s;
    -o-transition: all 0.15s ease 0s;
    transition: all 0.15s ease 0s;
    position: relative;
    background-color: transparent;
}

.mobile-calendar__link:focus {
    outline: 2px solid var(--color-alpha);
}

.mobile-calendar__link:hover {
    text-decoration: none;
    /*background: #EDEDED;*/
    cursor: pointer;
}

.mobile-calendar__vandaag {
    font-weight: 600;
    color: var(--color-alpha);
}

.mobile-calendar__link--selected {
    /* Verander de tekst van blauw naar wit voor de leesbaarheid */
    background-image: none !important;
    background-color: var(--color-yellow) !important;
    color: var(--color-primary-x-dark) !important;
}

/* Omcirkelde dag voor event aan te duiden */
.mobile-calendar__link-event {
    border-radius: 50%;
    border: 2px solid transparent !important;
}

.mobile-calendar__link-event--blue {
    color: var(--color-primary-light);
    background-color: var(--color-blue);
}

.mobile-calendar__link-event--gray {
    color: var(--color-primary-light);
    background-color: var(--color-primary-dark);
}

.mobile-calendar__link-event--green {
    color: var(--color-primary-light);
    background-color: var(--color-green);
}

.mobile-calendar__link-event--red {
    color: var(--color-primary-light);
    background-color: var(--color-red);
}

.mobile-calendar__link-event--purple {
    color: var(--color-primary-light);
    background-color: var(--color-violet);
}

.mobile-calendar__link-event--orange {
    color: var(--color-primary-light);
    background-color: var(--color-orange);
}

.mobile-calendar__link-event--black {
    color: var(--color-primary-light);
    background-color: var(--color-primary-xx-dark);
}

/* Combo colors */
.mobile-calendar__link-event--red-blue {
    color: var(--color-primary-light);
    background: linear-gradient(-45deg, var(--color-red) 50%, var(--color-blue) 50%);
}

.mobile-calendar__link-event--red-green {
    color: var(--color-primary-light);
    background: linear-gradient(-45deg, var(--color-red) 50%, var(--color-green) 50%);
}

.mobile-calendar__link-event--red-gray {
    color: var(--color-primary-light);
    background: linear-gradient(-45deg, var(--color-red) 50%, var(--color-primary-dark) 50%);
}

.mobile-calendar__link-event--red-red {
    color: var(--color-primary-light);
    background-color: var(--color-red);
}

.mobile-calendar__link-event--red-purple {
    color: var(--color-primary-light);
    background: linear-gradient(-45deg, var(--color-red) 50%, var(--color-primary-dark) 50%);
}

.mobile-calendar__link-event--red-orange {
    color: var(--color-primary-light);
    background: linear-gradient(-45deg, var(--color-red) 50%, var(--color-orange) 50%);
}

.mobile-calendar__link-event--red-black {
    color: var(--color-primary-light);
    background: linear-gradient(-45deg, var(--color-red) 50%, var(--color-primary-xx-dark) 50%);
}

/* Subtle colors */
.mobile-calendar__link-event--subtle-gray {
    border-color: var(--color-primary-dark) !important;
}

.mobile-calendar__link-event--subtle-blue {
    border-color: var(--color-blue) !important;
}

.mobile-calendar__link-event--subtle-green {
    border-color: var(--color-green) !important;
}

.mobile-calendar__link-event--subtle-red {
    border-color: var(--color-red) !important;
}

.mobile-calendar__link-event--subtle-purple {
    border-color: var(--color-violet) !important;
}

.mobile-calendar__link-event--subtle-orange {
    border-color: var(--color-orange) !important;
}

/* Combo subtle colors */


/* Klein subtiel bolletje voor event aan te duiden */
.mobile-calendar__link-event-small::after {
    content: " ";
    width: 4px;
    height: 4px;
    display: block;
    border-radius: 50%;
    position: absolute;
    bottom: 4px;
    left: 50%;
    margin-left: -2px;
    background-color: var(--color-alpha);
}

.mobile-calendar__link-event-small--gray::after {
    background-color: var(--color-primary-dark);
}

.mobile-calendar__link-event-small--green::after {
    background-color: var(--color-green);
}

.mobile-calendar__link-event-small--red::after {
    background-color: var(--color-red);
}

.mobile-calendar__link-event-small--purple::after {
    background-color: var(--color-violet);
}

.mobile-calendar__header {
    border-color: var(--border-color);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    color: #656565;
    background-color: #F6F6F6;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
    padding: 4px 4px;
    text-align: center;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    justify-content: space-between;
    align-items: center;
    position: relative;
    transform: translate3d(0, 0, 0);
    z-index: 2;
}

.mobile-calendar__icon {
    font-size: 20px;
    width: 28px;
    height: 28px;
}

.mobile-calendar__nav-date {
    width: 100%;
    flex-shrink: 1;
    text-align: center;
    font-size: 14px;
    line-height: 1;
}

.mobile-calendar__body {
    margin: 0 auto;
    padding: 8px 8px 0;
    outline: none;
}

.mobile-calendar__footer {
    padding: 8px 16px;
}

    .mobile-calendar__footer .mobile-calendar__vandaag {
        margin: 0 auto;
    }

/* Persoonlijke kalender event kleuren */
.persoonlijke-uren--subtle {
    -webkit-box-shadow: var(--border-inside) transparent;
    -moz-box-shadow: var(--border-inside) transparent;
    box-shadow: var(--border-inside) transparent;
}

.persoonlijke-uren--subtle-blue {
    -webkit-box-shadow: var(--border-inside) var(--color-alpha);
    -moz-box-shadow: var(--border-inside) var(--color-alpha);
    box-shadow: var(--border-inside) var(--color-alpha);
}

.persoonlijke-uren--subtle-gray {
    -webkit-box-shadow: var(--border-inside) var(--color-primary-dark);
    -moz-box-shadow: var(--border-inside) var(--color-primary-dark);
    box-shadow: var(--border-inside) var(--color-primary-dark);
}

.persoonlijke-uren--subtle-green {
    -webkit-box-shadow: var(--border-inside) var(--color-green);
    -moz-box-shadow: var(--border-inside) var(--color-green);
    box-shadow: var(--border-inside) var(--color-green);
}

.persoonlijke-uren--subtle-orange {
    -webkit-box-shadow: var(--border-inside) var(--color-orange);
    -moz-box-shadow: var(--border-inside) var(--color-orange);
    box-shadow: var(--border-inside) var(--color-orange);
}

.persoonlijke-uren--subtle-orange--hatch {
    -webkit-box-shadow: var(--border-inside) var(--color-orange);
    -moz-box-shadow: var(--border-inside) var(--color-orange);
    box-shadow: var(--border-inside) var(--color-orange);
    background: repeating-linear-gradient( 45deg, transparent, transparent 10px, #FFAB40 10px, #FFAB40 20px )
}

.persoonlijke-uren--subtle-red {
    -webkit-box-shadow: var(--border-inside) var(--color-red);
    -moz-box-shadow: var(--border-inside) var(--color-red);
    box-shadow: var(--border-inside) var(--color-red);
}

.persoonlijke-uren--subtle-red--hatch {
    -webkit-box-shadow: var(--border-inside) var(--color-red);
    -moz-box-shadow: var(--border-inside) var(--color-red);
    box-shadow: var(--border-inside) var(--color-red);
    background: repeating-linear-gradient( 45deg, transparent, transparent 10px, #DB4437 10px, #DB4437 20px )
}


.persoonlijke-uren--subtle-purple {
    -webkit-box-shadow: var(--border-inside) var(--color-violet);
    -moz-box-shadow: var(--border-inside) var(--color-violet);
    box-shadow: var(--border-inside) var(--color-violet);
}

.persoonlijke-uren--blue {
    background-color: var(--color-alpha);
}

.persoonlijke-uren--gray {
    background-color: var(--color-primary-dark);
}

.persoonlijke-uren--green {
    background-color: var(--color-green);
}

.persoonlijke-uren--orange {
    background-color: var(--color-orange);
}

.persoonlijke-uren--red {
    background-color: var(--color-red);
}

.persoonlijke-uren--purple {
    background-color: var(--color-violet);
}

/* Planningen lijst */

.mdc-list-section {
    border-radius: var(--border-radius);
    margin: 16px 0;
    border: var(--border);
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.08), 0 3px 6px rgba(0, 0, 0, 0.08);
    transform-origin: top center;
    transition: all 0.15s ease-in-out;
    transform: scale(0);
}

.mdc-list-section--loaded {
    transform: scale(1);
}

.mdc-list-title {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    width: 100%;
    padding: 8px 16px;
    background-color: var(--color-blue);
    color: var(--color-primary-light);
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 0;
}

.dynamic-list {
    width: 100%;
}

.mdc-list-subtitle {
    padding: 8px 16px;
    font-size: 12px;
    color: var(--color-primary-dark);
    margin-bottom: 0;
    border-bottom: 1px solid var(--color-primary);
    width: 100%;
}

.mdc-list {
    list-style: none;
    padding: 0;
    width: 100%;
    margin: 0;
}

.mdc-list-item {
    padding: 8px;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    justify-content: flex-start;
    border-bottom: 1px solid var(--color-primary);
    background-color: #FFF;
    position: relative;
    border-left: 5px solid var(--color-alpha);
    -webkit-transition: border-width 250ms ease-out, background-color 150ms ease-out;
    -ms-transition: border-width 250ms ease-out, background-color 150ms ease-out;
    transition: border-width 250ms ease-out, background-color 150ms ease-out; 
}

.mdc-list-item--selectable:hover {
    cursor: pointer;
    border-left-width: 10px;
    background-color: rgba(0, 0, 0, 0.1);
}

.mdc-list-item--gray {
    border-left-color: var(--color-primary-dark);
}

.mdc-list-item--green {
    border-left-color: var(--color-green);
}

.mdc-list-item--orange {
    border-left-color: var(--color-orange);
}

.mdc-list-item--red {
    border-left-color: var(--color-red);
}

.persoonlijke-uren--purple {
    border-left-color: var(--color-violet);
}

.mdc-list-item:last-child {
    border-bottom: 1px solid transparent;
}

.mdc-list-before {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    align-items: center;
    text-align: center;
    flex-direction: column;
    color: var(--color-blue);
    width: 20%;
    position: relative;
}

.mdc-list-day {
    font-size: 10px;
    margin-bottom: 0;
}

.mdc-list-date {
    font-size: 14px;
    line-height: 1;
    margin: 6px auto;
    padding: 4px;
    min-width: 24px;
}

.mdc-list-date--today {
    border: 1px solid var(--color-blue);
    border-radius: 50%;
}

.mdc-list-before + .mdc-list-item__text {
    padding-left: 0;
}

.mdc-list-item__text {
    width: 80%;
    padding-left: 8px;
}


@media (min-width: 576px) {
    .mdc-list-item__text {
        padding-left: 16px;
    }
}

@media (min-width: 768px) {
    .mdc-list-item__text {
        padding-left: 32px;
    }
}

.mdc-list-item__primary-text {
    width: 100%;
    margin-bottom: 0;
}

.mdc-list-item__secondary-text {
    width: 100%;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--color-primary-dark);
}

.list-item__secondary-text--padding {
    margin: 8px 16px;
}




.background-midnight-left {
    background-color: #C5E1A5;
}

.background-midnight-right {
    /* Zelfde kleur als .background-weekendday */
    background-color: #FFF59D;
}

.background-weekendday {
    background-color: #FFF59D;
}

.background-afwezig {
    background-color: var(--color-red);
}

.background-afwezig--less {
    box-shadow: 0 0 0 2px var(--color-red) inset;
}


.table-legend__color {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid black;
    margin-right: 8px;
}

.table-legend-item {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    align-items: center;
    justify-content: start;
    margin-bottom: 8px;
}


/*********** Dynamic tabs ***********/
.nav-tabs-dynamic {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
}

.nav-tabs-dynamic .nav-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

/************************************/
.p-auto {
    padding: initial !important;
}

.full-height {
    height: 100% !important;
}

.full-width {
    width: 100%;
    flex-shrink: 1;
}


.no-pointer-events {
    pointer-events: none;
}

.all-pointer-events {
    pointer-events: auto;
}

.align-right {
    text-align: right;
}

.text-align-center {
    text-align: center;
}

.p-clear {
    padding: 0 !important;
}

.ps-md {
    padding-left: 48px !important;
    padding-right: 48px !important;
}

.mb-clear {
    margin-bottom: 0 !important;
}

.mb-md {
    margin-bottom: 16px;
}

.mb-lg {
    margin-bottom: 24px;
}



.u-center-horizontal {
    margin: 0 auto;
}

.u-no-text-wrap {
    white-space: nowrap;
}

.u-vertical-align-center {
    vertical-align: middle;
}

.u-relative {
    position: relative;
}

/*
    Utility: Widths
    ---
    Utility classes to put specific widths onto elements
    Will be mostly used on .uurrooster
*/
.u-width-auto {
    width: auto !important;
}

.u-1-of-2 {
    width: 50% !important;
}

.u-1-of-3 {
    width: 33.3333333333% !important;
}

.u-2-of-3 {
    width: 66.6666666667% !important;
}

.u-1-of-4 {
    width: 25% !important;
}

.u-3-of-4 {
    width: 75% !important;
}

.u-1-of-5 {
    width: 20% !important;
}

.u-2-of-5 {
    width: 40% !important;
}

.u-3-of-5 {
    width: 60% !important;
}

.u-4-of-5 {
    width: 80% !important;
}

.u-1-of-6 {
    width: 16.6666666667% !important;
}

.u-5-of-6 {
    width: 83.3333333333% !important;
}

@media (min-width: 576px) {
    .u-1-of-2-bp1 {
        width: 50% !important;
    }

    .u-1-of-3-bp1 {
        width: 33.3333333333% !important;
    }

    .u-2-of-3-bp1 {
        width: 66.6666666667% !important;
    }

    .u-1-of-4-bp1 {
        width: 25% !important;
    }

    .u-3-of-4-bp1 {
        width: 75% !important;
    }

    .u-1-of-5-bp1 {
        width: 20% !important;
    }

    .u-2-of-5-bp1 {
        width: 40% !important;
    }

    .u-3-of-5-bp1 {
        width: 60% !important;
    }

    .u-4-of-5-bp1 {
        width: 80% !important;
    }

    .u-1-of-6-bp1 {
        width: 16.6666666667% !important;
    }

    .u-5-of-6-bp1 {
        width: 83.3333333333% !important;
    }
}

@media (min-width: 768px) {
    .u-1-of-2-bp2 {
        width: 50% !important;
    }

    .u-1-of-3-bp2 {
        width: 33.3333333333% !important;
    }

    .u-2-of-3-bp2 {
        width: 66.6666666667% !important;
    }

    .u-1-of-4-bp2 {
        width: 25% !important;
    }

    .u-3-of-4-bp2 {
        width: 75% !important;
    }

    .u-1-of-5-bp2 {
        width: 20% !important;
    }

    .u-2-of-5-bp2 {
        width: 40% !important;
    }

    .u-3-of-5-bp2 {
        width: 60% !important;
    }

    .u-4-of-5-bp2 {
        width: 80% !important;
    }

    .u-1-of-6-bp2 {
        width: 16.6666666667% !important;
    }

    .u-5-of-6-bp2 {
        width: 83.3333333333% !important;
    }
}

@media (min-width: 992px) {
    .u-1-of-2-bp3 {
        width: 50% !important;
    }

    .u-1-of-3-bp3 {
        width: 33.3333333333% !important;
    }

    .u-2-of-3-bp3 {
        width: 66.6666666667% !important;
    }

    .u-1-of-4-bp3 {
        width: 25% !important;
    }

    .u-3-of-4-bp3 {
        width: 75% !important;
    }

    .u-1-of-5-bp3 {
        width: 20% !important;
    }

    .u-2-of-5-bp3 {
        width: 40% !important;
    }

    .u-3-of-5-bp3 {
        width: 60% !important;
    }

    .u-4-of-5-bp3 {
        width: 80% !important;
    }

    .u-1-of-6-bp3 {
        width: 16.6666666667% !important;
    }

    .u-5-of-6-bp3 {
        width: 83.3333333333% !important;
    }
}

@media (min-width: 1200px) {
    .u-1-of-2-bp4 {
        width: 50% !important;
    }

    .u-1-of-3-bp4 {
        width: 33.3333333333% !important;
    }

    .u-2-of-3-bp4 {
        width: 66.6666666667% !important;
    }

    .u-1-of-4-bp4 {
        width: 25% !important;
    }

    .u-3-of-4-bp4 {
        width: 75% !important;
    }

    .u-1-of-5-bp4 {
        width: 20% !important;
    }

    .u-2-of-5-bp4 {
        width: 40% !important;
    }

    .u-3-of-5-bp4 {
        width: 60% !important;
    }

    .u-4-of-5-bp4 {
        width: 80% !important;
    }

    .u-1-of-6-bp4 {
        width: 16.6666666667% !important;
    }

    .u-5-of-6-bp4 {
        width: 83.3333333333% !important;
    }

    .progress-badge {
        font-size: 24px;
        background-color: #FF8373;
        color: #f6f5f6;
        border-radius: 15px;
        text-align: center;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .clipboard_div {
        display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox; /* TWEENER - IE 10 */
        display: -webkit-flex; /* NEW - Chrome */
        display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
        flex-direction: row;
        margin-top: 50px;
    }

    .clipboard_div h1 {
        margin-top: 150px;
        margin-left: 50px;
    }

    #geen_klachten {
        font-size: 200px;
        color: #72D232;
    }
}



.TotaalAantal {
    height: 1000px;
    width: 900px;
}


.content {
    -webkit-box-flex: 1; /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1; /* OLD - Firefox 19- */
    -webkit-flex: 1; /* Chrome */
    -ms-flex: 1; /* IE 10 */
    flex: 1; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}


/*Combobox styling*/
ul.comboboxtag {
    list-style: none;
}

    ul.comboboxtag li {
        display: inline;
    }

        ul.comboboxtag li label {
            display: inline-block;
            background-color: rgba(255, 255, 255, .9);
            border: 2px solid rgba(139, 139, 139, .3);
            color: #adadad;
            border-radius: 10px;
            white-space: nowrap;
            margin: 3px 0px;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
            transition: all .2s;
        }

        ul.comboboxtag li label {
            padding: 8px 12px;
            cursor: pointer;
        }

            ul.comboboxtag li label::before {
                display: inline-block;
                font-style: normal;
                font-variant: normal;
                text-rendering: auto;
                -webkit-font-smoothing: antialiased;
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
                font-size: 12px;
                padding: 2px 6px 2px 2px;
                content: "\f067";
                transition: transform .3s ease-in-out;
            }

        ul.comboboxtag li input[type="checkbox"]:checked + label::before {
            content: "\f00c";
            transform: rotate(-360deg);
            transition: transform .3s ease-in-out;
        }

        ul.comboboxtag li input[type="checkbox"]:checked + label {
            border: 2px solid var(--color-blue);
            background-color: var(--color-blue);
            color: #fff;
            transition: all .2s;
        }

        ul.comboboxtag li input[type="checkbox"] {
            position: absolute;
        }

        ul.comboboxtag li input[type="checkbox"] {
            position: absolute;
            opacity: 0;
        }

            ul.comboboxtag li input[type="checkbox"]:focus + label {
                border: 2px solid var(--color-violet);
            }

.opmaakBtnCentre {
    line-height: 1;
    font-size: 50px;
    color: black;
    padding: 5px;
    text-align: center;
}

body.modal-open {
    padding-right: 0px !important;
}

.errormessage {
    width: 100%
}

.pulse-blue-once {
    animation: pulse-blue 1.5s;
}

.pulse-blue-infinite {
    animation: pulse-blue 2s infinite;
}

/* blue pulse animation */
@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 172, 224, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(52, 172, 224, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(52, 172, 224, 0);
    }
}

.breadcrumb--transparent {
    background-color: transparent;
}

.breadcrumb--transparent .breadcrumb-item, 
.breadcrumb--transparent .breadcrumb-item:before {
    color: var(--color-primary-light);
}

.breadcrumb--transparent .breadcrumb-item > *:hover,
.breadcrumb--transparent .breadcrumb-item.active {
    color: var(--color-primary);
    opacity: 0.7;
}

.alert {
    position: sticky;
    top: 8px;
    left: 0;
    right: 0;
    z-index: 2000;
    /* Toon alerts boven modal overlay (z-index > 1050) */
}

.alert.u-under-modal {
    z-index: 1000;
}

.u-text-wrap {
    white-space: normal;
}

.select2-results__option[aria-disabled="true"] {
    background-color: #E9ECEF;
}

.icon-sm {
    width: 18px !important;
    height: 18px !important;
}

.buttonsRoostersModal {
    transform: scale(2);
}

.placeholder-spaarpotje {
    display: block;
    height: 65.52px;
}
.hoverWhite:hover {
    color:white !important
}
.color-black {
    color: black
}
.color-white {
    color: var(--color-primary-light) !important;
}


/* Give .u-no-arrows class to input type number to hide arrows */
input.u-no-arrows::-webkit-outer-spin-button,
input.u-no-arrows::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number].u-no-arrows {
    -moz-appearance: textfield;
}


/* Set overflow-x / y to overlay on subtle-scrollbar element */
.subtle-scrollbar--x {
    overflow-x: overlay;
}

.subtle-scrollbar--y {
    overflow-y: overlay;
}

.subtle-scrollbar::-webkit-scrollbar, .subtle-scrollbar::-webkit-scrollbar-track {
    height: 10px;
    background: rgba(255,255,255,0.3);
}

.subtle-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(141, 141, 141, 0.7);
    border-radius: 5px;
}

.show .datepicker-days thead > tr {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.show .picker-switch:not(.accordion-toggle) {
    border-radius: 6px !important;
    background-color: var(--color-blue-dark); /* #f8f9fa */
    color: #fff; /* var(--text-primary); */
    position: relative;
    padding-right: 16px !important;
    min-width: 164px !important;
}

.show .picker-switch:not(.accordion-toggle)::before {
    content: '';
    float: right;
    display: inline-block;
    position: relative;
    top: 50%;
    margin-top: -7px;
    vertical-align: top;
    width: 10px;
    height: 10px;
    border-style: solid;
    border-width: 2px 2px 0 0;
    border-color: #fff; /* var(--text-primary); */
    z-index: 1001;
    /* Arrow down */
    right: 0;
    transform: rotate(135deg);
}

.show .picker-switch:not(.accordion-toggle):hover {
    color: var(--text-primary);
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    width: auto;
}
