/* node_modules/ol/ol.css */
:root,
:host {
  --ol-background-color: white;
  --ol-accent-background-color: #F5F5F5;
  --ol-subtle-background-color: rgba(128, 128, 128, 0.25);
  --ol-partial-background-color: rgba(255, 255, 255, 0.75);
  --ol-foreground-color: #333333;
  --ol-subtle-foreground-color: #666666;
  --ol-brand-color: #00AAFF;
}
.ol-box {
  box-sizing: border-box;
  border-radius: 2px;
  border: 1.5px solid var(--ol-background-color);
  background-color: var(--ol-partial-background-color);
}
.ol-mouse-position {
  top: 8px;
  right: 8px;
  position: absolute;
}
.ol-scale-line {
  background: var(--ol-partial-background-color);
  border-radius: 4px;
  bottom: 8px;
  left: 8px;
  padding: 2px;
  position: absolute;
}
.ol-scale-line-inner {
  border: 1px solid var(--ol-subtle-foreground-color);
  border-top: none;
  color: var(--ol-foreground-color);
  font-size: 10px;
  text-align: center;
  margin: 1px;
  will-change: contents, width;
  transition: all 0.25s;
}
.ol-scale-bar {
  position: absolute;
  bottom: 8px;
  left: 8px;
}
.ol-scale-bar-inner {
  display: flex;
}
.ol-scale-step-marker {
  width: 1px;
  height: 15px;
  background-color: var(--ol-foreground-color);
  float: right;
  z-index: 10;
}
.ol-scale-step-text {
  position: absolute;
  bottom: -5px;
  font-size: 10px;
  z-index: 11;
  color: var(--ol-foreground-color);
  text-shadow:
    -1.5px 0 var(--ol-partial-background-color),
    0 1.5px var(--ol-partial-background-color),
    1.5px 0 var(--ol-partial-background-color),
    0 -1.5px var(--ol-partial-background-color);
}
.ol-scale-text {
  position: absolute;
  font-size: 12px;
  text-align: center;
  bottom: 25px;
  color: var(--ol-foreground-color);
  text-shadow:
    -1.5px 0 var(--ol-partial-background-color),
    0 1.5px var(--ol-partial-background-color),
    1.5px 0 var(--ol-partial-background-color),
    0 -1.5px var(--ol-partial-background-color);
}
.ol-scale-singlebar {
  position: relative;
  height: 10px;
  z-index: 9;
  box-sizing: border-box;
  border: 1px solid var(--ol-foreground-color);
}
.ol-scale-singlebar-even {
  background-color: var(--ol-subtle-foreground-color);
}
.ol-scale-singlebar-odd {
  background-color: var(--ol-background-color);
}
.ol-unsupported {
  display: none;
}
.ol-viewport,
.ol-unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.ol-viewport canvas {
  all: unset;
  overflow: hidden;
}
.ol-viewport {
  touch-action: pan-x pan-y;
}
.ol-selectable {
  -webkit-touch-callout: default;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
.ol-grabbing {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}
.ol-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}
.ol-control {
  position: absolute;
  background-color: var(--ol-subtle-background-color);
  border-radius: 4px;
}
.ol-zoom {
  top: .5em;
  left: .5em;
}
.ol-rotate {
  top: .5em;
  right: .5em;
  transition: opacity .25s linear, visibility 0s linear;
}
.ol-rotate.ol-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s linear, visibility 0s linear .25s;
}
.ol-zoom-extent {
  top: 4.643em;
  left: .5em;
}
.ol-full-screen {
  right: .5em;
  top: .5em;
}
.ol-control button {
  display: block;
  margin: 1px;
  padding: 0;
  color: var(--ol-subtle-foreground-color);
  font-weight: bold;
  text-decoration: none;
  font-size: inherit;
  text-align: center;
  height: 1.375em;
  width: 1.375em;
  line-height: .4em;
  background-color: var(--ol-background-color);
  border: none;
  border-radius: 2px;
}
.ol-control button::-moz-focus-inner {
  border: none;
  padding: 0;
}
.ol-zoom-extent button {
  line-height: 1.4em;
}
.ol-compass {
  display: block;
  font-weight: normal;
  will-change: transform;
}
.ol-touch .ol-control button {
  font-size: 1.5em;
}
.ol-touch .ol-zoom-extent {
  top: 5.5em;
}
.ol-control button:hover,
.ol-control button:focus {
  text-decoration: none;
  outline: 1px solid var(--ol-subtle-foreground-color);
  color: var(--ol-foreground-color);
}
.ol-zoom .ol-zoom-in {
  border-radius: 2px 2px 0 0;
}
.ol-zoom .ol-zoom-out {
  border-radius: 0 0 2px 2px;
}
.ol-attribution {
  text-align: right;
  bottom: .5em;
  right: .5em;
  max-width: calc(100% - 1.3em);
  display: flex;
  flex-flow: row-reverse;
  align-items: center;
}
.ol-attribution a {
  color: var(--ol-subtle-foreground-color);
  text-decoration: none;
}
.ol-attribution ul {
  margin: 0;
  padding: 1px .5em;
  color: var(--ol-foreground-color);
  text-shadow: 0 0 2px var(--ol-background-color);
  font-size: 12px;
}
.ol-attribution li {
  display: inline;
  list-style: none;
}
.ol-attribution li:not(:last-child):after {
  content: " ";
}
.ol-attribution img {
  max-height: 2em;
  max-width: inherit;
  vertical-align: middle;
}
.ol-attribution button {
  flex-shrink: 0;
}
.ol-attribution.ol-collapsed ul {
  display: none;
}
.ol-attribution:not(.ol-collapsed) {
  background: var(--ol-partial-background-color);
}
.ol-attribution.ol-uncollapsible {
  bottom: 0;
  right: 0;
  border-radius: 4px 0 0;
}
.ol-attribution.ol-uncollapsible img {
  margin-top: -.2em;
  max-height: 1.6em;
}
.ol-attribution.ol-uncollapsible button {
  display: none;
}
.ol-zoomslider {
  top: 4.5em;
  left: .5em;
  height: 200px;
}
.ol-zoomslider button {
  position: relative;
  height: 10px;
}
.ol-touch .ol-zoomslider {
  top: 5.5em;
}
.ol-overviewmap {
  left: 0.5em;
  bottom: 0.5em;
}
.ol-overviewmap.ol-uncollapsible {
  bottom: 0;
  left: 0;
  border-radius: 0 4px 0 0;
}
.ol-overviewmap .ol-overviewmap-map,
.ol-overviewmap button {
  display: block;
}
.ol-overviewmap .ol-overviewmap-map {
  border: 1px solid var(--ol-subtle-foreground-color);
  height: 150px;
  width: 150px;
}
.ol-overviewmap:not(.ol-collapsed) button {
  bottom: 0;
  left: 0;
  position: absolute;
}
.ol-overviewmap.ol-collapsed .ol-overviewmap-map,
.ol-overviewmap.ol-uncollapsible button {
  display: none;
}
.ol-overviewmap:not(.ol-collapsed) {
  background: var(--ol-subtle-background-color);
}
.ol-overviewmap-box {
  border: 1.5px dotted var(--ol-subtle-foreground-color);
}
.ol-overviewmap .ol-overviewmap-box:hover {
  cursor: move;
}
.ol-overviewmap .ol-viewport:hover {
  cursor: pointer;
}

/* node_modules/ol-layerswitcher/src/ol-layerswitcher.css */
.layer-switcher {
  position: absolute;
  top: 3.5em;
  right: 0.5em;
  text-align: left;
}
.layer-switcher .panel {
  margin: 0;
  border: 4px solid #eee;
  border-radius: 4px;
  background-color: white;
  display: none;
  max-height: inherit;
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
}
.layer-switcher button {
  float: right;
  z-index: 1;
  width: 38px;
  height: 38px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAACE1BMVEX///8A//8AgICA//8AVVVAQID///8rVVVJtttgv98nTmJ2xNgkW1ttyNsmWWZmzNZYxM4gWGgeU2JmzNNr0N1Rwc0eU2VXxdEhV2JqytQeVmMhVmNoydUfVGUgVGQfVGQfVmVqy9hqy9dWw9AfVWRpydVry9YhVmMgVGNUw9BrytchVWRexdGw294gVWQgVmUhVWPd4N6HoaZsy9cfVmQgVGRrytZsy9cgVWQgVWMgVWRsy9YfVWNsy9YgVWVty9YgVWVry9UgVWRsy9Zsy9UfVWRsy9YgVWVty9YgVWRty9Vsy9aM09sgVWRTws/AzM0gVWRtzNYgVWRuy9Zsy9cgVWRGcHxty9bb5ORbxdEgVWRty9bn6OZTws9mydRfxtLX3Nva5eRix9NFcXxOd4JPeINQeIMiVmVUws9Vws9Vw9BXw9BYxNBaxNBbxNBcxdJexdElWWgmWmhjyNRlx9IqXGtoipNpytVqytVryNNrytZsjZUuX210k5t1y9R2zNR3y9V4lp57zth9zdaAnKOGoaeK0NiNpquV09mesrag1tuitbmj1tuj19uktrqr2d2svcCu2d2xwMO63N+7x8nA3uDC3uDFz9DK4eHL4eLN4eIyYnDX5OM5Z3Tb397e4uDf4uHf5uXi5ePi5+Xj5+Xk5+Xm5+Xm6OY6aHXQ19fT4+NfhI1Ww89gx9Nhx9Nsy9ZWw9Dpj2abAAAAWnRSTlMAAQICAwQEBgcIDQ0ODhQZGiAiIyYpKywvNTs+QklPUlNUWWJjaGt0dnd+hIWFh4mNjZCSm6CpsbW2t7nDzNDT1dje5efr7PHy9PT29/j4+Pn5+vr8/f39/f6DPtKwAAABTklEQVR4Xr3QVWPbMBSAUTVFZmZmhhSXMjNvkhwqMzMzMzPDeD+xASvObKePPa+ffHVl8PlsnE0+qPpBuQjVJjno6pZpSKXYl7/bZyFaQxhf98hHDKEppwdWIW1frFnrxSOWHFfWesSEWC6R/P4zOFrix3TzDFLlXRTR8c0fEEJ1/itpo7SVO9Jdr1DVxZ0USyjZsEY5vZfiiAC0UoTGOrm9PZLuRl8X+Dq1HQtoFbJZbv61i+Poblh/97TC7n0neCcK0ETNUrz1/xPHf+DNAW9Ac6t8O8WH3Vp98f5lCaYKAOFZMLyHL4Y0fe319idMNgMMp+zWVSybUed/+/h7I4wRAG1W6XDy4XmjR9HnzvDRZXUAYDFOhC1S/Hh+fIXxen+eO+AKqbs+wAo30zDTDvDxKoJN88sjUzDFAvBzEUGFsnADoIvAJzoh2BZ8sner+Ke/vwECuQAAAABJRU5ErkJggg==);
  background-repeat: no-repeat;
  background-position: 2px;
  background-color: white;
  color: black;
  border: none;
}
.layer-switcher button:focus,
.layer-switcher button:hover {
  background-color: white;
}
.layer-switcher.shown {
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  max-height: calc(100% - 5.5em);
}
.layer-switcher.shown.ol-control {
  background-color: transparent;
}
.layer-switcher.shown.ol-control:hover {
  background-color: transparent;
}
.layer-switcher.shown .panel {
  display: block;
}
.layer-switcher.shown button {
  display: none;
}
.layer-switcher.shown.layer-switcher-activation-mode-click > button {
  display: block;
  background-image: unset;
  right: 2px;
  position: absolute;
  background-color: #eee;
  margin: 1px;
}
.layer-switcher.shown button:focus,
.layer-switcher.shown button:hover {
  background-color: #fafafa;
}
.layer-switcher ul {
  list-style: none;
  margin: 1.6em 0.4em;
  padding-left: 0;
}
.layer-switcher ul ul {
  padding-left: 1.2em;
  margin: 0.1em 0 0 0;
}
.layer-switcher li.group + li.group {
  margin-top: 0.4em;
}
.layer-switcher li.group + li.layer-switcher-base-group {
}
.layer-switcher li.group > label {
  font-weight: bold;
}
.layer-switcher.layer-switcher-group-select-style-none li.group > label {
  padding-left: 1.2em;
}
.layer-switcher li {
  position: relative;
  margin-top: 0.3em;
}
.layer-switcher li input {
  position: absolute;
  left: 1.2em;
  height: 1em;
  width: 1em;
  font-size: 1em;
}
.layer-switcher li label {
  padding-left: 2.7em;
  padding-right: 1.2em;
  display: inline-block;
  margin-top: 1px;
}
.layer-switcher label.disabled {
  opacity: 0.4;
}
.layer-switcher input {
  margin: 0px;
}
.layer-switcher.touch ::-webkit-scrollbar {
  width: 4px;
}
.layer-switcher.touch ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.layer-switcher.touch ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
li.layer-switcher-base-group > label {
  padding-left: 1.2em;
}
.layer-switcher .group button {
  position: absolute;
  left: 0;
  display: inline-block;
  vertical-align: top;
  float: none;
  font-size: 1em;
  width: 1em;
  height: 1em;
  margin: 0;
  background-position: center 2px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAW0lEQVR4nGNgGAWMyBwXFxcGBgaGeii3EU0tXHzPnj1wQRYsihqQ+I0ExDEMQAYNONgoAN0AmMkNaDSyQSheY8JiaCMOGzE04zIAmyFYNTMw4A+DRhzsUUBtAADw4BCeIZkGdwAAAABJRU5ErkJggg==);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  -ms-transition: -ms-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
}
.layer-switcher .group.layer-switcher-close button {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}
.layer-switcher .group.layer-switcher-fold.layer-switcher-close > ul {
  overflow: hidden;
  height: 0;
}
.layer-switcher.shown.layer-switcher-activation-mode-click {
  padding-left: 34px;
}
.layer-switcher.shown.layer-switcher-activation-mode-click > button {
  left: 0;
  border-right: 0;
}

/* node_modules/@fullcalendar/angular/skeleton.css */
:root {
  --fc-sticky-header-footer-z: 3;
  --fc-popover-z: 4;
}
.fc-dp {
  z-index: var(--fc-popover-z) !important;
}
.fc-6T {
  isolation: isolate;
}
.fc-BO,
.fc-BO *,
.fc-BO *:before,
.fc-BO *:after {
  box-sizing: border-box !important;
}
.fc-la,
.fc-la * {
  cursor: not-allowed !important;
}
.fc-mM {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}
.fc-mM::-webkit-scrollbar {
  display: none !important;
}
.fc-yf {
  flex-shrink: 0 !important;
}
.fc-wS .fc-mP {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
}
.fc-OB .fc-mP > * {
  float: left !important;
}
[dir=rtl] .fc-OB .fc-mP > *,
.fc-OB[dir=rtl] .fc-mP > * {
  float: right !important;
}
.fc-OB .fc-mP::after {
  content: "" !important;
  display: block !important;
  clear: both !important;
}
.fc-hH {
  cursor: pointer !important;
}
.fc-wi {
  cursor: n-resize !important;
}
.fc-My {
  cursor: s-resize !important;
}
.fc-N8 {
  cursor: w-resize !important;
}
[dir=rtl] .fc-N8 {
  cursor: e-resize !important;
}
.fc-Yv {
  cursor: e-resize !important;
}
[dir=rtl] .fc-Yv {
  cursor: w-resize !important;
}
.fc-DR {
  cursor: col-resize !important;
}
.fc-Lp,
.fc-YZ,
.fc-RU {
  position: absolute !important;
  box-sizing: content-box !important;
  width: 100% !important;
  height: 100% !important;
}
.fc-Lp {
  padding: 10px !important;
  margin: -10px !important;
}
.fc-YZ {
  padding-left: 10px !important;
  padding-right: 10px !important;
  margin-left: -10px !important;
  margin-right: -10px !important;
}
.fc-RU {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  margin-top: -10px !important;
  margin-bottom: -10px !important;
}
.fc-4P {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -5px;
  right: -5px;
}
.fc-6M {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.fc-Sy {
  visibility: hidden;
}
.fc-QX {
  border: 0 !important;
}
.fc-3t {
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
}
.fc-fo {
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
}
.fc-wk,
.fc-fx {
  border-top: 0 !important;
  border-bottom: 0 !important;
}
.fc-wk {
  border-inline-end: 0 !important;
}
.fc-fx {
  border-inline-start: 0 !important;
}
.fc-8R {
  border-left: 0 !important;
  border-right: 0 !important;
}
.fc-5a {
  border-top: 0 !important;
  border-bottom: 0 !important;
}
.fc-hM {
  border-inline-start: 1px solid transparent !important;
}
.fc-ei {
  display: flex !important;
  flex-direction: row !important;
}
.fc-Xt {
  display: flex !important;
  flex-direction: column !important;
}
.fc-QU {
  flex-grow: 1 !important;
}
.fc-J6 {
  flex-grow: 1 !important;
  flex-basis: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
}
.fc-w9 {
  min-height: 0 !important;
}
.fc-q3 {
  flex-grow: 1 !important;
  flex-basis: 0 !important;
  min-width: 0 !important;
}
.fc-wS .fc-32,
.fc-wS .fc-IH {
  display: flex !important;
  flex-direction: column !important;
}
.fc-Kk {
  padding: 0 !important;
}
.fc-5M {
  margin: 0 !important;
}
.fc-G8 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.fc-tR {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.fc-8y {
  white-space: nowrap !important;
}
.fc-gR {
  white-space: pre !important;
}
.fc-eu {
  overflow-anchor: none;
}
.fc-75 {
  overflow: hidden !important;
}
.fc-CJ {
  white-space: nowrap !important;
  overflow: hidden !important;
}
.fc-xp {
  position: relative !important;
}
.fc-So {
  position: absolute !important;
}
.fc-Q8 {
  inset-inline-start: 0 !important;
}
.fc-TJ {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}
.fc-X3,
.fc-O5 {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
}
.fc-WS,
.fc-Ld {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
}
.fc-X3 {
  top: 0 !important;
}
.fc-Ld {
  left: 0 !important;
  right: 0 !important;
  width: 0 !important;
}
@media not print {
  .fc-l5 {
    position: sticky !important;
  }
  .fc-dl {
    position: sticky !important;
    top: 0 !important;
  }
  .fc-oh {
    position: sticky !important;
    inset-inline-start: 0 !important;
  }
  .fc-3f {
    position: sticky !important;
    top: 0 !important;
    z-index: var(--fc-sticky-header-footer-z) !important;
  }
}
.fc-wx {
  box-sizing: content-box !important;
}
.fc-pJ {
  position: absolute !important;
  left: -10000px !important;
}
.fc-xM {
  align-items: center !important;
}
.fc-RJ {
  align-items: flex-start !important;
}
.fc-x9 {
  align-items: flex-end !important;
}
.fc-10 {
  position: sticky !important;
  bottom: 0 !important;
  z-index: var(--fc-sticky-header-footer-z) !important;
}
.fc-rg > * {
  margin-top: -1px !important;
}
.fc-rg > * > * {
  height: 1px !important;
}
.fc-OB .fc-sv {
  -moz-column-break-inside: avoid !important;
  break-inside: avoid !important;
}
.fc-OB .fc-32 {
  display: table !important;
  table-layout: fixed !important;
  width: 100% !important;
  border-spacing: 0 !important;
  border-collapse: separate !important;
}
.fc-OB .fc-IH {
  display: table-header-group !important;
  -moz-column-break-inside: avoid !important;
  break-inside: avoid !important;
  background: #fff !important;
  z-index: 9999 !important;
  position: relative !important;
}
.fc-Ph {
  min-height: 6em !important;
}
.fc-6d {
  z-index: 0;
}
.fc-y0 {
  z-index: 1;
}
.fc-5y:focus-visible {
  z-index: 2;
}
.fc-RK {
}
.fc-vB {
}
.fc-nH {
}
.fc-Be {
}
.fc-w3 {
}
.fc-Kf {
}
.fc-ve {
}
.fc-Er {
}
.fc-ll {
}
.fc-BR {
}
.fc-GZ {
}
.fc-Z9 {
}
.fc-VO {
}
.fc-rF {
}
.fc-zT {
}

/* node_modules/@fullcalendar/angular/themes/breezy/theme.css */
.fc-breezy-n5m {
  font-size: 16px;
  line-height: 1.5;
  --fc-breezy-border-style: solid;
}
.fc-breezy-Z9U {
  appearance: button;
  font: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  letter-spacing: inherit;
  color: inherit;
  opacity: 1;
  background-color: #0000;
  border-radius: 0;
  margin: 0;
  border: 0;
  padding: 0;
}
.fc-breezy-JiE {
  color: inherit;
  text-decoration: inherit;
}
.fc-breezy-1EY {
  position: absolute;
}
.fc-breezy-eYX {
  position: relative;
}
.fc-breezy-MaV {
  inset-inline: 0;
}
.fc-breezy-AWB {
  inset-block: 0;
}
.fc-breezy-11a {
  inset-inline-start: -4px;
}
.fc-breezy-OAt {
  inset-inline-start: -16px;
}
.fc-breezy-Tuc {
  inset-inline-end: -4px;
}
.fc-breezy-iD1 {
  inset-inline-end: 0;
}
.fc-breezy-aYN {
  inset-inline-end: 8px;
}
.fc-breezy-dnf {
  inset-inline-end: -3px;
}
.fc-breezy-YDC {
  top: -4px;
}
.fc-breezy-Cy2 {
  top: -14px;
}
.fc-breezy-uqG {
  top: -16px;
}
.fc-breezy-n9G {
  top: 0;
}
.fc-breezy-ERR {
  top: 50%;
}
.fc-breezy-SKv {
  top: 8px;
}
.fc-breezy-fJL {
  bottom: -4px;
}
.fc-breezy-1V6 {
  left: 50%;
}
.fc-breezy-NPw {
  order: 1;
}
.fc-breezy-aAW {
  margin: -6px;
}
.fc-breezy-CH7 {
  margin: -1px;
}
.fc-breezy-gMS {
  margin: 4px;
}
.fc-breezy-cGD {
  margin: 6px;
}
.fc-breezy-bvX {
  margin: 8px;
}
.fc-breezy-rUb {
  margin: 12px;
}
.fc-breezy-jD5 {
  margin: 16px;
}
.fc-breezy-PtF {
  margin-inline: -8px;
}
.fc-breezy-cKZ {
  margin-inline: 2px;
}
.fc-breezy-rVY {
  margin-inline: 4px;
}
.fc-breezy-fn8 {
  margin-inline: 8px;
}
.fc-breezy-GFf {
  margin-inline: 12px;
}
.fc-breezy-g0K {
  margin-inline: auto;
}
.fc-breezy-148 {
  margin-inline: 1px;
}
.fc-breezy-cJ3 {
  margin-block: 2px;
}
.fc-breezy-V9v {
  margin-block: 4px;
}
.fc-breezy-2tF {
  margin-block: 8px;
}
.fc-breezy-X6C {
  margin-block: 12px;
}
.fc-breezy-9Qs {
  margin-block: 16px;
}
.fc-breezy-8T7 {
  margin-block: 40px;
}
.fc-breezy-SEP {
  margin-block: 1px;
}
.fc-breezy-Jzj {
  margin-inline-start: 2px;
}
.fc-breezy-Wga {
  margin-inline-start: 4px;
}
.fc-breezy-qvL {
  margin-inline-start: 1px;
}
.fc-breezy-p9t {
  margin-inline-end: -6px;
}
.fc-breezy-3e1 {
  margin-inline-end: 2px;
}
.fc-breezy-KYn {
  margin-inline-end: 4px;
}
.fc-breezy-9hC {
  margin-inline-end: 1px;
}
.fc-breezy-Dq8 {
  margin-top: -4px;
}
.fc-breezy-zZM {
  margin-top: 4px;
}
.fc-breezy-sEX {
  margin-top: 1px;
}
.fc-breezy-vUo {
  margin-bottom: 4px;
}
.fc-breezy-Ika {
  margin-bottom: 1px;
}
.fc-breezy-F99 {
  margin-left: -4px;
}
.fc-breezy-I48 {
  display: block;
}
.fc-breezy-dl1 {
  display: flex;
}
.fc-breezy-i3N {
  display: grid;
}
.fc-breezy-pps {
  display: none;
}
.fc-breezy-63n {
  width: 0;
  height: 0;
}
.fc-breezy-3wQ {
  width: 8px;
  height: 8px;
}
.fc-breezy-XUJ {
  width: 20px;
  height: 20px;
}
.fc-breezy-MSG {
  width: 24px;
  height: 24px;
}
.fc-breezy-n6w {
  width: 32px;
  height: 32px;
}
.fc-breezy-uuA {
  height: 8px;
}
.fc-breezy-oM6 {
  height: 20px;
}
.fc-breezy-TFV {
  height: 24px;
}
.fc-breezy-I1A {
  height: 32px;
}
.fc-breezy-84e {
  min-height: 2px;
}
.fc-breezy-p7s {
  min-height: 4px;
}
.fc-breezy-mhE {
  min-height: 12px;
}
.fc-breezy-toR {
  min-height: 1px;
}
.fc-breezy-roZ {
  width: 50%;
}
.fc-breezy-vVE {
  width: 25%;
}
.fc-breezy-hza {
  width: 8px;
}
.fc-breezy-79F {
  width: 20px;
}
.fc-breezy-ilz {
  width: 24px;
}
.fc-breezy-4Tv {
  width: 5px;
}
.fc-breezy-6u7 {
  width: 100%;
}
.fc-breezy-kMV {
  max-width: 200px;
}
.fc-breezy-E7b {
  max-width: 872px;
}
.fc-breezy-2KU {
  min-width: 0;
}
.fc-breezy-aNc {
  min-width: 220px;
}
.fc-breezy-yi0 {
  flex-shrink: 0;
}
.fc-breezy-1Zl {
  flex-shrink: 1;
}
.fc-breezy-OLq {
  flex-shrink: 100;
}
.fc-breezy-1El {
  flex-grow: 1;
}
.fc-breezy-KxI {
  rotate: -90deg;
}
.fc-breezy-z44 {
  rotate: 90deg;
}
.fc-breezy-jmT {
  rotate: 180deg;
}
.fc-breezy-sgX {
  flex-direction: column;
}
.fc-breezy-1sP {
  flex-direction: row;
}
.fc-breezy-dNl {
  flex-wrap: wrap;
}
.fc-breezy-XpK {
  align-items: center;
}
.fc-breezy-EF4 {
  align-items: flex-start;
}
.fc-breezy-N2M {
  justify-content: space-between;
}
.fc-breezy-E9P {
  justify-content: center;
}
.fc-breezy-LMv {
  justify-content: flex-end;
}
.fc-breezy-NWN {
  gap: 4px;
}
.fc-breezy-tgZ {
  gap: 8px;
}
.fc-breezy-wwb {
  gap: 12px;
}
.fc-breezy-Pms {
  gap: 16px;
}
.fc-breezy-sI7 {
  align-self: flex-start;
}
.fc-breezy-pKG {
  overflow: hidden;
}
.fc-breezy-AAA {
  border-radius: 3.40282e38px;
}
.fc-breezy-hny {
  border-radius: 8px;
}
.fc-breezy-KzJ {
  border-radius: 6px;
}
.fc-breezy-Fvv {
  border-radius: 4px;
}
.fc-breezy-QUg {
  border-start-start-radius: 6px;
  border-end-start-radius: 6px;
}
.fc-breezy-kmj {
  border-start-start-radius: 4px;
  border-end-start-radius: 4px;
}
.fc-breezy-RNO {
  border-start-end-radius: 6px;
  border-end-end-radius: 6px;
}
.fc-breezy-Skl {
  border-start-end-radius: 4px;
  border-end-end-radius: 4px;
}
.fc-breezy-4In {
  border-end-start-radius: 6px;
}
.fc-breezy-wko {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.fc-breezy-L2o {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.fc-breezy-wsy,
.fc-breezy-qQW {
  border-style: var(--fc-breezy-border-style);
  border-width: 1px;
}
.fc-breezy-5JF {
  border-style: var(--fc-breezy-border-style);
  border-width: 4px;
}
.fc-breezy-Vpk {
  border-style: var(--fc-breezy-border-style);
  border-width: 6px;
}
.fc-breezy-1Wx {
  border-inline-style: var(--fc-breezy-border-style);
  border-inline-width: 1px;
}
.fc-breezy-JIC {
  border-block-style: var(--fc-breezy-border-style);
  border-block-width: 1px;
}
.fc-breezy-3J4 {
  border-inline-start-style: var(--fc-breezy-border-style);
  border-inline-start-width: 1px;
}
.fc-breezy-USt {
  border-inline-end-style: var(--fc-breezy-border-style);
  border-inline-end-width: 1px;
}
.fc-breezy-ku3 {
  border-top-style: var(--fc-breezy-border-style);
  border-top-width: 1px;
}
.fc-breezy-zi1 {
  border-bottom-style: var(--fc-breezy-border-style);
  border-bottom-width: 1px;
}
.fc-breezy-TN2 {
  --fc-breezy-border-style: dotted;
  border-style: dotted;
}
.fc-breezy-EAo {
  border-color: var(--fc-breezy-border);
}
.fc-breezy-tTN {
  border-color: var(--fc-breezy-muted-border);
}
.fc-breezy-D9l {
  border-color: var(--fc-breezy-now);
}
.fc-breezy-LDJ {
  border-color: var(--fc-breezy-popover-border);
}
.fc-breezy-UIT {
  border-color: var(--fc-breezy-primary);
}
.fc-breezy-nuP {
  border-color: var(--fc-breezy-secondary-border);
}
.fc-breezy-OFc {
  border-color: var(--fc-breezy-strong-border);
}
.fc-breezy-lNM {
  border-color: var(--fc-event-color);
}
.fc-breezy-d0j {
  border-color: #0000;
}
.fc-breezy-Hhp {
  border-inline-start-color: var(--fc-breezy-border);
}
.fc-breezy-k8g {
  border-bottom-color: var(--fc-breezy-strong-border);
}
.fc-breezy-gmc {
  background-color: var(--fc-breezy-background);
}
.fc-breezy-nYK {
  background-color: var(--fc-breezy-faint);
}
.fc-breezy-xAy {
  background-color: var(--fc-breezy-highlight);
}
.fc-breezy-pZQ {
  background-color: var(--fc-breezy-muted);
}
.fc-breezy-uhF {
  background-color: var(--fc-breezy-popover);
}
.fc-breezy-Anp {
  background-color: var(--fc-breezy-primary);
}
.fc-breezy-NK3 {
  background-color: var(--fc-breezy-secondary);
}
.fc-breezy-GfU {
  background-color: var(--fc-breezy-selected);
}
@media not print {
  .fc-breezy-rf6 {
    box-shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
  }
}
@media not print {
  @supports (color:color-mix(in lab, red, red)) {
    .fc-breezy-aPk {
      background-color: color-mix(in oklab, var(--fc-event-color) 8%, transparent);
    }
  }
  @supports not (color:color-mix(in lab, red, red)) {
    .fc-breezy-aPk {
      position: relative;
      isolation: isolate;
    }
    .fc-breezy-aPk:before {
      content: "";
      position: absolute;
      inset: 0;
      background-color: var(--fc-event-color);
      opacity: 0.08;
      z-index: -1;
    }
  }
}
.fc-breezy-GjO {
  background-color: var(--fc-event-color);
}
@supports (color:color-mix(in lab, red, red)) {
  .fc-breezy-GjO {
    background-color: color-mix(in oklab, var(--fc-event-color)20%, var(--fc-breezy-background));
  }
}
.fc-breezy-KUX {
  padding: 2px;
}
.fc-breezy-iS4 {
  padding: 4px;
}
.fc-breezy-XJa {
  padding: 6px;
}
.fc-breezy-3N5 {
  padding: 8px;
}
.fc-breezy-IJJ {
  padding: 12px;
}
.fc-breezy-lqx {
  padding: 16px;
}
.fc-breezy-7A6 {
  padding: 1px;
}
.fc-breezy-oQ2 {
  padding-inline: 2px;
}
.fc-breezy-aCI {
  padding-inline: 4px;
}
.fc-breezy-ZrE {
  padding-inline: 6px;
}
.fc-breezy-Nca {
  padding-inline: 8px;
}
.fc-breezy-Apf {
  padding-inline: 12px;
}
.fc-breezy-KRz {
  padding-inline: 16px;
}
.fc-breezy-F1o {
  padding-inline: 1px;
}
.fc-breezy-2rx {
  padding-block: 2px;
}
.fc-breezy-Jhn {
  padding-block: 4px;
}
.fc-breezy-End {
  padding-block: 6px;
}
.fc-breezy-dl6 {
  padding-block: 8px;
}
.fc-breezy-MKw {
  padding-block: 14px;
}
.fc-breezy-OEz {
  padding-block: 16px;
}
.fc-breezy-P9h {
  padding-block: 60px;
}
.fc-breezy-z5u {
  padding-block: 1px;
}
.fc-breezy-a7i {
  padding-inline-start: 2px;
}
.fc-breezy-C2j {
  padding-inline-start: 4px;
}
.fc-breezy-166 {
  padding-top: 2px;
}
.fc-breezy-4dx {
  padding-top: 4px;
}
.fc-breezy-x96 {
  padding-bottom: 4px;
}
.fc-breezy-vQz {
  font-size: 11px;
  line-height: 1.09091;
}
.fc-breezy-9ZS {
  font-size: 18px;
  line-height: calc(1.75/1.125);
}
.fc-breezy-1Po {
  font-size: 16px;
  line-height: calc(1.5/1);
}
.fc-breezy-9yp {
  font-size: 14px;
  line-height: calc(1.25/.875);
}
.fc-breezy-a3B {
  font-size: 12px;
  line-height: calc(1/.75);
}
.fc-breezy-DIS {
  font-weight: 700;
}
.fc-breezy-1OT {
  font-weight: 500;
}
.fc-breezy-C8a {
  font-weight: 600;
}
.fc-breezy-IPx {
  text-overflow: ellipsis;
}
.fc-breezy-TZ4 {
  white-space: nowrap;
}
.fc-breezy-jm6 {
  white-space: pre;
}
.fc-breezy-mNS {
  color: var(--fc-breezy-faint-foreground);
}
.fc-breezy-sI1 {
  color: var(--fc-breezy-foreground);
}
.fc-breezy-t4l {
  color: var(--fc-breezy-muted-foreground);
}
.fc-breezy-ECg {
  color: var(--fc-breezy-primary-foreground);
}
.fc-breezy-nyY {
  color: var(--fc-breezy-secondary-foreground);
}
.fc-breezy-J7Y {
  color: var(--fc-breezy-secondary-icon);
}
.fc-breezy-Oiq {
  color: var(--fc-breezy-strong-foreground);
}
.fc-breezy-WLU {
  color: var(--fc-event-contrast-color);
}
@supports (color:color-mix(in lab, red, red)) {
  .fc-breezy-WLU {
    color: color-mix(in oklab, var(--fc-event-color)50%, var(--fc-breezy-foreground));
  }
}
.fc-breezy-XHd {
  text-transform: uppercase;
}
.fc-breezy-L1Y {
  font-style: italic;
}
.fc-breezy-lMo {
  opacity: .5;
}
.fc-breezy-iTG {
  opacity: .75;
}
.fc-breezy-1kP {
  box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
}
.fc-breezy-tkw {
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
}
.fc-breezy-qNs {
  box-shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
}
.fc-breezy-eSM {
  box-shadow: 0 1px 2px 0 #0000000d;
}
.fc-breezy-A3h {
  box-shadow: 0 0 0 1px var(--fc-breezy-ring-color, currentcolor);
}
.fc-breezy-GBJ {
  box-shadow: 0 0 0 2px var(--fc-breezy-ring-color, currentcolor);
}
.fc-breezy-9Iz {
  --fc-breezy-ring-color: var(--fc-breezy-background) ;
}
.fc-breezy-2R2 {
  outline-style: solid;
  outline-width: 1px;
}
.fc-breezy-0Bj {
  outline-style: solid;
  outline-width: 2px;
}
.fc-breezy-07j {
  outline-offset: -1px;
}
.fc-breezy-3Xj {
  outline-offset: 2px;
}
.fc-breezy-yg7 {
  outline-color: var(--fc-breezy-primary);
}
.fc-breezy-hS8 {
  outline-style: none !important;
}
.fc-breezy-hJa {
  background: linear-gradient(var(--fc-breezy-strong), var(--fc-breezy-strong))var(--fc-breezy-background);
}
.fc-breezy-iCr:not(:last-child) {
  border-bottom-style: var(--fc-breezy-border-style);
  border-bottom-width: 1px;
}
@media (hover:hover) {
  .fc-breezy-vs6:is(:where(.fc-breezy-bCs):hover *) {
    display: block;
  }
  .fc-breezy-t8l:is(:where(.fc-breezy-bCs):hover *) {
    background-color: var(--fc-breezy-primary-over);
  }
  .fc-breezy-Wxh:is(:where(.fc-breezy-bCs):hover *) {
    color: var(--fc-breezy-foreground);
  }
  .fc-breezy-b7A:is(:where(.fc-breezy-bCs):hover *) {
    color: var(--fc-breezy-secondary-icon-over);
  }
  .fc-breezy-Ogp:is(:where(.fc-breezy-bCs):hover *) {
    text-decoration-line: underline;
  }
}
.fc-breezy-x7E:is(:where(.fc-breezy-bCs):focus-visible *) {
  color: var(--fc-breezy-foreground);
}
.fc-breezy-tRE:is(:where(.fc-breezy-bCs):focus-visible *) {
  color: var(--fc-breezy-secondary-icon-over);
}
.fc-breezy-nPR:is(:where(.fc-breezy-bCs):focus-visible *) {
  outline-style: solid;
  outline-width: 2px;
}
.fc-breezy-Ps8:first-child {
  border-start-start-radius: 6px;
  border-end-start-radius: 6px;
}
.fc-breezy-H1W:first-child {
  border-inline-start-style: var(--fc-breezy-border-style);
  border-inline-start-width: 1px;
}
.fc-breezy-g3A:last-child {
  border-start-end-radius: 6px;
  border-end-end-radius: 6px;
}
.fc-breezy-7ss:last-child {
  border-inline-end-style: var(--fc-breezy-border-style);
  border-inline-end-width: 1px;
}
@media (hover:hover) {
  .fc-breezy-1EL:hover {
    background-color: var(--fc-breezy-faint);
  }
  .fc-breezy-qiG:hover {
    background-color: var(--fc-breezy-muted);
  }
  .fc-breezy-8mf:hover {
    background-color: var(--fc-breezy-primary-over);
  }
  .fc-breezy-StK:hover {
    background-color: var(--fc-breezy-secondary-over);
  }
  .fc-breezy-yE8:hover {
    background-color: var(--fc-event-color);
  }
  @supports (color:color-mix(in lab, red, red)) {
    .fc-breezy-yE8:hover {
      background-color: color-mix(in oklab, var(--fc-event-color)25%, var(--fc-breezy-background));
    }
  }
  .fc-breezy-i3P:hover {
    color: var(--fc-breezy-muted-foreground);
  }
  .fc-breezy-hnE:hover {
    color: var(--fc-breezy-strong-foreground);
  }
  .fc-breezy-Eu0:hover {
    text-decoration-line: underline;
  }
  .fc-breezy-AT7:hover {
    background: linear-gradient(var(--fc-breezy-stronger), var(--fc-breezy-stronger))var(--fc-breezy-background);
  }
}
.fc-breezy-UTk:focus-visible {
  background-color: var(--fc-breezy-faint);
}
.fc-breezy-WfX:focus-visible {
  background-color: var(--fc-breezy-muted);
}
.fc-breezy-uqo:focus-visible {
  outline-style: solid;
  outline-width: 2px;
}
.fc-breezy-qWF:active {
  background-color: var(--fc-breezy-muted);
}
.fc-breezy-x2T:active {
  background-color: var(--fc-event-color);
}
@supports (color:color-mix(in lab, red, red)) {
  .fc-breezy-x2T:active {
    background-color: color-mix(in oklab, var(--fc-event-color)30%, var(--fc-breezy-background));
  }
}
.fc-breezy-b3B:active {
  background: linear-gradient(var(--fc-breezy-strongest), var(--fc-breezy-strongest))var(--fc-breezy-background);
}
@media print {
  .fc-breezy-jsy {
    border-width: 1px;
  }
  .fc-breezy-DO7 {
    border-color: var(--fc-event-color);
  }
  .fc-breezy-4MR {
    border-color: #000;
  }
  .fc-breezy-vwH {
    background-color: #fff;
  }
}
[dir=rtl] .fc-breezy-keW {
  rotate: -90deg;
}
[dir=rtl] .fc-breezy-jY6 {
  rotate: none;
}
[dir=rtl] .fc-breezy-ZW3 {
  rotate: 90deg;
}
[dir=rtl] .fc-breezy-asP {
  rotate: 180deg;
}

/* node_modules/@fullcalendar/angular/themes/breezy/palettes/indigo.css */
:root {
  --fc-breezy-primary: #4f46e5;
  --fc-breezy-primary-over: #6366f1;
  --fc-breezy-primary-foreground: #ffffff;
  --fc-breezy-secondary: var(--fc-breezy-background);
  --fc-breezy-secondary-over: var(--fc-breezy-faint);
  --fc-breezy-secondary-border: var(--fc-breezy-strong-border);
  --fc-breezy-secondary-foreground: var(--fc-breezy-strong-foreground);
  --fc-breezy-secondary-icon: var(--fc-breezy-faint-foreground);
  --fc-breezy-secondary-icon-over: var(--fc-breezy-muted-foreground);
  --fc-breezy-event: #3b82f6;
  --fc-breezy-event-contrast: #fff;
  --fc-breezy-background-event: #8b5cf6;
  --fc-breezy-highlight: #38bdf814;
  --fc-breezy-now: #f43f5e;
  --fc-breezy-selected: var(--fc-breezy-strong);
  --fc-breezy-popover: var(--fc-breezy-background);
  --fc-breezy-popover-border: var(--fc-breezy-strong-border);
  --fc-breezy-background: #ffffff;
  --fc-breezy-faint: #00000005;
  --fc-breezy-muted: #0000000D;
  --fc-breezy-strong: #0000001A;
  --fc-breezy-stronger: #00000024;
  --fc-breezy-strongest: #0000002E;
  --fc-breezy-foreground: #374151;
  --fc-breezy-faint-foreground: #9ca3af;
  --fc-breezy-muted-foreground: #6b7280;
  --fc-breezy-strong-foreground: #111827;
  --fc-breezy-border: #e5e7eb;
  --fc-breezy-muted-border: #f3f4f6;
  --fc-breezy-strong-border: #d1d5db;
}
@media not print {
  [data-color-scheme=dark] {
    --fc-breezy-primary: #6366f1;
    --fc-breezy-primary-over: #818cf8;
    --fc-breezy-secondary: var(--fc-breezy-muted);
    --fc-breezy-secondary-over: var(--fc-breezy-strong);
    --fc-breezy-secondary-border: var(--fc-breezy-muted-border);
    --fc-breezy-secondary-foreground: var(--fc-breezy-strong-foreground);
    --fc-breezy-secondary-icon: var(--fc-breezy-muted-foreground);
    --fc-breezy-secondary-icon-over: var(--fc-breezy-foreground);
    --fc-breezy-event: #93c5fd;
    --fc-breezy-event-contrast: #000;
    --fc-breezy-now: #fb7185;
    --fc-breezy-selected: var(--fc-breezy-muted);
    --fc-breezy-popover: #1f2937;
    --fc-breezy-popover-border: var(--fc-breezy-border);
    --fc-breezy-background: #111827;
    --fc-breezy-faint: #ffffff08;
    --fc-breezy-muted: #ffffff12;
    --fc-breezy-strong: #ffffff1F;
    --fc-breezy-stronger: #ffffff29;
    --fc-breezy-strongest: #ffffff33;
    --fc-breezy-foreground: #d1d5db;
    --fc-breezy-muted-foreground: #9ca3af;
    --fc-breezy-faint-foreground: #6b7280;
    --fc-breezy-strong-foreground: #ffffff;
    --fc-breezy-border: #ffffff1A;
    --fc-breezy-muted-border: #ffffff0D;
    --fc-breezy-strong-border: #ffffff26;
  }
}

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