/* src/styles.scss */
/*!
 * This code is copyright (c) 2025 let's dev GmbH & Co. KG
 * URL: https://www.letsdev.de
 * e-Mail: contact@letsdev.de
 */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src:
    local("Lato Regular"),
    local("Lato-Regular"),
    url(/assets/fonts/Lato-Regular.ttf) format("ttf");
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  src:
    local("Lato Bold"),
    local("Lato-Bold"),
    url(/assets/fonts/Lato-Bold.ttf) format("ttf");
  font-display: swap;
}
html,
body {
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 1.4em;
}
html,
body {
  margin: 0;
  padding: 0;
}
html *,
div,
section {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html *:focus {
  outline: none;
}
body {
  position: relative;
  min-height: 100vh;
  color: #1A1A18;
  background: #F6F6F6;
  display: flex;
  flex-direction: column;
}
body.overlay-no-scroll {
  overflow: hidden;
}
body {
  font-size: 0.875rem;
  color: #1A1A18;
}
body > * {
  word-wrap: break-word;
  hyphens: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: normal;
  margin: 0;
  padding: 0;
  letter-spacing: 0.02em;
}
h1 + p,
h2 + p,
h3 + p,
h4 + p,
h5 + p,
h6 + p {
  margin-top: 0.5em;
}
h1 {
  font-size: 2.25rem;
}
h2 {
  font-size: 1.125rem;
}
h3 {
  font-size: 1rem;
}
h4 {
  font-size: 1rem;
  font-weight: 700;
}
h5 {
  font-size: 0.875rem;
  font-weight: 700;
}
h6 {
  font-size: 0.875rem;
  font-weight: 700;
}
p {
  margin: 0;
}
strong,
b,
.bold {
  font-weight: 700;
}
.center {
  text-align: center;
}
.uppercase {
  text-transform: uppercase;
}
.nowrap {
  white-space: nowrap;
}
.truncate {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.line-clamp {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
svg {
  width: 100%;
  height: auto;
}
app-icon {
  flex: none;
}
.weather-icon {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.weather-icon.small {
  width: 2rem;
  height: 2rem;
}
.weather-icon.medium {
  width: 4rem;
  height: 4rem;
}
.weather-icon.large {
  width: 7rem;
  height: 7rem;
}
.weather-icon.cloudy {
  background-image: url(/assets/icons/weather/img_cloudy.svg);
}
.weather-icon.fair {
  background-image: url(/assets/icons/weather/img_fair.svg);
}
.weather-icon.rain {
  background-image: url(/assets/icons/weather/img_rain.svg);
}
.weather-icon.snow {
  background-image: url(/assets/icons/weather/img_snow.svg);
}
.weather-icon.storm {
  background-image: url(/assets/icons/weather/img_storm.svg);
}
.weather-icon.sunny {
  background-image: url(/assets/icons/weather/img_sunny.svg);
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.end {
  margin-left: auto;
}
fieldset {
  border-radius: 6px;
  border: 1px solid rgba(0, 158, 228, 0.1);
  background: #FFFFFF;
  padding: 1rem;
  margin: 1rem 0;
}
legend {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem;
  float: left;
  width: 100%;
}
table {
  width: 100%;
  max-width: 100%;
  border-spacing: 0 2px;
  border-collapse: separate;
}
table tr th:first-child,
table tr td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
table tr th:last-child,
table tr td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
table td,
table th {
  padding: 0.5rem;
  vertical-align: middle;
  background-color: #F7F8FA;
}
table th {
  font-weight: 700;
  text-align: start;
}
table .icon-cell {
  width: 1px;
}
table thead th {
  padding: 1rem 0.5rem;
  background-color: #FFFFFF;
}
table.transparent td,
table.transparent th {
  background-color: transparent;
}
table .parent-row.expanded th:first-child,
table .parent-row.expanded td:first-child {
  border-bottom-left-radius: 0;
}
table .parent-row.expanded th:last-child,
table .parent-row.expanded td:last-child {
  border-bottom-right-radius: 0;
}
table .child-row td,
table .child-row th {
  background-color: #FFFFFF;
}
button,
input[type=submit] {
  font: inherit;
  line-height: normal;
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  cursor: pointer;
  text-align: start;
  text-indent: 0;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  color: inherit;
  border: none;
  background: none;
  box-shadow: none;
  text-shadow: none;
  text-rendering: auto;
}
button:disabled,
input[type=submit]:disabled {
  cursor: default;
}
.button,
a.button {
  font-family: Lato, sans-serif;
  font-size: 0.875rem;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  width: -moz-max-content;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none !important;
  opacity: 1;
  border: solid 1px transparent;
  border-radius: 10px;
  background: none;
}
.button,
a.button {
  color: #1A1A18;
  border: 1px solid transparent;
}
.button:hover:not(:disabled),
a.button:hover:not(:disabled) {
  border-color: #FFFFFF;
  background: #EFF8FE;
}
.button.active,
.button.primary-button,
a.button.active,
a.button.primary-button {
  color: #FFFFFF;
  background: #007BB0;
}
.button.active:hover:not(:disabled),
.button.primary-button:hover:not(:disabled),
a.button.active:hover:not(:disabled),
a.button.primary-button:hover:not(:disabled) {
  opacity: 0.8;
  border-color: #007BB0;
  background: #007BB0;
}
.button.outlined-button,
a.button.outlined-button {
  color: #007BB0;
  border-color: #007BB0;
}
.button.outlined-button:hover:not(:disabled),
a.button.outlined-button:hover:not(:disabled) {
  opacity: 0.8;
  color: #FFFFFF;
  background: #007BB0;
}
.button.center,
a.button.center {
  margin-right: auto;
  margin-left: auto;
}
.button.small,
a.button.small {
  line-height: 1em;
  padding: 0.5rem 1rem;
}
.button.full-width,
a.button.full-width {
  width: 100%;
}
.button.icon-button,
a.button.icon-button {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem;
  gap: 0.25rem;
}
.button.icon-button app-icon,
a.button.icon-button app-icon {
  width: 1.25rem;
}
.button.icon-button.open,
a.button.icon-button.open {
  border-color: #FFFFFF;
  background: #EFF8FE;
}
.button-wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem 1rem;
}
a {
  font-weight: normal;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.text-link {
  white-space: nowrap;
  text-decoration: underline;
  color: #009EE4;
}
.text-link:hover {
  opacity: 0.8;
}
.link {
  cursor: pointer;
}
.link:hover {
  opacity: 0.8;
}
.arrow-link {
  line-height: 1.5rem;
  position: relative;
  display: block;
  padding-right: 2rem;
  color: #1A1A18;
}
.arrow-link::after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  transition: all 0.3s ease;
  background: ic_arrow(#1A1A18) center/1.5rem no-repeat;
}
.arrow-link.prev {
  padding-left: 2rem;
}
.arrow-link.prev::after {
  right: unset;
  left: 0;
  transform: rotate(180deg);
}
.arrow-link:disabled,
.arrow-link.inactive {
  cursor: default;
  pointer-events: none;
  opacity: 0.6;
}
.arrow-link:hover {
  color: #007BB0;
}
.arrow-link:hover::after {
  right: -0.5rem;
  background-image: ic_arrow(#007BB0);
}
.arrow-link:hover.prev::after {
  left: -0.5rem;
}
@media (max-width: 480px) {
  .text-link {
    white-space: normal;
    hyphens: none;
  }
}
.input-wrapper {
  position: relative;
  display: block;
  width: 100%;
}
.input-wrapper label,
.input-wrapper .label {
  font-size: 1rem;
  display: block;
  width: 100%;
  margin: 1rem 0 0;
  padding-bottom: 0.25rem;
  text-align: left;
}
.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  font-family: inherit;
  font-size: 0.875rem;
  display: block;
  width: 100%;
  height: 2.5rem;
  padding: 0.5rem 0.75rem;
  cursor: text;
  color: #1A1A18;
  border: 1px solid #1A1A18;
  border-radius: 0.5rem;
  background-color: #FFFFFF;
}
.input-wrapper input:disabled,
.input-wrapper select:disabled,
.input-wrapper textarea:disabled {
  cursor: not-allowed;
  color: rgba(26, 26, 24, 0.5);
  border-color: #F7F8FA;
  background: #F7F8FA;
}
.input-wrapper input:not(select):read-only,
.input-wrapper select:not(select):read-only,
.input-wrapper textarea:not(select):read-only {
  cursor: not-allowed;
  color: rgba(26, 26, 24, 0.5);
  border-color: #F7F8FA;
  background: #F7F8FA;
}
.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  border-color: #007BB0;
}
.input-wrapper textarea {
  height: 5rem;
  min-height: 2rem;
  resize: vertical;
}
.input-wrapper select {
  line-height: 1.5;
  padding-right: 2rem;
  cursor: pointer;
  background: #FFFFFF url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.6443704,4.22674239 C15.9545003,3.92440854 16.4573078,3.92442076 16.7674223,4.22676969 C17.0775368,4.52911861 17.0775243,5.01931085 16.7673943,5.3216447 L9.91647059,11.9989677 L12.9018472,14.9096053 C13.666297,15.6549125 14.2330016,16.2074263 14.6737011,16.6370902 L14.9595514,16.9157826 C15.227034,17.1765671 15.4420585,17.3862072 15.6284293,17.5679111 L15.8620338,17.7956659 C15.9540355,17.8853638 16.0404589,17.9696231 16.1253857,18.0524232 L16.2268407,18.1513376 C16.2774702,18.2006994 16.3281487,18.2501088 16.3797578,18.3004256 L16.4844782,18.4025237 C16.5732146,18.489038 16.6661687,18.5796645 16.7674223,18.6783826 C17.0775368,18.9807315 17.0775243,19.4709238 16.7673943,19.7732576 C16.4572644,20.0755915 15.9544569,20.0755792 15.6443424,19.7732303 C15.5430888,19.6745122 15.4501346,19.5838857 15.3613983,19.4973714 L15.2566779,19.3952733 C15.2050688,19.3449565 15.1543903,19.2955471 15.1037607,19.2461854 L15.0023057,19.1472709 C14.917379,19.0644708 14.8309556,18.9802115 14.7389538,18.8905136 L14.5053494,18.6627589 C14.4846415,18.6425695 14.4635799,18.6220353 14.4421319,18.6011244 L14.2377852,18.4018947 C14.1174836,18.2846056 13.9850729,18.1555106 13.8364714,18.0106303 L13.4466518,17.6305721 C13.3758042,17.5614986 13.3018436,17.4893901 13.2245088,17.4139918 L12.8528447,17.0516345 C12.4566413,16.6653524 11.9841752,16.2047174 11.4116419,15.6465209 L10.3606832,14.6218793 C10.0535427,14.3224299 9.72402358,14.0011622 9.37003593,13.6560388 L8.82044186,13.1202071 C8.63095256,12.9354628 8.43508491,12.7444999 8.23257768,12.5470636 C7.92246318,12.2447147 7.92247571,11.7545225 8.23260567,11.4521886 L15.6443704,4.22674239 Z' fill='%231A1A18' transform='translate(12.5, 12) rotate(-90) translate(-12.5, -12)' fill-rule='nonzero'%3E%3C/path%3E%3C/svg%3E") calc(100% - 1rem) center/1rem no-repeat border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.input-wrapper ::-webkit-input-placeholder {
  color: rgba(26, 26, 24, 0.5);
}
.input-wrapper ::-moz-placeholder {
  color: rgba(26, 26, 24, 0.5);
}
.input-wrapper :-ms-input-placeholder {
  color: rgba(26, 26, 24, 0.5);
}
.input-wrapper ::placeholder {
  color: rgba(26, 26, 24, 0.5);
}
.input-wrapper input[type=search]::-webkit-search-cancel-button {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  background: #FFFFFF url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.30206882,3.22324257 L11.999342,10.9202759 L19.6980014,3.22324257 C19.9687811,2.95248086 20.3925088,2.92786801 20.6910992,3.14940271 L20.7766442,3.22324755 C21.0745045,3.52108818 21.0745067,4.00398102 20.7766491,4.30181889 L13.078342,11.9992759 L20.7766491,19.6967328 C21.0745067,19.9945707 21.0745045,20.4774635 20.7766442,20.7753042 C20.4787838,21.0731448 19.995859,21.073147 19.6980014,20.7753091 L11.999342,13.0772759 L4.30206882,20.7753091 C4.03128919,21.0460709 3.60756147,21.0706837 3.30897103,20.849149 L3.2234261,20.7753042 C2.92556577,20.4774635 2.92556354,19.9945707 3.22342112,19.6967328 L10.921342,11.9992759 L3.22342112,4.30181889 C2.92556354,4.00398102 2.92556577,3.52108818 3.2234261,3.22324755 C3.52128644,2.92540692 4.00421123,2.92540469 4.30206882,3.22324257 Z' fill='%231A1A18' fill-rule='nonzero'%3E%3C/path%3E%3C/svg%3E") center/1rem no-repeat border-box;
  -webkit-appearance: none;
}
.input-wrapper input[type=checkbox] {
  display: none;
}
.input-wrapper input[type=checkbox] ~ label {
  font-size: 1rem;
  font-weight: normal;
  line-height: normal;
  display: inline-flex;
  width: auto;
  margin: 0;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-transform: none;
  gap: 0.75rem;
}
.input-wrapper input[type=checkbox] ~ label::before {
  line-height: 1em;
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  margin-top: 0.1em;
  content: ic_check(transparent);
  border: 1px solid #009EE4;
  border-radius: 10px;
  background-color: #FFFFFF;
}
.input-wrapper input[type=checkbox]:checked ~ label::before {
  content: ic_check(white);
  border-color: #009EE4;
  background-color: #009EE4;
}
.input-wrapper input[type=checkbox]:disabled ~ label {
  cursor: not-allowed;
}
.input-wrapper input[type=radio],
.input-wrapper .filter-checkbox,
.input-wrapper .multiselect {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.input-wrapper input[type=radio] ~ label,
.input-wrapper .filter-checkbox ~ label,
.input-wrapper .multiselect ~ label {
  font-size: inherit;
  font-weight: inherit;
  display: flex;
  margin: 0;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  border: 1px solid #1A1A18;
  border-radius: 0.5rem;
}
.input-wrapper input[type=radio]:hover:not(.input-wrapper input[type=radio]:checked, .input-wrapper .filter-checkbox:checked, .input-wrapper .multiselect:checked) ~ label,
.input-wrapper .filter-checkbox:hover:not(.input-wrapper input[type=radio]:checked, .input-wrapper .filter-checkbox:checked, .input-wrapper .multiselect:checked) ~ label,
.input-wrapper .multiselect:hover:not(.input-wrapper input[type=radio]:checked, .input-wrapper .filter-checkbox:checked, .input-wrapper .multiselect:checked) ~ label {
  border-color: #007BB0;
  background-color: #EFF8FE;
}
.input-wrapper input[type=radio]:checked ~ label,
.input-wrapper .filter-checkbox:checked ~ label,
.input-wrapper .multiselect:checked ~ label {
  color: #FFFFFF;
  background-color: #1A1A18;
}
.input-wrapper input[type=radio]:disabled ~ label,
.input-wrapper .filter-checkbox:disabled ~ label,
.input-wrapper .multiselect:disabled ~ label {
  cursor: default;
}
.input-wrapper.error .ng-invalid,
.input-wrapper.error .ng-invalid > * {
  border-color: #D42217;
}
.input-wrapper.row {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0 1rem;
}
.input-wrapper.row > * {
  flex: 0 0 auto;
  width: auto;
}
.grid {
  display: grid;
  justify-content: center;
  gap: 1rem;
}
.grid.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.flex {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.flex.column {
  flex-direction: column;
}
.flex.justify-between {
  justify-content: space-between;
}
.flex.justify-center {
  justify-content: center;
}
.flex.justify-around {
  justify-content: space-around;
}
.flex.align-start {
  align-items: flex-start;
}
.flex.align-end {
  align-items: flex-end;
}
.flex.gap-2 {
  gap: 1rem;
}
.flex.gap-4 {
  gap: 2rem;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex-none {
  flex: none !important;
}
.flex-1 {
  flex: 1;
}
.flex-2 {
  flex: 2;
}
@media (max-width: 1024px) {
  .grid.grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid.grid-cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid.grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .flex {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .grid.grid-cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
ol,
ul {
  padding: 0;
  list-style: none;
  text-align: left;
}
ol.list li {
  font-size: 1.3em;
}
ol.list li h2,
ol.list li h3 {
  font-size: 1.2em;
  line-height: normal;
}
ol.list li h2 + p,
ol.list li h3 + p {
  margin-top: 0.5rem;
}
ol.list {
  padding-left: 1.75rem;
}
ol.list > li {
  position: relative;
  margin-top: 2em;
}
ol.list > li::before {
  font-size: 1.3em;
  font-weight: 700;
  position: absolute;
  top: 0.1em;
  left: -1.75rem;
}
ol.list.number {
  counter-reset: numbering;
}
ol.list.number > li {
  counter-increment: numbering;
}
ol.list.number > li::before {
  content: counters(numbering, "") ".";
}
ul.list {
  padding-left: 1.75rem;
}
ul.list > li {
  position: relative;
}
ul.list > li::before {
  position: absolute;
  left: -1.25rem;
  content: "-";
}
ul.list.check {
  padding-left: 2rem;
}
ul.list.check > li {
  margin-top: 1rem;
}
ul.list.check > li::before {
  left: -1.75rem;
  width: 1rem;
  height: 1rem;
  content: "";
  border: 2px solid #9D9D9D;
  border-radius: 50%;
}
ul.list.check > li.checked::before {
  border-color: #007BB0;
  background: #007BB0 url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' fill='%23FFFFFF' fill-rule='nonzero'%3E%3C/path%3E%3C/svg%3E") center/1em no-repeat;
}
html {
  --mat-sys-background: #f9f9f9;
  --mat-sys-error: #be0c08;
  --mat-sys-error-container: #ffdad5;
  --mat-sys-inverse-on-surface: #f1f1f1;
  --mat-sys-inverse-primary: #8ccdff;
  --mat-sys-inverse-surface: #2f3131;
  --mat-sys-on-background: #1a1c1c;
  --mat-sys-on-error: #ffffff;
  --mat-sys-on-error-container: #930001;
  --mat-sys-on-primary: #ffffff;
  --mat-sys-on-primary-container: #004b70;
  --mat-sys-on-primary-fixed: #001e2f;
  --mat-sys-on-primary-fixed-variant: #004b70;
  --mat-sys-on-secondary: #ffffff;
  --mat-sys-on-secondary-container: #244a64;
  --mat-sys-on-secondary-fixed: #001e2f;
  --mat-sys-on-secondary-fixed-variant: #244a64;
  --mat-sys-on-surface: #1a1c1c;
  --mat-sys-on-surface-variant: #3e4850;
  --mat-sys-on-tertiary: #ffffff;
  --mat-sys-on-tertiary-container: #682986;
  --mat-sys-on-tertiary-fixed: #310048;
  --mat-sys-on-tertiary-fixed-variant: #682986;
  --mat-sys-outline: #6e7881;
  --mat-sys-outline-variant: #bec8d2;
  --mat-sys-primary: #006493;
  --mat-sys-primary-container: #cae6ff;
  --mat-sys-primary-fixed: #cae6ff;
  --mat-sys-primary-fixed-dim: #8ccdff;
  --mat-sys-scrim: #000000;
  --mat-sys-secondary: #3d627d;
  --mat-sys-secondary-container: #cae6ff;
  --mat-sys-secondary-fixed: #cae6ff;
  --mat-sys-secondary-fixed-dim: #a6cbea;
  --mat-sys-shadow: #000000;
  --mat-sys-surface: #f9f9f9;
  --mat-sys-surface-bright: #f9f9f9;
  --mat-sys-surface-container: #eeeeee;
  --mat-sys-surface-container-high: #e8e8e8;
  --mat-sys-surface-container-highest: #e2e2e2;
  --mat-sys-surface-container-low: #f3f3f3;
  --mat-sys-surface-container-lowest: #ffffff;
  --mat-sys-surface-dim: #dadada;
  --mat-sys-surface-tint: #006493;
  --mat-sys-surface-variant: #dae4ee;
  --mat-sys-tertiary: #8243a0;
  --mat-sys-tertiary-container: #f7d9ff;
  --mat-sys-tertiary-fixed: #f7d9ff;
  --mat-sys-tertiary-fixed-dim: #e9b3ff;
  --mat-sys-neutral-variant20: #283139;
  --mat-sys-neutral10: #1a1c1c;
}
html {
  --mat-sys-level0:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
html {
  --mat-sys-level1:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
html {
  --mat-sys-level2:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}
html {
  --mat-sys-level3:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
html {
  --mat-sys-level4:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
html {
  --mat-sys-level5:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
html {
  --mat-sys-body-large: 400 1rem / 1.5rem Lato, sans-serif;
  --mat-sys-body-large-font: Lato, sans-serif;
  --mat-sys-body-large-line-height: 1.5rem;
  --mat-sys-body-large-size: 1rem;
  --mat-sys-body-large-tracking: 0.031rem;
  --mat-sys-body-large-weight: 400;
  --mat-sys-body-medium: 400 0.875rem / 1.25rem Lato, sans-serif;
  --mat-sys-body-medium-font: Lato, sans-serif;
  --mat-sys-body-medium-line-height: 1.25rem;
  --mat-sys-body-medium-size: 0.875rem;
  --mat-sys-body-medium-tracking: 0.016rem;
  --mat-sys-body-medium-weight: 400;
  --mat-sys-body-small: 400 0.75rem / 1rem Lato, sans-serif;
  --mat-sys-body-small-font: Lato, sans-serif;
  --mat-sys-body-small-line-height: 1rem;
  --mat-sys-body-small-size: 0.75rem;
  --mat-sys-body-small-tracking: 0.025rem;
  --mat-sys-body-small-weight: 400;
  --mat-sys-display-large: 400 3.562rem / 4rem Lato, sans-serif;
  --mat-sys-display-large-font: Lato, sans-serif;
  --mat-sys-display-large-line-height: 4rem;
  --mat-sys-display-large-size: 3.562rem;
  --mat-sys-display-large-tracking: -0.016rem;
  --mat-sys-display-large-weight: 400;
  --mat-sys-display-medium: 400 2.812rem / 3.25rem Lato, sans-serif;
  --mat-sys-display-medium-font: Lato, sans-serif;
  --mat-sys-display-medium-line-height: 3.25rem;
  --mat-sys-display-medium-size: 2.812rem;
  --mat-sys-display-medium-tracking: 0;
  --mat-sys-display-medium-weight: 400;
  --mat-sys-display-small: 400 2.25rem / 2.75rem Lato, sans-serif;
  --mat-sys-display-small-font: Lato, sans-serif;
  --mat-sys-display-small-line-height: 2.75rem;
  --mat-sys-display-small-size: 2.25rem;
  --mat-sys-display-small-tracking: 0;
  --mat-sys-display-small-weight: 400;
  --mat-sys-headline-large: 400 2rem / 2.5rem Lato, sans-serif;
  --mat-sys-headline-large-font: Lato, sans-serif;
  --mat-sys-headline-large-line-height: 2.5rem;
  --mat-sys-headline-large-size: 2rem;
  --mat-sys-headline-large-tracking: 0;
  --mat-sys-headline-large-weight: 400;
  --mat-sys-headline-medium: 400 1.75rem / 2.25rem Lato, sans-serif;
  --mat-sys-headline-medium-font: Lato, sans-serif;
  --mat-sys-headline-medium-line-height: 2.25rem;
  --mat-sys-headline-medium-size: 1.75rem;
  --mat-sys-headline-medium-tracking: 0;
  --mat-sys-headline-medium-weight: 400;
  --mat-sys-headline-small: 400 1.5rem / 2rem Lato, sans-serif;
  --mat-sys-headline-small-font: Lato, sans-serif;
  --mat-sys-headline-small-line-height: 2rem;
  --mat-sys-headline-small-size: 1.5rem;
  --mat-sys-headline-small-tracking: 0;
  --mat-sys-headline-small-weight: 400;
  --mat-sys-label-large: 500 0.875rem / 1.25rem Lato, sans-serif;
  --mat-sys-label-large-font: Lato, sans-serif;
  --mat-sys-label-large-line-height: 1.25rem;
  --mat-sys-label-large-size: 0.875rem;
  --mat-sys-label-large-tracking: 0.006rem;
  --mat-sys-label-large-weight: 500;
  --mat-sys-label-large-weight-prominent: 700;
  --mat-sys-label-medium: 500 0.75rem / 1rem Lato, sans-serif;
  --mat-sys-label-medium-font: Lato, sans-serif;
  --mat-sys-label-medium-line-height: 1rem;
  --mat-sys-label-medium-size: 0.75rem;
  --mat-sys-label-medium-tracking: 0.031rem;
  --mat-sys-label-medium-weight: 500;
  --mat-sys-label-medium-weight-prominent: 700;
  --mat-sys-label-small: 500 0.688rem / 1rem Lato, sans-serif;
  --mat-sys-label-small-font: Lato, sans-serif;
  --mat-sys-label-small-line-height: 1rem;
  --mat-sys-label-small-size: 0.688rem;
  --mat-sys-label-small-tracking: 0.031rem;
  --mat-sys-label-small-weight: 500;
  --mat-sys-title-large: 400 1.375rem / 1.75rem Lato, sans-serif;
  --mat-sys-title-large-font: Lato, sans-serif;
  --mat-sys-title-large-line-height: 1.75rem;
  --mat-sys-title-large-size: 1.375rem;
  --mat-sys-title-large-tracking: 0;
  --mat-sys-title-large-weight: 400;
  --mat-sys-title-medium: 500 1rem / 1.5rem Lato, sans-serif;
  --mat-sys-title-medium-font: Lato, sans-serif;
  --mat-sys-title-medium-line-height: 1.5rem;
  --mat-sys-title-medium-size: 1rem;
  --mat-sys-title-medium-tracking: 0.009rem;
  --mat-sys-title-medium-weight: 500;
  --mat-sys-title-small: 500 0.875rem / 1.25rem Lato, sans-serif;
  --mat-sys-title-small-font: Lato, sans-serif;
  --mat-sys-title-small-line-height: 1.25rem;
  --mat-sys-title-small-size: 0.875rem;
  --mat-sys-title-small-tracking: 0.006rem;
  --mat-sys-title-small-weight: 500;
}
html {
  --mat-sys-corner-extra-large: 28px;
  --mat-sys-corner-extra-large-top: 28px 28px 0 0;
  --mat-sys-corner-extra-small: 4px;
  --mat-sys-corner-extra-small-top: 4px 4px 0 0;
  --mat-sys-corner-full: 9999px;
  --mat-sys-corner-large: 16px;
  --mat-sys-corner-large-end: 0 16px 16px 0;
  --mat-sys-corner-large-start: 16px 0 0 16px;
  --mat-sys-corner-large-top: 16px 16px 0 0;
  --mat-sys-corner-medium: 12px;
  --mat-sys-corner-none: 0;
  --mat-sys-corner-small: 8px;
}
html {
  --mat-sys-dragged-state-layer-opacity: 0.16;
  --mat-sys-focus-state-layer-opacity: 0.12;
  --mat-sys-hover-state-layer-opacity: 0.08;
  --mat-sys-pressed-state-layer-opacity: 0.12;
}
:root {
  --mat-menu-container-color: #FFFFFF;
}
:root {
  --mat-menu-item-hover-state-layer-color: #EFF8FE;
}
:root {
  --mdc-dialog-container-shape: 10px;
}
:root {
  --mat-dialog-actions-alignment: flex-end;
}
:root {
  --mdc-dialog-subhead-weight: 500;
}
:root {
  --mdc-dialog-subhead-size: 1rem;
}
.mat-mdc-tab-group,
.mat-mdc-tab-body-wrapper {
  flex: 1;
}
.mat-mdc-tab-body-content {
  padding: 0.5rem;
  display: flex;
}
mat-dialog-content p + p {
  margin-top: 0.5rem;
}
mat-dialog-actions {
  gap: 0.5rem;
}
.mat-mdc-menu-panel {
  max-width: 100% !important;
}
svg.ngx-charts {
  width: unset;
}

/* node_modules/leaflet/dist/leaflet.css */
.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;
}
.leaflet-tile::selection {
  background: transparent;
}
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}
.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}
.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 {
  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;
  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;
}
.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;
}
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted;
  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;
}
.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;
}
.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;
}
.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;
  pointer-events: auto;
}
.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);
}
.leaflet-container {
  font-family:
    "Helvetica Neue",
    Arial,
    Helvetica,
    sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
}
.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;
}
.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;
}
.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("./media/layers.png");
  width: 36px;
  height: 36px;
}
.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url("./media/layers-2x.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;
}
.leaflet-default-icon-path {
  background-image: url("./media/marker-icon.png");
}
.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;
}
.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;
}
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}
.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: "";
}
.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;
}
@media print {
  .leaflet-control {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
