.defaultError::-webkit-input-placeholder {
    color: #ddd;
}

.defaultError:-moz-placeholder { /* Firefox 18- */
    color: #ddd;
}

.defaultError::-moz-placeholder { /* Firefox 19+ */
    color: #ddd;
}

.defaultError:-ms-input-placeholder {
    color: #ddd;
}

html, body {
    position: relative;
}

body {
    background-image: url("../images/wallpaper/01.png");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #ffffff;
    color: #232323;
    font-size: 0.8em;
    font-family: Verdana, Helvetica, Sans-Serif;
    margin: 0;
    padding: 0;
}

a {
    color: cornflowerblue;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

.headerMenuItem a {
    color: white;
}

h2 {
    margin-top: 0;
}

    h2.headingWithSubtitle {
        margin-bottom: 0;
    }

h3.subtitle {
    font-weight: normal;
    font-size: 1em;
    margin-top: 0;
    margin-bottom: 1em;
}

/* #region TABLES */


table {
    border-collapse: collapse;
    border: none;
}

    table.dataTable, table.horizontalTable {
        background: rgb(255,255,255);
        border: 1px solid gray;
        box-shadow: 3px 1px 5px rgba(0,0,0,0.4);
        font-size: 11px;
    }

        table.dataTable thead, table.dataTable tfoot {
            background: #fcfcfc;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPgo8bGluZWFyR3JhZGllbnQgaWQ9Imc0NjEiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+CjxzdG9wIHN0b3AtY29sb3I9IiNmY2ZjZmMiIG9mZnNldD0iMCIvPjxzdG9wIHN0b3AtY29sb3I9IiNkYmRiZGIiIG9mZnNldD0iMSIvPgo8L2xpbmVhckdyYWRpZW50Pgo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2c0NjEpIiAvPgo8L3N2Zz4=');
            background: -moz-linear-gradient(top, #fcfcfc 14%, #dbdbdb 100%);
            background: -webkit-gradient(linear, left top, left bottom, color-stop(14%,#fcfcfc), color-stop(100%,#dbdbdb));
            background: -webkit-linear-gradient(top, #fcfcfc 14%,#dbdbdb 100%);
            background: -o-linear-gradient(top, #fcfcfc 14%,#dbdbdb 100%);
            background: linear-gradient(to bottom, #fcfcfc 14%,#dbdbdb 100%);
            border: 1px solid gray;
            font-weight: bold;
        }

            table.dataTable thead td, table.dataTable thead th {
                padding-top: 4px;
                padding-bottom: 4px;
            }

        /*achtergrondkleuren body*/
        table.dataTable tbody tr:nth-child(even) {
            background: #FFFFFF;
        }

        table.dataTable tbody tr:nth-child(odd) {
            background: #E8E8E8;
        }

        /*kaders*/
        table.dataTable th, table.dataTable td, table.horizontalTable th, table.horizontalTable td {
            border-left: 1px solid silver;
            border-right: 1px solid silver;
            height: 10px !important;
            padding: 2px 4px;
        }

        table.dataTable th {
            border-bottom: 1px solid silver;
        }

    table.buttonTable td {
        height: 20px !important;
    }

    table.dataTable th:first-child, table.dataTable td:first-child {
        border-left: 1px solid gray;
    }

    table.dataTable th:last-child, table.dataTable td:last-child {
        border-right: 1px solid gray;
    }

    table.dataTable tfoot {
        border-top: 1px solid gray;
    }

    table.horizontalTable th {
        text-align: left;
    }

    table.dataTable tr {
        vertical-align: middle;
    }

    table.dataTable th.sortable {
        cursor: pointer;
    }

        table.dataTable th.sortable::after {
            color: silver;
            content: "⭥";
            float: right;
            font-size: 1.4em;
        }

        table.dataTable th.sortable.contentProductColPrice::after,
        table.dataTable th.sortable.contentProductColConsumerPrice::after {
            float: left;
        }

        table.dataTable th.sortable.sortasc::after {
            color: gray;
            content: "⭡";
        }

        table.dataTable th.sortable.sortdesc::after {
            color: gray;
            content: "⭣";
        }


/* MODAL
----------------------------------------------------------*/
.modal {
    display: none;
    font-size: 13px;
    margin-left: auto;
    margin-right: auto;
    width: 635px;
    height: 550px;
}

/* #endregion */

/* REGION COMMON ALL-ROUND CSS */
.progress {
    width: 0;
    overflow: hidden;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    text-align: right;
    text-shadow: 1px 1px 0 #000;
    background: -o-linear-gradient(top,#888888,#333333);
    background: -moz-linear-gradient(top,#888888,#333333);
    background: -webkit-gradient(linear,left top,left bottom,from(#888888),to(#333333));
    background: -webkit-linear-gradient(top,#888888,#333333);
    background: linear-gradient(to bottom,#888888,#333333);
    -o-transition-property: width;
    -o-transition-duration: .5s;
    -moz-transition-property: width;
    -moz-transition-duration: .5s;
    -webkit-transition-property: width;
    -webkit-transition-duration: .5s;
    transition-property: width;
    transition-duration: .5s;
}

#editHeaderLogo {
    cursor: pointer;
    display: none;
    left: 22px;
    opacity: 0.8;
    position: fixed;
    top: 10px;
    -moz-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    -webkit-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
    z-index: 110;
}

    #editHeaderLogo.smallLogo {
        left: 8px;
        top: 2px;
    }

    #editHeaderLogo:hover {
        opacity: 0.6;
    }

#commentContainer {
    text-align: center;
}

#dynamicDialog {
    font-size: 12px;
}

.no-close .ui-dialog-titlebar-close {
    display: none;
}

#headlineTitle {
    font-size: 14px;
    font-weight: bold;
    padding-bottom: 10px;
    padding-top: 10px;
}

#subRelTable {
    border: 1px solid gray;
    box-shadow: 3px 1px 5px rgba(0,0,0,0.4);
}

.subRelOrderOkCol {
    text-align: center;
}

#renderBodyWrapper {
    bottom: 0;
    box-sizing: border-box;
    min-height: 100%;
    left: 0;
    margin-bottom: 0;
    padding: 0;
    right: 0;
    top: 0;
    min-width: 800px;
    z-index: 1;
}

.agentHeader {
    font-size: 20px;
}

#footerWrapper {
    background: #ffffff;
    background-position: center center;
    border-top: 1px solid #e2e2e2;
    bottom: 0;
    box-shadow: 3px 1px 5px rgba(0,0,0,0.4);
    box-sizing: border-box;
    color: #fff;
    display: block;
    height: 24px;
    position: fixed;
    text-align: center;
    width: 100%;
    z-index: 98;
    opacity: 0.9;
}

    #footerWrapper .footerItem {
        cursor: pointer;
        display: inline-block;
        text-shadow: 0 0 6px #000000;
        margin-bottom: auto;
        margin-top: auto;
        opacity: 1.0;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 2px;
        -moz-transition: opacity 100ms ease-in-out;
        -o-transition: opacity 100ms ease-in-out;
        -webkit-transition: opacity 100ms ease-in-out;
        transition: opacity 100ms ease-in-out;
        vertical-align: middle;
    }

        #footerWrapper .footerItem:hover {
            opacity: 0.6;
        }

        #footerWrapper .footerItem a {
            color: inherit;
            text-decoration: inherit;
        }

    #footerWrapper .footerSeparator {
        display: inline-block;
        text-shadow: 0 0 8px #000000;
        margin-bottom: auto;
        margin-top: auto;
        padding-top: 2px;
        vertical-align: middle;
    }

#agentTable tr {
    vertical-align: top;
}

#agentDetailTable th {
    text-align: left;
    font-weight: bold;
}

#agentDetailTable .colAgentDetailTable {
    font-size: 12px;
    padding: 3px 12px;
}

::-webkit-input-placeholder {
    font-style: italic;
}

:-moz-placeholder { /* Firefox 18- */
    font-style: italic;
}

::-moz-placeholder { /* Firefox 19+ */
    font-style: italic;
}

:-ms-input-placeholder {
    font-style: italic;
}

::selection {
    background: #cbebff;
}

::-moz-selection {
    background: #cbebff; /* Firefox-specifiek */
}
/* END REGION COMMON ALL-ROUND CSS */

/* REGION DEFAULT DOM OBJECTS FOR NEW SHOP */
.defaultSelect {
    background: #fff;
    border: 1px solid #AAA;
    color: #444;
    cursor: pointer;
    font-size: 11px;
    -moz-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    -webkit-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
}

    .defaultSelect:hover {
        cursor: pointer;
        color: #000;
        border: 1px solid #888;
    }

    .defaultSelect:active {
        cursor: pointer;
    }

    .defaultSelect:disabled {
        cursor: default;
        color: initial;
        border: initial;
    }

    .defaultSelect option {
        cursor: pointer;
    }

table.dataTable tbody tr.defaultSuccess,
input.defaultSuccess {
    background: #ce9;
}

table.dataTable tbody tr.defaultError,
input.defaultError {
    background: #f88;
}

.defaultDialog {
    z-index: 1009 !important;
}

.defaultInput {
    color: #444;
    background: #fff;
    border: 1px solid #AAA;
    font-size: 11px;
    -moz-transition: all 100ms ease-in-out;
    -webkit-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
}

    .defaultInput:hover {
        color: #000;
        border: 1px solid #888;
    }

    .defaultInput.readOnly, .defaultInput:disabled {
        cursor: default;
        color: #888 !important;
        background-color: #DDD !important;
        border: initial;
        user-select: none;
    }

.tinyWidth {
    width: 80px;
}

button,
input[type=button],
input[type=submit],
input[type=reset] {
    color: #444;
    cursor: pointer;
    -moz-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    -webkit-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
    border: 1px solid #AAA;
}

    button:hover:not(:disabled),
    input[type=button]:hover:not(:disabled),
    input[type=submit]:hover:not(:disabled),
    input[type=reset]:hover:not(:disabled) {
        color: #000;
        border: 1px solid #888;
    }

    button:disabled,
    input[type=button]:disabled,
    input[type=submit]:disabled,
    input[type=reset]:disabled {
        background: #E3E3E3;
        border: 1px solid #CCC;
        cursor: default !important;
        color: #888;
    }

        button:disabled img,
        input[type=button]:disabled img,
        input[type=submit]:disabled img,
        input[type=reset]:disabled img {
            opacity: 0.4;
        }

    button.imageButton,
    input[type=button].imageButton,
    input[type=submit].imageButton,
    input[type=reset].imageButton,
    input[type=image].imageButton {
        background: none;
        border: none;
        padding: 0;
        opacity: 0.7;
        -moz-transition: all 100ms ease-in-out;
        -o-transition: all 100ms ease-in-out;
        -webkit-transition: all 100ms ease-in-out;
        transition: all 100ms ease-in-out;
    }

        button.imageButton:hover,
        input[type=button].imageButton:hover,
        input[type=submit].imageButton:hover,
        input[type=reset].imageButton:hover,
        input[type=image].imageButton:hover {
            opacity: 1.0;
        }

        button.imageButton:disabled,
        input[type=button].imageButton:disabled,
        input[type=submit].imageButton:disabled,
        input[type=reset].imageButton:disabled,
        input[type=image].imageButton:disabled {
            opacity: 0.5;
        }

.defaultButton {
    font-weight: bold;
    min-height: 26px;
    min-width: 100px;
    text-align: center;
    margin-right: 4px;
}

.smallButton {
    font-size: 7pt;
    min-height: 16px !important;
    min-width: 20px !important;
}

.classicButton {
    border-radius: 0 !important;
}

.greenButton {
    background: #cdeb8e;
    background: -moz-linear-gradient(top, #cdeb8e 0, #a5c956 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0,#cdeb8e), color-stop(100%,#a5c956));
    background: -webkit-linear-gradient(top, #cdeb8e 0,#a5c956 100%);
    background: -o-linear-gradient(top, #cdeb8e 0,#a5c956 100%);
    background: linear-gradient(to bottom, #cdeb8e 0,#a5c956 100%);
    border: 1px solid #666;
    cursor: pointer;
}

.greyButton {
    background: #888;
    background: -moz-linear-gradient(top, #888 0, #666 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0,#888), color-stop(100%,#666));
    background: -webkit-linear-gradient(top, #888 0,#666 100%);
    background: -o-linear-gradient(top, #888 0,#666 100%);
    background: linear-gradient(to bottom, #888 0,#666 100%);
    border: 1px solid #666;
    cursor: pointer;
}

.orangeButton {
    background: rgb(249,198,103);
    background: -moz-linear-gradient(top, rgba(249,198,103,1) 0, rgba(247,150,33,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0,rgba(249,198,103,1)), color-stop(100%,rgba(247,150,33,1)));
    background: -webkit-linear-gradient(top, rgba(249,198,103,1) 0,rgba(247,150,33,1) 100%);
    background: -o-linear-gradient(top, rgba(249,198,103,1) 0,rgba(247,150,33,1) 100%);
    background: linear-gradient(to bottom, rgba(249,198,103,1) 0,rgba(247,150,33,1) 100%);
    border: 1px solid #666;
    cursor: pointer;
}

.redButton {
    background: #ff3535;
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmMzUzNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZjE0MTgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+');
    background: -moz-linear-gradient(left, #ff3535 0, #ff1418 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0,#ff3535), color-stop(100%,#ff1418));
    background: -webkit-linear-gradient(left, #ff3535 0,#ff1418 100%);
    background: -o-linear-gradient(left, #ff3535 0,#ff1418 100%);
    background: linear-gradient(to right, #ff3535 0,#ff1418 100%);
    border: 1px solid #666;
    color: white !important;
    cursor: pointer;
}

.smallIconButton {
    height: 20px;
    width: 20px;
    max-height: 20px;
    max-width: 20px;
    padding: 0;
}

.mediumIconButton {
    height: 26px;
    width: 26px;
    max-height: 26px;
    max-width: 26px;
    padding: 0;
}

button.iconTextButton {
    display: inline-block;
    height: 26px;
    min-width: 100px;
    padding: 4px;
    text-align: center;
}

    button.iconTextButton img {
        float: left;
        margin-right: 4px;
        vertical-align: bottom;
    }

/* END REGION DEFAULT DOM OBJECTS FOR NEW SHOP */

/* Styles for basic forms
-----------------------------------------------------------*/
fieldset {
    border: 1px solid #ddd;
    padding: 0 1.4em 1.4em 1.4em;
    margin: 0 0 1.5em 0;
}

legend {
    font-size: 1.2em;
    font-weight: bold;
}

textarea {
    min-height: 75px;
}

.editor-label {
    margin: 1em 0 0 0;
}

.editor-field {
    margin: 0.5em 0 0 0;
}

/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error {
    color: #d00;
}

.field-validation-valid {
    display: none;
}

.input-validation-error {
    border: 1px solid #d00;
    background-color: #fee;
}

.validation-summary-errors {
    background-color: white;
    border: 1px solid #d00;
    color: #d00;
    font-size: 9pt;
    font-style: italic;
    margin: 6px;
    padding: 6px;
    text-align: center;
}

    .validation-summary-errors ul {
        margin: 0;
        padding: 2px 0 2px 0;
    }

    .validation-summary-errors li {
        list-style: none !important;
    }

.validation-summary-valid {
    display: none;
}

.orderConsPriceInput, .orderConsQpuInput {
    height: 18px !important;
    text-align: right;
}

.orderConsPriceInput {
    width: 50px;
}

.orderConsQpuInput {
    width: 40px;
}

.errorMessage {
    font-size: 11px;
    font-style: italic;
    padding-right: 10px;
}

.textColumn {
    text-align: left;
}

.dateColumn {
    text-align: right;
}

.amountColumn {
    text-align: right;
}

.currencyColumn {
    text-align: right;
}

.imageColumn {
    text-align: center;
}

.buttonColumn {
    text-align: center;
}

.buttonTable .buttonColumn {
    width: 20px;
}

form.dataFilter {
    margin-bottom: 5px;
}

    form.dataFilter div {
        display: inline-block;
        margin-right: 5px;
        margin-bottom: 5px;
    }

img.warn {
    vertical-align: middle;
    float: right;
}

tr.warn, td.warn {
    background-color: #fec764 !important;
}

tr.alert, td.alert {
    background-color: #fb7f7f !important;
}

tr.ok, td.ok {
    background-color: #7ce17c !important;
}

span.alert {
    font-size: 1.5em;
    font-weight: bold;
    color: #d00;
    float: right;
}

.hidden {
    display: none !important;
}

img.info {
    vertical-align: middle;
    float: left;
}
