.Breadcrumbs {
  display: flex;
  align-items: center;
  flex-grow: 1;
  overflow: hidden;
  transition: opacity 0.2s ease-in-out;
}
.Breadcrumbs__icon {
  margin-right: 0.6rem !important;
}
.Breadcrumbs__icon span {
  font-size: 20px !important;
}
.Breadcrumbs__link {
  white-space: nowrap;
  color: #fff;
  cursor: pointer;
}
.Breadcrumbs__separator {
  margin: 0 0.6rem;
}

.Button {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0.45rem !important;
  opacity: 1;
  color: inherit;
  transition: border 0.2s ease-in-out, color 0.2s ease-in-out, font-size 0.2s ease-in-out, background-color 0.2s ease-in-out, opacity 0.2s ease-in-out, width 0.2s ease-in-out, min-width 0.2s ease-in-out, transform 0.2s ease-in-out, padding 0.2s ease-in-out, margin 0.2s ease-in-out, height 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.Button__icon {
  font-size: inherit;
  color: inherit;
  transition: opacity 0.2s ease-in-out;
}
.Button__loadingContainer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.Button__loading {
  position: absolute;
}
.Button__text {
  font-size: 0;
  transition: font-size 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.Button_hidden {
  opacity: 0 !important;
  width: 0px !important;
  min-width: 0px !important;
  padding: 0px !important;
  margin: 0px !important;
  height: 0px !important;
}
.Button_text {
  white-space: nowrap;
  font-size: inherit;
}
.Button_text .Button__icon {
  font-size: 1.5rem;
  margin-right: 0.6rem;
}
.Button_text .Button__text {
  font-size: inherit;
}
.Button_disabled.mdl-button--raised {
  background: rgba(0,0,0,0.26) !important;
}
.Button__container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  border: solid 1px transparent;
  transition: border-color 0.2s ease-in-out;
}
.Button_container_active {
  border-color: rgba(255,255,255,0.2);
}
.Button_container_active_dark {
  border-color: rgba(0,0,0,0.3);
}
.Button_mute {
  transform: scale(0.9);
}
.Button_mute .Button__icon,
.Button_mute .Button__text {
  opacity: 0.5;
}
.Button_mute:hover {
  transform: scale(1);
}
.Button_mute:hover .Button__icon,
.Button_mute:hover .Button__text {
  opacity: 1;
}
.Button_icon .Button__loadingContainer {
  align-items: center;
}
.Button:hover {
  box-shadow: 0px 0px 2px #fff, 0 4px 8px rgba(0,0,0,0.1) inset;
}
.Button.mdl-badge[data-badge]:after {
  width: auto;
  min-width: 20px;
  padding: 0 4px;
  box-sizing: border-box;
  border-radius: 10px;
}
.Button_badge_left.mdl-badge[data-badge]:after {
  right: auto;
  left: -10px;
}
.Button_badge_center.mdl-badge[data-badge]:after {
  margin-top: -10px;
  top: 50%;
}
.Button_badge_alert.mdl-badge[data-badge]:after {
  background-color: #d32f2f;
}
.Button_badge_warning.mdl-badge[data-badge]:after {
  background-color: #ffa000;
}

.Calendar {
  box-shadow: 0px 2px 4px #000;
  height: 500px;
  width: 312px;
  margin: 0 150px;
  flex-shrink: 0;
  overflow: hidden;
  transition: width 0.2s ease-in-out, margin 0.2s ease-in-out;
}
.Calendar__title {
  position: relative;
  z-index: 1;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
}
.Calendar__menu {
  z-index: 2;
}
.Calendar__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
}
.Calendar__part {
  position: relative;
  display: flex;
  padding: 1rem;
  background: #006e98;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
}
.Calendar__time {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.Calendar__time .Input {
  width: 40px;
}
.Calendar__time .Input__input {
  text-align: center;
}
.Calendar__timeTitle {
  flex-grow: 1;
  font-size: 1.5rem;
  font-weight: 300;
}
.Calendar__timeSeparator {
  margin: 0 0.6rem;
}
.Calendar__month {
  flex-grow: 2;
  flex-shrink: 0;
  width: 60%;
  margin-right: 1rem;
}
.Calendar__year {
  flex-grow: 1;
  flex-shrink: 1;
}
.Calendar__days {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  background: #fff;
  color: #000;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
}
.Calendar__grid {
  display: flex;
  flex-wrap: wrap;
  width: 280px;
}
.Calendar__day {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
  height: 2rem;
  width: 2rem;
  margin: 0.45rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, border 0.2s ease-in-out;
}
.Calendar__day:hover {
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
}
.Calendar_day_active {
  background: #448aff;
  color: #fff;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
}
.Calendar_day_offset {
  cursor: auto;
}
.Calendar_day_offset:hover {
  box-shadow: none;
}
.Calendar_day_title {
  cursor: auto;
  background: #00a9e9;
  color: #fff;
  margin-bottom: 1.25rem;
}
.Calendar_day_title:hover {
  box-shadow: none;
}
.Calendar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.7);
}

.Chart {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}
.Chart__header {
  background: #00a9e9;
  padding: 0.45rem 1rem;
  color: #fff;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
}
.Chart__title {
  margin: 0px;
}
.Chart__chart {
  width: 100%;
  height: 400px;
}

.Chat {
  position: fixed;
  z-index: 999;
  bottom: 8px;
  right: 24px;
  display: flex;
  min-height: 300px;
  width: 650px;
  max-width: calc(100dvw - 48px);
  height: calc(100dvh - 64px);
  transition: transform 0.2s ease-in-out;
}
@media screen and (max-width: 698px) {
  .Chat {
    right: 0;
    max-width: 100dvw;
  }
}
.Chat__closeButton {
  right: 0;
  position: absolute;
}
.Chat__closeButton button {
  overflow: hidden;
  border: unset;
  background: unset;
  margin: 0.3rem !important;
  padding: 0 1.2rem;
  opacity: 0.7;
}
.Chat__closeButton button:hover {
  box-shadow: unset;
}
.Chat__card {
  position: relative;
  z-index: 99;
  width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  overflow: inherit;
  border-radius: 0.6rem;
}
.Chat__card .mdl-card__menu {
  top: 12px;
}
.Chat__title {
  position: relative;
  z-index: 1;
  display: flex;
  height: 2rem;
  align-items: center;
  padding-left: 10px;
  margin-right: 64px;
  border-bottom-right-radius: 0.6rem;
  border-top-left-radius: 0.6rem;
  transition: margin 0.2s ease-in-out;
}
.Chat__title .Input {
  flex-grow: 1;
  height: 2.6rem;
  padding-left: 1rem;
}
.Chat__title > .Button {
  margin-top: -6px !important;
  margin-bottom: -6px !important;
}
.Chat__title h3 {
  font-size: 18px !important;
  white-space: nowrap;
  overflow: hidden;
}
.Chat__openPanelContainer {
  margin: -16px 0px -16px -45px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 60px;
  padding: 0 0.6rem 0 1rem;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
  background: #00a9e9;
  transition: margin 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.Chat_openPanelContainer_hidden {
  opacity: 0;
}
.Chat_title_expand .Chat__openPanelContainer {
  margin-left: 0;
}
.Chat__topicsList {
  display: flex;
  color: #fff;
}
.Chat__topicsList .Input {
  flex-grow: 1;
  margin-right: 64px;
  padding: 16px 0 8px 16px;
  margin-top: -8px;
  background: #00374c;
  border-bottom-right-radius: 0.6rem;
}
.Chat__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  overflow: auto;
  padding: 1rem;
}
.Chat__edit {
  opacity: 0 !important;
}
.Chat__edit.Chat_edit_active {
  opacity: 1 !important;
}
.Chat__record {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 90%;
  padding: 0.6rem;
  border-radius: 0.6rem;
  background-color: rgba(255,255,255,0.75);
}
.Chat__recordWrapper {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 0.6rem;
  transition: opacity 0.2s ease-in-out;
}
.Chat__recordWrapper:hover .Chat__edit {
  opacity: 1 !important;
}
.Chat__recordTopic {
  margin: -0.6rem;
  margin-bottom: 0.45rem;
  padding: 0 0.6rem;
  font-size: 0.85rem;
  width: calc(100% + 16px);
  background: #00a9e9;
  color: #fff;
  border-radius: 0.6rem;
  overflow: hidden;
}
.Chat__recordTitle {
  font-size: 0.85rem;
}
.Chat__recordTitle > button {
  margin: unset;
  width: 20px;
  height: 20px;
}
.Chat__recordTitle > button > span {
  font-size: 15px;
}
.Chat__recordUsername {
  font-size: 0.85rem;
  opacity: 0.6;
  cursor: default;
  min-width: 33.33%;
  width: 33.33%;
  overflow: hidden;
  transition: opacity 0.2s ease-in-out, font-size 0.2s ease-in-out;
}
.Chat__recordText {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  font-size: 0.85rem;
  overflow: auto;
}
.Chat__recordAttach {
  font-size: 1.25rem !important;
}
.Chat__recordLink {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  font-size: 0.85rem;
  text-decoration: none !important;
}
.Chat__recordLinkText {
  display: flex;
  align-items: center;
}
.Chat__recordLink:hover .Chat__recordLinkText {
  display: flex;
  align-items: center;
  text-decoration: underline;
}
.Chat__recordAva {
  max-width: 2rem;
}
@media screen and (max-width: 300px) {
  .Chat__recordAva {
    display: none;
  }
}
.Chat__recordAva > img {
  border-radius: 50%;
}
.Chat__recordContent {
  flex-grow: 1;
  padding: 0.6rem;
  border-radius: 0.35rem;
}
.Chat__recordFooter {
  display: flex;
}
.Chat__record.Chat_record_end {
  align-items: center;
  max-width: 100%;
  width: 100%;
  background-color: transparent;
}
.Chat__record.Chat_record_end .Chat__recordTopic {
  background: none;
}
.Chat__record.Chat_record_end .Chat__recordTitle,
.Chat__record.Chat_record_end .Chat__recordText {
  color: rgba(255,255,255,0.8);
  text-align: center;
  display: flex;
  align-items: center;
}
.Chat_recordWrapper_accent {
  justify-content: flex-end;
}
.Chat_record_accent {
  background-color: inherit;
}
.Chat_record_end {
  cursor: default;
}
.Chat_record_end .Chat__recordTitle span {
  overflow: hidden;
  min-width: 33.33%;
}
.Chat_record_end .Chat__recordTitle span:first-child {
  text-align: left;
}
.Chat_record_end:hover .Chat__recordUsername {
  width: auto;
  opacity: 1;
}
.Chat_record_end .Chat__recordText {
  font-size: 11px;
}
.Chat__date {
  margin-left: 1rem;
  font-size: 0.85rem;
  color: rgba(0,0,0,0.5);
}
.Chat__edited {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.5);
  text-align: right;
  margin-left: auto;
}
.Chat__editedIcon {
  font-size: 0.85rem;
}
.Chat__actions {
  display: flex;
  align-items: flex-end;
  align-items: center;
  transition: transform 0.2s ease-in-out;
}
.Chat__message {
  flex-grow: 1;
  padding: 0 1rem;
  border-top-right-radius: 0.6rem;
  border-bottom-left-radius: 0.6rem;
}
.Chat__message .mdl-textfield__input {
  resize: none !important;
}
.Chat__buttons {
  display: flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
}
.Chat__buttonsFile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.Chat__disattach {
  height: 1rem;
  width: 1rem;
  min-width: 1rem;
  font-size: 1rem;
}
.Chat__panel {
  position: relative;
  z-index: 9;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  border-radius: 0.6rem;
  transition: left 0.2s ease-in-out;
  align-items: center;
}
.Chat__panel__channels {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(37px, 1fr));
  gap: 5px;
  padding: 0 1rem;
}
@media screen and (max-width: 400px) {
  .Chat__panel__channels {
    padding: 0;
    padding-right: 5rem;
  }
}
.Chat__panel__channels > div {
  padding: 0.5rem;
  width: 100%;
}
.Chat__panel__channels > div > span {
  font-size: 1.5rem;
}
.Chat__panel__channel {
  padding: 0.3rem;
  padding-left: 1rem;
  color: #000;
  font-size: 1rem;
}
.Chat__panel__channel span {
  color: #0061f2;
}
.Chat__channels,
.Chat__channel {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 1rem;
  border-bottom-right-radius: 0.6rem;
  border-top-left-radius: 0.6rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}
.Chat__channels .Button,
.Chat__channel .Button {
  height: 20px;
  width: 20px;
  min-width: 20px;
  margin-right: 0.6rem !important;
  transform: translateX(0px);
  opacity: 0;
  color: #ffa000;
}
.Chat__channels:hover .Button,
.Chat__channel:hover .Button {
  transform: translateX(0px);
  opacity: 1;
}
.Chat__channels .Button__icon,
.Chat__channel .Button__icon {
  font-size: 1rem;
}
.Chat__endDialog {
  color: #ffa000 !important;
}
.Chat_mobile {
  right: 8px;
  width: calc(100% - 16px);
}
.message-input-area.drag-over textarea {
  border: #0061f2 1px solid;
  background-color: rgba(208,238,19,0.192);
}

.Content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: rgba(0,0,0,0.26);
  overflow: hidden;
}
.Content__header {
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: center;
  background: #00374c;
  color: #fff;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
  padding: 0.6rem 0 0.45rem 0;
}
.Content__headerWrapper {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1024px;
}
.Content__title {
  flex-grow: 1;
  margin: 0;
  padding: 0 1rem;
  white-space: nowrap;
  overflow: hidden;
}
.Content__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
  overflow: auto;
}
.Content__html {
  width: 100%;
  max-width: 1024px;
  padding: 1rem;
}
.Content__list {
  width: 100%;
}

.ContextMenu {
  position: fixed;
  z-index: 9999999;
/*display: flex
	flex-direction: column
	align-items: stretch*/
  max-width: 300px;
  max-height: 504px;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #fff;
  border: 1px solid #006e98;
  border-radius: 3px;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, left 0.2s ease-in-out, top 0.2s ease-in-out, bottom 0.2s ease-in-out;
}
.ContextMenu__container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}
.ContextMenu__item {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 100%;
  min-height: 40px;
  font-size: 1rem;
  padding: 0.45rem 1rem;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
/*overflow: hidden*/
  transition: background 0.2s ease-in-out, transform 0.2s ease-in-out, color 0.2s ease-in-out;
}
.ContextMenu__item:last-child {
  border: none;
}
.ContextMenu__item:hover {
  color: #fff;
  background-color: #448aff;
}
.ContextMenu__tag {
  position: absolute;
  top: -40px;
  left: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  height: 40px;
  padding-left: 1rem;
  padding-right: 0.6rem;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  cursor: default;
}
.ContextMenu__tagTitle {
  flex-grow: 1;
}
.ContextMenu__tagMore {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.85rem;
  border-radius: 50%;
}
.ContextMenu_item_folder_title {
  margin-top: 40px;
}
.ContextMenu__icon {
  padding-right: 12px;
}
.ContextMenu_item_accent {
  color: #448aff;
}
.ContextMenu_item_folded {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border: 0;
  margin: 0;
  overflow: hidden;
}
.ContextMenu_item_tag {
/*color: #fff*/
  background-color: rgba(68,138,255,0.2);
  transform: scale(1.03);
}

.Dashboard {
  position: absolute;
  z-index: 999;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  flex-grow: 1;
  overflow: auto;
  color: #fff;
  background: #00374c;
  opacity: 1;
  box-shadow: 0 0 200px #000 inset;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.Dashboard > div .mdl-tabs__tab-bar {
/*flex-direction: column*/
  background-color: #fff;
/*height: inherit*/
}
.Dashboard > div:first-child {
  display: flex;
  flex-wrap: wrap;
  padding: 0.6rem;
}
.Dashboard__wrapper {
  min-height: 100%;
  border-radius: 1px 1px 3px 3px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.7);
  transition: border-radius 0.2s ease-in-out;
}
.Dashboard__tab {
  position: relative;
  z-index: 0;
  background: #006e98;
  color: #fff;
/*padding: 4px 16px*/
  margin: 0.6rem;
  min-height: 276px;
  height: 276px;
  width: 250px;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
  border-radius: 1px 1px 3px 3px;
  overflow: hidden;
  transition: border-radius 0.2s ease-in-out, min-width 0.2s ease-in-out, width 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out, transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
}
.Dashboard__tabTitle {
  position: relative;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
/*opacity: 0.6*/
  transition: font-size 0.2s ease-in-out, opacity 0.2s ease-in-out;
  text-align: center;
  cursor: pointer;
  border-top-right-radius: 1px;
  border-top-left-radius: 1px;
  padding: 0;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
  transition: border-radius 0.2s ease-in-out;
}
.Dashboard__tabTitle h3 {
  font-size: 18px !important;
  margin: 1rem;
  white-space: nowrap;
  overflow: hidden;
  transition: margin 0.2s ease-in-out;
}
.Dashboard__tab.Dashboard_tab_active {
  position: absolute !important;
  height: auto !important;
  transform: scale(1.005);
}
.Dashboard__tab.Dashboard_tab_active .Dashboard__tabTitle {
  font-size: 1.2rem;
  opacity: 1;
}
.Dashboard__tab.Dashboard_tab_alarm .Dashboard__tabTitle {
  background-color: rgba(211,47,47,0.8) !important;
  color: #000;
}
.Dashboard__tab.Dashboard_tab_warning .Dashboard__tabTitle {
  background-color: rgba(255,160,0,0.8) !important;
  color: #000;
}
.Dashboard__tabContent {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #006e98;
  border-radius: 1px 1px 3px 3px;
  transition: opacity 0.2s ease-in-out;
  padding: 0;
}
.Dashboard__tabContent .mdl-chip {
  margin: 6px;
  cursor: pointer;
}
.Dashboard__tabItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  width: 100%;
/*margin-bottom: 8px*/
  color: inherit;
  font-weight: 300;
  text-decoration: none;
  padding: 0.45rem 1rem;
  transition: transform 0.2s ease-in-out;
}
.Dashboard__tabItemValue {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  transition: transform 0.2s ease-in-out;
}
.Dashboard__tabItem.Dashboard_tabItem_alarm {
  background-color: rgba(211,47,47,0.5) !important;
  border-bottom: solid 1px rgba(211,47,47,0.5);
  font-weight: 400;
}
.Dashboard__tabItem.Dashboard_tabItem_warning {
  background-color: rgba(255,160,0,0.5) !important;
  font-weight: 400;
}
.Dashboard__tabItem:hover {
  position: relative;
  z-index: 10;
  transform: scale(1.05);
}
.Dashboard__tabItem:hover .Dashboard__tabLink {
  opacity: 1;
  text-decoration: underline;
}
.Dashboard__tabLink {
  opacity: 0.8;
  transition: opacity 0.2s ease-in-out;
}
.Dashboard__tab:hover {
  z-index: 1;
  overflow: visible;
  opacity: 1;
  transform: scale(1.01);
  box-shadow: none;
  border-top-right-radius: 1.5rem;
}
.Dashboard__tab:hover .Dashboard__wrapper {
  border-top-right-radius: 1.5rem;
}
.Dashboard__tab:hover .Dashboard__tabTitle {
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}
.Dashboard__tab:hover .Dashboard__tabTitle h3 {
  margin-right: 0.45rem;
}
.Dashboard__tab:hover .Dashboard__tabTitle .Button {
  margin-right: 0.85rem !important;
}
.Dashboard__buttonLink {
  width: 100%;
  transform: scale(0.9);
}
.Dashboard__buttonLink:hover {
  transform: scale(1);
}
.Dashboard__more {
  position: absolute !important;
  bottom: 4px;
  left: 0px;
  transition: opacity 0.2s ease-in-out;
}
.Dashboard_tab_blur {
  opacity: 0.7;
  transform: scale(0.97);
}
.Dashboard_tab_link {
  opacity: 0.4 !important;
}

.Dialog {
  position: relative;
  flex-grow: 1;
  overflow: hidden;
  max-height: 100%;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
}
.Dialog__title {
  display: flex;
  align-items: center;
  background: #00a9e9;
  color: #fff;
  padding: 0.45rem 0.85rem 0.45rem 1rem;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
}
.Dialog__titleText {
  flex-grow: 1;
  align-self: unset;
}
.Dialog__content {
  display: flex;
  flex-grow: 1;
  overflow: auto;
  padding: 0.6rem;
}
.Dialog__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0.6rem 1rem;
  box-shadow: 0px 0px 4px rgba(0,0,0,0.6);
}
.Dialog__action {
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
}
.Dialog_action_accept {
  height: 3rem;
  width: 3rem;
  font-size: 2rem;
}
.Dialog__menu {
  color: #fff;
}

.Form {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
}
.Form__field {
  display: flex;
  width: 50%;
  padding: 0 0.6rem;
  transition: opacity 0.2s ease-in-out;
}
.Form__field .Input {
  flex-grow: 1;
  align-self: flex-start;
}
.Form .Input_text .Input__label:after {
  content: none;
}
.Form .Input_text .Input__text textarea {
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 3px;
  padding: 0.45rem;
  transition: border-color 0.2s ease-in-out;
}
.Form .Input_text .Input__text.is-focused textarea {
  border-color: #448aff !important;
}
.Form_column {
  flex-direction: column;
  flex-wrap: nowrap;
}
.Form_column .Form__field {
  width: 100% !important;
}
.Form__fieldset {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 1rem;
  border-top: 1px dashed #006e98;
}
.Form__fieldsetHeader {
  display: flex;
  width: 100%;
  padding: 0 0.6rem;
}
.Form__fieldsetTitle {
  width: 100%;
}
@media (max-width: 600px) {
  .Form__field {
    width: 100%;
  }
}

.Handle {
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  height: 0;
}
.Handle__icon {
  height: 24px;
  width: 24px;
  min-width: 24px;
  background: #fff;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
  cursor: pointer;
  border-radius: 50%;
}
.Handle__icon:hover {
  transform: scale(1.5);
  background: #fff;
}

.Image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}
.Image__image {
  height: 100%;
  min-height: 300px;
}

.Images {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  transition: left 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.Images__title {
  font-size: 0.85rem;
  color: #448aff;
  padding-top: 0.45rem;
}
.Images__header {
  display: flex;
  align-items: center;
  padding-bottom: 0.45rem;
}
.Images__fileName {
  color: #000;
  background: #fff;
  margin: 0.45rem;
  border-radius: 1rem;
  transition: opacity 0.2s ease-in-out;
}
.Images__fileName .Input__input {
  padding-left: 0.6rem;
}
.Images__fileName .Input__label:after {
  max-width: calc(100% - 20px);
  left: 10px !important;
}
.Images__content {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  min-height: 300px;
  overflow: hidden;
}
.Images__image {
  position: relative;
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  margin-bottom: 1rem;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: background-image 0.2s ease-in-out;
}
.Images__image:hover .Images__shift {
  opacity: 1;
  background: linear-gradient(to right, transparent, #fff);
}
.Images__image:hover .Images__shift.Images_shift_left {
  opacity: 1;
  background: linear-gradient(to left, transparent, #fff) !important;
}
.Images_image_adding {
  background-image: none !important;
  cursor: default;
}
.Images__shift {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.Images__area {
  flex-grow: 1;
}
.Images__markers {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  display: flex;
  align-items: flex-end;
  transition: opacity 0.2s ease-in-out;
}
.Images__marker {
  flex-grow: 1;
  height: 4px;
  background: #fff;
  border: 1px solid #00a9e9;
  border-radius: 2px;
  transition: background 0.2s ease-in-out, border 0.2s ease-in-out, height 0.2s ease-in-out;
}
.Images_marker_active {
  background: #448aff;
  height: 8px;
  border-radius: 4px;
}
.Images__list {
  overflow: auto;
  transition: transform 0.2s ease-in-out;
}
.Images__listContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  min-height: 100%;
  overflow: visible;
}
.Images__item {
  flex-shrink: 0;
  width: 100px;
  height: auto;
  margin: 0.45rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  opacity: 0.6;
  transition: outline 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.Images_item_active {
  position: relative;
  z-index: 1;
  opacity: 1;
  outline: #448aff solid 2px;
}
.Images__remove {
  position: absolute;
  top: 0px;
  color: #d32f2f;
  background: #fff !important;
}
.Images__add {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Images__hint {
  font-size: 12px;
  color: rgba(0,0,0,0.6);
  line-height: 16px;
  padding-top: 1rem;
}
.Images_empty .Images__content {
  height: auto;
}
.Images__placeholder {
  font-size: 100px;
  color: rgba(0,0,0,0.26);
}

.Input {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.Input__wrapper {
  display: flex;
  align-items: center;
  flex-grow: 1;
  width: 100%;
}
.Input__checkbox {
  display: flex;
  align-items: center;
  min-height: 27px;
  padding: 20px 0;
  cursor: pointer;
}
.Input__title {
  margin-left: 0.6rem;
  color: #448aff;
  font-size: 0.85rem;
}
.Input__icon {
  font-size: inherit;
  margin-right: 0.6rem;
}
.Input__text {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.Input__text input {
  flex-grow: 1;
}
.Input__text .Button {
  position: relative;
  bottom: inherit;
  height: 1.25rem;
  width: 1.25rem;
  min-width: 1.25rem;
  font-size: 1rem;
}
.Input__text .Input__attachButton {
  height: 1.5rem;
  width: 1.5rem;
  min-width: 1.5rem;
  font-size: 1.25rem;
}
.Input__text.is-dirty .Input__label,
.Input__text.is-focused .Input__label {
  width: 100%;
  opacity: 1;
}
.Input__text.is-disabled input,
.Input__text.is-disabled textarea,
.Input__text.is-disabled .Input__label {
  color: rgba(0,0,0,0.6) !important;
}
.Input__input {
  outline: none;
}
.Input__label {
  opacity: 0.6;
  color: inherit;
}
.Input__error {
  font-size: 0.85rem;
}
.Input__list {
  width: 100%;
}
.Input__listItem {
  display: flex;
  align-items: center;
  font-size: 12px;
}
.Input.Input_thin .Input__text,
.Input.Input_thin .Input__checkbox {
  padding: 0;
  overflow: hidden;
}
.Input.Input_thin .mdl-textfield__label {
  top: 6px;
}
.Input.Input_thin .mdl-textfield__label:after {
  bottom: 0px;
}
.Input.Input_thin .mdl-menu__container {
  margin-top: -20px;
}
.Input__options {
  max-height: 304px;
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 400px;
}
.Input .mdl-menu__container {
  height: auto;
}
.Input .mdl-menu__outline {
  display: none;
}
.Input_select_multiple .Input__text {
  justify-content: flex-end;
  align-items: flex-start;
}
.Input_select .mdl-textfield__input {
  cursor: pointer;
  caret-color: transparent;
}
.Input_warning {
  color: #ffa000;
}
.Input_warning .Input__label:after {
  background-color: #ffa000;
}
.Input_main {
  color: #0061f2;
}
.Input_error {
  color: #d50000;
}
.Input_error .Input__label {
  color: #d50000 !important;
}
.Input_error .Input__label:after {
  background-color: #d50000;
}
.Input_date .Input__input::placeholder {
  color: transparent !important;
}
.Input_masked .Input__input::placeholder {
  color: transparent !important;
}
.Input_drag {
  border-radius: 0.6rem;
  border: 1px dashed #448aff;
  margin: -1px;
}
.Input_file .Input__label {
  width: calc(100% - 32px);
}
.Input :-webkit-autofill {
  background: transparent !important;
}
.Input__fileTypes {
  position: absolute;
  top: 45px;
  left: 0px;
  right: 0px;
  opacity: 0.6;
  transition: opacity 0.2s ease-in-out;
}
.Input__fileTypes .Input__input {
  font-size: 0.85rem;
}
.Input__hint {
  font-size: 12px;
  color: rgba(0,0,0,0.6);
  line-height: 16px;
  padding: 0 1rem;
}
.Input__hintButton {
  position: absolute;
  top: -0.6rem;
  right: 0;
  z-index: 9;
}
.Input:hover .Input__fileTypes {
  opacity: 1;
}
.Input_disabled {
  opacity: 0.65;
}
.Input_disabled .Input__checkbox {
  cursor: default;
}
.Input_disabled .Input__title {
  color: rgba(0,0,0,0.26);
}

.Layout {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  width: 100%;
  transition: background-color 0.2s ease-in-out;
}
.Layout__wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: auto;
}
.Layout__content {
  display: flex;
  position: relative;
  flex-grow: 1;
  overflow: auto;
}
.Layout__content > .Page > .Page__header {
  display: none;
}
.Frame__common {
  display: none;
}

.List__itemHeader {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #006e98;
  color: #fff;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
  padding: 0.45rem 0.85rem 0.45rem 0.85rem;
  cursor: pointer;
}
.List__itemHeaderWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1024px;
}
.List__itemTitle {
  flex-grow: 1;
  margin: 0;
  padding-right: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
}
.List__itemContent {
  display: flex;
  justify-content: center;
  transition: opacity 0.2s ease-in-out;
  background: rgba(0,169,233,0.15);
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
}
.List__itemContentWrapper {
  width: 100%;
  max-width: 1024px;
  padding: 1rem;
}
.List__itemNode:first-child .List__itemNodeHeader {
  border: none;
}
.List__itemNodeHeader {
  display: flex;
  justify-content: center;
  border-top: 1px dashed #006e98;
  cursor: pointer;
}
.List__itemNodeHeaderWrapper {
  width: 100%;
  max-width: 1024px;
  padding: 0.6rem 1rem;
}
.List__itemNodeTitle {
  margin: 0;
}
.List__itemNodeContent {
  display: flex;
  justify-content: center;
  transition: opacity 0.2s ease-in-out;
}
.List__itemNodeContentWrapper {
  width: 100%;
  max-width: 1024px;
  padding: 1rem;
}

.Loader {
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255,255,255,0.5);
  transition: opacity 0.2s ease-in-out;
}

.Login {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  transition: opacity 0.2s ease-in-out;
  background-image: url("/frontend/images/login.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.Login__title {
  display: flex;
  justify-content: center;
}
.Login__actions {
  display: flex;
  justify-content: flex-end;
  color: #000;
}
.Login__login {
  height: 3rem;
  width: 3rem;
  font-size: 2rem;
}

.MainMenu {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
  height: 52px;
  margin-top: 0;
  overflow: hidden;
  transition: margin 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.MainMenu__title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 20px;
  font-family: "Roboto Mono";
  font-weight: 400;
  text-transform: uppercase;
  height: 24px;
}
.MainMenu__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.45rem 0.6rem;
}
.MainMenu__leftBlock {
  display: flex;
  align-items: center;
  padding-right: 1.5rem;
}
.MainMenu__leftBlock .Button span {
  font-size: 1rem;
}
.MainMenu__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding-right: 0.6rem;
  border-radius: 20px;
  border: solid 1px transparent;
  transition: border-color 0.2s ease-in-out;
}
.MainMenu_container_active {
  border-color: rgba(255,255,255,0.2);
}
.MainMenu__dashboardFilter {
  opacity: 0.3;
  transition: opacity 0.2s ease-in-out;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
}
.MainMenu__dashboardFilter:hover {
  opacity: 0.7;
}
.MainMenu_dashboardFilter_alert {
  opacity: 1;
  background-color: #d32f2f !important;
}
.MainMenu_dashboardFilter_warning {
  opacity: 0.8;
  background-color: #ffa000 !important;
}
.MainMenu_dashboardFilter_default {
  opacity: 0.8;
  background-color: #fff !important;
}
.MainMenu__user {
  display: flex;
  align-items: center;
}
.MainMenu__spacer {
  flex-grow: 1;
}
.MainMenu__instructions .Button__icon {
  font-size: 2rem;
}

.Overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,0.6);
  transition: opacity 0.2s ease-in-out, background 0.2s ease-in-out;
}
.Overlay__close {
  position: fixed !important;
  z-index: 100009;
  top: 1rem;
  right: 1rem;
  background: #fff !important;
}
.Overlay_dark {
  background: rgba(0,0,0,0.6);
}
.Overlay > .Overlay__components {
  position: absolute;
  max-height: 80%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column-reverse;
  width: 800px;
  max-width: 90%;
  transition: margin 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.Overlay > .Overlay__components > .Overlay__component {
  margin-bottom: 1rem;
}
.Overlay > .Overlay__components > .Overlay__component:first-child {
  margin-bottom: 0;
}
.Overlay_components_side_right {
  left: 90% !important;
}
.Overlay_components_side_left {
  right: 90% !important;
}
.Overlay__component {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-height: 100%;
  overflow: hidden;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.Overlay__screen {
  position: absolute;
  z-index: 999;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: #fff;
  transition: opacity 0.2s ease-in-out;
}
.Overlay .Page {
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
}

.Page {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: hidden;
  background: #fff;
  transition: opacity 0.2s ease-in-out;
}
.Page__header {
  position: relative;
  z-index: 9;
  display: flex;
  background: #00374c;
  color: #fff;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
  padding: 0.6rem 0.85rem 0.45rem 1rem;
}
.Page__title {
  flex-grow: 1;
  margin: 0;
  padding-right: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
}
.Page__text {
  padding: 1rem;
  max-height: 100%;
  transition: height 0.2s ease-in-out, padding 0.2s ease-in-out;
}
.Page__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: auto;
}
.Page__table {
  overflow: hidden;
}
.Page__table .TableData {
  height: 100%;
}
.Page__tree .TreeData {
  height: 100%;
}
.Page__table:first-child .TableData {
  position: relative;
  z-index: 3;
}
.Page__dialog {
  display: flex;
}
.Page__dialog .Dialog {
  min-height: 0;
}
.Page__info {
  flex-grow: 1;
  height: 100%;
  display: flex;
}
.Page__charts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
  padding: 0.6rem;
}
.Page__charts .Chart {
  margin: 0.6rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
  border-radius: 1px 1px 3px 3px;
}

.Paginator {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.Paginator__select {
  margin: 0 0.45rem;
}
.Paginator__input input {
  width: 18px;
  text-align: center;
}
.Paginator__current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #448aff;
  overflow: hidden;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
}
.Paginator__current input {
  font-weight: 700 !important;
}
.Paginator__rows {
  flex-grow: 1;
  text-align: right;
  padding-right: 0.6rem;
}
.Paginator__auto {
  margin-right: 0.85rem !important;
  height: 1.5rem;
  width: 1.5rem;
  min-width: 1.5rem;
  font-size: 1.25rem;
}
.Paginator_auto .Paginator__select {
  opacity: 0.5;
}

.Panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  background: #006e98;
  color: #fff;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
  padding: 0.6rem 0.85rem 0.45rem 1rem;
}
.Panel__title {
  flex-grow: 1;
  margin: 0;
  padding-right: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
}
.Panel__menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.Panel__actions {
  display: flex;
  justify-self: self-start;
}
.Panel__paginator {
  margin-right: 0.45rem;
}
.Panel__remove {
  color: #ffa000 !important;
}

.Search {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2rem;
  padding-right: 0.6rem;
  overflow: hidden;
}
.Search .Input {
  margin-left: 0.45rem;
}
.Search_minimal {
  border: none;
  border-radius: 0px;
}
.Search_minimal .Input__input,
.Search_minimal .Input__label {
  font-size: 0.85rem;
}

.sidenav-menu-new {
  position: fixed;
  top: 0;
  left: 0;
  width: 20rem;
  height: 100vh;
  padding-top: 3.625rem;
  color: #212832;
  background-color: #fff;
  box-shadow: 0.15rem 0 1.75rem 0 rgba(33,40,50,0.15);
  z-index: 1038;
  overflow-y: hidden;
  transform: translateX(0);
  transition: transform 0.3s;
}
.sidenav-menu-new::-webkit-scrollbar {
  width: 0.75rem;
}
.sidenav-menu-new::-webkit-scrollbar-thumb {
  border-radius: 10rem;
  border-width: 0.2rem;
  border-style: solid;
  background-clip: padding-box;
  background-color: rgba(33,40,50,0.2);
  border-color: transparent;
}
.sidenav-menu-new::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}
.sidenav-menu-new::-webkit-scrollbar-corner {
  background-color: transparent;
}
.sidenav-menu-new::-webkit-scrollbar-track {
  background: inherit;
}
.sidenav-menu-new:hover {
  overflow: auto;
}
.sidenav-menu-new__hidden {
  transform: translateX(-100%);
}
.sidenav-menu-new__items {
  margin: 0;
  padding: 0;
  padding-bottom: 1rem;
}
.sidenav-menu-new__item {
  padding: 0.5rem 1rem 0;
  font-size: 12px;
  list-style: none;
  cursor: pointer;
}
.sidenav-menu-new__item:hover {
  color: #0061f2;
}
.sidenav-menu-new__item:hover > .sidenav-menu-new__link {
  color: #0061f2;
}
.sidenav-menu-new__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  color: #212832;
}
.sidenav-menu-new__accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidenav-menu-new__accordion-header-numbers {
  margin-left: auto;
}
.sidenav-menu-new__accordion-header-number {
  margin-left: 6px;
}
.sidenav-menu-new__arrow {
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.sidenav-menu-new__arrow-rotate {
  transform: rotate(180deg);
}
.sidenav-menu-new__accordion-content {
  max-height: 0;
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid #d4dae3;
  background-color: #fff;
  overflow: hidden;
  transition: max-height 0.3s;
}
.sidenav-menu-new__accordion-content--visible {
  max-height: 100%;
}
.sidenav-menu-new__accordion-item {
  padding: 0.5rem 1rem 0;
  cursor: pointer;
}
.sidenav-menu-new__accordion-item:hover {
  color: #0061f2;
}
.sidenav-menu-new__accordion-item:hover > .sidenav-menu-new__link {
  color: #0061f2;
}
.sidenav-menu-new__numbers {
  display: flex;
  align-items: center;
  margin-left: 6px;
}

.sidenav-menu-counter-bulb {
  display: flex;
  align-items: center;
}

.Statistic {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  background: #006e98;
  box-shadow: 0 0 200px #000 inset;
  overflow: auto;
}
.Statistic__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
  padding: 0.6rem;
}
.Statistic__gear {
  margin: 0.6rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
  border-radius: 1px 1px 3px 3px;
}

.TableData {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
  overflow: hidden;
}
.TableData__actions {
  display: flex;
  background: rgba(0,0,0,0.26);
}
.TableData__actionsBlock {
  padding: 1rem;
  margin: 1rem;
  border-radius: 1px 1px 3px 3px;
  background: #fff;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
}
.TableData__container {
  position: relative;
  flex-grow: 1;
  overflow: auto;
  background: rgba(0,0,0,0.26);
}
.TableData_container_loading .TableData__table {
  display: block;
  overflow: hidden;
  width: 100%;
}
.TableData_container_loading tbody {
  display: inline-table;
  width: 100%;
}
.TableData_container_loading .TableData__row {
  width: 100%;
}
.TableData__table {
  min-width: 100%;
  border: none;
  background: #fff;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
}
.TableData__table * {
  white-space: normal;
}
.TableData__table th {
  font-size: 0px !important;
  padding: 0 !important;
}
.TableData__row {
  transition: box-shadow 0.2s ease-in-out, text-shadow 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out, background 0.2s ease-in-out !important;
}
.TableData__row:nth-child(even) {
  background: rgba(0,169,233,0.15);
}
.TableData_row_selected {
  background: #448aff !important;
  color: #fff;
}
.TableData_row_selected .TableData_td_true,
.TableData_row_selected a {
  color: #fff;
}
.TableData__header {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  background: #00a9e9;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
  transition: opacity 0.2s ease-in-out;
}
.TableData__headerContainer {
  display: flex;
  align-items: stretch;
}
.TableData__th {
  cursor: pointer;
  background: #00a9e9;
  color: #fff !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  overflow: hidden;
  color: #fff;
  padding: 0.6rem 1rem;
  font-weight: 500;
  text-align: center !important;
}
.TableData__thContent {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.TableData_th_first {
  text-align: left !important;
  justify-content: flex-start;
  padding-left: 1.5rem;
}
.TableData_th_last {
  text-align: right !important;
  justify-content: flex-end;
  padding-right: 1.5rem;
}
.TableData_th_hidden {
  display: none;
}
.TableData__td {
  min-width: 100px;
  padding-top: 0.45rem !important;
  padding-bottom: 0.45rem !important;
  text-align: center !important;
}
.TableData__td .Button {
  display: inline-flex !important;
  white-space: nowrap;
}
.TableData_td_first {
  text-align: left !important;
}
.TableData_td_last {
  text-align: right !important;
}
.TableData_td_true {
  color: #448aff;
}
.TableData_td_false {
  color: #d50000;
}
.TableData__sorting {
  height: 1.25rem;
  width: 1.25rem;
  min-width: 1.25rem;
  font-size: 1rem;
  margin: -4px 0 !important;
}
.TableData__edit {
  margin-left: 1rem !important;
}
.TableData__tdActions {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.TableData__footer {
  display: flex;
  flex-shrink: 0;
  height: 40px;
  padding: 0.45rem 1rem;
  background: #00a9e9;
  color: #fff;
  border-top: solid 1px #006e98;
  transition: opacity 0.2s ease-in-out;
}
.TableData__footer .Paginator {
  flex-grow: 1;
}
.TableData__message {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  font-size: 1.5rem;
}
.TableData__info {
  position: fixed;
  z-index: 999;
  width: 400px;
  max-height: 200px;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
  border-radius: 0.45rem;
  background: #fff;
}
.TableData_cards .TableData__header {
  display: none;
}
.TableData_cards .TableData__container {
  overflow: auto;
}
.TableData_cards .TableData__table {
  height: 100%;
  background: transparent;
}
.TableData_cards tbody {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 1rem;
}
.TableData_cards.TableData tr.TableData__row {
  display: flex;
  justify-content: flex-end;
  height: auto;
  width: calc(50% - 24px);
  max-width: 700px;
  min-width: 400px;
  flex-wrap: wrap;
  margin-top: 1rem;
  margin-left: 1rem;
  padding: 0.6rem;
  border-radius: 1px 1px 3px 3px;
  background: #fff;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
}
.TableData_cards.TableData tr.TableData__row:hover {
  background: #fff;
}
.TableData_cards .TableData__td {
  height: auto;
  width: 50%;
  border: none;
  justify-content: flex-start !important;
  text-align: left !important;
}
.TableData_list tbody {
  display: flex;
  flex-direction: column;
}
.TableData_list.TableData tr.TableData__row {
  display: flex;
  align-items: center;
  height: auto;
  background: #fff;
}
.TableData_list.TableData tr.TableData__row:before {
  content: "•";
  margin-left: 1rem;
  margin-right: -0.85rem;
}
.TableData_list .TableData__td {
  height: auto;
  border: none;
}
.TableData_mobile.TableData tr.TableData__row {
  width: calc(100% - 32px);
  max-width: calc(100% - 32px);
  min-width: inherit;
}
.TableData tr.TableData__row:hover {
  background-color: rgba(68,138,255,0.2);
}

.TabsData {
  position: relative;
  flex-grow: 1;
  display: flex;
  overflow: hidden;
}
.TabsData__menu {
  position: relative;
  z-index: 8;
  display: flex;
  flex-direction: column;
  padding: 0.6rem;
  padding-top: 64px;
  background: #00374c;
  color: #fff;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
  transition: padding 0.2s ease-in-out, box-shadow 0.2s ease-in-out, margin 0.2s ease-in-out;
}
.TabsData__menuToggle {
  position: absolute;
  top: 10px;
  right: 0.6rem;
}
.TabsData__menu .Button .Button__icon {
  font-size: 1.5rem !important;
}
.TabsData__menu:before {
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
  height: 50%;
  transition: opacity 0.2s ease-in-out;
}
.TabsData_menuItem_hovered {
  justify-content: flex-start;
}
.TabsData__content {
  flex-grow: 1;
  display: flex;
  overflow: hidden;
  transition: opacity 0.2s ease-in-out;
}
.TabsData__contentItem {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: hidden;
}
.TabsData__contentItem .Page__header {
  background: #006e98;
}
.TabsData__contentItem > .Dialog {
  width: 100%;
  flex-grow: 0;
  flex-shrink: 10;
}
.TabsData__content .TableData {
  max-width: 100%;
}
.TabsData__error {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  padding: 1rem;
  transition: opacity 0.2s ease-in-out;
}
.TabsData_active .TabsData__menu {
  box-shadow: 0px 4px 8px rgba(0,0,0,0.7);
}

.Tip {
  text-transform: none;
}

.TreeData {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
}
.TreeData__tree {
  overflow: auto;
}

.TreeItem__title {
  display: flex;
  align-items: center;
  padding: 0.45rem 1rem;
  cursor: default;
  transition: opacity 0.2s ease-in-out;
}
.TreeItem__title:hover {
  background-color: rgba(68,138,255,0.2);
  opacity: 1 !important;
}
.TreeItem > .TreeItem__title .TreeItem__titleText {
  transition: font-weight 0.2s ease-in-out;
}
.TreeItem__nodes {
  margin-left: 1.5rem;
}
.TreeItem_active > .TreeItem__title {
  background: #448aff;
  color: #fff;
  opacity: 1 !important;
}
.TreeItem_opened > .TreeItem__title .Button:first-child {
  transform: rotate(90deg);
}
.TreeItem_mute > .TreeItem__title {
  opacity: 0.3;
}
.TreeItem_filtered > .TreeItem__title .TreeItem__titleText {
  font-weight: 400;
}
