@font-face {
    font-family: 'Icons Web Service';
    font-style: normal;
    font-weight: 400;
    font-display: auto;
    src: url(fonts/icons.woff2) format("woff2"), url(fonts/icons.woff) format("woff");
}

.fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: 'Icons Web Service';
}

.fa-search:before {
    content: "\f002";
}

.fa-user:before {
    content: "\f007";
}

.fa-times:before {
    content: "\f00d";
}

.fa-cog:before {
    content: "\f013";
}

.fa-clock:before {
  content: "\f017";
}

.fa-download:before {
  content: "\f019";
}

.fa-list-alt:before {
    content: "\f022";
}

.fa-list:before {
    content: "\f03a";
}

.fa-edit:before {
    content: "\f044";
}

.fa-chevron-left:before {
    content: "\f053";
}

.fa-plus-circle:before {
    content: "\f055";
}

.fa-minus-circle:before {
    content: "\f056";
}

.fa-times-circle:before {
    content: "\f057";
}

.fa-check-circle:before {
    content: "\f058";
}

.fa-list-ul:before {
    content: "\f0ca";
}

.fa-chevron-right:before {
    content: "\f054";
}

.fa-info-circle:before {
    content: "\f05a";
}

.fa-arrow-left:before {
    content: "\f060";
}

.fa-plus:before {
    content: "\f067"
}

.fa-exclamation-circle:before {
    content: "\f06a";
}

.fa-folder:before {
    content: "\f07b";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-key:before {
  content: "\f084";
}

.fa-phone-alt:before {
  content: "\f094";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-filter:before {
    content: "\f0b0";
}

.fa-users:before {
    content: "\f0c0";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-paperclip:before {
    content: "\f0c6";
}

.fa-square:before {
    content: "\f0c8";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-angle-double-left:before {
    content: "\f100";
}

.fa-angle-double-right:before {
    content: "\f101";
}

.fa-angle-left:before {
    content: "\f104";
}

.fa-angle-right:before {
    content: "\f105";
}

.fa-laptop:before {
    content: "\f109"
}

.fa-circle:before {
    content: "\f111";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-info:before {
    content: "\f129";
}

.fa-play-circle:before {
    content: "\f144";
}

.fa-file:before {
    content: "\f15b";
}

.fa-file-alt:before {
    content: "\f15c";
}

.fa-share-alt:before {
    content: "\f1e0";
}

.fa-share-alt-square:before {
    content: "\f1e1";
}

.fa-server:before {
  content: "\f233";
}

.fa-hourglass-half:before {
    content: "\f252";
  }

.fa-hourglass:before {
  content: "\f254";
}

.fa-pause-circle:before {
    content: "\f28b";
}

.fa-sync-alt:before {
    content: "\f2f1";
}

.fa-sign-out-alt:before {
    content: "\f2f5";
}

.fa-sign-in-alt:before {
    content: "\f2f6";
}

.fa-lock-alt:before {
  content: "\f30d";
}

.fa-arrow-alt-circle-down:before {
    content: "\f358";
}

.fa-arrow-alt-circle-left:before {
    content: "\f359";
}

.fa-arrow-alt-circle-right:before {
    content: "\f35a";
}

.fa-repeat-alt:before {
    content: "\f364";
}

.fa-repeat-1-alt:before {
    content: "\f366";
}

.fa-spinner-third:before {
    content: "\f3f4";
}

.fa-tablet-alt:before {
    content: "\f000";
}

.fa-expand-alt:before {
  content: "\f424";
}

.fa-project-diagram:before {
    content: "\f542";
}

.fa-file-download:before {
    content: "\f56d";
}

.fa-folders:before {
    content: "\f660"
}

.fa-network-wired:before {
    content: "\f6ff"
}

.fa-brackets:before {
    content: "\f7e9"
}

.fa-home-lg-alt:before {
    content: "\f80c";
}

.fa-home-lg-alt-o:before {
    content: "\f80d";
}

.fa-tasks-alt:before {
    content: "\f828";
}

* {
  box-sizing: border-box;
}

::after,
::before {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font: 12px 'Segoe UI', Helvetica, 'Droid Sans', Tahoma, Geneva, sans-serif;
  color: #333;
}

.not-selectable {
  user-select: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input[type=text],
input[type=password],
select {
  border: thin solid darkgray;
  border-radius: 3px;
  transition: border-color ease-in-out .2s, box-shadow ease-in-out .2s;
}

input[type=text],
input[type=password] {
  padding: 2px 4px;
}

input[type=text]:focus,
input[type=password]:focus,
select:focus {
  border-color: #666;
  outline: 0;
}

input[type=text]:disabled,
input[type=password]:disabled,
select:disabled {
  color: gray;
  background-color: #fbfbfb;
  opacity: 0.7;
}

input[type=text].validation-error,
input[type=password].validation-error,
select.validation-error {
  border-color: #b22222;
  background-color: #fde;
}

input[type=text].validation-error:focus,
input[type=password].validation-error:focus,
select.validation-error:focus {
  border-color: #f00;
  background-color: #fde;
}

a {
  color: #0070c4;
  text-decoration: none;
}

a:focus,
a:hover {
  color: #23527c;
  text-decoration: underline;
}

a:active,
a:hover {
  outline: 0;
}

fieldset {
  border: 1px solid darkgray;
  border-radius: 4px;
  padding: 0 5px 5px 5px;
}

fieldset legend {
  padding: 5px;
  font-weight: bold;
  color: #666;
}

fieldset>div {
  text-align: right;
  padding: 1px 0;
}

.editor-detail-wrapper {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.editor-detail-wrapper .block {
  display: block;
  padding: 2px 0;
}

.editor-detail-wrapper .right {
  text-align: right;
}

.editor-detail-wrapper .field {
  padding: 0 2px;
}

.editor-detail-wrapper .block.field {
  padding: 2px;
}

.editor-detail-wrapper .footer {
  text-align: right;
  padding: 5px;
  min-height: 38px;
  width: 100%;
  background-color: #eee;
  border: 1px solid #ccc;
}

.component-detail {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: auto;
  flex: 1;
}

.component-detail .row {
  display: block;
  padding: 2px 0;
  white-space: nowrap;
}

.component-detail div.row>* {
  padding: 2px;
}

.component-detail div.row>*:last-child {
  padding: 2px 0 2px 2px;
}

.component-detail .row.right {
  text-align: right;
}

.component-detail label[disabled],
.editor-detail-wrapper label[disabled] {
  color: gray;
  opacity: 0.7;
}

.detail-container {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
  overflow: auto;
}

.detail-container .title {
  display: inline-flex;
  padding: 3px 10px;
  font-size: 16px;
  font-family: monospace;
}

.detail-container .title:after {
  content: ".";
  visibility: hidden;
}

.detail-container .content {
  display: flex;
  padding: 2px 0;
  flex: 1;
  overflow: auto;
}

.detail-container-title-fade-enter-active {
  transition: opacity .1s ease-in;
}

.detail-container-title-fade-enter {
  opacity: 0;
}

.spin {
  animation: spinner 1s ease infinite;
}

.btn {
  display: inline-block;
  padding: 5px 10px;
  margin-left: 2px;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid #333;
  border-radius: 4px;
  color: #fff;
  background-color: #666;
}

.btn:not([disabled]).focus,
.btn:not([disabled]):focus,
.btn:not([disabled]):hover {
  background-color: #333;
}

.btn:disabled {
  background: #ccc;
  border: 1px solid #999;
  cursor: default;
}

.validation-table-error-container {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.validation-table-summary-errors {
  list-style-type: none;
  border: 1px solid #a8a8a8;
  box-shadow: 3px 3px 10px gray;
  padding: 20px;
}

.v-enter-active,
.v-leave-active {
  transition: opacity .2s ease;
}

.v-enter,
.v-leave-to {
  opacity: 0;
}

.icon {
  color: #0070c4;
  font-size: medium;
}

.set-param-none {
  color: #0070c4;
}

.set-param-isService {
  color: #666;
}

.point-common {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAOVBMVEVhz/87hqk8iKtgzv/8/PxPsuBMrNhJptBHn8hEmcBClLpAjrNby/9Rt+dXw/VVvu9Yx/rn//+e5f8cJSunAAAAAnRSTlNVVapewVIAAABOSURBVBjTXcxbDoAgEEPRi/iW18z+F6tEMDLnr01a8INfDiqiwRM6nR8aKE2SWkghNa1I5O6dZOKnnsbIYrAabAa7wWFwGlwGk4Ebs7sBxawIS3CFTxsAAAAASUVORK5CYII=');
}

.point-electric {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAA6lBMVEXlbgD7lgD/nAD1iwDaXADaXQD/nAD4kADkbQDaXAD/////mwDeYgDwgQDiagDgZwDfZQDziQDxgwDufgDmcAD6lAD4jwDzhgDsegDcXwD9mAD2jADqdwD6lwDodADkbQDbXQDliAP2lADriwDldgDecwD8+PL57eHtwJLno2bkjiHeagbwkADujQDZfwDheADJdQDGZQC+YAD48er05c/y3MPv0K7vyJfet5DowIbotH7jqFrXnlHgpU7ilUvwo0XPikLlij/ZlTPKeyffdRXTcgPmiADrhQDngADofADkegDcbgDSbgDaagD0UXWxAAAACnRSTlPmP+fn5+TJyUhI9E+UdQAAAM1JREFUGNMdy+eWgjAYhOFx+36GFCCAKAoC9r6992K7/9uRZP49Z86L2lm9WpIkcaK1Pq/hqGLczbOJ1kEQNI9hnX0+ZIZNFaIex3r6QjRShqGL7iT/nV0TPf2p0HUdD9PZYvFMPRr8u47jeRFyMrujm/l6XpZlAWX8NqLez265Wi23UDbd9Onr3Vx7hDYtbunetgIVo6hVPNIVDTnnAoattv9K1B9zISUsff+baCilZAztip0OF4OPMWOs0QAMuRDSMj3FBYykVZqeXB4AJfMZvnY4j34AAAAASUVORK5CYII=');
}

.point-gas {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAA4VBMVEVntOsxg8w0hc5ptuwxg8xptuz///9ksukxg8xntOthr+ddq+VptuxZqONVpOFRoN5Dk9U7jNJMm9s0hc76/P1Hl9k/j9Q3iNBYls3V5O/8/f72+fxlsOVhqd6jw9xMmtg3h886iMxIkMtJjMbu9Pjq8vff6/Xb5/HS4vC81OeJtt9YpNxtpNSKtNNWmsrm7/bi7PTI3vC31uvA1OagxeavzeV4uOWOvuCSu+B8teCqx91lqNtcpttxqNpGltdYm9ZaoNVPmNFOk9FZn9BIks5mo81AjMxQlstzo8pOk8lVlccHv1RqAAAABnRSTlPn5+TJSD+2tqT0AAAAyUlEQVQY003L1XYCQRBF0cKqp5NJGGkbFyR43B2H//8gauCF/XTuWlXQatg2Z9w+abQAOGdxksSMHwEw8vK6WiTsBC5I/NCdzr4oCFxW3kORzsbHhKvKZ4D4sRlXCdeVvyGimP63KaFNsh1dYHefUYPneVm5DTFCTJc0QErpdG5w2BPYK3+kBMdx1qkQ5v45QkMDlFJFgEH5a+5w4ioFrusWA3zsFPQ3oQFa6/wt7BvL3A7mudZQ930/f4pG1qj/TVmHZs06U2seACNYFlK1GbMvAAAAAElFTkSuQmCC');
}

.point-gvs {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAA3lBMVEXaLgD7ewD/hAD1bQDjQwDmSgD/hAD4dADkRQDaLgD/////hADeOAD8fQDkRQDcNADbMAD+gQD7eAD4eAD4cwD1cAD0agDwYQDpTwDnSwDgSADjQQDhPgDzZwDuWwDqUwDQQADgOwDdNQDncgDlbgD2bQDyZADoYQDuXgDsWADfVgDlVADeTgDUSwDdPwD5fQDQZQDjYgDOYgDeXgDpWADrVQDYVADjSwDZSgDbRwDWQADUOgDNOQDTNgDuegDtdwDxcgDdZwDMXQDoXADJVwDZVgDWVgDXUgDjUQDYRQAnwNOjAAAACnRSTlPmP+fn5+TJyUhI9E+UdQAAANZJREFUGNM1zNVOAwEUhOFTnOlK111ZN6g7ru//QpyGMHdfMvlpdDXmPeJJFFVVux7RGVO5v0OmqZquG+c0VhT2A2aZoRu5GZAiihobeJ2aZlAUxM5mOO19bllWRar6/IK/fb6FYU0cwv8WdRSRkeflfFo2q6ZtI9t2iEslPlZf6PvOdhyJgsKq0KDDBtu1JHlkVeGi/cbadeFKnu9TWC+7fuP+xLth8P1EoGVkbxHHMQ6HfSIIKXHIxQ57HHFMU3lClxzyBgiCDFmeTIhuLjw/OX2Z7NtfFtIbT3z01icAAAAASUVORK5CYII=');
}

.point-hvs {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAilBMVEVeyfwOg7IShrZhzP8Og7JhzP////9fy/4ShbUOg7JaxvhQvO43ptcomss9rN0plcVVwfQvoNEilcUcj78Xi7pKt+lDsuMxlsMYgq5UtuUgjLkWgq45oc8zns0hkcAZiLdZw/Rbv+9IseJOsuFCr99KrtxCo89KpM1GoMo3nMhCnMYfh7I6pNMtmMea77RtAAAABnRSTlPn5+TJSD+2tqT0AAAAlklEQVQY003HBxKCQBBE0TaNCiimXYLkLOr9r2cPaJVvq2v/YLPaqlJK/VYbYLqdSCJHA3BUEfXSR4UmTuTWg4gMtcuGS+0oamzZMMZUncy6yhhYaxv5aazFkV6PxEs4bXiUShAEXMrGmVLxp/dm46B8npwmLhQ/40yXsXGlXMIw5HI2bpTLfX5sLHcT+W6J9WL/Z7H+AFTKD7St/LboAAAAAElFTkSuQmCC');
}

.point-ps {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAV1BMVEXWMDDXMjDXMTDjRjvfLB/VLzDVMzHVMDHXMjH////+9/faPz7539730tLxtrXiZ2bgX17dU1LbRUPXNDL77u765eb64+L0ycjoi4rnhIPkdHTfWlnbSEcaZQErAAAACHRSTlPxlY8IB+3sk0Fg93YAAABlSURBVBjTZY7ZEoAgCADRTrI8srv+/zuT0Uxr33YZGKBg0EaAFcDaDAaQh+jWKOGLd7EidlsMp+yRUCGMHXqkD3rAwHK5QPPIQOHABOGCSXy2dGOfHu81rXz4v97kgUPJq1drXt60KQjhoxSvtAAAAABJRU5ErkJggg==');
}

.point-psgvs {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAt1BMVEUAAADXMTDWMC+JaYV+GBHXMjHVMzH/hADjQwD/hAD4dADXMjD/hAAAAAD////XMjD6eADodwD1bQDSaQDvYQDaWgD/hAD8gQD5fgD4dQD4cgDoZADmWAD65OT8fADpcwD3cADqagDzZwDlXwDsXADpVADfUgDpUADeSwDlRwD53t331NTxtLTiaWjgXl3bSEfaPj3zeAD0cgDlbQDfbQDrZgDeZADPYwDQXwDgWgDhVADVTgDjSwAMdPF4AAAADnRSTlMAj+8PB/Ds5+TJyZQ/K460N5wAAAChSURBVBjTVcpXEoJQEETRwRz7IYIiIDmac97/uhwKKOX+na6mUX82n2Ciz21blheDJnXZU0wdmWm4NKSZzgbu55PhKi3RIN1hcw9PUcZCCDpeUGT6EBwtUKYC23wwvJt5DbSAjU0+KCY0TYMFbrnnwVfxRIyiNQ9qaFmIUHYQFL7ecVJ5yY8oRVp5teMh+YDEX5RlNbepV7OQqCk1fuxIrS8HHxOvfukesQAAAABJRU5ErkJggg==');
}

.point-so {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAk1BMVEXYYLaGCnmKD3zbZLiGCnnbZLj///+KD3yGCnmPFIDEVqXYYLbUYbKVGoSTLICEJHPTW7K9RKK2PZ2zTZelO46fNYmaH4jbZLjJV6rAS6OuNJeoL5KiRImHGHjPV6/OW63JUavDSqe9Up+xQJirOZOhJ46iL42lRYueLYmbJYmOGX7KjrvBebbOWa66Tp23RZ2sSJG/eE9pAAAABnRSTlPn5+TJSD+2tqT0AAAAkElEQVQY01XI1xaCMBRE0aFdhAhSNDSld+v/f50YcBn3eZqBoUVsv2JRpBkAY4W9KhhjgOfFNYWiOr57HnI7HOgsGl6POEeZ0M81KVHJBz0r+L7f0HGLGh9BELR02qI2QJpmI7lb1KfIevdA32jM0E0kmTpwLu0b53AcZ6aLaHYWsBZkiqwPqOYfFbqykyj6Gy03DhfRcx4XAAAAAElFTkSuQmCC');
}

.point-sogvs {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAA/1BMVEUAAACIDHsAAADbZLj/hADjQwD/hAD4dACGC3r/hAAAAAAAAAAAAAD///+LD32GC3qQFoH6eACWG4X3cgD1bQDvYQDaWgD39/eiK46LFH2HGHeFJnT7gQD7fgDodwD4dQDRaADqZQDoVQD7+/vWX7bOV67AUaKjOYyXMIKOFX//hAD8fADpcwD3cADqagDzZwDlYwDsXADmWwDiWQDpUADfTwDlRwDv7+/Nkb3CerbTW7LIT6rBSKW6QaC7Sp+1Q5uzOZquPZarMZWpP5CoNZCdIoqcIon/gwDzeADqeADlbQDfbQDSawDeZADPYwDQXwDeVQDhVADVTgDjSwDcSQAxFtFLAAAADXRSTlMA5ivn5+TJyUg/IBAHIOyoKwAAAMRJREFUGNNNx9dSwgAUhOEN9rJKTFWTQEJRehGwK713eP9n4Uzggu+f2ZnF1XnW8ei5bi6nqrEL4DTrjKaM51W5WgEnGDhenOR8rGkF/TaZhJuXLxZFXY+kU18YTrjnl8iPdAoxHhgUf9/QirOyXzarxjU75P8PdJ+mafKNLxJbvygZcpaM8FVitwmjUg0Y8DmMdhuV1bpeIxNWgsK2EdS5JWm9W7Kf/R5qG97wKSz6INBoIMPHsExU4Ax3xxRAuT+iXO4ATIAa3NcZJEIAAAAASUVORK5CYII=');
}

.report-task {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAA9lBMVEUAAAAAAADYY0TYY0TYY0QAAAAAAAAAAADYY0QAAAC9iEqhXCnLmlVWZYpzgqj7+/vYY0SEhISytr23ez+pYCr3+vzz9/vb5fDc4+na4OjE1ej66Lxzg6pvfqd6hqVjcps3R3XtuWDIkU7Ahka7gEPMkkCybTW9eTLl6vHk5ujJ0+P99uD889avvtbAx8v77MW5vsWWo8DUzLiIlbP34rH33qn12aF4gZn01Zjz0ZBoco1WZY3KuInxy4feu4JKWYLcv3pCUXrUrnjnxHdWXXXCpG7TpluWfVfMmFKuh07CiknIjD24gTzFhzq2dTrCgjjAfjauZzBcBVMBAAAAD3RSTlMABaNnVA4MCPEUxcPAi4eXKMomAAAAuElEQVQY023O1RLCQAwFUOp4toJDHYq7u7v+/8+w205neOC+5UzmJoE/oXDi+XyM43jBnaNLtVBIpWaatg1TBM61UaeazTZ6+64lEDDrB3Wl65vpaW7zGASzdaw0JUlqX9ayC9dcEcrpdCZz38kcAQuDxCASxgW7f0swQZoFlg4yGHh58EggGkAEoBGB5/CVRKwLLAGuNH4nEWAQRfBg4jhkA/yNz8IwSAf4HRFFUX6vUHwIx/sDz1/8kxOC9BygbwAAAABJRU5ErkJggg==')
}

.status-error {
  background-color: orangered;
  border: 1px darkred solid;
}

.status-nocontrol {
  background-color: dimgrey;
  border: 1px black solid;
}

.status-nodata {
  background-color: blueviolet;
  border: 1px darkmagenta solid;
}

.status-warning {
  background-color: orange;
  border: 1px orangered solid;
}

.status-ok {
  background-color: #00c100;
  border: 1px green solid;
}

.status-nocontrol,
.status-ok,
.status-error,
.status-warning,
.status-nodata {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
}

.point-common,
.point-electric,
.point-gas,
.point-gvs,
.point-hvs,
.point-ps,
.point-psgvs,
.point-so,
.point-sogvs,
.report-task {
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  margin: 0 2px 0 2px;
}

.color-error {
  color: red;
}

.color-nocontrol {
  color: dimgrey;
}

.color-nodata {
  color: blueviolet;
}

.color-warning {
  color: orange;
}

.color-ok {
  color: #00c100;
}

.color-transparent {
  color: transparent;
}

.tabs-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: auto;
  width: 100%;
}

.tabs-container .tabs {
  display: inline-flex;
  border-bottom: 1px solid #ccc;
}

.tabs-container .tabs .tab {
  display: inline-block;
  background-color: #eee;
  border-radius: 4px 4px 0 0;
  padding: 5px 15px;
  color: #666;
  cursor: pointer;
  margin-right: 2px;
  transition: color .3s ease-out;
  user-select: none;
}

.tabs-container .tabs .tab.active {
  cursor: default;
}

.tabs-container .tab-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: auto;
}

.tab-component-fade-enter-active,
.tab-component-fade-leave-active {
  transition: opacity .25s ease;
}

.tab-component-fade-enter,
.tab-component-fade-leave-to {
  opacity: 0;
}

.component-background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: auto;
  z-index: 10000;
  padding: 15px;
  transition: opacity .3s ease;
}

.component-header {
  display: flex;
  padding: 3px 6px;
  font-size: 14px;
}

.component-header .close-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  margin-left: auto;
}

.component-wrapper {
  background: white;
  display: flex;
  justify-content: center;
  overflow: auto;
  flex: 1;
  flex-direction: column;
}

.sign-group:after {
  font-size: 8px;
  position: absolute;
  right: 0;
  bottom: 0;
  color: cyan;
  content: "\F7E9";
  background-color: inherit;
  padding: 1px;
  line-height: 8px;
}

@keyframes hourglass {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
table {
  border-spacing: 0;
  border-collapse: collapse;
  empty-cells: show;
}

.table-container {
  overflow: auto;
  flex: 1;
}

.table-header {
  overflow: hidden;
}

.table-header .header th,
.table-container .header th {
  padding: 5px;
  font-weight: normal;
  text-align: left;
  color: inherit;
}

.table-header th:not(:first-child),
.table-container .header th:not(:first-child) {
  border-left: 1px solid currentColor;
}

.table-header .filter,
.table-container .filter {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
}

.table-header .filter th,
.table-container .filter th {
  padding: 3px 5px;
  vertical-align: middle;
  font-weight: normal;
}

.table-header .filter th:not(:first-child),
.table-container .filter th:not(:first-child) {
  border-left: 1px solid #bbb;
}

.table-container table tr.data-row:hover {
  background: #eee;
}

.table-container table td:not(:first-child) {
  border-left: 1px solid #ccc;
}

.table-container table .data-row {
  border-bottom: 1px solid #ccc;
}

.table-container table td {
  padding: 3px 5px;
}


.loader {
  position: absolute;
  display: flex;
  color: #666;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  z-index: 30000;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.loader .loader-content {
  display: flex;
  align-items: center;
  color: inherit;
  border: 1px solid currentColor;
  padding: 20px;
  background: white;
  box-shadow: 3px 3px 15px currentColor;
}
.loader .loader-spinner {
  color: inherit;
  border: 3px solid #fff;
  border-radius: 50%;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  width: 30px;
  height: 30px;
}
.loader-fade-enter-active,
.loader-fade-leave-active {
  transition: opacity .2s;
}
.loader-fade-enter,
.loader-fade-leave-to {
  opacity: 0;
}
@keyframes spinner {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}



.carousel-container {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
    overflow: hidden;
}
.carousel-container .slide {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 1;
}
.carousel-container .button-left {
    left: 5px;
}
.carousel-container .button-right {
    right: 5px;
}
.carousel-container .button-left,
.carousel-container .button-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: rgba(0, 0, 0, .2);
    border-radius: 50%;
    width: 48px;
    height: 48px;
}
.carousel-container .footer {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    height: 50px;
    align-items: center;
    justify-content: center;
}
.carousel-container .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    background-color: transparent;
    border-radius: 50%;
    transition: .3s cubic-bezier(.25, .8, .5, 1);
}
.carousel-container .button-left .button,
.carousel-container .button-right .button {
    width: 48px;
    height: 48px;
    color: white;
}
.carousel-container .footer .button {
    width: 28px;
    height: 28px;
    margin: 0 8px;
}
.carousel-container .animate-button {
    content: '';
    background-color: white;
    border-radius: 50%;
    display: inline-flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: scale(0.001, 0.001);
}
.carousel-container .button:hover {
    background-color: rgba(255, 255, 255, .12);
}
.carousel-container .footer .button:hover .point {
    background-color: rgba(255, 255, 255, 1);
}
.carousel-container .footer .point {
    display: inline-flex;
    cursor: inherit;
    background-color: rgba(255, 255, 255, .7);
    border-radius: 50%;
    width: 14px;
    height: 14px;
    transition: background-color .5s ease;
}
.carousel-container .footer .active {
    background-color: white;
    width: 16px;
    height: 16px;
}
.carousel-fade-enter-active,
.carousel-fade-leave-active {
    transition: opacity .4s ease;
}
.carousel-fade-enter,
.carousel-fade-leave-to {
    opacity: 0;
}
.carousel-button-click_effect-enter-active {
    animation: carousel-button-click_effect .5s ease-out;
}
.carousel-button-click_effect-leave-active {
    animation: carousel-button-click_effect .5s ease-out;
}
@keyframes carousel-button-click_effect {
50% {
        transform: scale(1.2, 1.2);
        opacity: 0;
}
99% {
        transform: scale(0.001, 0.001);
        opacity: 0;
}
100% {
        transform: scale(0.001, 0.001);
        opacity: 1;
}
}



.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1px;
  position: relative;
  font-size: 14px;
  padding: 0 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.header-wrapper .brand {
  display: inline-flex;
  text-decoration: none;
}
.header-wrapper .toggle-wrapper {
  padding: 3px;
}
.header-wrapper .toggle {
  display: flex;
  width: 22px;
  height: 22px;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
}
.header-wrapper a,
.header-wrapper a:hover {
  color: inherit;
}
.header-wrapper .toggle span,
.header-wrapper .toggle span::before,
.header-wrapper .toggle span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  margin-top: -1px;
  margin-left: -6px;
  background-color: currentColor;
}
.header-wrapper .toggle span::before,
.header-wrapper .toggle span::after {
  content: '';
  transition: .2s;
}
.header-wrapper .toggle span::before {
  transform: translateY(-4px);
}
.header-wrapper .toggle span::after {
  transform: translateY(4px);
}
.header-wrapper .toggle-cross span {
  height: 0;
}
.header-wrapper .toggle-cross span::before {
  transform: translateY(1px) rotate(45deg);
}
.header-wrapper .toggle-cross span::after {
  transform: translateY(1px)rotate(-45deg);
}
.menu-bar {
  display: flex;
  flex: 1;
  justify-content: space-between;
  background-color: inherit;
  color: inherit;
  min-height: 29px;
}
.menu-bar .menu-wrapper {
  display: inline-flex;
  color: inherit;
}
@media all and (max-width:768px) {
.menu-bar {
    display: block;
    z-index: 9999;
    position: absolute;
    top: 100%;
    right: 0;
    transition: all .2s;
}
.menu-bar .menu-wrapper {
    display: block;
}
}
.collapse {
  display: none;
}
@media all and (min-width:768px) {
.collapse {
    display: flex;
}
.header-wrapper .toggle {
    display: none
}
}



.footer-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px;
  background-color: #eeeeee;
  border: 1px solid #ccc;
}
.footer-wrapper .cell {
  padding: 0 4px;
  user-select: none;
  cursor: default;
}



.error-wrapper {
  position: absolute;
  display: flex;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  z-index: 30000;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: auto;
}
.error-wrapper .container {
  border: 1px solid #666;
  background: white;
  width: 500px;
}
.error-wrapper .content {
  padding: 10px;
}
.error-wrapper .content .field {
  width: 100%;
  border: 1px solid #aaa;
}
.error-wrapper .header {
  background-color: #0070c4;
  color: white;
  font-size: 14px;
  padding: 10px;
}



.card {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin: 15px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  border: 1px #ccc solid;
  position: relative;
}
.card:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.card .title {
  padding: 10px;
  font-size: 16px;
  font-family: monospace;
}
.card .content {
  display: flex;
  flex: 1;
  padding: 5px;
  border-top: 1px #ccc solid;
}
.card .footer {
  position: absolute;
  right: 0;
  bottom: 0;
}



.vue-chart-pie-container {
  position: relative;
  display: flex;
  flex: 1;
  overflow: hidden;
}
.vue-chart-pie-container .legend {
  padding: 3px;
  position: absolute;
  left: 0;
  top: 0;
  cursor: default;
}
.vue-chart-pie-container .legend .legend-item {
  display: flex;
  align-items: center;
  padding: 2px;
}
.vue-chart-pie-container .legend .mark {
  margin: 0 6px 0 0;
}
.vue-chart-pie-container .legend .legend-item:hover {
  font-weight: bold;
}
.vue-chart-pie {
  flex: 1;
}
.vue-chart-pie path,
.vue-chart-pie circle {
  stroke-width: 25;
  transition: stroke-width .3s ease-in-out;
}
.vue-chart-pie path:hover,
.vue-chart-pie circle:hover {
  stroke-width: 30;
}



.info-wrapper {
  display: flex;
  flex: 1;
  overflow: hidden;
}
.info-wrapper .footer {
  display: flex;
  align-items: center;
  padding: 3px;
  white-space: nowrap;
}



.menu-item {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  padding: 5px 10px;
  text-decoration: none;
  overflow: hidden;
  color: inherit;
  transition: background-color .2s ease, color .2s ease;
}
.menu-item:focus,
.menu-item:hover {
  text-decoration: none;
}
.menu-item .text-wrapper {
  display: inline-block;
  position: relative;
  color: currentColor;
}
.menu-item .text-wrapper:after {
  position: absolute;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 0;
  left: 50%;
  transition: width .2s ease-in-out;
  transform: translateX(-50%);
}
.menu-item:hover .text-wrapper:after {
  width: 100%;
}
@media all and (max-width:768px) {
.menu-item {
    display: block;
}
.menu-item.right {
    margin-left: initial;
}
.menu-item .icon {
    margin-right: 0;
}
}



.notifications {
  display: block;
  position: fixed;
  z-index: 10001;
}
.notifications .notification-wrapper {
  display: block;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  transition: all .3s;
}
.notifications .notification-title {
  font-weight: 600;
}
.notifications .notification {
  font-size: 12px;
  padding: 10px;
  margin: 5px 2px 2px;
  color: #333;
  background: white;
  border: 1px solid #eee;
  border-left: 5px solid #ccc;
}
.notifications .notification.info {
  color: #31708f;
  background: #d9edf7;
  border-color: #bce8f1;
  border-left-color: #31708f;
}
.notifications .notification.warning {
  color: #8a6d3b;
  background: #fcf8e3;
  border-color: #faebcc;
  border-left-color: #8a6d3b;
}
.notifications .notification.error {
  color: #a94442;
  background: #f2dede;
  border-color: #ebccd1;
  border-left-color: #a94442;
}
.notifications .notification.success {
  color: #3c763d;
  background: #DBF0D8;
  border-color: #d6e9c6;
  border-left-color: #3c763d;
}
.notifications .list-enter-active, .notifications .list-leave-active {
  transition: all .5s;
}
.notifications .list-enter, .notifications .list-leave-to {
  transform: translateX(100%);
}
.notifications .list-move {
  transition: all .5s;
}



.login-background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  transition: opacity .3s ease;
}
.login-wrapper {
  padding: 20px;
  background-color: #fff;
}
.login-wrapper .row {
  display: block;
  text-align: right;
  padding: 5px;
}


.app-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: auto;
  padding: 2px;
}
.app-content-wrapper {
  position: relative;
  padding: 0 3px;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: auto;
}


