﻿@keyframes progress-bar-stripes {
  from {
    background-position: 10px 0;
  }
  to {
    background-position: 0 0;
  }
}
body {
  margin-left: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}
body .sidenav {
  height: 100%;
  /* 100% Full-height */
  position: fixed;
  /* Stay in place */
  z-index: 15000;
  /* Stay on top */
  top: 0;
  /* Stay at the top */
  left: 0;
  background-color: #ecedef;
  /* Black*/
  overflow: hidden;
  /* Disable horizontal scroll */
  transition: 0.2s;
  /* 0.5 second transition effect to slide in the sidenav */
  padding-left: 5px;
  padding-right: 5px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #d0d3d8;
}
body .sidenav .header {
  height: 40px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  flex-shrink: 0;
  flex-grow: 0;
}
body .sidenav .header a {
  color: #4f4f50;
}
body .sidenav .header a span {
  color: #4f4f50;
}
body .sidenav .header a span:hover {
  color: #68686a;
}
body .sidenav .header a:hover {
  color: #68686a;
}
body .sidenav .footer {
  border-top: 1px solid #d0d3d8;
  padding-top: 5px;
  padding-bottom: 5px;
  box-sizing: border-box;
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
body .sidenav .footer > div {
  box-sizing: border-box;
  border: 1px solid #ecedef;
  height: 30px;
  width: 100%;
}
body .sidenav .footer > div:hover {
  color: #3e3e40;
  background-color: #d0d3d8;
  border: 1px solid #b5b9c0;
}
body .sidenav .footer a {
  padding: 4px;
  color: #4f4f50;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: block;
}
body .sidenav .footer a span {
  color: #4f4f50;
}
body .sidenav .footer a span:hover {
  color: #68686a;
}
body .sidenav .footer a:hover {
  color: #68686a;
}
body .sidenav .footer .notifications a > div {
  position: relative;
  display: inline-block;
}
body .sidenav .footer .notifications a > div .unread {
  position: absolute;
  top: -8px;
  right: -6px;
  padding: 0 2px 0 2px;
  background-color: #dc0d17;
  color: #fff;
  font-size: 7pt;
  font-weight: normal;
  border-radius: 10px;
  min-width: 16px;
  box-sizing: border-box;
  text-align: center;
  line-height: 16px;
}
body .sidenav .contents {
  flex-shrink: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  color: #4f4f50;
  user-select: none;
}
body .sidenav .contents .account {
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-bottom: 1px solid #d0d3d8;
  padding-bottom: 10px;
}
body .sidenav .contents .account .avatar {
  display: flex;
  align-items: center;
  justify-content: center;
}
body .sidenav .contents .account .avatar img {
  max-height: 40px;
  max-width: 40px;
}
body .sidenav .contents .account .name {
  text-align: center;
  height: 20px;
}
body .sidenav .contents .menu {
  flex-grow: 1;
  flex-shrink: 1;
  position: relative;
}
body .sidenav .contents .menu .contents {
  padding: 5px 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 10px);
  overflow-y: auto;
}
body .sidenav .contents .menu .contents::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}
body .sidenav .contents .menu .contents::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}
body .sidenav .contents .menu .contents::-webkit-scrollbar-corner {
  background-color: transparent;
}
body .sidenav .contents .menu .contents::-webkit-scrollbar-track:vertical {
  border-left: 6px solid transparent;
  border-right: 1px solid transparent;
  background-clip: padding-box;
}
body .sidenav .contents .menu .contents::-webkit-scrollbar-track:horizontal {
  border-top: 6px solid transparent;
  border-bottom: 1px solid transparent;
  background-clip: padding-box;
}
body .sidenav .contents .menu .contents::-webkit-scrollbar-track:vertical:hover {
  background-color: rgba(0, 0, 0, 0.035);
  -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.14), inset -1px -1px 0 rgba(0, 0, 0, 0.07);
}
body .sidenav .contents .menu .contents::-webkit-scrollbar-track:horizontal:hover {
  background-color: rgba(0, 0, 0, 0.035);
  -webkit-box-shadow: inset -1px 1px 0 rgba(0, 0, 0, 0.14), inset 1px -1px 0 rgba(0, 0, 0, 0.07);
}
body .sidenav .contents .menu .contents::-webkit-scrollbar-track:vertical:active {
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.14), inset -1px -1px 0 rgba(0, 0, 0, 0.07);
}
body .sidenav .contents .menu .contents::-webkit-scrollbar-track:horizontal:active {
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset -1px 1px 0 rgba(0, 0, 0, 0.14), inset 1px -1px 0 rgba(0, 0, 0, 0.07);
}
body .sidenav .contents .menu .contents::-webkit-scrollbar-thumb:vertical {
  background-clip: padding-box;
  border-top: 0 solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 6px solid transparent;
  border-right: 1px solid transparent;
  min-height: 28px;
}
body .sidenav .contents .menu .contents::-webkit-scrollbar-thumb:horizontal {
  background-clip: padding-box;
  border-top: 6px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 0 solid transparent;
  border-right: 0 solid transparent;
  min-width: 28px;
}
body .sidenav .contents .menu .contents::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
}
body .sidenav .contents .menu .contents::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25);
}
body .sidenav .contents .menu .contents::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.35);
}
body .sidenav .contents .menu .contents .menu-item-top {
  display: block;
  height: 30px;
  padding: 4px;
  cursor: pointer;
  box-sizing: border-box;
  border: 1px solid #ecedef;
  font-weight: bold;
  white-space: nowrap;
  color: #4f4f50;
}
body .sidenav .contents .menu .contents .menu-item-top:hover {
  background-color: #d0d3d8;
  border: 1px solid #b5b9c0;
}
body .sidenav .contents .menu .contents .menu-item-top .menu-item-top-icon {
  margin-right: 5px;
}
body .sidenav .contents .menu .contents .menu-item-subitems {
  display: none;
  margin-left: 15px;
}
body .sidenav .contents .menu .contents .menu-item-subitems.expanded {
  display: block;
}
body .sidenav .contents .menu .contents .menu-item-subitems li {
  display: block;
  min-height: 30px;
  padding: 4px;
  box-sizing: border-box;
  color: #4f4f50;
}
body .sidenav .contents .menu .contents .menu-item-subitems li.title {
  font-weight: bold;
}
body .sidenav .contents .menu .contents .menu-item-subitems li.menu-item {
  cursor: pointer;
  border: 1px solid #ecedef;
  margin-left: 10px;
  position: relative;
}
body .sidenav .contents .menu .contents .menu-item-subitems li.menu-item .menu-item-icons {
  position: absolute;
  top: -11px;
  right: 2px;
  display: none;
  font-size: 14px;
}
body .sidenav .contents .menu .contents .menu-item-subitems li.menu-item .menu-item-icons a {
  color: #4f4f50;
}
body .sidenav .contents .menu .contents .menu-item-subitems li.menu-item .menu-item-icons a:hover {
  opacity: 0.8;
}
body .sidenav .contents .menu .contents .menu-item-subitems li.menu-item:hover {
  background-color: #d0d3d8;
  border: 1px solid #b5b9c0;
}
body .sidenav .contents .menu .contents .menu-item-subitems li.menu-item:hover .menu-item-icons {
  display: block;
}
body .sidenav .contents .menu .contents .menu-item-subitems a {
  text-decoration: none;
}
body .sidenav.collapsed {
  width: 40px;
}
body .sidenav.collapsed .header {
  justify-content: center;
}
body .sidenav.collapsed .header .expand {
  display: initial;
}
body .sidenav.collapsed .header .collapse {
  display: none;
}
body .sidenav.collapsed .header .pin {
  display: none;
}
body .sidenav.collapsed .contents .account .avatar img {
  max-height: 30px;
  max-width: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
}
body .sidenav.collapsed .contents .account .name {
  display: none;
}
body .sidenav.collapsed .contents .menu .contents {
  overflow-y: hidden;
  overflow-x: hidden;
}
body .sidenav.collapsed .contents .menu .contents .menu-item-top .menu-item-top-text {
  display: none;
}
body .sidenav.collapsed .contents .menu .contents .menu-item-subitems {
  display: none;
}
body .sidenav.collapsed .footer > div:hover {
  color: #3e3e40;
}
body .sidenav.collapsed .footer > div a span.footer-item-text {
  display: none;
}
body .sidenav.expanded {
  width: 250px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.72);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.72);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.72);
}
body .sidenav.expanded .header {
  justify-content: flex-end;
}
body .sidenav.expanded .header a.expand {
  display: none;
}
body .sidenav.expanded .header a.collapse {
  display: block;
}
body .sidenav.expanded .header a.pin {
  display: block;
}
body .sidenav.expanded .header a {
  padding-left: 5px;
  padding-right: 5px;
}
body .sidenav.expanded .footer {
  align-items: flex-start;
}
body .sidenav.expanded .footer > div {
  padding-left: 5px;
  padding-right: 5px;
}
body .sidenav.expanded.animating .contents .menu {
  overflow-y: hidden;
  overflow-x: hidden;
}
body .sidenav.expanded.animating .contents .menu .menu-item-top .menu-item-top-text {
  display: none;
}
body .sidenav.expanded.animating .contents .menu .menu-item-subitems {
  display: none;
}
body .sidenav.expanded.animating .footer span.footer-item-text {
  display: none;
}
@media only screen and (min-width: 1200px) {
  body .sidenav.expanded {
    width: 400px;
  }
}
body #topBar {
  background-color: #f9f9f9;
  height: 40px;
  left: 0;
  position: fixed;
  top: 0;
  width: calc(100% - 40px);
  z-index: 59;
  margin-left: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #ecedef;
}
body #topBar div.logo {
  margin-left: 10px;
  flex-grow: 0;
  flex-shrink: 0;
}
body #topBar div.logo a div {
  background-image: url("../../Images/Avaya/Product.png");
  background-size: 32px 32px;
  border-width: 0;
  border-style: none;
  height: 32px;
  width: 32px;
  border-image-width: 0;
}
body #topBar div.separator {
  flex-grow: 1;
  flex-shrink: 1;
}
body #topBar div.productname {
  margin-right: 10px;
  flex-grow: 0;
  flex-shrink: 0;
  display: none;
}
body #topBar div.productname div {
  background-image: url(../../Images/Avaya/Product.png);
  background-size: 32px 32px;
  border-width: 0;
  border-style: none;
  height: 32px;
  width: 32px;
  border-image-width: 0;
}
body #globalContainer {
  margin: 0 auto;
  width: 95%;
}
body #globalContainer #mainContainer {
  display: flex;
  flex-direction: column;
}
body #globalContainer #mainContainer #leftColContainer {
  display: none;
}
body #globalContainer #mainContainer #contentCol {
  flex-grow: 1;
  flex-shrink: 1;
}
body #globalContainer #mainContainer #contentCol #contentArea {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage {
  height: 50px;
}
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  color: #000;
  font-size: 20px;
  font-variant: small-caps;
  text-transform: uppercase;
  position: relative;
}
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle .fa,
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle .fas,
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle .fab,
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle .far {
  margin-right: 3px;
}
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle .fa:last-child,
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle .fas:last-child,
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle .fab:last-child,
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle .far:last-child {
  margin-left: 3px;
  margin-right: 0;
}
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle img {
  margin-right: 3px;
}
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle img:last-child {
  margin-left: 3px;
  margin-right: 0;
}
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle .title-icons {
  position: absolute;
  right: 0;
}
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle .title-icons a {
  text-decoration: none;
}
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle .title-icons a .fa,
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle .title-icons a .fas,
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle .title-icons a .fab,
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle .title-icons a .far {
  margin-right: 0;
}
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle .title-icons a .fa:last-child,
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle .title-icons a .fas:last-child,
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle .title-icons a .fab:last-child,
body #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle .title-icons a .far:last-child {
  margin-left: 0;
  margin-right: 0;
}
body #globalContainer #mainContainer #contentCol #contentArea.contentAreaNoPageHeader div.contentAreaHeaderPage {
  display: none;
}
body #globalContainer #mainContainer #contentCol #contentArea.contentAreaNoPageHeader div.contentAreaContents {
  height: 100%;
}
body #globalContainer #mainContainer #contentCol #contentArea.contentAreaNoPageHeader div.contentAreaContents > div {
  padding-bottom: initial;
}
body.insideIframe {
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
body.insideIframe #globalContainer {
  width: 100%;
}
body #pageFooter {
  height: 40px;
  width: calc(100% - 40px);
  background-color: #f9f9f9;
  left: 0;
  position: fixed;
  bottom: 0;
  margin-left: 40px;
  border-top: 1px solid #ecedef;
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 8888;
}
body #pageFooter div.copyright {
  margin-left: 10px;
  flex-grow: 1;
  flex-shrink: 1;
  font-size: 11px;
}
body #pageFooter div.navigation {
  margin-right: 10px;
  flex-grow: 0;
  flex-shrink: 0;
}
body #pageFooter div.currenttask {
  display: none;
  flex-grow: 1;
  flex-shrink: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
body #pageFooter div.currenttask .progress {
  display: none;
  height: 10px;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
  width: 300px;
  margin-bottom: 0;
}
body #pageFooter div.currenttask .progress .progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background-color: #fe2709;
  transition: width 0.6s ease;
}
body #pageFooter div.currenttask .progress .progress-bar.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}
body #pageFooter div.currenttask .progress .progress-bar.progress-bar-animated {
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: progress-bar-stripes;
}
body #pageFooter div.currenttask.withprogress .progress {
  display: flex;
}
body #pageFooter.withtask div.copyright {
  flex-grow: 0;
  flex-shrink: 0;
}
body #pageFooter.withtask div.currenttask {
  display: flex;
}
body.nosidebar {
  margin-left: 0;
}
body.nosidebar #topBar,
body.nosidebar #pageFooter {
  margin-left: 0;
  width: 100%;
}
body.withsidebar.sidebar-always-expanded {
  margin-left: 250px;
}
body.withsidebar.sidebar-always-expanded .sidenav {
  width: 250px;
}
body.withsidebar.sidebar-always-expanded .sidenav.expanded {
  width: 250px;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}
body.withsidebar.sidebar-always-expanded .sidenav .header .pin {
  display: none;
}
body.withsidebar.sidebar-always-expanded #topBar,
body.withsidebar.sidebar-always-expanded #pageFooter {
  margin-left: 250px;
  width: calc(100% - 250px);
}
body.withsidebar.sidebar-always-expanded #globalContainer {
  width: 100%;
  margin: 0;
}
body .rightpanel {
  height: 100%;
  /* 100% Full-height */
  position: fixed;
  /* Stay in place */
  z-index: 9999;
  /* Stay on top */
  top: 0;
  /* Stay at the top */
  right: 0;
  background-color: #f9f9f9;
  overflow: hidden;
  /* Disable horizontal scroll */
  transition: width 0.5s, opacity 0.5s;
  /* 0.5 second transition effect to slide in the sidenav */
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #d0d3d8;
}
body .rightpanel.collapsed {
  width: 0;
  opacity: 0;
  pointer-events: none;
}
body .rightpanel.expanded {
  width: 250px;
  opacity: 1;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.72);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.72);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.72);
}
@media only screen and (min-width: 1200px) {
  body .rightpanel.expanded {
    width: 300px;
  }
}
@media only screen and (min-width: 1500px) {
  body .rightpanel.expanded {
    width: 400px;
  }
}
body .rightpanel.expanded.animating > .contents {
  overflow-y: hidden;
  overflow-x: hidden;
}
body .rightpanel > .buttons {
  flex-grow: 0;
  flex-shrink: 0;
  padding: 5px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin: 0;
}
body .rightpanel > .buttons > .button {
  width: 36px;
  height: 36px;
  color: #5f6368;
  fill: #5f6368;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .rightpanel > .buttons > .button:hover {
  background-color: rgba(32, 33, 36, 0.039);
}
body .rightpanel > .buttons > .button > .expand {
  display: inline-block;
}
body .rightpanel > .buttons > .button > .collapse {
  display: none;
}
body .rightpanel.wide.expanded {
  width: 400px;
  opacity: 1;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.72);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.72);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.72);
}
@media only screen and (min-width: 1200px) {
  body .rightpanel.wide.expanded {
    width: 500px;
  }
}
@media only screen and (min-width: 1500px) {
  body .rightpanel.wide.expanded {
    width: 600px;
  }
}
body .rightpanel.wide > .buttons > .button > .expand {
  display: none;
}
body .rightpanel.wide > .buttons > .button > .collapse {
  display: inline-block;
}
body .rightpanel > .contents {
  flex-grow: 1;
  flex-shrink: 1;
  overflow-y: auto;
}
body .rightpanel > .contents::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}
body .rightpanel > .contents::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}
body .rightpanel > .contents::-webkit-scrollbar-corner {
  background-color: transparent;
}
body .rightpanel > .contents::-webkit-scrollbar-track:vertical {
  border-left: 6px solid transparent;
  border-right: 1px solid transparent;
  background-clip: padding-box;
}
body .rightpanel > .contents::-webkit-scrollbar-track:horizontal {
  border-top: 6px solid transparent;
  border-bottom: 1px solid transparent;
  background-clip: padding-box;
}
body .rightpanel > .contents::-webkit-scrollbar-track:vertical:hover {
  background-color: rgba(0, 0, 0, 0.035);
  -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.14), inset -1px -1px 0 rgba(0, 0, 0, 0.07);
}
body .rightpanel > .contents::-webkit-scrollbar-track:horizontal:hover {
  background-color: rgba(0, 0, 0, 0.035);
  -webkit-box-shadow: inset -1px 1px 0 rgba(0, 0, 0, 0.14), inset 1px -1px 0 rgba(0, 0, 0, 0.07);
}
body .rightpanel > .contents::-webkit-scrollbar-track:vertical:active {
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.14), inset -1px -1px 0 rgba(0, 0, 0, 0.07);
}
body .rightpanel > .contents::-webkit-scrollbar-track:horizontal:active {
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset -1px 1px 0 rgba(0, 0, 0, 0.14), inset 1px -1px 0 rgba(0, 0, 0, 0.07);
}
body .rightpanel > .contents::-webkit-scrollbar-thumb:vertical {
  background-clip: padding-box;
  border-top: 0 solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 6px solid transparent;
  border-right: 1px solid transparent;
  min-height: 28px;
}
body .rightpanel > .contents::-webkit-scrollbar-thumb:horizontal {
  background-clip: padding-box;
  border-top: 6px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 0 solid transparent;
  border-right: 0 solid transparent;
  min-width: 28px;
}
body .rightpanel > .contents::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
}
body .rightpanel > .contents::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25);
}
body .rightpanel > .contents::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.35);
}
body .rightpanel > .contents .templatefieldname {
  word-break: break-all;
}
body .rightpanel > .contents .templatefieldvalue {
  word-break: break-word;
}
body.withrightpanel {
  overflow-y: hidden;
}
body.visible-gotobottom #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle .title-icons,
body.visible-gototop #globalContainer #mainContainer #contentCol #contentArea div.contentAreaHeaderPage h2.contentAreaHeaderPageTitle .title-icons {
  right: 50px;
}
html.hasLeftCol {
  height: 100%;
}
html.hasLeftCol body {
  height: calc(100% - 80px);
  width: calc(100% - 40px);
}
html.hasLeftCol body.sidebar-always-expanded {
  width: calc(100% - 250px);
}
html.hasLeftCol body form {
  height: 100%;
  width: 100%;
}
html.hasLeftCol body form #globalContainer {
  height: 100%;
  width: 100%;
}
html.hasLeftCol body form #globalContainer #mainContainer {
  height: 100%;
  flex-direction: row;
  border-right: 1px solid #b3b3b3;
  box-sizing: border-box;
  width: 100%;
}
html.hasLeftCol body form #globalContainer #mainContainer #leftColContainer {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  padding: 40px 0 0 20px;
  width: 179px;
}
@media only screen and (min-width: 1200px) {
  html.hasLeftCol body form #globalContainer #mainContainer #leftColContainer {
    width: 250px;
  }
}
@media only screen and (min-width: 1600px) {
  html.hasLeftCol body form #globalContainer #mainContainer #leftColContainer {
    width: 300px;
  }
}
html.hasLeftCol body form #globalContainer #mainContainer #leftColContainer #leftCol {
  height: 100%;
  overflow-y: auto;
}
html.hasLeftCol body form #globalContainer #mainContainer #leftColContainer #leftCol::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}
html.hasLeftCol body form #globalContainer #mainContainer #leftColContainer #leftCol::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}
html.hasLeftCol body form #globalContainer #mainContainer #leftColContainer #leftCol::-webkit-scrollbar-corner {
  background-color: transparent;
}
html.hasLeftCol body form #globalContainer #mainContainer #leftColContainer #leftCol::-webkit-scrollbar-track:vertical {
  border-left: 6px solid transparent;
  border-right: 1px solid transparent;
  background-clip: padding-box;
}
html.hasLeftCol body form #globalContainer #mainContainer #leftColContainer #leftCol::-webkit-scrollbar-track:horizontal {
  border-top: 6px solid transparent;
  border-bottom: 1px solid transparent;
  background-clip: padding-box;
}
html.hasLeftCol body form #globalContainer #mainContainer #leftColContainer #leftCol::-webkit-scrollbar-track:vertical:hover {
  background-color: rgba(0, 0, 0, 0.035);
  -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.14), inset -1px -1px 0 rgba(0, 0, 0, 0.07);
}
html.hasLeftCol body form #globalContainer #mainContainer #leftColContainer #leftCol::-webkit-scrollbar-track:horizontal:hover {
  background-color: rgba(0, 0, 0, 0.035);
  -webkit-box-shadow: inset -1px 1px 0 rgba(0, 0, 0, 0.14), inset 1px -1px 0 rgba(0, 0, 0, 0.07);
}
html.hasLeftCol body form #globalContainer #mainContainer #leftColContainer #leftCol::-webkit-scrollbar-track:vertical:active {
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.14), inset -1px -1px 0 rgba(0, 0, 0, 0.07);
}
html.hasLeftCol body form #globalContainer #mainContainer #leftColContainer #leftCol::-webkit-scrollbar-track:horizontal:active {
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset -1px 1px 0 rgba(0, 0, 0, 0.14), inset 1px -1px 0 rgba(0, 0, 0, 0.07);
}
html.hasLeftCol body form #globalContainer #mainContainer #leftColContainer #leftCol::-webkit-scrollbar-thumb:vertical {
  background-clip: padding-box;
  border-top: 0 solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 6px solid transparent;
  border-right: 1px solid transparent;
  min-height: 28px;
}
html.hasLeftCol body form #globalContainer #mainContainer #leftColContainer #leftCol::-webkit-scrollbar-thumb:horizontal {
  background-clip: padding-box;
  border-top: 6px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 0 solid transparent;
  border-right: 0 solid transparent;
  min-width: 28px;
}
html.hasLeftCol body form #globalContainer #mainContainer #leftColContainer #leftCol::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
}
html.hasLeftCol body form #globalContainer #mainContainer #leftColContainer #leftCol::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25);
}
html.hasLeftCol body form #globalContainer #mainContainer #leftColContainer #leftCol::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.35);
}
html.hasLeftCol body form #globalContainer #mainContainer #contentCol {
  height: 100%;
  overflow-y: auto;
  border-left: 1px solid #b3b3b3;
  box-sizing: border-box;
}
@media only screen and (min-width: 1200px) {
}