﻿@import url("font.css");

/* ----------------------------------------- */
/* --------------- Site Frame -------------- */
/* ----------------------------------------- */
html {
    font-family: 'Arial', 'Century Gothic';
    font-size: 0.875em;
    overflow: hidden;
}

body {
    width: 100%;
    font-family: 'Arial', 'Century Gothic';
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

#wrapper {
    width: 100%;
    min-height: 100%;
    position: relative;
}

#main-container {
}

header {
    width: 100%;
    height: 26px;
    background: #ff862b;
    border-bottom: 1px solid #bbb;
}

footer {
    width: 100%;
    background: #333333;
    z-index: 10;
}

/* ----------------------------------------- */
/* ----------- Header Components ----------- */
/* ----------------------------------------- */
#header-container {
    height: 26px;
    width: 100%;
}

#header-container .header-left {
    width: 205px;
}

#header-container .header-center {
    text-align: center;
}

#header-container .header-right {
    width: 210px;
}

#header-container .header-right:last-child {
    width: 10px;
    padding-right: 20px;
}

#header-container .header-left .title-tab-content {
    width: 60px;
    height: 18px;
    margin-left: 10px;
    text-align: center;
    font-size: 10pt;
    font-family: 'Arial';
    font-weight: 600;
    color: #ff862b;
    background: #FBFBFB;
    margin-top: 18px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

#header-container .header-center .system-title {
    margin: 0 auto;
}

#header-container .header-center .logo-content {
    display: table-cell;
    height: 26px;
    padding-top: 2px;
    vertical-align: middle;
}

#header-container .header-center .logo {
    background-image: url("../ImgLib/headers/neptrix_logo.png");
    background-repeat: no-repeat;
    width: 21px;
    height: 14px;
    display: inline-block;
}

#header-container .header-center .logo:hover {
    background-image: url("../ImgLib/headers/neptrix_logo_hover.png");
}

#header-container .header-center .title-content {
    display: table-cell;
    height: 26px;
    padding-left: 10px;
    font-family: 'Arial';
    font-size: 10pt;
    font-weight: 600;
    color: #FFFFFF;
    vertical-align: middle;
}

#header-container .header-right .search-panel {
    display: inline-block;
    /*height: 36px;*/
}

#header-container .header-right .search-panel input[type=text] {
    /*height: 24px;*/
    width: 200px;
    padding: 2px 5px;
    margin-top: 1px;
    color: #555555;
    font-family: 'Arial';
    font-size: 12px;
    background: #FFFFFF;
    border-radius: 2px;
    border: 1px solid #999999;
}

#header-container .header-right .search-panel input[type=text]:focus {
    outline: none;
}

#header-container .header-right:last-child .user-panel {
    display: inline-block;
    margin-left: 10px;
    /*margin-top: 5px;*/
    height: 18px;
}

#header-container .header-right:last-child .user-panel .dropdown {
    font-size: 14pt;
    color: #FFFFFF;
    height: 10px;
    border: 0;
    cursor: pointer;
}

#header-container .header-right:last-child .user-panel .dropdown-menu {
    left: -145px;
}

/* ----------------------------------------- */
/* ----------- Content Components ---------- */
/* ----------------------------------------- */

#content-main-body {
    width: 100%;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
#content-container {
    /*margin-top: -2px;*/
}

#main-content {
    width: 100%;
    min-height: 100%;
}

/* ------- Sidebar ------- */
#main-content #sidebar {
    width: 205px;
    height: 100%;
    background: #F5F5F5;
}

#main-content #sidebar .sidebar-top-panel {
    display: table;
    width: 205px;
    /*height: 77px;*/
    background: #FBFBFB;
    border-bottom: 1px solid #BBBBBB;
    border-right: 1px solid #BBBBBB;
    padding: 12px 10px;
}

#main-content #sidebar .sidebar-menu {
    padding-top: 5px;
    background: #FBFBFB;
    border-right: 1px solid #BBBBBB;
    overflow-y: auto;
}

#main-content #sidebar ul {
}

#main-content #sidebar ul li {
}

#main-content #sidebar ul li .menu-icon {
    float: left;
    position: absolute;
    top: 5px;
    left: 5px;
}

#main-content #sidebar ul li .menu-link {
    font-family: 'Arial';
    font-size: 11px;
    font-weight: 400;
    text-decoration: none;
    color: #000;
    display: block;
    line-height: 22px;
    height: 22px;
    padding: 0 30px;
    padding-right: 5px;
    position: relative;
    cursor: pointer;
}

#main-content #sidebar ul li .menu-link:hover,
#main-content #sidebar ul li .menu-link.current {
    color: #ff862b;
}

#main-content #sidebar ul li .menu-link.expanded {
    padding-bottom: 0;
    cursor: default;
    /*pointer-events: none;*/
}

#main-content #sidebar ul li .subMenu,
#main-content #sidebar ul li .firstLevelMenu {
    /*margin-left: 25px;*/
    /*margin-bottom: 10px;*/
    cursor: pointer;
}

#main-content #sidebar ul li .subMenu a::before,
#main-content #sidebar ul li .firstLevelMenu a::before {
    /*content: "+ ";*/
    padding-right: 2px;
}

#main-content #sidebar ul li .subMenu a,
#main-content #sidebar ul li .firstLevelMenu a {
    font-family: 'Arial';
    font-size: 11px;
    text-decoration: none;
    color: #000;
    display: block;
}

#main-content #sidebar ul li .subMenu li,
#main-content #sidebar ul li .firstLevelMenu li {
    padding-left: 15px;
    /*height: 22px;*/
    line-height: 22px;
}

#main-content #sidebar ul li .subMenu a:hover,
#main-content #sidebar ul li .subMenu a.current,
#main-content #sidebar ul li .subMenu li:hover,
#main-content #sidebar ul li .firstLevelMenu a:hover,
#main-content #sidebar ul li .firstLevelMenu a.current,
#main-content #sidebar ul li .firstLevelMenu li:hover {
    color: #ff862b;
}

#main-content #sidebar ul li:first-child .menu-link.current,
#main-content #sidebar ul li .subMenu > li.activeSub,
#main-content #sidebar ul li .firstLevelMenu > li.activeSub {
    color: #f76a00;
    background-color: #eeeee0;
    border-top: 1px solid #ccccd0;
    border-bottom: 1px solid #ccccd0;
}
#main-content #sidebar ul li .menu-link:hover,
#main-content #sidebar ul li .subMenu li:hover,
#main-content #sidebar ul li .firstLevelMenu li:hover {
    color: #f76a00;
    background: linear-gradient( #f5f5f0, #f3f3f0, #f5f5f0);
}
#main-content #sidebar ul li .subMenu.expand,
#main-content #sidebar ul li .firstLevelMenu.expand {
    display: block;
    margin-bottom: 5px;
}

#main-content #sidebar ul li .subMenu.collapse,
#main-content #sidebar ul li .firstLevelMenu.collapse {
    display: none;
}


/* ------- Content ------- */
#main-content #content {
    width: 1100px;
    vertical-align: top;
    border-right: 1px solid #CCCCCC;
    -webkit-overflow-scrolling: touch;
    background-color: rgb(249,250,252);
    /*background-image: url(../imgLib/bg.png);*/
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center right;
}

#main-content #content #content-top-panel {
    width: 100%;
    /*height: 76px;*/
    background: #FBFBFB;
    border-bottom: 1px solid #BBBBBB;
}

#main-content #content #content-top-panel #button-container {
    /*height: 76px;*/
    vertical-align: middle;
}

#main-content #content #content-top-panel #logo-container {
    border-left: 1px solid #BBBBBB;
    vertical-align: middle;
    background: #FFFFFF;
}

#main-content #content #content-top-panel #logo-container .logo-panel {
    width: 200px;
}

#main-content #content #content-top-panel #logo-container .logo-panel .system-logo {
    /*background: url(../imgLib/THM_PLASTIC_LOGO_SMALL.png);*/
    background-repeat: no-repeat;
    margin: 0 auto;
}

#main-content #content #content-top-panel #misc-container {
    /*height: 70px;*/
    padding: 3px 0;
    vertical-align: middle;
}

#main-content #content #content-top-panel #misc-container #misc-panel {
    /*border-left: 1px solid #CCCCCC;
    border-right: 1px solid #BBBBBB;*/
}

#main-content #content #content-top-panel #misc-container #misc-panel .filter-panel {
    height: 60px;
    padding-left: 10px;
    vertical-align: middle;
}

#main-content .page-notification {
    width: 100%;
    height: 20px;
    padding: 0 5px 0 5px;
    background: #FBFBFB;
    color: #333333;
    font-size: 10pt;
    font-weight: bold;
    font-family: 'Arial';
    border-bottom: 1px solid #BBBBBB;
    text-transform: uppercase;
}

#main-content .page-notification.edit-mode {
    background-color: rgba(184, 223, 249, 1);
}

#main-content .page-notification.insert-mode {
    background-color: rgba(207, 245, 241, 1);
}

#main-content .page-notification.dangerous-mode {
    background-color: rgba(255, 234, 234, 1);
}

#main-content .page-notification .breadcrumb {
    display: inline-block;
    width: 49%;
    padding: 0;
    margin-bottom: 0;
    background: transparent;
    border-radius: 0;
}

#main-content .page-notification .toolbar {
    display: inline-block;
    width: 50%;
    text-align: right;
}

/* ------- Content Panel ------- */
#main-content #content-panel {
    border-right: 1px solid #e0e0e0;
    vertical-align: top;
    background-color: #f9fafc;
}

#main-content #content-panel .side-panel-content {
    display: none;
}

#main-content #content-panel .title {
    font-family: 'Arial';
    font-size: 8pt;
    color: #333333;
    height: 20px;
    /*padding: 2px 10px;*/
    padding: 0px 0px;
    background: #DDD;
    border: 1px solid #BBBBBB;
}

#main-content #content-panel ul {
    list-style: none;
    margin-bottom: 0;
}

#main-content #content-panel ul li {
    display: block;
    background: #F5F5F5;
    border-bottom: 1px solid #e4e4e4;
}

#main-content #content-panel ul li a {
    display: block;
    color: #333333;
    padding: 5px;
    text-decoration: none;
}

#main-content #content-panel ul li:hover,
#main-content #content-panel ul li .current {
    background: #b0bfcb;
}

#main-content #content-panel ul li a .link-title {
    font-family: 'Arial';
    font-size: 7.5pt;
}

#main-content #content-panel ul li a .link-content {
    font-family: 'Arial';
    font-size: 8pt;
}

.panel-closed {
    display: none;
}

.panel-open {
    display: block;
}

/* ------- Page Content ------- */
#main-content #content #content-main-body {
}

#main-content #content #content-main-body .page-content {
    width: 975px;
    overflow: auto;
    /*padding: 10px 7px;*/
    /*margin: 0 auto;*/
    vertical-align: top;
    padding: 10px;
}

/* ------- Addon Panel ------- */
#main-content #addon-panel {
    display: none;
}

#main-content #addon-panel .addon-panel-content {
    padding: 0 10px;
    right: 0;
    position: absolute;
}

.content-header {
    font-family: 'Arial';
    background: #ffffff;
    color: #ff862b;
    font-size: 24px;
    font-weight: 500;
    border-bottom: none;
    width: auto;
    text-transform: uppercase;
}

fieldset {
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    margin-left: 10px;
    padding: 10px;
}

fieldset legend {
    font-family: 'Arial';
    font-size: 9pt;
    font-weight: 600;
    height: 20px;
    margin-left: 10px;
    margin-bottom: 0;
    padding: 0 5px;
    padding-top: 2px;
    border-bottom: 0;
}

.warningNotification {
    margin: 5px 0 10px 0;
    width: 100%;
    height: 30px;
    text-align: center;
    color: #fff;
    background-color: #f00;
    text-transform: uppercase;
    padding-top: 5px;
    font-weight: bold;
}

.reminderNotification {
    margin: 5px 0 10px 0;
    width: 100%;
    height: 30px;
    text-align: left;
    color: #000;
    background-color: #E0E0E0;
    text-transform: uppercase;
    padding-top: 5px;
    padding-left: 10px;
    font-weight: bold;
}

/* Search code/id */
.tblCode {
    border-radius: 3px;
    border: 1px solid #CCCCCC;
    border-collapse: separate;
    /*width: 920px;*/
    width: 100%;
    height: 150px;
    /*padding-top: 15px;*/
    background: #FFFFFF;
}

.tblCode .textbox {
    border-radius: 3px;
    /*width: 700px;*/
    width: 100%;
    height: 50px;
    font-size: 24px;
    /*margin-top: 20px;*/
    /*margin-left: 20px;*/
    padding: 0 10px;
    color: #666666;
}

.tblCode .textbox:focus {
    /*width: 700px;*/
    width: 100%;
    height: 50px;
    font-size: 24px;
    color: #666666;
    padding: 0 10px;
}

.tblCode a {
    margin-left: 10px;
    padding: 13px 65px;
    /*background: linear-gradient(#F5F5F5, #E5E5E5);*/
    border: 1px solid #DDDDDD;
    border-radius: 3px;
    font-size: 16px;
    text-decoration: none;
    /*color: #333333;*/
    font-weight: 600;
}

/*.tblCode a:hover {
    background: linear-gradient(#E5E5E5, #E5E5E5);
    text-decoration: none;
    color: #666666;
}*/

/* Summary */
.tbl-rptSummary {
    font-weight: 500;
    border-collapse: separate;
    border-radius: 3px;
    margin-bottom: 10px;
}

.tblrptSummaryLabel {
    vertical-align: middle !important;
    /*height: 28px;*/
    font-weight: 800;
    color: #666;
    font-size: 10pt;
    padding: 5px 10px;
}

.rptSummary-title {
    background-color: #F9F9F9;
    padding: 3px 10px 0;
}

/* BI (Report) Menu */
.tblContentLabel.menu-header-title,
.tblContentLabel.subReportMenu {
    padding: 10px !important;
    border-bottom: 1px solid #ccc;
    font-size: 12px;
    font-weight: 800;
    color: #666;
    vertical-align: middle !important;
}

.menu-header-title {
    background-color: #EBEBEB;
}

.tbl-main.tblSelectionMenu {
    border-radius: 5px;
    border: 0;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.32),0 2px 5px 0 rgba(0,0,0,0.12) !important;
}

.fa-file-alt {
    font-size: 16px;
}

.reportMenu td:hover {
    color: #f76a00;
    background: linear-gradient(#f5f5f0, #f3f3f0, #f5f5f0);
    cursor: pointer;
}

.reportMenu:last-child td:hover {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.subReportMenu .submenu-container div {
    display: table-cell;
}

.icon-summary > img {
    height: 32px;
    width: 32px;
}

.canvas-chart {
    background-color: #fff;
    padding: 10px 30px 30px;
}

/* ----------------------------------------- */
/* ----------- Footer Components ----------- */
/* ----------------------------------------- */
footer {
    position: fixed;
    bottom: 0;
}

#footer-container {
    height: 26px;
    width: 100%;
    display: table;
    padding: 0 13px;
    z-index: 10;
    position: relative;
}

#footer-container .left .neptrix-logo {
    display: inline-block;
    background-image: url("../imgLib/infohub_footer_logo.png");
    background-repeat: no-repeat;
    width: 60px;
    height: 12px;
    background-size: 100% 100%;
    /*padding-top: 10px;*/
}

#footer-container .left .footer-info {
    font-size: 7pt;
    color: #FFFFFF;
    display: inline-block;
    /*padding-left: 20px;*/
    vertical-align: middle;
}
#lblVersion, #lblLicensed {
    text-transform: uppercase;
}

/* ----------------------------------------- */
/* --------- User Panel Components --------- */
/* ----------------------------------------- */
.user-info {
    display: table-cell;
    font-size: 8pt;
    font-family: 'Arial';
    padding-left: 5px;
    vertical-align: top;
}

.user-info .username {
    font-size: 11pt;
    font-weight: 600;
}

.user-photo {
    display: table-cell;
    vertical-align: top;
}

.user-photo .avatar {
    width: 50px;
    height: 50px;
    border: 1px solid #BBBBBB;
    border-radius: 25px;
    border-collapse: separate;
}


/* ----------------------------------------- */
/* ----------- Responsive Screen ----------- */
/* ----------------------------------------- */


/* ----------------------------------------- */
/* ------------------ Misc ----------------- */
/* ----------------------------------------- */
.table-div {
    display: table;
}

.table-row-div {
    display: table-row;
}

.table-cell-div {
    display: table-cell;
    vertical-align: top;
}

.table-caption-div {
    display: table-caption;
}

.table-group-div {
    display: table-row-group;
}

.none {
    display: none !important;
}

/*hr{
    border: 0;
    height: 1px;
    background: #333;
    background-image: -webkit-linear-gradient(left, #ccc, #333, #ccc); 
    background-image: -moz-linear-gradient(left, #ccc, #333, #ccc); 
    background-image: -ms-linear-gradient(left, #ccc, #333, #ccc); 
    background-image: -o-linear-gradient(left, #ccc, #333, #ccc); 
}*/

.critical-notification {
    margin-top: 20px;
    background: #ffd0d0;
    font-size: 12pt;
    font-family: 'Arial';
    font-weight: bold;
    color: #ff0000;
    border: 1px solid #ff0000;
    border-radius: 5px;
    border-collapse: initial;
}

.medium-notification {
    margin-top: 20px;
    background: #fff0c0;
    font-size: 12pt;
    font-family: 'Arial';
    font-weight: bold;
    color: #bf3900;
    border: 1px solid #bf3900;
    border-radius: 5px;
    border-collapse: initial;
}

.low-notification {
    margin-top: 20px;
    background: #DBF5CC;
    font-size: 12pt;
    font-family: 'Arial';
    font-weight: bold;
    color: #20381C;
    border: 1px solid #20381C;
    border-radius: 5px;
    border-collapse: initial;
}

.validationSummary {
    padding: 5px 15px 0px 10px;
    font-size: 12pt;
    font-family: 'Arial';
    color: #ff0000;
    background: #ffe0e0;
    border: 1px solid #ff3434;
    border-radius: 5px;
    border-collapse: initial;
}

.overlay {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    height: 92%;
}

.scrollable {
    overflow: auto;
}

/* License */
.license-notification {
    height: 30px;
    padding: 3px 20px;
    background: #FF0000;
    color: #FFFFFF;
    text-transform: uppercase;
}

.license-info {
    display: inline-block;
    vertical-align: middle;
}

.license-tool {
    display: inline-block;
    position: absolute;
    right: 20px;
}

.license-tool input[type=file] {
    display: none;
}

.license-tool .custom-uploader {
    width: 100%;
    border: 1px solid #AAAAAA;
    border-radius: 3px;
    color: #555555;
    text-align: center;
    display: inline-block;
    padding: 0 15px;
    cursor: pointer;
    background: linear-gradient(#F1F1F1, #E1E1E1);
    transition: all 0.5s;
}

.license-tool .custom-uploader .upload-icon {
    display: inline-block;
    font-family: FontAwesome;
}

.license-tool .custom-uploader .upload-icon:before {
    content: "\f0ee";
}

/* Auto fill */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}

.date-button a {
    background: linear-gradient(#FFFFFF, #E6E6E6);
    font-size: 16px;
    color: #333333;
    font-weight: 600;
    text-decoration: none;
    padding: 2px 11px;
    text-shadow: 0 1px 1px rgba(255,255,255,0.75);
    box-shadow: rgba(0,0,0,0.5) 0px 0px 2px;
    border-color: rgba(0,0,0,0.5);
    border-radius: 4px;
    cursor: pointer;
}

.date-button a:hover {
    background: #E6E6E6;
}

/* Icon and Full Screen  */
.tick {
    background: url("../imgLib/tick.png");
    width: 14px;
    height: 14px;
    display: inline-block;
    background-repeat: no-repeat;
}

.cross {
    background: url("../imgLib/cross.png");
    width: 14px;
    height: 14px;
    display: inline-block;
}

.loading-layer {
    background: linear-gradient(rgba(205, 205, 205, 0.75), rgba(225, 225, 225, 0.75));
    width: 100%;
    z-index: 1;
    position: absolute;
    text-align: center;
}

.loading-icon {
    position: relative;
    top: 45%;
}

.spinner-color {
    color: #007aff;
}

.loading-text {
    padding-left: 40px;
    margin-top: -80px;
    position: absolute;
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
}

#lblPageMode {
    font-style: italic;
    margin-left: 10px;
}

#lnkHelp {
    cursor: pointer;
}

.filter-separator {
    padding-right: 7px;
    border-right: 1px solid #CCCCCC;
}

.invalid-control {
    background: #ffe0e0 !important;
    border: 1px solid #d24444;
}

.tooltip.invalid-control {
    background: transparent;
    border: none;
}

#notificationArea {
    position: absolute;
    width: 0px;
    min-height: 70px;
    max-height: 200px;
    right: 30px;
    top: 10px;
}

.notification-content {
    position: relative;
}

.blink {
    animation: blinker 0.5s step-start infinite;
}

.blink a {
    color: #f00;
}

.blink a:hover,
.blink a:focus {
    text-decoration: none;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}