.no-arrows::-webkit-inner-spin-button, 
.no-arrows::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

.sidebar-header {
  height: 8rem;
}

.sidebar-main {
 height: calc(100vh - 16rem);
  overflow-y: auto;
  overflow-x: hidden;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.sidebar-main::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.sidebar-main {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.sidebar-footer {
  height: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar-brand:focus {
  color: black;
}

.socials {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: center;
  flex-grow : 1;
}

.socials li {
  align-self: flex-end; 
}

.socials a {
  padding: 2px;
  border-radius: 100%;
  margin-inline: 2px;
}


.socials a:hover,
.socials a:focus {
  color: white;
  background-color: var(--primary);
}



.no-pointer-events {
  pointer-events: none;
}

.no-pointer-events .choices {
  background: var(--background);
}

.no-pointer-events .choices input {
  background: var(--background);
}

.no-padding {
  padding: 0;
  margin: 0;
}

.full-height-old {
  height: calc(100vh - 4.375rem - 6.625rem);
  padding: 0;
  margin: 0;
  object-fit: fill;
  width: 100%;
}

.full-height-new {
  height: 100%;
  padding: 0;
  margin: 0;
  object-fit: fill;
  align-self: stretch;
}

.full-min-height {
  min-height: calc(100vh - 4.375rem - 5.625rem);
  padding-inline: 0;
  padding-block-start: 1rem;
  padding-block-end: 0;
  margin: 0;
  object-fit: fill;
  display: flex;
  width: 100%;
}

.min-height-100 {
  min-height: 100%;
}

.full-min-height > div {
  width: 100%;
}
  
.flex,
.flex-center,
.flex-start,
.flex-end,
.flex-space-between,
.flex-direction-column,
.flex-direction-row {
  display: flex;
}

.flex-center {
  justify-content: center;
}

.flex-end {
  justify-content: end;
}

.flex-start {
  justify-content: start;
}

.flex-space-between {
  justify-content: space-between;
}

.flex-direction-column {
  flex-direction: column;
}

.flex-direction-row {
  flex-direction: row;
}

.flex-end .form-control,
.flex-start .form-control {
  width: 2rem;
}

.grid-home {
  padding-inline: 2rem;
  padding-block: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

.card-grid-home {
  max-width: max(50vw, 500px);
  transition: 0.5s;
}

.card-grid-home:hover,
.card-grid-home:focus {
  transform: scale(1.05);
}

.grid-600 {
  width: 100%;
  padding: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  grid-auto-rows: max(350px, 30vh);
}

.grid-full {
  width: 100%;
  padding: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  grid-auto-rows: 100%;
}

.grid-full .card {
/*  aspect-ratio: 16/8; */
}

.col-span-2 {
  grid-column: span 2;
}
.col-span-3 {
  grid-column: span 3;
}
.col-span-4 {
  grid-column: span 4;
}

.row-span-2 {
  grid-row: span 2;
}
.row-span-3 {
  grid-row: span 3;
}
.row-span-4 {
  grid-row: span 4;
}

.chart {
  position: relative;
  height: 100%;
  max-width: 100%;
}

.google-chart {
  padding-inline: 10px;
  min-height: 75%;
  max-width: 100%;
}

.google-chart-download {
  position: absolute;
  top: 0;
  right: 0;
  color: black;
}

.card {
  position: relative;
}

.card-img-top {
  aspect-ratio: 2 / 1;
  object-fit: contain;
}

.decoration-none:link,
.decoration-none:visited,
.decoration-none:hover,
.decoration-none:active {
  color: inherit;
  text-decoration: inherit;
}

.checkbox-summary {
  height: 1em;
  aspect-ratio: 1/1;
  align-self: center;
}

.width-50 {
  width: 50%
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15em, 1fr));
  gap: 1em;
}

.grid-50-50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-height {
  max-height: max(70vh, 800px);
}

.grid-form {
  width: 100%;
  display: grid;
  padding-inline: 1em;
  column-gap: 1em;
  grid-template-columns: repeat(auto-fit, minmax(20ch, 1fr));;
  align-items: center;
  justify-items: start;
}

.grid-form-checkboxes-first {
  width: 100%;
  display: grid;
  padding-inline: 1em;
  margin-block-end: 0;
  gap: 1em;
  grid-template-columns: 1em 1fr;
  align-items: center;
  justify-items: start;
}

.grid-form > input[type=checkbox] {
  --size: calc(1.5em + 0.75rem + 2px);
  height: var(--size);
  width: var(--size);
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6e707e;
  background-color: var(--white);
  background-clip: padding-box;
  border: 1px solid #d1d3e2;
  border-radius: 0.35rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.grid-form-permission {
  display: grid;
  padding-top: 0.5rem;
  padding-inline: 1.5em;
  gap: 1rem;
  grid-template-columns: 1rem 1fr;
  align-items: center;
  justify-items: start;
}

.grid-form-permission > input[type=checkbox] {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  font-weight: 400;
  line-height: 1;
  color: #6e707e;
  background-color: var(--white);
  background-clip: padding-box;
  border: 1px solid #d1d3e2;
  border-radius: 0.35rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

summary > input[type=checkbox] {
  --size: 1em;
  height: var(--size);
  width: var(--size);
}

.paginated-form {
  position: relative;
  min-height: 40rem;
  overflow: hidden;
}

.paginated-form > * {
  position: absolute;
  min-width: 20rem;
  width: 75%;
  height: 100%;
  transition: 0.5s;
}

.paginated-form > *:not(:first-child) {
  transform: translateX(100vw);
}

.paginated-form-button-group {
  grid-column: 1 / -1;
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.paginated-form-button-group button {
  min-width: 10em;
}

.skip-nav {
  position: absolute;
  transition: transform 0.5s ease;
  background: var(--primary);
  color: black;
  left: 5rem;
  top: 2rem;
  z-index: 1;
  transform: translateY(-250%);
}
				
.skip-nav:focus {
  transform: translateY(0);
}

.scroll-container {
  overflow-y: scroll;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-none::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-none {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.map-body {
  height: 100%;
}

.dashboard {
  height: 100%;
}










