/* Global styling for this template */
/* In the html @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"); */
html .navbar-toggler {
  padding: 0.25rem 0.25rem;
  margin-right: 0.5rem;
}
html .navbar-toggler .navbar-toggler-icon {
  width: 1em;
}
html nav {
  border-bottom: lightgray solid 0.1vmin;
}
html nav .navbar-logo {
  width: 30px;
}
html .loader {
  transform: rotateZ(45deg);
  perspective: 1000px;
  border-radius: 50%;
  position: relative;
  margin-top: 1em;
  left: -150px;
  width: 300px;
  height: 300px;
  color: olivedrab;
}
html .loader:before, html .loader:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  transform: rotateX(70deg);
  animation: 1s spin linear infinite;
}
html .loader:after {
  color: tan;
  transform: rotateY(70deg);
  animation-delay: 0.4s;
}
@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}
@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes spin {
  0%, 100% {
    box-shadow: 0.2em 0 0 0 currentcolor;
  }
  12% {
    box-shadow: 0.2em 0.2em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 0.2em 0 0 currentcolor;
  }
  37% {
    box-shadow: -0.2em 0.2em 0 0 currentcolor;
  }
  50% {
    box-shadow: -0.2em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -0.2em -0.2em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0 -0.2em 0 0 currentcolor;
  }
  87% {
    box-shadow: 0.2em -0.2em 0 0 currentcolor;
  }
}
html .is-invalid ~ label small {
  color: red !important;
}
html .releaseFundsCards #generateReportsBtn:disabled {
  background: #dddddd;
}
html #orderOwnerSummaryCard #orderOwnerSummaryTable td:nth-child(2) {
  text-align: end;
}
html #topSellersCard #topSellersTable td:nth-child(3) {
  text-align: end;
}
html #patrolStandingsChartCard {
  min-width: 370px;
}
html #patrolStandingsChartCard .card-body {
  padding: 0;
  margin: 0 auto;
}
html #patrolStandingsChartCard .card-body #patrolStandingsChart {
  width: 360px;
  height: 300px;
}
@media screen and (max-width: 1024px) {
  html #topSellersCard {
    width: auto;
  }
  html #topSellersCard #topSellersTable td {
    font-size: small;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }
  html #orderOwnerSummaryCard {
    width: auto;
  }
  html #orderOwnerSummaryCard #orderOwnerSummaryList li {
    font-size: small;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }
  html #patrolStandingsChartCard {
    width: auto;
  }
}
@media screen and (max-width: 1024px) and (max-height: 1000px) {
  html #patrolStandingsChartCard .card-body {
    margin: 0 0;
  }
}
html .add-order-widget {
  z-index: 1;
  position: fixed;
  bottom: 10px;
  right: 15px;
}
html .add-order-widget label {
  font-style: italic;
  padding-right: 0.5rem;
  padding-top: 0.2rem;
}
html .add-order-widget .add-order-btn {
  width: 2rem;
  height: 2rem;
  padding: 0;
  margin: 0;
  color: black;
  box-shadow: 0 0 0 0 rgba(128, 128, 0, 0.5);
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
html .add-order-widget .add-order-btn svg {
  width: 100%;
  height: 100%;
}
html .add-order-widget .add-order-btn:hover {
  -webkit-animation: none;
  -moz-animation: none;
  animation: none;
}
@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 10px rgba(232, 76, 61, 0);
  }
}
@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 10px rgba(232, 76, 61, 0);
  }
}
@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 10px rgba(232, 76, 61, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 10px rgba(232, 76, 61, 0);
  }
}
html #fundsSalesTable th:nth-child(3) {
  text-align: end;
}
html #fundsSalesTable td:nth-child(3) {
  text-align: end;
}
html #fundsAllocationsTable td:nth-child(2) {
  text-align: end;
}
html #fundsScoutAllocationsTable td:nth-child(2) {
  text-align: end;
}
html #fundsReleaseTables .alloc-first-row {
  background: DarkSeaGreen;
}
html #outOfHoodDisclaimer {
  color: maroon;
}
html .data-table-report {
  height: 85vh;
  width: 99%;
  position: relative;
  box-sizing: border-box;
  margin: 1em 0;
  padding: 0.5em 0.5em 1.5em 0.5em;
  border-radius: 0.5em;
}
html .sale-map-container {
  width: 100%;
}
html .sale-map-container #sellMap {
  height: 75vh;
  width: 100%;
}
html #spreadingDlg .make-disabled {
  pointer-events: none;
  opacity: 0.3;
}
html #spreadingDlg .make-disabled ~ label {
  pointer-events: none;
  opacity: 0.3;
}
html #spreadingDlg .btn-group-vertical {
  display: block;
  height: 20rem;
  background: white;
  color: #0d6efd;
  border-color: #0d6efd;
}
html #spreadingDlg .btn-group-vertical .active {
  background: #0d6efd !important;
  color: white !important;
  border-color: white !important;
}
html #spreadingDlg .btn-group-vertical label:hover {
  color: inherit;
  background-color: inherit;
  border-color: inherit;
}
html #spreadingDlg #spreadReviewTab li {
  background: #0d6efd;
  color: white;
  border-color: white;
}
html #orderCardTitle ul {
  padding-right: 0;
  display: inline-flex;
}
html #orderCardTitle ul li {
  padding: 0;
  border: none;
}
html #productList {
  padding: 0;
  border-style: hidden;
}
html #productList.is-invalid {
  padding-right: 2rem;
  border-style: solid;
}
html .reports-view-setting-btn {
  padding: 3px;
  width: 2rem;
  height: 2rem;
  margin: 0 0 6px 0;
}
html .reports-view-setting-btn svg {
  width: 100%;
  height: 100%;
}
html .order-list-name {
  width: 200px;
}
html .order-list-addr {
  width: 400px;
}
html .order-list-due {
  width: 150px;
}
html .order-del-btn,
html .order-edt-btn,
html .order-spread-btn,
html .order-view-btn {
  padding: 0;
  margin: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 25%;
}
html .order-del-btn svg,
html .order-edt-btn svg,
html .order-spread-btn svg,
html .order-view-btn svg {
  width: 70%;
  height: 70%;
}
html .admin-tabbed-area {
  width: 80%;
  border: 1px lightgray solid;
}
