@import url(https://fonts.googleapis.com/css?family=Roboto:400,700,500,900);

@font-face {
    font-family: 'Roboto Mono';
    src: url("/assets/fonts/RobotoMono-VariableFont_wght.ttf") format('truetype');
}

:root {
    --color-warning-primary: #fcf8e3;
    --color-warning-secondary: #e6dbb9;
    --color-warning-text: #664d03;

    --color-info-primary: #d9edf7;
    --color-info-secondary: #5bc0de;
    --color-info-text: #31708f;
}

.font-roboto-mono {
    font-family: Roboto Mono, sans-serif;
}

html, body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #515151;
    background: #f1f1f1;
}

/* globale classes */
h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 500;
}

h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.bg-white {
    background-color: white;
}

.bg-grey {
    background-color: #f5f0f0;
}

.bg-transparent {
    background-color: transparent !important;
}

.font-weight-normal {
    font-weight: normal;
}

.font-weight-bold {
    font-weight: bold;
}

.preserve-white-space {
    white-space: pre-wrap;
}

.hover-pointer:hover {
    cursor: pointer;
}

.w-auto {
    width: auto;
}

.w-25 {
    width: 25%;
}

.w-50 {
    width: 50%;
}

.w-75 {
    width: 75%;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.gap-4 {
    gap: 1.5rem;
}

.gap-5 {
    gap: 3rem;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

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

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

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

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

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

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

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

.align-middle {
    vertical-align: middle !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.border {
    border: 1px solid #ccc;
}

.border-top {
    border-style: solid !important;
    border-width: 1px 0 0 0 !important;
}

.border-dark {
    border-color: black !important;
}

.border-warning {
    border-color: var(--color-warning-secondary) !important;
}

.border-info {
    border-color: var(--color-info-secondary) !important;
}

.rounded {
    border-radius: 10px;
}

.table-borderless th, .table-borderless td {
    border: none !important;
}

table .tr-warning > td {
    color: var(--color-warning-text);
    background-color: var(--color-warning-primary) !important;
    border-bottom-color: var(--color-warning-secondary) !important;
}

table .tr-danger > td {
    border-bottom-color: #d9534f !important;
}

table .tr-info > td {
    border-bottom-color: var(--color-info-secondary) !important;
}

/* Warning table */
.table-warning {
    color: var(--color-warning-text);
    border-color: var(--color-warning-secondary);
}

.table-warning thead {
    background-color: var(--color-warning-primary);
    border-bottom: 3px solid var(--color-warning-secondary);
}

.table-warning tbody > tr > td {
    border-top-color: var(--color-warning-secondary);
}

/* Info table */
.table-info {
    color: var(--color-info-text);
    border-color: var(--color-info-secondary);
}

.table-info thead {
    background-color: var(--color-info-primary);
    border-bottom: 3px solid var(--color-info-secondary);
}

.table-info tbody > tr > td {
    border-top-color: var(--color-info-secondary);
}

.v-align-middle {
    vertical-align: middle !important;
}

.custom-control-input {
    margin-right: 0.5rem !important;
}

label.required::after {
    content: "*";
    margin-left: 0.25em;
}

/* Colors for displaying special characters/glyphs. */
.display-space {
    background-color: #ffc080;
}

.display-tab {
    background-color: rgb(198, 227, 255);
}

.d-none {
    display: none;
}

.hide {
    display: none;
}

.mnone {
    margin: 0 !important;
}

.pnone {
    padding: 0 !important;
}

/* Margins */
.mt0 {
    margin-top: 0;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.mt60 {
    margin-top: 60px;
}

.mt70 {
    margin-top: 70px;
}

.mt80 {
    margin-top: 80px;
}

.mt90 {
    margin-top: 90px;
}

.mt100 {
    margin-top: 100px;
}

.mb0 {
    margin-bottom: 0;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb25 {
    margin-bottom: 25px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb70 {
    margin-bottom: 70px;
}

.mb80 {
    margin-bottom: 80px;
}

.mb90 {
    margin-bottom: 90px;
}

.mb100 {
    margin-bottom: 100px;
}

.mb200 {
    margin-bottom: 200px;
}

.mb250 {
    margin-bottom: 250px;
}

.mr10 {
    margin-right: 10px;
}

.mr15 {
    margin-right: 15px;
}

.mr20 {
    margin-right: 20px;
}

.mr25 {
    margin-right: 25px;
}

.mr30 {
    margin-right: 30px;
}

.mr40 {
    margin-right: 40px;
}

.mr50 {
    margin-right: 50px;
}

.mr60 {
    margin-right: 60px;
}

.mr70 {
    margin-right: 70px;
}

.mr80 {
    margin-right: 80px;
}

.mr90 {
    margin-right: 90px;
}

.mr100 {
    margin-right: 100px;
}

.ml10 {
    margin-left: 10px;
}

.ml15 {
    margin-left: 15px;
}

.ml20 {
    margin-left: 20px;
}

.ml25 {
    margin-left: 25px;
}

.ml30 {
    margin-left: 30px;
}

.ml40 {
    margin-left: 40px;
}

.ml50 {
    margin-left: 50px;
}

.ml60 {
    margin-left: 60px;
}

.ml70 {
    margin-left: 70px;
}

.ml80 {
    margin-left: 80px;
}

.ml90 {
    margin-left: 90px;
}

.ml100 {
    margin-left: 100px;
}

/* Paddings */
.no-padding {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.p-3 {
    padding: 1rem;
}

.px-3 {
    padding-inline: 1rem;
}

.py-3 {
    padding-block: 1rem;
}

.pt0 {
    padding-top: 0;
}

.pt10 {
    padding-top: 10px;
}

.pt20 {
    padding-top: 20px;
}

.pt30 {
    padding-top: 30px;
}

.pt40 {
    padding-top: 40px;
}

.pt50 {
    padding-top: 50px;
}

.pt60 {
    padding-top: 60px;
}

.pt70 {
    padding-top: 70px;
}

.pt75 {
    padding-top: 75px;
}

.pt80 {
    padding-top: 80px;
}

.pt90 {
    padding-top: 90px;
}

.pt100 {
    padding-top: 100px;
}

.pb0 {
    padding-bottom: 0;
}

.pb10 {
    padding-bottom: 10px;
}

.pb20 {
    padding-bottom: 20px;
}

.pb30 {
    padding-bottom: 30px;
}

.pb40 {
    padding-bottom: 40px;
}

.pb50 {
    padding-bottom: 50px;
}

.pb60 {
    padding-bottom: 60px;
}

.pb70 {
    padding-bottom: 70px;
}

.pb80 {
    padding-bottom: 80px;
}

.pb90 {
    padding-bottom: 90px;
}

.pb100 {
    padding-bottom: 100px;
}

.pl0 {
    padding-left: 0;
}

.pl10 {
    padding-left: 10px;
}

.pl20 {
    padding-left: 20px;
}

.pl30 {
    padding-left: 30px;
}

.pl40 {
    padding-left: 40px;
}

.pl50 {
    padding-left: 50px;
}

.pl60 {
    padding-left: 60px;
}

.pl70 {
    padding-left: 70px;
}

.pl80 {
    padding-left: 80px;
}

.pl90 {
    padding-left: 90px;
}

.pl100 {
    padding-left: 100px;
}

.pr0 {
    padding-right: 0;
}

.pr10 {
    padding-right: 10px;
}

.pr20 {
    padding-right: 20px;
}

.pr30 {
    padding-right: 30px;
}

.pr40 {
    padding-right: 40px;
}

.pr50 {
    padding-right: 50px;
}

.pr60 {
    padding-right: 60px;
}

.pr70 {
    padding-right: 70px;
}

.pr80 {
    padding-right: 80px;
}

.pr90 {
    padding-right: 90px;
}

.pr100 {
    padding-right: 100px;
}

.roundborder {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.icon {
    background: #888;
    padding: 4px;
    border-radius: 3px;
}

.icon a {
    color: #fff;
}

.icon a:hover {
    color: #fff;
    text-decoration: none;
}

.nav_slide {
    cursor: pointer;
    padding-bottom: 5px;
    border-bottom: 1px solid #e0e0e0;
}

.nav_slide img {
    margin-left: 132px;
}

.nav_slide.open {
    padding-bottom: 0;
    border-bottom: 0;
}

.nav_slide.open img {
    margin-left: 15px;
}

/* layout specifiek */
.container {
    position: relative;
    width: 1300px !important;
    max-width: 1300px;
    z-index: 9;
}

.container-cars {
    width: 1500px !important;
    max-width: 1500px;
}

.devbar {
    width: 100%;
    padding: 8px 0;
    float: left;
    background: #ffff00;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    -webkit-box-shadow: 0px 0px 8px 2px #999;
    -moz-box-shadow: 0px 0px 8px 2px #999;
    box-shadow: 0px 0px 8px 2px #999;
    z-index: 999999;
    position: relative;
}

.warning-bar {
    width: 100%;
    padding: 8px 0;
    float: left;
    background: red;
    font-size: 14px;
    font-weight: bold;
    color: #FFF;
    text-align: center;
    -webkit-box-shadow: 0px 0px 8px 2px #999;
    -moz-box-shadow: 0px 0px 8px 2px #999;
    box-shadow: 0px 0px 8px 2px #999;
    z-index: 999999;
    position: relative;
}

.topbar {
    height: 80px;
    background-color: #f5f5f5;
}

.breadcrumbbar {
    height: 36px;
    padding-top: 8px;
    background: url('../images/breadcrumb_bg.png') repeat-x;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.breadcrumbbar .up {
    text-transform: uppercase;
    color: #fff;
}

.breadcrumbs {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.breadcrumbs > li {
    display: inline-block;
    padding-left: 0.5rem;
}

.breadcrumbs > li::before {
    content: "\00BB";
    padding-right: 0.5rem;
}

.footer {
    position: relative;
    border-top: 1px solid #dfdfdf;
    padding-top: 30px;
    padding-bottom: 30px;
    z-index: 1;
}

.footer .car_right {
    position: absolute;
    right: 0;
    top: -302px;
}

.footer .car_left {
    position: absolute;
    left: 0;
    top: -320px;
}

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

.login_wrap {
    position: relative;
    width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
}

.login_wrap h1 {
    margin-top: 0;
}

.responsive-menu-icon {
    display: block;
}

@media (min-width: 992px) {
    .responsive-menu-icon {
        display: none;
    }
}

.layout-sidebar-left {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;

    padding-block: 1rem;
}

@media (min-width: 992px) {
    .layout-sidebar-left {
        grid-template-columns: 1fr 3fr;
    }
}

@media (min-width: 1800px) {
    .layout-sidebar-left {
        grid-template-columns: 1fr 5fr;
    }
}

@media (max-width: 991px) {
    .sidebar__nav {
        display: none;

        position: absolute;
        top: 80px;
        left: 0;

        width: 100%;
        height: 75vh;
        overflow: auto;

        z-index: 101;

        padding: 5px;

        border-radius: 0;
        box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
    }
}

.sidebar__nav {
    background: #f9f9f9;
}

.sidebar__nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar__nav ul li {
    border-top: 1px solid #e0e0e0;
}

.sidebar__nav ul li.first {
    border-top: 0;
}

.sidebar__nav ul li a {
    display: block;
    padding: 12px 15px 12px 35px;
    color: #515151;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

.sidebar__nav ul li a .arrow {
    position: absolute;
    left: 15px;
    top: 17px;
    width: 7px;
    height: 9px;
    background: url('../images/nav_arrow.png') no-repeat;
}

.sidebar__nav ul li a:hover {
    background: url('../images/rightnav_bg.jpg');
    text-decoration: none;
    color: #fff;
}

.sidebar__nav ul li a:hover .arrow {
    background: url('../images/nav_arrow_h.png') no-repeat;
}

.sidebar__nav ul li ul {
    background: #dcdcdc;
    padding-block: 0.5rem;
    padding-inline-end: 1rem;
}

.sidebar__nav ul li ul li {
    border-top: 0;
}

.sidebar__nav ul li ul li a {
    padding: 5px 0 0 35px;
    text-transform: none;
}

.sidebar__nav ul li ul li a:hover {
    background: none;
    color: #515151;
}

.content {
    width: 100%;
    background: #f9f9f9;
    padding: 20px;
}

.content h1 {
    margin-top: 0;
}

.content .legenda-status {
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.content .legenda-status p {
    margin-left: 38px;
    font-weight: normal;
}


.content-cars {
    width: 1100px;
    float: right;
    background: #f9f9f9;
    padding: 20px;
}

.content-cars h1 {
    margin-top: 0;
}

.content-cars .legenda-status {
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.content-cars .legenda-status p {
    margin-left: 38px;
    font-weight: normal;
}

.loader {
    background: url('../images/loader.gif');
    width: 32px;
    height: 32px;
    float: left;
    display: none;
}

.loader_status {
    font-weight: bold;
    float: left;
    padding: 10px 20px;
    display: none;
}

.form-horizontal .next {
    display: none;
}

.notes {
    position: fixed;
    bottom: 0;
    text-align: center;
    padding: 10px 15px;
    right: 50px;
    background: #428bca;

    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.print {
    cursor: pointer;
    margin-left: 20px;
}

input.error,
textarea.error,
select.error {
    border: 2px solid #f00;
}

.coc-dealer-field {
    display: none;
}

/* jQuery UI tabs override */
.ui-widget {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #515151;
}

.exceptional-multiple-select {
    display: none;
}

body.dragging, body.dragging * {
    cursor: move !important;
}

.dragged {
    position: absolute;
    opacity: 0.5;
    z-index: 2000;
}

ol.example li.placeholder {
    position: relative;
}

ol.example li.placeholder:before {
    position: absolute;
}

ul.sortable_list {
    list-style-image: url('/assets/images/drag25.png');
    margin: 0;
    padding: 0;
    margin-left: 10px;
}

ul.sortable_list li {
    display: block;
    margin-bottom: .50em;
    margin-left: 13px;
}

img.draggable {
    margin-right: 8px;
    margin-top: 4px;

    cursor: move;
}

span.draggable {
    cursor: move;
    margin-left: 4px;
}

span.draggable_enabled {
    color: #515151;
}

span.draggable_disabled {
    color: #888888;
}

.no_form_field_padding {
    padding-top: 6px;
}

.btn-blauw {
    background-color: #428bca;
    border-color: #357ebd;
    color: #fff;
}

.btn-oranje {
    background-color: #f0ad4e;
    border-color: #eea236;
    color: #fff;
}

.btn-groen {
    background-color: #5cb85c;
    border-color: #4cae4c;
    color: #fff;
}

.btn-rood {
    background-color: #d9534f;
    border-color: #d43f3a;
    color: #fff;
}

.btn-geel {
    background-color: #edda3b;
    border-color: #e9d63a;
    color: #fff;
}

.btn-paars {
    background-color: #a100ed;
    border-color: #7100bd;
    color: #fff;
}

.btn-grey {
    background-color: #c5c5c5;
    color: #8a8a8a !important;
    text-decoration: none !important;
}

.btn-square {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;

    padding: 2rem;

    font-size: 2vmax;

    border-radius: 10px;
}

/* Form wizard */
.bs-wizard {
    margin-top: 10px;
    margin-bottom: 10px;
}

.bs-wizard {
    border-bottom: solid 1px #e0e0e0;
    padding: 0 0 20px 0;
}

.bs-wizard-no-border {
    border-bottom: 0;
}

.bs-wizard > .bs-wizard-step {
    padding: 0;
    position: relative;
}

.bs-wizard > .bs-wizard-step + .bs-wizard-step {
}

.bs-wizard > .bs-wizard-step .bs-wizard-stepnum {
    color: #595959;
    font-size: 16px;
    margin-bottom: 5px;
}

.bs-wizard > .bs-wizard-step .bs-wizard-info {
    color: #999;
    font-size: 14px;
}

.bs-wizard > .bs-wizard-step > .bs-wizard-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    display: block;
    background: #ccc;
    top: 45px;
    left: 50%;
    margin-top: -15px;
    margin-left: -15px;
    border-radius: 50%;
}

.bs-wizard > .bs-wizard-step > .bs-wizard-dot:after {
    content: ' ';
    width: 14px;
    height: 14px;
    background: #1e1e1e;
    border-radius: 50px;
    position: absolute;
    top: 8px;
    left: 8px;
}

.bs-wizard > .bs-wizard-step > .progress {
    position: relative;
    border-radius: 0px;
    height: 8px;
    box-shadow: none;
    margin: 20px 0;
}

.bs-wizard > .bs-wizard-step > .progress > .progress-bar {
    width: 0px;
    box-shadow: none;
    background: #ccc;
}

.bs-wizard > .bs-wizard-step.completed > .progress > .progress-bar {
    width: 100%;
}

.bs-wizard > .bs-wizard-step.active > .progress > .progress-bar {
    width: 50%;
}

.bs-wizard > .bs-wizard-step:first-child.active > .progress > .progress-bar {
    width: 0%;
}

.bs-wizard > .bs-wizard-step:last-child.active > .progress > .progress-bar {
    width: 100%;
}

.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot {
    background-color: #f5f5f5;
}

.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot:after {
    opacity: 0;
}

.bs-wizard > .bs-wizard-step:first-child > .progress {
    left: 50%;
    width: 50%;
}

.bs-wizard > .bs-wizard-step:last-child > .progress {
    width: 50%;
}

.bs-wizard > .bs-wizard-step.disabled a.bs-wizard-dot {
    pointer-events: none;
}

.table-overflow {
    min-height: .01%;
    overflow-x: auto;
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
}

.table-overflow > .table > tbody > tr > td,
.table-overflow > .table > tbody > tr > th,
.table-overflow > .table > tfoot > tr > td,
.table-overflow > .table > tfoot > tr > th,
.table-overflow > .table > thead > tr > td,
.table-overflow > .table > thead > tr > th {
    white-space: nowrap;
}

body.m-premium-tables.c-cumulative-matrix #vme_types .list-group-item {
    cursor: pointer;
}

body.m-premium-tables.c-cumulative-matrix #types_of_sale .list-group-item {
    cursor: pointer;
}

body.m-dmp.c-dmp.f-create #types_of_sale .list-group-item,
.list-group-selector .list-group-item {
    cursor: pointer;
}


body.m-premium-tables .forecast-input {
    width: auto;
    min-width: 100%;
    text-align: right;
}

body.dragging, body.dragging * {
    cursor: move !important;
}

.sortable-panel .placeholder {
    display: block;
    background: red;
    position: relative;
    margin: 0;
    padding: 0;
    border: none;
}

.sortable-panel .placeholder:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left-color: red;
    margin-top: -5px;
    left: -5px;
    border-right: none;
}

.dragged {
    position: absolute;
    opacity: 0.5;
    z-index: 2000;
}

.sortable-panel .panel-sort {
    position: relative;
}

.sortable-panel .placeholder {
    position: relative;
}

.sortable-panel .placeholder:before {
    position: absolute;
}

.dmp_o_blue {
    border: 1px solid #000000;

}

.dmp_o_orange {
    border: 1px solid #000000;
    background-color: #ee9f2a;
}

.dmp_o_red {
    border: 1px solid #000000;
    background-color: #ee7282;
}

.dmp_o_purple {
    border: 1px solid #000000;
    background-color: #c672bf;
}

.dmp_o_grey_bold {
    background-color: #e2e2e2;
    border: 1px solid #000000;
    border-top: 1px solid #000000 !important;
    font-weight: bold;
}

.table-dmp > tbody > tr > td, .table-dmp > tbody > tr > th, .table-dmp > tfoot > tr > td, .table-dmp > tfoot > tr > th, .table-dmp > thead > tr > td, .table-dmp > thead > tr > th {
    border: 1px solid #000 !important;
}

.table > tbody > tr.dmp_blue > td, .table > tbody > tr.dmp_blue > th, .table > tbody > tr > td.dmp_blue, .table > tbody > tr > th.dmp_blue, .table > tfoot > tr.dmp_blue > td, .table > tfoot > tr.dmp_blue > th, .table > tfoot > tr > td.dmp_blue, .table > tfoot > tr > th.dmp_blue, .table > thead > tr.dmp_blue > td, .table > thead > tr.dmp_blue > th, .table > thead > tr > td.dmp_blue, .table > thead > tr > th.dmp_blue {
    background-color: #85b1ee;
}

.table > tbody > tr.dmp_orange > td, .table > tbody > tr.dmp_orange > th, .table > tbody > tr > td.dmp_orange, .table > tbody > tr > th.dmp_orange, .table > tfoot > tr.dmp_orange > td, .table > tfoot > tr.dmp_orange > th, .table > tfoot > tr > td.dmp_orange, .table > tfoot > tr > th.dmp_orange, .table > thead > tr.dmp_orange > td, .table > thead > tr.dmp_orange > th, .table > thead > tr > td.dmp_orange, .table > thead > tr > th.dmp_orange {
    background-color: #ee9f2a;
}

.table > tbody > tr.dmp_red > td, .table > tbody > tr.dmp_red > th, .table > tbody > tr > td.dmp_red, .table > tbody > tr > th.dmp_red, .table > tfoot > tr.dmp_red > td, .table > tfoot > tr.dmp_red > th, .table > tfoot > tr > td.dmp_red, .table > tfoot > tr > th.dmp_red, .table > thead > tr.dmp_red > td, .table > thead > tr.dmp_red > th, .table > thead > tr > td.dmp_red, .table > thead > tr > th.dmp_red {
    background-color: #ee7282;
}

.table > tbody > tr.dmp_purple > td, .table > tbody > tr.dmp_purple > th, .table > tbody > tr > td.dmp_purple, .table > tbody > tr > th.dmp_purple, .table > tfoot > tr.dmp_purple > td, .table > tfoot > tr.dmp_purple > th, .table > tfoot > tr > td.dmp_purple, .table > tfoot > tr > th.dmp_purple, .table > thead > tr.dmp_purple > td, .table > thead > tr.dmp_purple > th, .table > thead > tr > td.dmp_purple, .table > thead > tr > th.dmp_purple {
    background-color: #c672bf;
}

.modal {
    margin-top: 100px;
}

.multiselect-native-select .btn-group,
.multiselect-native-select .btn-group .btn.multiselect {
    width: 100%;
    /*overflow: hidden;*/
}

.multiselect-native-select .btn-group .btn.multiselect {
    overflow: hidden;
}

#dateadd {
    margin-top: 21px;
}

.premium-matrix-date {
    position: initial !important;
}

.premium_matrix_separator {
    font-weight: bold;
    background-color: #efefef;
}

.dmp-overview-anchors a + a:before {
    content: "- ";
    padding: 12px;
}

.dmp-overview-anchor:hover, .dmp-overview-anchor:visited, .dmp-overview-anchor:link, .dmp-overview-anchor:active {
    padding: 2px;
    text-decoration: none;
}

.text-red {
    color: red;
}

#homologationform input, #homologationform textarea, #homologationform select {
    margin-top: 8px;
}

#homologationform input:first-child:not([type='button']) {
    margin-top: 6px;
    margin-bottom: 4px;
}

#kpiform input:first-child:not([type='button']) {
    margin-top: 6px;
    margin-bottom: 4px;
}

/* KPI */
.kpi_year {
    width: 60px;
}

.kpi_month {
    width: 45px;
}

.kpi_data {
    width: 65px;
}

#merge-list .success {
    background-color: #d7ffd7;
}

#merge-list .error {
    background-color: #ffa6a6;
}

/* Budgets V3 */
#budgets-v3-retail-targets {
    width: 100%;
}

#budgets-v3-retail-targets td {
    padding: 5px;
}

#budgets-v3-retail-targets td:nth-child(1) {
    width: 40%;
}

#budgets-v3-retail-targets td:nth-child(2) {
    width: 20%;
}

.budgets-v3-data-table thead {
    background-color: #f5f0f0;
}

.budgets-v3-data-table {
    margin-top: 15px;
    border: 1px solid #000;
    width: 100%;
}

.budgets-v3-data-table td, .budgets-v3-data-table th {
    width: 20%;
    padding: 5px 30px 5px 5px;
}

.budgets-v3-data-table th {
    font-size: 14px;
    padding: 5px 0 5px 0;
}

.budgets-v3-data-table td:nth-child(1), .budgets-v3-data-table th:nth-child(1) {
    width: 40%;
    padding-left: 15px;
}

.budgets-v3-data-table td:nth-child(4) {

}

.flex-graphs {
    display: flex;
    flex: 1;
    flex-direction: row;
}

.flex-graphs .flex-graph {
    display: flex;
    flex: 1;
}

#homologation-users-table a {
    text-decoration: none;
    color: #000;
}

#homologation-users-table .fa {
    font-size: 15px
}
