@charset "UTF-8";
/*********** material ***********/
.nuMenu_container {
  background: #ffffff;
  z-index: 10000000000000000;
  position: fixed;
  top: 0px;
  display: block;
  height: 100vh;
}

.nuMenu_wrapper {
  z-index: 101;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.nuMenu_wrapper:before {
  position: absolute;
  content: "";
  width: 500px;
  height: 500px;
  margin-left: -500px;
  background: #dfdfdf;
}

.nuMenu_overlay {
  cursor: pointer;
  display: none;
  position: absolute;
  z-index: 100;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}
.nuMenu_overlay.nuMenu_overlay_show {
  display: block;
  background: rgba(0, 0, 0, 0.5);
}

.nuMenu_menu_ul {
  margin: 0px 0 0 0;
  padding: 0px;
  flex: 0 1 auto;
}
.nuMenu_menu_ul li.nuMenu_menu_li {
  height: 45px;
  line-height: 40px;
  box-sizing: border-box;
  cursor: pointer;
  list-style-type: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  border-bottom: 1px solid #F3F3F3;
  border-radius: 0px;
  padding: 0 10px;
  color: #0b6c9c;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
.nuMenu_menu_ul li.nuMenu_menu_li.nuMenu_menu_prev {
  background: #0F1419;
  color: #FFF;
}
.nuMenu_menu_ul li.nuMenu_menu_li.nuMenu_menu_prev:hover {
  background: #1a1f24;
}
.nuMenu_menu_ul li.nuMenu_menu_li.nuMenu_menu_prev:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #FFF;
  margin-top: 0px;
  margin-left: 210px;
  opacity: 1;
}
.nuMenu_menu_ul li.nuMenu_menu_li .name {
  flex-grow: 1;
  min-width: 180px;
  width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Margin tylko gdy jest ikona */
.nuMenu_menu_ul li.nuMenu_menu_li .icon + .name,
.nuMenu_menu_ul li.nuMenu_menu_li .avatar + .name,
.nuMenu_menu_ul li.nuMenu_menu_li .mdi + .name {
  margin-left: 10px;
}
.nuMenu_menu_ul li.nuMenu_menu_li.hasItems:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #0F8DCB;
  margin-top: 0px;
  margin-left: 210px;
  opacity: 1;
}
.nuMenu_menu_ul li.nuMenu_menu_li .icon {
  flex-basis: 20px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nuMenu_menu_ul li.nuMenu_menu_li .icon img {
  opacity: 0.7;
  width: 16px;
  height: 16px;
}
.nuMenu_menu_ul li.nuMenu_menu_li .avatar {
  flex-basis: 20px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nuMenu_menu_ul li.nuMenu_menu_li .avatar img {
  position: relative;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.nuMenu_menu_ul li.nuMenu_menu_li .mdi {
  font-size: 16px;
}
.nuMenu_menu_ul li.nuMenu_menu_li:hover {
  background: #f5f5f5;
}
.nuMenu_menu_ul li.nuMenu_menu_li.selected {
  background: #0F8DCB;
  color: #FFF;
}
.nuMenu_menu_ul li.nuMenu_menu_li:focus {
  outline: none !important;
}

.nuMenu_menu {
  display: block;
  position: absolute;
  height: 100%;
  width: 250px;
  margin-left: -250px;
  background: #ffffff;
  border-right: 1px solid #F3F3F3;
  z-index: 9000;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 100vh;
}
.nuMenu_menu.nuMenu_menu_show {
  box-shadow: 6px 0px 43px -16px rgba(0, 0, 0, 0.75);
}
.nuMenu_menu:before {
  content: "wróć";
  color: #b8b8b8;
  position: absolute;
  margin-left: 218px;
  margin-top: 15px;
  transform: rotate(90deg);
  opacity: 0;
}
.nuMenu_menu .nuMenu_menu_title {
  display: none;
  margin: 0px;
  padding: 0px;
  z-index: 9999000;
  display: block;
  color: #b8b8b8;
  position: absolute;
  margin-left: 215px;
  margin-top: 15px;
  transform: rotate(90deg);
}
.nuMenu_menu.nuMenu_menu_prev {
  overflow-y: hidden;
  overflow-x: hidden;
  cursor: pointer;
  padding-right: 30px;
}
.nuMenu_menu.nuMenu_menu_prev li.nuMenu_menu_li.hasItems:before {
  opacity: 0;
  margin-left: 190px;
}
.nuMenu_menu.nuMenu_menu_prev:before {
  opacity: 1;
}