/* W3 Sidebar */
body {
  font-family: "Lato", sans-serif;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 14px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

#main {
  transition: margin-left 0.5s;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
}
/* W3 Sidebar Ends */

/* Debug */
* {
  /* border: 1px solid green; */
}
/* Debug Ends */

/* Defaults */
body {
  font-size: 14px;
  margin: 0px;
  background-color: #cddefa78;
}

p {
  margin: 0px;
}

a {
  text-decoration: none;
  color: black;
}

.bg-default {
  background-color: rgb(0, 2, 50);
}

.btn-bg-default {
  background-color: #17a2b8;
  color: white;
}

.text-default {
  color: #c3dcf7;
}

.fs-default {
  font-size: 16px;
}

.fs-7 {
  font: 0.9rem;
}

.fs-8 {
  font: 0.8rem;
}

.fs-9 {
  font: 0.7rem;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
/* Defaults Ends */

/* Flush Bootstrap Accordion */

.accordion-flush .accordion-item {
  background-color: transparent;
  border: none;
}

.accordion-flush .accordion-button {
  background-color: transparent;
  box-shadow: none;
  color: white;
}

.accordion-flush .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  color: white;
}

.accordion-flush .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-flush .accordion-body {
  color: white;
}

/* Make the arrow white */
.accordion-flush .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body a {
  padding: 0px;
}

/* Accordion Ends */

.iconContainer {
  height: 65px;
  width: 65px;
}

.table-responsive thead th {
    position: sticky;
    top: 0;
    z-index: 3;
    background: #cff4fc;  /* Bootstrap table-info blue */
    color: #055160;       /* Bootstrap info text color */
  }

  .btn-default{
    background-color: rgb(0, 2, 50);
    color: white;
  }

  .btn-default:hover{
    background-color: rgb(43, 45, 82);
    color: white;
  }

  .text-label{
    color: rgb(108, 110, 161);
    font-weight: 600;
  }

  .no-halo:focus {
  box-shadow: none !important;
  outline: none !important;
}