@custom-variant dark (&:is(.dark *));
/* line 3, app/assets/stylesheets/_base.scss */
:root {
  --font-size: 16px;
  --background: #ffffff;
  --foreground: #000000;
  --card: #ffffff;
  --card-foreground: #000000;
  --popover: #ffffff;
  --popover-foreground: #000000;
  --primary: #000000;
  --primary-foreground: #ffffff;
  --secondary: #f5f5f5;
  --secondary-foreground: #000000;
  --muted: #f5f5f5;
  --muted-foreground: #737373;
  --accent: #f5f5f5;
  --accent-foreground: #000000;
  --destructive: #d4183d;
  --destructive-foreground: #ffffff;
  --border: #e5e5e5;
  --input: transparent;
  --input-background: #f5f5f5;
  --switch-background: #e5e5e5;
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --ring: #D4AF37;
  --gold: #D4AF37;
  --chart-1: oklch(0.646 0.222 41.116);
  --chart-2: oklch(0.6 0.118 184.704);
  --chart-3: oklch(0.398 0.07 227.392);
  --chart-4: oklch(0.828 0.189 84.429);
  --chart-5: oklch(0.769 0.188 70.08);
  --radius: 0.5rem;
  --sidebar: #000000;
  --sidebar-foreground: #ffffff;
  --sidebar-primary: #D4AF37;
  --sidebar-primary-foreground: #000000;
  --sidebar-accent: #1a1a1a;
  --sidebar-accent-foreground: #ffffff;
  --sidebar-border: #1a1a1a;
  --sidebar-ring: #D4AF37;
}

/* line 44, app/assets/stylesheets/_base.scss */
.dark {
  --background: oklch(0.145 0 0);
  --foreground: oklch(0.985 0 0);
  --card: oklch(0.145 0 0);
  --card-foreground: oklch(0.985 0 0);
  --popover: oklch(0.145 0 0);
  --popover-foreground: oklch(0.985 0 0);
  --primary: oklch(0.985 0 0);
  --primary-foreground: oklch(0.205 0 0);
  --secondary: oklch(0.269 0 0);
  --secondary-foreground: oklch(0.985 0 0);
  --muted: oklch(0.269 0 0);
  --muted-foreground: oklch(0.708 0 0);
  --accent: oklch(0.269 0 0);
  --accent-foreground: oklch(0.985 0 0);
  --destructive: oklch(0.396 0.141 25.723);
  --destructive-foreground: oklch(0.637 0.237 25.331);
  --border: oklch(0.269 0 0);
  --input: oklch(0.269 0 0);
  --ring: oklch(0.439 0 0);
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --chart-1: oklch(0.488 0.243 264.376);
  --chart-2: oklch(0.696 0.17 162.48);
  --chart-3: oklch(0.769 0.188 70.08);
  --chart-4: oklch(0.627 0.265 303.9);
  --chart-5: oklch(0.645 0.246 16.439);
  --sidebar: oklch(0.205 0 0);
  --sidebar-foreground: oklch(0.985 0 0);
  --sidebar-primary: oklch(0.488 0.243 264.376);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.269 0 0);
  --sidebar-accent-foreground: oklch(0.985 0 0);
  --sidebar-border: oklch(0.269 0 0);
  --sidebar-ring: oklch(0.439 0 0);
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-destructive-foreground: var(--destructive-foreground);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-input-background: var(--input-background);
  --color-switch-background: var(--switch-background);
  --color-ring: var(--ring);
  --color-chart-1: var(--chart-1);
  --color-chart-2: var(--chart-2);
  --color-chart-3: var(--chart-3);
  --color-chart-4: var(--chart-4);
  --color-chart-5: var(--chart-5);
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --color-sidebar: var(--sidebar);
  --color-sidebar-foreground: var(--sidebar-foreground);
  --color-sidebar-primary: var(--sidebar-primary);
  --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
  --color-sidebar-accent: var(--sidebar-accent);
  --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
  --color-sidebar-border: var(--sidebar-border);
  --color-sidebar-ring: var(--sidebar-ring);
}

@layer base {
  /* line 123, app/assets/stylesheets/_base.scss */
  * {
    @apply border-border outline-ring/50;
  }
  /* line 127, app/assets/stylesheets/_base.scss */
  body {
    @apply bg-background text-foreground;
  }
}

/**
 * Base typography. This is not applied to elements which have an ancestor with a Tailwind text class.
 */
@layer base {
  /* line 137, app/assets/stylesheets/_base.scss */
  :where(:not(:has([class*=' text-']), :not(:has([class^='text-'])))) h1 {
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: 1.2;
  }
  /* line 143, app/assets/stylesheets/_base.scss */
  :where(:not(:has([class*=' text-']), :not(:has([class^='text-'])))) h2 {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
  }
  /* line 149, app/assets/stylesheets/_base.scss */
  :where(:not(:has([class*=' text-']), :not(:has([class^='text-'])))) h3 {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
  }
  /* line 155, app/assets/stylesheets/_base.scss */
  :where(:not(:has([class*=' text-']), :not(:has([class^='text-'])))) h4 {
    font-size: var(--text-base);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
  }
  /* line 161, app/assets/stylesheets/_base.scss */
  :where(:not(:has([class*=' text-']), :not(:has([class^='text-'])))) p {
    font-size: var(--text-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
  }
  /* line 167, app/assets/stylesheets/_base.scss */
  :where(:not(:has([class*=' text-']), :not(:has([class^='text-'])))) label {
    font-size: var(--text-base);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
  }
  /* line 173, app/assets/stylesheets/_base.scss */
  :where(:not(:has([class*=' text-']), :not(:has([class^='text-'])))) button {
    font-size: var(--text-base);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
  }
  /* line 179, app/assets/stylesheets/_base.scss */
  :where(:not(:has([class*=' text-']), :not(:has([class^='text-'])))) input {
    font-size: var(--text-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
  }
}

/* line 187, app/assets/stylesheets/_base.scss */
html {
  font-size: var(--font-size);
}

/* line 192, app/assets/stylesheets/_base.scss */
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
  background: var(--background);
  color: var(--primary);
}

/* line 201, app/assets/stylesheets/_base.scss */
#errors {
  color: var(--destructive);
}

/* line 205, app/assets/stylesheets/_base.scss */
.primary {
  color: darkkhaki;
}

/* line 209, app/assets/stylesheets/_base.scss */
span.disabled {
  color: gray;
  padding: 0.25rem;
}

/* line 214, app/assets/stylesheets/_base.scss */
span.red {
  color: red;
}

/* line 218, app/assets/stylesheets/_base.scss */
span.green {
  color: green;
}

/* line 222, app/assets/stylesheets/_base.scss */
.content {
  padding: 2rem;
}

/* line 226, app/assets/stylesheets/_base.scss */
.button {
  cursor: pointer;
  border-radius: 6px;
  border: 1px solid white;
  padding: 0.5rem;
}

/* line 233, app/assets/stylesheets/_base.scss */
.center {
  text-align: center !important;
}

/* line 237, app/assets/stylesheets/_base.scss */
.left {
  text-align: left;
}

/* line 241, app/assets/stylesheets/_base.scss */
.right {
  text-align: right;
}

/* line 245, app/assets/stylesheets/_base.scss */
.lefted {
  margin-left: auto;
}

/* line 249, app/assets/stylesheets/_base.scss */
.righted {
  margin-right: auto;
}

/* line 253, app/assets/stylesheets/_base.scss */
.centered {
  margin: 0 auto;
}

/* line 257, app/assets/stylesheets/_base.scss */
.hidden {
  display: none !important;
}

/* line 261, app/assets/stylesheets/_base.scss */
.collapsed {
  display: none;
}

/* line 265, app/assets/stylesheets/_base.scss */
.justify-center {
  justify-content: center;
}

/* line 269, app/assets/stylesheets/_base.scss */
.wrap {
  flex-wrap: wrap;
}

/* line 273, app/assets/stylesheets/_base.scss */
.wrap-reverse {
  flex-wrap: wrap-reverse;
}

/* line 277, app/assets/stylesheets/_base.scss */
.is-invalid {
  color: red;
}

/* line 281, app/assets/stylesheets/_base.scss */
.p-2 {
  padding: 1rem;
}

/* line 285, app/assets/stylesheets/_base.scss */
.p-4 {
  padding: 2rem;
}

/* line 289, app/assets/stylesheets/_base.scss */
.m-0 {
  margin: 0;
}

/* line 293, app/assets/stylesheets/_base.scss */
.m-2 {
  margin: 1rem;
}

/* line 297, app/assets/stylesheets/_base.scss */
.m-4 {
  margin: 2rem;
}

/* line 301, app/assets/stylesheets/_base.scss */
.mt-1 {
  margin-top: 1rem;
}

/* line 305, app/assets/stylesheets/_base.scss */
.mt-2 {
  margin-top: 2rem;
}

/* line 309, app/assets/stylesheets/_base.scss */
.mb-1 {
  margin-bottom: 1rem;
}

/* line 313, app/assets/stylesheets/_base.scss */
.mb-2 {
  margin-bottom: 2rem;
}

/* line 317, app/assets/stylesheets/_base.scss */
.m-auto {
  margin: auto;
}

/* line 321, app/assets/stylesheets/_base.scss */
.min-750 {
  min-width: 750px;
}

/* line 325, app/assets/stylesheets/_base.scss */
.min-700 {
  min-width: 700px;
}

/* line 329, app/assets/stylesheets/_base.scss */
.min-500 {
  min-width: 500px;
}

/* line 333, app/assets/stylesheets/_base.scss */
.min-250 {
  min-width: 250px;
}

/* line 337, app/assets/stylesheets/_base.scss */
.full-width {
  width: 100% !important;
  max-width: 100% !important;
}

/* line 342, app/assets/stylesheets/_base.scss */
.half-width {
  width: 48%;
}

/* line 346, app/assets/stylesheets/_base.scss */
.quarter-width {
  width: 24%;
}

/* line 350, app/assets/stylesheets/_base.scss */
.three-quarter-width {
  width: 72%;
}

/* line 354, app/assets/stylesheets/_base.scss */
.third-width {
  width: 30%;
}

/* line 358, app/assets/stylesheets/_base.scss */
.two-third-width {
  width: 65%;
}

/* line 362, app/assets/stylesheets/_base.scss */
.two-fifth-width {
  width: 40%;
}

/* line 366, app/assets/stylesheets/_base.scss */
.tenth-width {
  width: 10%;
}

/* line 370, app/assets/stylesheets/_base.scss */
.twenty-width {
  width: 5%;
}

/* line 374, app/assets/stylesheets/_base.scss */
.tall {
  height: 9rem;
}

/* line 378, app/assets/stylesheets/_base.scss */
.top {
  vertical-align: top;
}

/* line 382, app/assets/stylesheets/_base.scss */
.border-top {
  border-top: 2px solid black;
}

/* line 386, app/assets/stylesheets/_base.scss */
.bold {
  font-weight: 600;
}

/* line 390, app/assets/stylesheets/_base.scss */
.buttons {
  display: flex;
  justify-content: space-around;
}

/* line 394, app/assets/stylesheets/_base.scss */
.buttons a {
  padding: 0.5rem;
  border-radius: 6px;
}

/* line 399, app/assets/stylesheets/_base.scss */
.buttons select, .buttons input {
  padding: 0.5rem;
  border: 1px solid gray;
  border-radius: 6px;
}

/* line 408, app/assets/stylesheets/_base.scss */
.header h2 {
  margin: 1rem 2rem;
}

/* line 413, app/assets/stylesheets/_base.scss */
.header .account-nav a {
  color: black;
  background: white;
  border-radius: 15px;
  padding: 0.5rem;
  margin: 1rem 2rem;
  text-decoration: none;
  display: inline-block;
}

/* line 423, app/assets/stylesheets/_base.scss */
.header .nav {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

/* line 428, app/assets/stylesheets/_base.scss */
.header .nav a {
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  padding: 0.25rem;
  border: solid 1px transparent;
}

/* line 436, app/assets/stylesheets/_base.scss */
.header .nav a:hover {
  color: #ccc;
  border: solid 1px white !important;
  border-radius: 5px;
}

/* line 446, app/assets/stylesheets/_base.scss */
form {
  margin: 0 auto;
  width: 80%;
  min-width: 400px;
}

/* line 451, app/assets/stylesheets/_base.scss */
form .field {
  display: block;
  margin-top: 0.5rem;
}

/* line 455, app/assets/stylesheets/_base.scss */
form .field label {
  display: block;
}

/* line 458, app/assets/stylesheets/_base.scss */
form .field input[type=text] {
  width: 100%;
}

/* line 461, app/assets/stylesheets/_base.scss */
form .field textarea {
  width: 100%;
  height: 5rem;
}

/* line 465, app/assets/stylesheets/_base.scss */
form .field input, form .field textarea, form .field option, form .field select {
  border: 1px solid gray;
  border-radius: 6px;
}

/* line 471, app/assets/stylesheets/_base.scss */
form .submit {
  margin-top: 1rem;
  text-align: center;
}

/* line 475, app/assets/stylesheets/_base.scss */
form .submit input[type=submit] {
  border: 1px solid gray;
  border-radius: 6px;
  padding: 0.5rem;
  margin: 0 auto;
}

/* line 485, app/assets/stylesheets/_base.scss */
table {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1rem auto;
  min-width: 800px;
}

/* line 492, app/assets/stylesheets/_base.scss */
table tr th:first-child,
table tr td:first-child {
  border-left: 1px solid gray;
}

/* line 497, app/assets/stylesheets/_base.scss */
table tr:first-child th:first-child,
table tr:first-child td:first-child {
  border-top-left-radius: 6px;
}

/* line 502, app/assets/stylesheets/_base.scss */
table tr:first-child th:last-child,
table tr:first-child td:last-child {
  border-top-right-radius: 6px;
}

/* line 507, app/assets/stylesheets/_base.scss */
table tr:last-child td:first-child,
table tr:last-child th:first-child {
  border-bottom-left-radius: 6px;
}

/* line 512, app/assets/stylesheets/_base.scss */
table tr:last-child td:last-child,
table tr:last-child th:last-child {
  border-bottom-right-radius: 6px;
}

/* line 518, app/assets/stylesheets/_base.scss */
table th, table td {
  border: 1px solid gray;
  text-align: center;
  padding: 0.25rem;
}

/* line 524, app/assets/stylesheets/_base.scss */
table .thin-col {
  width: 10rem;
}

/* line 528, app/assets/stylesheets/_base.scss */
table .sthin-col {
  width: 5rem;
}

/* line 534, app/assets/stylesheets/_base.scss */
.underline {
  text-decoration: underline;
}

/* line 539, app/assets/stylesheets/_base.scss */
.chevron {
  font-size: 1.5rem;
  color: black;
  display: inline-block;
  margin: 0 0.5rem;
  font-weight: 300;
  cursor: pointer;
  position: relative;
  padding: 0.5rem;
  border: 1px solid black;
  border-radius: 6px;
}

/* line 551, app/assets/stylesheets/_base.scss */
.chevron.closed::after {
  content: '\00a0+';
  transform: translateY(8%);
}

/* line 556, app/assets/stylesheets/_base.scss */
.chevron::after {
  content: '\00a0-';
  display: inline-block;
  transform: translateX(22%) translateY(-5%);
}

/* line 564, app/assets/stylesheets/_base.scss */
.collapsed {
  display: none !important;
}

/* line 569, app/assets/stylesheets/_base.scss */
.map-content {
  width: 75%;
  height: 30rem;
  margin: 0 auto;
}

/* line 575, app/assets/stylesheets/_base.scss */
.wrapper {
  margin: 0 auto;
  width: 80%;
  min-width: 800px;
}

/* line 581, app/assets/stylesheets/_base.scss */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  /* Removes the default appearance of the spin buttons */
  margin: 0;
  /* Ensures no extra margin is added */
}

/* For Mozilla Firefox */
/* line 588, app/assets/stylesheets/_base.scss */
input[type="number"] {
  -moz-appearance: textfield;
  /* Makes the number input appear like a standard text field */
}

/* line 592, app/assets/stylesheets/_base.scss */
.paging {
  padding-inline: calc(var(--spacing)*4);
  padding-block: calc(var(--spacing)*6);
}

/* line 596, app/assets/stylesheets/_base.scss */
.paging a.button, .paging span.button {
  padding-inline: calc(var(--spacing)*4);
  padding: 0.25rem 0.4rem;
  border-radius: 6px;
  border: 1px solid gray;
}

/* line 605, app/assets/stylesheets/_base.scss */
.place-logo-form {
  width: 8rem;
  height: 8rem;
  border-radius: 9999px;
}

/* line 611, app/assets/stylesheets/_base.scss */
.place-logo {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
}

/* line 617, app/assets/stylesheets/_base.scss */
.place-logo-show {
  width: 12rem;
  height: 12rem;
  border-radius: 9999px;
}

/* line 623, app/assets/stylesheets/_base.scss */
#filter_form {
  min-width: unset;
}

/* line 627, app/assets/stylesheets/_base.scss */
.filters {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* line 634, app/assets/stylesheets/_base.scss */
.filters select, .filters input {
  padding: 0.5rem;
  border: 1px solid gray;
  border-radius: 6px;
}

/* line 642, app/assets/stylesheets/_base.scss */
.card-holder {
  width: 100%;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-around;
}

/* line 648, app/assets/stylesheets/_base.scss */
.card-holder .card {
  width: 28%;
  display: flex;
  flex-direction: column;
  min-width: 400px;
  background: var(--background);
  color: var(--primary);
  border: 1px solid gray;
  border-radius: 6px;
  margin: 1rem;
  padding: 0.75rem;
}

/* line 660, app/assets/stylesheets/_base.scss */
.card-holder .card .title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

/* line 666, app/assets/stylesheets/_base.scss */
.card-holder .card .chart-holder {
  display: flex;
  justify-content: space-around;
}

/* line 670, app/assets/stylesheets/_base.scss */
.card-holder .card .small-card-holder {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin: 0 auto;
  width: 80%;
}

/* line 677, app/assets/stylesheets/_base.scss */
.card-holder .card .small-card-holder .big-content {
  display: flex;
  color: #d4af37;
  justify-content: space-around;
  margin: 1rem auto;
  font-size: 4rem;
}

/* line 684, app/assets/stylesheets/_base.scss */
.card-holder .card .small-card-holder .big-content .img-holder {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

/* line 689, app/assets/stylesheets/_base.scss */
.card-holder .card .small-card-holder .big-content .img-holder img {
  height: 2.5rem;
}

/* line 695, app/assets/stylesheets/_base.scss */
.card-holder .card .small-card-holder .small-content {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin: 1rem auto;
}

/* line 701, app/assets/stylesheets/_base.scss */
.card-holder .card .small-card-holder .small-content .small-card {
  width: 45%;
  display: flex;
  flex-direction: column;
}

/* line 706, app/assets/stylesheets/_base.scss */
.card-holder .card .small-card-holder .small-content .small-card .small-title {
  text-align: center;
  font-size: 1rem;
  color: gray;
}

/* line 711, app/assets/stylesheets/_base.scss */
.card-holder .card .small-card-holder .small-content .small-card .small-value {
  font-size: 2rem;
  color: skyblue;
  display: flex;
  justify-content: center;
}

/* line 717, app/assets/stylesheets/_base.scss */
.card-holder .card .small-card-holder .small-content .small-card .small-value .svg-holder {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

/* line 722, app/assets/stylesheets/_base.scss */
.card-holder .card .small-card-holder .small-content .small-card .small-value .svg-holder svg {
  height: 2rem;
}

/* line 733, app/assets/stylesheets/_base.scss */
.map-holder {
  width: 80%;
  margin: 0 auto;
}

/* line 736, app/assets/stylesheets/_base.scss */
.map-holder #map {
  height: 600px;
  min-width: 500px;
}

/* line 742, app/assets/stylesheets/_base.scss */
.count-holder {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
}

/* line 748, app/assets/stylesheets/_base.scss */
.count-holder .stat {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  margin: 1rem;
}

/* line 754, app/assets/stylesheets/_base.scss */
.count-holder .stat .count {
  font-size: 2rem;
  font-weight: 600;
}

/* line 760, app/assets/stylesheets/_base.scss */
.count-holder .spacer {
  opacity: 60%;
  margin: 1rem 0;
  border-left: 1px solid gray;
}

/* line 768, app/assets/stylesheets/_base.scss */
.data-holder {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  white-space: wrap;
}

/* line 775, app/assets/stylesheets/_base.scss */
.data-holder .data-column {
  display: flex;
  flex-direction: column;
  width: 15%;
  min-width: 250px;
}

/* line 781, app/assets/stylesheets/_base.scss */
.data-holder .data-column .title {
  font-size: 1.5rem;
}
/* line 1, app/assets/stylesheets/_chart.scss */
.ct-double-octave:after, .ct-major-eleventh:after, .ct-major-second:after, .ct-major-seventh:after, .ct-major-sixth:after, .ct-major-tenth:after, .ct-major-third:after, .ct-major-twelfth:after, .ct-minor-second:after, .ct-minor-seventh:after, .ct-minor-sixth:after, .ct-minor-third:after, .ct-octave:after, .ct-perfect-fifth:after, .ct-perfect-fourth:after, .ct-square:after {
  content: "";
  clear: both;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-label {
  fill: rgba(0, 0, 0, 0.4);
  color: rgba(0, 0, 0, 0.4);
  font-size: .75rem;
  line-height: 1;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-grid-background, .ct-line {
  fill: none;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-chart-bar .ct-label, .ct-chart-line .ct-label {
  display: block;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-chart-donut .ct-label, .ct-chart-pie .ct-label {
  dominant-baseline: central;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-label.ct-horizontal.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-label.ct-vertical.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  text-align: right;
  text-anchor: end;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-label.ct-vertical.ct-end {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-chart-bar .ct-label.ct-horizontal.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  text-anchor: start;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-chart-bar .ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  text-anchor: start;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-start {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  text-align: right;
  text-anchor: end;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-end {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: end;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-grid {
  stroke: rgba(0, 0, 0, 0.2);
  stroke-width: 1px;
  stroke-dasharray: 2px;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-point {
  stroke-width: 10px;
  stroke-linecap: round;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-line {
  stroke-width: 4px;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-area {
  stroke: none;
  fill-opacity: .1;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-bar {
  fill: none;
  stroke-width: 10px;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-slice-donut {
  fill: none;
  stroke-width: 60px;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-a .ct-bar, .ct-series-a .ct-line, .ct-series-a .ct-point, .ct-series-a .ct-slice-donut {
  stroke: #d70206;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-a .ct-area, .ct-series-a .ct-slice-donut-solid, .ct-series-a .ct-slice-pie {
  fill: #d70206;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-b .ct-bar, .ct-series-b .ct-line, .ct-series-b .ct-point, .ct-series-b .ct-slice-donut {
  stroke: #f05b4f;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-b .ct-area, .ct-series-b .ct-slice-donut-solid, .ct-series-b .ct-slice-pie {
  fill: #f05b4f;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-c .ct-bar, .ct-series-c .ct-line, .ct-series-c .ct-point, .ct-series-c .ct-slice-donut {
  stroke: #f4c63d;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-c .ct-area, .ct-series-c .ct-slice-donut-solid, .ct-series-c .ct-slice-pie {
  fill: #f4c63d;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-d .ct-bar, .ct-series-d .ct-line, .ct-series-d .ct-point, .ct-series-d .ct-slice-donut {
  stroke: #d17905;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-d .ct-area, .ct-series-d .ct-slice-donut-solid, .ct-series-d .ct-slice-pie {
  fill: #d17905;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-e .ct-bar, .ct-series-e .ct-line, .ct-series-e .ct-point, .ct-series-e .ct-slice-donut {
  stroke: #453d3f;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-e .ct-area, .ct-series-e .ct-slice-donut-solid, .ct-series-e .ct-slice-pie {
  fill: #453d3f;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-f .ct-bar, .ct-series-f .ct-line, .ct-series-f .ct-point, .ct-series-f .ct-slice-donut {
  stroke: #59922b;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-f .ct-area, .ct-series-f .ct-slice-donut-solid, .ct-series-f .ct-slice-pie {
  fill: #59922b;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-g .ct-bar, .ct-series-g .ct-line, .ct-series-g .ct-point, .ct-series-g .ct-slice-donut {
  stroke: #0544d3;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-g .ct-area, .ct-series-g .ct-slice-donut-solid, .ct-series-g .ct-slice-pie {
  fill: #0544d3;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-h .ct-bar, .ct-series-h .ct-line, .ct-series-h .ct-point, .ct-series-h .ct-slice-donut {
  stroke: #6b0392;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-h .ct-area, .ct-series-h .ct-slice-donut-solid, .ct-series-h .ct-slice-pie {
  fill: #6b0392;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-i .ct-bar, .ct-series-i .ct-line, .ct-series-i .ct-point, .ct-series-i .ct-slice-donut {
  stroke: #f05b4f;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-i .ct-area, .ct-series-i .ct-slice-donut-solid, .ct-series-i .ct-slice-pie {
  fill: #f05b4f;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-j .ct-bar, .ct-series-j .ct-line, .ct-series-j .ct-point, .ct-series-j .ct-slice-donut {
  stroke: #dda458;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-j .ct-area, .ct-series-j .ct-slice-donut-solid, .ct-series-j .ct-slice-pie {
  fill: #dda458;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-k .ct-bar, .ct-series-k .ct-line, .ct-series-k .ct-point, .ct-series-k .ct-slice-donut {
  stroke: #eacf7d;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-k .ct-area, .ct-series-k .ct-slice-donut-solid, .ct-series-k .ct-slice-pie {
  fill: #eacf7d;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-l .ct-bar, .ct-series-l .ct-line, .ct-series-l .ct-point, .ct-series-l .ct-slice-donut {
  stroke: #86797d;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-l .ct-area, .ct-series-l .ct-slice-donut-solid, .ct-series-l .ct-slice-pie {
  fill: #86797d;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-m .ct-bar, .ct-series-m .ct-line, .ct-series-m .ct-point, .ct-series-m .ct-slice-donut {
  stroke: #b2c326;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-m .ct-area, .ct-series-m .ct-slice-donut-solid, .ct-series-m .ct-slice-pie {
  fill: #b2c326;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-n .ct-bar, .ct-series-n .ct-line, .ct-series-n .ct-point, .ct-series-n .ct-slice-donut {
  stroke: #6188e2;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-n .ct-area, .ct-series-n .ct-slice-donut-solid, .ct-series-n .ct-slice-pie {
  fill: #6188e2;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-o .ct-bar, .ct-series-o .ct-line, .ct-series-o .ct-point, .ct-series-o .ct-slice-donut {
  stroke: #a748ca;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-series-o .ct-area, .ct-series-o .ct-slice-donut-solid, .ct-series-o .ct-slice-pie {
  fill: #a748ca;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-square {
  display: block;
  position: relative;
  width: 100%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-square:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 100%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-square:after {
  display: table;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-square > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-minor-second {
  display: block;
  position: relative;
  width: 100%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-minor-second:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 93.75%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-minor-second:after {
  display: table;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-minor-second > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-second {
  display: block;
  position: relative;
  width: 100%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-second:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 88.8888888889%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-second:after {
  display: table;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-second > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-minor-third {
  display: block;
  position: relative;
  width: 100%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-minor-third:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 83.3333333333%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-minor-third:after {
  display: table;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-minor-third > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-third {
  display: block;
  position: relative;
  width: 100%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-third:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 80%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-third:after {
  display: table;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-third > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-perfect-fourth {
  display: block;
  position: relative;
  width: 100%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-perfect-fourth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 75%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-perfect-fourth:after {
  display: table;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-perfect-fourth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-perfect-fifth {
  display: block;
  position: relative;
  width: 100%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-perfect-fifth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 66.6666666667%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-perfect-fifth:after {
  display: table;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-perfect-fifth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-minor-sixth {
  display: block;
  position: relative;
  width: 100%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-minor-sixth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 62.5%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-minor-sixth:after {
  display: table;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-minor-sixth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-golden-section {
  display: block;
  position: relative;
  width: 100%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-golden-section:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 61.804697157%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-golden-section:after {
  content: "";
  display: table;
  clear: both;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-golden-section > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-sixth {
  display: block;
  position: relative;
  width: 100%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-sixth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 60%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-sixth:after {
  display: table;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-sixth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-minor-seventh {
  display: block;
  position: relative;
  width: 100%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-minor-seventh:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 56.25%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-minor-seventh:after {
  display: table;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-minor-seventh > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-seventh {
  display: block;
  position: relative;
  width: 100%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-seventh:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 53.3333333333%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-seventh:after {
  display: table;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-seventh > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-octave {
  display: block;
  position: relative;
  width: 100%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-octave:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 50%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-octave:after {
  display: table;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-octave > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-tenth {
  display: block;
  position: relative;
  width: 100%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-tenth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 40%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-tenth:after {
  display: table;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-tenth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-eleventh {
  display: block;
  position: relative;
  width: 100%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-eleventh:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 37.5%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-eleventh:after {
  display: table;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-eleventh > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-twelfth {
  display: block;
  position: relative;
  width: 100%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-twelfth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 33.3333333333%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-twelfth:after {
  display: table;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-major-twelfth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-double-octave {
  display: block;
  position: relative;
  width: 100%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-double-octave:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 25%;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-double-octave:after {
  display: table;
}

/* line 1, app/assets/stylesheets/_chart.scss */
.ct-double-octave > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 17, app/assets/stylesheets/_chart.scss */
.ct-grid {
  stroke: rgba(157, 141, 141, 0.2);
}

/* line 21, app/assets/stylesheets/_chart.scss */
.ct-chart-line {
  display: flex;
}

/* line 24, app/assets/stylesheets/_chart.scss */
.ct-chart-line .ct-label.ct-horizontal.ct-end {
  align-items: flex-start;
  color: black;
  justify-content: flex-end;
  font-size: 10px;
  position: relative;
  display: inline-block;
  text-align: right;
  transform-origin: 80% 0;
  transform: translate(-100%) rotate(-45deg);
  white-space: nowrap;
}

/* line 36, app/assets/stylesheets/_chart.scss */
.ct-chart-line .ct-label.ct-vertical.ct-start {
  color: black;
}

/* line 45, app/assets/stylesheets/_chart.scss */
.ct-chart-bar .ct-label.ct-vertical.ct-start {
  color: black;
}

/* line 48, app/assets/stylesheets/_chart.scss */
.ct-chart-bar .ct-label.ct-horizontal.ct-end {
  color: black;
}
/* This is the notice alert style */
/* line 2, app/assets/stylesheets/_flash.scss */
.notice {
  width: 50%;
  position: fixed;
  top: 9rem;
  left: 25%;
  z-index: 1000;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  animation: slideIn 8s forwards;
}

/* line 11, app/assets/stylesheets/_flash.scss */
.notice .content {
  background: black;
  color: yellow;
  padding: 10px 20px;
  border-radius: 15px;
  width: fit-content;
  margin: 0 auto;
}

/* line 21, app/assets/stylesheets/_flash.scss */
.alert {
  width: 50%;
  position: fixed;
  top: 9rem;
  left: 25%;
  z-index: 1000;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  animation: slideIn2 8s forwards;
}

/* line 30, app/assets/stylesheets/_flash.scss */
.alert .content {
  background: black;
  color: red;
  padding: 10px 20px;
  border-radius: 15px;
  width: fit-content;
  margin: 0 auto;
}

@keyframes slideIn {
  0% {
    top: -30px;
    opacity: 0;
  }
  30% {
    top: 9rem;
    opacity: 1;
  }
  80% {
    top: 9rem;
    opacity: 1;
  }
  100% {
    top: 8rem;
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes slideIn2 {
  0% {
    top: -30px;
    opacity: 0;
  }
  20% {
    top: 9rem;
    opacity: 1;
  }
  80% {
    top: 9rem;
    opacity: 1;
  }
  100% {
    top: 8rem;
    opacity: 0;
    visibility: hidden;
  }
}

/* line 85, app/assets/stylesheets/_flash.scss */
.loader {
  display: inline-block;
  border: 4px solid #f3f3f3;
  /* Light grey border */
  border-top: 4px solid #3498db;
  /* Blue border on top */
  border-radius: 50%;
  /* Makes it a circle */
  width: 1rem;
  height: 1rem;
  animation: spin 1s linear infinite;
  /* Animation properties */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* line 1, app/assets/stylesheets/_flex.scss */
.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

/* line 7, app/assets/stylesheets/_flex.scss */
.flex-col {
  display: flex;
  flex-direction: column;
}

/* line 12, app/assets/stylesheets/_flex.scss */
.justify-start {
  justify-content: flex-start;
}

/* line 16, app/assets/stylesheets/_flex.scss */
.justify-end {
  justify-content: flex-end;
}

/* line 20, app/assets/stylesheets/_flex.scss */
.justify-around {
  justify-content: space-around;
}

/* line 24, app/assets/stylesheets/_flex.scss */
.justify-between {
  justify-content: space-between;
}

/* line 28, app/assets/stylesheets/_flex.scss */
.flex-grid {
  display: grid;
}

/* line 32, app/assets/stylesheets/_flex.scss */
.b-inline {
  display: inline-block;
}

/* line 36, app/assets/stylesheets/_flex.scss */
.block {
  display: block;
}
/* line 1, app/assets/stylesheets/_modal.scss */
#modal-wrapper {
  z-index: 999;
}

/* line 4, app/assets/stylesheets/_modal.scss */
#modal-wrapper.hidden {
  z-index: -1;
  display: none;
}

/* line 10, app/assets/stylesheets/_modal.scss */
#modal-backdrop {
  position: fixed;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0.5;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* line 23, app/assets/stylesheets/_modal.scss */
#modal {
  width: fit-content;
  min-width: 400px;
  background: white;
  color: black;
  position: fixed;
  float: left;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1005;
  padding-bottom: 2rem;
  border: 2px solid red;
  border-radius: 15px;
}

/* line 38, app/assets/stylesheets/_modal.scss */
#modal .modal-top {
  padding: 1rem 2rem;
  border-bottom: 1px solid black;
  display: flex;
  justify-content: space-around;
}

/* line 45, app/assets/stylesheets/_modal.scss */
#modal .modal-bottom {
  margin-top: 1rem;
}

/* line 50, app/assets/stylesheets/_modal.scss */
#modal-body {
  padding: 1rem;
  max-height: 80vh;
  overflow-y: auto;
  display: inline-block;
}

/* line 57, app/assets/stylesheets/_modal.scss */
#modal-body input[type='submit'],
#modal-body span.button,
#modal-body a.button {
  border: 1px solid red;
  padding: 0.5rem;
  border-radius: 15px;
  text-decoration: none;
  color: white;
  background: red;
  text-align: center;
  font-size: 1rem;
  cursor: pointer;
  width: fit-content;
  margin: 1rem;
}

/* line 73, app/assets/stylesheets/_modal.scss */
#modal-body .export-image {
  width: 80%;
  margin: 0 auto;
}

/* line 78, app/assets/stylesheets/_modal.scss */
#modal-body .bordered {
  border: 1px solid black;
}

/* line 82, app/assets/stylesheets/_modal.scss */
#modal-body textarea {
  height: 7rem;
}

/* line 86, app/assets/stylesheets/_modal.scss */
#modal-body table {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 750px;
}

/* line 91, app/assets/stylesheets/_modal.scss */
#modal-body table .med-col {
  width: 25%;
}

/* line 94, app/assets/stylesheets/_modal.scss */
#modal-body table input[type=text], #modal-body table input[type=number] {
  width: 100%;
}

/* line 100, app/assets/stylesheets/_modal.scss */
#modal-body input[type=submit]:disabled {
  background: gray;
  border-color: white;
  cursor: default;
}

/* line 106, app/assets/stylesheets/_modal.scss */
#modal-body span.cancel-button,
#modal-body a.cancel-button {
  margin: 1rem;
  color: red;
  background: white;
  border: 1px solid red;
  padding: 0.5rem;
  border-radius: 15px;
  text-decoration: none;
  cursor: pointer;
}

/* line 119, app/assets/stylesheets/_modal.scss */
#modal-title {
  font-weight: 600;
  font-size: 1.5rem;
  display: inline-block;
}

/* line 125, app/assets/stylesheets/_modal.scss */
#modal-close {
  display: inline;
  cursor: pointer;
  font-size: 2rem;
  position: fixed;
  right: 0;
  margin-right: 1em;
}

/* line 134, app/assets/stylesheets/_modal.scss */
.modal-form {
  min-width: 600px;
}

/* line 137, app/assets/stylesheets/_modal.scss */
.modal-form .flex-row {
  margin-top: 0.5rem;
}

/* line 141, app/assets/stylesheets/_modal.scss */
.modal-form label {
  width: 20%;
}

/* line 145, app/assets/stylesheets/_modal.scss */
.modal-form input {
  flex-grow: 1;
}
/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(/assets/images/layers-0e356f4d554162eb71f127f50460dbc55d405027189ebe90b20729ef18d13d36.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(/assets/images/layers-2x-ba8fa601e413b14db27db07285ade3951721e02244c31523284ab2d1ed53c3dc.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(/assets/images/marker-icon-3d253116ec4ba0e1f22a01cdf1ff7f120fa4d89a6cd0933d68f12951d19809b4.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}



.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
	-webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
	-moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
	-o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
	transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

.leaflet-cluster-spider-leg {
	/* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
	-webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
	-moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
	-o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
	transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}


.icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: darkkhaki;
  font-weight: 700;
  color: white;
  transform: translateY(-50%) translateX(-50%);
}

.icon-single {
  height: 1.5rem;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: skyblue;
  padding-left: .5rem;
  padding-right: .5rem;
  font-size: .75rem;
  line-height: 1rem;
  font-weight: 400;
}


.icon-cluster {
  height: 2.5rem;
  width: 2.5rem;
  background-color: darkkhaki;
  color: white;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
