
@import "customer.css";


/*Main layout-------------------------------------*/

.mainGrid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: auto;
}

#mainAreaFrame {
    margin-top: 0px;
    margin-left: 240px;
}

#toolName {
    margin-top: 20px;
    margin-left: 16px;
    position: fixed; /* Fixed Sidebar (stay in place on scroll) */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    overflow-x: hidden; /* Disable horizontal scroll */
}

#sideBar {
    position: fixed;
    float: left;
    top: 0px;
    width: 240px;
    height: 100%;
    background-color: var(--sideBar-background-color);
    background-image: var(--sideBar-logo);
}

    #sideBar .list-btn {
        font-family: var(--sideBar-font);
        font-size: var(--sideBar-font-size);
        color: var(--sideBar-text-color);
    }

        #sideBar .list-btn:hover {
            color: var(--sideBar-text-hover-color);
        }

    #sideBar .list-sub-btn {
        font-family: var(--sideBar-font-sub);
        font-size: var(--sideBar-font-size-sub);
        color: var(--sideBar-text-color-sub);
    }

    #sideBar .list-btn:hover {
        color: var(--sideBar-text-hover-color);
    }


.navigation {
    margin-top: 195px;
    margin-left: var(--sideBar-margin-left);
    height: calc(100vh - 220px);
    ; /* Full-height: remove this if you want "auto" height */
    width: 200px; /* Set the width of the sidebar */
    position: fixed; /* Fixed Sidebar (stay in place on scroll) */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    overflow-x: hidden; /* Disable horizontal scroll */
    overflow-y: auto; /* Disable horizontal scroll */
    padding-top: 20px;
}

    .navigation .brandName {
        margin-top: 10px;
        text-decoration: none;
        font-size: 15px;
        color: #afc4df;
        display: block;
        border: none;
        background: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
        outline: none;
    }

    .navigation a, .dropdown-btn {
        font-family: var(--sideBar-font);
        margin-top: 20px;
        margin-left: 10px;
        text-decoration: none;
        font-size: 18px;
        color: var(--sideBar-text-color);
        display: block;
        border: none;
        background: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
        outline: none;
    }

        .navigation a:hover, .dropdown-btn:hover {
            color: var(--sideBar-text-hover-color);
        }

.menuSelected {
    color: white;
}

.selectedNavItem {
    color: var(--sideBar-text-selected-color-sub) !important;
}


.searchBar {
    position: fixed;
    left: 25px;
    top: 160px;
    display: block;
    width: 240px;
    height: 50px;
}

    .searchBar input {
        outline: none;
        margin-top: 5px;
        width: 198px;
        height: 25px;
        background-color: #041934;
        color: #7f94af;
        border: 0px solid #7f94af;
        border-bottom: 1px solid #7f94af;
        font-size: 14px;
        font-weight: 400;
        padding-left: 0px;
    }


/* Main content */
.main {
    margin-left: 10px; /* Same as the width of the sidenav */
    font-size: 10px; /* Increased text to enable scrolling */
    padding: 0px 10px;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
    display: none;
    padding-left: 20px;
    width: 180px;
}

    .dropdown-container a {
        margin-top: 0px;
        font-size: 14px;
    }

.confirmationDialog {
    display: block;
    color: #f00;
    font-size: 10pt;
    z-index: 1;
    position: fixed;
    top: 50px;
    right: 30px;
    width: 400px;
    height: 50px;
    padding-top: 8px;
    padding-left: 10px;
    overflow-y: auto;
    background-color: #fefefe;
    border: 1px solid #eee;
    animation-name: confirmationDialogFrames;
    animation-duration: 6s;
    animation-delay: 3s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    opacity: 1.0;
}

@keyframes confirmationDialogFrames {
    0% {
        right: -400px;
        visibility: visible;
        opacity: 1.0;
    }

    5% {
        right: 30px;
        visibility: visible;
        opacity: 1.0;
    }

    100% {
        right: 30px;
        visibility: hidden;
        opacity: 0.0;
    }
}
/* 
#breadCrumbContainer {
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: auto 250px 80px 50px;
    height: 30px;
    background-color: var(--breadcrumb-background-color);
    color: var(--breadcrumb-text-color);
    width: 100%;
    padding-left: 20px;
    padding-top: 11px;
    text-decoration: none;
} */

.breadCrumbBox {
    position: fixed;
    top: 0px;
    left: 240px;
    width: 100%;
    padding-left: 200px;
    background-color: var(--breadcrumb-background-color);
    height: 45px;
    text-decoration: none;
    font-family: var(--breadcrumb-font);
    color: var(--breadcrumb-text-color);
    font-size: var(--breadcrumb-font-size);
    text-decoration-color: var(--breadcrumb-text-color);
    z-index: 1000000000000000000000;
}

.breadCrumbBoxRight {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 40%;
    overflow: hidden;
    background-color: var(--breadcrumb-background-color);
    max-height: 45px;
    text-decoration: none;
    color: var(--breadcrumb-text-color);
    text-decoration-color: var(--breadCrumb-text-color);
    z-index: 1000000000000000000000;
}

.breadCrumbBox tr td {
    padding-left: 20px;
    border: 1px none #333;
}


.breadCrumbBoxRight tr td {
    padding-top: 3px;
    padding-left: 0px;
    border: 1px none #333;
}

    .breadCrumbBoxRight tr td a {
        color: var(--breadcrumb-text-color);
    }

        .breadCrumbBoxRight tr td a:hover {
            color: var(--breadcrumb-text-hover-color);
        }



.breadcrumb-text a {
    vertical-align: top;
    color: var(--breadcrumb-text-color);
    font-weight: 500;
}

    .breadcrumb-text a:hover {
        color: var(--breadcrumb-text-hover-color);
        cursor: pointer;
    }

.errorMessage {
    color: red;
    margin-bottom: 20px;
}

#actionBar {
    height: 40px;
    width: 100%;
    padding-left: 0px;
    padding-top: 2px;
    padding-right: 3px;
    margin-right: 20px;
    margin-bottom: 30px;
}

.inActionBar {
    float: left;
}


/*special gadgets----------------------------------*/
.searchGadgetGrid {
    display: grid;
    width: 100%;
    grid-template-columns: 320px 77px 134px auto 900px;
}

.legende {
    padding-top: 8px;
    margin-left: 50px;
    margin-right: 20px;
    display: grid;
    grid-template-rows: 30px;
    grid-template-columns: 21px 64px 22px 69px 26px 45px 26px 44px 26px 107px 25px 85px 26px 85px 26px 117px 26px 82px;
    height: 35px;
    color: #555;
    height: 20px;
    text-decoration: none;
}

    .legende span {
        font-size: 8pt;
        margin-top: 3px;
        padding-right: 10px;
    }

    .legende img {
        width: 19px;
        height: 19px;
    }

        .legende img .aBitLarger {
            width: 24px;
            height: 24px;
        }


.actionButton {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
    float: left;
    margin-left: 5px;
    text-decoration: none;
    background-color: var(--primary-button-background);
    color: var(--primary-button-text);
    font-weight: 100;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid var(--primary-button-border-color);
    padding: 0.375rem 0.75rem;
    font-size: 11pt;
    font-family: var(--primary-button-font);
    text-transform: var(--primary-Button-Uppercase);
    font-weight: 600;
    line-height: 1.5;
    cursor: pointer;
}

    .actionButton:hover {
        background-color: var(--primary-button-text-hover);
        color: black;
        text-decoration: none;
    }

.mainAreaContent {
    max-width: 80%;
    margin-left: 50px;
    margin-top: 10px;
    padding-top: 50px;
    padding-bottom: 50px;
    border-style: none;
}

.systemDetail {
    width: 1580px;
}

    .systemDetail td {
        vertical-align: top;
    }

    .systemDetail .leftCell {
        width: 800px;
        padding-left: 0px;
    }

    .systemDetail .rightCell {
        width: 600px;
        padding-left: 0px;
    }

.pageIndex {
    width: 80px;
    padding-left: 5px;
    margin-right: 5px;
}

.overviewChart {
    display: block;
    width: 250px;
    height: 175px;
}

/* general HTML
-------------------------------------------------- */

/* SCROLLBARS */

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #041934;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--effect-background-color);
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: var(--effect-text-hover-color);
    }

/* SCROLLBARS END */

html {
    width: auto;
    height: 100%;
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: auto;
}

body {
    /* Margin bottom by footer height */
    width: auto;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--primary-font), sans-serif;
    font-weight: 400;
    font-size: var(--primary-FontSize);
    line-height: 1.5;
    color: var(--primary-text-color);
    text-align: left;
    background-color: var(--primary-background-color);
    max-width: 100%;
}




table {
    width: 97%;
    padding-left: 20px;
    border-collapse: collapse;
    font-family: var(--table-font);
    font-size: var(--table-FontSize);
    padding: 0px;
}

tr {
    border: solid;
    border-width: 0px 0;
    line-height: 28px;
    padding: 0px;
    margin: 0px;
    text-align: left;
}


.table th,
.table td {
    padding-left: 10px;
    vertical-align: middle;
    text-align: left;
    border: solid;
    border-width: 0px;
    color: var(--primary-text-color);
}

.table th {
    text-transform: var(--table-head-upperCase);
}

.systemMonitoring td:nth-last-child(-n+3) {
    vertical-align: middle;
    text-align: center;
    padding-left: 0px;
}

.systemMonitoring th:nth-last-child(-n+3) {
    text-align: center;
    padding-left: 0px;
    vertical-align: middle;
}

.table img {
    display: block;
    margin: 0 auto;
}



.table thead th {
    vertical-align: bottom;
    /*position: sticky;*/
    top: 0;
}

.table tbody + tbody {
    border-top: 2px solid #dee2e6;
}

.table .table {
    background-color: #fff;
    position: relative;
}

.table tbody tr {
    border-top: 1px solid #ddd;
    cursor: pointer;
}

    .table tbody tr:hover {
        background-color: #f8fbff;
        cursor: pointer;
    }

tbody th {
    line-height: 10px;
    padding-top: 0px;
    padding-bottom: 10px;
    font-weight: 700;
}

table.center {
    margin: auto;
    width: 200px;
    border: none;
    padding: 10px;
}

    table.center tr td {
        border: none;
        width: 50px;
        text-align: center;
    }


.fixed_header thead tr {
    display: block;
}

.fixed_header tbody {
    display: block;
    overflow-y: auto;
    height: 800px;
    width: 100%;
}

.fixed_header th, .fixed_header td {
    padding: 5px;
    text-align: left;
}


p {
    padding-bottom: 5px;
}

a {
    text-decoration: none;
}


.systemMonitoring a {
    color: var(--primary-text-color);
    ;
}

    .systemMonitoring a:visited {
        color: var(--primary-text-color);
        ;
    }


button {
    display: inline-block;
    border: none;
    padding: 1rem 2rem;
    margin: 0;
    text-decoration: none;
    background: #0069ed;
    color: #ffffff;
    font-family: var(--fontNormal);
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
}

    button:hover,
    button:focus {
        background: #0053ba;
    }

    button:focus {
        outline: 1px solid #fff;
        outline-offset: -4px;
    }

    button:active {
        transform: scale(0.99);
    }

.icon {
    width: 32px;
    height: 32px;
}

.overViewWidget {
    border: 0px solid #3fa243;
    color: #fff;
}

.widgetGreen {
    background-color: #4CAF50;
}

.widgetOrange {
    background-color: #FF5722;
}

.widgetRed {
    background-color: #F44336;
}


/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border-bottom: 1px solid #7f94af;
    -webkit-text-fill-color: #7f94af;
    transition: background-color 5000s ease-in-out 0s;
}


/* helpers-------------------------------*/


.rightHanded {
    text-align: right;
}

.rightBound {
    float: right;
}

.leftBound {
    float: left;
}

.topMost {
    vertical-align: top;
}

.fullWidth {
    width: 100%;
}

.blackLink {
    color: var(--primary-text-color);
    ;
}

.text-danger {
    color: red;
}

.invisible {
    display: none;
}

.centerContent {
    align-content: center;
}

.height25 {
    height: 25px;
}

.height200 {
    height: 200px;
}



.minHeight300 {
    height: 300px;
}


.width720 {
    width: 720px;
}

.width160 {
    width: 160px;
}

.width250 {
    width: 250px;
}

.width300 {
    width: 300px;
}

.width500 {
    width: 500px;
}

.width550 {
    width: 550px;
}

.width760 {
    width: 760px;
}


minWidth370 {
    min-width: 370px;
}

.width80 {
    width: 80px;
}

.halfscreen {
    width: 47%;
}

.halfTable {
    max-width: 800px;
    min-width: 500px;
}



/**Overview page gadgets*/

#overviewTable {
    max-width: 600px;
}

.backgroundField {
    background-color: #fff;
    padding: 15px;
    margin: 9px;
    border-radius: 10px;
}

.overviewGadget {
    display: inline-block;
    width: 250px;
    height: 200px;
    border-style: solid;
    border-width: 1px;
    border-color: var(--primary-text-color);
    padding: 20px;
    margin: 9px;
    border-radius: var(--overview-gadget-corner-radius);
    background-color: var(--breadcrumb-background-color);
    /* -webkit-font-smoothing: antialiased; */
    color: var(--primary-text-hover-color);
    /* box-shadow: 0 0 1px transparent; */
}

    .overviewGadget.tiny {
        width: 200px;
        padding: 5px 10px 20px;
        height: 60px;
        text-align: center;
        margin-left: 0px;
        margin-bottom: 10px;
    }

    .overviewGadget.small {
        height: 100px;
        text-align: center;
    }

    .overviewGadget.big {
        height: 262px;
    }

.fontsize.small {
    font-size: 8pt;
    font-family: var(--fontNormal);
}

.fontsize.medium {
    font-family: var(--fontNormal);
    font-size: 13pt;
    opacity: 0.7;
    filter: alpha(opacity=70);
}


.fontsize.tall {
    font-family: var(--fontHeadline);
    font-size: 23pt;
    opacity: 0.7;
    filter: alpha(opacity=70);
}

.fontsize.big {
    font-family: var(--fontHeadline);
    font-size: 33pt;
    color: #041934;
    font-weight: 700;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.widget {
    width: 100%;
    display: block;
    border-bottom: 2px solid #E6E9ED;
    text-align: left;
    margin-bottom: 15px;
    margin-top: -15px;
    /* font-weight: 300; */
    font-size: 10pt;
}

    .widget.small {
        margin-bottom: 0px;
        margin-top: 0px;
    }

.widget2 {
    width: 100%;
    display: block;
    border-top: 2px solid #E6E9ED;
    text-align: left;
    /* margin-bottom: 15px; */
    margin-top: 0px;
    /* font-weight: 300; */
    font-size: 10pt;
}


.sub33 {
    margin-top: 3px;
    width: 32.5%;
    display: block;
    float: left;
    text-align: center;
    /* opacity: 0.7; */
    /* filter: alpha(opacity=70); */
}

.systemDetailTable th {
    text-align: left;
}

.dropdownDatafieldButton {
    display: block;
    width: 495px;
    height: 30px;
    margin-top: 00px;
    padding-top: 0px;
    padding-left: 30px;
    padding-bottom: 0px;
    font-size: 12pt;
    font-weight: bold;
    cursor: pointer;
    background-image: url("/assets/baseline-add-24px.svg");
    background-position: top left;
    background-repeat: no-repeat; /* Do not repeat the image */
}

.dropdownDatafield {
    display: none;
    margin-top: 10px;
}

    .dropdownDatafield th {
        text-align: left;
    }

/* Add an active class to the active dropdown button */
.active {
    background-image: url("/assets/baseline-remove-24px.svg");
    background-position: top left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
}

.thumbsUp {
    background-image: url("/assets/baseline-thumb_up_alt-24px.svg");
    background-position: top left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
}

.timeBox {
    width: 77px;
    height: 18px;
    padding-left: 7px;
    border: 1px solid #C2C2C2;
    box-shadow: 1px 1px 4px #EBEBEB;
    -moz-box-shadow: 1px 1px 4px #EBEBEB;
    -webkit-box-shadow: 1px 1px 4px #EBEBEB;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    padding: 7px;
    outline: none;
}



/*Custom Checkbox*/
.checkBoxContainer {
    display: block;
    position: relative;
    padding-bottom: 0px;
    padding-left: 20px;
    margin-bottom: 0px;
    margin-top: 5px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .checkBoxContainer input {
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: var(--checkmark-color);
}

.checkBoxContainer:hover input ~ .checkmark {
    background-color: var(--checkmark-hover-color);
    ;
}

.checkBoxContainer input:checked ~ .checkmark {
    background-color: var(--primary-text-color);
    ;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkBoxContainer input:checked ~ .checkmark:after {
    display: block;
}

.checkBoxContainer .checkmark:after {
    left: 8px;
    top: 3px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* Form Fields------------------------------------*/




.FormFields {
}

    .FormFields input.input-field, .select-field {
        font-family: var(--inputField-font);
        font-size: var(--inputField-font-size);
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        border: 1px solid #C2C2C2;
        box-shadow: 1px 1px 4px #EBEBEB;
        -moz-box-shadow: 1px 1px 4px #EBEBEB;
        -webkit-box-shadow: 1px 1px 4px #EBEBEB;
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        padding: 7px;
        outline: none;
        width: 320px;
        height: 35px;
        margin-bottom: 10px;
    }

    .FormFields table {
        line-height: inherit;
        text-align: left;
        border-collapse: separate;
        border-spacing: 15px 5px;
    }

        /*    .FormFields tr td:nth-child(2n-1) {
        font-size: var(--inputField-description-font-size);
    }*/

        .FormFields table td {
            height: 35px;
            padding: 1px;
            vertical-align: top;
        }

    .FormFields table td {
        height: 35px;
        padding: 1px;
        vertical-align: top;
    }

    .FormFields table tr td:nth-child(2) {
        text-align: right;
        height: 35px;
    }

    .FormFields table tr td:nth-child(3) {
        text-align: right;
        height: 35px;
    }


option:checked {
    background: lavender;
}
/* 
    Modal Dialogs----------------------------------------------*/


/* Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: var(--modal-background-color);
    margin: 200px auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 550px;
}


.smallModal-content {
    background-color: var(--modal-background-color);
    margin: 200px auto; /* 15% from the top and centered */
    min-height: 120px;
    padding: 20px;
    border: 1px solid #888;
    width: 300px; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.closeModal .closeDeleteModal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus,
.closeDeleteModal:hover,
.closeDeleteModal:focus {
    color: var(--primary-text-color);
    ;
    text-decoration: none;
    cursor: pointer;
}

.interactiveDisabled {
    pointer-events: none;
    opacity: 0.4;
}

.interactiveDisabledExtended {
    pointer-events: none;
    opacity: 0.4;
}

.icon {
    width: 24px;
    height: 24px;
}

/* -------------------------------------------------- */



.fixedPageTableHeaderInlay {
    height: 30px;
}

.fixedPageTableCellFirst {
    width: 300px;
}

.fixedPageTableCellSecond {
    width: 300px;
}

.headlineTD {
    height: 50px;
    font-weight: bold;
    vertical-align: bottom;
}

/* -------------------------------------------------- */
