﻿:root {
    --primary-background-color: #F7F7F7;
    --primary-text-color: #000;
    --primary-text-hover-color: #000;
    --secondary-background-color: #fafbfd;
    --secondary-text-color: #4f5054;
    --secondary-text-hover-color: #888;
    --effect-background-color: #001d3d;
    --effect-text-color: #ff0;
    --effect-text-hover-color: #aa0;
    --primary-button-background: #001d3d;
    --primary-button-text: #ff0;
    --primary-button-text-hover: #fff;
    --secondary-button-border-color: #000;
    --secondary-button-background: #ff0;
    --secondary-button-text: #000;
    --secondary-button-text-hover: #f0f;
    --font-size-large: 20px;
    --font-size-big: 18px;
    --font-size-extended: 15px;
    --font-size: 12pt;
    --font-size-reduced: 9pt;
}

/* css definitions*/

h1 {
    font-size: 20px;
    margin-bottom: 25px;
}


.forceCenter {
    text-align: center !important;
}

/*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;
    z-index: 1;
    top: 0;
    left: 0;
    overflow-x: hidden;
}

#sideBar {
    position: fixed;
    float: left;
    top: 0px;
    width: 240px;
    height: 100%;
    background-color: #041934;
}

.navigation {
    margin-top: 195px;
    margin-left: 40px;
    height: calc(100vh - 220px);
    ;
    width: 200px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    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 {
    margin-top: 20px;
    margin-left: 10px;
    text-decoration: none;
    font-size: 18px;
    color: #7f94af;
    display: block;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.navigation a:hover,
.dropdown-btn:hover {
    color: #f1f1f1;
}

.menuSelected {
    color: white;
}


.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;
    font-size: 10px;
    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-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: #dae9fe;
    color: #555;
    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: #dae9fe;
    height: 45px;
    text-decoration: none;
    text-decoration-color: #000;
    z-index: 1000000000000000000000;
}

.breadCrumbBoxRight {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 40%;
    overflow: hidden;
    background-color: #dae9fe;
    max-height: 45px;
    text-decoration: none;
    text-decoration-color: #000;
    z-index: 1000000000000000000000;
}

.breadCrumbBox tr td {
    padding-left: 20px;
    border: 1px none #333;
}

.breadCrumbBox tr td a {
    color: #555;
}

.breadCrumbBox tr td a:hover {
    color: #000;
}

.breadCrumbBoxRight tr td {
    padding-top: 3px;
    padding-left: 0px;
    border: 1px none #333;
}

.breadCrumbBoxRight tr td a {
    color: #041934;
}

.breadCrumbBoxRight tr td a:hover {
    color: #345964;
}



.breadcrumb-text {
    vertical-align: top;
    font-size: 10pt;
    color: #041934;
    font-weight: 500;
}

.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%;
    height: 100%;
    grid-template-rows: 100%;
    grid-template-columns: 320px 77px 180px auto 900px;
}

.legende {
    padding-top: 8px;
    margin-left: 50px;
    margin-right: 20px;
    display: grid;
    grid-template-rows: 30px;
    grid-template-columns: 22px 62px 22px 67px 26px 44px 26px 44px 26px 107px 25px 98px 26px 90px 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 {
    float: left;
    text-decoration: none;
    background-color: #e5f0ff;
    margin-left: 5px;
    color: #041934;
    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 #ddd;
    padding: 0.375rem 0.75rem;
    font-size: 11pt;
    line-height: 1.5;
    cursor: pointer;
}

.actionButton:hover {
    background-color: #f0f6ff;
    color: black;
    text-decoration: none;
}

.killLeftHandMargin {
    margin-left: 0px !important;
}


.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;
}

.chart-wrapper {
    width: 225px;
    height: 225px;
}

/* general HTML
-------------------------------------------------- */

/* SCROLLBARS */

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #041934;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #7fa4bf;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #afc4df;
}

/* 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: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: var(--primary-background-color);
    max-width: 100%;
}




table {
    width: 97%;
    padding-left: 20px;
    border-collapse: collapse;
    font-size: 11pt;
    padding: 0px;
}

tr {
    border: solid;
    border-width: 0px 0;
    line-height: 28px;
    padding: 0px;
    margin: 0px;
    text-align: left;
}


.table th,
.table td {
    vertical-align: middle;
    text-align: left;
    border: solid;
    border-width: 0px;
    color: #041934;
}

.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;
    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;
}

.w40 {
    width: 40px;
}

p {
    padding-bottom: 5px;
}

a {
    text-decoration: none;
}


.systemMonitoring a {
    color: black;
}

.systemMonitoring a:visited {
    color: black;
}


button {
    display: inline-block;
    border: none;
    padding: 1rem 2rem;
    margin: 0;
    text-decoration: none;
    background: #0069ed;
    color: #ffffff;
    font-family: sans-serif;
    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: #000;
}

.text-danger {
    color: red;
}

.invisible {
    display: none;
}

.centerContent {
    align-content: center;
}

.height25 {
    height: 25px !important;
}

.height15 {
    height: 15px !important;
}


.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;
}

.valignMiddle {
    vertical-align: middle;
}


/**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: #ddd;
    padding: 15px;
    margin: 9px;
    border-radius: 10px;
    background-color: #fff;
    color: #7f94af;
}

.overviewGadget.tiny {
    width: 200px;
    padding: 3px;
    height: 60px;
    text-align: center;
    margin-left: 0px;
    margin-bottom: 10px;
}

.overviewGadget.small {
    height: 100px;
    text-align: center;
}

.overviewGadget.big {
    height: 250px;
}

.fontsize.small {
    font-size: 8pt;
}

.fontsize.medium {
    font-size: 13pt;
    opacity: 0.7;
    filter: alpha(opacity=70);
}


.fontsize.tall {
    font-size: 23pt;
    opacity: 0.7;
    filter: alpha(opacity=70);
}

.fontsize.big {
    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-size: 10pt;
}

.widget.small {
    margin-bottom: 0px;
    margin-top: 0px;
}

.widget2 {
    width: 100%;
    display: block;
    border-top: 2px solid #E6E9ED;
    text-align: left;
    margin-top: 0px;
    font-size: 10pt;
}


.sub33 {
    margin-top: 3px;
    width: 32.5%;
    display: block;
    float: left;
    text-align: center;
}

.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;
}

.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");
    /* Center the image */
    background-position: top left;
    background-repeat: no-repeat;
}

.thumbsUp {
    background-image: url("/assets/baseline-thumb_up_alt-24px.svg");
    background-position: top left;
    /* Center the image */
    background-repeat: no-repeat;
}

.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: #dae9fe;
}

.checkBoxContainer:hover input~.checkmark {
    background-color: #c1d0e4;
}

.checkBoxContainer input:checked~.checkmark {
    background-color: #041934;
}

.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 {
    padding: 00px;
    font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
}

.FormFields input.input-field,
.select-field {
    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;
}

.FormFields table {
    line-height: inherit;
    text-align: left;
    width: 100%;
}

.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;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content/Box */
.modal-content {
    background-color: #fdfeff;
    margin: 200px auto;
    padding: 20px;
    padding-top: 30px;
    border: 1px solid #888;
    max-width: 800px;
    width: 80%;
}


.smallModal-content {
    background-color: #fdfeff;
    margin: 200px auto;
    height: 100px;
    padding: 20px;
    border: 1px solid #888;
    max-width: 500px;
    width: 80%;
}

/* The Close Button */
.closeModal .closeDeleteModal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus,
.closeDeleteModal:hover,
.closeDeleteModal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.interactiveDisabled {
    pointer-events: none;
    opacity: 0.4;
}

.hideVerifyingModulesModal {
    display: none;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: -1
}

.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;

}

/* -------Custom Table styles------------------------------------ */

.policytable {
    width: 500px;
    margin-bottom: 20px;
}

.policytable tr:nth-child(1) th {
    width: 10px;
}

.policytable tr:nth-child(1) th:nth-child(2) {
    width: 90%;
    text-align: left;
}

.policytable tr {
    line-height: 22px;
}


/* ------------------------------------------- */

.policyDetailtable {
    width: 500px;
    margin-bottom: 5px;
}

.policyDetailtable tr:nth-child(1) td {
    width: 10px;
}

.policyDetailtable tr:nth-child(1) td:nth-child(2) {
    width: 90%;
    text-align: left;
}

.policyDetailtable tr {
    line-height: 22px;
}

/* -------------------------------------------------- */


.policyDetailHeadtable {
    width: 500px;
    margin-bottom: 00px;
}

.policyDetailHeadtable tr:nth-child(1) td:nth-child(1) {
    width: 200px;
}

.policyDetailHeadtable tr:nth-child(1) td:nth-child(2) {
    width: 70%;
    text-align: left;
}

.policyDetailHeadtable tr {
    line-height: 22px;
}




/* -------------------------------------------------- */

.clientAppsTable {
    width: auto;
    margin-bottom: 20px;
}

.clientAppsTable tr th:nth-child(1) {
    width: auto;
    padding-right: 20px;
}

.clientAppsTable .checkBoxContainer {
    display: inline;
}

.clientAppsTable th:nth-child(2) {
    width: 100px;
    text-align: center;
    padding-bottom: 4px;
}

.clientAppsTable td:nth-child(2) {
    width: 100px;
    text-align: center;
    padding-bottom: 4px;
}

.clientAppsTable th:nth-child(3) {
    width: 100px;
    text-align: center;
    padding-bottom: 4px;
}

.clientAppsTable td:nth-child(3) {
    width: 100px;
    text-align: center;
    padding-bottom: 4px;
}


.clientAppsTable tr {
    line-height: 22px;
}


/* -------------------------------------------------- */
.streamingDetailTable {
    width: auto;
    margin-bottom: 20px;
}

.streamingDetailTable td:nth-child(1) {
    width: auto;
    padding-right: 30px;
}

/* -------------------------------------------------- */

.streamingDetailTable input {
    border-radius: 4px;
    height: 30px;
    width: 500px;
    border: 1px solid #e0e0e0;
    margin-bottom: 5px;
    padding-left: 10px;
}

/*Verify laoding progress */

/* Title text */
.modal-title {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.2rem;
}

/* Message text */
.modal-message {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Animated dots */
.dots::after {
    content: '';
    display: inline-block;
    width: 1ch;
    text-align: left;
    animation: dots 1s steps(3, end) infinite;
}

@keyframes dots {
    0% {
        content: '';
    }

    33% {
        content: '.';
    }

    66% {
        content: '..';
    }

    100% {
        content: '...';
    }
}
