/*
 * -------------------------------------------------
 *                GRiP Core Styles.
 * -------------------------------------------------
 */
@import "/webroot/css/bootstrap.min.css";
body {
  font-size: 0.875rem;
}
body pre:first-child {
  margin-top: 5em;
}
body > pre {
  margin-left: 19em;
}
body .cake-debug-output {
  margin-left: 17em;
}
body .cake-debug-output:first-child {
  margin-top: 5em;
}

.feather {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
}

/*
 * Global colors for up and down indicators
 */
 .service-up {
  color: green;
}

.service-down {
  color: red;
}

/*
 * Sidebar
 */
.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100; /* Behind the navbar */
  padding: 48px 0 0; /* Height of navbar */
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.1);
}

.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 48px);
  padding-top: 0.5rem;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

@supports (position: sticky) {
  .sidebar-sticky {
    position: sticky;
  }
}
.sidebar .nav-link {
  font-weight: 500;
  color: #333;
}

.sidebar .nav-link .feather {
  margin-right: 4px;
  color: #999;
}

.sidebar .nav-link.active {
  color: #007bff;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
  color: inherit;
}

.sidebar-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
}

/*
 * Content
 */
[role=main] {
  padding-top: 133px; /* Space for fixed navbar */
}

@media (min-width: 768px) {
  [role=main] {
    padding-top: 58px; /* Space for fixed navbar */
  }
}
/*
 * Navbar
 */
.navbar-brand {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1rem;
  background-color: rgba(0, 0, 0, 0.25);
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.25);
}

.navbar .form-control {
  padding: 0.75rem 1rem;
  border-width: 0;
  border-radius: 0;
}

.form-control-dark {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
}

.form-control-dark:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

table.table-hover tbody tr:hover {
  background-color: #dbf1ff;
}
table .actions a {
  margin-right: 1px;
  white-space: nowrap;
}
table .actions a[title^=Delete],
table .actions a[title^="Remove PDF"] {
  color: red;
}

.sidebar .nav-link[data-feather^=delete],
.sidebar .nav-link[data-feather^=file-minus] {
  color: red;
}
.sidebar .nav-link[data-feather^=delete] .feather,
.sidebar .nav-link[data-feather^=file-minus] .feather {
  color: red;
}

a.authed-user {
  position: relative;
}

span.role-name {
  font-size: xx-small;
  text-transform: uppercase;
  font-weight: bold;
}

.form-group.datetime label {
  display: block;
}
.form-group.datetime select {
  display: inline-block;
  width: auto;
  margin-right: 8px;
}

select.form-control[size], select.form-control[multiple] {
  height: 18em;
}

form .is-invalid .form-control {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
  background-repeat: no-repeat;
  background-position: center right calc(0.375em + 0.1875rem);
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
form .is-invalid .invalid-feedback {
  display: block;
}

.form-control::-moz-placeholder {
  color: #BBB;
}

.form-control::placeholder {
  color: #BBB;
}

.alert-dismissible .close {
  padding: 0.5rem 1rem;
}

.flash-container {
  padding-top: 48px;
  margin-bottom: -57px;
  z-index: 5;
}

.select {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.select > label:first-child {
  width: 100%;
  font-weight: bold;
}
.select .form-check {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

div.permissions-head {
  display: flex;
  background: white;
  position: fixed;
  right: 19px;
  left: 15px;
  padding: 0;
  margin: 0;
  border-collapse: collapse;
  height: 13em;
  top: 55px;
}
div.permissions-head .aco:first-child {
  width: calc(17.66% + 200px);
  flex: unset;
}
div.permissions-head .aco {
  flex: 1 1 0;
  overflow: hidden;
}
div.permissions-head .aco span {
  transform: rotate(-90deg);
  display: block;
  line-height: 23em;
  height: 23.75em;
  font-weight: bold;
}

table.permissions {
  width: 100%;
  margin-top: 10em;
  text-align: center; /* Centers horizontally */
  vertical-align: middle; /* Centers vertically */
}
table.permissions .rotate {
  padding: 70px 0;
}
table.permissions .rotate div {
  transform: rotate(-90deg);
}
table.permissions .allowed {
  background-color: lightgreen;
  color: green;
  text-align: center;
}
table.permissions .denied {
  background-color: lightgray;
  text-align: center;
}
table.permissions .crud {
  display: inline-block;
}

#toggleButton {
  position: fixed;
  top: 140px;
  z-index: 1;
}

table#customImagesTable img {
  max-width: 10em;
}/*# sourceMappingURL=grip.core.css.map */