﻿/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 4 version
*/

.module {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 10px;
    margin: 0 0 50px 0;
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    position: relative;
}

.module-without-header .module-body {
    border-radius: 10px;
}

.module-header {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 20px 35px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 10px 10px 0 0;
    background: var(--color2);
}

    .module-header:only-child {
        border-radius: 10px;
    }

.module-header-text {
    width: 100%;
    margin: 0;
    position: relative;
}

    .module-header-text > h2 {
        margin: 0;
    }

    .module-header-text > p {
        font-weight: 400;
        font-style: italic;
        margin: 20px 0 0 0;
    }

        .module-header-text > p:only-child {
            margin: 0;
        }

.module-header-options {
    margin: 0 0 0 20px;
}

    .module-header-options > a[onclick="moduleDropdown(this)"] {
        display: none;
    }

    .module-header-options > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

.module-body {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 20px 35px;
    border-radius: 0 0 10px 10px;
    background: var(--color1);
}

.module-header-options i {
    color: #111;
    font-size: 25px;
}

.module-header-logo {
    height: 50px;
}

.module-header-text > .module-header-nextEachother {
    display: block;
    float: left;
    position: relative;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    margin: 0;
}

    .module-header-text > .module-header-nextEachother:not(:first-child) {
        margin: 0 0 0 20px;
    }

.module-header-alignRight {
    position: absolute;
    right: 0;
    top: 0;
}
/* -------------------- Forms -------------------- */
/* --------------- Groep 1 --------------- */
.module-form-group-1 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 10px 0;
}

    .module-form-group-1 > .module-form-label {
        min-width: 150px;
        width: 20%;
        margin: 0;
        font-weight: 600;
    }

    .module-form-group-1 > .module-form-input {
        width: 80%;
        margin: 0;
    }

        .module-form-group-1 > .module-form-input > input {
            width: 100%;
            margin: 0;
            border-radius: 10px;
            border: none;
            background: rgba(255, 255, 255, 1);
            padding: 5px 15px;
        }

            .module-form-group-1 > .module-form-input > input[disabled="disabled"] {
                background: rgba(255, 255, 255, 0.7);
                cursor: not-allowed;
            }

        .module-form-group-1 > .module-form-input > .input-form {
            width: 100%;
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            float: unset;
            padding: 0 0 0 15px;
        }

/* --------------- Groep 2 --------------- */

.module-form-group-2 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    margin: 0 0 15px 0;
}

    .module-form-group-2.module-form-checkbox {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: unset;
        flex-flow: unset;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .module-form-group-2 > .module-form-label {
        min-width: 150px;
        width: 100%;
        font-weight: 600;
        margin: 0 0 5px 0px;
    }

    .module-form-group-2.module-form-checkbox > .module-form-label {
        margin: 0;
    }

    .module-form-group-2 > .module-form-input {
        width: calc(100% + 30px);
        margin: 0;
        position: relative;
        left: -15px;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }

    .module-form-group-2.module-form-checkbox > .module-form-input {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

    .module-form-group-2 > .module-form-input > input, .module-form-group-2 > .module-form-input > select {
        width: 100%;
        margin: 0;
        border-radius: 10px;
        border: none;
        background: rgba(255, 255, 255, 1);
        padding: 5px 15px;
        -webkit-box-shadow: inset 0px 0px 0px 2px var(--color3);
        box-shadow: inset 0px 0px 0px 2px var(--color3);
    }

        .module-form-group-2 > .module-form-input > input[type="checkbox"] {
            width: -webkit-fit-content;
            width: -moz-fit-content;
            width: fit-content;
            margin-left: 15px;
        }

    .module-form-group-2 > .module-form-input > textarea {
        width: 100%;
        margin: 0;
        border-radius: 10px;
        border: none;
        background: rgba(255, 255, 255, 1);
        padding: 5px 15px;
    }

    .module-form-group-2 > .module-form-input > .radio {
        margin: 0 0 0 15px;
    }

    .module-form-group-2 > .module-form-input > input[disabled="disabled"] {
        background: rgba(255, 255, 255, 0.7);
        cursor: not-allowed;
        -webkit-box-shadow: inset 0px 0px 0px 2px var(--color3);
        box-shadow: inset 0px 0px 0px 2px var(--color3);
    }

.module-form-input > input[required]:not(:valid),
.module-form-input > input[aria-invalid="true"],
.module-form-input > select[aria-invalid="true"],
.module-form-input > textarea[aria-invalid="true"] {
    border: 1px solid #bb4b47 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.module-form-input > select[required] {
    border: 1px solid #bb4b47 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.module-form-input > textarea[required] {
    border: 1px solid #bb4b47 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.module-form-input > select > option {
    color: #111;
}

    .module-form-input > select > option:disabled {
        color: rgba(0, 0, 0, 0.3);
    }

.module-form-group-2 > .module-form-input > span {
    margin: 0 15px 0 20px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 35px;
    border-radius: 10px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

    .module-form-group-2 > .module-form-input > span > a {
        margin: 0;
        padding: 0;
    }

    .module-form-group-2 > .module-form-input > span i {
        color: #FFF;
        font-size: 14px;
    }

    .module-form-group-2 > .module-form-input > span.password-score, .module-form-group-2 > .module-form-input > span.password-verdict {
        display: none;
    }

/* --------------- Groep 3 --------------- */

.module-form-group-3 {
    width: calc(50% - 10px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    margin: 0;
    border: 5px solid var(--color3);
    border-radius: 10px;
    background: #FFF;
    text-align: center;
    padding: 15px;
    color: #111;
    font-weight: 600;
}

    .module-form-group-3:hover {
        color: unset;
        -webkit-filter: brightness(0.9);
        filter: brightness(0.9);
    }
/* --------------- Already existing form 1 --------------- */
.input-group .input-group-text {
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    color: unset;
    border: none;
}

.input-group {
    background: none;
}

.panel:not(.module) {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.module-form-row-flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 60px;
    -moz-column-gap: 60px;
    column-gap: 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 30px 0 0 0;
}

    .module-form-row-flow:first-of-type {
        margin: 0;
    }

    .module-form-row-flow > .module-form-group-2 {
        width: calc(25% - 45px);
    }

        .module-form-row-flow > .module-form-group-2 > .module-form-input > span {
            margin: 0 0 0 20px;
        }

    .module-form-row-flow > .col-1, .module-form-row-flow > .col-2, .module-form-row-flow > .col-3, .module-form-row-flow > .col-4, .module-form-row-flow > .col-5, .module-form-row-flow > .col-6, .module-form-row-flow > .col-7, .module-form-row-flow > .col-8, .module-form-row-flow > .col-9, .module-form-row-flow > .col-10, .module-form-row-flow > .col-11, .module-form-row-flow > .col-12 {
        /*padding: 0 30px;*/
        padding-right: unset;
        padding-left: unset;
    }

    .module-form-row-flow > .col-1 {
        max-width: calc(8.33333% - 55px);
    }

    .module-form-row-flow > .col-2 {
        max-width: calc(16.666667% - 50px);
    }

    .module-form-row-flow > .col-3 {
        max-width: calc(25% - 45px);
    }

    .module-form-row-flow > .col-4 {
        max-width: calc(33.333333% - 40px);
    }

    .module-form-row-flow > .col-5 {
        max-width: calc(41.666667% - 35px);
    }

    .module-form-row-flow > .col-6 {
        max-width: calc(50% - 30px);
    }

    .module-form-row-flow > .col-7 {
        max-width: calc(58.333333% - 25px);
    }

    .module-form-row-flow > .col-8 {
        max-width: calc(66.666667% - 20px);
    }

    .module-form-row-flow > .col-9 {
        max-width: calc(75% - 15px);
    }

    .module-form-row-flow > .col-10 {
        max-width: calc(83.333333% - 10px);
    }

    .module-form-row-flow > .col-11 {
        max-width: calc(91.666667% - 5px);
    }

    .module-form-row-flow > .col-12 {
        max-width: calc(100%);
    }



table > tbody > tr > td > input[type="number"] {
    /*width: 100%;*/
    margin: 0;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 1);
    padding: 5px 15px;
}

table > tbody > tr > td span.input-group-btn {
    margin: 0 0 0 20px;
    padding: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 35px;
    height: 31px;
    border-radius: 10px;
}

    table > tbody > tr > td span.input-group-btn > a {
        padding: 0;
        margin: 0;
    }

/* -------------------- Datepicker -------------------- */

.module-content-datePicker {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
}

    .module-content-datePicker .datePicker-dayOptions {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        /*display: flex;*/
    }

        .module-content-datePicker .datePicker-dayOptions .datePicker-dayOption-btn {
            padding: 15px;
            background: var(--color2);
            color: #FFFFFF;
            margin-bottom: 15px;
            border-radius: 10px;
            text-align: left;
            cursor: pointer;
        }

            .module-content-datePicker .datePicker-dayOptions .datePicker-dayOption-btn.selected {
                border: 5px solid #4c5667;
            }

    .module-content-datePicker .datePicker-dayOptions-content-container {
        width: 100%;
        /*display: flex;*/
    }

    .module-content-datePicker .datePicker-dayOptions-content {
        display: none;
        grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
        gap: 20px;
    }

        .module-content-datePicker .datePicker-dayOptions-content.visible {
            display: -ms-grid;
            display: grid;
        }

        .module-content-datePicker .datePicker-dayOptions-content .datePicker-dayOptions-content-hourOption {
            margin: 0;
            padding: 0;
        }

            .module-content-datePicker .datePicker-dayOptions-content .datePicker-dayOptions-content-hourOption label {
                margin: 0;
            }

                .module-content-datePicker .datePicker-dayOptions-content .datePicker-dayOptions-content-hourOption label.disabled {
                    opacity: 0.4;
                }

/* -------------------- Dropdown options -------------------- */
.module-dropdown {
    display: none;
    min-width: 150px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    top: 71px;
    right: 0;
    background: var(--color1);
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    padding: 0;
    border-radius: 10px;
}

    .module-dropdown > ul, .row-dropdown > ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .module-dropdown > ul > li, .row-dropdown > ul > li {
            margin: 0;
            padding: 0;
        }

            .module-dropdown > ul > li:first-child, .row-dropdown > ul > li:first-child {
                /*border-top-left-radius: 10px;
            border-top-right-radius: 10px;*/
                margin-top: 10px;
            }

            .module-dropdown > ul > li:last-child, .row-dropdown > ul > li:last-child {
                /*border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;*/
                margin-bottom: 10px;
            }

            .module-dropdown > ul > li:hover, .row-dropdown > ul > li:hover {
                background: var(--color2);
            }

            .module-dropdown > ul > li > a, .row-dropdown > ul > li > a {
                color: unset;
                font-weight: 700;
                width: 100%;
                height: 100%;
                display: block;
                padding: 10px 20px;
            }

.row-dropdown {
    display: none;
    min-width: 150px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    /*top: 40px;*/
    right: 0;
    background: var(--color1);
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    padding: 0;
    border-radius: 10px;
    -webkit-transform: translate(0, 11px);
    -ms-transform: translate(0, 11px);
    transform: translate(0, 11px);
    z-index: 100;
}

td > a {
    color: unset;
}

.visible-item {
    display: block;
}

.DTFC_LeftWrapper > .DTFC_LeftBodyWrapper > .DTFC_LeftBodyLiner > table > thead {
    display: none;
}

.dataTables_scroll > .dataTables_scrollHead > .dataTables_scrollHeadInner > table > thead > tr:only-child > th:only-child,
.dataTables_scroll > .dataTables_scrollBody > table > tbody > tr > td:only-child,
.DTFC_LeftWrapper > .DTFC_LeftHeadWrapper > table > thead > tr:only-child > th:only-child,
.DTFC_LeftWrapper > .DTFC_LeftBodyWrapper > .DTFC_LeftBodyLiner > table > tbody > tr > td:only-child {
    border-radius: 10px;
}

/* -------------------- Responsive -------------------- */
@media only screen and (max-width: 2300px) {
    .module-form-row-flow > .module-form-group-2 {
        width: calc(25% - 45px);
    }
}

@media only screen and (max-width: 1920px) {
    .module-form-row-flow > .module-form-group-2 {
        width: calc(33% - 37px);
    }
}

@media only screen and (max-width: 1440px) {
    .module-form-row-flow > .module-form-group-2 {
        width: calc(50% - 30px);
    }
}

@media only screen and (max-width: 991px) {
    .module-header {
        padding: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        row-gap: 15px;
    }

    .module-header-text > h2 {
        text-align: center;
    }

    .module-header-options {
        margin: 0;
        width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        row-gap: 15px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .module-header-options .module-header-search {
            margin: 0;
            width: 100%;
        }

    #options-FullWebServicePointsGrid {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .module-body {
        padding: 20px;
    }
}

@media only screen and (max-width: 860px) {
    .module-form-row-flow > .module-form-group-2 {
        width: 100%;
    }

        .module-form-row-flow > .module-form-group-2 > .module-form-input > span {
            margin: 0 15px 0 20px;
        }

    .module-content-datePicker {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
        flex-flow: column wrap;
    }
}
