html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  cursor: default;
  font-size: 14px;
  font-family: Arial, sans-serif;
  background-color: #f3f3f3 !important;
}

.modal-open .modal {
  width: 900px;
  margin: 0 auto;
  opacity: 1;
}

.dropdown-menu {
  left: 20px;
  text-align: center;
}

.dropdown-menu .nav-item > :hover {
  background-color: #ccc;
}

ul .nav-item > .active {
  font-weight: bold;
}

.btn.focus,
.btn:focus,
.btn:hover {
  color: #fff !important;
  text-decoration: none;
  outline: none !important;
  box-shadow: none !important;
}

/* Set up layout structure for canvas,toolbar,sidebar,etc. */
#output {
  height: 100%;
}
#WebViewsAppWrapper {
  height: 100%;
  display: flex;
  flex-direction: row;
}
#MainContentView {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0px;
}
#WebViewsCanvas {
  flex: 1;
  overflow: auto;
  -webkit-user-select: none;
  user-select: none;
}

/*CSS for Page design size option*/
.WebViewsCanvasInner {
  position: relative;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.25); /* Show some demarcation of the canvas edge*/
  /*overflow: hidden;*/ /* Do not show elements outside the canvas dimensions or it will cause confusion with selection, etc. */
  transform-origin: 0px 0px;
}

#WebViewsCanvasBody {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
}

/* To keep the crosshair cursor for multi-line mode on static image as full background */
#WebViewsCanvasBody > div {
  cursor: inherit;
}

#WebAdminSidebarWrapper {
  width: auto;
  flex: 0 0 auto;
  z-index: 500;
  height: 100%;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus {
  color: #1f1f1f !important;
  text-decoration: none;
  background-color: #fff !important;
  outline: 0;
  font-weight: bold;
}

.dropdown-menu > .active > a:hover,
.dropdown-menu > .nav-item >  > a:hover {
  background-color: #ccc !important;
}

canvas {
  vertical-align: top;
}

/* General Styles */
div.ellipse {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* Flex-box Classes */
.flexBoxRow {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.flexBoxRowEnd {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.flexBoxRowStretch {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.flexBoxColumn {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flexBoxColumnStretch {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
/* End Flex-box Classes*/

/* Basic Input Overides */
.error {
  border: 2px solid red !important;
}

input:focus:not([type="submit"]):not([type="radio"]):not([type="checkbox"]) {
  border-color: #0e6eb8;
  width: 100%;
  height: 26px;
  resize: none;
  margin: 0px !important;
  padding: 0px 5px;
  min-width: 75px;
  font-size: 12px;
  line-height: 12px;
  border: 1px solid #0e6eb8;
  border-radius: 0px;
  background: #1f1f1f;
  vertical-align: bottom;
  color: #f3f3f3;
}

textarea,
input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not(
    :focus
  ),
select {
  width: 100%;
  height: 26px;
  resize: none;
  margin: 0px !important;
  padding: 0px 5px;
  min-width: 75px;
  font-size: 12px;
  line-height: 12px;
  border: 1px solid #171717;
  border-radius: 0px;
  background: #1f1f1f;
  vertical-align: bottom;
  color: #f3f3f3;
}
select {
  cursor: pointer;
}
select:focus {
  border-color: #0e6eb8;
  border: 1px solid #0e6eb8;
  border-radius: 0px;
}
div:focus {
  border-color: #0e6eb8;
  border: 0px solid #0e6eb8;
  border-radius: 0px;
  outline: 0;
}
select[disabled],
.modal-dialog select[disabled] {
  cursor: not-allowed;
}
input::-ms-clear {
  display: none;
}
/*Dropdown styling for dropdown input arrow*/
select::-ms-expand {
  color: #f3f3f3;
  background: none;
}
/*End DropdownStyling*/

/*  Style to make font color of placeholder text to grey
    - Supports Internet Explorer 10–11 and Internet Explorer Mobile 10-11 */
:-ms-input-placeholder {
  color: #ccc !important;
  opacity: 0.5;
}
/* Overrides for color picker preview box */
.sp-replacer.custom {
  overflow: hidden;
  cursor: pointer;
  padding: 5px;
  border: solid 1px #171717;
  background: #1f1f1f;
  color: #f3f3f3;
  width: 26px;
  height: 26px;
  box-sizing: border-box;
}
.sp-replacer.custom .sp-preview {
  width: 16px;
  height: 16px;
  border: none;
  margin: 0;
  float: none;
  cursor: inherit;
}
.sp-replacer.custom .sp-preview-inner {
  cursor: inherit;
}
.sp-replacer.custom .sp-dd {
  display: none;
}
.sp-replacer.sp-light.sp-disabled {
  cursor: not-allowed;
}
/* End overrides for color picker preview */
/* End Basic Input Overrides */

/* Font Imports */
@font-face {
  font-family: "Glyphicons Halflings";

  src: url("../fonts/glyphicons-halflings-regular.eot");
  src: url("../fonts/glyphicons-halflings-regular.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/glyphicons-halflings-regular.woff") format("woff"),
    url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"),
    url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular")
      format("svg");
}
/* This is used to disable menu options in many places */
.menu-disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}

/* This is used in the Channel Properties Modal - TODO: migrate */
.text-disabled {
  /*pointer events and cursor are allowed*/
  /*can be used for textarea so that when disabled scrolls can be operational, if any*/
  opacity: 0.6;
}
/* This is used in AngularGauge */
.lowered3D {
  border-style: inset !important;
}

.raised3D {
  border-style: outset !important;
}
/* End General Styles */

/* Graph Styling */
/* Note: highcharts-applied classes cannot be encapsulated to the component*/
.highcharts-legend-item tspan {
  /* white-space: pre-wrap; */
}
.highcharts-container {
  width: 100% !important;
  height: 100% !important;
}
/* End Graph Styling */

/* Updated Toolbar/Menu Styles */
.menuBar {
  min-height: 35px;
  line-height: 35px;
  user-select: none;
}
.menuBar * {
  box-sizing: border-box;
}
.lightMenuBar {
  background: linear-gradient(#e6e6e6, #d0d0d0);
  color: #000000;
  z-index: 90;
  /*overflow-x: hidden;*/
}
.darkMenuBar {
  background: #1f1f1f;
  color: #f3f3f3;
  z-index: 90;
  /*overflow-x: hidden;*/
}
.menuOptions {
  display: block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  line-height: 35px;
  float: left;
}
.toolbarListItem {
  display: block;
  position: relative;
  float: left;
  padding: 0 12px 0 10px;
  height: 35px;
  cursor: pointer;
  /*overflow: hidden;*/
  white-space: nowrap;
  transition: color 0.1s ease-in-out;
  -webkit-user-select: none;
  user-select: none;
}
.toolbarListItem:after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  height: 25px;
  width: 0;
  border-left: 1px solid rgba(225, 225, 225, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.menuSubGroup .toolbarListItem:not(:last-child):after {
  display: none;
}
.toolbarListItem:hover {
  background-color: #c1c1c1;
}
.darkMenuBar .toolbarListItem:after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  height: 25px;
  width: 0;
  border-left: 1px solid rgba(225, 225, 225, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.darkMenuBar .toolbarListItem:hover {
  background-color: #333333;
}
.menuNoHover .toolbarListItem {
  cursor: default;
}
.menuNoHover .toolbarListItem:hover,
.darkMenuBar .menuNoHover .toolbarListItem:hover {
  background: transparent;
}
.toolbarListItem:hover:after {
  display: none;
}
.toolbarListItem.arrow {
  position: relative;
  padding: 0 20px 0 10px;
  background-image: url("/icons/gray/arrows/arrow-down.svg");
  background-position: calc(100% - 10px) 50%;
  background-size: 8px 8px;
  background-repeat: no-repeat;
  transition: background 0.1s ease-in-out;
}
.darkMenuBar .toolbarListItem.arrow {
  position: relative;
  padding: 0 20px 0 10px;
  background-image: url("/icons/white/arrows/arrow-down.svg");
  background-position: calc(100% - 10px) 50%;
  background-size: 8px 8px;
  background-repeat: no-repeat;
  transition: background 0.1s ease-in-out;
}
.toolbarMenu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 100;
  padding: 0;
  min-width: 130px;
  white-space: nowrap;
  list-style-type: none;
  background: #ffffff;
  border: 1px solid #c1c1c1;
  transition: all 0.1s ease-in;
}
.toolbarListItem > .toolbarMenu {
  display: none;
  opacity: 1;
  visibility: inherit;
  left: 0px;
  top: 35px;
}
.darkMenuBar .toolbarMenu {
  background: #333333;
  border: 1px solid #606060;
}
.darkMenuBar .toolbarListItem > .toolbarMenu {
  background: #333333;
  border: 1px solid #606060;
}
.toolbarListItem.arrow:hover > .toolbarMenu {
  display: block;
}
.toolbarListItem.disabled {
  background: transparent;
  cursor: default;
  opacity: 0.55;
}
.toolbarListItem.disabled:hover {
  background-color: transparent;
}
.toolbarMenuItem {
  position: relative;
  padding: 0 10px;
  -webkit-user-select: none;
  user-select: none;
}
.toolbarMenuItem:not(:last-child) {
  border-bottom: 1px solid #c1c1c1;
}
.darkMenuBar .toolbarMenuItem:not(:last-child) {
  border-bottom: 1px solid #1f1f1f;
}
.toolbarMenuItem:hover {
  background-color: #f2f2f2;
}
.darkMenuBar .toolbarMenuItem:hover {
  background-color: #444444;
}
.toolbarMenuItem.arrow {
  position: relative;
  padding: 0 20px 0 10px;
  background-image: url("/icons/gray/arrows/arrow-right.svg");
  background-position: calc(100% - 8px) center;
  background-size: 12px 12px;
  background-repeat: no-repeat;
  transition: background 0.1s ease-in-out;
}
.darkMenuBar .toolbarMenuItem.arrow {
  background-image: url("/icons/white/arrows/arrow-right.svg");
}
.toolbarMenuItem.arrow:hover > .toolbarMenu {
  visibility: visible;
  opacity: 1;
}
/*checked icon used in Toolbars*/
.checkedMenuIcon {
  color: white;
  font-size: 12px;
  vertical-align: middle;
}

.checkedMenuIcon.glyphicon-ok::before {
  content: "";
  height: 14px;
  width: 14px;
  display: block;
  background-image: url("/icons/white/checkbox-checked.svg");
  background-position: center;
  background-size: 21px;
}

.toolbarMenuItem .checkedMenuIcon {
  padding: 0 10px 0 0;
}
.toolbarMenuItem[disabled],
.toolbarMenuItem.disabled {
  opacity: 0.55;
  cursor: default;
}
/* End Updated Toolbar/Menu Styles */

/* Modal Flex Table Styling */
.modalTable {
  display: flex;
  flex-direction: column;
}
.lightTable {
  background: #f2f2f2;
}
.darkTable {
  background: #333333;
  color: #f3f3f3;
  border-spacing: 10px;
}
.darkestTable {
  background: #1f1f1f;
  color: #f3f3f3;
}
.modalTable .flexrow {
  display: flex;
  flex-direction: row;
  min-width: 0px;
  align-items: flex-start;
  /*min-height: 20px;*/
}
.modalTable .flexrow.headers {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  height: 20px;
  align-items: center;
  flex: 0 0 auto;
  min-height: 0px;
}
.lightTable .flexrow.headers {
  background: #c0c0c0;
}
.darkTable .flexrow.headers,
.darkestTable .flexrow.headers {
  background: #444444;
}
.modalTable .flexrow.headers > div.sortable {
  cursor: pointer;
}
.modalTable .flexrow.headers > div:not(:last-child):after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  height: 16px;
  width: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
/* Sort Arrows */
.modalTable .flexrow.headers .sort {
  background-image: url("/icons/gray/arrows/arrow-up.svg");
  background-position: calc(100% - 5px) 50%;
  background-size: 8px 8px;
  background-repeat: no-repeat;
}
.modalTable .flexrow.headers .sort.reverse {
  background-image: url("/icons/gray/arrows/arrow-down.svg");
}
.darkTable .flexrow.headers .sort {
  background-image: url("/icons/white/arrows/arrow-up.svg");
}
.darkTable .flexrow.headers .sort.reverse {
  background-image: url("/icons/white/arrows/arrow-down.svg");
}

.modalTable .flexrow .expander {
  height: 20px;
  width: 22px;
  flex: 0 0 auto;
  cursor: pointer;
  background-image: url("/icons/white/arrows/arrow-down.svg");
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: 100% 50%;
}
.modalTable .flexrow .expander.closed {
  height: 20px;
  width: 22px;
  flex: 0 0 auto;
  cursor: pointer;
  background-image: url("/icons/white/arrows/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: 100% 50%;
}
.modalTable .flexrow > div {
  padding: 0px 5px;
  flex: 1 1 0px;
  min-width: 0px;
  position: relative;
  cursor: inherit;
}
.modalTable .flexrow > div:first-child {
  padding-left: 10px;
}
.modalTable .flexrow.child > div:first-child {
  padding-left: 27px;
}
.modalTable .flexrow > div:last-child {
  padding-right: 10px;
}
.modalTable .tableBody {
  flex: 1 1 0px;
  min-height: 0px;
}
.lightTable .tableBody .flexrow:nth-child(2n) {
  background: #e9e9e9;
}
.lightTable .tableBody .flexrow:nth-child(2n + 1) {
  background: #f2f2f2;
}
.lightTable .tableBody .flexrow:hover {
  background: #d5d5d5;
}
.darkTable .tableBody .flexrow:nth-child(2n) {
  background: #404040;
}
.darkTable .tableBody .flexrow:nth-child(2n + 1) {
  background: #333333;
}
.darkTable .tableBody .flexrow:hover {
  background: #555555;
}
.darkestTable .tableBody .flexrow {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.darkestTable .tableBody .flexrow:hover {
  background: #555555;
}
.modalTable .tableBody .flexrow.selected {
  background: #007bc1;
}
.darkestTable .tableBody .flexrow.selected {
  background: #444444;
}
.modal .flexrow > .checkbox {
  flex: 0 0 auto;
  height: 15px;
  width: 15px;
  margin-right: 5px;
  background-image: url("/icons/white/checkbox-unchecked.svg");
  background-size: 100% 100%;
  cursor: pointer;
  padding: 0 !important;
  margin: 0 5px 0 10px;
}
.modal .flexrow > .checkbox.checked {
  background-image: url("/icons/white/checkbox-checked.svg");
}
.modal .flexrow > .checkbox.partial {
  background-image: url("/icons/white/checkbox-partial.svg");
}
/* End Modal Flex Table Styling */

.iconInformation {
  height: 20px;
  width: 20px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/icons/white/components/StatusInformation_16x.svg");
  margin-top: 7px;
  margin-bottom: 7px;
}

.iconWarning {
  height: 20px;
  width: 20px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/icons/white/components/StatusWarning_exp_16x.svg");
  margin-top: 7px;
  margin-bottom: 7px;
}

.iconError{
  height: 20px;
  width: 20px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/icons/StatusCriticalError_16x.svg");
  margin-top: 7px;
  margin-bottom: 7px;
}
/*Toggle Switch - this is used by the graph propertieseditorcontrols
    we need to convert that and everything that's using it before we can
    remove this.
*/
.ToggleSwitch {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 24px;
  background: #303233;
  border-radius: 3px;
  cursor: pointer;
}
.ToggleSwitch-button {
  position: absolute;
  width: 24px;
  height: 24px;
  background: #5a5b5e;
  border-radius: 3px;
  transition: all 150ms, cubic-bezier(0.4, 0, 0.2, 1);
}
.ToggleSwitch-button:hover {
  background: #008aca;
}
.ToggleSwitch-button--on {
  transform: translateX(38px);
  background: #008aca;
}
.ToggleSwitch-button--off {
  transform: translateX(0px);
}
.ToggleSwitch-on {
  float: left;
  padding-left: 5px;
  line-height: 24px;
}
.ToggleSwitch-off {
  float: right;
  padding-right: 5px;
  line-height: 24px;
}
/* End wrong Toggle Switch styles*/

/* Custom Modal Size Definitions
    Boostrap doesn't let you specify the size of the modal directly, it has to be done
    using classes, unfortunately.
*/
/* Fixed Size */
.modalAutox470 {
  width: auto;
  height: 470px;
} /* Channel Picker Popup */

/* Responsive Size */
.modalMax350360 {
  max-width: 440px;
  width: 90%;
  height: 90%;
  max-height: 360px;
} /* First dialog of custom style(StylePickerModal)  */
.modalMax460470 {
  max-width: 460px;
  width: 90%;
  height: 90%;
  max-height: 470px;
} /* Second dialog of custom style(CreateEditStyleModal)  */
.modalMax1000x550 {
  max-height: 550px;
  max-width: 1000px;
  height: 80%;
  width: 80%;
  background: #1f1f1f;
} /* Reports */
.modalMax900x400 {
  height: 90%;
  width: 100%;
  max-height: 400px;
  max-width: 900px;
} /* Custom Reports */
.modalMax600x700 {
  height: 90%;
  width: 90%;
  max-height: 700px;
  max-width: 600px;
} /* Graph Data Analysis */
.modalMax600x610 {
  height: 90%;
  width: 90%;
  max-height: 610px;
  max-width: 600px;
} /* Alarm Filter Definition */
.modalMax600x450 {
  height: 90%;
  width: 90%;
  max-height: 450px;
  max-width: 600px;
} /* Custom Report */
.modalMax450x610 {
  height: 90%;
  width: 90%;
  max-height: 610px;
  max-width: 450px;
} /*Channel Report */
.modalMax450x610FullHeight {
  height: 100%;
  width: 90%;
  max-height: 630px;
  max-width: 450px;
} /* Alarm Detail */
.modalMax450x450 {
  height: 90%;
  width: 90%;
  max-height: 450px;
  max-width: 450px;
} /* Load Graph, Save Graph */
.modalMax400x400 {
  height: 90%;
  width: 90%;
  max-height: 400px;
  max-width: 400px;
} /* Alarm Filter Save/Load, Report Format */
.modalMax400x300 {
  height: 90%;
  width: 90%;
  max-height: 300px;
  max-width: 400px;
}
/* Login page */
.modalMax400x340 {
  height: 90%;
  width: 90%;
  max-height: 340px;
  max-width: 425px;
}
.modalMax960x470 {
  height: 90%;
  width: 100%; /* To make sure, it takes max space available on IPad [when used in Portrait mode / Vertical ] */
  max-height: 470px;
  max-width: 960px;
}
.modalMax1035x470 {
  height: 90%;
  width: 100%; /* To make sure, it takes max space available on IPad [when used in Portrait mode / Vertical ] */
  max-height: 470px;
  max-width: 1035px;
}
/* End Custom Modal Size definitions*/

/* Custom Styling for Modal Dialog (Bootsrap Overrides) */
/* Basic Styles */
.modal-dialog {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: default;
}
.modal.fade .modal-dialog {
  opacity: 1;
  position: absolute;
  left: 33%;
  top: 27%;
  margin: 0px;
}
.modal.in .modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* this will remove the animation to make the dragging smoother */
  transition: none;
  margin: 0px;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: hidden;
  opacity: 1;
}
.show {
  display: block;
  opacity: 1;
}
.modal-content {
  height: 100%;
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #333333;
  border: 1px solid #0f0f0f;
  border-radius: 0px;
  color: #f3f3f3;
}
.modal-header {
  height: 36px;
  padding: 0px 10px;
  background: #007bc1;
  border-bottom: 0px solid #0f0f0f;
  color: #f3f3f3;
}
.modal-header .close {
  height: 20px;
  width: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/icons/white/close.svg");
  margin: 7px 0;
  cursor: pointer;
  outline: none;
  opacity: 1;
}
.modal-header .close:hover,
.modal-header .close:focus {
  opacity: 1;
}
.modal-title {
  height: 100%;
  font-size: 14px;
  line-height: 34px;
  margin: 0;
  width: calc(100% - 25px);
  -webkit-user-select: none;
  user-select: none;
}
.modal-header .close span {
  display: none;
}
.modal-body {
  height: calc(100% - 86px); /* minus header and footer */
  padding: 0px;
}
.modal-body.no-footer {
  height: calc(100% - 36px); /* minus header */
  padding: 0px;
}
.modal-body > div {
  height: 100%;
}
.plusButton {
  height: 20px;
  width: 20px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/icons/white/plus.svg");
  cursor: pointer;
}

/* Navigation (Tabs) */
.modal-dialog .nav {
  margin: 0px;
  padding: 0px;
}
.modal-dialog .nav-tabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  height: 50px;
  width: 100%;
  background: #1f1f1f;
}
.modal-dialog .nav-tabs > .nav-item >  {
  margin: 0;
  cursor: pointer;
  height: 50px;
  width: 50px;
  opacity: 0.55;
  display: inline-block;
  color: #f3f3f3;
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-position: center;
}
/* Common styles for tab icons */
.nav-tabs > .nav-item > .nav-link.common-icon {
  background-repeat: no-repeat;
  background-size: 30px 30px;
  color: transparent;
  width: 50px;
  height: 50px;
  position: relative;
  background-position: center;
  display: inline-block;
  opacity: 0.55;
}
.nav-tabs > .nav-item > .nav-link.general,
 .WCModalTabIcon.general{
  background-image: url("/icons/white/settings.svg");
}
.nav-tabs > .nav-item > .nav-link.textbox,
.WCModalTabIcon.text {
  background-image: url("/icons/white/components/textbox.svg");
}
.nav-tabs > .nav-item > .nav-link.alarms {
  background-image: url("/icons/white/alarm.svg");
}
.nav-tabs > .nav-item > .nav-link.udf {
  background-image: url("/icons/white/list.svg");
  background-size: 45px 45px;
}
.nav-tabs > .nav-item > .nav-link.udfAlarm {
  background-image: url("/icons/white/channels-24dp-white.svg");
  background-size: 45px 45px;
}
.nav-tabs > .nav-item > .nav-link.advanced {
  background-image: url("/icons/white/advanced.svg");
}
.nav-tabs > .nav-item > .nav-link.equation {
  background-image: url("/icons/white/equation.svg");
}
.nav-tabs > .nav-item > .nav-link.time,
.WCModalTabIcon.time {
  background-image: url("/icons/white/time.svg");
}
.nav-tabs > .nav-item > .nav-link.channels,
.WCModalTabIcon.channels {
  background-image: url("/icons/white/components/channels.svg");
}
.nav-tabs > .nav-item > .nav-link.format,
.WCModalTabIcon.format {
  background-image: url("/icons/white/format.svg");
}
.nav-tabs > .nav-item > .nav-link.priority {
  background-image: url("/icons/white/priority.svg");
}
.nav-tabs > .nav-item > .nav-link.graph,
.WCModalTabIcon.graph {
  background-image: url("/icons/white/components/graph.svg");
}
.nav-tabs > .nav-item > .nav-link.aggregation {
  background-image: url("/icons/white/aggregate.svg");
}
.modal-dialog .nav-tabs > .nav-item  > a {
  margin: 0px;
  border: none;
  border-radius: 0px;
  height: 100%;
  width: 100%;
  color: transparent;
  font-size: 0px;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}
.modal-dialog .nav-tabs > .nav-item > a:hover {
  border: none;
  background: transparent;
}
.modal-dialog .nav-tabs > .nav-item > :hover {
  opacity: 0.7;
}
.modal-dialog .nav-tabs > .nav-item > .active {
  background-color: #333333;
  opacity: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.modal-dialog .nav-tabs > .nav-item > .active:first-child {
  border-left: none;
}
.modal-dialog .nav-tabs > .nav-item > .active > a {
  border: none;
  color: transparent;
  background: transparent;
}

/* Modal Body (Table Layout) */
.modal-dialog .tab-content {
  height: calc(100% - 50px);
  width: 100%;
  padding: 10px;
  overflow-y: auto;
  overflow-x: auto;
}
.modal-dialog .tab-content table {
  color: #f3f3f3;
  width: 100%;
}
.modal-dialog .tab-content tr {
  height: 35px;
}
.modal-dialog .tab-content td {
  padding-bottom: 5px;
  vertical-align: top;
  white-space: nowrap;
}
.modal-dialog .tab-content tr:last-child > td {
  padding-bottom: 0px;
}
.modal-dialog .tab-content td:not(:last-child) {
  padding-right: 10px;
}
.modal-dialog .tab-content td:last-child {
  width: 100%;
}
.modal-dialog textarea,
.modal-dialog
  input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.modal-dialog select {
  width: 100%;
  resize: none;
  margin: 0px;
  padding: 5px;
  min-width: 75px;
  font-size: 12px;
  border: 1px solid #171717;
  background: #1f1f1f;
  vertical-align: bottom;
  color: #f3f3f3;
}
.modal-dialog select {
  cursor: pointer;
}
.modal-dialog textarea {
  white-space: pre-wrap;
}
.modal-dialog
  .tab-content
  td:last-child:nth-child(2)
  input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.modal-dialog .tab-content td:last-child:nth-child(2) select {
  width: 50%;
}
.modal-dialog .callout textarea,
.modal-dialog .callout input:not([type="checkbox"]):not([type="radio"]),
.modal-dialog .callout select {
  min-width: 55px;
}
.modal-dialog input[type="checkbox"],
.modal-dialog input[type="radio"] {
  width: 20px;
  height: 20px;
  margin: 0px 5px 0px 0px;
  vertical-align: top;
}
.modal-dialog label {
  margin: 0px;
  font-weight: normal;
}
.modal-dialog textarea:focus,
.modal-dialog input:focus,
.modal-dialog select:focus {
  outline: none;
  border-color: #007bc1;
}
.modal-dialog .callout {
  background: #444444;
  border: 1px solid #0f0f0f;
  padding: 10px;
}
.modal-body .descriptionBox {
  padding: 10px;
  background: #444444;
  border: 1px solid #1f1f1f;
  overflow-x: hidden;
}
.modal-body h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 0px 0px 5px 0px;
}
.modal-body table tbody:not(first-child) tr:first-child td {
  padding-top: 5px;
}

/* Footer and Buttons */
.modal-footer {
  height: 50px;
  width: 100%;
  padding: 0px 10px;
  background: #1f1f1f;
  border-top: 0px solid #0f0f0f;
  padding: 10px 10px;
  white-space: nowrap;
  overflow: hidden;
}
.modal-dialog .btn,
.modal-dialog .btn-default {
  width: 130px;
  height: 30px;
  padding: 0px;
  border-radius: 0px;
  border: 1px solid #171717 !important;
  background: #555555;
  background: -moz-linear-gradient(top, #555555 1%, #333333 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #555555),
    color-stop(100%, #333333)
  );
  background: -webkit-linear-gradient(top, #555555 1%, #333333 100%);
  background: -o-linear-gradient(top, #555555 0%, #333333 100%);
  background: -ms-linear-gradient(top, #555555 0%, #333333 100%);
  background: linear-gradient(to bottom, #555555 1%, #333333 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#555555', endColorstr='#333333',GradientType=0 );
  color: #f3f3f3;
}
.modal-dialog .btn-default-100 {
  width: 100px;
  height: 30px;
  padding: 0px;
  border-radius: 0px;
  border: 1px solid #171717 !important;
  background: #555555;
  background: -moz-linear-gradient(top, #555555 1%, #333333 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #555555),
    color-stop(100%, #333333)
  );
  background: -webkit-linear-gradient(top, #555555 1%, #333333 100%);
  background: -o-linear-gradient(top, #555555 0%, #333333 100%);
  background: -ms-linear-gradient(top, #555555 0%, #333333 100%);
  background: linear-gradient(to bottom, #555555 1%, #333333 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#555555', endColorstr='#333333',GradientType=0 );
  color: #f3f3f3;
}
.modal-footer .btn + .btn,
.modal-footer .btn-group .btn + .btn {
  margin-left: 10px;
}
.modal-dialog .btn:not([disabled]):hover,
.modal-dialog .btn-default:not([disabled]):hover {
  background: #5c5c5c;
  background: -moz-linear-gradient(top, #5c5c5c 0%, #3b3b3b 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #5c5c5c),
    color-stop(100%, #3b3b3b)
  );
  background: -webkit-linear-gradient(top, #5c5c5c 0%, #3b3b3b 100%);
  background: -o-linear-gradient(top, #5c5c5c 0%, #3b3b3b 100%);
  background: -ms-linear-gradient(top, #5c5c5c 0%, #3b3b3b 100%);
  background: linear-gradient(to bottom, #5c5c5c 0%, #3b3b3b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5c5c5c', endColorstr='#3b3b3b',GradientType=0 );
}
.modal-dialog .buttonWrapper {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
}
.modal-dialog .buttonWrapper .btn,
.modal-dialog .buttonWrapper .btn-default {
  margin-right: 10px;
}

/* Helper Text */
.popover {
  border: 2px solid #000000;
  padding: 0px;
  max-width: 100%;
  background-color: transparent;
  border-radius: 0px;
}
.popover-title {
  background-color: #606060;
  color: #ffffff;
  font-size: 28px;
  text-align: center;
}
.popover-content {
  background-color: #606060;
  color: #ffffff;
  white-space: pre-wrap;
}
.popover.bottom > .arrow {
  border-bottom-color: #0f0f0f !important;
}
.popover.right > .arrow {
  border-right-color: #0f0f0f !important;
}
.popover.left > .arrow {
  border-left-color: #0f0f0f !important;
}
.popover.top > .arrow {
  border-top-color: #0f0f0f !important;
}
.popover.bottom > .arrow:after {
  border-bottom-color: #606060;
}
.popover.right > .arrow:after {
  border-right-color: #606060;
}
.popover.left > .arrow:after {
  border-left-color: #606060;
}
.popover.top > .arrow:after {
  border-top-color: #606060;
}
.modal-help {
  height: 20px;
  width: 20px;
  float: right;
  background: #007bc1;
  border: 0;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/icons/white/help.svg");
  margin: 7px 5px;
  cursor: pointer;
  outline: none;
  opacity: 1;
}

/* End Custom Styling for Modal Dialogs (Bootstrap Overrides) */

/* Interact Styling */
.interact-selectable {
  cursor: pointer;
}
.interact-selectable.interact-selected {
  cursor: move;
}
.interact-border {
  position: absolute;
  display: none;
  cursor: inherit;
}
.interact-handle {
  display: none;
}
.interact-handle.interact-selected {
  display: none;
}
.interact-handle.interact-focused {
  display: block;
  z-index: 2003;
}
.interact-border.interact-selected {
  position: absolute;
  background-color: transparent;
  top: -3px;
  left: -3px;
  display: block;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  overflow: visible;
  border: 3px solid #00acec;
  z-index: 2001;
}
.interact-border.interact-focused {
  position: absolute;
  background-color: transparent;
  top: -3px;
  left: -3px;
  display: block;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  overflow: visible;
  border: 3px solid #ff0000;
  z-index: 2002;
}
.interact-handle-nw,
.interact-handle-ne,
.interact-handle-sw,
.interact-handle-se,
.interact-handle-n,
.interact-handle-e,
.interact-handle-s,
.interact-handle-w {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border: 1px solid #000000;
  overflow: visible;
  z-index: 2003;
}
.interact-handle-ne {
  top: -10px;
  right: -10px;
  cursor: ne-resize;
}
.interact-handle-se {
  bottom: -10px;
  right: -10px;
  cursor: se-resize;
}
.interact-handle-nw {
  top: -10px;
  left: -10px;
  cursor: nw-resize;
}
.interact-handle-sw {
  bottom: -10px;
  left: -10px;
  cursor: sw-resize;
}
.interact-handle-n {
  top: -10px;
  left: 50%;
  margin-left: -5px;
  cursor: n-resize;
}
.interact-handle-e {
  right: -10px;
  top: 50%;
  margin-top: -5px;
  cursor: e-resize;
}
.interact-handle-s {
  bottom: -10px;
  left: 50%;
  margin-left: -5px;
  cursor: s-resize;
}
.interact-handle-w {
  left: -10px;
  top: 50%;
  margin-top: -5px;
  cursor: w-resize;
}
/* End Interact Styling */

/* Breadcrumb Styling */
.breadcrumbMenuName {
  font-style: inherit;
}
.breadcrumbMenuName:hover {
  text-decoration: underline;
  cursor: pointer;
}
.breadcrumbs {
  color: #ffffff;
}
.breadcrumbsEditMode {
  color: #ff0000;
}
@-webkit-keyframes blinker {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.breadcrumbsLayoutSaveError {
  color: #ffff00;
  -webkit-animation-name: blinker;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 1, 1);
  -webkit-animation-duration: 1.7s;
}

/* End Breadcrumb Styling */

/* DateTime Styling */
/* These styles cannot be migrated yet because the classes are applied by the 3rd
    party react-datetime control. When we go to global styles, they can be moved
    into the DateTime.css file.
*/
.dateTimeWrapper .rdtPicker {
  width: auto;
  background: #444444;
  border: 1px solid #171717;
  padding: 0px;
  margin: 0px;
}
.dateTimeWrapper .rdtPicker .rdtDay,
.dateTimeWrapper .rdtPicker .rdtMonth,
.dateTimeWrapper .rdtPicker .rdtYear {
  background: #444444;
  border: 1px solid #171717;
  padding: 0px !important;
  vertical-align: middle;
}
.dateTimeWrapper .rdtDay:not(.rdtOld):not(.rdtActive):hover,
.dateTimeWrapper .rdtMonth:not(.rdtActive):hover,
.dateTimeWrapper .rdtYear:not(.rdtActive):hover {
  background: #606060;
}
.dateTimeWrapper .rdtDay.rdtOld {
  background: #1f1f1f;
}
.dateTimeWrapper .rdtDay.rdtOld:hover {
  background: #2f2f2f;
}
.dateTimeWrapper .rdtPicker .rdtActive {
  background: #007bc1;
}
.dateTimeWrapper .rdtPicker .rdtActive:hover {
  background: #0f7acc;
}
.dateTimeWrapper .rdtToday:before {
  border-bottom-color: #0e6eb8;
}
.dateTimeWrapper .rdtPicker thead tr:first-child {
  background: #1f1f1f;
}
.dateTimeWrapper .rdtPicker thead tr:first-child th:hover {
  background: #2f2f2f;
}
.dateTimeWrapper .rdtPicker thead tr:first-child th {
  border-color: #171717;
}
.dateTimeWrapper .rdtPicker thead tr:first-child th {
  height: 40px;
  line-height: 40px;
}
.dateTimeWrapper .hideTime.rdt {
  flex: 1 1 0px;
}
.dateTimeWrapper .hideTime .rdtPicker {
  display: none;
}
.dateTimeWrapper .hideTime.rdt input[type="text"] {
  width: 100% !important;
}
/* End DateTime Styling */

/* Graph Styling - These are still used by controls/toggleswitch and graph properties*/
.ToggleSwitch-button--on.commonToggle {
  transform: translateX(30px);
}
.ToggleSwitch-button.ToggleSwitch-button--off.commonToggle,
.ToggleSwitch-button--on.commonToggle {
  height: 30px;
  margin-left: 5px;
}
.ToggleSwitch.commonToggle {
  outline: none;
  height: 30px;
}
/* End Graph Styling */

/* START : Waveform Component Scrollbar Styling : bug# 188481: */
.scrollForWaveformTable {
  overflow-y: auto;
  overflow-x: auto;
}

.scrollForWaveformTable::-webkit-scrollbar {
  -webkit-appearance: none;
}

.scrollForWaveformTable::-webkit-scrollbar:vertical {
  width: 6px;
}

.scrollForWaveformTable::-webkit-scrollbar:horizontal {
  height: 6px;
}

.scrollForWaveformTable::-webkit-scrollbar-thumb {
  border-radius: 6px;
  border: 1px solid white; /* should match background, can't be transparent */
  background-color: rgba(0, 0, 0, 0.5);
  min-height: 12px;
}

/* END : Waveform Component Scrollbar Styling : bug# 188481: */

/* START : Channel Properties Modal User Defined Fields Tab Styling  */

.udfNameIndex {
  text-align: right;
}

.udfNameLabel {
  max-width: 230px;
  padding-right: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.udfValueInput {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* END :  Channel Properties Modal User Defined Fields Tab Styling   */

/* Table List CSS*/
.darkTheme .ReactVirtualized__Table__headerRow {
  text-transform: none !important;
}

.darkTheme .ReactVirtualized__Table__headerRow > .TableListSortable {
  padding: 0px 2px;
  position: relative;
  cursor: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 15px;
  border: 2px solid transparent;
}
.darkTheme .ReactVirtualized__Table__headerRow > .TableListSortable:focus {
  outline: none;
  border-color: rgb(72, 129, 226);
}
.darkTheme
  .ReactVirtualized__Table__headerRow
  > div.TableListSortable:not(:last-child):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 16px;
  width: 2px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.ReactVirtualized__Table__headerRow > .TableListSortable.TableListSortASC {
  background-image: url("/icons/white/table-arrow-up.svg");
  background-position: calc(100% - 5px) 50%;
  background-size: 8px 8px;
  background-repeat: no-repeat;
}
.ReactVirtualized__Table__headerRow > .TableListSortable.TableListSortDESC {
  background-image: url("/icons/white/table-arrow-down.svg");
  background-position: calc(100% - 5px) 50%;
  background-size: 8px 8px;
  background-repeat: no-repeat;
}
.darkTheme .ReactVirtualized__Table {
  font-size: 12px;
  font-family: Arial, sans-serif;
  outline: none;
  display: inline;
}
.darkTheme .ReactVirtualized__Table {
  color: #eee;
  background: black;
}
.lightTheme .ReactVirtualized__Table {
  color: black;
  background: #f2f2f2;
}
.darkTheme .ReactVirtualized__Grid.ReactVirtualized__Table__Grid:focus {
  outline: none;
}
.darkTheme .ReactVirtualized__Table__row {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: none;
  padding: 0px;
  outline: none;
  border: 1px solid #0000000d;
}
.darkTheme .ReactVirtualized__Table__rowColumn,
.darkTheme .ReactVirtualized__Table__rowColumn div {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.darkTheme .ReactVirtualized__Table__rowColumn {
  padding-left: 4px;
}
.darkTheme .ReactVirtualized__Table__row:nth-child(even) {
  background: #222;
}
.lightTheme .ReactVirtualized__Table__row:nth-child(even) {
  background: #e5e5e5;
}
.darkTheme .ReactVirtualized__Table__row:hover {
  background: #555;
}
.lightTheme .ReactVirtualized__Table__row:hover {
  background: rgba(0, 94, 184, 0.1);
}
/*
    .ReactVirtualized__Table__row.TableListRowSelected {
      border: 1px solid transparent;
    }
    */
.darkTheme .ReactVirtualized__Table__row.TableListRowSelected {
  background: #0e6eb8;
  /*border: 1px solid transparent;*/
}
.lightTheme .ReactVirtualized__Table__row.TableListRowSelected {
  background: #0e6eb8;
  /*border: 1px solid transparent;*/
}
.darkTheme .ReactVirtualized__Table__row.TableListRowActive {
  /* background: #868686; */
  border-color: #fff;
}
.lightTheme .ReactVirtualized__Table__row.TableListRowActive {
  background: rgba(0, 94, 184, 0.25);
}
.darkTheme .ReactVirtualized__Table__row.TableListRowFocused {
  padding: 0px;
  border: 1px solid rgb(72, 129, 226);
}

/* styling for table */
.darkTable .WCIcon {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-left: 5px;
  background-size: contain;
  cursor: pointer;
  outline: none;
}

.darkTable .WCIconRight {
  position: absolute;
  right: 8px;
  top: 8px;
}

.darkTable .WCIcon:hover .WCHoverCard {
  display: block;
}

.darkTable .WCFilter {
  background-position: calc(100% - 20px) 50% !important;
  overflow: visible !important;
}

.darkTable .IconFilterOn {
  background-image: url("/icons/white/filter.svg");
}

.darkTable .IconFilterOff {
  background-image: url("/icons/gray/filter.svg");
}

.darkTable .IconFilterOn:focus,
.darkTable .IconFilterOff:focus {
  outline-offset: 2px;
  outline: 2px solid rgb(72, 129, 226);
}

.darkTable .virtual-checkbox {
  position: absolute;
  margin-top: 3px;
  height: 300px;
  color: #cccccc;
  background-color: #222222;
  width: 200px;
  right: 0px;
  z-index: 10;
  box-shadow: 8px 10px 12px 0 rgba(99, 99, 99, 0.65);
}
/*
  Adding styles with !important as the styles are added via 3rd-party library, and
  we want custom scroll
*/
.darkTable .virtual-checkbox .ReactVirtualized__List {
  overflow: auto !important;
}
.darkTable .virtual-checkbox .ReactVirtualized__Grid__innerScrollContainer {
  overflow-x: auto !important;
  display: inline-table;
}
.darkTable .virtual-checkbox .ReactVirtualized__Grid__innerScrollContainer div {
  padding-top: 2px;
}
.darkTable
  .virtual-checkbox
  .ReactVirtualized__Grid__innerScrollContainer
  div:hover {
  background-color: rgba(72, 129, 226, 0.5);
}
.darkTable .virtual-checkbox input[type="text"] {
  margin-top: 4px;
}
.darkTable .virtual-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  width: auto;
  vertical-align: middle;
  background-color: transparent;
}
.darkTable .IconFilterMenu,
.darkTable .IconFilterMenuApplied {
  background: transparent url("/icons/gray/filter-light.svg") no-repeat
    center center;
  background-size: 18px;
  border: none;
  margin-top: -2px;
  border: 2px solid transparent !important;
  top: 0px;
  right: 0px;
}

.darkTable .IconFilterMenuApplied {
  background: transparent url("/icons/white/filter.svg") no-repeat center
    center;
  background-size: 18px;
}

.darkTable .IconFilterMenu:focus,
.darkTable .IconFilterMenuApplied:focus {
  border-color: rgb(72, 129, 226) !important;
}

/*
  Filter Box CSS
*/

.darkTable .filterbox-wrapper {
  position: absolute;
  z-index: 10;
  background-color: #222222;
  direction: ltr;
  z-index: 10;
  -webkit-box-shadow: 8px 10px 12px 0 rgba(99, 99, 99, 0.65);
  box-shadow: 8px 10px 12px 0 rgba(99, 99, 99, 0.65);
  color: #ccc;
  padding: 0px 2px;
}
.darkTable .filterbox-wrapper span {
  float: left;
  display: block;
  width: 100%;
}
/*
  margin-left and padding-left is used to wrap the label across the checkbox
*/
.darkTable .filterbox-wrapper label {
  display: block;
  float: left;
  line-height: 20px;
  width: 100%;
  margin-left: -21px;
  padding-left: 21px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.darkTable .filterbox-wrapper label:hover {
  background-color: rgba(72, 129, 226, 0.5);
}
.darkTable .filterbox-search input[type="text"] {
  font-weight: normal;
}
.darkTable .filterbox-search input[type="text"]:focus {
  border: 1px solid rgb(72, 129, 226) !important;
}
.darkTable .filterbox-checkbox-wrapper {
  overflow-y: auto;
  overflow-x: hidden;
}
.darkTable .filterbox-checkbox-wrapper input {
  width: 14px !important;
  height: 14px !important;
  float: left !important;
  margin: 3px 3px 3px 4px !important;
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
.darkTable .filterbox-checkbox-wrapper input[type="checkbox"] + label {
  border: 1px solid #222222;
}
.darkTable .filterbox-checkbox-wrapper input[type="checkbox"]:focus + label {
  border-color: rgb(72, 129, 226);
}

.WCMenuUnderlay {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 9;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: rgba(0, 0, 0, 0.4);
}
.darkTable .WCMenu {
  position: relative;
  top: 20px;
  left: 20px;
  /* max-width: 300px; */
  font-size: 12px;
  padding: 5px 0px;
  overflow-y: visible;
  overflow-x: visible;
  z-index: 10;
}
.darkTable .WCMenu {
  color: #ccc;
  background-color: #222;
  box-shadow: 8px 10px 12px 0 rgba(99, 99, 99, 0.65);
}
.darkTable .WCMenu {
  color: #1f1f1f;
  background-color: #ffffff;
  box-shadow: 8px 10px 12px 0 rgba(31, 31, 31, 0.65);
}
.darkTable .WCMenuItem {
  position: relative;
  width: 100%;
  height: 20px;
  line-height: 20px;
  padding: 0px 10px;
}
.darkTable .WCItemText {
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 10px;
  width: auto;
  height: 100%;
}
.darkTable .WCShortcutText {
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 10px;
  width: auto;
  height: 100%;
}
.darkTable .WCMenuItem:hover {
  background: rgba(72, 129, 226, 0.5);
}
.light .WCMenuItem:hover {
  background: rgba(0, 94, 184, 0.1);
}
.darkTable .WCMenuItem:focus {
  outline: none;
}
.darkTable .WCMenuItem:focus {
  background-color: rgba(72, 129, 226, 1);
}
.light .WCMenuItem:focus {
  background-color: rgba(72, 129, 226, 0.5);
}
.darkTable .WCMenuLine {
  margin: 5px 10px;
  width: calc(100% - 20px);
  height: 2px;
}
.darkTable .WCMenuLine {
  border-bottom: 1px solid #777;
}
.light .WCMenuLine {
  border-bottom: 1px solid rgba(31, 31, 31, 0.3);
}
.darkTable .WCMenuMeasureWidths {
  position: absolute;
  top: 0;
  left: -9999px;
  width: auto;
  height: auto;
  white-space: nowrap;
  margin: 0;
  padding: 0 0 0 10px;
  box-shadow: none;
  z-index: 0;
  border: none;
}

/* Toolbar Search */

.darkTable .toolbarSearchInput {
  height: 18px !important;
  line-height: 14px !important;
  width: 80% !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.65) !important;
  border-radius: 5px !important;
  margin: 0 !important;
  flex: 0 0 auto !important;
  color: white !important;
  margin-right: 4px !important;
}
.darkTable .toolbarSearchInput:focus {
  border: 1px solid transparent !important;
  outline-offset: 1px !important;
  outline: 2px solid rgb(72, 129, 226) !important;
  z-index: 3 !important;
}
.darkTable input.toolbarSearchInput::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 10px !important;
  font-style: italic !important;
}
.darkTable input.toolbarSearchInput:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 10px !important;
  font-style: italic !important;
}
.darkTable .toolbarSearchNext {
  width: 11px;
  height: 18px;
  cursor: pointer;
  background: transparent url("/icons/white/arrows/arrow-round-right.svg")
    no-repeat center center;
  background-size: 10px 10px;
  border: none;
}
.darkTable .toolbarSearchPrev {
  width: 12px;
  height: 18px;
  cursor: pointer;
  background: transparent url("/icons/white/arrows/arrow-round-left.svg")
    no-repeat center center;
  background-size: 10px 10px;
  border: none;
}
.darkTable .toolbarSearchPrev:focus,
.darkTable .toolbarSearchNext:focus {
  outline: 2px solid rgb(72, 129, 226);
}
.darkTable .toolbarSearchClear {
  width: 10px;
  height: 18px;
  background: transparent url("/icons/white/clear.svg") no-repeat center
    center;
  background-size: 10px 10px;
  margin-left: 5px;
  cursor: pointer;
}
.darkTable .toolbarSearchClear:focus {
  outline-offset: 2px;
  outline: 2px solid rgb(72, 129, 226);
}
.darkTable .toolbarSearchOpen {
  width: 22px;
  height: 22px;
  cursor: pointer;
  background-image: url("/icons/white/outline-search-24px.svg");
  background-size: contain;
}
.darkTable .toolbarSearchOpen:focus {
  outline-offset: 2px;
  outline: 2px solid rgb(72, 129, 226);
  z-index: 3;
}

.darkTable .WCPanelTitleBar {
  position: relative;
  background-color: rgb(91, 103, 112);
  color: #f3f3f3;
  user-select: none;
  font-size: 14px;
  flex: 0 0 auto;
  padding: 0px 5px;
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: center;
  box-shadow: 1px 0px 0px 0px rgb(91, 103, 112);
}
.darkTable .WCPanelTitleBar > .WCPanelTitle {
  flex: 1 1 0px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* Scroll of TableList */
/* width */
.darkTable ::-webkit-scrollbar {
  width: 10px;
}
/* Track */
.darkTable ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}
/* Handle */
.darkTable ::-webkit-scrollbar-thumb {
  background: #555555;
  border-radius: 10px;
}
.darkTable ::-webkit-scrollbar-corner {
  background: #333333;
}

.languageIcon {
  position: relative;
  padding: 5px 5px 7px 28px;
  background-image: url("/icons/white/language_white_24dp.svg");
  background-repeat: no-repeat;
  height: 28px;
}

.darkMenuBar > .dropdown {
  z-index: 9999;
}

.ControlText {
  float: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap !important;
  max-width: 100%;
}
