body, html {
  height: 100%;
}
.app-loading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.app-loading .spinner {
  height: 200px;
  width: 200px;
  animation: rotate 2s linear infinite;
  transform-origin: center center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.app-loading .spinner .path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke:#ddd;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

a[mat-fab] {position:fixed;bottom:65px;right:35px;}

.full-width {width:100%}
.width-50 {width:50%}
.width-30 {width:30%}
button[type=submit], button[color=primary]{text-transform: uppercase;}

button[_context_menu] {
  height:38px;
  line-height:38px;
}

button[_context_menu] mat-icon {
  color: var(--menu-color);
  margin-right:12px !important;
}

button[_context_menu] span {
  font-size: 13px;
  font-weight: 500;
  color: var(--menu-color);
}

.mx-auto { margin-right: auto!important; margin-left: auto!important;}
.text-center {text-align: center!important;}
.text-right {text-align:right!important;}
.text-left {text-align:left!important;}
.hide-me{display:none;}

/*Auto-Complete CSS*/
.autocomplete-suggestions { border: 1px solid #999; background: #FFF; overflow: auto; width: 450px !important;}
.autocomplete-suggestion { padding: 5px 5px; white-space: nowrap; overflow: hidden; font-size:14px}
.autocomplete-selected { background: #D3D3D3; }
.autocomplete-suggestions strong { font-weight: bold; color: #3399FF; }

/*Material Dialog CSS*/
mat-dialog-container {text-align: center;}

.mat-card-size {
  max-width: 100%;
  margin: 0px 0px;
}

/* Dashboard Styles */
.dash-card ul {
  padding: 10px 0;
  list-style: none;
  margin-top: 0;
}
.dash-card ul li:first-child {
  border-right: 1px solid #dbdee0;
}
.dash-card ul li {
  display: block;
  float: left;
  width: 50%;
}
.dash-card ul li strong {
  display: block;
  font-size: 20px;
}
.dash-card ul li span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color:var(--light-primary-color);
  letter-spacing: .04em;
}
.dash-card ul li strong > a {text-decoration:none; color: inherit;font-weight:inherit;}
.no-border {border: 0px !important;}

/* Bootstrap Additional Reset */
:focus, :active {
  outline: none !important;
}
i.tlss-status { vertical-align: middle; }
