﻿@charset "utf-8";

/* CSS Document */

@font-face {
  font-family: 'Gilroy';
  src: url("../fonts/Gilroy-Regular.eot");
  src: url("../fonts/Gilroy-Regular.woff") format("woff"), url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../fonts/fa-solid-900.eot");
  src: url("../fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-solid-900.woff2") format("woff2"), url("../fonts/fa-solid-900.woff") format("woff"), url("../fonts/fa-solid-900.ttf") format("truetype"), url("../fonts/fa-solid-900.svg#fontawesome") format("svg");
}

@font-face {
  font-family: 'FontAwesome Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fonts/fa-brands-400.eot");
  src: url("../fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.woff") format("woff"), url("../fonts/fa-brands-400.ttf") format("truetype"), url("../fonts/fa-brands-400.svg#fontawesome") format("svg");
}

@font-face {
  font-family: 'FontAwesome Regular';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fonts/fa-regular-400.eot");
  src: url("../fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-regular-400.woff2") format("woff2"), url("../fonts/fa-regular-400.woff") format("woff"), url("../fonts/fa-regular-400.ttf") format("truetype"), url("../fonts/fa-regular-400.svg#fontawesome") format("svg");
}

:root {
  --defaut-font-family: Gilroy, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --default-font-weight: 400;
  --default-border-color: rgb(222, 226, 230);
  --font-family-mf-arial-sans: Arial, sans-serif;
  --light-grey: #D3D3D3;
  --white-smoke: #F5F5F5;
  --product-color: #901e40; /*rgb(144, 30, 64);*/
  --content-center-color: #011a7e; /*rgb(1, 26, 126)*/
  --remit-center-color: #056d78; /*rgb(5, 109, 120)*/
  --forms-center-color: #1f567e; /*rgb(31, 86, 126)*/
  --command-center-color: #005936; /*rgb(0, 89, 54)*/
  --reports-color: #901e40;  /* #a60052; rgb(166, 0, 82)*/
  --button-text-white: #ffffff;
  --brand-bar-height: 14px;
}

* {
  box-sizing: border-box;
}

html {
  /*10px = 0.625rem 12px = 0.75rem 14px = 0.875rem 16px = 1rem (base) */
  font-size: 87.5%;
  font-family: var(--defaut-font-family);
}

body {
  margin: 0;
  background-repeat: no-repeat;
  background-attachment: fixed;  
  font-weight: 400;
}

/* global */

::-webkit-calendar-picker-indicator {
  margin-left: 0;
  padding-left: 0;
}

.fa,
.fas {
  font-family: 'FontAwesome';
  font-weight: 900;
}

.fab {
  font-family: 'FontAwesome Brands';
  font-weight: 400;
}

.far {
  font-family: 'FontAwesome Regular';
  font-weight: 400;
}

/* Product colors*/

.commandcenter-color {
  background-color: var(--command-center-color);
}

.contentcenter-color {
  background-color: var(--content-center-color);
}

.formscenter-color {
  background-color: var(--forms-center-color);
}

.remitcenter-color {
  background-color: var(--remit-center-color);
}

.reports-color {
  background-color: var(--reports-color);
}

.product-first-content-focused {
  font-weight: bold;
  color: white;
}

.product-first-content-unfocused {
  font-weight: bold;
  color: black;
}

.product-last-content-focused {
  color: white;
}

.product-last-content-unfocused {
  color: black;
}

/* product parts */

.error-page {
  background-color: brown;
}

.error-page-color {
  background-color: brown;
}

.brandbar {
  background-color: var(--product-color);
  height: var(--brand-bar-height);
}

.topbar {
  display: flex;
  height: 30px;
  justify-content: flex-end;
  align-items: center;
}

.user-info-label {
  color: white;
  float: right;
  margin-right: 15px;
}

.product-tab {
  float: left;
  font-size: medium;
  padding-left: 8px;
  padding-right: 8px;
  height: 100%;
  display: table;
}

.product-tab-link,
.product-tab-link:hover,
.product-tab-link:focus,
.product-tab-link:active,
.product-tab-link:visited {
  display: table-cell;
  border-style: None;
  text-decoration: none;
  vertical-align: middle;
}

.product-tab-link label {
  margin: auto !important;
  color: black !important;
  cursor: pointer !important;
}

.product-tab-mob {
  font-size: medium;
  padding: 5px 20px 5px 20px;
}

.product-tab-tool {
  float: right;
  font-size: medium;
  padding-left: 15px;
  padding-right: 5px;
  top: 0px !important;
  height: 100%;
  display: table;
}

.product-tab-tool:hover,
.product-tab-tool:active {
  background-color: lightgrey;
}

.product-tab-logo {
  border: 0px;
  width: 19px;
  height: 19px;
}

.product-border {
  border: 1px solid var(--product-color);
}

  .product-border:focus {
    border-color: var(--product-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(144, 30, 64, 0.25);
  }

.unfocused-tab {
  background-color: white;
}

/* buttons */

.btn-product {
  color: var(--button-text-white);
  text-decoration: none;
  background-color: var(--product-color);
  border-color: var(--product-color);
}

.btn-product:hover,
.btn-product:active,
.btn-product:focus {
  color: var(--button-text-white) !important;
  background-color: var(--product-color);
  border: 1px solid var(--product-color);
  filter: brightness(1.35);
}

.btn-product.disabled, .btn-product:disabled {
  background-color: var(--product-color);
  filter: brightness(1);
}

.btn-content-center {
    color: var(--button-text-white);
    text-decoration: none;
    background-color: var(--content-center-color);
    border-color: var(--content-center-color);
  }

.btn-content-center:hover,
.btn-content-center:active,
.btn-content-center:focus {
  color: var(--button-text-white) !important;
  filter: brightness(1.35);
}

.btn-remit-center {
  color: var(--button-text-white);
  text-decoration: none;
  background-color: var(--remit-center-color);
  border-color: var(--remit-center-color);
}

.btn-remit-center:hover,
.btn-remit-center:active,
.btn-remit-center:focus {
  color: var(--button-text-white) !important;
  filter: brightness(1.35);
}

.btn-form-center {
  color: var(--button-text-white);
  text-decoration: none;
  background-color: var(--forms-center-color);
  border-color: var(--forms-center-color);
}

.btn-form-center:hover,
.btn-form-center:active,
.btn-form-center:focus {
  color: var(--button-text-white) !important;
  filter: brightness(0.9);
}

.btn-command-center {
  color: var(--button-text-white) !important;
  text-decoration: none;
  background-color: var(--command-center-color);
  border-color: var(--command-center-color);
}

.btn-command-center:hover,
.btn-command-center:active,
.btn-command-center:focus {
  color: var(--button-text-white) !important;
  filter: brightness(0.85);
}

.btn-report {
  color: var(--button-text-white);
  text-decoration: none;
  background-color: var(--reports-color);
  border-color: var(--reports-color);
}

.btn-report:hover,
.btn-report:active,
.btn-report:focus {
  color: var(--button-text-white) !important;
  filter: brightness(1.35);
}

.btn-gray {
  color: var(--button-text-white);
  background-color: #999999;
  border-color: #999999;
}

.btn-gray:hover,
.btn-gray.hover,
.btn-gray:focus,
.btn-gray.focus {
  color: var(--button-text-white);
  background-color: #808080;
  border-color: #808080;
}

.btn-gray:active,
.btn-gray.active,
.open > .dropdown-toggle.btn-gray {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .125);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .125);
  color: var(--button-text-white);
  background-color: #606060;
  border-color: #606060;
}

.btn-gray:active:hover,
.btn-gray.active:hover,
.open > .dropdown-toggle.btn-gray:hover,
.btn-gray:active:focus,
.btn-gray.active:focus,
.open > .dropdown-toggle.btn-gray:focus {
  outline: 0px auto -webkit-focus-ring-color;
  outline-offset: 0px;
  color: var(--button-text-white);
  background-color: #606060;
  border-color: #606060;
}

.btn-gray:active,
.btn-gray.active,
.open > .dropdown-toggle.btn-gray {
  background-image: none;
}

.btn-gray.disabled:hover,
.btn-gray[disabled]:hover,
fieldset[disabled] .btn-gray:hover,
.btn-gray.disabled:focus,
.btn-gray[disabled]:focus,
fieldset[disabled] .btn-gray:focus {
  background-color: #808080;
  border-color: #333;
}

.btn-gray .badge {
  color: var(--button-text-white);
  background-color: #303030;
}

.btn-link {
  background: none;
  border: none;
  display: inline;
  font: inherit;
  outline: none;
  /* Additional styles to look like a link */
  color: blue;
  cursor: pointer;
  text-decoration: none;
}

.btn-link:hover {
  background: none;
  border: none;
  display: inline;
  font: inherit;
  outline: none;
  /* Additional styles to look like a link */
  color: blue;
  cursor: pointer;
  text-decoration: underline;
}

.btn-link:disabled {
  background: none;
  border: none;
  display: inline;
  font: inherit;
  outline: none;
  /* Additional styles to look like a link */
  color: gray;
  cursor: default;
  text-decoration: none;
}

.btn-flat {
  background: white;
  border: none;
  border-radius: 0;
  color: black;
  font: inherit;
  outline: none;
  cursor: pointer;
}

  .btn-flat:focus,
  .btn-flat:active:focus,
  .btn-flat.active:focus {
    border: #B6BBC1;
    outline: none;
    box-shadow: none;
  }

.btn-flat:hover {
  background: #DDE0E3;
  color: black;
  cursor: pointer;
}

.btn-flat:disabled,
.btn-flat.disabled:hover,
.btn-flat[disabled]:hover,
.btn-flat.disabled:focus,
.btn-flat[disabled]:focus {
  background: #B6BBC1;
  color: black;
  cursor: default;
}

.btn-spacers {
  width: 15px;
  background-image: -webkit-linear-gradient(top, #fff, #808080, #fff);
  background-image: -moz-linear-gradient(top, #fff, #808080, #fff);
  background-image: -o-linear-gradient(top, #fff, #808080, #fff);
  background-image: linear-gradient(top, #fff, #808080, #fff);
  background-size: 1px 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

/* checkboxes */

.mf-check-box {
  display: inline-flex;
  position: relative;
  height: 1.2rem;
  width: 1.2rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  border: 1px solid black;
  border-radius: 4px;
  outline: none;
  transition-duration: 0.3s;
  background-color: #ffffff;
  cursor: pointer;
}

.mf-check-box:checked::before {
  content: '\2713';
  display: block;
  text-align: center;
  color: var(--product-color);
  position: absolute;
  font-size: .9em;
  font-weight: bolder;
  left: 0.2rem;
  top:-.2rem;
}

.mf-check-box:active {
  border: 2px solid grey;
}

/* Dialogs */

.boxshadow {
  -moz-box-shadow: 3px 3px 5px #535353;
  -webkit-box-shadow: 3px 3px 5px #535353;
  box-shadow: 5px 5px 5px #535353;
}

.roundbox {
  -moz-border-radius: 6px 6px 6px 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px 6px 6px 6px;
}

/* Bootstrap */

.btn {
  display: inline-block;
  padding: 0.25rem 0.5rem;
}

.content {
  padding-left: 20px;
  padding-right: 20px;
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
  text-decoration: none;
  vertical-align: bottom;
  border: none;
}

.form-control {
  height: calc(1.5em + 0.5rem + 2px) !important;
  padding: 0.25rem 0.5rem !important;
  font-size: 1rem;
  line-height: 1.5;
}

.input-group-text {
  padding: 0.25rem 0.5rem !important;
}

.form-control-inline {
  display: inline-block;
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.25rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.2rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control-date {
  padding-right: 1px !important; /*push buttom extreme right*/
}

.form-group-sm {
  margin-bottom: .35rem;
}

.open > a {
  outline: 0;
}

.open > .dropdown-menu {
  display: block;
}

.tab-pane {
  overflow-x: auto;
}

/*margins*/

.m-t-0 {
  margin-top: 0px !important;
}

.m-t-5 {
  margin-top: 5px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.m-b-0 {
  margin-bottom: 0px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.m-l-0 {
  margin-left: 0px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.m-r-0 {
  margin-right: 0px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

/* anchors */

a:link {
    color: #000099;
}

a:visited {
    color: #000066;
}

a:hover {
    color: #6600CC;
}

a:active {
    color: #3333FF;
}

.TimeoutPanel {
  text-align: center;
  border: solid 2px black;
  background-color: #ffffff;
  font-size: small;
  z-index: 6001 !important;
}

.TimeoutBackground {
    background-color: #aac0f9;
    opacity: 0.3;
    z-index: 6000 !important;
}

.imgbg {
    position: fixed;
    z-index: 999999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.level1 {
    font-family: Sans-Serif;
    background-color: #eeeeee;
    font-size: small;
    padding: 2px !important;
    border: 1px solid gray;
    white-space: nowrap !important;
}

.level2,
.level3,
.level4,
.level5,
.level6,
.level7,
.level8 {
    font-family: Sans-Serif;
    background-color: #eeeeee;
    font-size: small;
    white-space: nowrap !important;
}

.level2 ul,
.level3 ul,
.level4 ul,
.level1 ul,
.level5 ul,
.level6 ul,
.level7 ul,
.level8 ul {
    border: 1px solid gray;
}

.level2 li,
.level3 li,
.level4 li,
.level5 li,
.level6 li,
.level7 li,
.level8 li,
.level1 li {
    padding: 2px !important;
    border: 1px solid #eeeeee !important;
}

.level2 ul li:hover,
.level3 ul li:hover,
.level4 ul li:hover,
.level5 ul li:hover,
.level6 ul li:hover,
.level7 ul li:hover,
.level8 ul li:hover,
.level1 ul li:hover {
    border: 1px solid black !important;
}

.scrollbar-measure {
    width: 100px;
    height: 100px;
    overflow: scroll;
    position: absolute;
    top: -9999px;
}

.busy-panel-overlay {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: none;
  background-color: #000;
  z-index: 1000500;
  opacity: 0.5;
}

  .busy-panel-overlay div {
    height: 60px;
    width: 150px;
  }

  .busy-panel-overlay img {
    display: inline-block;
    padding-left: 12px;
    padding-top: 12px;
  }

  .busy-panel-overlay label {
    display: inline-block;
    font-size: 1rem;
    color: var(--product-color);
  }

.divBusyMain {
    position: fixed;
    z-index: 9999;
    left: 45%;
    top: 45%;
    height: 60px;
    width: 150px;
    background-color: #0E80BF;
    color: White;
    border-collapse: collapse;
}

.divBusyImg {
    padding-left: 12px;
    padding-top: 12px;
    float: left;
}

.divBusyText {
    color: white;
    font-size: small;
    font-weight: bold;
    display: inline-block;
    padding-left: 12px;
    padding-top: 20px;
    float: left;
}

a.morelink:visited {
    color: #0254EB;
}

a.morelink {
    color: #0254EB;
    text-decoration: none;
    outline: none;
}

.notes {
    overflow: auto;
    border: 1px solid;
    /*height:200px;*/
    height: 150px;
    background-color: #eeeeee;
    width: 99.6%;
}

.note {
    padding: 10px;
    width: 95%;
}

.note-user {
    color: #3b5998;
    font-weight: bold;
    display: block;
}

.note-date {
    color: #999;
    font-size: 11px;
}

.note-delete {
  background-image: url('../Content/images/delete-small.png');
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  padding-right: 16px;
  display: inline-block;
  border-style: none;
  cursor: pointer;
}

/*File upload*/

.files {
    overflow: auto;
    border: 1px solid;
    height: 200px;
    background-color: #eeeeee;
    /* width:99.6%; */
    margin-top: 5px;
}

.file {
    padding: 5px;
    /*  width: 95%; */
}

.dxmLite .dxm-horizontal.dxmtb .dxm-spacing {
    width: 1px;
    min-width: 1px;
}

/* Annotations */
#draggable-wrapper {
    left: 0;
    top: 0;
    position: relative;
    z-index: 50;
}

.draggableContent {
    position: absolute !important;
}

.draggableContent img {
    width: 100%;
    height: 100%;
    margin: 0;
}

.draggableContent #additional-info {
    background-color: #ccc;
    float: right;
    /*font-size:8px;*/
}

a.delete-annotation:link {
    font-size: 12px;
    text-decoration: none;
    color: red;
    float: right;
    font-weight: bold;
    padding-right: 10px;
}

a.delete-annotation:visited {
    font-size: 12px;
    text-decoration: none;
    color: red;
    float: right;
    font-weight: bold;
    padding-right: 10px;
}

a.delete-annotation:hover {
    font-size: 12px;
    text-decoration: none;
    color: red;
    float: right;
    font-weight: bold;
    padding-right: 10px;
}

a.delete-annotation:active {
    font-size: 12px;
    text-decoration: none;
    color: red;
    float: right;
    font-weight: bold;
    padding-right: 10px;
}

.sticky-note-text {
    white-space: pre-line;
}

.sticky-note-img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 24px;
	height: 24px;
	max-width: 24px;
	max-height: 24px;
}

/*Bin content & Document Properties Grid*/

.ui-jqgrid .ui-jqgrid-btable {
    table-layout: auto;
}

.ui-jqgrid tr.jqgrow td {
    white-space: normal !important;
    height: auto;
    vertical-align: text-top;
}

.GridStyle {
    border: 1px solid #ccc;
}

.HeaderStyle {
    position: absolute;
    background-color: #fff;
    font-weight: normal;
    color: black;
    text-align: center;
    line-height: 17px;
    font-size: 11px;
    padding: 0;
    margin-top: -3px;
    border: 1px solid #ccc;
}

.RowStyle {
    /*background-color: #f9f9f9;*/
    color: black;
    text-align: center;
    /*border: 1px solid #ccc;*/
    line-height: 17px;
    font-size: 11px;
}

/*---------------*/

.open-tree {
    width: 15px;
    height: 15px;
    background: url('../Content/images/open.gif');
    display: inline-block;
}

.close-tree {
    width: 15px;
    height: 15px;
    background: url('../Content/images/close.gif');
    display: inline-block;
}

.move-copy {
    float: right;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align: baseline;
    border-top: 6px solid #8b1b3f;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    content: "";
}

.box {
    width: 25px;
    height: 20px;
    border: 1px solid;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    margin-right: 5px;
    top: 5px;
}

.menu {
  display: inline-block;
  padding: 5px 5px 0 5px;
}

.menu-item {
  margin-bottom: 0;
  /*margin-top: 6px;*/
  min-width: 65px;
}

.toggle {
    display: none;
}

#Header .dx-vam {
    font-size: 20px;
    color: #333;
    font-family: 'Trade Gothic W01 Bold_2';
    font-weight: bold;
}

/* Submenu placement itself */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu > a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover > a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left > .dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    color: #333 !important;
    background-color: #CCCCCC !important;
}


/* --login--*/

.login-brandbar {
  display: inline;
  position: absolute;
  top: 0;
  background-color: var(--product-color);
  height: var(--brand-bar-height); 
  width: 100%
}

.login-logo {
  position: absolute;
  border: 0;
  width: 270px;
  height: 46px;
  left: 10px;
  top: 20px;
}

.login-main {
  background-image: url('../Content/images/lines.png');
  background-repeat: repeat-x;
  background-attachment: fixed;
  background-position: center;
}

.login-main-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.login-form-container {
  width: 500px;
  height: 500px;
  background-image: url('../Content/images/product-circle.png');
  background-repeat: no-repeat;
  background-size: 500px;
}

.login-form {
  flex-direction: column !important;
  justify-content: center;
  align-items: center;
  padding: 120px 125px 0 125px;
}

.password-change-form {
  flex-direction: column !important;
  justify-content: center;
  align-items: center;
  padding: 100px 125px 0 125px;
}

.login-form-group {
  border: none;
  margin-bottom: 15px;
}

.login-form-group-password-confirm {
  display: flex;
  flex-direction: column !important;
  border: none;
}

.login-btn-group {
  display: flex;
  justify-content: center;
}

.login-errors-summary {
  height: 19px;
  min-height: 19px !important;
  margin-bottom: 5px;
}

.login-dll-version {
  position: absolute;
  left: 10px;
  top: 76px; /*Add from logo*/ 
  background-color: white;
  border: 1px solid azure;
  font-family: Verdana;
  font-size: small;
}

.login-web-version {
  position: fixed;
  bottom: 5px;
  left: 0px;
  margin-left: 5px;
  color: black;
  font-family: Verdana;
  font-size: medium;
}

@media screen and (max-width:880px) {
  .login-logo{
    display: none;
  }
  .login-dll-version {
    display: none;
  }
}

@media screen and (max-width:420px) {
  .login-form-container {
    width: 420px;
    height: 420px;
    background-size: 420px;
  }

  .login-form {
    padding: 100px 105px 0 105px;
  }

  .password-change-form {
    padding: 75px 105px 0 105px;
  }
}

/* --logout-- */
.logout-item-desk {
  width: 78px;
  height: 31px;
  text-align: center;
  color: black;
  line-height: 31px;
  display: block;
  /*font-weight: bold;*/
}

.logout-item-mob {
  color: black;
  font-weight: bold;
}

.logout-desk {
  float: right;
  font-size: medium;
  padding-left: 15px;
  padding-right: 5px;
  height: 100%;
  display: table;
}

.logout-desk:hover,
.logout-desk:active {
  background-color: lightgrey;
}

.logout-mob {
    font-size: medium;
    float: left;
}

div.headerbar div.icon {
    display: none;
}

@media screen and (max-width:1224px) {
    div.headerbar div.icon {
        float: right;
        display: inline-block;
        position: absolute;
        right: 10px;
    }
}

.menu-mob {
    min-width: 100px;
    position: absolute;
    right: 10px;
    z-index: 1000;
    padding: 5px 0;
    margin: 2px 0 0;
    background-color: #fff;
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

.menu-a-mob,
.menu-a-mob:link,
.menu-a-mob:hover,
.menu-a-mob:focus,
.menu-a-mob:active,
.menu-a-mob:visited {
    font-size: 24px;
    color: #666666;
    text-decoration: none;
}

.headerbar {
    background-color: white;
    height: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

/*jquery-ui*/

.ui-dialog, .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  background: white;
}

.ui-widget-header {
  border: none;
  background: #eee;
}

.ui-dialog-title {
  color: black;
}

.ui-dialog-titlebar-close {
  background-image: url('../Content/images/ui-icons_777777_256x240.png');
  background-position: -96px -128px;
  background-repeat: no-repeat;
}
  
/* Card Box */
.card-box {
  padding: 20px;
  border: 1px solid rgba(54, 64, 74, 0.05);
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  background-clip: padding-box;
  margin-bottom: 20px;
  background-color: #ffffff;
}

/* Well */
.well {
  background-color: #f4f8fb;
  border: 1px solid #e4e4e4;
}

.wt-no-wrap {
  white-space: nowrap !important;
}

/* Validation error display */
.validation-summary-errors ul {
  padding: 0 !important;
  padding-inline-start: 0 !important;
}