@font-face {
  font-family: 'gts-varfont';
  font-weight: bold;
  src: url("/shared/fonts/Roboto-Bold.ttf") format("truetype");
}
@font-face {
  font-family: 'gts-varfont';
  font-weight: lighter;
  src: url("/shared/fonts/Roboto-Light.ttf") format("truetype");
}
@font-face {
  font-family: 'gts-varfont';
  font-style: italic;
  src: url("/shared/fonts/Roboto-Italic.ttf") format("truetype");
}
@font-face {
  font-family: 'gts-varfont';
  font-weight: normal;
  src: url("/shared/fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: 'gts-monofont';
  font-style: normal;
  font-weight: normal;
  src: url('/shared/fonts/RobotoMono-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'gts-monofont';
  font-style: normal;
  font-weight: bold;
  src: url('/shared/fonts/RobotoMono-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'FontAwesome';
  src: url('/shared/fonts/fontawesome-webfont.ttf');
}
.loading {
  list-style: none;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0;
  z-index: 2100;
}
.loading li {
  height: 0;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  margin: 0;
  height: 50px;
  width: 50px;
  border: 3px solid #337ab7;
  border-radius: 100%;
  transform: transformZ(0);
  animation: LOADING 2s infinite;
}
.loading li:nth-child(1n) {
  left: -50px;
  animation-delay: 0s;
}
.loading li:nth-child(2n) {
  left: 0;
  animation-delay: 0.2s;
}
.loading li:nth-child(3n) {
  left: 50px;
  animation-delay: 0.4s;
}
@keyframes LOADING {
  0% {
    transform: scale(0.5);
    background: #337ab7;
  }
  50% {
    transform: scale(1);
    background: white;
  }
  100% {
    transform: scale(0.5);
    background: #337ab7;
  }
}
.default-transition {
  transition: all 150ms ease-out;
}
.elevate-transition {
  transition: all 150ms ease-out;
  box-shadow: 0px 0px 10px #777;
}
.inputs-border {
  border-radius: 0;
  border-width: 1px;
  border-style: solid;
  border-color: #cccccc #cccccc #aaaaaa #cccccc;
}
.inputs-hover {
  border-color: #cccccc #cccccc lightblue #cccccc;
  background-color: transparent;
  transition: all 150ms ease-out;
  box-shadow: 0px 0px 10px #777;
}
.inputs-focus {
  border-color: #cccccc #cccccc #5e7bb9 #cccccc;
  background-color: transparent;
  box-shadow: inset 0px -1px 0 0 #5e7bb9;
  transition: all 150ms ease-out;
}
.font-var {
  font-family: gts-varfont, calibri, verdana, tahoma;
}
.font-mono {
  font-family: gts-monofont, monospace;
}
.font-size-normal {
  font-size: 10pt;
}
.font-size-little {
  font-size: 8pt;
}
.font-size-big {
  font-size: 24pt;
}
.image-button {
  background-repeat: no-repeat;
  width: 50px;
}
.shadow {
  box-shadow: 0 2px 2px 0 #555;
}
.form-control {
  padding: 2px 6px 2px 6px;
  height: auto;
}
.navbar-default {
  background-color: #eee;
}
.navbar-nav > li > .dropdown-menu > li > a:hover {
  color: #fff;
  background-color: #2e6da4;
}
.navbar-inverse .navbar-nav > li > a {
  color: #ccc;
}
.navbar-default .navbar-nav > li > a {
  color: #555;
}
.nav > li > a {
  padding-right: 10px;
  padding-left: 10px;
}
.btn {
  font-weight: bold;
  margin: 3px;
}
.btn-group > .btn {
  margin: 2px;
}
.btn-default {
  background-color: #ccc;
}
.input-group-btn button {
  margin: 0;
  padding-top: 3px;
  height: 26px;
}
.nonfluid input,
select,
textarea {
  width: auto !important;
}
.badge {
  margin-left: 4px;
}
.panel {
  margin-bottom: 5px;
}
body {
  font-family: gts-varfont, calibri, verdana, tahoma;
  padding-top: 55px;
}
body.nomenu {
  padding-top: 0;
}
table {
  width: auto !important;
  margin-right: 5px;
}
th {
  background-color: #ddd;
}
hr {
  border-color: #ddd;
  margin-top: 15px;
  margin-bottom: 15px;
}
.fld {
  font-weight: bold;
  padding: 1px 4px 1px 4px;
  background-color: #ddd;
  color: #000;
  border-width: 0 1px 0 0;
  border-style: solid;
  border-color: #bbb;
}
.val {
  padding: 0px 3px 0px 2px;
  background-color: transparent;
  border-style: none;
  vertical-align: top;
}
.num {
  font-family: gts-monofont, monospace;
  text-align: right;
}
.block {
  padding: 1px;
  margin: 3px 3px 6px 3px;
  border-color: #000;
  border-width: 3px;
  border-radius: 2px;
  box-shadow: 0px 0px 6px #999;
  background-color: #fff;
}
.block:hover {
  transition: all 150ms ease-out;
  box-shadow: 0px 0px 10px #777;
}
.gvnotify {
  display: table;
  vertical-align: middle;
  position: fixed;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 4px;
  border-radius: 5px;
  font-variant: small-caps;
  font-size: 12pt;
}
.gnotifytext {
  display: table-cell;
  vertical-align: middle;
}
.gvbusy {
  z-index: 9900;
  display: table;
  vertical-align: middle;
  position: fixed;
  background: #f77;
  color: #fff;
  font-weight: bold;
  padding-left: 2px;
  padding-right: 2px;
  padding-bottom: 0px;
  border-radius: 5px;
  font-variant: small-caps;
  font-size: 12pt;
}
.gvpanel {
  display: none;
  width: 90%;
  height: 80%;
  margin: 80px 10px 80px 0px;
  background-color: #eee;
  z-index: 500;
  position: absolute;
  position: fixed;
  padding: 5px;
  overflow: auto;
  border-style: solid;
  border-color: #777;
  border-width: 1px;
  border-radius: 4px;
  box-shadow: 0px 0px 30px #444;
}
.gvtooltip {
  position: absolute;
  border-radius: 4px;
  padding: 4px;
  background-color: #eee;
  display: none;
  box-shadow: 0px 0px 11px #000;
  z-index: 9999;
}
meter::-webkit-meter-bar {
  background: #ccc;
}
meter::-webkit-meter-optimum-value {
  background: linear-gradient(to bottom, #62c462, #51a351);
}
meter::-webkit-meter-suboptimum-value {
  background: linear-gradient(to bottom, #fbb450, #f89406);
}
meter::-webkit-meter-even-less-good-value {
  background: linear-gradient(to bottom, #ee5f5b, #bd362f);
}
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2000;
  background-color: rgba(255, 255, 255, 0.7);
}
.panel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 400;
  background-color: rgba(255, 255, 255, 0.7);
}
