/* ---------------------------------------------------------------- */
/* ------- General Page Layout Styles ------- */
/* ---------------------------------------------------------------- */
body {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0;
}

/*----- Header Styles -----*/
.dashboardSidePanel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 90%;
}

.userLanguage {
  display: flex;
  flex-direction: column;
  height: 50px;
  justify-content: space-between;
  align-items: center;
}

.userLanguage .langimg {
  width: 20px;
  height: 20px;
}

.userInfo {
  display: flex;
  flex: 1;
  font-family: monospace;
  justify-content: space-between;
  align-items: center;
  background: #213f67;
  background: linear-gradient(90deg, #213f67 0%, #4f8898 50%, #213f67 100%);
}

.m-username {
  color: #FFFFFF !important;
  text-align: center;
}

.m-username:hover,
.m-username:focus {
  text-decoration: underline;
  font-style: oblique;
  transition: 0.5s;
}

#notificationBell {
  background: transparent;
  color: lightgrey;
  border: none;
  font-size: 24px;
  display: inline-flex;
}
#notificationBell:active, #notificationBell:focus {
  outline: none;
  box-shadow: none;
}
#notificationBell.has-notifications {
  color: #F1D87E;
}

.m-notifications {
  display: inline-block;
  position: relative;
}

#notificationList {
  min-width: 400px;
  left: -400px;
  max-height: 440px;
  overflow: auto;
  margin: 8px 0;
  border: none;
  padding: 0;
  font-size: 12px;
}
#notificationList .blt {
  margin: 0 4px;
}
#notificationList .list-group-item-text {
  display: initial;
  overflow: hidden;
  width: 400px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
#notificationList p:empty {
  display: none;
}

#logout {
  background-color: transparent;
  border: none;
  transition: 0.5s;
}

.mainNavigation {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: white !important;
  background-color: #2E3131;
}

.mainNavigation nav {
  width: 100%;
}

.mainNavigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.mainNavigation ul li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  transition: 0.4s ease-in-out;
}

.mainNavigation ul li:after {
  content: "";
  display: block;
  border-bottom: 2px solid rgba(193, 71, 49, 0.9);
  width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.4s ease-in-out;
}

.mainNavigation ul li:hover:after {
  width: 100%;
}

.mainNavigation ul li:hover {
  background: black;
}

.mainNavigation ul a {
  color: white !important;
  text-decoration: none;
  width: 100%;
  padding: 12px 16px;
}

.mainNavigation .mobileMenu {
  display: none;
}

.mainNavigation ul.mobileListHidden {
  transition: 0.4s ease-in;
  display: flex;
}

.mobileVisible {
  display: flex;
}

.mainNavigation li.noRoute::after {
  display: none;
}

.mainNavigation ul.innerItem {
  position: absolute;
  top: calc(100% - 0px);
  left: 0;
  background-color: #2E3131;
  width: max-content;
  min-width: 160px;
  max-width: 300px;
  z-index: 1;
  flex-direction: column;
  display: none;
  flex-wrap: nowrap;
}

.mainNavigation ul.innerItem li:hover {
  background: rgba(0, 0, 0, 0.3);
}

.mainNavigation ul.innerItem.childVisible {
  display: flex;
}

.mainNavigation li.withChild {
  flex-direction: column;
}

.mainNavigation li.withChild::after {
  display: none;
}

.mainNavigation li.withChild ul.innerItem li::after {
  display: none;
}

.mainNavigation li.withChild ul.innerItem li {
  width: 100%;
}

.top-menu {
  padding: 6px 0;
}

.mainNavigation ul img,
.sidePanel ul img,
.topMenu ul img {
  width: 13px;
  height: 13px;
}

.topMenu a[disabled=disabled],
.mainNavigation a[disabled=disabled],
.sidePanel a[disabled=disabled] {
  pointer-events: none;
  background-color: #737373 !important;
}

.topMenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.topMenu ul li {
  position: relative;
  transition: 0.4s ease-in-out;
}

.topMenu a.buttonIcon img {
  padding: 1px;
}

.topMenu ul.innerItem {
  position: absolute;
  top: calc(100% - 0px);
  left: 0;
  z-index: 1;
  flex-direction: column;
  display: none;
  flex-wrap: nowrap;
}

.topMenu ul.innerItem li:hover {
  background: rgba(0, 0, 0, 0.3);
}

.topMenu ul.innerItem.childVisible {
  display: flex;
}

.topMenu li.withChild {
  flex-direction: column;
}

.topMenu li.withChild ul.innerItem li {
  width: 100%;
}

@media only screen and (max-width: 690px) {
  .mainNavigation ul.mobileListHidden {
    display: none;
  }

  .mainNavigation .mobileMenu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: transparent;
    border-radius: 0;
    padding: 2px;
  }

  .mainNavigation .mobileMenu button {
    border: none;
    background-color: transparent;
    padding: 0;
  }

  .mainNavigation ul.innerItem {
    position: relative;
    z-index: 0;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    padding-left: 10px;
  }

  .mainNavigation ul {
    flex-direction: column;
  }

  .mainNavigation ul li {
    width: 100%;
  }

  .mainNavigation ul li:after {
    border-bottom: none;
  }

  .mainNavigation ul li:after {
    display: none;
  }

  .mainNavigation ul li.withChild:hover {
    background-color: transparent;
  }
}
@media only screen and (max-width: 498px) {
  .topMenu ul.actionbtns {
    flex-direction: column;
  }

  .topMenu ul.actionbtns li.withChild {
    margin-left: 0 !important;
  }
}
/* -----Page Container and Sidepanel Styles----- */
.pgcontainer {
  width: 100%;
  height: 100%;
  overflow: hidden;
  flex: 1;
  box-sizing: border-box;
  display: flex;
  background-color: #E6EEF5;
}

.mainContent {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 0 1rem;
}

.sidePanel {
  flex-shrink: 0;
  height: 100%;
  background-color: #2E3131;
  position: sticky;
  top: 0;
  max-width: 280px;
}

.sidePanel .sidePanelBtn {
  width: 100%;
  height: 42px;
  text-align: right;
  background-color: #2E3131;
}

.sidePanel .sidePanelBtn button {
  padding: 0;
  text-align: center;
}

.sidePanel .toggleLeftPanel {
  background-color: transparent;
  color: navajowhite;
  width: 42px;
  height: 42px;
  text-align: right;
  border: none;
  outline: none;
}

.sidePanel .toggleLeftPanel .glyphicon {
  color: #F1F1E6;
}

.hideSidePanel {
  display: none;
}

.toggleLeftPanel .glyphicon {
  font-size: 22px;
}

.sidePanelMainContent {
  overflow-y: scroll;
  height: 94%;
  min-width: 250px;
}

/* -----Side Panel list Styles----- */
.sidePanel a {
  text-decoration: none;
  display: block;
  word-wrap: break-word;
  color: white !important;
  width: 100%;
  padding: 4px 2px 4px 12px;
}

.sidePanel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  width: 100%;
  flex-direction: column;
}

.sidePanel ul li {
  width: 100%;
  padding: 2px 1px;
  position: relative;
  display: flex;
  align-items: center;
  transition: 0.4s ease-in-out;
  flex-direction: column;
}

.sidePanel ul.innerItem {
  top: calc(100% - 0px);
  left: 0;
  padding-left: 8px;
  background-color: #2E3131;
  display: none;
  position: relative;
  z-index: 0;
  flex-direction: column;
}

.sidePanel ul.innerItem.childVisible {
  display: flex;
}

.sidePanel ul .toLink {
  min-height: 24px;
  word-wrap: break-word;
  font-size: 14px;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease 0.01s;
  -o-transition: all 0.3s ease 0.01s;
  -moz-transition: all 0.3s ease 0.01s;
  transition: all 0.3s ease 0.01s;
  color: white !important;
}

.sidePanel ul .toLink a:hover {
  background-color: black;
  cursor: pointer;
  -webkit-box-shadow: 0px -2px 14px 2px rgba(199, 178, 165, 0.1);
  -moz-box-shadow: 0px -2px 14px 2px rgba(199, 178, 165, 0.1);
  box-shadow: 0px -2px 14px 2px rgba(199, 178, 165, 0.1);
}

.sidePanel ul .categoryTitle {
  font-size: 16px;
  padding-left: 6px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #BB8800;
}

.sidePanel ul li.categoryTitle {
  align-items: flex-start;
}

.sidePanel ul .noRoute.categoryTitle {
  font-size: 16px;
  padding-left: 6px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #BB8800;
}

.sidePanel ul .noRoute.categoryTitle span {
  color: #BB8800;
}

.sidePanel ul .withChild.categoryTitle span {
  color: #FFFFFF;
}

.sidePanel ul .withChild.categoryTitle {
  font-size: 14px;
  background-color: transparent;
}

.withArrowDown {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

#breadcrumbs {
  background: white;
  font-weight: bold;
  border-bottom: 1px;
}

#torecycle {
  height: 0;
  width: 0;
  border: none;
  display: none;
}

.hidden {
  display: none;
}

.langlist {
  float: right;
  position: absolute;
  right: 10px;
  top: 5px;
}

.langimg {
  cursor: pointer;
}

.ui-state-hover.ui-select-cust,
.ui-state-hover.ui-print-order {
  border: none !important;
}

span.ui-icon.ui-icon-check:hover {
  background-color: #d0d0d0;
}

.dropdown-toggle {
  border: none !important;
  outline: none !important;
}

/*# sourceMappingURL=page.css.map */
