input[type="submit"], input[type="reset"], input[type="button"] {
  border: 0;
  font: inherit;
  line-height: normal;
  overflow: visible; }

* {
  box-sizing: border-box;
  overflow-wrap: break-word;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  line-height: 1.2; }

body {
  background-color: #ffffff;
  font-family: 'Arial', sans-serif; }

h1, h2, h3, h4, h5, h6 {
  font-weight: bold; }

.icon {
  margin: 5px; }

.red-button-icon {
  background-color: #b71c1c; }

.red-icon {
  color: #b71c1c; }

.text-center {
  text-align: center; }

.text-strike {
  text-decoration: line-through; }

.float-left {
  float: left; }

.float-right {
  float: right; }

.clear {
  clear: both; }




.container {
  margin: 2% auto;
  width: 350px; }

.login-container {
  position: relative;
  background-color: #0e1e33;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24); }
  .login-container h1 {
    font-size: 2em;
    font-weight: 600;
    text-align: left;
    padding: 15px;
    color: white; }
  .login-container #logo {
    display: block;
    margin: 20px auto;
    height: 100px; }
  .login-container .form-container {
    clear: both;
    display: block;
    background-color: white;
    width: 100%;
    text-align: center;
    padding: 20px 10px;
    z-index: 5;
    overflow: hidden; }
    .login-container .form-container label {
      display: block;
      width: 90%;
      margin: 0 auto;
      padding: 10px 0; }
    .login-container .form-container input {
      width: 90%;
      font-size: 1em;
      padding: 5px;
      border: 1px solid black;
      border-radius: 5px; }
    .login-container .form-container .login-icon {
      font-size: 1.2em;
      color: #757575;
      margin-right: 5px; }
    .login-container .form-container input[type=submit] {
      padding: 5px;
      margin-top: 10px;
      width: 60%;
      color: #0e1e33;
      background-color: white;
      border: 1px solid #0e1e33;
      cursor: pointer;
      transition: all 0.2s ease-in-out; }
      .login-container .form-container input[type=submit]:hover {
        color: white;
        background-color: #0e1e33; }
      .login-container .form-container input[type=submit]:active {
        background-color: #000015; }

.multi-icon {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: -1;
  color: #00000b;
  transform: scale(1.2); }

.error {
  font-weight: 700;
  color: #b71c1c;
  padding: 5px; }

.error-text {
  font-weight: 700;
  color: #b71c1c; }

header {
  width: 100%;
  border-bottom: 5px solid white; }

.topbar-container {
  color: whitesmoke;
  background-color: #1351d8;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 20px 0 0 0;
  -webkit-box-shadow: 0 8px 6px -6px black;
  -moz-box-shadow: 0 8px 6px -6px black;
  box-shadow: 0 8px 6px -6px black;
  position: relative; }
  @media (max-width: 1100px) {
    .topbar-container {
      width: 95%; } }
  @media (max-width: 620px) {
    .topbar-container {
      width: 100%; } }
  .topbar-container .logo img {
    height: 75px; }

.user {
  text-align: right;
  width: 50%;
  color: #ffffff;
  position: absolute;
  right: 5px;
  top: 10%; }
  .user .name-and-logout {
    padding: 0px;
    color: #FFFFFF;
  }
    .user .name-and-logout .username, .user .name-and-logout #logout {
      display: inline-block;
    }
  @media (max-width: 620px) {
    .user {
      position: relative;
      text-align: center;
      width: 100%;
    }
  }


nav {
  //padding: 10px 0;
  margin-bottom: -10px; }
  nav ul a {
    padding: 16px;
    margin: 0;
    display: inline-block;
    text-decoration: none;
    color: white;
    transition: all 0.2s ease-in-out; }
    nav ul a:hover {
      color: #1351d8; }
    nav ul a.active {
      background-color: #1351d8;
      color: white; }
      nav ul a.active:hover {
        color: #E3F2FD; }
    nav ul a#admin-nav-item {
      float: right; }

.message-container {
  text-align: center;
  width: 70%;
  margin: 10px auto -5px auto;
  padding: 10px;
  background-color: #8dc63f;
  color: white; }
  @media (max-width: 1100px) {
    .message-container {
      width: 95%; } }
  @media (max-width: 620px) {
    .message-container {
      width: 100%; } }
  .message-container.error {
    background-color: #b71c1c; }

.button-link {
  color: white;
  text-decoration: none;
  width: max-content; }
  .button-link .icon {
    margin: 2px; }
  .button-link .button {
    background-color: #1351d8;
    padding: 7px;
    width: max-content;
    transition: all 0.2s ease-in-out; }
    .button-link .button:hover {
      background-color: #1351d8; }
    .button-link .button.red-button {
      background-color: #b71c1c; }
      .button-link .button.red-button:hover {
        background-color: #a30808; }

.button-link-red {
  color: white;
  display:block;

  text-decoration: none;
  width: max-content; }
.button-link-red .icon {
  margin: 2px; }
.button-link-red .button {
  background-color: #b71c1c;
  padding: 7px;
  width: max-content;
  transition: all 0.2s ease-in-out; }
.button-link-red .button:hover {
  background-color: #a30808; }



.button {
  color: white;
  cursor: pointer;
  background-color: #0e1e33;
  padding: 7px;
  width: max-content;
  transition: all 0.2s ease-in-out; }
  .button:hover {
    background-color: #000a1f; }

.submit-button {
  padding: 7px;
  background-color: #0e1e33;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease-in-out; }
  .submit-button:hover {
    background-color: #1d2d42; }
  .submit-button:active {
    background-color: #000f24; }

.fieldset-container {
  text-align: center;
  margin: 0 auto; }
  @media (max-width: 810px) {
    .fieldset-container fieldset {
      display: block; }
      .fieldset-container fieldset input, .fieldset-container fieldset textarea {
        width: 100%; } }

.container-single-line {
  margin: 0 auto 10px auto;
  text-align: center; }

fieldset {
  display: inline-block;
  padding: 5px;
  margin: 10px;
  vertical-align: top;
  text-align: center; }
  fieldset label {
    display: block;
    margin-top: 5px;
    padding: 5px;
    background-color: #1351d8;
    color: white; }
  fieldset input[type="text"], fieldset textarea, fieldset select {
    width: 100%; }
  fieldset.submit-fieldset {
    display: block;
    width: 100%;
    text-align: center; }
.content
{
padding-left: 6%;

}

.center {

overflow-x: hidden;
  text-align: center;
width: 90px;
}
.centerdashboard {


  text-align: center;
  width: 100%;
}
.content-container {
  width: 95%;
  margin: 0 auto;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }
  @media (max-width: 1100px) {
    .content-container {
      width: 95%; } }
  @media (max-width: 620px) {
    .content-container {
      width: 100%; } }
.content-equipment-header-bar {
  margin-top: 20px;
  padding: 10px;
  background-color: #D3D3D3;
  color: #1351d8; }
.content-equipment-header-bar h1 {
  font-size: 1.75em;
  display: inline-block; }
.content-equipment-header-bar h2 {
  font-size: 1.3em;
  cursor: pointer;
  display: inline-block; }
.content-equipment-header-bar .breadcrumbs {
  display: block; }
.content-equipment-header-bar .breadcrumbs a {
  color: #1351d8; }
.content-equipment-header-bar .breadcrumbs .breadcrumb-arrow {
  color: #1351d8; }
.content-equipment-header-bar .breadcrumbs p {
  display: inline-block;
  color: #1351d8; }

.content-header-bar {
  margin-top: 20px;
  padding: 10px;
  background-color: #D3D3D3;
  color: #1351d8; }
  .content-header-bar h1 {
    font-size: 1.75em;
    display: inline-block; }
  .content-header-bar h2 {
    font-size: 1.3em;
    cursor: pointer;
    display: inline-block; }
  .content-header-bar .breadcrumbs {
    display: block; }
    .content-header-bar .breadcrumbs a {
      color: #1351d8; }
    .content-header-bar .breadcrumbs .breadcrumb-arrow {
      color: #1351d8; }
    .content-header-bar .breadcrumbs p {
      display: inline-block;
      color: #1351d8; }

.content-header-addeqt-bar {
  margin-top: 20px;
  padding: 10px;
  background-color: #1351d8;
  color: white; }
.content-header-addeqt-bar h1 {
  font-size: 1.75em;
  display: inline-block; }
.content-header-addeqt-bar h2 {
  font-size: 1.3em;
  cursor: pointer;
  display: inline-block; }
.content-header-addeqt-bar .breadcrumbs {
  display: block; }
.content-header-addeqt-bar .breadcrumbs a {
  color: white; }
.content-header-addeqt-bar .breadcrumbs .breadcrumb-arrow {
  color: white; }
.content-header-addeqt-bar .breadcrumbs p {
  display: inline-block;
  color: white; }


.content-header-bar-comment {
  margin-top: 20px;
  padding: 10px;
  background-color: #0e1e33;
  color: white; }
.content-header-bar h1 {
  font-size: 1.75em;
  display: inline-block; }
.content-header-bar h2 {
  font-size: 1.3em;
  cursor: pointer;
  display: inline-block; }
.content-header-bar .breadcrumbs {
  display: block; }
.content-header-bar .breadcrumbs a {
  color: #1351d8; }
.content-header-bar .breadcrumbs .breadcrumb-arrow {
  color: #1351d8; }
.content-header-bar .breadcrumbs p {
  display: inline-block;
  color: #1351d8; }

.content-area {
  clear: both;
  padding: 10px; }
  .content-area h2 {
    font-size: 1.6em;
    margin: 5px 0; }
  .content-area ul {
    margin: 5px; }

.dropdown {
  padding: 10px;
  margin: 0;
  display: inline-block;
  text-decoration: none;
  color: white;
  transition: all 0.2s ease-in-out; }
  .dropdown:hover {
    color: #1351d8; }
  .dropdown.active {
    background-color: #1351d8;
    color: white; }
    .dropdown.active:hover {
      color: #E3F2FD; }

.dropbtn {
  color: white;
  background-color: #0e1e33;
  padding: 7px;
  width: max-content;
  transition: all 0.2s ease-in-out; }
  .dropbtn:hover {
    background-color: #7eb730; }
  .dropbtn.red-button {
    background-color: #b71c1c; }
    .dropbtn.red-button:hover {
      background-color: #a30808; }

.dropbtnn {
  background-color: #0e1e33;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none; }

.dropdownn {
  position: relative;
  display: inline-block; }

.dropdownn-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1; }

.dropdownn-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block; }

.dropdownn-content a:hover {
  background-color: #ddd; }

.dropdownn:hover .dropdownn-content {
  display: block; }

.dropdownn:hover .dropbtnn {
  background-color: #8dc63f;
}

.shadow {
  -moz-box-shadow:    3px 3px 5px 6px #ccc;
  -webkit-box-shadow: 3px 3px 5px 6px #ccc;
  box-shadow:         3px 3px 5px 6px #ccc;
}

.info-container {
  clear: both;
  text-align: center;
  margin: 0; }
  .info-container.no-button {
    margin: 20px 5px; }
  @media (max-width: 500px) {
    .info-container {
      margin: 40px 0 20px 0; } }
  .info-container .info-wrap {
    display: inline-block;
    margin: 5px;
    padding: 5px;
    width: 31.5%;
    vertical-align: top; }
    @media (max-width: 792px) {
      .info-container .info-wrap {
        display: block;
        width: 80%;
        margin: 5px auto; } }
    @media (max-width: 500px) {
      .info-container .info-wrap {
        width: 100%; } }
    .info-container .info-wrap.description {
      display: inline-block;
      width: 48.3%; }
      @media (max-width: 792px) {
        .info-container .info-wrap.description {
          display: block;
          width: 80%;
          margin: 5px auto; } }
      @media (max-width: 500px) {
        .info-container .info-wrap.description {
          width: 100%; } }
    .info-container .info-wrap .info-label {
      display: block;
      background-color: #1351d8 ;
      padding: 5px;
      margin: 3px;
      text-align: center;
      width: 100%;
      color: white; }
    .info-container .info-wrap .info-text {
      margin-left: 5px;
      text-align: center; }
    .info-container .info-wrap .info-text-left {
  margin-left: 5px;
  text-align: left; }

.dashboard-message-container {
  width: 60%;
  margin: 0 auto; }
  @media (max-width: 1100px) {
    .dashboard-message-container {
      width: 98%; } }
  .dashboard-message-container .content-area img {
    height: 350px;
    display: inline-block;
    margin: 5px auto; }

table.dataTable {
  margin: 20px auto;
  width: 100%; }
  table.dataTable.no-footer {
    border-bottom: 2px solid #0e1e33; }
  table.dataTable tr.even {
    background-color: #e9e9e9; }
  table.dataTable tr.odd {
    background-color: white; }

.table-container {
  margin: 50px auto;
  width: 90%; }
  @media (max-width: 620px) {
    .table-container {
      width: 98%; } }

.list-table {
  background-color: #1351d8;
  border: 2px solid #0e1e33; }
  .list-table thead > tr > th {
    text-align: left;
    background-color: #1351d8;
    color: white;
    border-bottom: none;
    padding: 8px; }
  .list-table a {
    color: black; }
    .list-table a:visited {
      text-decoration: none;
      color: black; }

#document-list {
  width: 100%; }
  @media (max-width: 765px) {
    #document-list {
      width: 100%; } }

#parts-select, #reference-select {
  width: 310px; }
  @media (max-width: 620px) {
    #parts-select, #reference-select {
      width: 80%;
      display: block; } }

#permissions-table {
  width: 90%;
  margin: 0 auto; }
  #permissions-table tr:nth-of-type(odd) {
    background-color: white; }
  #permissions-table tr:hover {
    background-color: #e5e5e5; }
  #permissions-table tr td {
    padding: 4px; }

#approval-table tr > td {
  padding: 3px;
  vertical-align: top; }
  #approval-table tr > td input[type="submit"] {
    padding: 3px; }
  #approval-table tr > td p {
    display: inline-block;
    vertical-align: top;
    margin-right: 5px; }

.upload-form {
  margin: 10px; }

.document-link > a {
  color: black; }
  .document-link > a i {
    text-decoration: none; }

.image-link {
  display: inline-block;
  margin: 5px;
  text-align: center;
  width: 400px;
  vertical-align: top; }
  .image-link a img {
    width: 400px; }
  .image-link a p {
    text-align: center; }

#maintenance-list tr th, #maintenance-list tr td {
  padding: 5px;
  text-align: left; }
#maintenance-list tr th {
  border-bottom: 1px solid #d3d3d3; }
#maintenance-list tr td a {
  color: black; }

.part-header {
  cursor: pointer; }

.related-part-item {
  display: inline-block;
  position: relative;
  margin: 5px;
  padding: 5px;
  transition: all 0.2s ease-in-out; }
  .related-part-item:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }
  .related-part-item a {
    color: black;
    text-decoration: none; }

.menu-grid {
  width: 70%;
  margin: 30px auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center; }
  @media (max-width: 900px) {
    .menu-grid {
      width: 90%; } }
  .menu-grid a {
    text-decoration: none; }
    .menu-grid a:visited {
      text-decoration: none; }
    .menu-grid a .menu-item {
      margin: 5px;
      padding: 2em;
      text-align: center;
      background-color: white;
      color: black;
      border: 1px solid #0e1e33;
      border-radius: 5px;
      transition: all 0.2s ease-in-out; }
      .menu-grid a .menu-item:hover {
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24); }
      .menu-grid a .menu-item .menu-item-icon {
        margin: 10px; }

#pdf-viewer {
  width: 652px;
  height: 844px; }

footer {
  padding: 30px;
  text-align: center;
  color: black; }

#hard-hat {
  height: 25px; }

.hidden {
  display: none; }

#page-mask {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0,0,0,0.6);
}
a.logout:link
{
  color: #ffffff;

}
a.logout:visited
{
  color: #ffffff;

}
a.logout:hover
{
  color: #ffffff;

}
a.logout:active
{
  color: #ffffff;


}
a.nav-link:link
{
  color: #ffffff;

}
a.nav-link:visited
{
  color: #ffffff;

}
a.nav-link:hover
{
  color: #ffffff;
  text-decoration: underline;

}
a.nav-link:active
{
  color: #ffffff;

}

.input-detail-field
{
    width:100%;
}
/*# sourceMappingURL=layout.css.map */
/*
==========================================================
==========================================================

Bootstrapious Dashboard Template 1.2

https://bootstrapious.com/p/bootstrap-4-dashboard

==========================================================
==========================================================
*/
/*
* ==========================================================
*     GENERAL
* ==========================================================
*/
.text-bold {
  font-weight: 700;
}

.text-small {
  font-size: 0.9rem;
}

.text-xsmall {
  font-size: 0.8rem;
}

.text-gray {
  color: #868e96;
}

.text-uppercase {
  letter-spacing: 0.2em;
}

.lh-2 {
  line-height: 2;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
}

body {
  overflow-x: hidden;
}

i {
  display: inline-block;
}

span {
  display: inline-block;
}

.mt-30px {
  margin-top: 30px !important;
}

.mb-30px {
  margin-bottom: 30px !important;
}

i[class*='icon-'] {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
}

table {
  font-size: 0.9em;
  color: #666;
}

.btn-xs {
  font-size: 0.7em !important;
  padding: 2px 5px !important;
  border-radius: 2px !important;
}

.badge {
  font-weight: 400;
  border-radius: 0;
}

.badge.badge-primary {
  background: #33b35a;
}

.page {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: width 0.3s linear;
  transition: width 0.3s linear;
  width: calc(100% - 200px);
  background-color: #F4F7FA;
  min-height: 100vh;
  padding-bottom: 50px;
}

.page.active {
  width: calc(100% - 70px);
}

h2 {
  color: #555;
  font-weight: 400;
}

.breadcrumb-holder {
  background: #eceeef;
}

.breadcrumb-holder .breadcrumb {
  padding: 15px 0;
  font-size: 0.85em;
  font-weight: 300;
  color: #999;
  margin-bottom: 0;
}

.breadcrumb-holder .breadcrumb a:hover, .breadcrumb-holder .breadcrumb:focus {
  text-decoration: none;
}

.breadcrumb-holder .breadcrumb .container {
  padding: 0;
}

.card {
  margin-bottom: 30px;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.card-header h1,
.card-header h2,
.card-header h3,
.card-header h4,
.card-header h5,
.card-header h6 {
  margin-bottom: 0;
}

.card:not([class*="text"]) p {
  color: #888;
}

.display {
  font-weight: 400 !important;
}

.section-padding {
  padding: 3rem 0;
}

.section-no-padding-bottom {
  padding-bottom: 0;
}

section header {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .container-fluid {
    padding: 0 3rem;
  }
}

.list-group-item {
  border-right: 0;
  border-left: 0;
}

.list-group-item:first-child, .list-group-item:last-child {
  border-radius: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.tile-link {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 30;
}

/*
* ==========================================================
*     Main NAVBAR
* ==========================================================
*/
nav.navbar {
  background: #393836;
  margin-left: 6%;
  width: 100%;

  /* Navbar Brand --------- */
  /*  Dropdowns ------------ */
  /* Toggle Button ---------- */
}

/*
* ==========================================================
*     SIDE NAVBAR
* ==========================================================
*/
.side-navbar {
  overflow-x: hidden;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 6%;
  text-align: center;
  background: #393836;
  color: #fff;
  z-index: 999;
  overflow-y: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /*  Side navbar small ------------------------ */
}

.side-navbar .scrolled-wrapper {
  width: 100%;
  height: 100%;
}

.side-navbar.hide {
  left: -70px;
}

.side-navbar a.brand-small {
  text-transform: uppercase;
  font-weight: 500;
  padding: 0;
}

.side-navbar a.brand-small:hover, .side-navbar a.brand-small:focus {
  background: none;
}

.side-navbar a.brand-small strong {
  font-size: 1.5rem;
}

.side-navbar li {
  position: relative;
}

.side-navbar li a {
  position: relative;
  font-size: .9rem;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  width: 100%;

}

.side-navbar li a:focus, .side-navbar li a:hover, .side-navbar li a[aria-expanded="true"] {
  background: #33b35a;
  color: #fff;
  text-decoration: none;
}

.side-navbar li a[data-toggle="collapse"]::before {
  content: '\f104';
  display: inline-block;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'FontAwesome';
  position: absolute;
  top: 50%;
  right: 20px;
}

.side-navbar li a[aria-expanded="true"]::before {
  content: '\f107';
  color: #fff;
  font-size: .4rem;
}

.side-navbar li.active > a {
  background: #33b35a;
  font-size: .4rem;
}

.side-navbar li li.active > a {
  background: #2d9f50 !important;
}

.side-navbar li ul {
  background: #292929;
  font-size: .6rem;
  position: relative;
  min-width: 100%;
  left: 0;
  padding-left: 0;
}

.side-navbar li ul a {
  padding-left: 20px;
  font-size: .4rem;
}

.side-navbar li ul.collapse a {
  border-left: 2px solid #33b35a;
}

.side-navbar li ul.collapse a:hover {
  background: #121212;
}

.side-navbar .sidenav-header {
  background: #292929;
  margin-bottom: 10px;
}

.side-navbar .sidenav-header img {
  width: 50px;
  height: 50px;
}

.side-navbar .sidenav-header span {
  font-size: 0.6em;
  color: #666;
}

.side-navbar .sidenav-header h2 {
  margin: 10px 0 0;
  text-transform: uppercase;
  letter-spacing: .1em;
  display: inline;
}

.side-navbar .sidenav-heading {
  font-weight: 700;
  color: #adb5bd;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;

}
.side-navbar .sidenav-heading2 {

  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .1em;
text-align-all: center;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: visible;
  white-space: nowrap;
}
/* Malihu Custom Scroll */
.mCSB_scrollTools {
  width: 4px;
}

.mCSB_inside > .mCSB_container {
  margin-right: 0 !important;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #33b35a;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:hover {
  background-color: #33b35a;
}

/*
* ==========================================================
*      DASHBOARD COUNTS
* ==========================================================
*/
.dashboard-counts {
  color: #333;
  align-items: center;
}

.dashboard-counts .count-title span {
  font-size: 0.8em;
  color: #aaa;
  display: block;
}

.dashboard-counts .count-title i {
  font-size: 1.5em;
  color: #33b35a;
}

.dashboard-counts .icon {

}

.dashboard-counts strong {
  font-size: 0.9em;
  font-weight: 500;
  color: #555;
  display: inline;
}

.dashboard-counts .count-number {
  font-size: 2.2em;
  font-weight: 300;
}

/* DASHBOARD COUNTS MEDIAQUERIES ------------------------- */
@media (max-width: 991px) {
  .dashboard-counts div[class*='col-'] {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .dashboard-counts strong {
    font-size: 1em;
  }
  .dashboard-counts span {
    font-size: 0.9em;
  }
  .dashboard-counts .count-number {
    font-size: 3em;
  }
}

/*
* ==========================================================
*     DASHBOARD HEADER
* ==========================================================
*/
.dashboard-header {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.dashboard-header .check-lists {
  margin-top: 20px;
}

.dashboard-header .check-lists label {
  font-size: 0.75em;
}

.dashboard-header .pie-chart {
  position: relative;
  width: 300px;
  height: 300px;
  max-width: 100%;
  margin: 0 auto;
}

.dashboard-header p {
  font-size: 0.75rem;
  font-weight: 400;
  color: #888;
}

.dashboard-header li {
  margin-bottom: 10px;
}

/* DASHBOARD HEADER MEDIAQUERIES ------------------------- */
@media (max-width: 991px) {
  .dashboard-header {
    background: none;
    border: none;
    padding: 0;
  }
  .dashboard-header div[class*='col-'] {
    margin-bottom: 30px;
  }
  .dashboard-header div[class*='col-']:last-of-type {
    margin-bottom: 0;
  }
  .dashboard-header .card {
    background: #fff;
    padding: 30px;
    -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    height: 100%;
  }
}

@media (min-width: 768px) {
  .dashboard-header p {
    font-size: 0.9em;
  }
  .dashboard-header h2 {
    font-size: 1.3rem;
  }
  .dashboard-header .check-lists label {
    font-size: 0.85em;
  }
}

@media (min-width: 992px) {
  .dashboard-header {
    margin-bottom: 30px;
  }
  .dashboard-header .card {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 0;
  }
}


/*
* ==========================================================
*      PROGRESS CIRCLE
* ==========================================================
*/
.gmpc {
  padding: 0 !important;
  width: 100% !important;
  height: auto !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  color: #33b35a !important;
  border-right: 1px solid #eee;
}

@media (max-width: 575px) {
  .gmpc {
    border-right: none;
    border-bottom: 1px solid #eee;
  }
}

/*
* ==========================================================
*       MAIN FOOTER
* ==========================================================
*/
footer.main-footer {
  position: relative;
  width: 100%;

  bottom: 0;
  background: #222;
  padding: 10px 0;
}

footer.main-footer p {
  font-size: 0.7em;
  color: #777;
  margin: 0;
}

/* MAIN FOOTER MEDIAQUERIES ------------------------- */
@media (max-width: 575px) {
  footer.main-footer div[class*="col-"] {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  footer.main-footer p {
    font-size: 0.9em;
  }
}
/*
* ==========================================================
*       MAIN Header
* ==========================================================
*/
footer.main-header {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: #222;
  padding: 10px 0;
}

footer.main-header p {
  font-size: 0.7em;
  color: #777;
  margin: 0;
}

/* MAIN FOOTER MEDIAQUERIES ------------------------- */
@media (max-width: 575px) {
  footer.main-header div[class*="col-"] {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  footer.main-header p {
    font-size: 0.9em;
  }
}
/*
* ==========================================================
*    Data Table
* ==========================================================
*/
.dataTables_wrapper.container-fluid {
  padding: 10px 5px 0 0;
}

div.dataTables_wrapper div.dataTables_info {
  padding-top: 1.5rem;
}

div.dataTables_wrapper div.dataTables_paginate {
  padding-top: 0.65rem;
}

/*
 * 3. TYPE
 */
body {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
}

a {
  color: #33b35a;
  text-decoration: none;
}

a:focus, a:hover {
  color: #22773c;
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.1;
  color: inherit;
}

h1,
.h1 {
  font-size: 1.5rem;
}

h2,
.h2 {
  font-size: 1.3rem;
}

h3,
.h3 {
  font-size: 1.2rem;
}

h4,
.h4 {
  font-size: 1.1rem;
}

h5,
.h5 {
  font-size: 1rem;
}

h6,
.h6 {
  font-size: 0.9rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.1;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.1;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.1;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
}

hr {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.blockquote {
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  border-left: 5px solid #33b35a;
}

.blockquote-footer {
  color: #868e96;
}

.blockquote-footer::before {
  content: "\2014 \00A0";
}

.text-primary {
  color: #33b35a !important;
}

a.text-primary:focus, a.text-primary:hover {
  color: #288b46 !important;
}
.calendar-text { margin-top: .3em; }
.badge {
  padding-left: 9px;
  padding-right: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  border-radius: 9px;
}

.label-warning[href],
.badge-warning[href] {
  background-color: #c67605;
}
#newNotifications {
  font-size: 12px;
  background: #ff0000;
  color: #fff;
  padding: 0 5px;
  vertical-align: top;
  margin-left: -10px;
}
.alarmbox{
    border: 1px solid;
    position:fixed;
    top:10px;
    right:10px;
    z-index: 9999;
    background-color:#ffc107;
    height:75px;
    width: 200px;
    border-radius: 25px;
    margin-right: 15%;
}

.alarmboxWarn{
    border: 1px solid;
    position:fixed;
    top:10px;
    right:10px;
    z-index: 9999;

    height:75px;
    width: 200px;
    border-radius: 25px;
    animation: blinker 1s linear infinite;
}
@keyframes blinker {
    50% {
        background-color: red;
    }
}