body {
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--main-font-color);
    min-width: 1000px;
}
h1,h2,h3,h4 {}
h1{}
h2{}
h3{}
h4{}
p{}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}

hr {
    border-color: var(--border-light);
    border-style: solid;
    border-width: 1px 0 0 0;
}

.section {
    width: calc(100% - 20px);
    padding: 10px 10px;
}

a.ui-button.action-btn {
    border-width: 1;
    border-color: var(--action-color-dark);
    background: var(--action-color);
    color: var(--action-color-dark);
    border-radius: 3px;
}
a.ui-button.action-btn:hover {
    background: var(--action-color-light);
}

a.ui-button.action-btn.red {
    background: var(--bg-light);
    border-color: var(--action-color-dark);
}
a.ui-button.action-btn.red:hover {
    background: #d00;
    color: #fff;
}

a.ui-button.action-btn.gray {
    background: var(--bg-light);
}
a.ui-button.action-btn.gray:hover {
    background: var(--action-color-light);
}

#job-save-submit-btn.ui-button.action-btn.gray:hover {
    background: var(--bg-dark);
}

#proddb-warning {
    /* width: 100%; */
    padding: 25px;
    background: #c00;
    color: #fff;
    text-align: center;
    font-size: 18px;
}
#proddb-warning a {
    color: #fff;
    text-decoration: underline;
}


#logger-edit-enable,
#logger-edit-set-datetime-to-t0,
#logger-edit-restore-datetime,
#logger-edit-cancel-datetime{
    font-size: 16px;
}

.logger-edit-btn {
    padding-left: 10px;
}

input[type="datetime-local"] {
    font-size: 18px; 
    width: 240px;
}

input[type="datetime-local"]:invalid {
    outline: 2px solid rgb(189, 0, 0);
}

/* Header */
#jobs-right-column #header {
    background: var(--brand-color-light);
    background: #fff;
    -border-bottom: 7px solid var(--brand-color-light);
    line-height: 40px;
    background: var(--bg-light);
}

#header.nav-less {
    background: var(--bg-light);
    padding-top: 50px;
    display: none;
}

#header .section, #header .section .row {
    overflow: visible; /*main nav dropdown overflows*/
}
#header.section {
    width: calc(100% - 20px);
}

#jobs-section #logo {
    width: 100%;
    display: inline-block;
    text-align: center;
    line-height: 0;
    font-size: 0;
    padding: 10px 0;
    background: var(--bg-logo-dark);
}
#jobs-section #logo img {
    height: 80px;
}
#header #logo {
    display: none;
    text-align: center;
}
#header #logo img {
    height: 100px;
}

#user-page-wrap #logo {
    display: block;
    text-align: center;
    padding-bottom: 50px;
}
#user-page-wrap #logo img {
    height: 100px;
}

#user-header {
    display: none;
    float: right;
    font-size: 12px;
    color: #444;
    padding-right: 10px;
}
#user-header a {
    color: #444;
    -text-decoration: underline;
}
#user-header #username-btn {
    font-style: italic;
}
#user-header a:hover {
    text-decoration: underline;
}
#jobs-right-column #user-header {
    display: block;
}


#user-page-wrap {
    padding: 20px;
    background: var(--bg-light);
    min-height: 500px;
}
#user-page {
    background: #fff;
    border: 1px solid var(--border-light);
    width: 800px;
    padding: 20px;
    margin: 0 auto;
}
#user-page a:not(.action-btn) {
    color: var(--action-color);
}
#user-page h1 {
    margin: 0;
    font-weight: normal;
    font-size: 22px;
}
#user-page h2 {
    background: var(--bg-super-light);
    border: 1px solid var(--border-light);
    font-weight: normal;
    padding: 20px;
}
#user-page h2 p {
    font-weight: normal;
}
#user-page h2 p span {
    display: block;
    padding: 15px 0;
    font-weight: bold;
}
#user-page h3 {
    font-size: 16px;
    font-weight: normal;
}
#user-page .formItem {
    padding: 10px 5px;
    text-align: left;
}
#user-page .formItem.stripped {
    padding: 0 5px;    
}
#user-page .formItem label {
    font-size: 12px;
}
#user-page .formItem label:after {
    content: '';
}
#user-page .formItem.error label {
    color: #f00;
}
#user-page .formItem.error input {
    border-color: #f00;
    background: #fee;
}
#user-page .formItem input {
    text-align: left;
    padding: 8px;
}
#user-password-example.formItem .formItemExample {
    font-size: 0.7em;
    font-style: italic;
    padding: 3px 0 0 5px;
    
}
#user-password-example {
    clear: both;
}
#user-page #user-password-example {
    padding: 0 3px 10px;
}
#user-page p {
    font-size: 14px;
}
#cancel-btn {
    display: none;
}
#user-page .cancel-btn {
    display: block;
    color: var(--action-color);
    font-size: 1em;
    text-decoration: underline;
    -text-align: left;
    padding: 20px 0;
    float: right;
}


/* User Start */
#user-page.login {
    background: #fff;
    margin: 30px auto;
    padding: 50px;
    width: 701px;
    overflow: auto;
}
#user-page.login h3 {
    font-size: 22px;
    margin: 0;
}

#login-box {
    padding-right: 50px;
    width: 300px;
    border-right: 1px solid var(--border-light);
    float: left;
}

#login-form {
}
#login-form .formItem {
    padding: 10px 0 0;
}
#login-form label {
    font-size: 12px;
}
#login-form label:after {
    content: '';
}
#login-form #un {
    width: 280px;
}
#login-form #pw {
    width: 280px;
}
#login-form #login-btn {
    display: block;
    float: left;
    margin-top: 22px;
}
#login-form #forgot-btn {
    display: block;
    float: right;
    color: var(--action-color);
    font-size: 12px;
    text-decoration: underline;
    padding: 12px 8px 0 30px;
}


#signup-box {
    text-align: center;
    padding-left: 50px;
    padding-top: 50px;
    width: 300px;
    float: left;
}
#signup-box #signup-btn {
    margin-top: 20px;
}

#user-page.create-account {
    width: 400px;
    text-align: center;
}

#submit-user #email {
    width: 371px;
}
#submit-user #formItem-firstName,
#submit-user #formItem-lastName {
    float: left;
}
#submit-user #firstName,
#submit-user #lastName {
    width: 172px;
}
#submit-user #mobileNumber {
    width: 263px;
}
#submit-user.user-account-edit-form #formItem-mobile .formItem {
    padding-right: 9px;
}
#submit-user.user-account-edit-form #formItem-mobileNumber.formItem {
    padding-right: 0px;
}
#submit-user #countryCode {
    padding: 8px 4px;
}
#submit-user #number-test-btn {
    display: none;
}
#submit-user #formItem-password,
#submit-user #formItem-confirm {
    float: left;
}
#submit-user #password,
#submit-user #confirm {
    width: 172px;
}
#submit-user #formItem-agreeTo label {
    display: inline-block;
}
#submit-user #formItem-agreeTo .formItemInput {
    float: left;
    padding-right: 10px;
}
#submit-user #submit-user-btn {
    margin: 20px auto;
    width: 140px;
}


#user-page.password-reset {
    width: 500px;
    -text-align: center;
}
#user-page.password-reset #formItem-email {
}
#user-page.password-reset #email {
    width: 300px;
}
#user-page.password-reset .formItem {
    padding: 10px 0;
}
#user-page.password-reset .action-btn {
    float: left;
    margin: 10px 15px 0 0;
}


/* Forgot Password and Create Account */
.user-step {
    display: none;
    overflow: auto;
}
.user-step.active {
    display: block;
}

.user-step .error-message {
    display: none;
    padding: 20px;
    background: #faa;
    color: #f00;
}
.user-step .error-message.visible {
    display: block;
}


form .formItem #loggerId,
form .formItem #deviceId {
    font-family: "Courier New";
    text-transform: uppercase;
}



/* Main Nav */
#menu-nav {
    display: inline-block;
    vertical-align: top;
}

/* juvo-ui-menu */
.juvo-ui-menu > ul {
    list-style-type: none;
    text-align: center;
    padding: 0;
    margin: 0;
}
.juvo-ui-menu > ul li {
    display: inline-block;
    position: relative;
}
.juvo-ui-menu > ul > li > a {   
    padding: 0px 20px;
    line-height: 35px;
    display: block;
    text-decoration: none;
    color: #ddd;
}
.juvo-ui-menu > ul > li > a.juvo-state-hover {
    color: #fff;
    background: #ddd;
}
.juvo-ui-menu > ul > li.juvo-menu-has-submenu > a {
    background-image: url(/images/menu-down.png); 
    background-position: right 10px center; 
    background-repeat: no-repeat;
    padding-right: 30px;
}
/* Submenu */
.juvo-ui-menu ul ul {
    position: absolute;
    z-index: 1000;
    background: #ddd;
    list-style-type: none;
    text-align: left;
    padding: 0px;
    margin: 0px;
    min-width: 220px;
}
.juvo-ui-menu ul ul > li {
    display: block;
}
.juvo-ui-menu ul ul > li > a {
    line-height: 30px;
    color: #fff;
    display: block;
    padding-left: 20px;
}
.juvo-ui-menu ul ul > li > a.juvo-state-hover {
    background: #ccc;
    text-decoration: none;
}
.juvo-ui-menu > ul > li > a.active {
    background-color: #ddd;
    color: #fff;
}
.juvo-ui-menu ul ul > li > a.active {
    background-color: #ccc;
    color: #fff;
}

/* Home Body */
.min-height {
    min-height: 500px;
}

/* Subpage */
#menu-nav-side ul > li {
    display: block;
}
#menu-nav-side ul > li > a {
    padding: 0px;
}
#menu-nav-side ul > li > a.juvo-state-hover {
    background: #ddd;
    color: #fff;
}
#menu-nav-side ul > li > a.active {
    background: #ddd;
}

/* Footer */
#footer {
    background: #ccc;
    min-height: 120px;
    clear: both;
}
#footer #social-links {
    margin-top: 20px;
    text-align: center;
    cursor: default;
}
#footer #social-links a {
    display: inline-block;
    height: 30px;
    margin: 0px 15px;
}
#footer #social-links a img {
    height: 100%;
}

/* Bottom Credits */
#bottom-credits {
    background: #fff;
}
#copyright {
    float: left;
    color: #4A4A4A;
    font-size: 12px;
    line-height: 42px;
}






/* Nav */
.nav-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;    
}
.nav-transition-container {
    position: relative;
    width: 200%;
    overflow: auto;
    transform: translate(0);
    
    transition:
        transform 0s ease-in-out;
}
.nav-transition-container.transition-left {
    transform: translate(-50%);
    transition:
        transform var(--nav-slide) ease-in-out;
}
.nav-transition-container.transition-right {
    left: -100%;
    transform: translate(50%);
    transition:
        left 0s ease-in-out,
        transform var(--nav-slide) ease-in-out;
}
.nav-panel {
    list-style: none;
    padding: 10px 10px;
    margin: 1px 0 0;
    width: calc(50% - 20px);
    float: left;
    display: none;
    opacity: 0;
    transform: translate(0);
    
    position: relative;
    left: 0;
    transition:
        opacity var(--nav-slide) ease-in-out,
        transform var(--nav-slide) ease-in-out;
}
.nav-panel.nav-active {
    display: block;
    opacity: 1;
}
.nav-panel.deactivate-left {
    -transform: translate(-100%);
    opacity: 0;
    _left: -100%;
}
.nav-panel.activate-left {
    -opacity: 1;
    -left: 100%;
    -transform: translate(-100%);
}
.nav-panel li.nav-item:first-of-type {
    -border-top: 1px solid #606060;
    -border-width: 0;
}
.nav-group {
    border-bottom: 1px solid #606060;
    background: #606060;
    padding: 5px 10px;
    margin: 24px -10px 5px;
    position: relative;
}
.nav-group label {
    top: -20px;
    font-size: 11px;
    color: var(--border-medium);
    position: absolute;
    padding: 0 10px;
}

.nav-divider {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 10px 0;
}
.nav-item {
    margin: 0;
    padding: 0;
}
.nav-item-link {
    color: #fff;
    margin-left: var(--jobs-nav-side-margin);
    margin-right: var(--jobs-nav-side-margin);
    padding: 5px 25px 5px 10px;
    display: block;
    cursor: pointer;
    border-radius: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 24px;
    position: relative;
    transition: 
        background 0.2s ease-in-out;
}
.nav-item[permstate="forbidden"] {
    opacity: 0.3;
    cursor: default;
}
.nav-item-link.has-alerts {
    padding-right: 62px;
}
.nav-item:not([permstate="forbidden"]):hover .nav-item-link {
    background: #606060;
    background: #404040;
    background: var(--bg-logo-dark);
}
.nav-item.active .nav-item-link {
    font-weight: bold;
}
.nav-item.active .nav-icon {
    opacity: 1;
}
.nav-back {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-back .nav-item-link {
    -color: var(--border-medium);
    -text-transform: uppercase;
    font-size: 12px; 
    transition:
        color 0.2s ease-in-out;
}
.nav-back .nav-icon {
    transition:
        opacity 0.2s ease-in-out;
}
.nav-back:hover .nav-item-link {
    background: transparent;
    color: #fff;
}
.nav-back:hover .nav-icon {
    opacity: 1;
    -webkit-animation-name: bounce;
    animation-name: bounce;
}
.nav-item-title {
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 10px 0 10px 0;
    padding: 0 10px 0 7px;
    border-left: 3px solid var(--action-color);
    line-height: 30px;
    background: rgba(255,255,255,0.1);
}
.nav-item-link .nav-icon {
    float: left;
    margin: 4px 15px 4px 0;
}
.nav-item-link .nav-icon.nav-next {
    position: absolute;
    right: 10px;
    margin: 4px 0;
}
.nav-item-link .alert-bubble {
    position: absolute;
    right: 28px;
    margin: 4px 0;
    height: 16px;
    border-radius: 8px;
    background: #e00;
    color: #fff;
    font-size: 12px;
    line-height: 16px;
    padding: 0 7px;
    min-width: 3px;
}
.nav-item-link .alert-bubble.snoozed {
    background: #777;
}

.nav-empty-group {
    color: #fff;
    opacity: 0.2;
    font-weight: normal;
    text-align: center;
    padding: 20px 0;
}



.animated {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(5px);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}


#nav-content-container {
    -min-width: 1000px;
}

.nav-content {
    display: none;
    position: relative;
    padding: 0 20px;
}
.nav-content.active {
    display: block;
}
.nav-content h1 {
    font-size: 22px;
    font-weight: normal;
    line-height: 40px;
    margin: 10px 0;
}

.content-form-instructions {
    display: none;
    float: right;
    width: calc(40% - 44px);
    padding: 20px;
    background: var(--bg-super-light);
    font-size: 12px;
    border: 1px solid var(--border-light);
}
.content-form-instructions p {
    margin-top: 0;
}
.content-form {
    border: 1px solid var(--border-light);
    background: #fff;
    padding: 20px;
    border-radius: 3px;
    width: calc(60% - 62px);
    float: left;
}
.content-form .formItem {
    padding: 3px 10px 10px 3px;
}
.content-form .formItem label {
    font-size: 12px;
}
.content-form .formItem-checkbox label {
    margin-top: 3px;
}
.content-form .formItem label:after {
    content: '';
}
.content-form .formItem .formItemInput {
}
.content-form input[type="text"] {
}
.content-form .formItemExample {
    font-size: 0.7em;
    font-style: italic;
    padding-top: 5px;
}
.content-form .formItem.error label {
    color: #f00;
}
.content-form .formItem.error input {
    border-color: #f00;
}
.content-form .formItem select {
    min-width: 150px;
}

.content-form-buttons {
    margin-top: 20px;
    clear: both;
    overflow: auto;
    border-top: 1px solid #ddd;
    padding: 10px;
}

.content-form-buttons .action-btn {
    float: right;
}

#method-notice {
    display: none;
    color: #fff;
    background: #f00;
    padding: 3px 7px;
    margin-left: 20px;
}
.formItemInput #method-notice {
    display: inline-block;
}


.nav-content h1 .nav-icon {
    opacity: 1;
    float: left;
    display: inline-block;
    margin: 9px 8px 0 0;
}

h3.notification-message {
    width: calc(100% - 42px);
    margin: 30px auto;
    padding: 20px;
    font-weight: normal;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    text-align: center;
}
#spacer-box {
    height: 350px;
    width: calc(100% - 40px);
    text-align: center;
    padding: 20px;
}
#space-box a {
}

#jobs-nav.nav-transition-container {
    -padding-bottom: 500px;
}

#jobs-section {
    overflow: auto;
}
#jobs-section.section {
    width: 100%;
    padding: 0 0 50px;
    background: var(--bg-light);
}
#jobs-left-column {
    float: left;
    width: 249px;
    background: var(--bg-dark);    
    min-height: calc(100vh - 55px);
    -border-right: 1px solid var(--border-light);
    padding-bottom: 300px;
}
#jobs-right-column {
    float: left;
    width: calc(100% - 250px);
    padding: 10px;
    padding: 0;
}

#jobs-nav {
    padding: 0;
    margin: 0;
}
#side-banner {
    padding: 30px 10px 10px;
}


#crumb-bar-wrap {
    color: #444;
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
    padding: 11px 20px;
    -border-bottom: 1px solid var(--border-light);
    background: var(--brand-color-light);
    color: #fff;
    color: var(--bg-dark-logo);
    height: 18px;
}
.crumb-bar {
    float: left;
}
.crumb-bar .crumb-sep {
    display: inline-block;
    padding: 0 7px;
    font-weight: normal;
}
.crumb-bar a {
    font-weight: normal;
    color: #444;
    color: #fff;
    color: var(--bg-dark-logo);
    text-decoration: none;
}
.crumb-bar a:hover {
    color: var(--action-color);
    text-decoration: underline;
    color: #fff;
    text-decoration: none;
}
#job-time {
    float: right;
}
#job-time span {
    font-weight: normal;
}


/* Dialogs */
.ui-dialog {
    padding: 0;
    -border: 1px solid var(--border-light);
    -box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
.ui-dialog .ui-dialog-titlebar {
    border-radius: 0;
    background: var(--brand-color-light);
    border-width: 0;
    color: #444;
}

.app-dialog {
    display: none;
    font-family: var(--font-family);
    padding: 20px;
}
.app-dialog .formItem {
    padding-bottom: 10px;
}
.app-dialog .formItem label {
    font-size: 12px;
}
.app-dialog .formItem label:after {
    content: '';
}
.app-dialog .formItem-checkbox {
    overflow: auto;
}
.app-dialog .formItem-checkbox label {
    padding-top: 2px;
    font-weight: bold;
}
.app-dialog .formItem-checkbox .formItemInput {
    float: left;
}
.app-dialog .formItem.error input {
    border-color: #f00;
}
.app-dialog .formItem.error label {
    color: #f00;
}
.app-dialog .formItemExample {
    font-size: 0.7em;
    font-style: italic;
    padding-top: 5px;
}

#job-create-form {
}
#job-create-form .formItem {
    float: left;
}
#job-create-form #formItem-isDstAllowed {
    padding-top: 18px;
    padding-left: 20px;
}

#job-edit-form {
}
#job-edit-form .formItem {
    float: left;
}
#job-edit-form #formItem-isActive {
    padding-top: 15px;
    padding-left: 20px;
}
#job-edit-form #formItem-isDstAllowed {
    padding-top: 18px;
    padding-left: 20px;
}
#job-edit-form #formItem-completedAt {
    padding-bottom: 20px;
}
#job-edit-form #formItem-completedAt .formItemInput {
    float: left;
    margin-right: 10px;
}
#job-edit-form #formItem-completedAt input {
    width: 100px;
}

#job-info {
    overflow: auto;
    clear: both;
    padding: 14px 0;
    margin: 10px 0;
    border-top: 1px solid var(--border-light);
}
#job-info #contractor {
    width: 429px;
}
#job-info #address {
    width: 429px;
}
#job-info #formItem-city,
#job-info #formItem-state,
#job-info #formItem-zipcode {
    float: left;
}
#job-info #city {
    width: 200px;
}
#job-info #state {
    width: 100px;
}
#job-info #zipcode {
    width: 80px;
}
#job-info #formItem-country {
    clear: left;
}
#job-info .formItemExample {
    font-size: 10px;
    font-style: italic;
}

#jobs-invites-list a.jobs-invite-decline {
    color: #c00;
}

p.page-instructions {
    font-size: 12px;
    font-style: italic;
    background: var(--bg-super-light);
    padding: 20px;
}

#job-user-add-btn {
    float: right;
}

.list-filter-wrap.formItem {
    float: right;
}
.list-filter-wrap.formItem label {
    float: left;
    font-size: 12px;
    padding: 12px 10px 0 0;
    display: none;
}
.list-filter-wrap.formItem label:after {
    content: '';
}

input[type='text'].list-filter {
    float: left;
    font-size: 16px;
    padding: 8px;
    width: 300px;
    border-color: var(--border-light);
}
input[type='text'].list-filter::placeholder {
    color: var(--border-light);
}



.list-header {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 12px;
}
.list-group {
    background: #fff;
    border: 1px solid var(--border-light);
    -padding: 10px;
    margin-bottom: 20px;
}
.list-group h3 {
    text-align: center;
    opacity: 0.4;
    font-weight: normal;
}

.list-row {
    overflow: auto;
    clear: both;
    padding: 20px;
}
.list-row.list-header {
    padding: 8px 20px;
}
.list-group .list-row:nth-child(2n) {
    background: var(--bg-super-light);
}
:not(.list-header):not(.no-click).list-row {
    cursor: pointer;
}
:not(.list-header):not(.no-click):not(.list-expandable).list-row:hover {
    background: var(--hover-bg);
}
#job-users-this-user .list-row {
    cursor: auto;
}
#job-users-this-user .list-row:hover {
    background: transparent;
}
.list-row .list-field-group {
    float: left;
}
.list-row .list-field {
    float: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.list-row .list-item-icon {
    margin-right: 20px;
    opacity: 1;
}

.list-row .job-user-email {
    width: 400px;
}
.list-row a.list-field-action {
    float: right;
    margin-right: 20px;
    font-size: 14px;
}
.list-row a.list-field-action:not(.action-btn) {
    color: var(--action-color);
}
.list-row a.list-field-action.default-action {
    display: none;
}
.list-row a.job-user-revoke:not(.action-btn) {
    float: right;
    color: #c00;
}
.list-row .list-field-expand {
    float: right;
    margin-top: 4px;
}
.list-row.device-item .list-field.list-item-icon.error {
    float: right;
    margin-top: 2px;
    display: none;
}
.list-row.device-item.has-error .list-field.list-item-icon.error {
    display: block;
}
.list-row .list-expand-box {
    clear: both;
    display: none;
    padding: 0px;   
    margin-top: 44px;
    border: 1px solid var(--border-light);
    overflow: auto; 
}
.list-group .list-row.list-expandable {
    border-bottom: 1px solid var(--border-light);
    transition:
        background 0.2s ease-in-out;
}
.list-group .list-row.list-expandable.expand {
    background: #fff;
}
.list-row.device-item.station-type .error,
.list-row.device-item.radio-type .error {
    color: #c00;
}

.list-row.expand .list-expand-box {
    display: block;
    background: #fff;    
}
.list-expand-box .list-detail-line {
    overflow: auto;
    font-size: 12px;
    padding: 10px 10px;
}
.list-expand-box dl .list-detail-line:nth-child(2n+1) {
    background: var(--bg-light);
}
.list-expand-box dl {
    margin: 0;
}
.list-expand-box dt {
    clear: left;
    float: left;
    width: 40%;
}
.list-expand-box dd {
    float: left;
    width: 40%;
}
.device-add-btn {
    float: right;
    margin: 5px 20px 0 0;
}
dd.device-item-id {
    font-family: "Courier New";
    text-transform: uppercase;
}

#job-devices-list .list-row .list-field {
    line-height: 24px;
}
.device-item-icon {
    --icon-size: 24px;
    background-image: url(/images/device-icons-24-dark.png);
    background-repeat: no-repeat;
    background-size: calc(6 * var(--icon-size));
    
    width: var(--icon-size);
    height: var(--icon-size);
    display: inline-block;
    margin-right: 16px;
}
.device-item-icon.size-20 {
    --icon-size: 20px;
}
.device-item-icon.size-16 {
    --icon-size: 16px;
}
.device-item[deviceType="logger"] .device-item-icon,
.device-item-icon.logger {
    background-position: 0px 0px;
}
.device-item[deviceType="radio"] .device-item-icon,
.device-item-icon.radio {
    background-position: calc(0px - 1 * var(--icon-size)) 0px;
}
.device-item[deviceType="base-station"] .device-item-icon,
.device-item-icon.base-station {
    background-position: calc(0px - 2 * var(--icon-size)) 0px;
}
.device-item[deviceType="reader"] .device-item-icon,
.device-item-icon.reader {
    background-position: calc(0px - 3 * var(--icon-size)) 0px;
}

.device-item[deviceType="cellular-remote"] .device-item-icon,
.device-item-icon.cellular-remote {
    background-position: calc(0px - 4 * var(--icon-size)) 0px;
}

.device-item-name {
    width: 300px;
}
.list-header .device-item-name {
    width: 340px;
}
.device-item-name span {
    float: left;
    max-width: 268px;
    display: block;
    overflow: hidden;
}
.item-edit-btn {
    float: left;
    padding: 6px 10px;
    opacity: 0.3;
    width: 12px;
    height: 12px;
}
.item-edit-btn .util-icon {
    float: left;
}
.item-edit-btn:hover {
    opacity: 1;
}
#job-devices-list .device-item-remove {
    color: #c00;
}

.device-item .has-error {
    color: #f00;
}
.device-item .device-error-message {
    display: inline-block;
    float: right;
    font-style: italic;
}

.list-group div.device-item-last-report,
.list-group div.device-item-battery,
.list-group div.device-item-signal {
    font-size: 0.7em;
}
.device-item-last-report {
    width: 160px;
}
.device-item-battery {
    width: 130px;
}
.device-item-signal {
    width: 130px;
}

#device-edit-dlg #formItem-name {
    font-size: 20px;
    float: none;
}
#device-edit-dlg #formItem-deviceId {
    font-size: 20px;
    float: none;
    clear: left;
}
#device-edit-dlg #name,
#device-edit-dlg #deviceId {
    width: calc(100% - .3em - 7px);
}




#job-users-this-user .list-field {
    color: #000;
    opacity: 0.2;
}
#job-users-this-user .list-field-action {
    display: none;
}

.list-row.template {
    display: none;
}

#jobs-list {
}
.job-item-name {
    width: 300px;
}

#create-pour-btn {
    float: right;
    margin: 4px 10px;
}
#create-pour-btn[permstate="forbidden"].ui-button {
    background: #ddd;
    color: #f3f3f3;
}
#pours-list {
}
.pour-item-name {
    width: 300px;
}

#jobs-calibrations-list {
}

.jobs-calibration.list-row {
    padding: 20px;
}
.jobs-calibration.list-row.list-header {
    padding: 8px 20px;
}
.jobs-calibration .jobs-cal-name {
    width: 300px;
}
.jobs-calibration .jobs-cal-code {
    width: 140px;
}
.jobs-calibration .jobs-cal-job {
    width: 200px;
}


#jobs-archives-list {
}
.jobs-archive.list-row,
.pour-archive.list-row {
    padding: 20px;
}
.jobs-archive.list-row.list-header,
.pour-archive.list-row.list-header {
    padding: 8px 20px;
}
.pour-item.list-row.list-header,
.pour-archive.list-row.list-header {
    margin-left: 40px;
}
.jobs-archive .jobs-archive-name,
.pour-archive .pour-archive-name {
    width: 300px;
}
.jobs-archive .jobs-archive-date,
.pour-archive .pour-archive-date {
    width: 140px;
}

#logger-assign-types {
    padding: 20px 0;
    overflow: auto;
}
.logger-assign-type {
    float: left;
    cursor: pointer;
}
.logger-assign-type:hover {
    background: var(--hover-bg);
}
.logger-assign-type .formItem-radio {
    overflow: auto;
    padding: 7px 15px 2px;
}
.logger-assign-type .formItem-radio .formItemInput {
    float: left;
}
.logger-assign-type .formItem-radio input {
    margin: 0 10px 10px 0;
}
.logger-assign-type .formItem-radio label {
    float: left;
}
.logger-assign-select {
    display: none;
}
.logger-assign-select.visible {
    display: block;
}


.logger-summary {
    overflow: auto;
    padding-top: 20px;
}
.logger-summary .logger-list-wrap {
    width: 500px;
    width: calc(100% - 42px);
    max-width: 900px;
    -margin-right: 20px;
    float: left;
}
.logger-summary .logger-charts {
    display: none;
    float: left;
    width: calc(100% - 522px);
    height: 100px;
    background: #fff;
    margin-top: 30px;
}
.logger-summary .list-group {
}
.logger-summary .logger-legend {
    width: 30px;
}
.logger-summary .logger-legend span {
    display: inline-block;
    background: #ddd;
    width: 20px;
    height: 20px;
}
.logger-summary .logger-name {
    width: calc(100% - 480px);
}
.logger-summary .list-header .logger-name {
    width: calc(100% - 440px);
}
.logger-summary .logger-temp {
    text-align: center;
    width: 120px;
}
.logger-summary .logger-maturity {
    text-align: center;
    width: 120px;
}
.logger-summary .logger-updated {
    width: 200px;
    text-align: center;
}

.logger-updated .val-logger-updated-date,
.logger-updated .val-logger-updated-time {
    width: 200px;
}

a.download-btn {
    overflow: auto;
    cursor: pointer;
    color: var(--main-font-color);
}
a.download-btn:hover {
    color: var(--action-color);
}
a.download-btn span {
    float: left;
    display: inline-block;
}
.file-type-icon {
    --icon-size: 24px;
    background-image: url(/images/file-icons-24-dark.png);
    background-repeat: no-repeat;
    background-size: calc(6 * var(--icon-size));
    
    width: var(--icon-size);
    height: var(--icon-size);
    display: inline-block;
    margin-right: 10px;
}
.file-type-icon.size-20 {
    --icon-size: 20px;
}
.file-type-icon.size-16 {
    --icon-size: 16px;
}
.file-type-icon.pdf {
    background-position: 0 0;
}
.file-type-icon.csv {
    background-position: calc(0px - 1 * var(--icon-size)) 0px;
}

#pour-download-btns {
    float: right;
    overflow: auto;
    padding: 9px;
}
#pour-download-btns .download-btn {
    float: left;
    margin-left: 30px;
}


#pour-loggers-list,
#cal-loggers-list,
#val-loggers-list {
    overflow: auto;
    width: 100%;
}
#pour-loggers-list .pour-logger-checkbox,
#cal-loggers-list .cal-logger-checkbox,
#val-loggers-list .val-logger-checkbox {
    padding: 0 20px 0 0;
    overflow: auto;
    position: absolute;
    left: 0;
    top: 0;
    padding: 20px;
}
#pour-loggers-list .pour-logger-checkbox .nav-icon,
#cal-loggers-list .cal-logger-checkbox .nav-icon,
#val-loggers-list .val-logger-checkbox .nav-icon {
    float: left;
    --icon-size: 20px;
}
.compact .list-header.pour-logger {
    display: none;
}
.compact #pour-loggers-list  {
    border-color: transparent;
    background: transparent;
}
#pour-loggers-list .list-row,
#cal-loggers-list .list-row,
#val-loggers-list .list-row {
    width: calc(100% - 40px);
    float: left;
    clear: none;
    position: relative;
    transition: 
        -margin 0.2s ease-in-out,
        -width 0.2s ease-in-out;
}

#pour-loggers-list .pour-logger-checkbox,
#pour-loggers-list .list-row{
    padding: 14px;
}

#pour-loggers-list .list-field-action {
    -display: block;
}
#pour-loggers-list .list-item-icon {
    margin-right: 10px;
}

.pour-logger .pour-logger-name,
.cal-logger .cal-logger-name,
.val-logger .val-logger-name {
    width: calc(100% - 760px);
    padding-left: 40px;
    -min-width: 200px;
}

.pour-logger.list-header .pour-logger-name,
.cal-logger.list-header .cal-logger-name,
.val-logger.list-header .val-logger-name {
    width: calc(100% - 760px);
}

@media screen and (max-width: 1250px) {
    .pour-logger .pour-logger-name,
    .cal-logger .cal-logger-name,
    .val-logger .val-logger-name,
    .pour-logger.list-header .pour-logger-name,
    .cal-logger.list-header .cal-logger-name,
    .val-logger.list-header .val-logger-name {
        -min-width: 250px;
        width: calc(100% - 600px);
    }
}

.pour-logger .pour-logger-temp,
.pour-logger .pour-logger-maxmin,
.pour-logger .pour-logger-strength,
.pour-logger .pour-logger-maturity,
.cal-logger .cal-logger-temp,
.cal-logger .cal-logger-maxmin,
.cal-logger .cal-logger-maturity,
.val-logger .val-logger-temp,
.val-logger .val-logger-maxmin,
.val-logger .val-logger-maturity {
    text-align: center;
    width: 100px;
}
.pour-logger .pour-logger-start,
.pour-logger .pour-logger-start-date,
.pour-logger .pour-logger-start-time,
.pour-logger .pour-logger-updated,
.pour-logger .pour-logger-updated-date,
.pour-logger .pour-logger-updated-time {
    text-align: center;
    width: 160px;
}
.pour-logger:not(.list-header) .pour-logger-start-date,
.pour-logger:not(.list-header) .pour-logger-start-time,
.pour-logger:not(.list-header) .pour-logger-updated-date,
.pour-logger:not(.list-header) .pour-logger-updated-time {
    font-size: 0.8em;
    line-height: 16px;
}
.pour-logger .pour-logger-strength,
.pour-logger .pour-logger-maturity {
    text-align: center;
    -width: 120px;
}
@media screen and (max-width: 1250px) {
    .pour-logger .pour-logger-start {
        display: none;
    }
}

.compact #pour-loggers-list .list-row {
    border: 1px solid var(--border-light);
    margin: 0 10px 10px 0;
    background: #fff;
    /*5width: calc(20% - 50px);*/
    width: calc(16.7% - 51px);
    float: left;
}
.compact #pour-loggers-list .list-row:nth-child(2n) {
    background: #fff;
}
.compact #pour-loggers-list .list-row:nth-child(6n) {
    margin-right: 0;
}
.compact #pour-loggers-list .list-field-action {
}
.compact #pour-loggers-list .list-field {
    display: none;
}
.compact #pour-loggers-list .list-field.pour-logger-checkbox,
.compact #pour-loggers-list .list-field.pour-logger-name {
    display: block;
}
.compact #pour-loggers-list .list-field.pour-logger-name {
    width: calc(100% - 40px);
}
.loading #pour-loggers-list .nav-icon {
    -background-image: url(/images/icons-24-dark.png);
    opacity: 0.2;
}
.compact #pour-loggers-list h3 {
    display: none;
}







#permissions-edit-form .formItemExample {
    font-size: 11px;
    font-style: italic;
    padding-top: 3px;
}
#permissions-edit-form label:after {
    content: '';
}
#permissions-edit-form .formItem-radio {
    overflow: auto;
    padding: 7px 15px 2px;
}
#permissions-edit-form .formItem-radio label {
    float: left;
}
#permissions-edit-form .formItem-radio .formItemInput {
    float: left;
}
#permissions-edit-form .formItem-radio input {
    margin: 0 10px 10px 0;
}

#permissions-edit-form .formItem-checkbox {
    overflow: auto;
    clear: left;
    padding: 10px 15px 2px;
}
#permissions-edit-form .formItem-checkbox label {
    float: left;
}
#permissions-edit-form .formItem-checkbox .formItemInput {
    float: left;
}
#permissions-edit-form .formItem-checkbox input {
    margin: 0 0px 10px 0;
}
#permissions-edit-form.existing .new,
#permissions-edit-form.new .existing {
    display: none;
}
#permissions-edit-form .form-instructions {
    font-size: 12px;
    font-style: italic;
    padding: 10px 10px 1px 10px;
    background: var(--bg-super-light);
    line-height: 18px;
}
#permissions-edit-form .form-instructions p {
    margin: 0 0 10px;
}

#permissions-edit-form #formItem-email {
    padding: 10px;
}
#perm-user-email {
    width: 50%;
    padding: 7px 5px;
}

#perm-user-groups {
    padding: 20px 0;
    overflow: auto;
}
.perm-user-group {
    float: left;
    cursor: pointer;
}
.perm-user-group:hover {
    background: var(--hover-bg);
}
.perm-user-group.template {
    display: none;
}
.perm-user-definition {
}
.perm-user-definition.disabled {
    opacity: 0.4;
}
.perm-user-definition.template {
    display: none;
}

#perm-user-permissions {
    overflow: auto;
}
#perm-user-permissions label span {
    display: block;
    font-style: normal;
    font-weight: normal;
    font-size: 11px;
    padding-top: 1px;
}
#permissions-edit-form h3 {
    font-weight: normal;
    font-size: 18px;
    background: var(--bg-super-light);
    padding: 5px 10px;
    margin: 0;
}
#perm-user-definitions {
    float: left;
    width: 390px;
    padding-right: 10px;
    transition: 
        opacity 0.2s ease-in-out;
}
#perm-user-definitions.disabled input {
    opacity: 0.4;
}
#perm-user-definitions .perm-user-definition {
    cursor: pointer;
}
#perm-user-definitions:not(.disabled) .perm-user-definition:not(.disabled):hover {
    background: var(--hover-bg);
}
#perm-user-pours {
    display: none;
    float: left;
    width: 350px;
}
#perm-user-pours-option {
    border: 1px solid transparent;
    transition: 
        opacity 0.2s ease-in-out;
}
#perm-user-pours-list {
    max-height: 300px;
    overflow: auto;
    border: 1px solid var(--border-light);
    transition: 
        opacity 0.2s ease-in-out;
}
#perm-user-pours-option.disabled input {
    opacity: 0.4;
}
#perm-user-pours-list.disabled input {
    opacity: 0.4;
}
#perm-user-pours-list .perm-user-pour {
    cursor: ponter;
}
#perm-user-pours-list:not(.disabled) .perm-user-pour:hover {
    background: var(--hover-bg);
}

/* Logger View */
#logger-view {
    position: relative;
}
#logger-view-header {
    width: 100%;
    background: #eee;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}
.scrolled #logger-view-header {
    position: fixed;
    top: 0;
}
#logger-view-title-bar {
    height: 40px;
    
}
#logger-view-tab-bar {
    padding: 10px 0 0;
    overflow: auto;
}
#logger-view-tab-bar .logger-view-tab {
    float: left;
    padding: 5px;
    width: 150px;
    cursor: pointer;
    text-align: center;
}
#logger-view-tab-bar .logger-view-tab:hover {
    color: var(--action-color);
}
#logger-view-tab-bar .logger-view-tab.active {
    font-weight: bold;
    color: #fff;
    background: #444;
}
#logger-view-sections {
}
#logger-view-sections .logger-view-section {
    width: 100%;
    min-height: 400px;
    border-bottom: 1px solid var(--border-light);
}

#logger-details {
    background: #fff;
    border: 1px solid var(--border-light);
    padding: 20px 20px;
    margin: 10px 0;
    width: calc(66% - 43px);
}
#logger-details h3 {
    font-weight: normal;
    font-size: 16px;
    margin: 0 0 20px;
}
#logger-details dl {
    overflow: auto;
    font-size: 14px;
}
#logger-details dd {
    clear: left;
    color: #aaa;
    font-size: 12px;
    line-height: 16px;
    width: 150px;
    font-weight: normal;
    float: left;
    text-align: right;
    padding: 10px 30px 10px 0;
}
#logger-details dt {
    font-weight: normal;
    float: left;
    padding: 10px 0;
    line-height: 16px;
}
#logger-details dt span.error {
    color: #c00;
}
#logger-details dt span.error span {
    display: inline-block;
    padding-left: 30px;
    font-style: italic;
}

#logger-detail-serial {
    font-family: "Courier New";
    text-transform: uppercase;
}
#logger-detail-color.color-box {
    width: 30px;
    height: 16px;
    display: inline-block;
}

#logger-edit-unassign-box {
    clear: both;
    margin: 40px 0 0;
    border: 1px solid var(--border-light);
    padding: 10px 20px;
}
#logger-edit-unassign-box p {
    margin: 8px 0 8px 140px;
    font-size: 0.8em;
}
#logger-edit-unassign-box a {
    float: left;
    margin-top: 6px;
}

#logger-summary {
    text-align: center;
    overflow: auto;
}
.logger-summary-box {
    text-align: center;
    background: #fff;
    border: 1px solid var(--border-light);
    padding: 20px 20px;
    margin: 10px;
    width: calc(33% - 53px);
    min-width: 230px;
    float: left;
    height: 145px;
}

#logger-summary .logger-chart {
    width: calc(33% - 13px);
    margin: 10px;
    float: left;
}
#logger-summary .logger-chart:nth-of-type(4),
.logger-summary-box:nth-of-type(1) {
    margin-left: 0;
}
#logger-summary .logger-chart:nth-of-type(6),
.logger-summary-box:nth-of-type(3) {
    margin-right: 0;
}

@media screen and (max-width: 1300px) {
    #logger-summary .logger-chart {
        width: calc(100% - 2px);
        margin: 10px 0;
    }
}

.logger-summary-value {
}
.logger-summary-value.secondary {
    float: left;
    width: 50%;
    margin-top: 20px;
    
    width: 30%;
    margin: 26px 10% 0;
    padding: 10px 0;
    background: var(--bg-super-light);
}
.logger-summary-value.secondary.full-width {
    width: 100%;
    margin: 26px 0 0;
}
.logger-summary-value label {
    font-size: 12px;
    padding-bottom: 10px;
    display: block;
}
.logger-summary-value div {
    font-size: 32px;
}
.logger-summary-value.secondary label {
    padding-bottom: 5px;
    font-size: 10px;
}
.logger-summary-value.secondary div {
    font-size: 16px;
}

#loggers-current {
    clear: both;
    display: none;
    padding-top: 20px;
    width: calc(60% - 22px);
}
#loggers-current-list {
}

#job-unassigned-loggers .job-logger-item-name {
    width: 300px;
}
#job-unassigned-loggers .job-logger-item-name span {
    float: left;
    max-width: 268px;
    display: block;
    overflow: hidden;
}
#job-unassigned-loggers .logger-name {
}
#job-unassigned-loggers .logger-serial {
    clear: left;
    font-size: 0.7em;
    color: #999;
}

#job-unassigned-loggers .job-logger-item-voltage {
    width: 200px;
}
#job-unassigned-loggers .job-logger-item-voltage.error {
    color: #c00;
}

.logger-chart {
    width: calc(50% - 22px);
    background: #fff;
    border: 1px solid var(--border-light);
    -box-shadow: 3px 3px 5px rgba(0,0,0,0.2);
    margin-right: 20px;
    margin-bottom: 20px;
    float: left;
    position: relative;
}
.logger-chart:nth-child(2n+1) {
    -margin-right: 0;
}
.logger-chart h3 {
    font-size: 20px;
    font-weight: normal;
    color: #444;
    margin: 0;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-super-light);
    position: relative;
}
.logger-chart h3.has-subtitle {
    padding: 14px 0;
}
.logger-chart .chart-title-subtitle {
    display: block;
    font-size: 10px;
    clear: left;    
}
.logger-chart .chart-title-link {
    color: var(--action-color);
}
.logger-chart .chart-title-legal-link {
    color: #aaa;
    font-size: 10px;    
}
.logger-chart .has-link .chart-title-legal-link {
    position: absolute;
    -float: right;
    color: #aaa;
    font-size: 10px;
    right: 20px;
}
.logger-chart .chart-title-legal-link:hover {
    color: var(--action-color);
}

.logger-chart .chart-overlay {
    display: none;
    position: absolute;
    z-index: 100;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.logger-chart .chart-overlay.loading {
    display: block;
    background: rgba(255,255,255,0.9);
    background-image: url(/images/loading.gif);
    background-size: 10%;
    background-repeat: no-repeat;
    background-position: center center;
}
.logger-chart .chart-overlay.unavailable {
    display: block;
    background: rgba(255,255,255,0.7);
}
.logger-chart .chart-overlay .unavailable-content {
    display: none;
}
.logger-chart .chart-overlay.unavailable .unavailable-content {
    display: block;
}
#pour-strength-chart .chart-overlay .unavailable-content {
    text-align: center;
    padding: 140px 20px;
}

#pour-strength-chart .unavailable-content h4 {
    font-size: 24px;
    margin: 5px 0;    
}
#pour-strength-chart .unavailable-content a {
    color: var(--action-color);
}


.logger-chart-container {
    padding: 10px;
}
.logger-chart-canvas-container {
    position: relative;
    height: 250px;
}
.chart-sizer {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    width: calc(100% - 2px);
    padding: 0;
    margin: 20px 0 0;
    height: 8px;
    position: relative;
    
    border-width: 0;
}
.chart-slider {
    width: 100%;
    background: var(--border-medium);
    opacity: 0.5;
    height: 8px;
    top: 0px;
    left: 0;
    border: 6px solid var(--bg-light);
    border-width: 0px 0;
    z-index: 10;
    position: absolute;
    cursor: pointer;
    transition:
        opacity 0.2s ease-in-out;
        
    top: -6px;
    width: calc(100% - 12px);
    height: 18px;
    background: rgba(255,255,255,0.5);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    border-left: 6px solid var(--border-medium);
    border-right: 6px solid var(--border-medium);
}
.chart-box:hover .chart-slider {
    --background: var(--action-color);
    opacity: 1;
}
.chart-box .chart-sizer:hover .chart-slider {
    --background: var(--action-color);
    border-color: var(--action-color);
}
._chart-box .chart-slider:hover {
    background: var(--action-color);
}
._chart-box .chart-slider-thumb:hover {
    background: var(--action-color);
}
.chart-slider-thumb {
    height: 20px;
    width: 20px;
    background: #aaa;
    z-index: 20;
    top: -6px;
    position: absolute;
    cursor:hand;
    cursor: pointer;
    opacity: .4;
    border: 0px solid var(--bg-dark);
    background: transparent;
    transition:
        opacity 0.2s ease-in-out;
}
.chart-box:hover .chart-slider-thumb {
    opacity: 1;
}
.chart-slider-thumb-left {
    left: 0;
    cursor:w-resize;
    border-left-width: 0px;
}
.chart-slider-thumb-right {
    right: 0;
    cursor:e-resize;
    border-right-width: 0px;
}
#logger-temp-chart {
}
#pour-temp-chart {
}

#chartjs-tooltip {
    border: 1px solid #aaa;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    background: #fff;
    padding: 10px;
    min-width: 130px;
    z-index: 100;
}
#chartjs-tooltip table {
    width: 100%;
}
#chartjs-tooltip table th {
    text-align: center;
}
#chartjs-tooltip table td {
}

#chartjs-tooltip .tooltip-legend-color {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin-right: 5px;
}



.alert-create-btn {
    float: right;
    margin-left: 20px;
}
#alert-left-group {
    float: left;
    width: 60%;
}
#alert-right-group {
    float: left;
    width: 40%;
}
.alert-type-group {
    display: none;
    padding: 10px 3px;
    margin: 10px 0;
    border: 1px solid var(--border-light);
    border-width: 1px 0;
    overflow: auto;
    -background: var(--bg-super-light);
}
.alert-type-group.active {
    display: block;
    clear: left;
}
.alert-type-group .instructions {
    clear: both;
    font-size: 12px;
    padding: 10px 13px;
    background: var(--bg-super-light);
    border: 1px solid var(--border-light);
    margin: 10px 3px;
    display: none;
}
#alert-edit-dlg .alert-help {
    float: right;
    font-size: 12px;
    color: #0D3FF4;
    text-decoration: underline;
    padding: 26px 10px 0 0;    
}

.alert-notify-group {
    display: none;
    border: 1px solid var(--border-light);
    border-width: 1px 0 0;
    padding: 10px 0 0;
    overflow: auto;
    -background: var(--bg-super-light);
}

#alert-edit-dlg {
    padding: 20px;
}
#alert-edit-dlg .formItem {
    padding-bottom: 10px;
}
#alert-edit-dlg .formItem label {
    font-size: 12px;
}
#alert-edit-dlg .formItem label:after {
    content: '';
}

#alert-edit-dlg #formItem-trigger,
#alert-edit-dlg #formItem-type {
    float: left;
}
#alert-edit-dlg #formItem-type {
    margin-left: 20px;
}

#alert-edit-dlg #formItem-minTemperature,
#alert-edit-dlg #formItem-maxTemperature,
#alert-edit-dlg #formItem-temperatureUnits,
#alert-edit-dlg #formItem-target,
#alert-edit-dlg #formItem-targetUnits,
#alert-edit-dlg #formItem-maxDifferential {
    float: left;
    padding-right: 15px;
}
#alert-edit-dlg #formItem-temperatureUnits,
#alert-edit-dlg #formItem-targetUnits {
    padding-top: 10px;
}
#alert-edit-dlg #minTemperature,
#alert-edit-dlg #maxTemperature,
#alert-edit-dlg #target,
#alert-edit-dlg #maxDifferential {
    width: 80px;
    font-size: 20px;
}
#alert-edit-dlg #formItem-temperatureUnits label {
}
#alert-edit-dlg #formItem-temperatureUnits {
}
#alert-edit-dlg #alert-periodic-days .formItem {
    float: left;
}
#alert-edit-dlg #alert-periodic-days .formItemInput {    
    
}
#alert-edit-dlg #alert-periodic-days .formItem-checkbox label {
    padding-left: 2px;
}
#alert-edit-dlg #alert-periodic-days #formItem-periodicAllDays label {
    padding-right: 20px;
}
#alert-edit-dlg #formItem-periodicTime {
    clear: left;
    float: left;
}
#alert-edit-dlg #alert-periodic-timezone {
    float: left;
    font-size: 12px;
    padding-top: 20px;
    padding-left: 10px;
}

#alert-edit-dlg #title,
#alert-edit-dlg #description {
    width: calc(100% - 0.3em - 4px);
}


#alert-edit-dlg .formItem-checkbox {
    overflow: auto;
}
#alert-edit-dlg .formItem-checkbox label {
    padding-top: 5px;
    font-weight: bold;
}
#alert-edit-dlg .formItem-checkbox .formItemInput {
    float: left;
}

#alert-edit-dlg #formItem-attachPDF,
#alert-edit-dlg #formItem-attachCSV {
    float: left;
    padding-right: 50px;
}

#alert-edit-dlg .formItem.error input {
    border-color: #f00;
}
#alert-edit-dlg .formItem.error label {
    color: #f00;
}


#alert-pour-selector {
    border: 1px solid var(--border-light);
    border-width: 0 0 0 1px;
    margin-left: 10px;
    min-height: 200px;
    padding: 0 10px;
}
#alert-pour-selector > label {
    font-size: 12px;
}

#alert-pour-selector .formItem {
    padding: 5px;
    border: 1px solid var(--border-medium);
    border-radius: 3px;
    margin: 10px 0;
    cursor: pointer;
}
#alert-pour-selector .formItem:hover {
    background: var(--bg-super-light);
}
#alert-pour-selector .formItem.selected {
    background: var(--hover-bg);
    border-color: var(--hover-border-color);
}
#alert-pour-selector .formItem input {
    float: left;
    margin: 2px;
}
#alert-pour-selector .formItem label {
    cursor: pointer;
    float: left;
    display: block;
    padding: 3px 0 0 10px;
    line-height: 16px;
    max-width: 85%;
    font-weight: bold;
}
#alert-pour-selector #alert-pour-name {
    display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: normal;
}

#alert-edit-dlg .checkbox-list {
    border: 1px solid var(--border-medium);
    border-radius: 3px;
    min-height: 100px;
    max-height: 250px;
    overflow-y: auto;
}
#alert-edit-dlg .checkbox-list.error {
    border-color: #f00;
}
#alert-edit-dlg .checkbox-list em {
    display: block;
    padding: 10px;
}
#alert-edit-dlg .checkbox-list .checkbox-list-item {
    padding: 5px;
    overflow: auto;
}
#alert-edit-dlg .checkbox-list .checkbox-list-item:nth-child(2n+1) {
    background: var(--bg-super-light);
}
#alert-edit-dlg .checkbox-list-item-email,
#alert-edit-dlg .checkbox-list-item-text {
    float: left;
    overflow: auto;
}
#alert-edit-dlg .checkbox-list .checkbox-list-item input {
    margin: 1px 11px 3px 3px;
    float: left;
}
#alert-edit-dlg .checkbox-list .checkbox-list-item label {
    font-size: 14px;
    float: left;
    display: block;
    cursor: pointer;
}
#alert-edit-dlg .checkbox-list-item-email label {
    width: 328px;
    padding: 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#alert-edit-dlg .checkbox-list .checkbox-list-item span {
    margin-top: 1px;
    float: left;
    
}
#alert-user-list {
    margin: 10px 0;
}

#alert-edit-dlg #alert-user-list .checkbox-list-item:hover {
    background: var(--hover-bg);
    cursor: pointer;
}


#alert-pour-selector #alert-logger-list {
    margin: 10px 0 0;
    opacity: 0.3;
    max-height: 350px;
}
#alert-pour-selector #alert-logger-list.active {
    opacity: 1;
}
#alert-logger-list.active .checkbox-list-item:hover {
    background: var(--hover-bg);
    cursor: pointer;
}
#alert-logger-list.active .checkbox-list-item label {
    cursor: pointer;
}


.alarm-container {
    background: var(--bg-super-light);
    border: 1px solid var(--border-light);
    padding: 0;
    margin: 20px 0 0px 0;
}
.alarm-container-header {
    overflow: auto;
    padding: 20px;
}
.alarm-container h2 {
    color: var(--bg-dark);
    line-height: 32px;
    font-size: 20px;
    font-weight: normal;
    margin: 0;
    padding: 0;
    min-width: 250px;
    float: left;
}
.alarm-container .alarm-select-btn {
    float: right;
    color: var(--bg-dark);
    display: inline-block;
    padding: 7px 15px;
    margin-right: 20px;
    line-height: 18px;
}
.alarm-container .alarm-select-btn.active {
    -background: var(--action-color);
    -color: #fff;
    font-weight: bold;
}
.alarm-container .alarm-select-btn:hover {
    background: var(--bg-light);
}
.alarm-list {
    border: 1px solid var(--border-light);
    border-width: 0px 0 0;
    -background: #fff;
    display: none;
}
.alarm-list[show="new"] .alarm-item[isNew="1"] {
    display: block;    
}
.alarm-list[show="all"] .alarm-item {
    display: block;    
}
.alarm-item {
    font-size: 12px;
    display: none;
    padding: 20px 20px 20px 15px;
    overflow: auto;
    border-top: 1px solid var(--border-light);
    border-left: 5px solid var(--border-light);
    background: var(--bg-super-light);
}
.alarm-item:nth-child(2n+1) {
    background: #fff;
}
.alarm-item[type="critical"] {
    border-left-color: #a00;
}
.alarm-item[type="goal"] {
    border-left-color: #070;
}
.alarm-item[type="critical"][isNew="1"] {
    -background: #fcc;
}
.alarm-item[type="goal"][isNew="1"] {
    -background: #cfc;
}

.alarm-item .alarm-item-update {
    float: right;
    text-decoration: none;
    color: #bbb;
    display: none;
}
.alarm-item .alarm-item-update:hover {
    color: var(--action-color);
    text-decoration: underline;
}
.alarm-item[isNew="0"] .alarm-item-update[isNew="1"] {
    display: inline-block;
} 
.alarm-item[isNew="1"] .alarm-item-update[isNew="0"] {
    display: inline-block;
} 
.alarm-item .alarm-item-timestamp {
    float: left;
    width: 150px;
}
.alarm-item .alarm-item-date {
}
.alarm-item .alarm-item-time {
}
.alarm-item .alarm-item-title-wrap {
    float: left;
    width: 300px;
}
.alarm-item .alarm-item-title {
    width: 100%;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.alarm-item .alarm-item-description {
    width: 100%;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    
}


.nav-content.active[nav-id="jobs.calibrations"] {
    min-width: 900px;
}
.calibration-create-btn {
    float: right;
}

.calibrations-list {
    width: 100%;
    overflow: auto;
}
.calibration-item {
    float: left;
    width: calc(25% - 37px);
    padding: 10px;
    margin: 10px 20px 10px 0;
    -background: #fff;
    background: var(--bg-super-light);
    border: 1px solid var(--border-light);
    border-radius: 5px;
    -min-height: 100px;
    text-align: center;
}
.calibration-item:nth-child(4n) {
    margin-right: 0;
}
.calibration-item:hover {
    cursor: pointer;
    background: var(--hover-bg);
    border-color: var(--hover-border-color);
    border-color: var(--action-color-dark);
}
.calibration-item-header {
    -display: inline-block;
    overflow: auto;
    -display: block;
}
.calibration-item-header .nav-icon {
    display: inline-block;    
    float: left;
    margin-right: 8px;
}
.calibration-item-title {
    display: inline-block;
    float: left;
    line-height: 24px;    
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(93% - 20px);
}
.calibration-item-job {
    -font-size: 12px;
    clear: left;
    text-align: left;
    padding-left: 32px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(93% - 20px);
}
.calibration-item dl {
    font-size: 10px;
    overflow: auto;
    margin: 10px 0 0;
    padding: 10px;
    border: 1px solid var(--border-light);
    background: #fff;
}
.calibration-item dd {
    margin: 0;
    padding: 2px 0;
    text-align: left;
    clear: left;
    width: calc(50% - 10px);
    margin-right: 10px;
    float: left;
}
.calibration-item dt {
    text-align: left;
    padding: 2px 0;
    float: left;
    width: 50%;
}
.calibration-item-duplicate-btn {
    display: block;
    padding: 10px 0 0;
    color: #999;
    font-size: 12px;
}
.calibration-item-duplicate-btn:hover {
    color: var(--action-color);
}

#calibration-duplication-warning {
    clear: both;
    font-size: 11px;
    padding-top: 10px;
}


#pour-settings #name {
    width: 280px;
}
#pour-settings #formItem-calibrationId {
    clear: left;
    float: left;
}
#pour-settings #formItem-maxDifferential {
    float: left;
    clear:left;
}
#pour-settings #formItem-temperatureUnits {
}



/* Content Panel Specific definitions */

/* Add Logger */
#logger-edit-form .formItemExample {
    font-style: italic;
    font-size: 10px;
    padding: 2px 0 0 7px;
}
#logger-edit-form #logger-start-timezone {
    float: left;
    /* padding-top: 25px; */
}
#formItem-loggerId,
#formItem-name {
    float: left;
    font-size: 20px;
}
#formItem-loggerId {
    width: 285px;
}
#formItem-loggerId .formItemInput {
    border: 1px solid #bbb;
    border-radius: 3px;
    overflow: hidden;
    height: 33px;
}
#loggerId {
    width: calc(80% - 18px);
    -width: calc(100% - 0.6em);
    border-color: transparent;
    box-shadow: none;
    border-width: 0;
}
a.qr-start-scan-btn.ui-button.action-btn {
    margin: 0;
    float: right;
    font-size: 14px;
    line-height: 14px;
    padding: 11px 2px;
    width: calc(20%);
    border-width: 0;
    border-radius: 0;
    
}
#qr-cancel-btn {
    display: block;
    padding: 20px 0;
    font-size: 1.5em;
    color: var(--action-color);
    text-decoration: underline;
    text-align: center;
}
#qr-frame {
    background: var(--bg-dark);
    margin: 0px auto;
    border: 5px solid var(--bg-dark);
    width: calc(100% - 50px);
    min-height: 400px;
    padding: 20px;
}
#qr-frame.active {
    border: 5px solid #f00;
}
#qr-reader {
    opacity: 0;
    transition:
        opacity 0.2s ease-in-out;    
}
.modal-bg.active #qr-reader {
    opacity: 1;
}
.modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: rgba(255,255,255,0);
    transition: 
        z-index 0s ease-in-out 0.2s,
        background 0.2s ease-in-out;
}
.modal-bg.active {
    transition:
        background 0.2s ease-in-out,
        z-index 0s ease-in-out 0s;
    z-index: 1000;
    background: rgba(242,241,238,0.9);
}




#formItem-startDate {
    float: left;
    clear: left;
    font-size: 20px;
}
#formItem-startTime {
    float: left;
    font-size: 20px;
    
}
#startDate, #startTime {
    width: 139px;
}
#formItem-color {
    clear: both;
}

a.alert-create-btn[permstate="forbidden"].ui-button {
    background: #ddd;
    color: #f3f3f3;
}
#alerts-list {
    border: 1px solid var(--border-medium);
    background: #fff;
}
#alerts-list[permstate="forbidden"] {
    display: none;
}

#alerts-list h3 {
    text-align: center;
    opacity: 0.4;
    font-weight: normal;
    padding: 30px; 
    margin: 0;
}
.alert-item {
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid var(--border-light);
    padding: 20px; 
    overflow: auto;   
}
.alert-item:nth-child(2n+1) {
    background: var(--bg-super-light);
}
.alert-item:last-child {
    border-width: 0;
}
.alert-item:hover {
    background: var(--hover-bg);
}
.alert-item.inactive div {
    transition: 
        opacity 0.2s ease-in-out;
    opacity: 0.7;
}
.alert-item.inactive:hover div {
    opacity: 1;
}
.alarm-item-status {
    position: absolute;
    -width: 100%;
    display: none;
    clear: right;
    float: right;
    font-size: 12px;
    -background: rgba(255,255,255,0.7);
    color: #f00;
    bottom: 0;
    top: 0;
    right: 0;
    text-align: right;
    padding: 30px;
    opacity: 1;
    transition: 
        opacity 0.2s ease-in-out;
}
.alarm-item-status span {
    display: block;
    background: rgba(255,100,100,0.9);
    color: #fff;
    padding: 7px 20px;
}
.inactive:hover .alarm-item-status {
    opacity: 0;
}
.inactive .alarm-item-status {
    display: none;
}

.alert-item-title {
    float: left;
    width: 30%;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.alert-type-container {
    _border: 1px solid var(--border-light);
    _padding: 10px;
    float: left;
    margin-right: 30px;
    _background: #fff;
    width: 20%;
    max-width: 150px;
}
.alert-item-trigger {
    font-size: 12px;
    padding: 0 0 5px 0;
}
.alert-item-notify {
    float: right;
    margin-right: 20px;
    color: #444;
    overflow: auto;
    padding-top: 3px;
}
.alert-item-notify .nav-icon {
    float: left;
    background-image: url(/images/icons-24-dark.png);
    margin-right: 8px;
}
.alert-item-notify span {
    font-size: 14px;
    font-weight: bold;
    float: left;
    display: inline-block;
    width: 25px;
}
.alert-item-notify.no-notice {
    opacity: 0.2;
}
.alert-type-vals {
    display: none;
    font-size: 14px;
}
.alert-item-val {
    display: inline-block;
    padding: 3px;
    font-weight: bold;
    _background: #f0f0f0;
}
.alert-item-loggers {
    float: left;
    width: 23%;
}
.alert-item-loggers-title {
    font-size: 12px;
    padding: 0 0 5px 0;
}
.alert-item-loggers-list {
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.alert-item-edit {
    float: right;
    padding: 0 10px;
    color: #ccc;
}
.alert-item-edit a {
    color: #ccc;
    font-size: 12px;
}
.alert-item-edit a:hover {
    text-decoration: underline;
}
.alert-item .alert-item-rearm {
    width: 40px;
    margin-left: 40px;
}
.alert-item:not(.inactive) .alert-item-rearm {
    font-weight: bold;
    color: #393;
}
.alert-item:hover .alert-item-edit a:not(.alert-item-rearm) {
    color: var(--action-color);
}
.alert-item.inactive:hover .alert-item-edit .alert-item-rearm {
    color: #f00
}


.val-add-logger-btn {
    float: right;
}
#pour-validation-list {
    width: calc(100% - 42px);
    max-width: 900px;
}
#pour-validation-list .pour-validation {
    
}
#pour-validation-list .pour-validation:hover {
    background: transparent;
    cursor:auto;
}
.pour-validation .formItem {
}
.pour-validation .formItem label {
    font-size: 12px;
}
.pour-validation .formItem label:after {
    content: '';
}
.pour-validation .formItemExample {
    font-size: 10px;
    text-align: right;
    padding-right: 8px;
}
.pour-validation input[type='text'] {
    text-align: right;
}
.pour-validation #strength,
.pour-validation #maturity {
    width: 100px;
}
.pour-validation #testDate,
.pour-validation #testTime {
    width: 100px;
}
.pour-validation #location {
    width: 452px;
    text-align: left;
}
.pour-validation a.pour-validation-save {
    margin: 17px 0 0;
}
.pour-validation .pour-validation-notes {
    width: calc(100% - 470px - 80px);
}
.pour-validation .formItem {
    width: calc(100% - 6px);
}
.pour-validation #notes {
    width: calc(100% - 0.6em - 2px);
    height: 78px;
}
@media screen and (max-width: 1100px) {
    #pour-validation-list {
        width: calc(100% - 42px);
    }
    .pour-validation .pour-validation-notes {
        clear: left;
        width: 470px;
    }
}



#val-calibration-name {
    font-weight: bold;
    padding: 10px 0 10px;
    text-align: center;
    border: 1px solid var(--border-light);
    border-width: 1px 0;
    margin: 0 0 20px;    
}
#val-calibration-name a {
    color: var(--action-color);
    font-weight: normal;
}


#val-table {
    display:table;
    background: #fff;
    border: 1px solid var(--border-light);
    width: 100%;
    font-size: 12px;
    max-width: 850px;
    position: relative;
}
#val-table-header {
    background: var(--bg-dark);
    color: #fff;
    background: var(--action-color-dark);
}
#val-table-body {
    display: table-row-group;
}
.val-table-units {
    display: block;
}
.val-table-row {
    transition: 
        opacity 0.2s ease-in-out;
        
    display: table-row;
}
#val-table.editing .val-table-row {
    opacity: 0.2;
}
#val-table.editing .val-table-row.editing {
    opacity: 1;
    background: var(--hover-bg);
    border: 1px solid #444;
    border-width: 1px 0;
}
#val-table.editing .val-table-row.editing .val-table-cell {
    border: 1px solid var(--border-medium);
    border-width: 1px 0;
}

.val-table-cell {
    display:table-cell;
    text-align: center;
    /* width: calc((100% - 20px)/6 - 10px); */
    width: 160px;
    padding: 5px 5px;
}
.val-table-cell:nth-child(1) {
    width: 80px;
}
.val-table-cell:nth-child(2) {
    width: 280px;
}
.val-table-cell:nth-child(5) {
    width: 80px;
}
.val-table-cell a.val-table-edit-btn,
.val-table-cell a.val-table-delete-btn {
    color: var(--action-color);
}
.val-table-cell .val-time {
    text-align: center;
}

.val-table-cell .date-value {
    width: 80px;
    text-align: right;
    padding-right: 10px;
    display: inline-block;
}
.val-table-cell .time-value {
    width: 60px;
    text-align: right;
    padding-right: 10px;
    display: inline-block;
}
.val-table-cell .tz-value {
    width: 80px;
    text-align: left;
    display: inline-block;
}
#val-table-header .val-table-cell {
    padding: 10px 5px;
}
#val-table-body .val-table-row:nth-child(2n) {
    background: var(--hover-bg);
}
#val-table-entry .val-table-cell {
    border-top: 1px solid var(--border-light);
    padding: 7px 5px;
}
.full-width  {
    display: table-caption;
    caption-side: bottom;
}
#val-add-point {
    display: block;
    -float: right;
    margin: 5px auto;
    padding: 10px 0;
    -background: var(--bg-super-light);
    -color: var(--action-color);
    text-align: center;
    font-size: 14px;
    -border-width: 1px;
    -border-color: var(--border-light);
    -width: calc(100% - 2px);
    width: 220px;
    transition:
        background 0.2s ease-in-out,
        color 0.2s ease-in-out;
}
#val-add-point:hover {
    -background: var(--action-color);
    -color: #fff;
}
    
.val-table-cell input {
    width: 86%;
    text-align: right;    
}

.calibration-edit-btn {
    float: right;
    margin-left: 20px;
}
a.ui-button.calibration-delete-btn {
    float: right;
    margin-left: 20px;
    background: #c00;
}
a.ui-button.calibration-delete-btn:hover {
    background: #d00;
}



#val-entry-dlg #val-entry-timezone-info {
    clear: both;
    font-size: 10px;
    font-style: italic;
    display: none;
}
#val-entry-dlg .formItemExample {
    font-style: italic;
    font-size: 10px;
    padding: 2px 0 0 7px;
}
#val-entry-dlg #val-entry-lookup-btn {
    float: right;
    display: none;
}
#val-entry-dlg .has-loggers #val-entry-lookup-btn {
    display: block;
    margin-top: 15px;
}
#val-entry-dlg #val-entry-lookup-btn.inactive {
    background: var(--bg-medium);
}
#val-entry-dlg #formItem-testDate,
#val-entry-dlg #formItem-testTime,
#val-entry-dlg #formItem-elapsedTime {
    float: left;
}
#val-entry-dlg #formItem-elapsedTime {
    float: right;
    display: none;
}
#val-entry-dlg #testDate {
    width: 150px;
}
#val-entry-dlg #testTime {
    width: 88px;
}
#val-entry-dlg #elapsedTime {
    width: 72px;
}
.val-entry-rows {
    clear: both;
}
.val-entry-rows.loggers {
    padding-top: 20px;
}
.val-entry-rows.breaks {
    padding-top: 20px;
}
.val-entry-row {
    overflow: auto;
}
.val-entry-row:nth-child(2n) {
    background: var(--bg-super-light);
}
.val-entry-row.header-row {
    font-size: 12px;
}
.val-entry-field {
    float: left;
    width: 107px;
    padding: 5px 5px;
}
.val-entry-field input[type="text"] {
    width: 91%;
    font-size: 14px;
}
.calculated .val-entry-field input[type="text"] {
    
}
.val-entry-checkbox {
    width: 30px;
}
.val-entry-logger {
    width: 184px;
}
.val-entry-row:not(.header-row) .val-entry-logger {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 25px;
}
.val-entry-serial {
}
.val-entry-strength {
    float: right;
}
.val-entry-maturity {
    float: right;
    opacity: 0.3;
}
.val-entry-row.header-row .val-entry-maturity {    
    opacity: 1;
}

.val-entry-temp {
    display: none;
}
.val-entry-lookup {
    width: 117px;
}

.val-entry-rows.loggers {
    display: none;
}
.has-loggers .val-entry-rows.loggers {
    display: block;
} 
.val-entry-row.logger .val-entry-logger {
    opacity: 0.3;
}
.val-entry-row.logger.active .val-entry-logger {
    opacity: 1;
}

.val-entry-row.break .val-entry-serial,
.val-entry-row.break .val-entry-strength {
    opacity: 0.3;
}
.val-entry-row.break.active .val-entry-serial,
.val-entry-row.break.active .val-entry-strength {
    opacity: 1;
}

.calcs .val-entry-logger,
.averages .val-entry-logger {
    font-weight: bold;
}
.has-loggers .calcs .val-entry-logger {
    display: block;
}
    
.has-loggers .calcs .header-row {
    display: none;
}
.calcs,
.averages {
    -padding-top: 20px;
}

.has-loggers .loggers .val-entry-row.active:not(.header-row) .val-entry-maturity,
.has-loggers .loggers .val-entry-row.active:not(.header-row) .val-entry-temp {
    background: rgba(13,63,244,0.1);
    opacity: 1.0;
}
.has-loggers .loggers .inactive .val-entry-maturity,
.has-loggers .loggers .inactive .val-entry-temp {
    background: transparent;
}


.calcs .val-entry-row:not(.header-row),
.has-loggers .calcs.no-loggers .val-entry-row:not(.header-row),
.averages .val-entry-row {
    background: var(--bg-super-light);
    background: var(--bg-light);
}
.has-loggers .calcs .val-entry-row,
.averages .val-entry-row {
    border-top: 1px solid #bbb;
    -background: rgba(13,63,244,0.1);
}
.has-loggers .calcs .val-entry-temp,
.has-loggers .calcs .val-entry-maturity,
.active .val-entry-strength,
.averages .val-entry-strength {
    background: rgba(13,63,244,0.1);
    opacity: 1.0;
}
.has-loggers .calcs.no-loggers .val-entry-temp,
.has-loggers .calcs.no-loggers .val-entry-maturity {
    background: transparent;
}
.calcs.no-loggers .val-entry-maturity {
    opacity: 1;
}

/* .val-entry-field .val-entry-logger  */
.val-entry-total-label {
    float: left;
    text-align: right;
    width: auto;
    width: 90px;
}

.val-entry-with-loggers {
    display: none;
    float: right;
}
.has-loggers .val-entry-with-loggers {
    display: block;
}
.no-loggers .val-entry-with-loggers {
    display: none;
}

.val-entry-without-loggers {
    display: none;
    float: right;
}
.has-loggers .val-entry-without-loggers {
    display: none;
}
.no-loggers .val-entry-without-loggers {
    display: block;
}

.val-entry-lookup-btn {
    display: inline-block;
    font-size: 12px;
    text-align: center;
    border: 1px solid var(--border-medium);
    border-radius: 3px;
    background: var(--bg-light);
    padding: 4px 15px;
    opacity: 0.2;
    transition:
        background 0.2s ease-in-out,
        color 0.2s ease-in-out,
        border 0.2s ease-in-out;
}
.has-loggers .val-entry-lookup-btn:hover {
    background: var(--action-color);
    color: #fff;
    border-color: var(--action-color);
}
.has-loggers .val-entry-lookup-btn {
    opacity: 1;
}

.val-entry-remove {
    width: 30px;
    text-align: center;
}
a.val-entry-remove-row-btn {
    color: #ccc;
    line-height: 24px;
    padding: 0 5px;
    font-size: 12px;
    float: right;
}
.val-entry-remove-row-btn:hover {
    color: #f00;
}
#val-entry-add-row-btn {
    background: var(--bg-super-light);
    color: var(--action-color);
    display: block;
    margin: 0;
    padding: 10px 0;
    text-align: center;
    font-size: 12px;
    border-top: 1px solid var(--border-light);
    transition:
        background 0.2s ease-in-out,
        color 0.2s ease-in-out;
}
#val-entry-add-row-btn:hover {
    background: var(--action-color);
    color: #fff;
    -color: var(--action-color);
}

.val-entry-field.error input,
.val-entry-field.error input[type="text"] {
    border-color: #f00;
    background: #fee;
}

.val-entry-field.error input[type="text"]:placeholder-shown {
    border-color: rgb(0, 7, 107);
    background: rgb(255, 254, 191);
}

.val-entry-field.error input
{
    border-color: #f00;
    background: #fee;
}




.template {
    display: none;
}

.cal-add-logger-btn {
    clear: both;
    width: 220px;
    margin: 0px auto;
    display: block;
}
.cal-chart-xaxis-types {
    float: right;
    overflow: auto;
    border: 1px solid var(--border-light);
    border-radius: 3px;
    margin-right: 20px;
}
.cal-chart-xaxis-types a {
    display: block;
    padding: 5px 20px;
    font-size: 12px;
    color: #999;
    background: #fff;
    float: left;
    transition:
        background 0.2s ease-in-out,
        color 0.2s ease-in-out;
}
.cal-chart-xaxis-types a.active {
    background: var(--action-color);
    color: var(--action-color-dark);
}
.cal-chart-validation-tolerance {
    float: left;
    font-size: 12px;
    margin-left: 20px;
}
.cal-chart-validation-tolerance label {
}
.cal-chart-validation-tolerance select {
    background: #fff;
}

#cal-table {
    display:table;
    background: #fff;
    border: 1px solid var(--border-light);
    width: 100%;
    font-size: 12px;
    max-width: 850px;
    position: relative;
}
#cal-table-header {
    background: var(--bg-dark);
    color: #fff;
    background: var(--action-color-dark);
}
#cal-table-body {
    display: table-row-group;
}
.cal-table-units {
    display: block;
}
.cal-table-row {
    transition: 
        opacity 0.2s ease-in-out;
        
    display: table-row;
}
#cal-table.editing .cal-table-row {
    opacity: 0.2;
}
#cal-table.editing .cal-table-row.editing {
    opacity: 1;
    background: var(--hover-bg);
    border: 1px solid #444;
    border-width: 1px 0;
}
#cal-table.editing .cal-table-row.editing .cal-table-cell {
    border: 1px solid var(--border-medium);
    border-width: 1px 0;
}

.cal-table-cell {
    display:table-cell;
    text-align: center;
    width: calc((100% - 20px)/6 - 10px);
    width: 145px;
    padding: 5px 5px;
}
.cal-table-cell:nth-child(1) {
    width: 80px;
}
.cal-table-cell:nth-child(9) {
    width: 80px;
}
.cal-table-cell .date-value {
    width: 80px;
    float: left;
    text-align: right;
    padding-right: 10px;
}
.cal-table-cell .time-value {
    width: 60px;
    float: left;
    text-align: left;
}
#cal-table-header .cal-table-cell {
    padding: 10px 5px;
}
#cal-table-body .cal-table-row:nth-child(2n) {
    background: var(--hover-bg);
}
#cal-table-entry .cal-table-cell {
    border-top: 1px solid var(--border-light);
    padding: 7px 5px;
}
.full-width  {
    display: table-caption;
    caption-side: bottom;
}
#cal-add-point {
    display: block;
    -float: right;
    margin: 10px auto;
    -padding: 10px 0;
    -background: var(--bg-super-light);
    -color: var(--action-color);
    text-align: center;
    font-size: 16px;
    -border-width: 1px;
    -border-color: var(--border-light);
    -width: calc(100% - 2px);
    width: 220px;
    transition:
        background 0.2s ease-in-out,
        color 0.2s ease-in-out;
}
#cal-add-point:hover {
    -background: var(--action-color);
    -color: var(--action-color-dark);
}
    
.cal-table-cell input {
    width: 86%;
    text-align: right;    
}

.calibration-edit-btn {
    float: right;
    margin-left: 20px;
}
a.ui-button.calibration-delete-btn {
    float: right;
    margin-left: 20px;
    background: #c00;
}
a.ui-button.calibration-delete-btn:hover {
    background: #d00;
}

#cal-entry-dlg #cal-entry-timezone-info {
    clear: both;
    font-size: 10px;
    font-style: italic;
    display: none;
}
#cal-entry-dlg .formItemExample {
    font-style: italic;
    font-size: 10px;
    padding: 2px 0 0 7px;
}
#cal-entry-dlg #cal-entry-lookup-btn {
    float: right;
    display: none;
}
#cal-entry-dlg .has-loggers #cal-entry-lookup-btn {
    display: block;
    margin-top: 15px;
}
#cal-entry-dlg #cal-entry-lookup-btn.inactive {
    background: var(--bg-medium);
}
#cal-entry-dlg #formItem-testDate,
#cal-entry-dlg #formItem-testTime,
#cal-entry-dlg #formItem-elapsedTime {
    float: left;
}
#cal-entry-dlg #formItem-elapsedTime {
    float: right;
    display: none;
}
#cal-entry-dlg #testDate {
    width: 150px;
}
#cal-entry-dlg #testTime {
    width: 88px;
}
#cal-entry-dlg #elapsedTime {
    width: 72px;
}
.cal-entry-rows {
    clear: both;
}
.cal-entry-rows.loggers {
    padding-top: 20px;
}
.cal-entry-rows.breaks {
    padding-top: 20px;
}
.cal-entry-row {
    overflow: auto;
}
.cal-entry-row:nth-child(2n) {
    background: var(--bg-super-light);
}
.cal-entry-row.header-row {
    font-size: 12px;
}
.cal-entry-field {
    float: left;
    width: 107px;
    padding: 5px 5px;
}
.cal-entry-field input[type="text"] {
    width: 91%;
    font-size: 14px;
}
/* .cal-entry-field.error input[type="text"] {
    border-color: #f00;
    background: #fee;
} */

.calculated .cal-entry-field input[type="text"] {
    
}
.cal-entry-checkbox {
    width: 30px;
}
.cal-entry-logger {
    width: 184px;
}
.cal-entry-row:not(.header-row) .cal-entry-logger {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 25px;
}
/* .cal-entry-serial {
} */
.cal-entry-strength {
    float: right;
}
.cal-entry-maturity {
    float: right;
    opacity: 0.3;
}
.cal-entry-row.header-row .cal-entry-maturity {    
    opacity: 1;
}
.cal-entry-temp {
    display: none;
}
.cal-entry-lookup {
    width: 117px;
}


.cal-entry-rows.loggers {
    display: none;
}
.has-loggers .cal-entry-rows.loggers {
    display: block;
} 
.cal-entry-row.logger .cal-entry-logger {
    opacity: 0.3;
}
.cal-entry-row.logger.active .cal-entry-logger {
    opacity: 1;
}

.cal-entry-row.break .cal-entry-serial,
.cal-entry-row.break .cal-entry-strength {
    opacity: 0.3;
}
.cal-entry-row.break.active .cal-entry-serial,
.cal-entry-row.break.active .cal-entry-strength {
    opacity: 1;
}

.calcs .cal-entry-logger,
.averages .cal-entry-logger {
    font-weight: bold;
}
.has-loggers .calcs .cal-entry-logger {
    display: block;
}
    
.has-loggers .calcs .header-row {
    display: none;
}
.calcs,
.averages {
    -padding-top: 20px;
}

.has-loggers .loggers .cal-entry-row.active:not(.header-row) .cal-entry-maturity,
.has-loggers .loggers .cal-entry-row.active:not(.header-row) .cal-entry-temp {
    background: rgba(13,63,244,0.1);
    opacity: 1;
}
.has-loggers .loggers .inactive .cal-entry-maturity,
.has-loggers .loggers .inactive .cal-entry-temp {
    background: transparent;
}

.has-loggers .loggers .cal-entry-row:not(.active) .cal-entry-field input {
    background: var(--bg-light);
}

.calcs .cal-entry-row:not(.header-row),
.has-loggers .calcs.no-loggers .cal-entry-row:not(.header-row),
.averages .cal-entry-row {
    background: var(--bg-super-light);
    background: var(--bg-light);
}
.has-loggers .calcs .cal-entry-row,
.averages .cal-entry-row {
    border-top: 1px solid #bbb;
    -background: rgba(13,63,244,0.1);
}
.has-loggers .calcs .cal-entry-temp,
.has-loggers .calcs .cal-entry-maturity,
.active .cal-entry-strength,
.averages .cal-entry-strength {
    background: rgba(13,63,244,0.1);
    opacity: 1;
}
.has-loggers .calcs.no-loggers .cal-entry-temp,
.has-loggers .calcs.no-loggers .cal-entry-maturity {
    background: transparent;
}
.calcs.no-loggers .cal-entry-maturity {
    opacity: 1;
}
.cal-entry-total-label {
    float: left;
    text-align: right;
    width: auto;
    width: 90px;
}

.cal-entry-with-loggers {
    display: none;
    float: right;
}
.has-loggers .cal-entry-with-loggers {
    display: block;
}
.no-loggers .cal-entry-with-loggers {
    display: none;
}
.has-loggers .cal-entry-without-loggers {
    display: none;
    float: right;
}
.no-loggers .cal-entry-without-loggers {
    display: block;
}

.cal-entry-lookup-btn {
    display: inline-block;
    font-size: 12px;
    text-align: center;
    border: 1px solid var(--border-medium);
    border-radius: 3px;
    background: var(--bg-light);
    padding: 4px 15px;
    opacity: 0.2;
    transition:
        background 0.2s ease-in-out,
        color 0.2s ease-in-out,
        border 0.2s ease-in-out;
}
.has-loggers .cal-entry-lookup-btn:hover {
    background: var(--action-color);
    color: #fff;
    border-color: var(--action-color);
}
.has-loggers .cal-entry-lookup-btn {
    opacity: 1;
}

.cal-entry-remove {
    width: 30px;
    text-align: center;
}
a.cal-entry-remove-row-btn {
    color: #ccc;
    line-height: 24px;
    padding: 0 5px;
    font-size: 12px;
    float: right;
}
.cal-entry-remove-row-btn:hover {
    color: #f00;
}
#cal-entry-add-row-btn {
    background: var(--bg-super-light);
    color: var(--action-color);
    display: block;
    margin: 0;
    padding: 10px 0;
    text-align: center;
    font-size: 12px;
    border-top: 1px solid var(--border-light);
    transition:
        background 0.2s ease-in-out,
        color 0.2s ease-in-out;
}
#cal-entry-add-row-btn:hover {
    background: var(--action-color);
    color: #fff;
    -color: var(--action-color);
}

.cal-entry-field.error input,
.cal-entry-field.error input[type="text"] {
    border-color: #f00;
    background: #fee;
}

.cal-entry-field.error input[type="text"]:placeholder-shown {
    border-color: rgb(0, 7, 107);
    background: rgb(255, 254, 191);
}

.cal-entry-field.error input
{
    border-color: #f00;
    background: #fee;
}

#cal-details {
    background: var(--bg-super-light);
    border: 1px solid var(--border-light);
    padding: 10px 10px;
    overflow: auto;
}
.cal-detail {
    float: left;
    padding: 10px 10px;
    width: calc((100% - 20px)/2 - 40px);
}
#cal-details[method="Temperature-Time"] .cal-detail[method="Equivalent Age"],
#cal-details[method="Temperature-Time"] .cal-detail[method="Weaver-Sadgrove"] {
    display: none;
}
#cal-details[method="Equivalent Age"] .cal-detail[method="Temperature-Time"],
#cal-details[method="Equivalent Age"] .cal-detail[method="Weaver-Sadgrove"] {
    display: none;
}
#cal-details[method="Weaver-Sadgrove"] .cal-detail[method="Temperature-Time"],
#cal-details[method="Weaver-Sadgrove"] .cal-detail[method="Equivalent Age"] {
    display: none;
}
.cal-detail label {
    font-weight: bold;
    float: left;
    width: 170px;
}
.cal-detail .cal-value {
    float: left;
    padding-left: 20px;
}

#cal-chart {
    padding: 10px;
}
.cal-chart-container {
    background: #fff;
    margin: 20px 0;
    width: calc(100% - 42px);
    max-width: 900px;
    border: 1px solid var(--border-light);
}
.cal-chart-container h3 {
    font-size: 20px;
    font-weight: normal;
    color: #444;
    margin: 0;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-super-light);    
}
.cal-chart-wrap {
    padding: 20px;
}

#calibration-validations .list-row {
    border-left: 3px solid transparent;
}
.cal-val-pour {
    width: 300px;
}
.cal-val-strength {
    width: 160px;
}
.cal-val-maturity {
    width: 160px;
}




#calibration-edit-dlg {
    padding: 20px;
}
#calibration-edit-dlg .formItem {
    padding-bottom: 10px;
    padding-right: 10px;
    float: left;
} 
#calibration-edit-dlg .formItem label {
    font-size: 12px;
} 
#calibration-edit-dlg .formItem label:after {
    content: '';
} 
#calibration-edit-dlg .formItem input {
    width: 130px;
} 
#calibration-edit-dlg .formItemExample {
    font-style: italic;
    font-size: 10px;
    padding: 2px 0 0 7px;
}
#calibration-edit-dlg .formItem-inputCheckbox {
}
#calibration-edit-dlg .formItem-inputCheckbox .formItemInput {
    overflow: auto;
    background: #f0f0f0;
    border: 1px solid #bbb;
    border-radius: 2px;
}
#calibration-edit-dlg .formItem-inputCheckbox .formItemInput input[type="text"] {
    float: left;
    border-color: transparent;
    border-width: 0;
    width: 100px;
}
#calibration-edit-dlg .formItem-inputCheckbox .formItemInput input[type="checkbox"] {
    float: left;
    width: auto;
    margin: 6px 7px;
}
#calibration-edit-dlg .formItem-inputCheckbox.disabled .formItemInput input[type="text"] {
    background: transparent;
    color: transparent;
}

#calibration-edit-dlg #formItem-name {
    font-size: 16px;
}
#calibration-edit-dlg #name {
    width: 284px;
}
#calibration-edit-dlg #batchDate {
    cursor: pointer;
} 
#calibration-edit-dlg #formItem-method {
    display: none;
}

#cal-calc-wrap {
    max-width: 900px;
}
#cal-calc-btn {
    clear: both;
    width: 250px;
    margin: 0px auto;
    display: block;
}
#cal-calc-dlg form {
    overflow: auto;
}
#cal-calc-input {
    width: 200px;
    float: left;
}
#cal-calc-swap {
    width: 65px;
    float: left;
    text-align: center;
}
#cal-calc-results {
    width: 200px;
    float: left;
}
#cal-calc-btns {
    padding-top: 30px;
    clear: both;
    width: 100%;
}
#cal-calc-form label {
    font-size: 14px;
    display: block;
    padding-bottom: 3px;
}

.cal-calc-for-strength,
.cal-calc-for-maturity {
    display: none;
}
#cal-calc-form.calc-strength .cal-calc-for-strength {
    display: block;
}
#cal-calc-form.calc-maturity .cal-calc-for-maturity {
    display: block;
}

#formItem-inputValue {
    border-radius: 3px;
    border: 1px solid #bbb;
    padding: 10px 10px;
    overflow: auto;
}
#formItem-inputValue .formItemInput {
    float: left;
}
#formItem-inputValue input {
    border-width: 0;
    outline-width: 0;
    box-shadow: none;
    width: 100px;
    padding: 0;
    font-size: 16px;
    line-height: 16px;
}
#formItem-inputValue #cal-calc-input-units,
#cal-calc-results-wrap #cal-calc-result-units {
    float: right;
    font-size: 11px;
    line-height: 20px;
    color: #999;
    padding-right: 5px;
}
    
#cal-calc-results-wrap {
    border-radius: 3px;
    border: 1px solid #f0f0f0;
    padding: 10px 10px;
    overflow: auto;
    background: #f7f7f7;
}
#cal-calc-result {
    float: left;
    font-size: 16px;
    line-height: 20px;
}
#cal-calc-results .cal-calc-result-type {
    display: none;
    font-size: 12px;
}
#cal-calc-results.strength #cal-calc-results-wrap,
#cal-calc-results.maturity #cal-calc-results-wrap {
    display: block;
}

#cal-calc-results.strength #cal-calc-result-type-strength {
    display: block;
}
#cal-calc-results.maturity #cal-calc-result-type-maturity {
    display: block;
}
#cal-calc-calc-btn {
}
#cal-calc-clear-btn {
}


#user-account-edit-form {
}
#user-account-edit-form .formItem {
    margin-bottom: 10px;
}
#user-account-edit-form .formItem label {
    font-size: 12px;
}
#user-account-edit-form .formItem label:after {
    content: '';
}
#user-account-edit-form .formItem .formItemInput {
}
#user-account-edit-form .formItem .formItemExample {
    font-size: 11px;
    font-style: italic;
    padding-top: 3px;
}
#user-account-edit-form #email,
#user-account-edit-form #company {
    width: 317px;
}
#user-account-edit-form #formItem-firstName,
#user-account-edit-form #formItem-lastName,
#user-account-edit-form #formItem-password,
#user-account-edit-form #formItem-confirm {
    float: left;
}
#user-account-edit-form #firstName,
#user-account-edit-form #lastName,
#user-account-edit-form #password,
#user-account-edit-form #confirm {
    width: 150px;
}
#user-account-edit-form #formItem-company {
    clear: left;
}

.user-account-edit-form #formItem-mobile {
    overflow: auto;
}
.user-account-edit-form #formItem-mobile .formItem {
    padding: 0 13px 0 0;
}
.user-account-edit-form #formItem-mobile .formItem label,
.user-account-edit-form #formItem-mobile .formItem .formItemExample {
    display: none;
}

.user-account-edit-form #formItem-countryCode,
.user-account-edit-form #formItem-mobileNumber {
    float: left;
}
.user-account-edit-form #formItem-countryCode select {
    width: 100px;
    min-width: 0;
}

.user-account-edit-form #number-test-btn {
    font-size: 12px;
    line-height: 16px;
    border-radius: 3px;
    color: #777;
}
.user-account-edit-form #number-test-btn:hover {
    background: #f6f6f6;
    cursor: default;
}
.user-account-edit-form #number-test-btn span {
    display: none;
}
.user-account-edit-form #number-test-btn[state="0"] span[state="0"] { display: block; }
.user-account-edit-form #number-test-btn[state="1"] span[state="1"] { display: block; }
.user-account-edit-form #number-test-btn[state="2"] span[state="2"] { display: block; }
.user-account-edit-form #number-test-btn[state="-1"] span[state="-1"] { display: block; }

.user-account-edit-form #number-test-btn.active {
    border-width: 1;
    border-color: var(--action-color-dark);
    background: var(--action-color);
    color: var(--action-color-dark);
}
.user-account-edit-form #number-test-btn.active:hover {
    background: var(--action-color-light);
}


#user-account-edit-form #user-account-edit-submit-btn {
}


#text-verify-dlg {
}
#text-verify-dlg h3 {
    font-weight: normal;
}
#text-verify-dlg .error-msg {
    display: none;
    background: #fdd;
    color: #a33;
    padding: 20px;
    border: 1px solid #a33;
}
#text-verify-dlg .error-msg.active {
    display: block;
}
#text-verify-dlg #test-phone {
    font-weight: bold;
}

#show-desktop {
    clear: both;
    padding: 20px;
    text-align: center;
    background: var(--bg-light);
}
#show-desktop input {
    font-size: 1.2em;
    color: var(--action-color);
    -webkit-appearance: none;
    border-width: 0;
}

#footer #legal-notice {
    text-align: center;
    font-size: 14px;
    font-style: italic;
}

#achtung-overlay {
    top: 70px;
    width: 350px;
    z-index: 50000;
}
.achtung {
    width: auto;
}
.achtungSuccess .ui-icon.achtung-close-button,
.achtungFail .ui-icon.achtung-close-button {
    background-image: url(/vendor/jquery/jquery-ui/images/ui-icons_e0e0e0_256x240.png);
}

.achtungSuccess .ui-icon.achtung-close-button-hover,
.achtungFail .ui-icon.achtung-close-button-hover {
    background-image: url(/vendor/jquery/jquery-ui/images/ui-icons_ffffff_256x240.png);
}

.achtung .achtung-message-icon {
    background-image: url(/vendor/jquery/jquery-ui/images/ui-icons_e0e0e0_256x240.png);
}
.achtung .wait-icon {
    background-image: url(/vendor/yui/assets/skins/sam/wait.gif);
}

.achtungSuccess { 
    border: 1px solid rgba(77, 181, 89, 1);
    background: rgb(77, 181, 89); 
    background: rgba(77, 181, 89, .9); 
}
.achtungFail { 
    border: 1px solid rgba(225, 55, 35, 1); 
    background: rgb(225, 55, 35); 
    background: rgba(225, 55, 35, .8); 
}
.achtungWait { 
    border: 1px solid rgba(101,128,147, 1);
    background: rgb(101, 128, 147); 
    background: rgba(101,128,147,.9);
}

.achtung .achtung-message {
    display: block;
    width: 85%;
    float: left;
}




































