/* src/theme/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/@ionic/angular/css/core.css */
:root {
  --ion-color-primary: #0054e9;
  --ion-color-primary-rgb:
    0,
    84,
    233;
  --ion-color-primary-contrast: #fff;
  --ion-color-primary-contrast-rgb:
    255,
    255,
    255;
  --ion-color-primary-shade: #004acd;
  --ion-color-primary-tint: #1a65eb;
  --ion-color-secondary: #0163aa;
  --ion-color-secondary-rgb:
    1,
    99,
    170;
  --ion-color-secondary-contrast: #fff;
  --ion-color-secondary-contrast-rgb:
    255,
    255,
    255;
  --ion-color-secondary-shade: #015796;
  --ion-color-secondary-tint: #1a73b3;
  --ion-color-tertiary: #6030ff;
  --ion-color-tertiary-rgb:
    96,
    48,
    255;
  --ion-color-tertiary-contrast: #fff;
  --ion-color-tertiary-contrast-rgb:
    255,
    255,
    255;
  --ion-color-tertiary-shade: #542ae0;
  --ion-color-tertiary-tint: #7045ff;
  --ion-color-success: #2dd55b;
  --ion-color-success-rgb:
    45,
    213,
    91;
  --ion-color-success-contrast: #000;
  --ion-color-success-contrast-rgb:
    0,
    0,
    0;
  --ion-color-success-shade: #28bb50;
  --ion-color-success-tint: #42d96b;
  --ion-color-warning: #ffc409;
  --ion-color-warning-rgb:
    255,
    196,
    9;
  --ion-color-warning-contrast: #000;
  --ion-color-warning-contrast-rgb:
    0,
    0,
    0;
  --ion-color-warning-shade: #e0ac08;
  --ion-color-warning-tint: #ffca22;
  --ion-color-danger: #c5000f;
  --ion-color-danger-rgb:
    197,
    0,
    15;
  --ion-color-danger-contrast: #fff;
  --ion-color-danger-contrast-rgb:
    255,
    255,
    255;
  --ion-color-danger-shade: #ad000d;
  --ion-color-danger-tint: #cb1a27;
  --ion-color-light: #f4f5f8;
  --ion-color-light-rgb:
    244,
    245,
    248;
  --ion-color-light-contrast: #000;
  --ion-color-light-contrast-rgb:
    0,
    0,
    0;
  --ion-color-light-shade: #d7d8da;
  --ion-color-light-tint: #f5f6f9;
  --ion-color-medium: #636469;
  --ion-color-medium-rgb:
    99,
    100,
    105;
  --ion-color-medium-contrast: #fff;
  --ion-color-medium-contrast-rgb:
    255,
    255,
    255;
  --ion-color-medium-shade: #57585c;
  --ion-color-medium-tint: #737478;
  --ion-color-dark: #222428;
  --ion-color-dark-rgb:
    34,
    36,
    40;
  --ion-color-dark-contrast: #fff;
  --ion-color-dark-contrast-rgb:
    255,
    255,
    255;
  --ion-color-dark-shade: #1e2023;
  --ion-color-dark-tint: #383a3e;
}
html.ios {
  --ion-default-font:
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    "Roboto",
    sans-serif;
}
html.md {
  --ion-default-font:
    "Roboto",
    "Helvetica Neue",
    sans-serif;
}
html {
  --ion-dynamic-font: -apple-system-body;
  --ion-font-family: var(--ion-default-font);
}
body {
  background: var(--ion-background-color);
  color: var(--ion-text-color);
}
body.backdrop-no-scroll {
  overflow: hidden;
}
html.ios ion-modal.modal-card ion-header ion-toolbar:first-of-type,
html.ios ion-modal.modal-sheet ion-header ion-toolbar:first-of-type,
html.ios ion-modal ion-footer ion-toolbar:first-of-type {
  padding-top: 6px;
}
html.ios ion-modal.modal-card ion-header ion-toolbar:last-of-type,
html.ios ion-modal.modal-sheet ion-header ion-toolbar:last-of-type {
  padding-bottom: 6px;
}
html.ios ion-modal ion-toolbar {
  padding-right: calc(var(--ion-safe-area-right) + 8px);
  padding-left: calc(var(--ion-safe-area-left) + 8px);
}
@media screen and (min-width: 768px) {
  html.ios ion-modal.modal-card:first-of-type {
    --backdrop-opacity: 0.18;
  }
}
ion-modal.modal-default.show-modal ~ ion-modal.modal-default {
  --backdrop-opacity: 0;
  --box-shadow: none;
}
html.ios ion-modal.modal-card .ion-page {
  border-top-left-radius: var(--border-radius);
}
.ion-color-primary {
  --ion-color-base: var(--ion-color-primary, #0054e9) !important;
  --ion-color-base-rgb: var(--ion-color-primary-rgb, 0, 84, 233) !important;
  --ion-color-contrast: var(--ion-color-primary-contrast, #fff) !important;
  --ion-color-contrast-rgb: var(--ion-color-primary-contrast-rgb, 255, 255, 255) !important;
  --ion-color-shade: var(--ion-color-primary-shade, #004acd) !important;
  --ion-color-tint: var(--ion-color-primary-tint, #1a65eb) !important;
}
.ion-color-secondary {
  --ion-color-base: var(--ion-color-secondary, #0163aa) !important;
  --ion-color-base-rgb: var(--ion-color-secondary-rgb, 1, 99, 170) !important;
  --ion-color-contrast: var(--ion-color-secondary-contrast, #fff) !important;
  --ion-color-contrast-rgb: var(--ion-color-secondary-contrast-rgb, 255, 255, 255) !important;
  --ion-color-shade: var(--ion-color-secondary-shade, #015796) !important;
  --ion-color-tint: var(--ion-color-secondary-tint, #1a73b3) !important;
}
.ion-color-tertiary {
  --ion-color-base: var(--ion-color-tertiary, #6030ff) !important;
  --ion-color-base-rgb: var(--ion-color-tertiary-rgb, 96, 48, 255) !important;
  --ion-color-contrast: var(--ion-color-tertiary-contrast, #fff) !important;
  --ion-color-contrast-rgb: var(--ion-color-tertiary-contrast-rgb, 255, 255, 255) !important;
  --ion-color-shade: var(--ion-color-tertiary-shade, #542ae0) !important;
  --ion-color-tint: var(--ion-color-tertiary-tint, #7045ff) !important;
}
.ion-color-success {
  --ion-color-base: var(--ion-color-success, #2dd55b) !important;
  --ion-color-base-rgb: var(--ion-color-success-rgb, 45, 213, 91) !important;
  --ion-color-contrast: var(--ion-color-success-contrast, #000) !important;
  --ion-color-contrast-rgb: var(--ion-color-success-contrast-rgb, 0, 0, 0) !important;
  --ion-color-shade: var(--ion-color-success-shade, #28bb50) !important;
  --ion-color-tint: var(--ion-color-success-tint, #42d96b) !important;
}
.ion-color-warning {
  --ion-color-base: var(--ion-color-warning, #ffc409) !important;
  --ion-color-base-rgb: var(--ion-color-warning-rgb, 255, 196, 9) !important;
  --ion-color-contrast: var(--ion-color-warning-contrast, #000) !important;
  --ion-color-contrast-rgb: var(--ion-color-warning-contrast-rgb, 0, 0, 0) !important;
  --ion-color-shade: var(--ion-color-warning-shade, #e0ac08) !important;
  --ion-color-tint: var(--ion-color-warning-tint, #ffca22) !important;
}
.ion-color-danger {
  --ion-color-base: var(--ion-color-danger, #c5000f) !important;
  --ion-color-base-rgb: var(--ion-color-danger-rgb, 197, 0, 15) !important;
  --ion-color-contrast: var(--ion-color-danger-contrast, #fff) !important;
  --ion-color-contrast-rgb: var(--ion-color-danger-contrast-rgb, 255, 255, 255) !important;
  --ion-color-shade: var(--ion-color-danger-shade, #ad000d) !important;
  --ion-color-tint: var(--ion-color-danger-tint, #cb1a27) !important;
}
.ion-color-light {
  --ion-color-base: var(--ion-color-light, #f4f5f8) !important;
  --ion-color-base-rgb: var(--ion-color-light-rgb, 244, 245, 248) !important;
  --ion-color-contrast: var(--ion-color-light-contrast, #000) !important;
  --ion-color-contrast-rgb: var(--ion-color-light-contrast-rgb, 0, 0, 0) !important;
  --ion-color-shade: var(--ion-color-light-shade, #d7d8da) !important;
  --ion-color-tint: var(--ion-color-light-tint, #f5f6f9) !important;
}
.ion-color-medium {
  --ion-color-base: var(--ion-color-medium, #636469) !important;
  --ion-color-base-rgb: var(--ion-color-medium-rgb, 99, 100, 105) !important;
  --ion-color-contrast: var(--ion-color-medium-contrast, #fff) !important;
  --ion-color-contrast-rgb: var(--ion-color-medium-contrast-rgb, 255, 255, 255) !important;
  --ion-color-shade: var(--ion-color-medium-shade, #57585c) !important;
  --ion-color-tint: var(--ion-color-medium-tint, #737478) !important;
}
.ion-color-dark {
  --ion-color-base: var(--ion-color-dark, #222428) !important;
  --ion-color-base-rgb: var(--ion-color-dark-rgb, 34, 36, 40) !important;
  --ion-color-contrast: var(--ion-color-dark-contrast, #fff) !important;
  --ion-color-contrast-rgb: var(--ion-color-dark-contrast-rgb, 255, 255, 255) !important;
  --ion-color-shade: var(--ion-color-dark-shade, #1e2023) !important;
  --ion-color-tint: var(--ion-color-dark-tint, #383a3e) !important;
}
.ion-page {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  position: absolute;
  flex-direction: column;
  justify-content: space-between;
  contain: layout size style;
  z-index: 0;
}
ion-modal > .ion-page {
  position: relative;
  contain: layout style;
  height: 100%;
}
.split-pane-visible > .ion-page.split-pane-main {
  position: relative;
}
ion-route,
ion-route-redirect,
ion-router,
ion-select-option,
ion-nav-controller,
ion-menu-controller,
ion-action-sheet-controller,
ion-alert-controller,
ion-loading-controller,
ion-modal-controller,
ion-picker-controller,
ion-popover-controller,
ion-toast-controller,
.ion-page-hidden {
  display: none !important;
}
.ion-page-invisible {
  opacity: 0;
}
.can-go-back > ion-header ion-back-button {
  display: block;
}
html.plt-ios.plt-hybrid,
html.plt-ios.plt-pwa {
  --ion-statusbar-padding: 20px;
}
@supports (padding-top: 20px) {
  html {
    --ion-safe-area-top: var(--ion-statusbar-padding);
  }
}
@supports (padding-top: env(safe-area-inset-top)) {
  html {
    --ion-safe-area-top: env(safe-area-inset-top);
    --ion-safe-area-bottom: env(safe-area-inset-bottom);
    --ion-safe-area-left: env(safe-area-inset-left);
    --ion-safe-area-right: env(safe-area-inset-right);
  }
}
ion-card.ion-color .ion-inherit-color,
ion-card-header.ion-color .ion-inherit-color {
  color: inherit;
}
.menu-content {
  transform: translate3d(0, 0, 0);
}
.menu-content-open {
  cursor: pointer;
  touch-action: manipulation;
  pointer-events: none;
  overflow-y: hidden;
}
.menu-content-open ion-content {
  --overflow: hidden;
}
.menu-content-open .ion-content-scroll-host {
  overflow: hidden;
}
.ios .menu-content-reveal {
  box-shadow: -8px 0 42px rgba(0, 0, 0, .08);
}
[dir=rtl].ios .menu-content-reveal {
  box-shadow: 8px 0 42px rgba(0, 0, 0, .08);
}
.md .menu-content-reveal {
  box-shadow: 4px 0px 16px rgba(0, 0, 0, .18);
}
.md .menu-content-push {
  box-shadow: 4px 0px 16px rgba(0, 0, 0, .18);
}
ion-accordion-group.accordion-group-expand-inset > ion-accordion:first-of-type {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
ion-accordion-group.accordion-group-expand-inset > ion-accordion:last-of-type {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
ion-accordion-group > ion-accordion:last-of-type ion-item[slot=header] {
  --border-width: 0px;
}
ion-accordion.accordion-animated > [slot=header] .ion-accordion-toggle-icon {
  transition: 300ms transform cubic-bezier(0.25, 0.8, 0.5, 1);
}
@media (prefers-reduced-motion: reduce) {
  ion-accordion .ion-accordion-toggle-icon {
    transition: none !important;
  }
}
ion-accordion.accordion-expanding > [slot=header] .ion-accordion-toggle-icon,
ion-accordion.accordion-expanded > [slot=header] .ion-accordion-toggle-icon {
  transform: rotate(180deg);
}
ion-accordion-group.accordion-group-expand-inset.md > ion-accordion.accordion-previous ion-item[slot=header] {
  --border-width: 0px;
  --inner-border-width: 0px;
}
ion-accordion-group.accordion-group-expand-inset.md > ion-accordion.accordion-expanding:first-of-type,
ion-accordion-group.accordion-group-expand-inset.md > ion-accordion.accordion-expanded:first-of-type {
  margin-top: 0;
}
ion-input input::-webkit-date-and-time-value {
  text-align: start;
}
.ion-datetime-button-overlay {
  --width: fit-content;
  --height: fit-content;
}
.ion-datetime-button-overlay ion-datetime.datetime-grid {
  width: 320px;
  min-height: 320px;
}
[ion-last-focus],
header[tabindex="-1"]:focus,
[role=banner][tabindex="-1"]:focus,
main[tabindex="-1"]:focus,
[role=main][tabindex="-1"]:focus,
h1[tabindex="-1"]:focus,
[role=heading][aria-level="1"][tabindex="-1"]:focus {
  outline: none;
}
.popover-viewport:has(> ion-content) {
  overflow: hidden;
}
@supports not selector(:has(> ion-content)) {
  .popover-viewport {
    overflow: hidden;
  }
}

/* node_modules/@ionic/angular/css/normalize.css */
audio,
canvas,
progress,
video {
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
b,
strong {
  font-weight: bold;
}
img {
  max-width: 100%;
}
hr {
  height: 1px;
  border-width: 0;
  box-sizing: content-box;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
label,
input,
select,
textarea {
  font-family: inherit;
  line-height: normal;
}
textarea {
  overflow: auto;
  height: auto;
  font: inherit;
  color: inherit;
}
textarea::placeholder {
  padding-left: 2px;
}
form,
input,
optgroup,
select {
  margin: 0;
  font: inherit;
  color: inherit;
}
html input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}
a,
a div,
a span,
a ion-icon,
a ion-label,
button,
button div,
button span,
button ion-icon,
button ion-label,
.ion-tappable,
[tappable],
[tappable] div,
[tappable] span,
[tappable] ion-icon,
[tappable] ion-label,
input,
textarea {
  touch-action: manipulation;
}
a ion-label,
button ion-label {
  pointer-events: none;
}
button {
  padding: 0;
  border: 0;
  border-radius: 0;
  font-family: inherit;
  font-style: inherit;
  font-variant: inherit;
  line-height: 1;
  text-transform: none;
  cursor: pointer;
  -webkit-appearance: button;
}
[tappable] {
  cursor: pointer;
}
a[disabled],
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}

/* node_modules/@ionic/angular/css/structure.css */
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
html {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html:not(.hydrated) body {
  display: none;
}
html.ion-ce body {
  display: block;
}
html.plt-pwa {
  height: 100vh;
}
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  position: fixed;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  transform: translateZ(0);
  text-rendering: optimizeLegibility;
  overflow: hidden;
  touch-action: manipulation;
  -webkit-user-drag: none;
  -ms-content-zooming: none;
  word-wrap: break-word;
  overscroll-behavior-y: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* node_modules/@ionic/angular/css/typography.css */
html {
  font-family: var(--ion-font-family);
}
@supports (-webkit-touch-callout: none) {
  html {
    font: var(--ion-dynamic-font, 16px var(--ion-font-family));
  }
}
a {
  background-color: transparent;
  color: var(--ion-color-primary, #0054e9);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 16px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.2;
}
h1 {
  margin-top: 20px;
  font-size: 1.625rem;
}
h2 {
  margin-top: 18px;
  font-size: 1.5rem;
}
h3 {
  font-size: 1.375rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.125rem;
}
h6 {
  font-size: 1rem;
}
small {
  font-size: 75%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}

/* node_modules/@ionic/angular/css/display.css */
.ion-hide {
  display: none !important;
}
.ion-hide-up {
  display: none !important;
}
.ion-hide-down {
  display: none !important;
}
@media (min-width: 576px) {
  .ion-hide-sm-up {
    display: none !important;
  }
}
@media (max-width: 575.98px) {
  .ion-hide-sm-down {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .ion-hide-md-up {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .ion-hide-md-down {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .ion-hide-lg-up {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  .ion-hide-lg-down {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .ion-hide-xl-up {
    display: none !important;
  }
}
@media (max-width: 1199.98px) {
  .ion-hide-xl-down {
    display: none !important;
  }
}

/* node_modules/@ionic/angular/css/padding.css */
.ion-no-padding {
  --padding-start: 0;
  --padding-end: 0;
  --padding-top: 0;
  --padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.ion-padding {
  --padding-start: var(--ion-padding, 16px);
  --padding-end: var(--ion-padding, 16px);
  --padding-top: var(--ion-padding, 16px);
  --padding-bottom: var(--ion-padding, 16px);
  -webkit-padding-start: var(--ion-padding, 16px);
  padding-inline-start: var(--ion-padding, 16px);
  -webkit-padding-end: var(--ion-padding, 16px);
  padding-inline-end: var(--ion-padding, 16px);
  padding-top: var(--ion-padding, 16px);
  padding-bottom: var(--ion-padding, 16px);
}
.ion-padding-top {
  --padding-top: var(--ion-padding, 16px);
  padding-top: var(--ion-padding, 16px);
}
.ion-padding-start {
  --padding-start: var(--ion-padding, 16px);
  -webkit-padding-start: var(--ion-padding, 16px);
  padding-inline-start: var(--ion-padding, 16px);
}
.ion-padding-end {
  --padding-end: var(--ion-padding, 16px);
  -webkit-padding-end: var(--ion-padding, 16px);
  padding-inline-end: var(--ion-padding, 16px);
}
.ion-padding-bottom {
  --padding-bottom: var(--ion-padding, 16px);
  padding-bottom: var(--ion-padding, 16px);
}
.ion-padding-vertical {
  --padding-top: var(--ion-padding, 16px);
  --padding-bottom: var(--ion-padding, 16px);
  padding-top: var(--ion-padding, 16px);
  padding-bottom: var(--ion-padding, 16px);
}
.ion-padding-horizontal {
  --padding-start: var(--ion-padding, 16px);
  --padding-end: var(--ion-padding, 16px);
  -webkit-padding-start: var(--ion-padding, 16px);
  padding-inline-start: var(--ion-padding, 16px);
  -webkit-padding-end: var(--ion-padding, 16px);
  padding-inline-end: var(--ion-padding, 16px);
}
.ion-no-margin {
  --margin-start: 0;
  --margin-end: 0;
  --margin-top: 0;
  --margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.ion-margin {
  --margin-start: var(--ion-margin, 16px);
  --margin-end: var(--ion-margin, 16px);
  --margin-top: var(--ion-margin, 16px);
  --margin-bottom: var(--ion-margin, 16px);
  -webkit-margin-start: var(--ion-margin, 16px);
  margin-inline-start: var(--ion-margin, 16px);
  -webkit-margin-end: var(--ion-margin, 16px);
  margin-inline-end: var(--ion-margin, 16px);
  margin-top: var(--ion-margin, 16px);
  margin-bottom: var(--ion-margin, 16px);
}
.ion-margin-top {
  --margin-top: var(--ion-margin, 16px);
  margin-top: var(--ion-margin, 16px);
}
.ion-margin-start {
  --margin-start: var(--ion-margin, 16px);
  -webkit-margin-start: var(--ion-margin, 16px);
  margin-inline-start: var(--ion-margin, 16px);
}
.ion-margin-end {
  --margin-end: var(--ion-margin, 16px);
  -webkit-margin-end: var(--ion-margin, 16px);
  margin-inline-end: var(--ion-margin, 16px);
}
.ion-margin-bottom {
  --margin-bottom: var(--ion-margin, 16px);
  margin-bottom: var(--ion-margin, 16px);
}
.ion-margin-vertical {
  --margin-top: var(--ion-margin, 16px);
  --margin-bottom: var(--ion-margin, 16px);
  margin-top: var(--ion-margin, 16px);
  margin-bottom: var(--ion-margin, 16px);
}
.ion-margin-horizontal {
  --margin-start: var(--ion-margin, 16px);
  --margin-end: var(--ion-margin, 16px);
  -webkit-margin-start: var(--ion-margin, 16px);
  margin-inline-start: var(--ion-margin, 16px);
  -webkit-margin-end: var(--ion-margin, 16px);
  margin-inline-end: var(--ion-margin, 16px);
}

/* node_modules/@ionic/angular/css/float-elements.css */
.ion-float-left {
  float: left !important;
}
.ion-float-right {
  float: right !important;
}
.ion-float-start {
  float: left !important;
}
:host-context([dir=rtl]) .ion-float-start {
  float: right !important;
}
[dir=rtl] .ion-float-start {
  float: right !important;
}
@supports selector(:dir(rtl)) {
  .ion-float-start:dir(rtl) {
    float: right !important;
  }
}
.ion-float-end {
  float: right !important;
}
:host-context([dir=rtl]) .ion-float-end {
  float: left !important;
}
[dir=rtl] .ion-float-end {
  float: left !important;
}
@supports selector(:dir(rtl)) {
  .ion-float-end:dir(rtl) {
    float: left !important;
  }
}
@media (min-width: 576px) {
  .ion-float-sm-left {
    float: left !important;
  }
  .ion-float-sm-right {
    float: right !important;
  }
  .ion-float-sm-start {
    float: left !important;
  }
  :host-context([dir=rtl]) .ion-float-sm-start {
    float: right !important;
  }
  [dir=rtl] .ion-float-sm-start {
    float: right !important;
  }
  @supports selector(:dir(rtl)) {
    .ion-float-sm-start:dir(rtl) {
      float: right !important;
    }
  }
  .ion-float-sm-end {
    float: right !important;
  }
  :host-context([dir=rtl]) .ion-float-sm-end {
    float: left !important;
  }
  [dir=rtl] .ion-float-sm-end {
    float: left !important;
  }
  @supports selector(:dir(rtl)) {
    .ion-float-sm-end:dir(rtl) {
      float: left !important;
    }
  }
}
@media (min-width: 768px) {
  .ion-float-md-left {
    float: left !important;
  }
  .ion-float-md-right {
    float: right !important;
  }
  .ion-float-md-start {
    float: left !important;
  }
  :host-context([dir=rtl]) .ion-float-md-start {
    float: right !important;
  }
  [dir=rtl] .ion-float-md-start {
    float: right !important;
  }
  @supports selector(:dir(rtl)) {
    .ion-float-md-start:dir(rtl) {
      float: right !important;
    }
  }
  .ion-float-md-end {
    float: right !important;
  }
  :host-context([dir=rtl]) .ion-float-md-end {
    float: left !important;
  }
  [dir=rtl] .ion-float-md-end {
    float: left !important;
  }
  @supports selector(:dir(rtl)) {
    .ion-float-md-end:dir(rtl) {
      float: left !important;
    }
  }
}
@media (min-width: 992px) {
  .ion-float-lg-left {
    float: left !important;
  }
  .ion-float-lg-right {
    float: right !important;
  }
  .ion-float-lg-start {
    float: left !important;
  }
  :host-context([dir=rtl]) .ion-float-lg-start {
    float: right !important;
  }
  [dir=rtl] .ion-float-lg-start {
    float: right !important;
  }
  @supports selector(:dir(rtl)) {
    .ion-float-lg-start:dir(rtl) {
      float: right !important;
    }
  }
  .ion-float-lg-end {
    float: right !important;
  }
  :host-context([dir=rtl]) .ion-float-lg-end {
    float: left !important;
  }
  [dir=rtl] .ion-float-lg-end {
    float: left !important;
  }
  @supports selector(:dir(rtl)) {
    .ion-float-lg-end:dir(rtl) {
      float: left !important;
    }
  }
}
@media (min-width: 1200px) {
  .ion-float-xl-left {
    float: left !important;
  }
  .ion-float-xl-right {
    float: right !important;
  }
  .ion-float-xl-start {
    float: left !important;
  }
  :host-context([dir=rtl]) .ion-float-xl-start {
    float: right !important;
  }
  [dir=rtl] .ion-float-xl-start {
    float: right !important;
  }
  @supports selector(:dir(rtl)) {
    .ion-float-xl-start:dir(rtl) {
      float: right !important;
    }
  }
  .ion-float-xl-end {
    float: right !important;
  }
  :host-context([dir=rtl]) .ion-float-xl-end {
    float: left !important;
  }
  [dir=rtl] .ion-float-xl-end {
    float: left !important;
  }
  @supports selector(:dir(rtl)) {
    .ion-float-xl-end:dir(rtl) {
      float: left !important;
    }
  }
}

/* node_modules/@ionic/angular/css/text-alignment.css */
.ion-text-center {
  text-align: center !important;
}
.ion-text-justify {
  text-align: justify !important;
}
.ion-text-start {
  text-align: start !important;
}
.ion-text-end {
  text-align: end !important;
}
.ion-text-left {
  text-align: left !important;
}
.ion-text-right {
  text-align: right !important;
}
.ion-text-nowrap {
  white-space: nowrap !important;
}
.ion-text-wrap {
  white-space: normal !important;
}
@media (min-width: 576px) {
  .ion-text-sm-center {
    text-align: center !important;
  }
  .ion-text-sm-justify {
    text-align: justify !important;
  }
  .ion-text-sm-start {
    text-align: start !important;
  }
  .ion-text-sm-end {
    text-align: end !important;
  }
  .ion-text-sm-left {
    text-align: left !important;
  }
  .ion-text-sm-right {
    text-align: right !important;
  }
  .ion-text-sm-nowrap {
    white-space: nowrap !important;
  }
  .ion-text-sm-wrap {
    white-space: normal !important;
  }
}
@media (min-width: 768px) {
  .ion-text-md-center {
    text-align: center !important;
  }
  .ion-text-md-justify {
    text-align: justify !important;
  }
  .ion-text-md-start {
    text-align: start !important;
  }
  .ion-text-md-end {
    text-align: end !important;
  }
  .ion-text-md-left {
    text-align: left !important;
  }
  .ion-text-md-right {
    text-align: right !important;
  }
  .ion-text-md-nowrap {
    white-space: nowrap !important;
  }
  .ion-text-md-wrap {
    white-space: normal !important;
  }
}
@media (min-width: 992px) {
  .ion-text-lg-center {
    text-align: center !important;
  }
  .ion-text-lg-justify {
    text-align: justify !important;
  }
  .ion-text-lg-start {
    text-align: start !important;
  }
  .ion-text-lg-end {
    text-align: end !important;
  }
  .ion-text-lg-left {
    text-align: left !important;
  }
  .ion-text-lg-right {
    text-align: right !important;
  }
  .ion-text-lg-nowrap {
    white-space: nowrap !important;
  }
  .ion-text-lg-wrap {
    white-space: normal !important;
  }
}
@media (min-width: 1200px) {
  .ion-text-xl-center {
    text-align: center !important;
  }
  .ion-text-xl-justify {
    text-align: justify !important;
  }
  .ion-text-xl-start {
    text-align: start !important;
  }
  .ion-text-xl-end {
    text-align: end !important;
  }
  .ion-text-xl-left {
    text-align: left !important;
  }
  .ion-text-xl-right {
    text-align: right !important;
  }
  .ion-text-xl-nowrap {
    white-space: nowrap !important;
  }
  .ion-text-xl-wrap {
    white-space: normal !important;
  }
}

/* node_modules/@ionic/angular/css/text-transformation.css */
.ion-text-uppercase {
  text-transform: uppercase !important;
}
.ion-text-lowercase {
  text-transform: lowercase !important;
}
.ion-text-capitalize {
  text-transform: capitalize !important;
}
@media (min-width: 576px) {
  .ion-text-sm-uppercase {
    text-transform: uppercase !important;
  }
  .ion-text-sm-lowercase {
    text-transform: lowercase !important;
  }
  .ion-text-sm-capitalize {
    text-transform: capitalize !important;
  }
}
@media (min-width: 768px) {
  .ion-text-md-uppercase {
    text-transform: uppercase !important;
  }
  .ion-text-md-lowercase {
    text-transform: lowercase !important;
  }
  .ion-text-md-capitalize {
    text-transform: capitalize !important;
  }
}
@media (min-width: 992px) {
  .ion-text-lg-uppercase {
    text-transform: uppercase !important;
  }
  .ion-text-lg-lowercase {
    text-transform: lowercase !important;
  }
  .ion-text-lg-capitalize {
    text-transform: capitalize !important;
  }
}
@media (min-width: 1200px) {
  .ion-text-xl-uppercase {
    text-transform: uppercase !important;
  }
  .ion-text-xl-lowercase {
    text-transform: lowercase !important;
  }
  .ion-text-xl-capitalize {
    text-transform: capitalize !important;
  }
}

/* node_modules/@ionic/angular/css/flex-utils.css */
.ion-align-self-start {
  align-self: flex-start !important;
}
.ion-align-self-end {
  align-self: flex-end !important;
}
.ion-align-self-center {
  align-self: center !important;
}
.ion-align-self-stretch {
  align-self: stretch !important;
}
.ion-align-self-baseline {
  align-self: baseline !important;
}
.ion-align-self-auto {
  align-self: auto !important;
}
.ion-wrap {
  flex-wrap: wrap !important;
}
.ion-nowrap {
  flex-wrap: nowrap !important;
}
.ion-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.ion-justify-content-start {
  justify-content: flex-start !important;
}
.ion-justify-content-center {
  justify-content: center !important;
}
.ion-justify-content-end {
  justify-content: flex-end !important;
}
.ion-justify-content-around {
  justify-content: space-around !important;
}
.ion-justify-content-between {
  justify-content: space-between !important;
}
.ion-justify-content-evenly {
  justify-content: space-evenly !important;
}
.ion-align-items-start {
  align-items: flex-start !important;
}
.ion-align-items-center {
  align-items: center !important;
}
.ion-align-items-end {
  align-items: flex-end !important;
}
.ion-align-items-stretch {
  align-items: stretch !important;
}
.ion-align-items-baseline {
  align-items: baseline !important;
}

/* node_modules/boxicons/css/boxicons.min.css */
@font-face {
  font-family: boxicons;
  font-weight: 400;
  font-style: normal;
  src: url("./media/boxicons-6NVWQSCQ.eot");
  src:
    url("./media/boxicons-6NVWQSCQ.eot") format("embedded-opentype"),
    url("./media/boxicons-AQ5N6WP7.woff2") format("woff2"),
    url("./media/boxicons-5JNJQPUP.woff") format("woff"),
    url("./media/boxicons-GDR4JU3X.ttf") format("truetype"),
    url("./media/boxicons-NNFHLMOR.svg?#boxicons") format("svg");
}
.bx {
  font-family: boxicons !important;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  display: inline-block;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.bx-ul {
  margin-left: 2em;
  padding-left: 0;
  list-style: none;
}
.bx-ul > li {
  position: relative;
}
.bx-ul .bx {
  font-size: inherit;
  line-height: inherit;
  position: absolute;
  left: -2em;
  width: 2em;
  text-align: center;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes burst {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes burst {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes flashing {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
}
@keyframes flashing {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
}
@-webkit-keyframes fade-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  75% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    opacity: 0;
  }
}
@keyframes fade-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  75% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    opacity: 0;
  }
}
@-webkit-keyframes fade-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  75% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    opacity: 0;
  }
}
@keyframes fade-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  75% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    opacity: 0;
  }
}
@-webkit-keyframes fade-up {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  75% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
  }
}
@keyframes fade-up {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  75% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
  }
}
@-webkit-keyframes fade-down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  75% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
}
@keyframes fade-down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  75% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
    transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
    transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -10deg);
    transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -10deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
    transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
    transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
  }
  40%, 60%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bx-spin {
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.bx-spin-hover:hover {
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.bx-tada {
  -webkit-animation: tada 1.5s ease infinite;
  animation: tada 1.5s ease infinite;
}
.bx-tada-hover:hover {
  -webkit-animation: tada 1.5s ease infinite;
  animation: tada 1.5s ease infinite;
}
.bx-flashing {
  -webkit-animation: flashing 1.5s infinite linear;
  animation: flashing 1.5s infinite linear;
}
.bx-flashing-hover:hover {
  -webkit-animation: flashing 1.5s infinite linear;
  animation: flashing 1.5s infinite linear;
}
.bx-burst {
  -webkit-animation: burst 1.5s infinite linear;
  animation: burst 1.5s infinite linear;
}
.bx-burst-hover:hover {
  -webkit-animation: burst 1.5s infinite linear;
  animation: burst 1.5s infinite linear;
}
.bx-fade-up {
  -webkit-animation: fade-up 1.5s infinite linear;
  animation: fade-up 1.5s infinite linear;
}
.bx-fade-up-hover:hover {
  -webkit-animation: fade-up 1.5s infinite linear;
  animation: fade-up 1.5s infinite linear;
}
.bx-fade-down {
  -webkit-animation: fade-down 1.5s infinite linear;
  animation: fade-down 1.5s infinite linear;
}
.bx-fade-down-hover:hover {
  -webkit-animation: fade-down 1.5s infinite linear;
  animation: fade-down 1.5s infinite linear;
}
.bx-fade-left {
  -webkit-animation: fade-left 1.5s infinite linear;
  animation: fade-left 1.5s infinite linear;
}
.bx-fade-left-hover:hover {
  -webkit-animation: fade-left 1.5s infinite linear;
  animation: fade-left 1.5s infinite linear;
}
.bx-fade-right {
  -webkit-animation: fade-right 1.5s infinite linear;
  animation: fade-right 1.5s infinite linear;
}
.bx-fade-right-hover:hover {
  -webkit-animation: fade-right 1.5s infinite linear;
  animation: fade-right 1.5s infinite linear;
}
.bx-xs {
  font-size: 1rem !important;
}
.bx-sm {
  font-size: 1.55rem !important;
}
.bx-md {
  font-size: 2.25rem !important;
}
.bx-lg {
  font-size: 3rem !important;
}
.bx-fw {
  font-size: 1.2857142857em;
  line-height: .8em;
  width: 1.2857142857em;
  height: .8em;
  margin-top: -.2em !important;
  vertical-align: middle;
}
.bx-pull-left {
  float: left;
  margin-right: .3em !important;
}
.bx-pull-right {
  float: right;
  margin-left: .3em !important;
}
.bx-rotate-90 {
  transform: rotate(90deg);
}
.bx-rotate-180 {
  transform: rotate(180deg);
}
.bx-rotate-270 {
  transform: rotate(270deg);
}
.bx-flip-horizontal {
  transform: scaleX(-1);
}
.bx-flip-vertical {
  transform: scaleY(-1);
}
.bx-border {
  padding: .25em;
  border: .07em solid rgba(0, 0, 0, .1);
  border-radius: .25em;
}
.bx-border-circle {
  padding: .25em;
  border: .07em solid rgba(0, 0, 0, .1);
  border-radius: 50%;
}
.bxs-balloon:before {
  content: "\eb60";
}
.bxs-castle:before {
  content: "\eb79";
}
.bxs-coffee-bean:before {
  content: "\eb92";
}
.bxs-objects-horizontal-center:before {
  content: "\ebab";
}
.bxs-objects-horizontal-left:before {
  content: "\ebc4";
}
.bxs-objects-horizontal-right:before {
  content: "\ebdd";
}
.bxs-objects-vertical-bottom:before {
  content: "\ebf6";
}
.bxs-objects-vertical-center:before {
  content: "\ef40";
}
.bxs-objects-vertical-top:before {
  content: "\ef41";
}
.bxs-pear:before {
  content: "\ef42";
}
.bxs-shield-minus:before {
  content: "\ef43";
}
.bxs-shield-plus:before {
  content: "\ef44";
}
.bxs-shower:before {
  content: "\ef45";
}
.bxs-sushi:before {
  content: "\ef46";
}
.bxs-universal-access:before {
  content: "\ef47";
}
.bx-child:before {
  content: "\ef48";
}
.bx-horizontal-left:before {
  content: "\ef49";
}
.bx-horizontal-right:before {
  content: "\ef4a";
}
.bx-objects-horizontal-center:before {
  content: "\ef4b";
}
.bx-objects-horizontal-left:before {
  content: "\ef4c";
}
.bx-objects-horizontal-right:before {
  content: "\ef4d";
}
.bx-objects-vertical-bottom:before {
  content: "\ef4e";
}
.bx-objects-vertical-center:before {
  content: "\ef4f";
}
.bx-objects-vertical-top:before {
  content: "\ef50";
}
.bx-rfid:before {
  content: "\ef51";
}
.bx-shield-minus:before {
  content: "\ef52";
}
.bx-shield-plus:before {
  content: "\ef53";
}
.bx-shower:before {
  content: "\ef54";
}
.bx-sushi:before {
  content: "\ef55";
}
.bx-universal-access:before {
  content: "\ef56";
}
.bx-vertical-bottom:before {
  content: "\ef57";
}
.bx-vertical-top:before {
  content: "\ef58";
}
.bxl-graphql:before {
  content: "\ef59";
}
.bxl-typescript:before {
  content: "\ef5a";
}
.bxs-color:before {
  content: "\ef39";
}
.bx-reflect-horizontal:before {
  content: "\ef3a";
}
.bx-reflect-vertical:before {
  content: "\ef3b";
}
.bx-color:before {
  content: "\ef3c";
}
.bxl-mongodb:before {
  content: "\ef3d";
}
.bxl-postgresql:before {
  content: "\ef3e";
}
.bxl-deezer:before {
  content: "\ef3f";
}
.bxs-hard-hat:before {
  content: "\ef2a";
}
.bxs-home-alt-2:before {
  content: "\ef2b";
}
.bxs-cheese:before {
  content: "\ef2c";
}
.bx-home-alt-2:before {
  content: "\ef2d";
}
.bx-hard-hat:before {
  content: "\ef2e";
}
.bx-cheese:before {
  content: "\ef2f";
}
.bx-cart-add:before {
  content: "\ef30";
}
.bx-cart-download:before {
  content: "\ef31";
}
.bx-no-signal:before {
  content: "\ef32";
}
.bx-signal-1:before {
  content: "\ef33";
}
.bx-signal-2:before {
  content: "\ef34";
}
.bx-signal-3:before {
  content: "\ef35";
}
.bx-signal-4:before {
  content: "\ef36";
}
.bx-signal-5:before {
  content: "\ef37";
}
.bxl-xing:before {
  content: "\ef38";
}
.bxl-meta:before {
  content: "\ef27";
}
.bx-lemon:before {
  content: "\ef28";
}
.bxs-lemon:before {
  content: "\ef29";
}
.bx-cricket-ball:before {
  content: "\ef0c";
}
.bx-baguette:before {
  content: "\ef0d";
}
.bx-bowl-hot:before {
  content: "\ef0e";
}
.bx-bowl-rice:before {
  content: "\ef0f";
}
.bx-cable-car:before {
  content: "\ef10";
}
.bx-candles:before {
  content: "\ef11";
}
.bx-circle-half:before {
  content: "\ef12";
}
.bx-circle-quarter:before {
  content: "\ef13";
}
.bx-circle-three-quarter:before {
  content: "\ef14";
}
.bx-cross:before {
  content: "\ef15";
}
.bx-fork:before {
  content: "\ef16";
}
.bx-knife:before {
  content: "\ef17";
}
.bx-money-withdraw:before {
  content: "\ef18";
}
.bx-popsicle:before {
  content: "\ef19";
}
.bx-scatter-chart:before {
  content: "\ef1a";
}
.bxs-baguette:before {
  content: "\ef1b";
}
.bxs-bowl-hot:before {
  content: "\ef1c";
}
.bxs-bowl-rice:before {
  content: "\ef1d";
}
.bxs-cable-car:before {
  content: "\ef1e";
}
.bxs-circle-half:before {
  content: "\ef1f";
}
.bxs-circle-quarter:before {
  content: "\ef20";
}
.bxs-circle-three-quarter:before {
  content: "\ef21";
}
.bxs-cricket-ball:before {
  content: "\ef22";
}
.bxs-invader:before {
  content: "\ef23";
}
.bx-male-female:before {
  content: "\ef24";
}
.bxs-popsicle:before {
  content: "\ef25";
}
.bxs-tree-alt:before {
  content: "\ef26";
}
.bxl-venmo:before {
  content: "\e900";
}
.bxl-upwork:before {
  content: "\e901";
}
.bxl-netlify:before {
  content: "\e902";
}
.bxl-java:before {
  content: "\e903";
}
.bxl-heroku:before {
  content: "\e904";
}
.bxl-go-lang:before {
  content: "\e905";
}
.bxl-gmail:before {
  content: "\e906";
}
.bxl-flask:before {
  content: "\e907";
}
.bxl-99designs:before {
  content: "\e908";
}
.bxl-500px:before {
  content: "\e909";
}
.bxl-adobe:before {
  content: "\e90a";
}
.bxl-airbnb:before {
  content: "\e90b";
}
.bxl-algolia:before {
  content: "\e90c";
}
.bxl-amazon:before {
  content: "\e90d";
}
.bxl-android:before {
  content: "\e90e";
}
.bxl-angular:before {
  content: "\e90f";
}
.bxl-apple:before {
  content: "\e910";
}
.bxl-audible:before {
  content: "\e911";
}
.bxl-aws:before {
  content: "\e912";
}
.bxl-baidu:before {
  content: "\e913";
}
.bxl-behance:before {
  content: "\e914";
}
.bxl-bing:before {
  content: "\e915";
}
.bxl-bitcoin:before {
  content: "\e916";
}
.bxl-blender:before {
  content: "\e917";
}
.bxl-blogger:before {
  content: "\e918";
}
.bxl-bootstrap:before {
  content: "\e919";
}
.bxl-chrome:before {
  content: "\e91a";
}
.bxl-codepen:before {
  content: "\e91b";
}
.bxl-c-plus-plus:before {
  content: "\e91c";
}
.bxl-creative-commons:before {
  content: "\e91d";
}
.bxl-css3:before {
  content: "\e91e";
}
.bxl-dailymotion:before {
  content: "\e91f";
}
.bxl-deviantart:before {
  content: "\e920";
}
.bxl-dev-to:before {
  content: "\e921";
}
.bxl-digg:before {
  content: "\e922";
}
.bxl-digitalocean:before {
  content: "\e923";
}
.bxl-discord:before {
  content: "\e924";
}
.bxl-discord-alt:before {
  content: "\e925";
}
.bxl-discourse:before {
  content: "\e926";
}
.bxl-django:before {
  content: "\e927";
}
.bxl-docker:before {
  content: "\e928";
}
.bxl-dribbble:before {
  content: "\e929";
}
.bxl-dropbox:before {
  content: "\e92a";
}
.bxl-drupal:before {
  content: "\e92b";
}
.bxl-ebay:before {
  content: "\e92c";
}
.bxl-edge:before {
  content: "\e92d";
}
.bxl-etsy:before {
  content: "\e92e";
}
.bxl-facebook:before {
  content: "\e92f";
}
.bxl-facebook-circle:before {
  content: "\e930";
}
.bxl-facebook-square:before {
  content: "\e931";
}
.bxl-figma:before {
  content: "\e932";
}
.bxl-firebase:before {
  content: "\e933";
}
.bxl-firefox:before {
  content: "\e934";
}
.bxl-flickr:before {
  content: "\e935";
}
.bxl-flickr-square:before {
  content: "\e936";
}
.bxl-flutter:before {
  content: "\e937";
}
.bxl-foursquare:before {
  content: "\e938";
}
.bxl-git:before {
  content: "\e939";
}
.bxl-github:before {
  content: "\e93a";
}
.bxl-gitlab:before {
  content: "\e93b";
}
.bxl-google:before {
  content: "\e93c";
}
.bxl-google-cloud:before {
  content: "\e93d";
}
.bxl-google-plus:before {
  content: "\e93e";
}
.bxl-google-plus-circle:before {
  content: "\e93f";
}
.bxl-html5:before {
  content: "\e940";
}
.bxl-imdb:before {
  content: "\e941";
}
.bxl-instagram:before {
  content: "\e942";
}
.bxl-instagram-alt:before {
  content: "\e943";
}
.bxl-internet-explorer:before {
  content: "\e944";
}
.bxl-invision:before {
  content: "\e945";
}
.bxl-javascript:before {
  content: "\e946";
}
.bxl-joomla:before {
  content: "\e947";
}
.bxl-jquery:before {
  content: "\e948";
}
.bxl-jsfiddle:before {
  content: "\e949";
}
.bxl-kickstarter:before {
  content: "\e94a";
}
.bxl-kubernetes:before {
  content: "\e94b";
}
.bxl-less:before {
  content: "\e94c";
}
.bxl-linkedin:before {
  content: "\e94d";
}
.bxl-linkedin-square:before {
  content: "\e94e";
}
.bxl-magento:before {
  content: "\e94f";
}
.bxl-mailchimp:before {
  content: "\e950";
}
.bxl-markdown:before {
  content: "\e951";
}
.bxl-mastercard:before {
  content: "\e952";
}
.bxl-mastodon:before {
  content: "\e953";
}
.bxl-medium:before {
  content: "\e954";
}
.bxl-medium-old:before {
  content: "\e955";
}
.bxl-medium-square:before {
  content: "\e956";
}
.bxl-messenger:before {
  content: "\e957";
}
.bxl-microsoft:before {
  content: "\e958";
}
.bxl-microsoft-teams:before {
  content: "\e959";
}
.bxl-nodejs:before {
  content: "\e95a";
}
.bxl-ok-ru:before {
  content: "\e95b";
}
.bxl-opera:before {
  content: "\e95c";
}
.bxl-patreon:before {
  content: "\e95d";
}
.bxl-paypal:before {
  content: "\e95e";
}
.bxl-periscope:before {
  content: "\e95f";
}
.bxl-php:before {
  content: "\e960";
}
.bxl-pinterest:before {
  content: "\e961";
}
.bxl-pinterest-alt:before {
  content: "\e962";
}
.bxl-play-store:before {
  content: "\e963";
}
.bxl-pocket:before {
  content: "\e964";
}
.bxl-product-hunt:before {
  content: "\e965";
}
.bxl-python:before {
  content: "\e966";
}
.bxl-quora:before {
  content: "\e967";
}
.bxl-react:before {
  content: "\e968";
}
.bxl-redbubble:before {
  content: "\e969";
}
.bxl-reddit:before {
  content: "\e96a";
}
.bxl-redux:before {
  content: "\e96b";
}
.bxl-sass:before {
  content: "\e96c";
}
.bxl-shopify:before {
  content: "\e96d";
}
.bxl-sketch:before {
  content: "\e96e";
}
.bxl-skype:before {
  content: "\e96f";
}
.bxl-slack:before {
  content: "\e970";
}
.bxl-slack-old:before {
  content: "\e971";
}
.bxl-snapchat:before {
  content: "\e972";
}
.bxl-soundcloud:before {
  content: "\e973";
}
.bxl-spotify:before {
  content: "\e974";
}
.bxl-spring-boot:before {
  content: "\e975";
}
.bxl-squarespace:before {
  content: "\e976";
}
.bxl-stack-overflow:before {
  content: "\e977";
}
.bxl-steam:before {
  content: "\e978";
}
.bxl-stripe:before {
  content: "\e979";
}
.bxl-tailwind-css:before {
  content: "\e97a";
}
.bxl-telegram:before {
  content: "\e97b";
}
.bxl-tiktok:before {
  content: "\e97c";
}
.bxl-trello:before {
  content: "\e97d";
}
.bxl-trip-advisor:before {
  content: "\e97e";
}
.bxl-tumblr:before {
  content: "\e97f";
}
.bxl-tux:before {
  content: "\e980";
}
.bxl-twitch:before {
  content: "\e981";
}
.bxl-twitter:before {
  content: "\e982";
}
.bxl-unity:before {
  content: "\e983";
}
.bxl-unsplash:before {
  content: "\e984";
}
.bxl-vimeo:before {
  content: "\e985";
}
.bxl-visa:before {
  content: "\e986";
}
.bxl-visual-studio:before {
  content: "\e987";
}
.bxl-vk:before {
  content: "\e988";
}
.bxl-vuejs:before {
  content: "\e989";
}
.bxl-whatsapp:before {
  content: "\e98a";
}
.bxl-whatsapp-square:before {
  content: "\e98b";
}
.bxl-wikipedia:before {
  content: "\e98c";
}
.bxl-windows:before {
  content: "\e98d";
}
.bxl-wix:before {
  content: "\e98e";
}
.bxl-wordpress:before {
  content: "\e98f";
}
.bxl-yahoo:before {
  content: "\e990";
}
.bxl-yelp:before {
  content: "\e991";
}
.bxl-youtube:before {
  content: "\e992";
}
.bxl-zoom:before {
  content: "\e993";
}
.bx-collapse-alt:before {
  content: "\e994";
}
.bx-collapse-horizontal:before {
  content: "\e995";
}
.bx-collapse-vertical:before {
  content: "\e996";
}
.bx-expand-horizontal:before {
  content: "\e997";
}
.bx-expand-vertical:before {
  content: "\e998";
}
.bx-injection:before {
  content: "\e999";
}
.bx-leaf:before {
  content: "\e99a";
}
.bx-math:before {
  content: "\e99b";
}
.bx-party:before {
  content: "\e99c";
}
.bx-abacus:before {
  content: "\e99d";
}
.bx-accessibility:before {
  content: "\e99e";
}
.bx-add-to-queue:before {
  content: "\e99f";
}
.bx-adjust:before {
  content: "\e9a0";
}
.bx-alarm:before {
  content: "\e9a1";
}
.bx-alarm-add:before {
  content: "\e9a2";
}
.bx-alarm-exclamation:before {
  content: "\e9a3";
}
.bx-alarm-off:before {
  content: "\e9a4";
}
.bx-alarm-snooze:before {
  content: "\e9a5";
}
.bx-album:before {
  content: "\e9a6";
}
.bx-align-justify:before {
  content: "\e9a7";
}
.bx-align-left:before {
  content: "\e9a8";
}
.bx-align-middle:before {
  content: "\e9a9";
}
.bx-align-right:before {
  content: "\e9aa";
}
.bx-analyse:before {
  content: "\e9ab";
}
.bx-anchor:before {
  content: "\e9ac";
}
.bx-angry:before {
  content: "\e9ad";
}
.bx-aperture:before {
  content: "\e9ae";
}
.bx-arch:before {
  content: "\e9af";
}
.bx-archive:before {
  content: "\e9b0";
}
.bx-archive-in:before {
  content: "\e9b1";
}
.bx-archive-out:before {
  content: "\e9b2";
}
.bx-area:before {
  content: "\e9b3";
}
.bx-arrow-back:before {
  content: "\e9b4";
}
.bx-arrow-from-bottom:before {
  content: "\e9b5";
}
.bx-arrow-from-left:before {
  content: "\e9b6";
}
.bx-arrow-from-right:before {
  content: "\e9b7";
}
.bx-arrow-from-top:before {
  content: "\e9b8";
}
.bx-arrow-to-bottom:before {
  content: "\e9b9";
}
.bx-arrow-to-left:before {
  content: "\e9ba";
}
.bx-arrow-to-right:before {
  content: "\e9bb";
}
.bx-arrow-to-top:before {
  content: "\e9bc";
}
.bx-at:before {
  content: "\e9bd";
}
.bx-atom:before {
  content: "\e9be";
}
.bx-award:before {
  content: "\e9bf";
}
.bx-badge:before {
  content: "\e9c0";
}
.bx-badge-check:before {
  content: "\e9c1";
}
.bx-ball:before {
  content: "\e9c2";
}
.bx-band-aid:before {
  content: "\e9c3";
}
.bx-bar-chart:before {
  content: "\e9c4";
}
.bx-bar-chart-alt:before {
  content: "\e9c5";
}
.bx-bar-chart-alt-2:before {
  content: "\e9c6";
}
.bx-bar-chart-square:before {
  content: "\e9c7";
}
.bx-barcode:before {
  content: "\e9c8";
}
.bx-barcode-reader:before {
  content: "\e9c9";
}
.bx-baseball:before {
  content: "\e9ca";
}
.bx-basket:before {
  content: "\e9cb";
}
.bx-basketball:before {
  content: "\e9cc";
}
.bx-bath:before {
  content: "\e9cd";
}
.bx-battery:before {
  content: "\e9ce";
}
.bx-bed:before {
  content: "\e9cf";
}
.bx-been-here:before {
  content: "\e9d0";
}
.bx-beer:before {
  content: "\e9d1";
}
.bx-bell:before {
  content: "\e9d2";
}
.bx-bell-minus:before {
  content: "\e9d3";
}
.bx-bell-off:before {
  content: "\e9d4";
}
.bx-bell-plus:before {
  content: "\e9d5";
}
.bx-bible:before {
  content: "\e9d6";
}
.bx-bitcoin:before {
  content: "\e9d7";
}
.bx-blanket:before {
  content: "\e9d8";
}
.bx-block:before {
  content: "\e9d9";
}
.bx-bluetooth:before {
  content: "\e9da";
}
.bx-body:before {
  content: "\e9db";
}
.bx-bold:before {
  content: "\e9dc";
}
.bx-bolt-circle:before {
  content: "\e9dd";
}
.bx-bomb:before {
  content: "\e9de";
}
.bx-bone:before {
  content: "\e9df";
}
.bx-bong:before {
  content: "\e9e0";
}
.bx-book:before {
  content: "\e9e1";
}
.bx-book-add:before {
  content: "\e9e2";
}
.bx-book-alt:before {
  content: "\e9e3";
}
.bx-book-bookmark:before {
  content: "\e9e4";
}
.bx-book-content:before {
  content: "\e9e5";
}
.bx-book-heart:before {
  content: "\e9e6";
}
.bx-bookmark:before {
  content: "\e9e7";
}
.bx-bookmark-alt:before {
  content: "\e9e8";
}
.bx-bookmark-alt-minus:before {
  content: "\e9e9";
}
.bx-bookmark-alt-plus:before {
  content: "\e9ea";
}
.bx-bookmark-heart:before {
  content: "\e9eb";
}
.bx-bookmark-minus:before {
  content: "\e9ec";
}
.bx-bookmark-plus:before {
  content: "\e9ed";
}
.bx-bookmarks:before {
  content: "\e9ee";
}
.bx-book-open:before {
  content: "\e9ef";
}
.bx-book-reader:before {
  content: "\e9f0";
}
.bx-border-all:before {
  content: "\e9f1";
}
.bx-border-bottom:before {
  content: "\e9f2";
}
.bx-border-inner:before {
  content: "\e9f3";
}
.bx-border-left:before {
  content: "\e9f4";
}
.bx-border-none:before {
  content: "\e9f5";
}
.bx-border-outer:before {
  content: "\e9f6";
}
.bx-border-radius:before {
  content: "\e9f7";
}
.bx-border-right:before {
  content: "\e9f8";
}
.bx-border-top:before {
  content: "\e9f9";
}
.bx-bot:before {
  content: "\e9fa";
}
.bx-bowling-ball:before {
  content: "\e9fb";
}
.bx-box:before {
  content: "\e9fc";
}
.bx-bracket:before {
  content: "\e9fd";
}
.bx-braille:before {
  content: "\e9fe";
}
.bx-brain:before {
  content: "\e9ff";
}
.bx-briefcase:before {
  content: "\ea00";
}
.bx-briefcase-alt:before {
  content: "\ea01";
}
.bx-briefcase-alt-2:before {
  content: "\ea02";
}
.bx-brightness:before {
  content: "\ea03";
}
.bx-brightness-half:before {
  content: "\ea04";
}
.bx-broadcast:before {
  content: "\ea05";
}
.bx-brush:before {
  content: "\ea06";
}
.bx-brush-alt:before {
  content: "\ea07";
}
.bx-bug:before {
  content: "\ea08";
}
.bx-bug-alt:before {
  content: "\ea09";
}
.bx-building:before {
  content: "\ea0a";
}
.bx-building-house:before {
  content: "\ea0b";
}
.bx-buildings:before {
  content: "\ea0c";
}
.bx-bulb:before {
  content: "\ea0d";
}
.bx-bullseye:before {
  content: "\ea0e";
}
.bx-buoy:before {
  content: "\ea0f";
}
.bx-bus:before {
  content: "\ea10";
}
.bx-bus-school:before {
  content: "\ea11";
}
.bx-cabinet:before {
  content: "\ea12";
}
.bx-cake:before {
  content: "\ea13";
}
.bx-calculator:before {
  content: "\ea14";
}
.bx-calendar:before {
  content: "\ea15";
}
.bx-calendar-alt:before {
  content: "\ea16";
}
.bx-calendar-check:before {
  content: "\ea17";
}
.bx-calendar-edit:before {
  content: "\ea18";
}
.bx-calendar-event:before {
  content: "\ea19";
}
.bx-calendar-exclamation:before {
  content: "\ea1a";
}
.bx-calendar-heart:before {
  content: "\ea1b";
}
.bx-calendar-minus:before {
  content: "\ea1c";
}
.bx-calendar-plus:before {
  content: "\ea1d";
}
.bx-calendar-star:before {
  content: "\ea1e";
}
.bx-calendar-week:before {
  content: "\ea1f";
}
.bx-calendar-x:before {
  content: "\ea20";
}
.bx-camera:before {
  content: "\ea21";
}
.bx-camera-home:before {
  content: "\ea22";
}
.bx-camera-movie:before {
  content: "\ea23";
}
.bx-camera-off:before {
  content: "\ea24";
}
.bx-capsule:before {
  content: "\ea25";
}
.bx-captions:before {
  content: "\ea26";
}
.bx-car:before {
  content: "\ea27";
}
.bx-card:before {
  content: "\ea28";
}
.bx-caret-down:before {
  content: "\ea29";
}
.bx-caret-down-circle:before {
  content: "\ea2a";
}
.bx-caret-down-square:before {
  content: "\ea2b";
}
.bx-caret-left:before {
  content: "\ea2c";
}
.bx-caret-left-circle:before {
  content: "\ea2d";
}
.bx-caret-left-square:before {
  content: "\ea2e";
}
.bx-caret-right:before {
  content: "\ea2f";
}
.bx-caret-right-circle:before {
  content: "\ea30";
}
.bx-caret-right-square:before {
  content: "\ea31";
}
.bx-caret-up:before {
  content: "\ea32";
}
.bx-caret-up-circle:before {
  content: "\ea33";
}
.bx-caret-up-square:before {
  content: "\ea34";
}
.bx-carousel:before {
  content: "\ea35";
}
.bx-cart:before {
  content: "\ea36";
}
.bx-cart-alt:before {
  content: "\ea37";
}
.bx-cast:before {
  content: "\ea38";
}
.bx-category:before {
  content: "\ea39";
}
.bx-category-alt:before {
  content: "\ea3a";
}
.bx-cctv:before {
  content: "\ea3b";
}
.bx-certification:before {
  content: "\ea3c";
}
.bx-chair:before {
  content: "\ea3d";
}
.bx-chalkboard:before {
  content: "\ea3e";
}
.bx-chart:before {
  content: "\ea3f";
}
.bx-chat:before {
  content: "\ea40";
}
.bx-check:before {
  content: "\ea41";
}
.bx-checkbox:before {
  content: "\ea42";
}
.bx-checkbox-checked:before {
  content: "\ea43";
}
.bx-checkbox-minus:before {
  content: "\ea44";
}
.bx-checkbox-square:before {
  content: "\ea45";
}
.bx-check-circle:before {
  content: "\ea46";
}
.bx-check-double:before {
  content: "\ea47";
}
.bx-check-shield:before {
  content: "\ea48";
}
.bx-check-square:before {
  content: "\ea49";
}
.bx-chevron-down:before {
  content: "\ea4a";
}
.bx-chevron-down-circle:before {
  content: "\ea4b";
}
.bx-chevron-down-square:before {
  content: "\ea4c";
}
.bx-chevron-left:before {
  content: "\ea4d";
}
.bx-chevron-left-circle:before {
  content: "\ea4e";
}
.bx-chevron-left-square:before {
  content: "\ea4f";
}
.bx-chevron-right:before {
  content: "\ea50";
}
.bx-chevron-right-circle:before {
  content: "\ea51";
}
.bx-chevron-right-square:before {
  content: "\ea52";
}
.bx-chevrons-down:before {
  content: "\ea53";
}
.bx-chevrons-left:before {
  content: "\ea54";
}
.bx-chevrons-right:before {
  content: "\ea55";
}
.bx-chevrons-up:before {
  content: "\ea56";
}
.bx-chevron-up:before {
  content: "\ea57";
}
.bx-chevron-up-circle:before {
  content: "\ea58";
}
.bx-chevron-up-square:before {
  content: "\ea59";
}
.bx-chip:before {
  content: "\ea5a";
}
.bx-church:before {
  content: "\ea5b";
}
.bx-circle:before {
  content: "\ea5c";
}
.bx-clinic:before {
  content: "\ea5d";
}
.bx-clipboard:before {
  content: "\ea5e";
}
.bx-closet:before {
  content: "\ea5f";
}
.bx-cloud:before {
  content: "\ea60";
}
.bx-cloud-download:before {
  content: "\ea61";
}
.bx-cloud-drizzle:before {
  content: "\ea62";
}
.bx-cloud-lightning:before {
  content: "\ea63";
}
.bx-cloud-light-rain:before {
  content: "\ea64";
}
.bx-cloud-rain:before {
  content: "\ea65";
}
.bx-cloud-snow:before {
  content: "\ea66";
}
.bx-cloud-upload:before {
  content: "\ea67";
}
.bx-code:before {
  content: "\ea68";
}
.bx-code-alt:before {
  content: "\ea69";
}
.bx-code-block:before {
  content: "\ea6a";
}
.bx-code-curly:before {
  content: "\ea6b";
}
.bx-coffee:before {
  content: "\ea6c";
}
.bx-coffee-togo:before {
  content: "\ea6d";
}
.bx-cog:before {
  content: "\ea6e";
}
.bx-coin:before {
  content: "\ea6f";
}
.bx-coin-stack:before {
  content: "\ea70";
}
.bx-collapse:before {
  content: "\ea71";
}
.bx-collection:before {
  content: "\ea72";
}
.bx-color-fill:before {
  content: "\ea73";
}
.bx-columns:before {
  content: "\ea74";
}
.bx-command:before {
  content: "\ea75";
}
.bx-comment:before {
  content: "\ea76";
}
.bx-comment-add:before {
  content: "\ea77";
}
.bx-comment-check:before {
  content: "\ea78";
}
.bx-comment-detail:before {
  content: "\ea79";
}
.bx-comment-dots:before {
  content: "\ea7a";
}
.bx-comment-edit:before {
  content: "\ea7b";
}
.bx-comment-error:before {
  content: "\ea7c";
}
.bx-comment-minus:before {
  content: "\ea7d";
}
.bx-comment-x:before {
  content: "\ea7e";
}
.bx-compass:before {
  content: "\ea7f";
}
.bx-confused:before {
  content: "\ea80";
}
.bx-conversation:before {
  content: "\ea81";
}
.bx-cookie:before {
  content: "\ea82";
}
.bx-cool:before {
  content: "\ea83";
}
.bx-copy:before {
  content: "\ea84";
}
.bx-copy-alt:before {
  content: "\ea85";
}
.bx-copyright:before {
  content: "\ea86";
}
.bx-credit-card:before {
  content: "\ea87";
}
.bx-credit-card-alt:before {
  content: "\ea88";
}
.bx-credit-card-front:before {
  content: "\ea89";
}
.bx-crop:before {
  content: "\ea8a";
}
.bx-crosshair:before {
  content: "\ea8b";
}
.bx-crown:before {
  content: "\ea8c";
}
.bx-cube:before {
  content: "\ea8d";
}
.bx-cube-alt:before {
  content: "\ea8e";
}
.bx-cuboid:before {
  content: "\ea8f";
}
.bx-current-location:before {
  content: "\ea90";
}
.bx-customize:before {
  content: "\ea91";
}
.bx-cut:before {
  content: "\ea92";
}
.bx-cycling:before {
  content: "\ea93";
}
.bx-cylinder:before {
  content: "\ea94";
}
.bx-data:before {
  content: "\ea95";
}
.bx-desktop:before {
  content: "\ea96";
}
.bx-detail:before {
  content: "\ea97";
}
.bx-devices:before {
  content: "\ea98";
}
.bx-dialpad:before {
  content: "\ea99";
}
.bx-dialpad-alt:before {
  content: "\ea9a";
}
.bx-diamond:before {
  content: "\ea9b";
}
.bx-dice-1:before {
  content: "\ea9c";
}
.bx-dice-2:before {
  content: "\ea9d";
}
.bx-dice-3:before {
  content: "\ea9e";
}
.bx-dice-4:before {
  content: "\ea9f";
}
.bx-dice-5:before {
  content: "\eaa0";
}
.bx-dice-6:before {
  content: "\eaa1";
}
.bx-directions:before {
  content: "\eaa2";
}
.bx-disc:before {
  content: "\eaa3";
}
.bx-dish:before {
  content: "\eaa4";
}
.bx-dislike:before {
  content: "\eaa5";
}
.bx-dizzy:before {
  content: "\eaa6";
}
.bx-dna:before {
  content: "\eaa7";
}
.bx-dock-bottom:before {
  content: "\eaa8";
}
.bx-dock-left:before {
  content: "\eaa9";
}
.bx-dock-right:before {
  content: "\eaaa";
}
.bx-dock-top:before {
  content: "\eaab";
}
.bx-dollar:before {
  content: "\eaac";
}
.bx-dollar-circle:before {
  content: "\eaad";
}
.bx-donate-blood:before {
  content: "\eaae";
}
.bx-donate-heart:before {
  content: "\eaaf";
}
.bx-door-open:before {
  content: "\eab0";
}
.bx-dots-horizontal:before {
  content: "\eab1";
}
.bx-dots-horizontal-rounded:before {
  content: "\eab2";
}
.bx-dots-vertical:before {
  content: "\eab3";
}
.bx-dots-vertical-rounded:before {
  content: "\eab4";
}
.bx-doughnut-chart:before {
  content: "\eab5";
}
.bx-down-arrow:before {
  content: "\eab6";
}
.bx-down-arrow-alt:before {
  content: "\eab7";
}
.bx-down-arrow-circle:before {
  content: "\eab8";
}
.bx-download:before {
  content: "\eab9";
}
.bx-downvote:before {
  content: "\eaba";
}
.bx-drink:before {
  content: "\eabb";
}
.bx-droplet:before {
  content: "\eabc";
}
.bx-dumbbell:before {
  content: "\eabd";
}
.bx-duplicate:before {
  content: "\eabe";
}
.bx-edit:before {
  content: "\eabf";
}
.bx-edit-alt:before {
  content: "\eac0";
}
.bx-envelope:before {
  content: "\eac1";
}
.bx-envelope-open:before {
  content: "\eac2";
}
.bx-equalizer:before {
  content: "\eac3";
}
.bx-eraser:before {
  content: "\eac4";
}
.bx-error:before {
  content: "\eac5";
}
.bx-error-alt:before {
  content: "\eac6";
}
.bx-error-circle:before {
  content: "\eac7";
}
.bx-euro:before {
  content: "\eac8";
}
.bx-exclude:before {
  content: "\eac9";
}
.bx-exit:before {
  content: "\eaca";
}
.bx-exit-fullscreen:before {
  content: "\eacb";
}
.bx-expand:before {
  content: "\eacc";
}
.bx-expand-alt:before {
  content: "\eacd";
}
.bx-export:before {
  content: "\eace";
}
.bx-extension:before {
  content: "\eacf";
}
.bx-face:before {
  content: "\ead0";
}
.bx-fast-forward:before {
  content: "\ead1";
}
.bx-fast-forward-circle:before {
  content: "\ead2";
}
.bx-female:before {
  content: "\ead3";
}
.bx-female-sign:before {
  content: "\ead4";
}
.bx-file:before {
  content: "\ead5";
}
.bx-file-blank:before {
  content: "\ead6";
}
.bx-file-find:before {
  content: "\ead7";
}
.bx-film:before {
  content: "\ead8";
}
.bx-filter:before {
  content: "\ead9";
}
.bx-filter-alt:before {
  content: "\eada";
}
.bx-fingerprint:before {
  content: "\eadb";
}
.bx-first-aid:before {
  content: "\eadc";
}
.bx-first-page:before {
  content: "\eadd";
}
.bx-flag:before {
  content: "\eade";
}
.bx-folder:before {
  content: "\eadf";
}
.bx-folder-minus:before {
  content: "\eae0";
}
.bx-folder-open:before {
  content: "\eae1";
}
.bx-folder-plus:before {
  content: "\eae2";
}
.bx-font:before {
  content: "\eae3";
}
.bx-font-color:before {
  content: "\eae4";
}
.bx-font-family:before {
  content: "\eae5";
}
.bx-font-size:before {
  content: "\eae6";
}
.bx-food-menu:before {
  content: "\eae7";
}
.bx-food-tag:before {
  content: "\eae8";
}
.bx-football:before {
  content: "\eae9";
}
.bx-fridge:before {
  content: "\eaea";
}
.bx-fullscreen:before {
  content: "\eaeb";
}
.bx-game:before {
  content: "\eaec";
}
.bx-gas-pump:before {
  content: "\eaed";
}
.bx-ghost:before {
  content: "\eaee";
}
.bx-gift:before {
  content: "\eaef";
}
.bx-git-branch:before {
  content: "\eaf0";
}
.bx-git-commit:before {
  content: "\eaf1";
}
.bx-git-compare:before {
  content: "\eaf2";
}
.bx-git-merge:before {
  content: "\eaf3";
}
.bx-git-pull-request:before {
  content: "\eaf4";
}
.bx-git-repo-forked:before {
  content: "\eaf5";
}
.bx-glasses:before {
  content: "\eaf6";
}
.bx-glasses-alt:before {
  content: "\eaf7";
}
.bx-globe:before {
  content: "\eaf8";
}
.bx-globe-alt:before {
  content: "\eaf9";
}
.bx-grid:before {
  content: "\eafa";
}
.bx-grid-alt:before {
  content: "\eafb";
}
.bx-grid-horizontal:before {
  content: "\eafc";
}
.bx-grid-small:before {
  content: "\eafd";
}
.bx-grid-vertical:before {
  content: "\eafe";
}
.bx-group:before {
  content: "\eaff";
}
.bx-handicap:before {
  content: "\eb00";
}
.bx-happy:before {
  content: "\eb01";
}
.bx-happy-alt:before {
  content: "\eb02";
}
.bx-happy-beaming:before {
  content: "\eb03";
}
.bx-happy-heart-eyes:before {
  content: "\eb04";
}
.bx-hash:before {
  content: "\eb05";
}
.bx-hdd:before {
  content: "\eb06";
}
.bx-heading:before {
  content: "\eb07";
}
.bx-headphone:before {
  content: "\eb08";
}
.bx-health:before {
  content: "\eb09";
}
.bx-heart:before {
  content: "\eb0a";
}
.bx-heart-circle:before {
  content: "\eb0b";
}
.bx-heart-square:before {
  content: "\eb0c";
}
.bx-help-circle:before {
  content: "\eb0d";
}
.bx-hide:before {
  content: "\eb0e";
}
.bx-highlight:before {
  content: "\eb0f";
}
.bx-history:before {
  content: "\eb10";
}
.bx-hive:before {
  content: "\eb11";
}
.bx-home:before {
  content: "\eb12";
}
.bx-home-alt:before {
  content: "\eb13";
}
.bx-home-circle:before {
  content: "\eb14";
}
.bx-home-heart:before {
  content: "\eb15";
}
.bx-home-smile:before {
  content: "\eb16";
}
.bx-horizontal-center:before {
  content: "\eb17";
}
.bx-hotel:before {
  content: "\eb18";
}
.bx-hourglass:before {
  content: "\eb19";
}
.bx-id-card:before {
  content: "\eb1a";
}
.bx-image:before {
  content: "\eb1b";
}
.bx-image-add:before {
  content: "\eb1c";
}
.bx-image-alt:before {
  content: "\eb1d";
}
.bx-images:before {
  content: "\eb1e";
}
.bx-import:before {
  content: "\eb1f";
}
.bx-infinite:before {
  content: "\eb20";
}
.bx-info-circle:before {
  content: "\eb21";
}
.bx-info-square:before {
  content: "\eb22";
}
.bx-intersect:before {
  content: "\eb23";
}
.bx-italic:before {
  content: "\eb24";
}
.bx-joystick:before {
  content: "\eb25";
}
.bx-joystick-alt:before {
  content: "\eb26";
}
.bx-joystick-button:before {
  content: "\eb27";
}
.bx-key:before {
  content: "\eb28";
}
.bx-label:before {
  content: "\eb29";
}
.bx-landscape:before {
  content: "\eb2a";
}
.bx-laptop:before {
  content: "\eb2b";
}
.bx-last-page:before {
  content: "\eb2c";
}
.bx-laugh:before {
  content: "\eb2d";
}
.bx-layer:before {
  content: "\eb2e";
}
.bx-layer-minus:before {
  content: "\eb2f";
}
.bx-layer-plus:before {
  content: "\eb30";
}
.bx-layout:before {
  content: "\eb31";
}
.bx-left-arrow:before {
  content: "\eb32";
}
.bx-left-arrow-alt:before {
  content: "\eb33";
}
.bx-left-arrow-circle:before {
  content: "\eb34";
}
.bx-left-down-arrow-circle:before {
  content: "\eb35";
}
.bx-left-indent:before {
  content: "\eb36";
}
.bx-left-top-arrow-circle:before {
  content: "\eb37";
}
.bx-library:before {
  content: "\eb38";
}
.bx-like:before {
  content: "\eb39";
}
.bx-line-chart:before {
  content: "\eb3a";
}
.bx-line-chart-down:before {
  content: "\eb3b";
}
.bx-link:before {
  content: "\eb3c";
}
.bx-link-alt:before {
  content: "\eb3d";
}
.bx-link-external:before {
  content: "\eb3e";
}
.bx-lira:before {
  content: "\eb3f";
}
.bx-list-check:before {
  content: "\eb40";
}
.bx-list-minus:before {
  content: "\eb41";
}
.bx-list-ol:before {
  content: "\eb42";
}
.bx-list-plus:before {
  content: "\eb43";
}
.bx-list-ul:before {
  content: "\eb44";
}
.bx-loader:before {
  content: "\eb45";
}
.bx-loader-alt:before {
  content: "\eb46";
}
.bx-loader-circle:before {
  content: "\eb47";
}
.bx-location-plus:before {
  content: "\eb48";
}
.bx-lock:before {
  content: "\eb49";
}
.bx-lock-alt:before {
  content: "\eb4a";
}
.bx-lock-open:before {
  content: "\eb4b";
}
.bx-lock-open-alt:before {
  content: "\eb4c";
}
.bx-log-in:before {
  content: "\eb4d";
}
.bx-log-in-circle:before {
  content: "\eb4e";
}
.bx-log-out:before {
  content: "\eb4f";
}
.bx-log-out-circle:before {
  content: "\eb50";
}
.bx-low-vision:before {
  content: "\eb51";
}
.bx-magnet:before {
  content: "\eb52";
}
.bx-mail-send:before {
  content: "\eb53";
}
.bx-male:before {
  content: "\eb54";
}
.bx-male-sign:before {
  content: "\eb55";
}
.bx-map:before {
  content: "\eb56";
}
.bx-map-alt:before {
  content: "\eb57";
}
.bx-map-pin:before {
  content: "\eb58";
}
.bx-mask:before {
  content: "\eb59";
}
.bx-medal:before {
  content: "\eb5a";
}
.bx-meh:before {
  content: "\eb5b";
}
.bx-meh-alt:before {
  content: "\eb5c";
}
.bx-meh-blank:before {
  content: "\eb5d";
}
.bx-memory-card:before {
  content: "\eb5e";
}
.bx-menu:before {
  content: "\eb5f";
}
.bx-menu-alt-left:before {
  content: "\ef5b";
}
.bx-menu-alt-right:before {
  content: "\eb61";
}
.bx-merge:before {
  content: "\eb62";
}
.bx-message:before {
  content: "\eb63";
}
.bx-message-add:before {
  content: "\eb64";
}
.bx-message-alt:before {
  content: "\eb65";
}
.bx-message-alt-add:before {
  content: "\eb66";
}
.bx-message-alt-check:before {
  content: "\eb67";
}
.bx-message-alt-detail:before {
  content: "\eb68";
}
.bx-message-alt-dots:before {
  content: "\eb69";
}
.bx-message-alt-edit:before {
  content: "\eb6a";
}
.bx-message-alt-error:before {
  content: "\eb6b";
}
.bx-message-alt-minus:before {
  content: "\eb6c";
}
.bx-message-alt-x:before {
  content: "\eb6d";
}
.bx-message-check:before {
  content: "\eb6e";
}
.bx-message-detail:before {
  content: "\eb6f";
}
.bx-message-dots:before {
  content: "\eb70";
}
.bx-message-edit:before {
  content: "\eb71";
}
.bx-message-error:before {
  content: "\eb72";
}
.bx-message-minus:before {
  content: "\eb73";
}
.bx-message-rounded:before {
  content: "\eb74";
}
.bx-message-rounded-add:before {
  content: "\eb75";
}
.bx-message-rounded-check:before {
  content: "\eb76";
}
.bx-message-rounded-detail:before {
  content: "\eb77";
}
.bx-message-rounded-dots:before {
  content: "\eb78";
}
.bx-message-rounded-edit:before {
  content: "\ef5c";
}
.bx-message-rounded-error:before {
  content: "\eb7a";
}
.bx-message-rounded-minus:before {
  content: "\eb7b";
}
.bx-message-rounded-x:before {
  content: "\eb7c";
}
.bx-message-square:before {
  content: "\eb7d";
}
.bx-message-square-add:before {
  content: "\eb7e";
}
.bx-message-square-check:before {
  content: "\eb7f";
}
.bx-message-square-detail:before {
  content: "\eb80";
}
.bx-message-square-dots:before {
  content: "\eb81";
}
.bx-message-square-edit:before {
  content: "\eb82";
}
.bx-message-square-error:before {
  content: "\eb83";
}
.bx-message-square-minus:before {
  content: "\eb84";
}
.bx-message-square-x:before {
  content: "\eb85";
}
.bx-message-x:before {
  content: "\eb86";
}
.bx-meteor:before {
  content: "\eb87";
}
.bx-microchip:before {
  content: "\eb88";
}
.bx-microphone:before {
  content: "\eb89";
}
.bx-microphone-off:before {
  content: "\eb8a";
}
.bx-minus:before {
  content: "\eb8b";
}
.bx-minus-back:before {
  content: "\eb8c";
}
.bx-minus-circle:before {
  content: "\eb8d";
}
.bx-minus-front:before {
  content: "\eb8e";
}
.bx-mobile:before {
  content: "\eb8f";
}
.bx-mobile-alt:before {
  content: "\eb90";
}
.bx-mobile-landscape:before {
  content: "\eb91";
}
.bx-mobile-vibration:before {
  content: "\ef5d";
}
.bx-money:before {
  content: "\eb93";
}
.bx-moon:before {
  content: "\eb94";
}
.bx-mouse:before {
  content: "\eb95";
}
.bx-mouse-alt:before {
  content: "\eb96";
}
.bx-move:before {
  content: "\eb97";
}
.bx-move-horizontal:before {
  content: "\eb98";
}
.bx-move-vertical:before {
  content: "\eb99";
}
.bx-movie:before {
  content: "\eb9a";
}
.bx-movie-play:before {
  content: "\eb9b";
}
.bx-music:before {
  content: "\eb9c";
}
.bx-navigation:before {
  content: "\eb9d";
}
.bx-network-chart:before {
  content: "\eb9e";
}
.bx-news:before {
  content: "\eb9f";
}
.bx-no-entry:before {
  content: "\eba0";
}
.bx-note:before {
  content: "\eba1";
}
.bx-notepad:before {
  content: "\eba2";
}
.bx-notification:before {
  content: "\eba3";
}
.bx-notification-off:before {
  content: "\eba4";
}
.bx-outline:before {
  content: "\eba5";
}
.bx-package:before {
  content: "\eba6";
}
.bx-paint:before {
  content: "\eba7";
}
.bx-paint-roll:before {
  content: "\eba8";
}
.bx-palette:before {
  content: "\eba9";
}
.bx-paperclip:before {
  content: "\ebaa";
}
.bx-paper-plane:before {
  content: "\ef61";
}
.bx-paragraph:before {
  content: "\ebac";
}
.bx-paste:before {
  content: "\ebad";
}
.bx-pause:before {
  content: "\ebae";
}
.bx-pause-circle:before {
  content: "\ebaf";
}
.bx-pen:before {
  content: "\ebb0";
}
.bx-pencil:before {
  content: "\ebb1";
}
.bx-phone:before {
  content: "\ebb2";
}
.bx-phone-call:before {
  content: "\ebb3";
}
.bx-phone-incoming:before {
  content: "\ebb4";
}
.bx-phone-off:before {
  content: "\ebb5";
}
.bx-phone-outgoing:before {
  content: "\ebb6";
}
.bx-photo-album:before {
  content: "\ebb7";
}
.bx-pie-chart:before {
  content: "\ebb8";
}
.bx-pie-chart-alt:before {
  content: "\ebb9";
}
.bx-pie-chart-alt-2:before {
  content: "\ebba";
}
.bx-pin:before {
  content: "\ebbb";
}
.bx-planet:before {
  content: "\ebbc";
}
.bx-play:before {
  content: "\ebbd";
}
.bx-play-circle:before {
  content: "\ebbe";
}
.bx-plug:before {
  content: "\ebbf";
}
.bx-plus:before {
  content: "\ebc0";
}
.bx-plus-circle:before {
  content: "\ebc1";
}
.bx-plus-medical:before {
  content: "\ebc2";
}
.bx-podcast:before {
  content: "\ebc3";
}
.bx-pointer:before {
  content: "\ef5e";
}
.bx-poll:before {
  content: "\ebc5";
}
.bx-polygon:before {
  content: "\ebc6";
}
.bx-pound:before {
  content: "\ebc7";
}
.bx-power-off:before {
  content: "\ebc8";
}
.bx-printer:before {
  content: "\ebc9";
}
.bx-pulse:before {
  content: "\ebca";
}
.bx-purchase-tag:before {
  content: "\ebcb";
}
.bx-purchase-tag-alt:before {
  content: "\ebcc";
}
.bx-pyramid:before {
  content: "\ebcd";
}
.bx-qr:before {
  content: "\ebce";
}
.bx-qr-scan:before {
  content: "\ebcf";
}
.bx-question-mark:before {
  content: "\ebd0";
}
.bx-radar:before {
  content: "\ebd1";
}
.bx-radio:before {
  content: "\ebd2";
}
.bx-radio-circle:before {
  content: "\ebd3";
}
.bx-radio-circle-marked:before {
  content: "\ebd4";
}
.bx-receipt:before {
  content: "\ebd5";
}
.bx-rectangle:before {
  content: "\ebd6";
}
.bx-recycle:before {
  content: "\ebd7";
}
.bx-redo:before {
  content: "\ebd8";
}
.bx-refresh:before {
  content: "\ebd9";
}
.bx-registered:before {
  content: "\ebda";
}
.bx-rename:before {
  content: "\ebdb";
}
.bx-repeat:before {
  content: "\ebdc";
}
.bx-reply:before {
  content: "\ef5f";
}
.bx-reply-all:before {
  content: "\ebde";
}
.bx-repost:before {
  content: "\ebdf";
}
.bx-reset:before {
  content: "\ebe0";
}
.bx-restaurant:before {
  content: "\ebe1";
}
.bx-revision:before {
  content: "\ebe2";
}
.bx-rewind:before {
  content: "\ebe3";
}
.bx-rewind-circle:before {
  content: "\ebe4";
}
.bx-right-arrow:before {
  content: "\ebe5";
}
.bx-right-arrow-alt:before {
  content: "\ebe6";
}
.bx-right-arrow-circle:before {
  content: "\ebe7";
}
.bx-right-down-arrow-circle:before {
  content: "\ebe8";
}
.bx-right-indent:before {
  content: "\ebe9";
}
.bx-right-top-arrow-circle:before {
  content: "\ebea";
}
.bx-rocket:before {
  content: "\ebeb";
}
.bx-rotate-left:before {
  content: "\ebec";
}
.bx-rotate-right:before {
  content: "\ebed";
}
.bx-rss:before {
  content: "\ebee";
}
.bx-ruble:before {
  content: "\ebef";
}
.bx-ruler:before {
  content: "\ebf0";
}
.bx-run:before {
  content: "\ebf1";
}
.bx-rupee:before {
  content: "\ebf2";
}
.bx-sad:before {
  content: "\ebf3";
}
.bx-save:before {
  content: "\ebf4";
}
.bx-scan:before {
  content: "\ebf5";
}
.bx-screenshot:before {
  content: "\ef60";
}
.bx-search:before {
  content: "\ebf7";
}
.bx-search-alt:before {
  content: "\ebf8";
}
.bx-search-alt-2:before {
  content: "\ebf9";
}
.bx-selection:before {
  content: "\ebfa";
}
.bx-select-multiple:before {
  content: "\ebfb";
}
.bx-send:before {
  content: "\ebfc";
}
.bx-server:before {
  content: "\ebfd";
}
.bx-shape-circle:before {
  content: "\ebfe";
}
.bx-shape-polygon:before {
  content: "\ebff";
}
.bx-shape-square:before {
  content: "\ec00";
}
.bx-shape-triangle:before {
  content: "\ec01";
}
.bx-share:before {
  content: "\ec02";
}
.bx-share-alt:before {
  content: "\ec03";
}
.bx-shekel:before {
  content: "\ec04";
}
.bx-shield:before {
  content: "\ec05";
}
.bx-shield-alt:before {
  content: "\ec06";
}
.bx-shield-alt-2:before {
  content: "\ec07";
}
.bx-shield-quarter:before {
  content: "\ec08";
}
.bx-shield-x:before {
  content: "\ec09";
}
.bx-shocked:before {
  content: "\ec0a";
}
.bx-shopping-bag:before {
  content: "\ec0b";
}
.bx-show:before {
  content: "\ec0c";
}
.bx-show-alt:before {
  content: "\ec0d";
}
.bx-shuffle:before {
  content: "\ec0e";
}
.bx-sidebar:before {
  content: "\ec0f";
}
.bx-sitemap:before {
  content: "\ec10";
}
.bx-skip-next:before {
  content: "\ec11";
}
.bx-skip-next-circle:before {
  content: "\ec12";
}
.bx-skip-previous:before {
  content: "\ec13";
}
.bx-skip-previous-circle:before {
  content: "\ec14";
}
.bx-sleepy:before {
  content: "\ec15";
}
.bx-slider:before {
  content: "\ec16";
}
.bx-slider-alt:before {
  content: "\ec17";
}
.bx-slideshow:before {
  content: "\ec18";
}
.bx-smile:before {
  content: "\ec19";
}
.bx-sort:before {
  content: "\ec1a";
}
.bx-sort-alt-2:before {
  content: "\ec1b";
}
.bx-sort-a-z:before {
  content: "\ec1c";
}
.bx-sort-down:before {
  content: "\ec1d";
}
.bx-sort-up:before {
  content: "\ec1e";
}
.bx-sort-z-a:before {
  content: "\ec1f";
}
.bx-spa:before {
  content: "\ec20";
}
.bx-space-bar:before {
  content: "\ec21";
}
.bx-speaker:before {
  content: "\ec22";
}
.bx-spray-can:before {
  content: "\ec23";
}
.bx-spreadsheet:before {
  content: "\ec24";
}
.bx-square:before {
  content: "\ec25";
}
.bx-square-rounded:before {
  content: "\ec26";
}
.bx-star:before {
  content: "\ec27";
}
.bx-station:before {
  content: "\ec28";
}
.bx-stats:before {
  content: "\ec29";
}
.bx-sticker:before {
  content: "\ec2a";
}
.bx-stop:before {
  content: "\ec2b";
}
.bx-stop-circle:before {
  content: "\ec2c";
}
.bx-stopwatch:before {
  content: "\ec2d";
}
.bx-store:before {
  content: "\ec2e";
}
.bx-store-alt:before {
  content: "\ec2f";
}
.bx-street-view:before {
  content: "\ec30";
}
.bx-strikethrough:before {
  content: "\ec31";
}
.bx-subdirectory-left:before {
  content: "\ec32";
}
.bx-subdirectory-right:before {
  content: "\ec33";
}
.bx-sun:before {
  content: "\ec34";
}
.bx-support:before {
  content: "\ec35";
}
.bx-swim:before {
  content: "\ec36";
}
.bx-sync:before {
  content: "\ec37";
}
.bx-tab:before {
  content: "\ec38";
}
.bx-table:before {
  content: "\ec39";
}
.bx-tachometer:before {
  content: "\ec3a";
}
.bx-tag:before {
  content: "\ec3b";
}
.bx-tag-alt:before {
  content: "\ec3c";
}
.bx-target-lock:before {
  content: "\ec3d";
}
.bx-task:before {
  content: "\ec3e";
}
.bx-task-x:before {
  content: "\ec3f";
}
.bx-taxi:before {
  content: "\ec40";
}
.bx-tennis-ball:before {
  content: "\ec41";
}
.bx-terminal:before {
  content: "\ec42";
}
.bx-test-tube:before {
  content: "\ec43";
}
.bx-text:before {
  content: "\ec44";
}
.bx-time:before {
  content: "\ec45";
}
.bx-time-five:before {
  content: "\ec46";
}
.bx-timer:before {
  content: "\ec47";
}
.bx-tired:before {
  content: "\ec48";
}
.bx-toggle-left:before {
  content: "\ec49";
}
.bx-toggle-right:before {
  content: "\ec4a";
}
.bx-tone:before {
  content: "\ec4b";
}
.bx-traffic-cone:before {
  content: "\ec4c";
}
.bx-train:before {
  content: "\ec4d";
}
.bx-transfer:before {
  content: "\ec4e";
}
.bx-transfer-alt:before {
  content: "\ec4f";
}
.bx-trash:before {
  content: "\ec50";
}
.bx-trash-alt:before {
  content: "\ec51";
}
.bx-trending-down:before {
  content: "\ec52";
}
.bx-trending-up:before {
  content: "\ec53";
}
.bx-trim:before {
  content: "\ec54";
}
.bx-trip:before {
  content: "\ec55";
}
.bx-trophy:before {
  content: "\ec56";
}
.bx-tv:before {
  content: "\ec57";
}
.bx-underline:before {
  content: "\ec58";
}
.bx-undo:before {
  content: "\ec59";
}
.bx-unite:before {
  content: "\ec5a";
}
.bx-unlink:before {
  content: "\ec5b";
}
.bx-up-arrow:before {
  content: "\ec5c";
}
.bx-up-arrow-alt:before {
  content: "\ec5d";
}
.bx-up-arrow-circle:before {
  content: "\ec5e";
}
.bx-upload:before {
  content: "\ec5f";
}
.bx-upside-down:before {
  content: "\ec60";
}
.bx-upvote:before {
  content: "\ec61";
}
.bx-usb:before {
  content: "\ec62";
}
.bx-user:before {
  content: "\ec63";
}
.bx-user-check:before {
  content: "\ec64";
}
.bx-user-circle:before {
  content: "\ec65";
}
.bx-user-minus:before {
  content: "\ec66";
}
.bx-user-pin:before {
  content: "\ec67";
}
.bx-user-plus:before {
  content: "\ec68";
}
.bx-user-voice:before {
  content: "\ec69";
}
.bx-user-x:before {
  content: "\ec6a";
}
.bx-vector:before {
  content: "\ec6b";
}
.bx-vertical-center:before {
  content: "\ec6c";
}
.bx-vial:before {
  content: "\ec6d";
}
.bx-video:before {
  content: "\ec6e";
}
.bx-video-off:before {
  content: "\ec6f";
}
.bx-video-plus:before {
  content: "\ec70";
}
.bx-video-recording:before {
  content: "\ec71";
}
.bx-voicemail:before {
  content: "\ec72";
}
.bx-volume:before {
  content: "\ec73";
}
.bx-volume-full:before {
  content: "\ec74";
}
.bx-volume-low:before {
  content: "\ec75";
}
.bx-volume-mute:before {
  content: "\ec76";
}
.bx-walk:before {
  content: "\ec77";
}
.bx-wallet:before {
  content: "\ec78";
}
.bx-wallet-alt:before {
  content: "\ec79";
}
.bx-water:before {
  content: "\ec7a";
}
.bx-webcam:before {
  content: "\ec7b";
}
.bx-wifi:before {
  content: "\ec7c";
}
.bx-wifi-0:before {
  content: "\ec7d";
}
.bx-wifi-1:before {
  content: "\ec7e";
}
.bx-wifi-2:before {
  content: "\ec7f";
}
.bx-wifi-off:before {
  content: "\ec80";
}
.bx-wind:before {
  content: "\ec81";
}
.bx-window:before {
  content: "\ec82";
}
.bx-window-alt:before {
  content: "\ec83";
}
.bx-window-close:before {
  content: "\ec84";
}
.bx-window-open:before {
  content: "\ec85";
}
.bx-windows:before {
  content: "\ec86";
}
.bx-wine:before {
  content: "\ec87";
}
.bx-wink-smile:before {
  content: "\ec88";
}
.bx-wink-tongue:before {
  content: "\ec89";
}
.bx-won:before {
  content: "\ec8a";
}
.bx-world:before {
  content: "\ec8b";
}
.bx-wrench:before {
  content: "\ec8c";
}
.bx-x:before {
  content: "\ec8d";
}
.bx-x-circle:before {
  content: "\ec8e";
}
.bx-yen:before {
  content: "\ec8f";
}
.bx-zoom-in:before {
  content: "\ec90";
}
.bx-zoom-out:before {
  content: "\ec91";
}
.bxs-party:before {
  content: "\ec92";
}
.bxs-hot:before {
  content: "\ec93";
}
.bxs-droplet:before {
  content: "\ec94";
}
.bxs-cat:before {
  content: "\ec95";
}
.bxs-dog:before {
  content: "\ec96";
}
.bxs-injection:before {
  content: "\ec97";
}
.bxs-leaf:before {
  content: "\ec98";
}
.bxs-add-to-queue:before {
  content: "\ec99";
}
.bxs-adjust:before {
  content: "\ec9a";
}
.bxs-adjust-alt:before {
  content: "\ec9b";
}
.bxs-alarm:before {
  content: "\ec9c";
}
.bxs-alarm-add:before {
  content: "\ec9d";
}
.bxs-alarm-exclamation:before {
  content: "\ec9e";
}
.bxs-alarm-off:before {
  content: "\ec9f";
}
.bxs-alarm-snooze:before {
  content: "\eca0";
}
.bxs-album:before {
  content: "\eca1";
}
.bxs-ambulance:before {
  content: "\eca2";
}
.bxs-analyse:before {
  content: "\eca3";
}
.bxs-angry:before {
  content: "\eca4";
}
.bxs-arch:before {
  content: "\eca5";
}
.bxs-archive:before {
  content: "\eca6";
}
.bxs-archive-in:before {
  content: "\eca7";
}
.bxs-archive-out:before {
  content: "\eca8";
}
.bxs-area:before {
  content: "\eca9";
}
.bxs-arrow-from-bottom:before {
  content: "\ecaa";
}
.bxs-arrow-from-left:before {
  content: "\ecab";
}
.bxs-arrow-from-right:before {
  content: "\ecac";
}
.bxs-arrow-from-top:before {
  content: "\ecad";
}
.bxs-arrow-to-bottom:before {
  content: "\ecae";
}
.bxs-arrow-to-left:before {
  content: "\ecaf";
}
.bxs-arrow-to-right:before {
  content: "\ecb0";
}
.bxs-arrow-to-top:before {
  content: "\ecb1";
}
.bxs-award:before {
  content: "\ecb2";
}
.bxs-baby-carriage:before {
  content: "\ecb3";
}
.bxs-backpack:before {
  content: "\ecb4";
}
.bxs-badge:before {
  content: "\ecb5";
}
.bxs-badge-check:before {
  content: "\ecb6";
}
.bxs-badge-dollar:before {
  content: "\ecb7";
}
.bxs-ball:before {
  content: "\ecb8";
}
.bxs-band-aid:before {
  content: "\ecb9";
}
.bxs-bank:before {
  content: "\ecba";
}
.bxs-bar-chart-alt-2:before {
  content: "\ecbb";
}
.bxs-bar-chart-square:before {
  content: "\ecbc";
}
.bxs-barcode:before {
  content: "\ecbd";
}
.bxs-baseball:before {
  content: "\ecbe";
}
.bxs-basket:before {
  content: "\ecbf";
}
.bxs-basketball:before {
  content: "\ecc0";
}
.bxs-bath:before {
  content: "\ecc1";
}
.bxs-battery:before {
  content: "\ecc2";
}
.bxs-battery-charging:before {
  content: "\ecc3";
}
.bxs-battery-full:before {
  content: "\ecc4";
}
.bxs-battery-low:before {
  content: "\ecc5";
}
.bxs-bed:before {
  content: "\ecc6";
}
.bxs-been-here:before {
  content: "\ecc7";
}
.bxs-beer:before {
  content: "\ecc8";
}
.bxs-bell:before {
  content: "\ecc9";
}
.bxs-bell-minus:before {
  content: "\ecca";
}
.bxs-bell-off:before {
  content: "\eccb";
}
.bxs-bell-plus:before {
  content: "\eccc";
}
.bxs-bell-ring:before {
  content: "\eccd";
}
.bxs-bible:before {
  content: "\ecce";
}
.bxs-binoculars:before {
  content: "\eccf";
}
.bxs-blanket:before {
  content: "\ecd0";
}
.bxs-bolt:before {
  content: "\ecd1";
}
.bxs-bolt-circle:before {
  content: "\ecd2";
}
.bxs-bomb:before {
  content: "\ecd3";
}
.bxs-bone:before {
  content: "\ecd4";
}
.bxs-bong:before {
  content: "\ecd5";
}
.bxs-book:before {
  content: "\ecd6";
}
.bxs-book-add:before {
  content: "\ecd7";
}
.bxs-book-alt:before {
  content: "\ecd8";
}
.bxs-book-bookmark:before {
  content: "\ecd9";
}
.bxs-book-content:before {
  content: "\ecda";
}
.bxs-book-heart:before {
  content: "\ecdb";
}
.bxs-bookmark:before {
  content: "\ecdc";
}
.bxs-bookmark-alt:before {
  content: "\ecdd";
}
.bxs-bookmark-alt-minus:before {
  content: "\ecde";
}
.bxs-bookmark-alt-plus:before {
  content: "\ecdf";
}
.bxs-bookmark-heart:before {
  content: "\ece0";
}
.bxs-bookmark-minus:before {
  content: "\ece1";
}
.bxs-bookmark-plus:before {
  content: "\ece2";
}
.bxs-bookmarks:before {
  content: "\ece3";
}
.bxs-bookmark-star:before {
  content: "\ece4";
}
.bxs-book-open:before {
  content: "\ece5";
}
.bxs-book-reader:before {
  content: "\ece6";
}
.bxs-bot:before {
  content: "\ece7";
}
.bxs-bowling-ball:before {
  content: "\ece8";
}
.bxs-box:before {
  content: "\ece9";
}
.bxs-brain:before {
  content: "\ecea";
}
.bxs-briefcase:before {
  content: "\eceb";
}
.bxs-briefcase-alt:before {
  content: "\ecec";
}
.bxs-briefcase-alt-2:before {
  content: "\eced";
}
.bxs-brightness:before {
  content: "\ecee";
}
.bxs-brightness-half:before {
  content: "\ecef";
}
.bxs-brush:before {
  content: "\ecf0";
}
.bxs-brush-alt:before {
  content: "\ecf1";
}
.bxs-bug:before {
  content: "\ecf2";
}
.bxs-bug-alt:before {
  content: "\ecf3";
}
.bxs-building:before {
  content: "\ecf4";
}
.bxs-building-house:before {
  content: "\ecf5";
}
.bxs-buildings:before {
  content: "\ecf6";
}
.bxs-bulb:before {
  content: "\ecf7";
}
.bxs-bullseye:before {
  content: "\ecf8";
}
.bxs-buoy:before {
  content: "\ecf9";
}
.bxs-bus:before {
  content: "\ecfa";
}
.bxs-business:before {
  content: "\ecfb";
}
.bxs-bus-school:before {
  content: "\ecfc";
}
.bxs-cabinet:before {
  content: "\ecfd";
}
.bxs-cake:before {
  content: "\ecfe";
}
.bxs-calculator:before {
  content: "\ecff";
}
.bxs-calendar:before {
  content: "\ed00";
}
.bxs-calendar-alt:before {
  content: "\ed01";
}
.bxs-calendar-check:before {
  content: "\ed02";
}
.bxs-calendar-edit:before {
  content: "\ed03";
}
.bxs-calendar-event:before {
  content: "\ed04";
}
.bxs-calendar-exclamation:before {
  content: "\ed05";
}
.bxs-calendar-heart:before {
  content: "\ed06";
}
.bxs-calendar-minus:before {
  content: "\ed07";
}
.bxs-calendar-plus:before {
  content: "\ed08";
}
.bxs-calendar-star:before {
  content: "\ed09";
}
.bxs-calendar-week:before {
  content: "\ed0a";
}
.bxs-calendar-x:before {
  content: "\ed0b";
}
.bxs-camera:before {
  content: "\ed0c";
}
.bxs-camera-home:before {
  content: "\ed0d";
}
.bxs-camera-movie:before {
  content: "\ed0e";
}
.bxs-camera-off:before {
  content: "\ed0f";
}
.bxs-camera-plus:before {
  content: "\ed10";
}
.bxs-capsule:before {
  content: "\ed11";
}
.bxs-captions:before {
  content: "\ed12";
}
.bxs-car:before {
  content: "\ed13";
}
.bxs-car-battery:before {
  content: "\ed14";
}
.bxs-car-crash:before {
  content: "\ed15";
}
.bxs-card:before {
  content: "\ed16";
}
.bxs-caret-down-circle:before {
  content: "\ed17";
}
.bxs-caret-down-square:before {
  content: "\ed18";
}
.bxs-caret-left-circle:before {
  content: "\ed19";
}
.bxs-caret-left-square:before {
  content: "\ed1a";
}
.bxs-caret-right-circle:before {
  content: "\ed1b";
}
.bxs-caret-right-square:before {
  content: "\ed1c";
}
.bxs-caret-up-circle:before {
  content: "\ed1d";
}
.bxs-caret-up-square:before {
  content: "\ed1e";
}
.bxs-car-garage:before {
  content: "\ed1f";
}
.bxs-car-mechanic:before {
  content: "\ed20";
}
.bxs-carousel:before {
  content: "\ed21";
}
.bxs-cart:before {
  content: "\ed22";
}
.bxs-cart-add:before {
  content: "\ed23";
}
.bxs-cart-alt:before {
  content: "\ed24";
}
.bxs-cart-download:before {
  content: "\ed25";
}
.bxs-car-wash:before {
  content: "\ed26";
}
.bxs-category:before {
  content: "\ed27";
}
.bxs-category-alt:before {
  content: "\ed28";
}
.bxs-cctv:before {
  content: "\ed29";
}
.bxs-certification:before {
  content: "\ed2a";
}
.bxs-chalkboard:before {
  content: "\ed2b";
}
.bxs-chart:before {
  content: "\ed2c";
}
.bxs-chat:before {
  content: "\ed2d";
}
.bxs-checkbox:before {
  content: "\ed2e";
}
.bxs-checkbox-checked:before {
  content: "\ed2f";
}
.bxs-checkbox-minus:before {
  content: "\ed30";
}
.bxs-check-circle:before {
  content: "\ed31";
}
.bxs-check-shield:before {
  content: "\ed32";
}
.bxs-check-square:before {
  content: "\ed33";
}
.bxs-chess:before {
  content: "\ed34";
}
.bxs-chevron-down:before {
  content: "\ed35";
}
.bxs-chevron-down-circle:before {
  content: "\ed36";
}
.bxs-chevron-down-square:before {
  content: "\ed37";
}
.bxs-chevron-left:before {
  content: "\ed38";
}
.bxs-chevron-left-circle:before {
  content: "\ed39";
}
.bxs-chevron-left-square:before {
  content: "\ed3a";
}
.bxs-chevron-right:before {
  content: "\ed3b";
}
.bxs-chevron-right-circle:before {
  content: "\ed3c";
}
.bxs-chevron-right-square:before {
  content: "\ed3d";
}
.bxs-chevrons-down:before {
  content: "\ed3e";
}
.bxs-chevrons-left:before {
  content: "\ed3f";
}
.bxs-chevrons-right:before {
  content: "\ed40";
}
.bxs-chevrons-up:before {
  content: "\ed41";
}
.bxs-chevron-up:before {
  content: "\ed42";
}
.bxs-chevron-up-circle:before {
  content: "\ed43";
}
.bxs-chevron-up-square:before {
  content: "\ed44";
}
.bxs-chip:before {
  content: "\ed45";
}
.bxs-church:before {
  content: "\ed46";
}
.bxs-circle:before {
  content: "\ed47";
}
.bxs-city:before {
  content: "\ed48";
}
.bxs-clinic:before {
  content: "\ed49";
}
.bxs-cloud:before {
  content: "\ed4a";
}
.bxs-cloud-download:before {
  content: "\ed4b";
}
.bxs-cloud-lightning:before {
  content: "\ed4c";
}
.bxs-cloud-rain:before {
  content: "\ed4d";
}
.bxs-cloud-upload:before {
  content: "\ed4e";
}
.bxs-coffee:before {
  content: "\ed4f";
}
.bxs-coffee-alt:before {
  content: "\ed50";
}
.bxs-coffee-togo:before {
  content: "\ed51";
}
.bxs-cog:before {
  content: "\ed52";
}
.bxs-coin:before {
  content: "\ed53";
}
.bxs-coin-stack:before {
  content: "\ed54";
}
.bxs-collection:before {
  content: "\ed55";
}
.bxs-color-fill:before {
  content: "\ed56";
}
.bxs-comment:before {
  content: "\ed57";
}
.bxs-comment-add:before {
  content: "\ed58";
}
.bxs-comment-check:before {
  content: "\ed59";
}
.bxs-comment-detail:before {
  content: "\ed5a";
}
.bxs-comment-dots:before {
  content: "\ed5b";
}
.bxs-comment-edit:before {
  content: "\ed5c";
}
.bxs-comment-error:before {
  content: "\ed5d";
}
.bxs-comment-minus:before {
  content: "\ed5e";
}
.bxs-comment-x:before {
  content: "\ed5f";
}
.bxs-compass:before {
  content: "\ed60";
}
.bxs-component:before {
  content: "\ed61";
}
.bxs-confused:before {
  content: "\ed62";
}
.bxs-contact:before {
  content: "\ed63";
}
.bxs-conversation:before {
  content: "\ed64";
}
.bxs-cookie:before {
  content: "\ed65";
}
.bxs-cool:before {
  content: "\ed66";
}
.bxs-copy:before {
  content: "\ed67";
}
.bxs-copy-alt:before {
  content: "\ed68";
}
.bxs-copyright:before {
  content: "\ed69";
}
.bxs-coupon:before {
  content: "\ed6a";
}
.bxs-credit-card:before {
  content: "\ed6b";
}
.bxs-credit-card-alt:before {
  content: "\ed6c";
}
.bxs-credit-card-front:before {
  content: "\ed6d";
}
.bxs-crop:before {
  content: "\ed6e";
}
.bxs-crown:before {
  content: "\ed6f";
}
.bxs-cube:before {
  content: "\ed70";
}
.bxs-cube-alt:before {
  content: "\ed71";
}
.bxs-cuboid:before {
  content: "\ed72";
}
.bxs-customize:before {
  content: "\ed73";
}
.bxs-cylinder:before {
  content: "\ed74";
}
.bxs-dashboard:before {
  content: "\ed75";
}
.bxs-data:before {
  content: "\ed76";
}
.bxs-detail:before {
  content: "\ed77";
}
.bxs-devices:before {
  content: "\ed78";
}
.bxs-diamond:before {
  content: "\ed79";
}
.bxs-dice-1:before {
  content: "\ed7a";
}
.bxs-dice-2:before {
  content: "\ed7b";
}
.bxs-dice-3:before {
  content: "\ed7c";
}
.bxs-dice-4:before {
  content: "\ed7d";
}
.bxs-dice-5:before {
  content: "\ed7e";
}
.bxs-dice-6:before {
  content: "\ed7f";
}
.bxs-direction-left:before {
  content: "\ed80";
}
.bxs-direction-right:before {
  content: "\ed81";
}
.bxs-directions:before {
  content: "\ed82";
}
.bxs-disc:before {
  content: "\ed83";
}
.bxs-discount:before {
  content: "\ed84";
}
.bxs-dish:before {
  content: "\ed85";
}
.bxs-dislike:before {
  content: "\ed86";
}
.bxs-dizzy:before {
  content: "\ed87";
}
.bxs-dock-bottom:before {
  content: "\ed88";
}
.bxs-dock-left:before {
  content: "\ed89";
}
.bxs-dock-right:before {
  content: "\ed8a";
}
.bxs-dock-top:before {
  content: "\ed8b";
}
.bxs-dollar-circle:before {
  content: "\ed8c";
}
.bxs-donate-blood:before {
  content: "\ed8d";
}
.bxs-donate-heart:before {
  content: "\ed8e";
}
.bxs-door-open:before {
  content: "\ed8f";
}
.bxs-doughnut-chart:before {
  content: "\ed90";
}
.bxs-down-arrow:before {
  content: "\ed91";
}
.bxs-down-arrow-alt:before {
  content: "\ed92";
}
.bxs-down-arrow-circle:before {
  content: "\ed93";
}
.bxs-down-arrow-square:before {
  content: "\ed94";
}
.bxs-download:before {
  content: "\ed95";
}
.bxs-downvote:before {
  content: "\ed96";
}
.bxs-drink:before {
  content: "\ed97";
}
.bxs-droplet-half:before {
  content: "\ed98";
}
.bxs-dryer:before {
  content: "\ed99";
}
.bxs-duplicate:before {
  content: "\ed9a";
}
.bxs-edit:before {
  content: "\ed9b";
}
.bxs-edit-alt:before {
  content: "\ed9c";
}
.bxs-edit-location:before {
  content: "\ed9d";
}
.bxs-eject:before {
  content: "\ed9e";
}
.bxs-envelope:before {
  content: "\ed9f";
}
.bxs-envelope-open:before {
  content: "\eda0";
}
.bxs-eraser:before {
  content: "\eda1";
}
.bxs-error:before {
  content: "\eda2";
}
.bxs-error-alt:before {
  content: "\eda3";
}
.bxs-error-circle:before {
  content: "\eda4";
}
.bxs-ev-station:before {
  content: "\eda5";
}
.bxs-exit:before {
  content: "\eda6";
}
.bxs-extension:before {
  content: "\eda7";
}
.bxs-eyedropper:before {
  content: "\eda8";
}
.bxs-face:before {
  content: "\eda9";
}
.bxs-face-mask:before {
  content: "\edaa";
}
.bxs-factory:before {
  content: "\edab";
}
.bxs-fast-forward-circle:before {
  content: "\edac";
}
.bxs-file:before {
  content: "\edad";
}
.bxs-file-archive:before {
  content: "\edae";
}
.bxs-file-blank:before {
  content: "\edaf";
}
.bxs-file-css:before {
  content: "\edb0";
}
.bxs-file-doc:before {
  content: "\edb1";
}
.bxs-file-export:before {
  content: "\edb2";
}
.bxs-file-find:before {
  content: "\edb3";
}
.bxs-file-gif:before {
  content: "\edb4";
}
.bxs-file-html:before {
  content: "\edb5";
}
.bxs-file-image:before {
  content: "\edb6";
}
.bxs-file-import:before {
  content: "\edb7";
}
.bxs-file-jpg:before {
  content: "\edb8";
}
.bxs-file-js:before {
  content: "\edb9";
}
.bxs-file-json:before {
  content: "\edba";
}
.bxs-file-md:before {
  content: "\edbb";
}
.bxs-file-pdf:before {
  content: "\edbc";
}
.bxs-file-plus:before {
  content: "\edbd";
}
.bxs-file-png:before {
  content: "\edbe";
}
.bxs-file-txt:before {
  content: "\edbf";
}
.bxs-film:before {
  content: "\edc0";
}
.bxs-filter-alt:before {
  content: "\edc1";
}
.bxs-first-aid:before {
  content: "\edc2";
}
.bxs-flag:before {
  content: "\edc3";
}
.bxs-flag-alt:before {
  content: "\edc4";
}
.bxs-flag-checkered:before {
  content: "\edc5";
}
.bxs-flame:before {
  content: "\edc6";
}
.bxs-flask:before {
  content: "\edc7";
}
.bxs-florist:before {
  content: "\edc8";
}
.bxs-folder:before {
  content: "\edc9";
}
.bxs-folder-minus:before {
  content: "\edca";
}
.bxs-folder-open:before {
  content: "\edcb";
}
.bxs-folder-plus:before {
  content: "\edcc";
}
.bxs-food-menu:before {
  content: "\edcd";
}
.bxs-fridge:before {
  content: "\edce";
}
.bxs-game:before {
  content: "\edcf";
}
.bxs-gas-pump:before {
  content: "\edd0";
}
.bxs-ghost:before {
  content: "\edd1";
}
.bxs-gift:before {
  content: "\edd2";
}
.bxs-graduation:before {
  content: "\edd3";
}
.bxs-grid:before {
  content: "\edd4";
}
.bxs-grid-alt:before {
  content: "\edd5";
}
.bxs-group:before {
  content: "\edd6";
}
.bxs-guitar-amp:before {
  content: "\edd7";
}
.bxs-hand:before {
  content: "\edd8";
}
.bxs-hand-down:before {
  content: "\edd9";
}
.bxs-hand-left:before {
  content: "\edda";
}
.bxs-hand-right:before {
  content: "\eddb";
}
.bxs-hand-up:before {
  content: "\eddc";
}
.bxs-happy:before {
  content: "\eddd";
}
.bxs-happy-alt:before {
  content: "\edde";
}
.bxs-happy-beaming:before {
  content: "\eddf";
}
.bxs-happy-heart-eyes:before {
  content: "\ede0";
}
.bxs-hdd:before {
  content: "\ede1";
}
.bxs-heart:before {
  content: "\ede2";
}
.bxs-heart-circle:before {
  content: "\ede3";
}
.bxs-heart-square:before {
  content: "\ede4";
}
.bxs-help-circle:before {
  content: "\ede5";
}
.bxs-hide:before {
  content: "\ede6";
}
.bxs-home:before {
  content: "\ede7";
}
.bxs-home-circle:before {
  content: "\ede8";
}
.bxs-home-heart:before {
  content: "\ede9";
}
.bxs-home-smile:before {
  content: "\edea";
}
.bxs-hotel:before {
  content: "\edeb";
}
.bxs-hourglass:before {
  content: "\edec";
}
.bxs-hourglass-bottom:before {
  content: "\eded";
}
.bxs-hourglass-top:before {
  content: "\edee";
}
.bxs-id-card:before {
  content: "\edef";
}
.bxs-image:before {
  content: "\edf0";
}
.bxs-image-add:before {
  content: "\edf1";
}
.bxs-image-alt:before {
  content: "\edf2";
}
.bxs-inbox:before {
  content: "\edf3";
}
.bxs-info-circle:before {
  content: "\edf4";
}
.bxs-info-square:before {
  content: "\edf5";
}
.bxs-institution:before {
  content: "\edf6";
}
.bxs-joystick:before {
  content: "\edf7";
}
.bxs-joystick-alt:before {
  content: "\edf8";
}
.bxs-joystick-button:before {
  content: "\edf9";
}
.bxs-key:before {
  content: "\edfa";
}
.bxs-keyboard:before {
  content: "\edfb";
}
.bxs-label:before {
  content: "\edfc";
}
.bxs-landmark:before {
  content: "\edfd";
}
.bxs-landscape:before {
  content: "\edfe";
}
.bxs-laugh:before {
  content: "\edff";
}
.bxs-layer:before {
  content: "\ee00";
}
.bxs-layer-minus:before {
  content: "\ee01";
}
.bxs-layer-plus:before {
  content: "\ee02";
}
.bxs-layout:before {
  content: "\ee03";
}
.bxs-left-arrow:before {
  content: "\ee04";
}
.bxs-left-arrow-alt:before {
  content: "\ee05";
}
.bxs-left-arrow-circle:before {
  content: "\ee06";
}
.bxs-left-arrow-square:before {
  content: "\ee07";
}
.bxs-left-down-arrow-circle:before {
  content: "\ee08";
}
.bxs-left-top-arrow-circle:before {
  content: "\ee09";
}
.bxs-like:before {
  content: "\ee0a";
}
.bxs-location-plus:before {
  content: "\ee0b";
}
.bxs-lock:before {
  content: "\ee0c";
}
.bxs-lock-alt:before {
  content: "\ee0d";
}
.bxs-lock-open:before {
  content: "\ee0e";
}
.bxs-lock-open-alt:before {
  content: "\ee0f";
}
.bxs-log-in:before {
  content: "\ee10";
}
.bxs-log-in-circle:before {
  content: "\ee11";
}
.bxs-log-out:before {
  content: "\ee12";
}
.bxs-log-out-circle:before {
  content: "\ee13";
}
.bxs-low-vision:before {
  content: "\ee14";
}
.bxs-magic-wand:before {
  content: "\ee15";
}
.bxs-magnet:before {
  content: "\ee16";
}
.bxs-map:before {
  content: "\ee17";
}
.bxs-map-alt:before {
  content: "\ee18";
}
.bxs-map-pin:before {
  content: "\ee19";
}
.bxs-mask:before {
  content: "\ee1a";
}
.bxs-medal:before {
  content: "\ee1b";
}
.bxs-megaphone:before {
  content: "\ee1c";
}
.bxs-meh:before {
  content: "\ee1d";
}
.bxs-meh-alt:before {
  content: "\ee1e";
}
.bxs-meh-blank:before {
  content: "\ee1f";
}
.bxs-memory-card:before {
  content: "\ee20";
}
.bxs-message:before {
  content: "\ee21";
}
.bxs-message-add:before {
  content: "\ee22";
}
.bxs-message-alt:before {
  content: "\ee23";
}
.bxs-message-alt-add:before {
  content: "\ee24";
}
.bxs-message-alt-check:before {
  content: "\ee25";
}
.bxs-message-alt-detail:before {
  content: "\ee26";
}
.bxs-message-alt-dots:before {
  content: "\ee27";
}
.bxs-message-alt-edit:before {
  content: "\ee28";
}
.bxs-message-alt-error:before {
  content: "\ee29";
}
.bxs-message-alt-minus:before {
  content: "\ee2a";
}
.bxs-message-alt-x:before {
  content: "\ee2b";
}
.bxs-message-check:before {
  content: "\ee2c";
}
.bxs-message-detail:before {
  content: "\ee2d";
}
.bxs-message-dots:before {
  content: "\ee2e";
}
.bxs-message-edit:before {
  content: "\ee2f";
}
.bxs-message-error:before {
  content: "\ee30";
}
.bxs-message-minus:before {
  content: "\ee31";
}
.bxs-message-rounded:before {
  content: "\ee32";
}
.bxs-message-rounded-add:before {
  content: "\ee33";
}
.bxs-message-rounded-check:before {
  content: "\ee34";
}
.bxs-message-rounded-detail:before {
  content: "\ee35";
}
.bxs-message-rounded-dots:before {
  content: "\ee36";
}
.bxs-message-rounded-edit:before {
  content: "\ee37";
}
.bxs-message-rounded-error:before {
  content: "\ee38";
}
.bxs-message-rounded-minus:before {
  content: "\ee39";
}
.bxs-message-rounded-x:before {
  content: "\ee3a";
}
.bxs-message-square:before {
  content: "\ee3b";
}
.bxs-message-square-add:before {
  content: "\ee3c";
}
.bxs-message-square-check:before {
  content: "\ee3d";
}
.bxs-message-square-detail:before {
  content: "\ee3e";
}
.bxs-message-square-dots:before {
  content: "\ee3f";
}
.bxs-message-square-edit:before {
  content: "\ee40";
}
.bxs-message-square-error:before {
  content: "\ee41";
}
.bxs-message-square-minus:before {
  content: "\ee42";
}
.bxs-message-square-x:before {
  content: "\ee43";
}
.bxs-message-x:before {
  content: "\ee44";
}
.bxs-meteor:before {
  content: "\ee45";
}
.bxs-microchip:before {
  content: "\ee46";
}
.bxs-microphone:before {
  content: "\ee47";
}
.bxs-microphone-alt:before {
  content: "\ee48";
}
.bxs-microphone-off:before {
  content: "\ee49";
}
.bxs-minus-circle:before {
  content: "\ee4a";
}
.bxs-minus-square:before {
  content: "\ee4b";
}
.bxs-mobile:before {
  content: "\ee4c";
}
.bxs-mobile-vibration:before {
  content: "\ee4d";
}
.bxs-moon:before {
  content: "\ee4e";
}
.bxs-mouse:before {
  content: "\ee4f";
}
.bxs-mouse-alt:before {
  content: "\ee50";
}
.bxs-movie:before {
  content: "\ee51";
}
.bxs-movie-play:before {
  content: "\ee52";
}
.bxs-music:before {
  content: "\ee53";
}
.bxs-navigation:before {
  content: "\ee54";
}
.bxs-network-chart:before {
  content: "\ee55";
}
.bxs-news:before {
  content: "\ee56";
}
.bxs-no-entry:before {
  content: "\ee57";
}
.bxs-note:before {
  content: "\ee58";
}
.bxs-notepad:before {
  content: "\ee59";
}
.bxs-notification:before {
  content: "\ee5a";
}
.bxs-notification-off:before {
  content: "\ee5b";
}
.bxs-offer:before {
  content: "\ee5c";
}
.bxs-package:before {
  content: "\ee5d";
}
.bxs-paint:before {
  content: "\ee5e";
}
.bxs-paint-roll:before {
  content: "\ee5f";
}
.bxs-palette:before {
  content: "\ee60";
}
.bxs-paper-plane:before {
  content: "\ee61";
}
.bxs-parking:before {
  content: "\ee62";
}
.bxs-paste:before {
  content: "\ee63";
}
.bxs-pen:before {
  content: "\ee64";
}
.bxs-pencil:before {
  content: "\ee65";
}
.bxs-phone:before {
  content: "\ee66";
}
.bxs-phone-call:before {
  content: "\ee67";
}
.bxs-phone-incoming:before {
  content: "\ee68";
}
.bxs-phone-off:before {
  content: "\ee69";
}
.bxs-phone-outgoing:before {
  content: "\ee6a";
}
.bxs-photo-album:before {
  content: "\ee6b";
}
.bxs-piano:before {
  content: "\ee6c";
}
.bxs-pie-chart:before {
  content: "\ee6d";
}
.bxs-pie-chart-alt:before {
  content: "\ee6e";
}
.bxs-pie-chart-alt-2:before {
  content: "\ee6f";
}
.bxs-pin:before {
  content: "\ee70";
}
.bxs-pizza:before {
  content: "\ee71";
}
.bxs-plane:before {
  content: "\ee72";
}
.bxs-plane-alt:before {
  content: "\ee73";
}
.bxs-plane-land:before {
  content: "\ee74";
}
.bxs-planet:before {
  content: "\ee75";
}
.bxs-plane-take-off:before {
  content: "\ee76";
}
.bxs-playlist:before {
  content: "\ee77";
}
.bxs-plug:before {
  content: "\ee78";
}
.bxs-plus-circle:before {
  content: "\ee79";
}
.bxs-plus-square:before {
  content: "\ee7a";
}
.bxs-pointer:before {
  content: "\ee7b";
}
.bxs-polygon:before {
  content: "\ee7c";
}
.bxs-printer:before {
  content: "\ee7d";
}
.bxs-purchase-tag:before {
  content: "\ee7e";
}
.bxs-purchase-tag-alt:before {
  content: "\ee7f";
}
.bxs-pyramid:before {
  content: "\ee80";
}
.bxs-quote-alt-left:before {
  content: "\ee81";
}
.bxs-quote-alt-right:before {
  content: "\ee82";
}
.bxs-quote-left:before {
  content: "\ee83";
}
.bxs-quote-right:before {
  content: "\ee84";
}
.bxs-quote-single-left:before {
  content: "\ee85";
}
.bxs-quote-single-right:before {
  content: "\ee86";
}
.bxs-radiation:before {
  content: "\ee87";
}
.bxs-radio:before {
  content: "\ee88";
}
.bxs-receipt:before {
  content: "\ee89";
}
.bxs-rectangle:before {
  content: "\ee8a";
}
.bxs-registered:before {
  content: "\ee8b";
}
.bxs-rename:before {
  content: "\ee8c";
}
.bxs-report:before {
  content: "\ee8d";
}
.bxs-rewind-circle:before {
  content: "\ee8e";
}
.bxs-right-arrow:before {
  content: "\ee8f";
}
.bxs-right-arrow-alt:before {
  content: "\ee90";
}
.bxs-right-arrow-circle:before {
  content: "\ee91";
}
.bxs-right-arrow-square:before {
  content: "\ee92";
}
.bxs-right-down-arrow-circle:before {
  content: "\ee93";
}
.bxs-right-top-arrow-circle:before {
  content: "\ee94";
}
.bxs-rocket:before {
  content: "\ee95";
}
.bxs-ruler:before {
  content: "\ee96";
}
.bxs-sad:before {
  content: "\ee97";
}
.bxs-save:before {
  content: "\ee98";
}
.bxs-school:before {
  content: "\ee99";
}
.bxs-search:before {
  content: "\ee9a";
}
.bxs-search-alt-2:before {
  content: "\ee9b";
}
.bxs-select-multiple:before {
  content: "\ee9c";
}
.bxs-send:before {
  content: "\ee9d";
}
.bxs-server:before {
  content: "\ee9e";
}
.bxs-shapes:before {
  content: "\ee9f";
}
.bxs-share:before {
  content: "\eea0";
}
.bxs-share-alt:before {
  content: "\eea1";
}
.bxs-shield:before {
  content: "\eea2";
}
.bxs-shield-alt-2:before {
  content: "\eea3";
}
.bxs-shield-x:before {
  content: "\eea4";
}
.bxs-ship:before {
  content: "\eea5";
}
.bxs-shocked:before {
  content: "\eea6";
}
.bxs-shopping-bag:before {
  content: "\eea7";
}
.bxs-shopping-bag-alt:before {
  content: "\eea8";
}
.bxs-shopping-bags:before {
  content: "\eea9";
}
.bxs-show:before {
  content: "\eeaa";
}
.bxs-skip-next-circle:before {
  content: "\eeab";
}
.bxs-skip-previous-circle:before {
  content: "\eeac";
}
.bxs-skull:before {
  content: "\eead";
}
.bxs-sleepy:before {
  content: "\eeae";
}
.bxs-slideshow:before {
  content: "\eeaf";
}
.bxs-smile:before {
  content: "\eeb0";
}
.bxs-sort-alt:before {
  content: "\eeb1";
}
.bxs-spa:before {
  content: "\eeb2";
}
.bxs-speaker:before {
  content: "\eeb3";
}
.bxs-spray-can:before {
  content: "\eeb4";
}
.bxs-spreadsheet:before {
  content: "\eeb5";
}
.bxs-square:before {
  content: "\eeb6";
}
.bxs-square-rounded:before {
  content: "\eeb7";
}
.bxs-star:before {
  content: "\eeb8";
}
.bxs-star-half:before {
  content: "\eeb9";
}
.bxs-sticker:before {
  content: "\eeba";
}
.bxs-stopwatch:before {
  content: "\eebb";
}
.bxs-store:before {
  content: "\eebc";
}
.bxs-store-alt:before {
  content: "\eebd";
}
.bxs-sun:before {
  content: "\eebe";
}
.bxs-tachometer:before {
  content: "\eebf";
}
.bxs-tag:before {
  content: "\eec0";
}
.bxs-tag-alt:before {
  content: "\eec1";
}
.bxs-tag-x:before {
  content: "\eec2";
}
.bxs-taxi:before {
  content: "\eec3";
}
.bxs-tennis-ball:before {
  content: "\eec4";
}
.bxs-terminal:before {
  content: "\eec5";
}
.bxs-thermometer:before {
  content: "\eec6";
}
.bxs-time:before {
  content: "\eec7";
}
.bxs-time-five:before {
  content: "\eec8";
}
.bxs-timer:before {
  content: "\eec9";
}
.bxs-tired:before {
  content: "\eeca";
}
.bxs-toggle-left:before {
  content: "\eecb";
}
.bxs-toggle-right:before {
  content: "\eecc";
}
.bxs-tone:before {
  content: "\eecd";
}
.bxs-torch:before {
  content: "\eece";
}
.bxs-to-top:before {
  content: "\eecf";
}
.bxs-traffic:before {
  content: "\eed0";
}
.bxs-traffic-barrier:before {
  content: "\eed1";
}
.bxs-traffic-cone:before {
  content: "\eed2";
}
.bxs-train:before {
  content: "\eed3";
}
.bxs-trash:before {
  content: "\eed4";
}
.bxs-trash-alt:before {
  content: "\eed5";
}
.bxs-tree:before {
  content: "\eed6";
}
.bxs-trophy:before {
  content: "\eed7";
}
.bxs-truck:before {
  content: "\eed8";
}
.bxs-t-shirt:before {
  content: "\eed9";
}
.bxs-tv:before {
  content: "\eeda";
}
.bxs-up-arrow:before {
  content: "\eedb";
}
.bxs-up-arrow-alt:before {
  content: "\eedc";
}
.bxs-up-arrow-circle:before {
  content: "\eedd";
}
.bxs-up-arrow-square:before {
  content: "\eede";
}
.bxs-upside-down:before {
  content: "\eedf";
}
.bxs-upvote:before {
  content: "\eee0";
}
.bxs-user:before {
  content: "\eee1";
}
.bxs-user-account:before {
  content: "\eee2";
}
.bxs-user-badge:before {
  content: "\eee3";
}
.bxs-user-check:before {
  content: "\eee4";
}
.bxs-user-circle:before {
  content: "\eee5";
}
.bxs-user-detail:before {
  content: "\eee6";
}
.bxs-user-minus:before {
  content: "\eee7";
}
.bxs-user-pin:before {
  content: "\eee8";
}
.bxs-user-plus:before {
  content: "\eee9";
}
.bxs-user-rectangle:before {
  content: "\eeea";
}
.bxs-user-voice:before {
  content: "\eeeb";
}
.bxs-user-x:before {
  content: "\eeec";
}
.bxs-vector:before {
  content: "\eeed";
}
.bxs-vial:before {
  content: "\eeee";
}
.bxs-video:before {
  content: "\eeef";
}
.bxs-video-off:before {
  content: "\eef0";
}
.bxs-video-plus:before {
  content: "\eef1";
}
.bxs-video-recording:before {
  content: "\eef2";
}
.bxs-videos:before {
  content: "\eef3";
}
.bxs-virus:before {
  content: "\eef4";
}
.bxs-virus-block:before {
  content: "\eef5";
}
.bxs-volume:before {
  content: "\eef6";
}
.bxs-volume-full:before {
  content: "\eef7";
}
.bxs-volume-low:before {
  content: "\eef8";
}
.bxs-volume-mute:before {
  content: "\eef9";
}
.bxs-wallet:before {
  content: "\eefa";
}
.bxs-wallet-alt:before {
  content: "\eefb";
}
.bxs-washer:before {
  content: "\eefc";
}
.bxs-watch:before {
  content: "\eefd";
}
.bxs-watch-alt:before {
  content: "\eefe";
}
.bxs-webcam:before {
  content: "\eeff";
}
.bxs-widget:before {
  content: "\ef00";
}
.bxs-window-alt:before {
  content: "\ef01";
}
.bxs-wine:before {
  content: "\ef02";
}
.bxs-wink-smile:before {
  content: "\ef03";
}
.bxs-wink-tongue:before {
  content: "\ef04";
}
.bxs-wrench:before {
  content: "\ef05";
}
.bxs-x-circle:before {
  content: "\ef06";
}
.bxs-x-square:before {
  content: "\ef07";
}
.bxs-yin-yang:before {
  content: "\ef08";
}
.bxs-zap:before {
  content: "\ef09";
}
.bxs-zoom-in:before {
  content: "\ef0a";
}
.bxs-zoom-out:before {
  content: "\ef0b";
}

/* node_modules/flag-icons/css/flag-icons.min.css */
.fib,
.fi {
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
}
.fi {
  position: relative;
  display: inline-block;
  width: 1.333333em;
  line-height: 1em;
}
.fi:before {
  content: "\a0";
}
.fi.fis {
  width: 1em;
}
.fi-xx {
  background-image: url("./media/xx-PLWBNAIN.svg");
}
.fi-xx.fis {
  background-image: url("./media/xx-G3UIP7DW.svg");
}
.fi-ad {
  background-image: url("./media/ad-WVS4VU5Z.svg");
}
.fi-ad.fis {
  background-image: url("./media/ad-CSZHNGVR.svg");
}
.fi-ae {
  background-image: url("./media/ae-6FRK6AZM.svg");
}
.fi-ae.fis {
  background-image: url("./media/ae-2A7XNIFU.svg");
}
.fi-af {
  background-image: url("./media/af-YYCQZTMI.svg");
}
.fi-af.fis {
  background-image: url("./media/af-INKHBY43.svg");
}
.fi-ag {
  background-image: url("./media/ag-MLHWUEFS.svg");
}
.fi-ag.fis {
  background-image: url("./media/ag-4TWHSYGO.svg");
}
.fi-ai {
  background-image: url("./media/ai-FINFSMYB.svg");
}
.fi-ai.fis {
  background-image: url("./media/ai-USZU7BF3.svg");
}
.fi-al {
  background-image: url("./media/al-LX4JVSFF.svg");
}
.fi-al.fis {
  background-image: url("./media/al-JAZ3J42J.svg");
}
.fi-am {
  background-image: url("./media/am-P5ZIE6XV.svg");
}
.fi-am.fis {
  background-image: url("./media/am-GSESEJM5.svg");
}
.fi-ao {
  background-image: url("./media/ao-UT6SIN5N.svg");
}
.fi-ao.fis {
  background-image: url("./media/ao-3RQCMZL6.svg");
}
.fi-aq {
  background-image: url("./media/aq-ZYPY4U2R.svg");
}
.fi-aq.fis {
  background-image: url("./media/aq-6LPVLOJ5.svg");
}
.fi-ar {
  background-image: url("./media/ar-MIEAOHWP.svg");
}
.fi-ar.fis {
  background-image: url("./media/ar-ADBHFCB5.svg");
}
.fi-as {
  background-image: url("./media/as-AFSH7LPB.svg");
}
.fi-as.fis {
  background-image: url("./media/as-UKIT7IQG.svg");
}
.fi-at {
  background-image: url("./media/at-LOEZTH7U.svg");
}
.fi-at.fis {
  background-image: url("./media/at-57ZS3UEH.svg");
}
.fi-au {
  background-image: url("./media/au-G5MX3IJM.svg");
}
.fi-au.fis {
  background-image: url("./media/au-65DV5A7C.svg");
}
.fi-aw {
  background-image: url("./media/aw-77CRWWSI.svg");
}
.fi-aw.fis {
  background-image: url("./media/aw-HDZESU3O.svg");
}
.fi-ax {
  background-image: url("./media/ax-KKUASZ2E.svg");
}
.fi-ax.fis {
  background-image: url("./media/ax-74KRLXQ4.svg");
}
.fi-az {
  background-image: url("./media/az-NDX32BEU.svg");
}
.fi-az.fis {
  background-image: url("./media/az-DODTDJFK.svg");
}
.fi-ba {
  background-image: url("./media/ba-U3MTPTGM.svg");
}
.fi-ba.fis {
  background-image: url("./media/ba-662VQHCC.svg");
}
.fi-bb {
  background-image: url("./media/bb-J5IMGOVD.svg");
}
.fi-bb.fis {
  background-image: url("./media/bb-HEBFUVVN.svg");
}
.fi-bd {
  background-image: url("./media/bd-HMCXBQD3.svg");
}
.fi-bd.fis {
  background-image: url("./media/bd-3WQOALJA.svg");
}
.fi-be {
  background-image: url("./media/be-O7GM6FZX.svg");
}
.fi-be.fis {
  background-image: url("./media/be-RXMHZQOU.svg");
}
.fi-bf {
  background-image: url("./media/bf-IFOTMWPV.svg");
}
.fi-bf.fis {
  background-image: url("./media/bf-LAHWWADE.svg");
}
.fi-bg {
  background-image: url("./media/bg-E7TOOTKR.svg");
}
.fi-bg.fis {
  background-image: url("./media/bg-2XZIGVGO.svg");
}
.fi-bh {
  background-image: url("./media/bh-F7YG7A6Z.svg");
}
.fi-bh.fis {
  background-image: url("./media/bh-QSDHTEIW.svg");
}
.fi-bi {
  background-image: url("./media/bi-U2ZALGUG.svg");
}
.fi-bi.fis {
  background-image: url("./media/bi-WD3FHDHV.svg");
}
.fi-bj {
  background-image: url("./media/bj-CN25RSKN.svg");
}
.fi-bj.fis {
  background-image: url("./media/bj-CSYFBYJX.svg");
}
.fi-bl {
  background-image: url("./media/bl-BVLZS6N6.svg");
}
.fi-bl.fis {
  background-image: url("./media/bl-FQR6M52P.svg");
}
.fi-bm {
  background-image: url("./media/bm-UJYJRUXQ.svg");
}
.fi-bm.fis {
  background-image: url("./media/bm-OUTZ6BCH.svg");
}
.fi-bn {
  background-image: url("./media/bn-YE5LSPKO.svg");
}
.fi-bn.fis {
  background-image: url("./media/bn-JZPMRRNL.svg");
}
.fi-bo {
  background-image: url("./media/bo-T2X2U5Y2.svg");
}
.fi-bo.fis {
  background-image: url("./media/bo-I64H4HM7.svg");
}
.fi-bq {
  background-image: url("./media/bq-63KYFP2P.svg");
}
.fi-bq.fis {
  background-image: url("./media/bq-NCZV5VRJ.svg");
}
.fi-br {
  background-image: url("./media/br-3Y26HUAJ.svg");
}
.fi-br.fis {
  background-image: url("./media/br-M6TFAL6M.svg");
}
.fi-bs {
  background-image: url("./media/bs-2C7RMWIG.svg");
}
.fi-bs.fis {
  background-image: url("./media/bs-D7DELWN7.svg");
}
.fi-bt {
  background-image: url("./media/bt-XSK7E7FD.svg");
}
.fi-bt.fis {
  background-image: url("./media/bt-DI23WV4Q.svg");
}
.fi-bv {
  background-image: url("./media/bv-3PDSPR4E.svg");
}
.fi-bv.fis {
  background-image: url("./media/bv-WN3KBQRU.svg");
}
.fi-bw {
  background-image: url("./media/bw-34ZWNZWI.svg");
}
.fi-bw.fis {
  background-image: url("./media/bw-UGYDHEK3.svg");
}
.fi-by {
  background-image: url("./media/by-3TFC4SNR.svg");
}
.fi-by.fis {
  background-image: url("./media/by-VH23K4GM.svg");
}
.fi-bz {
  background-image: url("./media/bz-A6YTSORZ.svg");
}
.fi-bz.fis {
  background-image: url("./media/bz-EOOSEAIP.svg");
}
.fi-ca {
  background-image: url("./media/ca-RFV4UZ2Q.svg");
}
.fi-ca.fis {
  background-image: url("./media/ca-WQC5DB53.svg");
}
.fi-cc {
  background-image: url("./media/cc-OVOWQDZT.svg");
}
.fi-cc.fis {
  background-image: url("./media/cc-RPI2SZZG.svg");
}
.fi-cd {
  background-image: url("./media/cd-EWAILBJX.svg");
}
.fi-cd.fis {
  background-image: url("./media/cd-775WWT4L.svg");
}
.fi-cf {
  background-image: url("./media/cf-XZ4EZSBL.svg");
}
.fi-cf.fis {
  background-image: url("./media/cf-NT7STPUR.svg");
}
.fi-cg {
  background-image: url("./media/cg-2HM4F56T.svg");
}
.fi-cg.fis {
  background-image: url("./media/cg-JMHTE5PU.svg");
}
.fi-ch {
  background-image: url("./media/ch-USJZZOGC.svg");
}
.fi-ch.fis {
  background-image: url("./media/ch-XK5AFUZJ.svg");
}
.fi-ci {
  background-image: url("./media/ci-KFEINJVJ.svg");
}
.fi-ci.fis {
  background-image: url("./media/ci-M54FCW6L.svg");
}
.fi-ck {
  background-image: url("./media/ck-ATMQHHMA.svg");
}
.fi-ck.fis {
  background-image: url("./media/ck-2Z4BDAPR.svg");
}
.fi-cl {
  background-image: url("./media/cl-Y567I43B.svg");
}
.fi-cl.fis {
  background-image: url("./media/cl-LIRBEXHU.svg");
}
.fi-cm {
  background-image: url("./media/cm-UKMPYCC7.svg");
}
.fi-cm.fis {
  background-image: url("./media/cm-6SBA3VM6.svg");
}
.fi-cn {
  background-image: url("./media/cn-P7M3XOME.svg");
}
.fi-cn.fis {
  background-image: url("./media/cn-ZNJNV4IL.svg");
}
.fi-co {
  background-image: url("./media/co-NN4OA66V.svg");
}
.fi-co.fis {
  background-image: url("./media/co-O2ECSUVX.svg");
}
.fi-cr {
  background-image: url("./media/cr-ZQEISEUX.svg");
}
.fi-cr.fis {
  background-image: url("./media/cr-DMRHIMC5.svg");
}
.fi-cu {
  background-image: url("./media/cu-IFDVQOOF.svg");
}
.fi-cu.fis {
  background-image: url("./media/cu-VWPEGJ3Z.svg");
}
.fi-cv {
  background-image: url("./media/cv-RMXBYFLP.svg");
}
.fi-cv.fis {
  background-image: url("./media/cv-KJX5SGW5.svg");
}
.fi-cw {
  background-image: url("./media/cw-SO4F3P5A.svg");
}
.fi-cw.fis {
  background-image: url("./media/cw-AJKHVX6T.svg");
}
.fi-cx {
  background-image: url("./media/cx-7UVFV3VV.svg");
}
.fi-cx.fis {
  background-image: url("./media/cx-IZ3KL2GP.svg");
}
.fi-cy {
  background-image: url("./media/cy-OJEUQTEX.svg");
}
.fi-cy.fis {
  background-image: url("./media/cy-EOO2JBKI.svg");
}
.fi-cz {
  background-image: url("./media/cz-PSDLWGGB.svg");
}
.fi-cz.fis {
  background-image: url("./media/cz-QNKUAFG6.svg");
}
.fi-de {
  background-image: url("./media/de-MZUAL5O7.svg");
}
.fi-de.fis {
  background-image: url("./media/de-OZB4IZTT.svg");
}
.fi-dj {
  background-image: url("./media/dj-7WZCZM6N.svg");
}
.fi-dj.fis {
  background-image: url("./media/dj-LE4POCSP.svg");
}
.fi-dk {
  background-image: url("./media/dk-JMBRHM34.svg");
}
.fi-dk.fis {
  background-image: url("./media/dk-RGBW7M2U.svg");
}
.fi-dm {
  background-image: url("./media/dm-YMQF4KNF.svg");
}
.fi-dm.fis {
  background-image: url("./media/dm-XZS4XU7P.svg");
}
.fi-do {
  background-image: url("./media/do-SBKDMMUM.svg");
}
.fi-do.fis {
  background-image: url("./media/do-LX7RYXZN.svg");
}
.fi-dz {
  background-image: url("./media/dz-5TGC2F6O.svg");
}
.fi-dz.fis {
  background-image: url("./media/dz-JVBE53J2.svg");
}
.fi-ec {
  background-image: url("./media/ec-7Z2J7NDS.svg");
}
.fi-ec.fis {
  background-image: url("./media/ec-YQIK2NB2.svg");
}
.fi-ee {
  background-image: url("./media/ee-K3ODV3VK.svg");
}
.fi-ee.fis {
  background-image: url("./media/ee-QZX5D2O5.svg");
}
.fi-eg {
  background-image: url("./media/eg-AR6V26BC.svg");
}
.fi-eg.fis {
  background-image: url("./media/eg-7JACT5ZO.svg");
}
.fi-eh {
  background-image: url("./media/eh-RQWWFEAA.svg");
}
.fi-eh.fis {
  background-image: url("./media/eh-7NPZFSBW.svg");
}
.fi-er {
  background-image: url("./media/er-KIRTBRZF.svg");
}
.fi-er.fis {
  background-image: url("./media/er-3WONC2FU.svg");
}
.fi-es {
  background-image: url("./media/es-W5FXGZQG.svg");
}
.fi-es.fis {
  background-image: url("./media/es-K3QE5W2N.svg");
}
.fi-et {
  background-image: url("./media/et-EWIPOR6K.svg");
}
.fi-et.fis {
  background-image: url("./media/et-QMP3OGKR.svg");
}
.fi-fi {
  background-image: url("./media/fi-S5EH7BG6.svg");
}
.fi-fi.fis {
  background-image: url("./media/fi-E3JGQ7PL.svg");
}
.fi-fj {
  background-image: url("./media/fj-U7G4LWJB.svg");
}
.fi-fj.fis {
  background-image: url("./media/fj-XWXY4C45.svg");
}
.fi-fk {
  background-image: url("./media/fk-F6TQFE43.svg");
}
.fi-fk.fis {
  background-image: url("./media/fk-M6YTU5ZV.svg");
}
.fi-fm {
  background-image: url("./media/fm-MJGAIAPB.svg");
}
.fi-fm.fis {
  background-image: url("./media/fm-T5U4ITOY.svg");
}
.fi-fo {
  background-image: url("./media/fo-M4LV5KMN.svg");
}
.fi-fo.fis {
  background-image: url("./media/fo-4IJHBALY.svg");
}
.fi-fr {
  background-image: url("./media/fr-6U4A3EWN.svg");
}
.fi-fr.fis {
  background-image: url("./media/fr-TMQYSRPC.svg");
}
.fi-ga {
  background-image: url("./media/ga-YVFEOFTR.svg");
}
.fi-ga.fis {
  background-image: url("./media/ga-5UURDNUX.svg");
}
.fi-gb {
  background-image: url("./media/gb-UUF3TOPS.svg");
}
.fi-gb.fis {
  background-image: url("./media/gb-QRYEKRSV.svg");
}
.fi-gd {
  background-image: url("./media/gd-4BNJI5VY.svg");
}
.fi-gd.fis {
  background-image: url("./media/gd-CSSVRXT2.svg");
}
.fi-ge {
  background-image: url("./media/ge-5I22MBRW.svg");
}
.fi-ge.fis {
  background-image: url("./media/ge-LAAYSAQO.svg");
}
.fi-gf {
  background-image: url("./media/gf-GQZN5HJ5.svg");
}
.fi-gf.fis {
  background-image: url("./media/gf-5PJTSXDP.svg");
}
.fi-gg {
  background-image: url("./media/gg-FIL6D5PB.svg");
}
.fi-gg.fis {
  background-image: url("./media/gg-EAZW2EKW.svg");
}
.fi-gh {
  background-image: url("./media/gh-YF6PQ6FW.svg");
}
.fi-gh.fis {
  background-image: url("./media/gh-ISFQEUNF.svg");
}
.fi-gi {
  background-image: url("./media/gi-DN7STW4R.svg");
}
.fi-gi.fis {
  background-image: url("./media/gi-EOG4XJCI.svg");
}
.fi-gl {
  background-image: url("./media/gl-PA2YIJP7.svg");
}
.fi-gl.fis {
  background-image: url("./media/gl-KRCL3NCK.svg");
}
.fi-gm {
  background-image: url("./media/gm-5WF3VK63.svg");
}
.fi-gm.fis {
  background-image: url("./media/gm-7HY34KI6.svg");
}
.fi-gn {
  background-image: url("./media/gn-MSN2M353.svg");
}
.fi-gn.fis {
  background-image: url("./media/gn-6GDXA6D7.svg");
}
.fi-gp {
  background-image: url("./media/gp-XPVJBMQZ.svg");
}
.fi-gp.fis {
  background-image: url("./media/gp-N7HRXPRG.svg");
}
.fi-gq {
  background-image: url("./media/gq-YVZPM5OI.svg");
}
.fi-gq.fis {
  background-image: url("./media/gq-YYJI24Q2.svg");
}
.fi-gr {
  background-image: url("./media/gr-YRG5TXUI.svg");
}
.fi-gr.fis {
  background-image: url("./media/gr-WKNXHTGC.svg");
}
.fi-gs {
  background-image: url("./media/gs-7YZXJO4D.svg");
}
.fi-gs.fis {
  background-image: url("./media/gs-JLTYLCJJ.svg");
}
.fi-gt {
  background-image: url("./media/gt-YX2GRSLF.svg");
}
.fi-gt.fis {
  background-image: url("./media/gt-BF2FD7AX.svg");
}
.fi-gu {
  background-image: url("./media/gu-WAZ6PJUI.svg");
}
.fi-gu.fis {
  background-image: url("./media/gu-5GFPBJ2H.svg");
}
.fi-gw {
  background-image: url("./media/gw-5JOHOM4A.svg");
}
.fi-gw.fis {
  background-image: url("./media/gw-MOUWXICS.svg");
}
.fi-gy {
  background-image: url("./media/gy-USKJNYER.svg");
}
.fi-gy.fis {
  background-image: url("./media/gy-636EOCYC.svg");
}
.fi-hk {
  background-image: url("./media/hk-7PG6PZYV.svg");
}
.fi-hk.fis {
  background-image: url("./media/hk-3TQIFL4W.svg");
}
.fi-hm {
  background-image: url("./media/hm-QK556LBN.svg");
}
.fi-hm.fis {
  background-image: url("./media/hm-LPWLC72J.svg");
}
.fi-hn {
  background-image: url("./media/hn-E5B7VZX4.svg");
}
.fi-hn.fis {
  background-image: url("./media/hn-ATO4TSJZ.svg");
}
.fi-hr {
  background-image: url("./media/hr-GS35EQR2.svg");
}
.fi-hr.fis {
  background-image: url("./media/hr-6DEEZSRK.svg");
}
.fi-ht {
  background-image: url("./media/ht-3IFWGGF6.svg");
}
.fi-ht.fis {
  background-image: url("./media/ht-T6IVA52U.svg");
}
.fi-hu {
  background-image: url("./media/hu-C3DDGX7P.svg");
}
.fi-hu.fis {
  background-image: url("./media/hu-3ULY6T2N.svg");
}
.fi-id {
  background-image: url("./media/id-JSWZPKEB.svg");
}
.fi-id.fis {
  background-image: url("./media/id-CT342IAA.svg");
}
.fi-ie {
  background-image: url("./media/ie-QFERZM3U.svg");
}
.fi-ie.fis {
  background-image: url("./media/ie-H76CLZVR.svg");
}
.fi-il {
  background-image: url("./media/il-QCYKQ6FR.svg");
}
.fi-il.fis {
  background-image: url("./media/il-DCNITDWQ.svg");
}
.fi-im {
  background-image: url("./media/im-I6NNH2NW.svg");
}
.fi-im.fis {
  background-image: url("./media/im-MR3WDGRG.svg");
}
.fi-in {
  background-image: url("./media/in-RFNBK4ET.svg");
}
.fi-in.fis {
  background-image: url("./media/in-2DLPX63L.svg");
}
.fi-io {
  background-image: url("./media/io-7R7OXQKY.svg");
}
.fi-io.fis {
  background-image: url("./media/io-NO27AS2A.svg");
}
.fi-iq {
  background-image: url("./media/iq-55AX5UMN.svg");
}
.fi-iq.fis {
  background-image: url("./media/iq-S6LS2NUN.svg");
}
.fi-ir {
  background-image: url("./media/ir-QAP3XBD4.svg");
}
.fi-ir.fis {
  background-image: url("./media/ir-WC3H5SOH.svg");
}
.fi-is {
  background-image: url("./media/is-3ECY77QF.svg");
}
.fi-is.fis {
  background-image: url("./media/is-IKJDNY7W.svg");
}
.fi-it {
  background-image: url("./media/it-SGJZRZTG.svg");
}
.fi-it.fis {
  background-image: url("./media/it-UM7O24C7.svg");
}
.fi-je {
  background-image: url("./media/je-FN5CO33V.svg");
}
.fi-je.fis {
  background-image: url("./media/je-F5K7ILFN.svg");
}
.fi-jm {
  background-image: url("./media/jm-2KQZARJN.svg");
}
.fi-jm.fis {
  background-image: url("./media/jm-XWWLCPNS.svg");
}
.fi-jo {
  background-image: url("./media/jo-DV2T64H3.svg");
}
.fi-jo.fis {
  background-image: url("./media/jo-L4N4B7NG.svg");
}
.fi-jp {
  background-image: url("./media/jp-I2KXFJBD.svg");
}
.fi-jp.fis {
  background-image: url("./media/jp-65TZY7K2.svg");
}
.fi-ke {
  background-image: url("./media/ke-6FWLA2OA.svg");
}
.fi-ke.fis {
  background-image: url("./media/ke-S65BOELU.svg");
}
.fi-kg {
  background-image: url("./media/kg-X2BMIK3G.svg");
}
.fi-kg.fis {
  background-image: url("./media/kg-TFH62HKQ.svg");
}
.fi-kh {
  background-image: url("./media/kh-CHVZUD2Q.svg");
}
.fi-kh.fis {
  background-image: url("./media/kh-4Z5KN7K4.svg");
}
.fi-ki {
  background-image: url("./media/ki-TZHFSXBP.svg");
}
.fi-ki.fis {
  background-image: url("./media/ki-FYE75PZ7.svg");
}
.fi-km {
  background-image: url("./media/km-PIG23ZAS.svg");
}
.fi-km.fis {
  background-image: url("./media/km-MRWRJE7G.svg");
}
.fi-kn {
  background-image: url("./media/kn-7U3Y5ED7.svg");
}
.fi-kn.fis {
  background-image: url("./media/kn-CCGIQR3T.svg");
}
.fi-kp {
  background-image: url("./media/kp-SEAR4W4Z.svg");
}
.fi-kp.fis {
  background-image: url("./media/kp-YJJ4ZO4H.svg");
}
.fi-kr {
  background-image: url("./media/kr-MU7S6YDV.svg");
}
.fi-kr.fis {
  background-image: url("./media/kr-W7DPZXO5.svg");
}
.fi-kw {
  background-image: url("./media/kw-625K23GU.svg");
}
.fi-kw.fis {
  background-image: url("./media/kw-7NHLMXCH.svg");
}
.fi-ky {
  background-image: url("./media/ky-J6OAXARV.svg");
}
.fi-ky.fis {
  background-image: url("./media/ky-Y3K2RVLW.svg");
}
.fi-kz {
  background-image: url("./media/kz-NYPJSTE2.svg");
}
.fi-kz.fis {
  background-image: url("./media/kz-A63AXCOQ.svg");
}
.fi-la {
  background-image: url("./media/la-EGLFW22S.svg");
}
.fi-la.fis {
  background-image: url("./media/la-UZ4XVL3O.svg");
}
.fi-lb {
  background-image: url("./media/lb-5UW5ZJWS.svg");
}
.fi-lb.fis {
  background-image: url("./media/lb-SW5QMKBD.svg");
}
.fi-lc {
  background-image: url("./media/lc-OULIXNAF.svg");
}
.fi-lc.fis {
  background-image: url("./media/lc-VMHZPRVP.svg");
}
.fi-li {
  background-image: url("./media/li-LTPNGJJM.svg");
}
.fi-li.fis {
  background-image: url("./media/li-SSDUPSSA.svg");
}
.fi-lk {
  background-image: url("./media/lk-W7CR3PX4.svg");
}
.fi-lk.fis {
  background-image: url("./media/lk-EMLG5DDX.svg");
}
.fi-lr {
  background-image: url("./media/lr-KO42VJWL.svg");
}
.fi-lr.fis {
  background-image: url("./media/lr-ETPAOBTN.svg");
}
.fi-ls {
  background-image: url("./media/ls-H76MXNPC.svg");
}
.fi-ls.fis {
  background-image: url("./media/ls-TV2LHLKM.svg");
}
.fi-lt {
  background-image: url("./media/lt-X5H273BZ.svg");
}
.fi-lt.fis {
  background-image: url("./media/lt-RSVM7DR2.svg");
}
.fi-lu {
  background-image: url("./media/lu-Q3PHAGF2.svg");
}
.fi-lu.fis {
  background-image: url("./media/lu-YUFF4VEK.svg");
}
.fi-lv {
  background-image: url("./media/lv-UD2OKAKZ.svg");
}
.fi-lv.fis {
  background-image: url("./media/lv-JFY5ZN55.svg");
}
.fi-ly {
  background-image: url("./media/ly-OZ6WDQ73.svg");
}
.fi-ly.fis {
  background-image: url("./media/ly-WFLGLZ3G.svg");
}
.fi-ma {
  background-image: url("./media/ma-VSPIMR33.svg");
}
.fi-ma.fis {
  background-image: url("./media/ma-AELGTMLU.svg");
}
.fi-mc {
  background-image: url("./media/mc-IV2TK64Y.svg");
}
.fi-mc.fis {
  background-image: url("./media/mc-RWDN7GBP.svg");
}
.fi-md {
  background-image: url("./media/md-3OSMP7CU.svg");
}
.fi-md.fis {
  background-image: url("./media/md-DLAQKR3G.svg");
}
.fi-me {
  background-image: url("./media/me-JF4ISXGZ.svg");
}
.fi-me.fis {
  background-image: url("./media/me-PYQLSQWK.svg");
}
.fi-mf {
  background-image: url("./media/mf-5RTEBV3V.svg");
}
.fi-mf.fis {
  background-image: url("./media/mf-XQEUTB33.svg");
}
.fi-mg {
  background-image: url("./media/mg-7XGP7WEH.svg");
}
.fi-mg.fis {
  background-image: url("./media/mg-JB33C2RL.svg");
}
.fi-mh {
  background-image: url("./media/mh-FZUUKPYM.svg");
}
.fi-mh.fis {
  background-image: url("./media/mh-QQZSE2EP.svg");
}
.fi-mk {
  background-image: url("./media/mk-4CGYETXE.svg");
}
.fi-mk.fis {
  background-image: url("./media/mk-F2FINWYG.svg");
}
.fi-ml {
  background-image: url("./media/ml-REJ3NIH6.svg");
}
.fi-ml.fis {
  background-image: url("./media/ml-XJ6OQGYU.svg");
}
.fi-mm {
  background-image: url("./media/mm-RDY24G3G.svg");
}
.fi-mm.fis {
  background-image: url("./media/mm-LCHQEOG3.svg");
}
.fi-mn {
  background-image: url("./media/mn-GZPVWGU7.svg");
}
.fi-mn.fis {
  background-image: url("./media/mn-W7QXSVY7.svg");
}
.fi-mo {
  background-image: url("./media/mo-LQF6KQBW.svg");
}
.fi-mo.fis {
  background-image: url("./media/mo-E2DHXYUL.svg");
}
.fi-mp {
  background-image: url("./media/mp-7OKXFG5J.svg");
}
.fi-mp.fis {
  background-image: url("./media/mp-RBBNB2UM.svg");
}
.fi-mq {
  background-image: url("./media/mq-KUXVEPE7.svg");
}
.fi-mq.fis {
  background-image: url("./media/mq-76GWDJXU.svg");
}
.fi-mr {
  background-image: url("./media/mr-WHEUMQBT.svg");
}
.fi-mr.fis {
  background-image: url("./media/mr-CAVFBP2S.svg");
}
.fi-ms {
  background-image: url("./media/ms-K7K4BZXH.svg");
}
.fi-ms.fis {
  background-image: url("./media/ms-FYMVQ26Q.svg");
}
.fi-mt {
  background-image: url("./media/mt-FKAZRJHZ.svg");
}
.fi-mt.fis {
  background-image: url("./media/mt-XCVQ55PC.svg");
}
.fi-mu {
  background-image: url("./media/mu-ZHDOJ3TI.svg");
}
.fi-mu.fis {
  background-image: url("./media/mu-IKV5OAGF.svg");
}
.fi-mv {
  background-image: url("./media/mv-6NYHRQLF.svg");
}
.fi-mv.fis {
  background-image: url("./media/mv-ZWMFKUNA.svg");
}
.fi-mw {
  background-image: url("./media/mw-NHPNPETS.svg");
}
.fi-mw.fis {
  background-image: url("./media/mw-MWTRGIR2.svg");
}
.fi-mx {
  background-image: url("./media/mx-CE2LQUFP.svg");
}
.fi-mx.fis {
  background-image: url("./media/mx-XQSZK5TD.svg");
}
.fi-my {
  background-image: url("./media/my-7QKJDGWA.svg");
}
.fi-my.fis {
  background-image: url("./media/my-FTOMRUNQ.svg");
}
.fi-mz {
  background-image: url("./media/mz-EUDOTZOI.svg");
}
.fi-mz.fis {
  background-image: url("./media/mz-J4CMZFUJ.svg");
}
.fi-na {
  background-image: url("./media/na-KS5KAAHO.svg");
}
.fi-na.fis {
  background-image: url("./media/na-UZGYZIPX.svg");
}
.fi-nc {
  background-image: url("./media/nc-7ZHOHZIE.svg");
}
.fi-nc.fis {
  background-image: url("./media/nc-KHCVQ3CA.svg");
}
.fi-ne {
  background-image: url("./media/ne-NIQVZJOH.svg");
}
.fi-ne.fis {
  background-image: url("./media/ne-3WV2VAGZ.svg");
}
.fi-nf {
  background-image: url("./media/nf-BY5TRXD6.svg");
}
.fi-nf.fis {
  background-image: url("./media/nf-IB6SVOCC.svg");
}
.fi-ng {
  background-image: url("./media/ng-5QXHJYS4.svg");
}
.fi-ng.fis {
  background-image: url("./media/ng-KJDQPHTZ.svg");
}
.fi-ni {
  background-image: url("./media/ni-KFRUCHJY.svg");
}
.fi-ni.fis {
  background-image: url("./media/ni-X5745JJN.svg");
}
.fi-nl {
  background-image: url("./media/nl-YSPORVIR.svg");
}
.fi-nl.fis {
  background-image: url("./media/nl-FSMODX3U.svg");
}
.fi-no {
  background-image: url("./media/no-JTVUCTCT.svg");
}
.fi-no.fis {
  background-image: url("./media/no-UUM3YD7C.svg");
}
.fi-np {
  background-image: url("./media/np-HJPOYHEB.svg");
}
.fi-np.fis {
  background-image: url("./media/np-VFDZHTRO.svg");
}
.fi-nr {
  background-image: url("./media/nr-7GG6ZEK3.svg");
}
.fi-nr.fis {
  background-image: url("./media/nr-VA5HA23D.svg");
}
.fi-nu {
  background-image: url("./media/nu-4OUEUAXX.svg");
}
.fi-nu.fis {
  background-image: url("./media/nu-VN2VZZK5.svg");
}
.fi-nz {
  background-image: url("./media/nz-CYQS4UPV.svg");
}
.fi-nz.fis {
  background-image: url("./media/nz-4KLKVJVG.svg");
}
.fi-om {
  background-image: url("./media/om-ISPXLMQJ.svg");
}
.fi-om.fis {
  background-image: url("./media/om-A5DSAHBH.svg");
}
.fi-pa {
  background-image: url("./media/pa-PC5ZUPN6.svg");
}
.fi-pa.fis {
  background-image: url("./media/pa-X3FDV5QL.svg");
}
.fi-pe {
  background-image: url("./media/pe-CMQM2GTM.svg");
}
.fi-pe.fis {
  background-image: url("./media/pe-OTUAVF3F.svg");
}
.fi-pf {
  background-image: url("./media/pf-IHUQZUIO.svg");
}
.fi-pf.fis {
  background-image: url("./media/pf-IMCFY7FY.svg");
}
.fi-pg {
  background-image: url("./media/pg-ZNRFG2YQ.svg");
}
.fi-pg.fis {
  background-image: url("./media/pg-5V4ZU7HT.svg");
}
.fi-ph {
  background-image: url("./media/ph-2IMCALLE.svg");
}
.fi-ph.fis {
  background-image: url("./media/ph-7XE723TW.svg");
}
.fi-pk {
  background-image: url("./media/pk-WUV7X2DC.svg");
}
.fi-pk.fis {
  background-image: url("./media/pk-HGQFY5FC.svg");
}
.fi-pl {
  background-image: url("./media/pl-JSSZW3KY.svg");
}
.fi-pl.fis {
  background-image: url("./media/pl-W7YEMTF5.svg");
}
.fi-pm {
  background-image: url("./media/pm-UVIIXDZR.svg");
}
.fi-pm.fis {
  background-image: url("./media/pm-NY5YOR5H.svg");
}
.fi-pn {
  background-image: url("./media/pn-WTQ2W2VH.svg");
}
.fi-pn.fis {
  background-image: url("./media/pn-LYI3AO5D.svg");
}
.fi-pr {
  background-image: url("./media/pr-RHIV6URD.svg");
}
.fi-pr.fis {
  background-image: url("./media/pr-5LEJVZHH.svg");
}
.fi-ps {
  background-image: url("./media/ps-V6KGIQPI.svg");
}
.fi-ps.fis {
  background-image: url("./media/ps-MUPGH2AI.svg");
}
.fi-pt {
  background-image: url("./media/pt-VTKAHQAY.svg");
}
.fi-pt.fis {
  background-image: url("./media/pt-OULXL7DV.svg");
}
.fi-pw {
  background-image: url("./media/pw-YQJZ6R4B.svg");
}
.fi-pw.fis {
  background-image: url("./media/pw-4R6NRIC7.svg");
}
.fi-py {
  background-image: url("./media/py-S5MYBXBE.svg");
}
.fi-py.fis {
  background-image: url("./media/py-MUR5PEE3.svg");
}
.fi-qa {
  background-image: url("./media/qa-6547HYTX.svg");
}
.fi-qa.fis {
  background-image: url("./media/qa-PHNLGCML.svg");
}
.fi-re {
  background-image: url("./media/re-2PCPYGMW.svg");
}
.fi-re.fis {
  background-image: url("./media/re-JUMEK724.svg");
}
.fi-ro {
  background-image: url("./media/ro-YBPUPSYC.svg");
}
.fi-ro.fis {
  background-image: url("./media/ro-JCC2KRGD.svg");
}
.fi-rs {
  background-image: url("./media/rs-HP76C2NL.svg");
}
.fi-rs.fis {
  background-image: url("./media/rs-B5C62J77.svg");
}
.fi-ru {
  background-image: url("./media/ru-FRCHSBTM.svg");
}
.fi-ru.fis {
  background-image: url("./media/ru-T3RKIDXZ.svg");
}
.fi-rw {
  background-image: url("./media/rw-ZBPAPAP4.svg");
}
.fi-rw.fis {
  background-image: url("./media/rw-ATVPPEBH.svg");
}
.fi-sa {
  background-image: url("./media/sa-BW46R3BR.svg");
}
.fi-sa.fis {
  background-image: url("./media/sa-TJ3JAAG4.svg");
}
.fi-sb {
  background-image: url("./media/sb-Z5VEZ25P.svg");
}
.fi-sb.fis {
  background-image: url("./media/sb-MOULO6LC.svg");
}
.fi-sc {
  background-image: url("./media/sc-V2MOTRIU.svg");
}
.fi-sc.fis {
  background-image: url("./media/sc-SWRDLW3S.svg");
}
.fi-sd {
  background-image: url("./media/sd-4DSZW3W3.svg");
}
.fi-sd.fis {
  background-image: url("./media/sd-ZQ44F7OI.svg");
}
.fi-se {
  background-image: url("./media/se-5RJHQXTW.svg");
}
.fi-se.fis {
  background-image: url("./media/se-NY67VEUK.svg");
}
.fi-sg {
  background-image: url("./media/sg-PLMFMQ2U.svg");
}
.fi-sg.fis {
  background-image: url("./media/sg-NR6HPXPC.svg");
}
.fi-sh {
  background-image: url("./media/sh-HLIV5IJZ.svg");
}
.fi-sh.fis {
  background-image: url("./media/sh-TJMGU47M.svg");
}
.fi-si {
  background-image: url("./media/si-ERIUG64V.svg");
}
.fi-si.fis {
  background-image: url("./media/si-PQDA3RQI.svg");
}
.fi-sj {
  background-image: url("./media/sj-EOPZSLCL.svg");
}
.fi-sj.fis {
  background-image: url("./media/sj-QYYJ3R3Y.svg");
}
.fi-sk {
  background-image: url("./media/sk-ELFBGQEC.svg");
}
.fi-sk.fis {
  background-image: url("./media/sk-IH44HMRL.svg");
}
.fi-sl {
  background-image: url("./media/sl-DE7XOWOL.svg");
}
.fi-sl.fis {
  background-image: url("./media/sl-XDRPTSE3.svg");
}
.fi-sm {
  background-image: url("./media/sm-JITZHE4P.svg");
}
.fi-sm.fis {
  background-image: url("./media/sm-T456GX2E.svg");
}
.fi-sn {
  background-image: url("./media/sn-KYWABXNT.svg");
}
.fi-sn.fis {
  background-image: url("./media/sn-HK436VOQ.svg");
}
.fi-so {
  background-image: url("./media/so-QH5SJVG2.svg");
}
.fi-so.fis {
  background-image: url("./media/so-SCWJTLJW.svg");
}
.fi-sr {
  background-image: url("./media/sr-HMODPFV5.svg");
}
.fi-sr.fis {
  background-image: url("./media/sr-BFJ2NIE7.svg");
}
.fi-ss {
  background-image: url("./media/ss-CYJKS5XU.svg");
}
.fi-ss.fis {
  background-image: url("./media/ss-N5S5IPGO.svg");
}
.fi-st {
  background-image: url("./media/st-4LIOQET4.svg");
}
.fi-st.fis {
  background-image: url("./media/st-ETCSW6CL.svg");
}
.fi-sv {
  background-image: url("./media/sv-SVKTTQZJ.svg");
}
.fi-sv.fis {
  background-image: url("./media/sv-JJ7PGQKT.svg");
}
.fi-sx {
  background-image: url("./media/sx-DIQRHMRS.svg");
}
.fi-sx.fis {
  background-image: url("./media/sx-XI7KKH7B.svg");
}
.fi-sy {
  background-image: url("./media/sy-D4ZDMKR3.svg");
}
.fi-sy.fis {
  background-image: url("./media/sy-6RCKNZUQ.svg");
}
.fi-sz {
  background-image: url("./media/sz-ZSNOQNHB.svg");
}
.fi-sz.fis {
  background-image: url("./media/sz-MG5COQXB.svg");
}
.fi-tc {
  background-image: url("./media/tc-DVAM44GW.svg");
}
.fi-tc.fis {
  background-image: url("./media/tc-PFTC74CB.svg");
}
.fi-td {
  background-image: url("./media/td-IEJMZVM7.svg");
}
.fi-td.fis {
  background-image: url("./media/td-L4QKZRA4.svg");
}
.fi-tf {
  background-image: url("./media/tf-PSLXXLYB.svg");
}
.fi-tf.fis {
  background-image: url("./media/tf-L6UFHBZP.svg");
}
.fi-tg {
  background-image: url("./media/tg-K4K352CF.svg");
}
.fi-tg.fis {
  background-image: url("./media/tg-UGUE6RST.svg");
}
.fi-th {
  background-image: url("./media/th-WAHAQKQK.svg");
}
.fi-th.fis {
  background-image: url("./media/th-543UAZS4.svg");
}
.fi-tj {
  background-image: url("./media/tj-Z2UJEGVZ.svg");
}
.fi-tj.fis {
  background-image: url("./media/tj-CVBC574I.svg");
}
.fi-tk {
  background-image: url("./media/tk-YC7WNHF3.svg");
}
.fi-tk.fis {
  background-image: url("./media/tk-JRIL6W7E.svg");
}
.fi-tl {
  background-image: url("./media/tl-FRLMYCHK.svg");
}
.fi-tl.fis {
  background-image: url("./media/tl-RI4B3XTP.svg");
}
.fi-tm {
  background-image: url("./media/tm-YD7DXRTX.svg");
}
.fi-tm.fis {
  background-image: url("./media/tm-NKHMK24W.svg");
}
.fi-tn {
  background-image: url("./media/tn-G7EOPTWC.svg");
}
.fi-tn.fis {
  background-image: url("./media/tn-ADYDPKKU.svg");
}
.fi-to {
  background-image: url("./media/to-4IPHWATD.svg");
}
.fi-to.fis {
  background-image: url("./media/to-Y3ZWK7GO.svg");
}
.fi-tr {
  background-image: url("./media/tr-2TE5SKW5.svg");
}
.fi-tr.fis {
  background-image: url("./media/tr-BXXVVJLD.svg");
}
.fi-tt {
  background-image: url("./media/tt-4CMF6HDJ.svg");
}
.fi-tt.fis {
  background-image: url("./media/tt-NK2SRYUQ.svg");
}
.fi-tv {
  background-image: url("./media/tv-HASL2ZPX.svg");
}
.fi-tv.fis {
  background-image: url("./media/tv-NEB4WA2N.svg");
}
.fi-tw {
  background-image: url("./media/tw-OOSFQCFC.svg");
}
.fi-tw.fis {
  background-image: url("./media/tw-X2EV3JOS.svg");
}
.fi-tz {
  background-image: url("./media/tz-F7DARXBO.svg");
}
.fi-tz.fis {
  background-image: url("./media/tz-DSCJI5GW.svg");
}
.fi-ua {
  background-image: url("./media/ua-6L6MVDVK.svg");
}
.fi-ua.fis {
  background-image: url("./media/ua-DEDK3LCD.svg");
}
.fi-ug {
  background-image: url("./media/ug-SUFOZCE2.svg");
}
.fi-ug.fis {
  background-image: url("./media/ug-IR5577EN.svg");
}
.fi-um {
  background-image: url("./media/um-3TCGFAMU.svg");
}
.fi-um.fis {
  background-image: url("./media/um-HPF3LBVV.svg");
}
.fi-us {
  background-image: url("./media/us-5WPJ3T3N.svg");
}
.fi-us.fis {
  background-image: url("./media/us-OS5BPCLY.svg");
}
.fi-uy {
  background-image: url("./media/uy-SU32MXNU.svg");
}
.fi-uy.fis {
  background-image: url("./media/uy-2LGNGCBQ.svg");
}
.fi-uz {
  background-image: url("./media/uz-6LD3WNBK.svg");
}
.fi-uz.fis {
  background-image: url("./media/uz-KR6UXLJE.svg");
}
.fi-va {
  background-image: url("./media/va-SWMHLWJN.svg");
}
.fi-va.fis {
  background-image: url("./media/va-IIHI4DCJ.svg");
}
.fi-vc {
  background-image: url("./media/vc-73265KDC.svg");
}
.fi-vc.fis {
  background-image: url("./media/vc-ENVAYUHB.svg");
}
.fi-ve {
  background-image: url("./media/ve-7QMM4EDR.svg");
}
.fi-ve.fis {
  background-image: url("./media/ve-7LNK7AU5.svg");
}
.fi-vg {
  background-image: url("./media/vg-K235OISV.svg");
}
.fi-vg.fis {
  background-image: url("./media/vg-UK5I2DQS.svg");
}
.fi-vi {
  background-image: url("./media/vi-A7WYZ7V4.svg");
}
.fi-vi.fis {
  background-image: url("./media/vi-VLVLCRRK.svg");
}
.fi-vn {
  background-image: url("./media/vn-OLY63DMY.svg");
}
.fi-vn.fis {
  background-image: url("./media/vn-QUENQA3C.svg");
}
.fi-vu {
  background-image: url("./media/vu-4BCJQIBN.svg");
}
.fi-vu.fis {
  background-image: url("./media/vu-4LYJO6DK.svg");
}
.fi-wf {
  background-image: url("./media/wf-XSUYVC54.svg");
}
.fi-wf.fis {
  background-image: url("./media/wf-64XCGZ3D.svg");
}
.fi-ws {
  background-image: url("./media/ws-PVUKQ4PE.svg");
}
.fi-ws.fis {
  background-image: url("./media/ws-P5MXR5ZW.svg");
}
.fi-ye {
  background-image: url("./media/ye-TWPEZHYT.svg");
}
.fi-ye.fis {
  background-image: url("./media/ye-R46HCZOQ.svg");
}
.fi-yt {
  background-image: url("./media/yt-ARO4LFTS.svg");
}
.fi-yt.fis {
  background-image: url("./media/yt-UUCGT7AF.svg");
}
.fi-za {
  background-image: url("./media/za-WS2IXHK7.svg");
}
.fi-za.fis {
  background-image: url("./media/za-IGVA77JN.svg");
}
.fi-zm {
  background-image: url("./media/zm-545JV347.svg");
}
.fi-zm.fis {
  background-image: url("./media/zm-LDTTV5LG.svg");
}
.fi-zw {
  background-image: url("./media/zw-HZY5LJGS.svg");
}
.fi-zw.fis {
  background-image: url("./media/zw-6ENSY5DW.svg");
}
.fi-arab {
  background-image: url("./media/arab-A42JLJNT.svg");
}
.fi-arab.fis {
  background-image: url("./media/arab-S6KYB4TR.svg");
}
.fi-asean {
  background-image: url("./media/asean-ELZDU4TE.svg");
}
.fi-asean.fis {
  background-image: url("./media/asean-SS3GRO5T.svg");
}
.fi-cefta {
  background-image: url("./media/cefta-HR3KQ2EO.svg");
}
.fi-cefta.fis {
  background-image: url("./media/cefta-NTUUUQSZ.svg");
}
.fi-cp {
  background-image: url("./media/cp-2DVX35UB.svg");
}
.fi-cp.fis {
  background-image: url("./media/cp-6QAMTOXH.svg");
}
.fi-dg {
  background-image: url("./media/dg-FXQ2KR4X.svg");
}
.fi-dg.fis {
  background-image: url("./media/dg-KL5G7PRJ.svg");
}
.fi-eac {
  background-image: url("./media/eac-DLAEKB33.svg");
}
.fi-eac.fis {
  background-image: url("./media/eac-RVDXN5KH.svg");
}
.fi-es-ct {
  background-image: url("./media/es-ct-LZMYMK2E.svg");
}
.fi-es-ct.fis {
  background-image: url("./media/es-ct-YZMY3BN2.svg");
}
.fi-es-ga {
  background-image: url("./media/es-ga-6PZUYNFD.svg");
}
.fi-es-ga.fis {
  background-image: url("./media/es-ga-CPWP5IRZ.svg");
}
.fi-es-pv {
  background-image: url("./media/es-pv-OXFBXZM5.svg");
}
.fi-es-pv.fis {
  background-image: url("./media/es-pv-TCDUGVHX.svg");
}
.fi-eu {
  background-image: url("./media/eu-Z34VKHYH.svg");
}
.fi-eu.fis {
  background-image: url("./media/eu-N4MK7TMC.svg");
}
.fi-gb-eng {
  background-image: url("./media/gb-eng-4H6GWTY6.svg");
}
.fi-gb-eng.fis {
  background-image: url("./media/gb-eng-KED2JQT6.svg");
}
.fi-gb-nir {
  background-image: url("./media/gb-nir-R3CUP5HV.svg");
}
.fi-gb-nir.fis {
  background-image: url("./media/gb-nir-6QHYPVOC.svg");
}
.fi-gb-sct {
  background-image: url("./media/gb-sct-CDZZA2QR.svg");
}
.fi-gb-sct.fis {
  background-image: url("./media/gb-sct-MYMPELAJ.svg");
}
.fi-gb-wls {
  background-image: url("./media/gb-wls-U35MHGIX.svg");
}
.fi-gb-wls.fis {
  background-image: url("./media/gb-wls-DTZ5TTAQ.svg");
}
.fi-ic {
  background-image: url("./media/ic-CQCOSBIQ.svg");
}
.fi-ic.fis {
  background-image: url("./media/ic-XC4APDRB.svg");
}
.fi-pc {
  background-image: url("./media/pc-TT6YEIH4.svg");
}
.fi-pc.fis {
  background-image: url("./media/pc-EX5GAM4Z.svg");
}
.fi-sh-ac {
  background-image: url("./media/sh-ac-JFUG6UDV.svg");
}
.fi-sh-ac.fis {
  background-image: url("./media/sh-ac-CA7Y7WNG.svg");
}
.fi-sh-hl {
  background-image: url("./media/sh-hl-YQIJUYB7.svg");
}
.fi-sh-hl.fis {
  background-image: url("./media/sh-hl-MZFPYVQ5.svg");
}
.fi-sh-ta {
  background-image: url("./media/sh-ta-E3Y363IZ.svg");
}
.fi-sh-ta.fis {
  background-image: url("./media/sh-ta-TYDLYCHE.svg");
}
.fi-un {
  background-image: url("./media/un-TACTIQXL.svg");
}
.fi-un.fis {
  background-image: url("./media/un-64W32BF7.svg");
}
.fi-xk {
  background-image: url("./media/xk-T7BAH4YE.svg");
}
.fi-xk.fis {
  background-image: url("./media/xk-SYLXNOIJ.svg");
}

/* src/photo-editor.css */
.ngx-pe-overlay-container {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 1rem;
  box-sizing: border-box;
}
.ngx-pe-overlay-container * {
  box-sizing: border-box;
}
.ngx-pe-dialog-container {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  outline: 0;
  width: 100%;
  height: auto;
  max-height: 95vh;
  box-shadow:
    0 11px 15px -7px #0003,
    0 24px 38px 3px #00000024,
    0 9px 46px 8px #0000001f;
  background: #333333;
  color: white;
  display: flex;
  flex-direction: column;
}
.ngx-pe-dialog-header {
  padding: 1rem 1rem 1rem 1rem;
  font-size: 1rem;
  font-weight: 400;
}
.ngx-pe-dialog-body {
  height: 100%;
  position: relative;
  box-sizing: border-box;
}
.ngx-pe-dialog-footer {
  padding: 1rem 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
.ngx-pe-cropper-wrapper {
  position: relative;
}
.ngx-pe-img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 300px;
}
.ngx-pe-tool-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  box-sizing: border-box;
  width: 100%;
}
.ngx-pe-tool-bar button {
  background-color: transparent;
  border-width: 0;
  color: #fff;
  cursor: pointer;
  float: left;
  font-size: 0.875rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
}
.ngx-pe-tool-bar button:hover {
  background-color: #0074d9;
  color: #fff;
}
.ngx-pe-tool-bar svg {
  width: 20px;
  height: 20px;
  fill: black;
}
.ngx-pe-btn {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: 0.25rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: #212529;
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb));
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
.ngx-pe-btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.ngx-pe-btn-outline-light {
  --bs-btn-color: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-hover-border-color: #f8f9fa;
  --bs-btn-focus-shadow-rgb:
    248,
    249,
    250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f8f9fa;
  --bs-btn-active-border-color: #f8f9fa;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f8f9fa;
  --bs-btn-disabled-bg: transparent;
  --bs-gradient: none;
}
.ngx-pe-btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb:
    49,
    132,
    253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}
.ngx-pe-loading {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #222222;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 10s ease;
}
.ngx-pe-processing {
  background-color: rgba(34, 34, 34, 0.8);
}
.ngx-pe-loading svg {
  width: 50px;
}

/* node_modules/@ionic/angular/css/palettes/dark.system.css */
@media (prefers-color-scheme: dark) {
  :root {
    --ion-color-primary: #4d8dff;
    --ion-color-primary-rgb:
      77,
      141,
      255;
    --ion-color-primary-contrast: #000;
    --ion-color-primary-contrast-rgb:
      0,
      0,
      0;
    --ion-color-primary-shade: #447ce0;
    --ion-color-primary-tint: #5f98ff;
    --ion-color-secondary: #46b1ff;
    --ion-color-secondary-rgb:
      70,
      177,
      255;
    --ion-color-secondary-contrast: #000;
    --ion-color-secondary-contrast-rgb:
      0,
      0,
      0;
    --ion-color-secondary-shade: #3e9ce0;
    --ion-color-secondary-tint: #59b9ff;
    --ion-color-tertiary: #8482fb;
    --ion-color-tertiary-rgb:
      132,
      130,
      251;
    --ion-color-tertiary-contrast: #000;
    --ion-color-tertiary-contrast-rgb:
      0,
      0,
      0;
    --ion-color-tertiary-shade: #7472dd;
    --ion-color-tertiary-tint: #908ffb;
    --ion-color-success: #2dd55b;
    --ion-color-success-rgb:
      45,
      213,
      91;
    --ion-color-success-contrast: #000;
    --ion-color-success-contrast-rgb:
      0,
      0,
      0;
    --ion-color-success-shade: #28bb50;
    --ion-color-success-tint: #42d96b;
    --ion-color-warning: #ffce31;
    --ion-color-warning-rgb:
      255,
      206,
      49;
    --ion-color-warning-contrast: #000;
    --ion-color-warning-contrast-rgb:
      0,
      0,
      0;
    --ion-color-warning-shade: #e0b52b;
    --ion-color-warning-tint: #ffd346;
    --ion-color-danger: #f24c58;
    --ion-color-danger-rgb:
      242,
      76,
      88;
    --ion-color-danger-contrast: #000;
    --ion-color-danger-contrast-rgb:
      0,
      0,
      0;
    --ion-color-danger-shade: #d5434d;
    --ion-color-danger-tint: #f35e69;
    --ion-color-light: #222428;
    --ion-color-light-rgb:
      34,
      36,
      40;
    --ion-color-light-contrast: #fff;
    --ion-color-light-contrast-rgb:
      255,
      255,
      255;
    --ion-color-light-shade: #1e2023;
    --ion-color-light-tint: #383a3e;
    --ion-color-medium: #989aa2;
    --ion-color-medium-rgb:
      152,
      154,
      162;
    --ion-color-medium-contrast: #000;
    --ion-color-medium-contrast-rgb:
      0,
      0,
      0;
    --ion-color-medium-shade: #86888f;
    --ion-color-medium-tint: #a2a4ab;
    --ion-color-dark: #f4f5f8;
    --ion-color-dark-rgb:
      244,
      245,
      248;
    --ion-color-dark-contrast: #000;
    --ion-color-dark-contrast-rgb:
      0,
      0,
      0;
    --ion-color-dark-shade: #d7d8da;
    --ion-color-dark-tint: #f5f6f9;
  }
  :root.ios {
    --ion-background-color: #000000;
    --ion-background-color-rgb:
      0,
      0,
      0;
    --ion-text-color: #ffffff;
    --ion-text-color-rgb:
      255,
      255,
      255;
    --ion-background-color-step-50: #0d0d0d;
    --ion-background-color-step-100: #1a1a1a;
    --ion-background-color-step-150: #262626;
    --ion-background-color-step-200: #333333;
    --ion-background-color-step-250: #404040;
    --ion-background-color-step-300: #4d4d4d;
    --ion-background-color-step-350: #595959;
    --ion-background-color-step-400: #666666;
    --ion-background-color-step-450: #737373;
    --ion-background-color-step-500: #808080;
    --ion-background-color-step-550: #8c8c8c;
    --ion-background-color-step-600: #999999;
    --ion-background-color-step-650: #a6a6a6;
    --ion-background-color-step-700: #b3b3b3;
    --ion-background-color-step-750: #bfbfbf;
    --ion-background-color-step-800: #cccccc;
    --ion-background-color-step-850: #d9d9d9;
    --ion-background-color-step-900: #e6e6e6;
    --ion-background-color-step-950: #f2f2f2;
    --ion-text-color-step-50: #f2f2f2;
    --ion-text-color-step-100: #e6e6e6;
    --ion-text-color-step-150: #d9d9d9;
    --ion-text-color-step-200: #cccccc;
    --ion-text-color-step-250: #bfbfbf;
    --ion-text-color-step-300: #b3b3b3;
    --ion-text-color-step-350: #a6a6a6;
    --ion-text-color-step-400: #999999;
    --ion-text-color-step-450: #8c8c8c;
    --ion-text-color-step-500: #808080;
    --ion-text-color-step-550: #737373;
    --ion-text-color-step-600: #666666;
    --ion-text-color-step-650: #595959;
    --ion-text-color-step-700: #4d4d4d;
    --ion-text-color-step-750: #404040;
    --ion-text-color-step-800: #333333;
    --ion-text-color-step-850: #262626;
    --ion-text-color-step-900: #1a1a1a;
    --ion-text-color-step-950: #0d0d0d;
    --ion-item-background: #000000;
    --ion-card-background: #1c1c1d;
  }
  :root.ios ion-modal {
    --ion-background-color: var(--ion-color-step-100, var(--ion-background-color-step-100));
    --ion-toolbar-background: var(--ion-color-step-150, var(--ion-background-color-step-150));
    --ion-toolbar-border-color: var(--ion-color-step-250, var(--ion-background-color-step-250));
  }
  :root.md {
    --ion-background-color: #121212;
    --ion-background-color-rgb:
      18,
      18,
      18;
    --ion-text-color: #ffffff;
    --ion-text-color-rgb:
      255,
      255,
      255;
    --ion-background-color-step-50: #1e1e1e;
    --ion-background-color-step-100: #2a2a2a;
    --ion-background-color-step-150: #363636;
    --ion-background-color-step-200: #414141;
    --ion-background-color-step-250: #4d4d4d;
    --ion-background-color-step-300: #595959;
    --ion-background-color-step-350: #656565;
    --ion-background-color-step-400: #717171;
    --ion-background-color-step-450: #7d7d7d;
    --ion-background-color-step-500: #898989;
    --ion-background-color-step-550: #949494;
    --ion-background-color-step-600: #a0a0a0;
    --ion-background-color-step-650: #acacac;
    --ion-background-color-step-700: #b8b8b8;
    --ion-background-color-step-750: #c4c4c4;
    --ion-background-color-step-800: #d0d0d0;
    --ion-background-color-step-850: #dbdbdb;
    --ion-background-color-step-900: #e7e7e7;
    --ion-background-color-step-950: #f3f3f3;
    --ion-text-color-step-50: #f3f3f3;
    --ion-text-color-step-100: #e7e7e7;
    --ion-text-color-step-150: #dbdbdb;
    --ion-text-color-step-200: #d0d0d0;
    --ion-text-color-step-250: #c4c4c4;
    --ion-text-color-step-300: #b8b8b8;
    --ion-text-color-step-350: #acacac;
    --ion-text-color-step-400: #a0a0a0;
    --ion-text-color-step-450: #949494;
    --ion-text-color-step-500: #898989;
    --ion-text-color-step-550: #7d7d7d;
    --ion-text-color-step-600: #717171;
    --ion-text-color-step-650: #656565;
    --ion-text-color-step-700: #595959;
    --ion-text-color-step-750: #4d4d4d;
    --ion-text-color-step-800: #414141;
    --ion-text-color-step-850: #363636;
    --ion-text-color-step-900: #2a2a2a;
    --ion-text-color-step-950: #1e1e1e;
    --ion-item-background: #1e1e1e;
    --ion-toolbar-background: #1f1f1f;
    --ion-tab-bar-background: #1f1f1f;
    --ion-card-background: #1e1e1e;
  }
}

/* src/global.scss */
.ghost-cell-container {
  background: #fff;
}
.ghost-cell-strip {
  background: #dee2e5;
  background-image:
    linear-gradient(
      to right,
      #dee2e5 0%,
      #dee2e5 10%,
      #fff,
      transparent);
  border-radius: 0;
  animation-duration: 10s;
}
.ngx-datatable .row-disabled {
  color: #83888e;
}
.ngx-datatable .row-disabled .datatable-body-cell-label {
  color: #83888e;
}
.ngx-datatable .datatable-row-wrapper .datatable-body-row.row-disabled:hover {
  background-color: inherit;
  transition: none;
}
.ngx-datatable .datatable-row-wrapper .datatable-body-row.row-disabled:hover .datatable-row-group {
  background-color: inherit;
  transition: none;
}
.ngx-datatable.bootstrap {
  box-shadow: none;
  font-size: 13px;
}
.ngx-datatable.bootstrap *,
.ngx-datatable.bootstrap *:before,
.ngx-datatable.bootstrap *:after {
  box-sizing: border-box;
}
.ngx-datatable.bootstrap .datatable-header {
  height: unset !important;
}
.ngx-datatable.bootstrap .datatable-header .datatable-header-cell {
  flex-shrink: 0;
  vertical-align: bottom;
  padding: 0.75rem;
  border-bottom: 1px solid #d1d4d7;
}
.ngx-datatable.bootstrap .datatable-header .datatable-header-cell .datatable-header-cell-label {
  line-height: 24px;
}
.ngx-datatable.bootstrap .datatable-body .datatable-body-row {
  vertical-align: top;
  border-top: 1px solid #d1d4d7;
}
.ngx-datatable.bootstrap .datatable-body .datatable-body-row.datatable-row-even {
  background-color: rgba(0, 0, 0, 0.05);
}
.ngx-datatable.bootstrap .datatable-body .datatable-body-row.active {
  background-color: #1483ff;
  color: #fff;
}
.ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell {
  flex-shrink: 0;
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}
.ngx-datatable.bootstrap .datatable-body .empty-row {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
}
.ngx-datatable.bootstrap .datatable-body .custom-loading-indicator-wrapper {
  position: sticky;
  top: 0;
  height: 0;
  z-index: 999;
}
.ngx-datatable.bootstrap .datatable-body .custom-loading-indicator-wrapper .custom-loading-content {
  width: 100%;
  background-color: #fff;
}
.ngx-datatable.bootstrap .datatable-footer {
  background: #424242;
  color: #ededed;
  margin-top: -1px;
}
.ngx-datatable.bootstrap .datatable-footer .page-count {
  line-height: 50px;
  height: 50px;
  padding: 0 1.2rem;
}
.ngx-datatable.bootstrap .datatable-footer .datatable-pager {
  margin: 0 10px;
  vertical-align: top;
}
.ngx-datatable.bootstrap .datatable-footer .datatable-pager ul li {
  margin: 10px 0px;
}
.ngx-datatable.bootstrap .datatable-footer .datatable-pager ul li:not(.disabled).active a,
.ngx-datatable.bootstrap .datatable-footer .datatable-pager ul li:not(.disabled):hover a {
  background-color: #545454;
  font-weight: bold;
}
.ngx-datatable.bootstrap .datatable-footer .datatable-pager a {
  height: 22px;
  min-width: 24px;
  line-height: 22px;
  padding: 0;
  border-radius: 3px;
  margin: 0 3px;
  text-align: center;
  vertical-align: top;
  text-decoration: none;
  vertical-align: bottom;
  color: #ededed;
}
.ngx-datatable.bootstrap .datatable-footer .datatable-pager .datatable-icon-left,
.ngx-datatable.bootstrap .datatable-footer .datatable-pager .datatable-icon-skip,
.ngx-datatable.bootstrap .datatable-footer .datatable-pager .datatable-icon-right,
.ngx-datatable.bootstrap .datatable-footer .datatable-pager .datatable-icon-prev {
  font-size: 18px;
  line-height: 27px;
  padding: 0 3px;
}
.ngx-datatable.bootstrap .datatable-summary-row .datatable-body-row .datatable-body-cell {
  font-weight: bold;
}
.ghost-cell-container {
  background: #fff;
}
.ghost-cell-strip {
  background: #dee2e5;
  background-image:
    linear-gradient(
      to right,
      #dee2e5 0%,
      #dee2e5 10%,
      #fff,
      transparent);
  border-radius: 0;
  animation-duration: 10s;
}
.ngx-datatable .row-disabled {
  color: #83888e;
}
.ngx-datatable .row-disabled .datatable-body-cell-label {
  color: #83888e;
}
.ngx-datatable .datatable-row-wrapper .datatable-body-row.row-disabled:hover {
  background-color: inherit;
  transition: none;
}
.ngx-datatable .datatable-row-wrapper .datatable-body-row.row-disabled:hover .datatable-row-group {
  background-color: inherit;
  transition: none;
}
.ngx-datatable.material {
  background: #fff;
  box-shadow:
    0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14),
    0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.ngx-datatable.material *,
.ngx-datatable.material *:before,
.ngx-datatable.material *:after {
  box-sizing: border-box;
}
.ngx-datatable.material.striped .datatable-row-odd {
  background: #eee;
}
.ngx-datatable.material.single-selection .datatable-body-row.active,
.ngx-datatable.material.single-selection .datatable-body-row.active .datatable-row-group,
.ngx-datatable.material.multi-selection .datatable-body-row.active,
.ngx-datatable.material.multi-selection .datatable-body-row.active .datatable-row-group,
.ngx-datatable.material.multi-click-selection .datatable-body-row.active,
.ngx-datatable.material.multi-click-selection .datatable-body-row.active .datatable-row-group {
  background-color: #304ffe;
  color: #fff;
}
.ngx-datatable.material.single-selection .datatable-body-row.active:hover,
.ngx-datatable.material.single-selection .datatable-body-row.active:hover .datatable-row-group,
.ngx-datatable.material.multi-selection .datatable-body-row.active:hover,
.ngx-datatable.material.multi-selection .datatable-body-row.active:hover .datatable-row-group,
.ngx-datatable.material.multi-click-selection .datatable-body-row.active:hover,
.ngx-datatable.material.multi-click-selection .datatable-body-row.active:hover .datatable-row-group {
  background-color: #193ae4;
  color: #fff;
}
.ngx-datatable.material.single-selection .datatable-body-row.active:focus,
.ngx-datatable.material.single-selection .datatable-body-row.active:focus .datatable-row-group,
.ngx-datatable.material.multi-selection .datatable-body-row.active:focus,
.ngx-datatable.material.multi-selection .datatable-body-row.active:focus .datatable-row-group,
.ngx-datatable.material.multi-click-selection .datatable-body-row.active:focus,
.ngx-datatable.material.multi-click-selection .datatable-body-row.active:focus .datatable-row-group {
  background-color: #2041ef;
  color: #fff;
}
.ngx-datatable.material:not(.cell-selection) .datatable-body-row:hover,
.ngx-datatable.material:not(.cell-selection) .datatable-body-row:hover .datatable-row-group {
  background-color: #eee;
  transition-property: background;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
.ngx-datatable.material:not(.cell-selection) .datatable-body-row:focus,
.ngx-datatable.material:not(.cell-selection) .datatable-body-row:focus .datatable-row-group {
  background-color: #ddd;
}
.ngx-datatable.material.cell-selection .datatable-body-cell:hover:not(.row-disabled),
.ngx-datatable.material.cell-selection .datatable-body-cell:hover:not(.row-disabled) .datatable-row-group {
  background-color: #eee;
  transition-property: background;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
.ngx-datatable.material.cell-selection .datatable-body-cell:focus:not(.row-disabled),
.ngx-datatable.material.cell-selection .datatable-body-cell:focus:not(.row-disabled) .datatable-row-group {
  background-color: #ddd;
}
.ngx-datatable.material.cell-selection .datatable-body-cell.active:not(.row-disabled),
.ngx-datatable.material.cell-selection .datatable-body-cell.active:not(.row-disabled) .datatable-row-group {
  background-color: #304ffe;
  color: #fff;
}
.ngx-datatable.material.cell-selection .datatable-body-cell.active:hover:not(.row-disabled),
.ngx-datatable.material.cell-selection .datatable-body-cell.active:hover:not(.row-disabled) .datatable-row-group {
  background-color: #193ae4;
  color: #fff;
}
.ngx-datatable.material.cell-selection .datatable-body-cell.active:focus:not(.row-disabled),
.ngx-datatable.material.cell-selection .datatable-body-cell.active:focus:not(.row-disabled) .datatable-row-group {
  background-color: #2041ef;
  color: #fff;
}
.ngx-datatable.material .empty-row {
  height: 50px;
  text-align: left;
  padding: 0.5rem 1.2rem;
  vertical-align: top;
  border-top: 0;
}
.ngx-datatable.material .loading-row {
  text-align: left;
  padding: 0.5rem 1.2rem;
  vertical-align: top;
  border-top: 0;
}
.ngx-datatable.material .datatable-header .datatable-row-left,
.ngx-datatable.material .datatable-body .datatable-row-left {
  background-color: #fff;
  background-position: 100% 0;
  background-repeat: repeat-y;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAYAAAD5PA/NAAAAFklEQVQIHWPSkNeSBmJhTQVtbiDNCgASagIIuJX8OgAAAABJRU5ErkJggg==);
}
.ngx-datatable.material .datatable-header .datatable-row-right,
.ngx-datatable.material .datatable-body .datatable-row-right {
  background-position: 0 0;
  background-color: #fff;
  background-repeat: repeat-y;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAYAAAD5PA/NAAAAFklEQVQI12PQkNdi1VTQ5gbSwkAsDQARLAIGtOSFUAAAAABJRU5ErkJggg==);
}
.ngx-datatable.material .datatable-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.ngx-datatable.material .datatable-header .datatable-header-cell {
  flex-shrink: 0;
  text-align: left;
  padding: 0.9rem 1.2rem;
  font-weight: 400;
  background-color: #fff;
  color: rgba(0, 0, 0, 0.54);
  vertical-align: bottom;
  font-size: 12px;
  font-weight: 500;
}
.ngx-datatable.material .datatable-header .datatable-header-cell .datatable-header-cell-wrapper {
  position: relative;
}
.ngx-datatable.material .datatable-header .datatable-header-cell.longpress .draggable::after {
  transition: transform 400ms ease, opacity 400ms ease;
  opacity: 0.5;
  transform: scale(1);
}
.ngx-datatable.material .datatable-header .datatable-header-cell .draggable::after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
  height: 60px;
  width: 60px;
  background: #eee;
  border-radius: 100%;
  opacity: 1;
  filter: none;
  transform: scale(0);
  z-index: 9999;
  pointer-events: none;
}
.ngx-datatable.material .datatable-header .datatable-header-cell.dragging .resize-handle {
  border-right: none;
}
.ngx-datatable.material .datatable-header .resize-handle {
  border-right: solid 1px #eee;
}
.ngx-datatable.material .datatable-body {
  position: relative;
}
.ngx-datatable.material .datatable-body .datatable-row-detail {
  background: #f5f5f5;
  padding: 10px;
}
.ngx-datatable.material .datatable-body .datatable-group-header {
  background: #f5f5f5;
  border-bottom: solid 1px #d9d8d9;
  border-top: solid 1px #d9d8d9;
}
.ngx-datatable.material .datatable-body .datatable-group-header .datatable-group-cell {
  padding-inline-start: 1.2rem;
  display: flex;
}
.ngx-datatable.material .datatable-body datatable-row-def {
  background-color: #fff;
}
.ngx-datatable.material .datatable-body .datatable-body-row {
  border-bottom: 1px solid #d9d8d9;
}
.ngx-datatable.material .datatable-body .datatable-body-row .datatable-body-cell {
  flex-shrink: 0;
  text-align: left;
  padding: 0.9rem 1.2rem;
  vertical-align: top;
  border-top: 0;
  color: rgba(0, 0, 0, 0.87);
  transition: width 0.3s ease;
  font-size: 14px;
  font-weight: 400;
}
.ngx-datatable.material .datatable-body .progress-linear {
  display: block;
  position: sticky;
  width: 100%;
  height: 0;
  z-index: 999;
  padding: 0;
  margin: 0;
  top: 0;
}
.ngx-datatable.material .datatable-body .progress-linear .container {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 5px;
  transform: translate(0, 0) scale(1, 1);
  background-color: rgb(170, 209, 249);
}
.ngx-datatable.material .datatable-body .progress-linear .container .bar {
  transition: all 0.2s linear;
  animation: query 0.8s infinite cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  background-color: rgb(16, 108, 200);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
}
.ngx-datatable.material .datatable-body .custom-loading-indicator-wrapper {
  position: sticky;
  top: 0;
  height: 0;
  z-index: 999;
}
.ngx-datatable.material .datatable-body .custom-loading-indicator-wrapper .custom-loading-content {
  width: 100%;
  background-color: #fff;
}
.ngx-datatable.material .datatable-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.54);
}
.ngx-datatable.material .datatable-footer .page-count {
  line-height: 50px;
  height: 50px;
  padding: 0 1.2rem;
}
.ngx-datatable.material .datatable-footer .datatable-pager {
  margin: 0 10px;
}
.ngx-datatable.material .datatable-footer .datatable-pager li {
  vertical-align: middle;
}
.ngx-datatable.material .datatable-footer .datatable-pager li.disabled a {
  color: rgba(0, 0, 0, 0.26) !important;
  background-color: transparent !important;
}
.ngx-datatable.material .datatable-footer .datatable-pager li.active a {
  background-color: rgba(158, 158, 158, 0.2);
  font-weight: bold;
}
.ngx-datatable.material .datatable-footer .datatable-pager a {
  height: 22px;
  min-width: 24px;
  line-height: 22px;
  padding: 0 6px;
  border-radius: 3px;
  margin: 6px 3px;
  text-align: center;
  vertical-align: top;
  color: rgba(0, 0, 0, 0.54);
  text-decoration: none;
  vertical-align: bottom;
}
.ngx-datatable.material .datatable-footer .datatable-pager a:hover {
  color: rgba(0, 0, 0, 0.75);
  background-color: rgba(158, 158, 158, 0.2);
}
.ngx-datatable.material .datatable-footer .datatable-pager .datatable-icon-left,
.ngx-datatable.material .datatable-footer .datatable-pager .datatable-icon-skip,
.ngx-datatable.material .datatable-footer .datatable-pager .datatable-icon-right,
.ngx-datatable.material .datatable-footer .datatable-pager .datatable-icon-prev {
  font-size: 20px;
  line-height: 20px;
  padding: 0 3px;
}
.ngx-datatable.material .datatable-summary-row .datatable-body-row {
  background-color: #ddd;
}
.ngx-datatable.material .datatable-summary-row .datatable-body-row:hover {
  background-color: #ddd;
}
.ngx-datatable.material .datatable-summary-row .datatable-body-row .datatable-body-cell {
  font-weight: bold;
}
.datatable-checkbox {
  position: relative;
  margin: 0;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  box-sizing: border-box;
  padding: 0;
}
.datatable-checkbox input[type=checkbox] {
  position: relative;
  margin: 0 1rem 0 0;
  cursor: pointer;
  outline: none;
}
.datatable-checkbox input[type=checkbox]:before {
  transition: all 0.3s ease-in-out;
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  width: 1rem;
  height: 1rem;
  border: 2px solid #f2f2f2;
}
.datatable-checkbox input[type=checkbox]:checked:before {
  transform: rotate(-45deg);
  height: 0.5rem;
  border-color: #009688;
  border-top-style: none;
  border-right-style: none;
}
.datatable-checkbox input[type=checkbox]:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  background: #fff;
  cursor: pointer;
}
@keyframes query {
  0% {
    opacity: 1;
    transform: translateX(35%) scale(0.3, 1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scale(0, 1);
  }
}
.ngx-datatable.material {
  box-shadow: none;
}
:root,
:host {
  --ion-background-color: #ebf4fd;
  --ion-color-primary: #6eb6dc;
  --ion-text-color: rgb(27, 28, 29);
}
@font-face {
  font-family: "Bainsley";
  src:
    url(/assets/fonts/Bainsley_Bold.otf) format("truetype"),
    url(/assets/fonts/Bainsley_Roman.otf) format("truetype"),
    url(/assets/fonts/Bainsley_Italic.otf) format("truetype"),
    url(/assets/fonts/Bainsley_Bold_Italic.otf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
.alert-button {
  height: initial !important;
  padding: 0.5em !important;
}
p {
  line-height: 1.3em;
  color: rgb(27, 28, 29) !important;
}
ion-menu {
  --max-width: 300px;
}
ion-menu ion-content {
  background: white !important;
  background-color: white !important;
  --background: white !important;
}
ion-menu ion-content img.banner {
  margin-top: max(0px, (var(--ion-safe-area-bottom, 0px)));
}
ion-menu ion-content ion-list {
  background: white !important;
  background-color: white !important;
  --background: white !important;
}
ion-menu ion-content ion-list ion-item {
  background: white !important;
  background-color: white !important;
  --background: white !important;
}
ion-menu ion-content ion-menu-toggle ion-item {
  background: white !important;
  background-color: white !important;
  --background: white !important;
}
ion-menu ion-content ion-menu-toggle img.icon {
  width: 2em;
}
ion-split-pane {
  --side-max-width: 300px;
}
.native-input,
textarea {
  border-radius: 15px;
  padding: 0.5em 0.5em 0.5em 0.8em !important;
  --background: #ffffff;
  background-color: white !important;
}
ion-input,
textarea {
  --background: #ffffff;
  background-color: white !important;
  border-radius: 15px;
}
input:focus,
.has-focus {
  --placeholder-opacity: 0;
}
input:focus::-webkit-input-placeholder,
.has-focus::-webkit-input-placeholder {
  color: transparent;
}
input:focus:-moz-placeholder,
.has-focus:-moz-placeholder {
  color: transparent;
}
input:focus::-moz-placeholder,
.has-focus::-moz-placeholder {
  color: transparent;
}
input:focus:-ms-input-placeholder,
.has-focus:-ms-input-placeholder {
  color: transparent;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
textarea {
  border: none !important;
  -webkit-text-fill-color: inherit !important;
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
  transition: background-color 5000s ease-in-out 0s;
}
@media (prefers-color-scheme: dark) {
  ion-menu ion-content {
    background: rgb(26, 26, 26) !important;
    background-color: rgb(26, 26, 26) !important;
    --background: rgb(26, 26, 26) !important;
  }
  ion-menu ion-content ion-list {
    background: rgb(26, 26, 26) !important;
    background-color: rgb(26, 26, 26) !important;
    --background: rgb(26, 26, 26) !important;
  }
  ion-menu ion-content ion-list ion-item {
    background: rgb(26, 26, 26) !important;
    background-color: rgb(26, 26, 26) !important;
    --background: rgb(26, 26, 26) !important;
  }
  ion-menu ion-content ion-menu-toggle ion-item {
    background: rgb(26, 26, 26) !important;
    background-color: rgb(26, 26, 26) !important;
    --background: rgb(26, 26, 26) !important;
  }
  ion-content::part(background) {
    background-color: rgb(26, 26, 26) !important;
  }
  .native-input,
  textarea {
    --background: rgb(92 89 89);
    background-color: rgb(92, 89, 89) !important;
  }
  ion-input,
  textarea {
    --background: rgb(92 89 89);
    background-color: rgb(92, 89, 89) !important;
  }
  input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus input:-webkit-autofill,
  textarea:-webkit-autofill,
  textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
  select:-webkit-autofill,
  select:-webkit-autofill:hover,
  select:-webkit-autofill:focus,
  textarea {
    -webkit-box-shadow: 0 0 0px 1000px rgb(92, 89, 89) inset !important;
  }
  p {
    color: #fff !important;
  }
}
.label-stacked,
.label-form {
  font-size: 0.875rem !important;
  margin-left: 0.8em;
  margin-bottom: 0.5em !important;
  margin-top: 1em !important;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.8509803922) !important;
}
.form-error-message {
  margin-left: 1.8em;
  margin-top: 0.5em;
  color: var(--ion-color-danger);
}
ion-button {
  height: 2.5em;
  --padding-start: 0.5em;
  --padding-end: 0.5em;
}
ion-button.google {
  background: white;
  --background: white;
  color: black;
  border-radius: 10px;
}
ion-menu-toggle {
  display: block !important;
}
img.avatar {
  border-radius: 50%;
}
div.form > * {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
ion-content div.contentCenter {
  margin: auto;
  max-width: 500px;
}
ion-content ion-title:not(ion-toolbar ion-title),
ion-content ion-label.title:not(ion-toolbar ion-title) {
  height: fit-content;
  position: relative;
  padding: 1em 1em 0em 0.5em;
  text-align: left;
  color: var(--ion-color-primary);
  font-size: 1.2em;
}
ion-content ion-title:not(ion-toolbar ion-title) .highlight,
ion-content ion-label.title:not(ion-toolbar ion-title) .highlight {
  color: #000;
}
ion-content ion-label .highlightRevert {
  color: var(--ion-color-primary);
}
ion-content ion-label .bold {
  font-weight: bold;
}
ion-content ion-label.title {
  font-weight: bold;
  padding-left: 0;
  font-size: 1.2em !important;
}
p ion-icon {
  vertical-align: middle;
}
ion-popover ion-content {
  --padding-bottom: 0em;
}
ion-title {
  font-family: "Iconic";
  font-size: 1.6em;
}
ion-title .highlight {
  color: #000;
}
@media (prefers-color-scheme: dark) {
  ion-title .highlight {
    color: rgb(235, 235, 235);
  }
  ion-content ion-title .highlight {
    color: rgb(235, 235, 235);
  }
}
@media screen and (min-width: 500px) {
  ion-content ion-title {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 499px) {
  .hideOnSmallScreen {
    display: none !important;
  }
}
ion-title.center {
  text-align: center;
}
ion-list-header {
  background: none;
  color: var(--ion-color-primary);
  font-family: "Iconic";
  font-size: 1.6em;
}
datetime-button {
  width: 100%;
  background: white;
  border-radius: 15px;
}
datetime-button table.embed {
  margin: auto;
}
div.input,
.form {
  width: 100%;
  background: white;
  --background: white;
  border-radius: 15px;
}
ion-select {
  width: 100%;
  background: white;
  border-radius: 15px;
  padding: 0em 0.5em 0em 0.8em !important;
}
ion-segment-view {
  min-height: fit-content;
}
@media (prefers-color-scheme: dark) {
  ion-select {
    background: rgb(92, 89, 89);
  }
}
ion-label {
  line-height: 130%;
}
ion-label.small {
  font-size: 0.8em;
}
ion-select::part(container) {
  width: 100% !important;
  margin-right: 35px;
}
ion-select::part(icon) {
  position: absolute;
  right: 1em;
}
.form-actions {
  margin-top: 1em;
}
ion-button ion-label,
ion-button span {
  margin-left: 0.4em;
}
ion-toolbar {
  --background: white;
}
ion-toolbar ion-title {
  padding-inline-start: 50px;
  text-align: left;
  font-family: "Iconic";
  font-size: 1.2em;
  color: var(--ion-color-primary);
}
@media (prefers-color-scheme: dark) {
  ion-toolbar {
    --background: rgb(26, 26, 26);
  }
}
ion-footer ion-toolbar {
  --background: var(--ion-background-color);
}
ion-modal ion-footer {
  margin-bottom: 0px;
}
ion-modal ion-content.padding {
  --padding-start: 0.5em !important;
  --padding-end: 0.5em !important;
  --padding-bottom: 0.5em !important;
}
@media screen and (min-width: 500px) {
  ion-modal {
    --width: 80%;
    --min-width: 300px;
    --max-width: 1000px;
    --height: 80%;
    --min-height: 300px;
    --max-height: 100%;
  }
}
ion-icon.button {
  cursor: pointer;
}
ion-icon.chat {
  color: #fbb13b;
}
div.chip {
  margin-right: 0.3em;
  display: inline-block;
  background-color: #8abdfb;
  border-radius: 2em;
  padding: 0 1em 0 0em;
  color: #fefefe;
  font-weight: 800;
  font-size: 0.8em;
  margin-bottom: 0em;
  width: max-content;
  margin-top: 1em;
  vertical-align: middle;
  min-height: 2em;
  max-width: 100%;
  transition: background-color 0.3s linear;
}
div.chip div {
  display: inline-block;
  vertical-align: middle;
}
div.chip img,
div.chip div.img {
  max-width: 35px;
  padding: 0.2em;
  margin-right: 0.3em;
  vertical-align: middle;
  display: inline-block;
}
div.chip ion-icon {
  font-size: 2em;
}
div.chip ion-button {
  font-size: 0.7em;
  opacity: 0.3;
  vertical-align: middle;
  padding: 0;
  --padding-start: 0;
  --padding-end: 0;
}
div.chip ion-button::part(native) {
  border: 0px;
}
div.chip ion-button.add {
  font-size: 1em;
  opacity: 1;
  color: initial;
}
div.chip.link {
  cursor: pointer;
}
div.chip.center {
  padding: 0 0.2em 0 0.2em;
}
div.chip.danger {
  background-color: #ff0000;
}
div.chip.warning {
  background-color: #ffbf53;
}
div.chip.success {
  background-color: #49b900;
}
div.chip.noBackground {
  background: none;
}
div.chip.noImage {
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-top: 0.35em;
}
div.chip.click {
  cursor: pointer;
}
div.chip.notoppadding {
  margin-top: 0;
}
div.chip.noBackground {
  background-color: initial;
  color: var(--ion-text-color);
  font-weight: initial;
}
div.chip.noPadding {
  margin-top: 0;
  padding-top: 0.2em;
}
div.chip.iconOnly {
  padding: 0.5em;
}
div.chip.iconOnly img {
  margin-right: 0;
}
div.chip:hover {
  box-shadow: 0 0 2px var(--ion-color-primary) inset;
}
span.action {
  font-size: 0.8em;
  text-decoration: underline;
  text-align: right;
  cursor: pointer;
  opacity: 0.8;
  margin: auto;
  font-weight: bold;
}
span.description {
  font-size: 0.8em;
  text-align: right;
  opacity: 0.8;
  margin: auto;
  font-weight: bold;
}
span.action.float,
span.description.float {
  float: right;
}
ion-list-header span.action {
  font-size: 0.5em;
  margin-right: 1.5em;
  color: rgba(0, 0, 0, 0.85);
}
p.noPadding {
  padding: 0;
}
ion-chip {
  font-weight: bold;
}
ion-chip.noBackground {
  background-color: initial;
}
.white-space {
  white-space: pre-wrap;
}
.nowrap {
  white-space: nowrap;
}
table.weights {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #dadada;
}
table.weights tr {
  border: 1px solid #dadada;
}
table.weights td {
  border: 1px solid #dadada;
  padding: 0.2em;
  vertical-align: middle;
  font-size: 0.9em;
}
table.weights td span.action ion-icon {
  font-size: 2em;
  vertical-align: middle;
}
table.form {
  width: 100%;
}
table.form tr th {
  text-align: left;
  padding-bottom: 0.5em;
  padding-left: 1em;
}
table.form tr td {
  padding: 0.2em;
}
div.photoAndButton img {
  display: inline-block;
  vertical-align: middle;
  margin-left: 2em;
  max-width: 4em;
}
div.photoAndButton ion-button {
  display: inline-block;
  vertical-align: middle;
  margin-left: 1em;
}
@media (prefers-color-scheme: dark) {
  ion-item::part(native) {
    background: initial;
  }
  .label-stacked,
  .label-form {
    color: #fff !important;
  }
}
div.chatIA {
  padding-left: 0.2em;
  padding-right: 0.2em;
}
div.chatIA .bubble {
  margin: 0.5em;
  padding: 0.3em;
  position: relative;
  border-radius: 10px;
}
div.chatIA .bubble p {
  margin: 0.7em;
  line-height: 150%;
}
div.chatIA .bubble li {
  margin-left: 1em;
}
div.chatIA .bubble.left {
  background-color: rgba(222, 222, 222, 0.5333333333);
}
div.chatIA .bubble.right {
  background-color: rgba(215, 246, 208, 0.5333333333);
}
.ol-overlaycontainer-stopevent {
  z-index: 9999999 !important;
}
.ol-control {
  z-index: 9999999 !important;
  background-color: #0781c3;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: 0.2s transform cubic-bezier(0.25, 1.11, 0.78, 1.59);
  border-radius: 50%;
}
.ol-control:hover {
  background-color: #0781c3;
}
.ol-control:has(> :nth-child(1)) {
  border-radius: 3em;
}
.ol-control button {
  background: transparent !important;
}
.ol-control button:hover {
  background: transparent !important;
}
.ol-layer-switch {
  top: 80px;
  left: 0.5em;
}
.ol-layer-switch button {
  padding: 0px;
}
.ol-layer-switch button img {
  border-radius: 50%;
}
.ol-touch .ol-layer-switch {
  top: 95px;
  padding: 2px;
}
span.identifier {
  font-style: italic;
  opacity: 0.7;
}
.iconReportAbuse {
  float: right;
  margin-right: 15px !important;
  cursor: pointer;
}
.tableOrList_table {
  display: none;
}
.hidden {
  display: none;
}
@media screen and (min-width: 1300px) {
  .tableOrList_list {
    display: none !important;
  }
  .tableOrList_table {
    display: block;
  }
}
ion-label.label-stacked.optional {
  font-style: italic;
  font-weight: normal;
}
.thumbnails {
  margin: auto;
  display: inline-block;
  padding: 0.5em;
  vertical-align: middle;
}
.thumbnails img {
  border-radius: 10px;
  margin: 0.5em;
  max-width: 5em;
  max-height: 5em;
  object-fit: cover;
}
.thumbnails ion-col {
  text-align: center;
}
.thumbnails.click img {
  cursor: pointer;
}
.thumbnails.large img {
  max-width: 10em;
  max-height: 10em;
  object-fit: cover;
}

/* src/global.platform.scss */

/* src/theme/refuge.scss */
div.chip.refugeCategory_vert {
  background-color: green;
  color: white !important;
}
div.chip.refugeCategory_orange {
  background-color: orange;
  color: white !important;
}
div.chip.refugeCategory_rouge {
  background-color: red;
  color: white !important;
}
ion-app.SonEspaceRefuge {
  --ion-background-color: #eefeeb;
  --ion-color-primary: #3d8e85;
  --ion-color-primary-rgb:
    24,
    56,
    52;
  --ion-color-secondary: #73d6cb;
  --ion-color-secondary-rgb:
    45,
    84,
    80;
}
ion-app.SonEspaceRefuge .sonEspaceSante-tabs {
  background-color: #73d6cb !important;
}

/* src/theme/variables.scss */

/* src/theme/sonEspaceSante-tabs.scss */
:root,
:host {
  --sonEspaceSante-height: 60px;
  --sonEspaceSante-nbTabs: 5;
  --sonEspaceSante-tab-width: calc(100% / var(--sonEspaceSante-nbTabs));
}
.ion-page {
  padding-bottom: calc(var(--sonEspaceSante-height) - min(0px, var(--ion-safe-area-bottom, 0px)));
}
ion-modal .ion-page {
  padding-bottom: 0px !important;
}
.sonEspaceSante-tabs {
  width: 100%;
  position: relative;
  display: table;
  padding: 0.3em;
  bottom: calc(-100% + var(--sonEspaceSante-height) + (var(--ion-safe-area-bottom, 0px)));
  height: calc(var(--sonEspaceSante-height) + var(--ion-safe-area-bottom, 0px));
  z-index: 999;
}
.sonEspaceSante-tabs a {
  text-decoration: none;
  display: table-cell;
  text-align: center;
  margin: 0.5em;
  padding: 5px;
  position: relative;
  z-index: 1;
  background-color: transparent;
  width: calc(100% / var(--sonEspaceSante-nbTabs));
  -webkit-transition: 0.3s;
}
.sonEspaceSante-tabs a ion-icon {
  font-size: 30px;
  display: block;
  margin: auto;
}
.sonEspaceSante-tabs a img {
  display: block;
  margin: auto;
  height: 30px;
}
.sonEspaceSante-tabs a ion-label {
  display: block !important;
  font-size: 10px;
  text-align: center;
  display: inline;
  font-weight: bold;
}
.sonEspaceSante-tabs a.selected ion-icon {
  color: #000;
}
.sonEspaceSante-tabs::before {
  content: "";
  position: absolute;
  top: 0px;
  height: 0px;
  background-color: #fbb13b;
  border-radius: 8px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.4) inset;
  width: calc(var(--sonEspaceSante-tab-width));
  margin: 4px 5px 4px 5px;
  left: var(--left, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  will-change: left;
}
.sonEspaceSante-tabs:has(a:nth-child(1).selected)::before {
  --left: calc(0 * var(--sonEspaceSante-tab-width));
  height: 52px;
}
.sonEspaceSante-tabs:has(a:nth-child(2).selected)::before {
  --left: calc(1 * var(--sonEspaceSante-tab-width) - 3px);
  height: 52px;
}
.sonEspaceSante-tabs:has(a:nth-child(3).selected)::before {
  --left: calc(2 * var(--sonEspaceSante-tab-width) - 5px);
  height: 52px;
}
.sonEspaceSante-tabs:has(a:nth-child(4).selected)::before {
  --left: calc(3 * var(--sonEspaceSante-tab-width) - 8px);
  height: 52px;
}
.sonEspaceSante-tabs:has(a:nth-child(5).selected)::before {
  --left: calc(4 * var(--sonEspaceSante-tab-width) - 11px);
  height: 52px;
}
@media (prefers-color-scheme: light) {
  .sonEspaceSante-tabs {
    background-color: #d3ecfa;
  }
  .sonEspaceSante-tabs a {
    color: #000;
  }
  .sonEspaceSante-tabs a ion-label {
    color: #383737;
  }
}
@media (prefers-color-scheme: dark) {
  .sonEspaceSante-tabs {
    background-color: #000;
  }
  .sonEspaceSante-tabs div {
    color: #fff;
  }
  .sonEspaceSante-tabs a ion-icon {
    color: #73849a;
  }
  .sonEspaceSante-tabs a ion-label {
    color: #fff;
  }
}
body.keyboard-is-open .sonEspaceSante-tabs {
  display: none;
}

/* node_modules/quill/dist/quill.core.css */
/*!
 * Quill Editor v2.0.3
 * https://quilljs.com
 * Copyright (c) 2017-2024, Slab
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family:
    Helvetica,
    Arial,
    sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container:not(.ql-disabled) li[data-list=checked] > .ql-ui,
.ql-container:not(.ql-disabled) li[data-list=unchecked] > .ql-ui {
  cursor: pointer;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
}
@supports (counter-set:none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-set: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor table {
  border-collapse: collapse;
}
.ql-editor td {
  border: 1px solid #000;
  padding: 2px 5px;
}
.ql-editor ol {
  padding-left: 1.5em;
}
.ql-editor li {
  list-style-type: none;
  padding-left: 1.5em;
  position: relative;
}
.ql-editor li > .ql-ui:before {
  display: inline-block;
  margin-left: -1.5em;
  margin-right: .3em;
  text-align: right;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li[data-list=checked] > .ql-ui,
.ql-editor li[data-list=unchecked] > .ql-ui {
  color: #777;
}
.ql-editor li[data-list=bullet] > .ql-ui:before {
  content: "\2022";
}
.ql-editor li[data-list=checked] > .ql-ui:before {
  content: "\2611";
}
.ql-editor li[data-list=unchecked] > .ql-ui:before {
  content: "\2610";
}
@supports (counter-set:none) {
  .ql-editor li[data-list] {
    counter-set: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list] {
    counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered] {
  counter-increment: list-0;
}
.ql-editor li[data-list=ordered] > .ql-ui:before {
  content: counter(list-0, decimal) ". ";
}
.ql-editor li[data-list=ordered].ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor li[data-list=ordered].ql-indent-1 > .ql-ui:before {
  content: counter(list-1, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-set: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor li[data-list=ordered].ql-indent-2 > .ql-ui:before {
  content: counter(list-2, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-set: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor li[data-list=ordered].ql-indent-3 > .ql-ui:before {
  content: counter(list-3, decimal) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-set: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor li[data-list=ordered].ql-indent-4 > .ql-ui:before {
  content: counter(list-4, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-set: list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-reset: list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor li[data-list=ordered].ql-indent-5 > .ql-ui:before {
  content: counter(list-5, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-set: list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-reset: list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor li[data-list=ordered].ql-indent-6 > .ql-ui:before {
  content: counter(list-6, decimal) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-set: list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-reset: list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor li[data-list=ordered].ql-indent-7 > .ql-ui:before {
  content: counter(list-7, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-set: list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-reset: list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor li[data-list=ordered].ql-indent-8 > .ql-ui:before {
  content: counter(list-8, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-set: list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-reset: list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor li[data-list=ordered].ql-indent-9 > .ql-ui:before {
  content: counter(list-9, decimal) ". ";
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor li.ql-direction-rtl > .ql-ui:before {
  margin-left: .3em;
  margin-right: -1.5em;
  text-align: left;
}
.ql-editor table {
  table-layout: fixed;
  width: 100%;
}
.ql-editor table td {
  outline: none;
}
.ql-editor .ql-code-block-container {
  font-family: monospace;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family:
    Georgia,
    Times New Roman,
    serif;
}
.ql-editor .ql-font-monospace {
  font-family:
    Monaco,
    Courier New,
    monospace;
}
.ql-editor .ql-size-small {
  font-size: .75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor .ql-ui {
  position: absolute;
}
.ql-editor.ql-blank::before {
  color: rgba(0, 0, 0, 0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}

/* node_modules/quill/dist/quill.snow.css */
/*!
 * Quill Editor v2.0.3
 * https://quilljs.com
 * Copyright (c) 2017-2024, Slab
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family:
    Helvetica,
    Arial,
    sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container:not(.ql-disabled) li[data-list=checked] > .ql-ui,
.ql-container:not(.ql-disabled) li[data-list=unchecked] > .ql-ui {
  cursor: pointer;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
}
@supports (counter-set:none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-set: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor table {
  border-collapse: collapse;
}
.ql-editor td {
  border: 1px solid #000;
  padding: 2px 5px;
}
.ql-editor ol {
  padding-left: 1.5em;
}
.ql-editor li {
  list-style-type: none;
  padding-left: 1.5em;
  position: relative;
}
.ql-editor li > .ql-ui:before {
  display: inline-block;
  margin-left: -1.5em;
  margin-right: .3em;
  text-align: right;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li[data-list=checked] > .ql-ui,
.ql-editor li[data-list=unchecked] > .ql-ui {
  color: #777;
}
.ql-editor li[data-list=bullet] > .ql-ui:before {
  content: "\2022";
}
.ql-editor li[data-list=checked] > .ql-ui:before {
  content: "\2611";
}
.ql-editor li[data-list=unchecked] > .ql-ui:before {
  content: "\2610";
}
@supports (counter-set:none) {
  .ql-editor li[data-list] {
    counter-set: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list] {
    counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered] {
  counter-increment: list-0;
}
.ql-editor li[data-list=ordered] > .ql-ui:before {
  content: counter(list-0, decimal) ". ";
}
.ql-editor li[data-list=ordered].ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor li[data-list=ordered].ql-indent-1 > .ql-ui:before {
  content: counter(list-1, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-set: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor li[data-list=ordered].ql-indent-2 > .ql-ui:before {
  content: counter(list-2, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-set: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor li[data-list=ordered].ql-indent-3 > .ql-ui:before {
  content: counter(list-3, decimal) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-set: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor li[data-list=ordered].ql-indent-4 > .ql-ui:before {
  content: counter(list-4, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-set: list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-reset: list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor li[data-list=ordered].ql-indent-5 > .ql-ui:before {
  content: counter(list-5, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-set: list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-reset: list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor li[data-list=ordered].ql-indent-6 > .ql-ui:before {
  content: counter(list-6, decimal) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-set: list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-reset: list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor li[data-list=ordered].ql-indent-7 > .ql-ui:before {
  content: counter(list-7, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-set: list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-reset: list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor li[data-list=ordered].ql-indent-8 > .ql-ui:before {
  content: counter(list-8, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-set: list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-reset: list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor li[data-list=ordered].ql-indent-9 > .ql-ui:before {
  content: counter(list-9, decimal) ". ";
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor li.ql-direction-rtl > .ql-ui:before {
  margin-left: .3em;
  margin-right: -1.5em;
  text-align: left;
}
.ql-editor table {
  table-layout: fixed;
  width: 100%;
}
.ql-editor table td {
  outline: none;
}
.ql-editor .ql-code-block-container {
  font-family: monospace;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family:
    Georgia,
    Times New Roman,
    serif;
}
.ql-editor .ql-font-monospace {
  font-family:
    Monaco,
    Courier New,
    monospace;
}
.ql-editor .ql-size-small {
  font-size: .75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor .ql-ui {
  position: absolute;
}
.ql-editor.ql-blank::before {
  color: rgba(0, 0, 0, 0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-snow.ql-toolbar:after,
.ql-snow .ql-toolbar:after {
  clear: both;
  content: "";
  display: table;
}
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-snow.ql-toolbar button svg,
.ql-snow .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-snow.ql-toolbar button:active:hover,
.ql-snow .ql-toolbar button:active:hover {
  outline: none;
}
.ql-snow.ql-toolbar input.ql-image[type=file],
.ql-snow .ql-toolbar input.ql-image[type=file] {
  display: none;
}
.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button:focus,
.ql-snow .ql-toolbar button:focus,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button:focus .ql-fill,
.ql-snow .ql-toolbar button:focus .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button:focus .ql-stroke,
.ql-snow .ql-toolbar button:focus .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-miter,
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #06c;
}
@media (pointer:coarse) {
  .ql-snow.ql-toolbar button:hover:not(.ql-active),
  .ql-snow .ql-toolbar button:hover:not(.ql-active) {
    color: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #444;
  }
}
.ql-snow {
  box-sizing: border-box;
}
.ql-snow * {
  box-sizing: border-box;
}
.ql-snow .ql-hidden {
  display: none;
}
.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
  visibility: hidden;
}
.ql-snow .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-snow .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-snow .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-snow .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-snow .ql-formats:after {
  clear: both;
  content: "";
  display: table;
}
.ql-snow .ql-stroke {
  fill: none;
  stroke: #444;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-snow .ql-stroke-miter {
  fill: none;
  stroke: #444;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: #444;
}
.ql-snow .ql-empty {
  fill: none;
}
.ql-snow .ql-even {
  fill-rule: evenodd;
}
.ql-snow .ql-thin,
.ql-snow .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-snow .ql-transparent {
  opacity: .4;
}
.ql-snow .ql-direction svg:last-child {
  display: none;
}
.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-snow .ql-editor h1 {
  font-size: 2em;
}
.ql-snow .ql-editor h2 {
  font-size: 1.5em;
}
.ql-snow .ql-editor h3 {
  font-size: 1.17em;
}
.ql-snow .ql-editor h4 {
  font-size: 1em;
}
.ql-snow .ql-editor h5 {
  font-size: .83em;
}
.ql-snow .ql-editor h6 {
  font-size: .67em;
}
.ql-snow .ql-editor a {
  text-decoration: underline;
}
.ql-snow .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-snow .ql-editor code,
.ql-snow .ql-editor .ql-code-block-container {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-snow .ql-editor .ql-code-block-container {
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-snow .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-snow .ql-editor .ql-code-block-container {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-snow .ql-editor img {
  max-width: 100%;
}
.ql-snow .ql-picker {
  color: #444;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-snow .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-snow .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-snow .ql-picker-options {
  background-color: #fff;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: #ccc;
  z-index: 2;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-snow .ql-color-picker,
.ql-snow .ql-icon-picker {
  width: 28px;
}
.ql-snow .ql-color-picker .ql-picker-label,
.ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-snow .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0;
}
.ql-snow .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-snow .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0;
  width: 16px;
}
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=""])::before {
  content: attr(data-label);
}
.ql-snow .ql-picker.ql-header {
  width: 98px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: "Normal";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: "Heading 1";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: "Heading 2";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: "Heading 3";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: "Heading 4";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: "Heading 5";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: "Heading 6";
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: .83em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: .67em;
}
.ql-snow .ql-picker.ql-font {
  width: 108px;
}
.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: "Sans Serif";
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: "Serif";
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: "Monospace";
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family:
    Georgia,
    Times New Roman,
    serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family:
    Monaco,
    Courier New,
    monospace;
}
.ql-snow .ql-picker.ql-size {
  width: 98px;
}
.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: "Normal";
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: "Small";
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: "Large";
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: "Huge";
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}
.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-code-block-container {
  position: relative;
}
.ql-code-block-container .ql-ui {
  right: 5px;
  top: 5px;
}
.ql-toolbar.ql-snow {
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family:
    "Helvetica Neue",
    "Helvetica",
    "Arial",
    sans-serif;
  padding: 8px;
}
.ql-toolbar.ql-snow .ql-formats {
  margin-right: 15px;
}
.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid transparent;
}
.ql-toolbar.ql-snow .ql-picker-options {
  border: 1px solid transparent;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 8px;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}
.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: 0;
}
.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 5px #ddd;
  color: #444;
  padding: 5px 12px;
  white-space: nowrap;
}
.ql-snow .ql-tooltip::before {
  content: "Visit URL:";
  line-height: 26px;
  margin-right: 8px;
}
.ql-snow .ql-tooltip input[type=text] {
  display: none;
  border: 1px solid #ccc;
  font-size: 13px;
  height: 26px;
  margin: 0;
  padding: 3px 5px;
  width: 170px;
}
.ql-snow .ql-tooltip a.ql-preview {
  display: inline-block;
  max-width: 200px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}
.ql-snow .ql-tooltip a.ql-action::after {
  border-right: 1px solid #ccc;
  content: "Edit";
  margin-left: 16px;
  padding-right: 8px;
}
.ql-snow .ql-tooltip a.ql-remove::before {
  content: "Remove";
  margin-left: 8px;
}
.ql-snow .ql-tooltip a {
  line-height: 26px;
}
.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
  display: none;
}
.ql-snow .ql-tooltip.ql-editing input[type=text] {
  display: inline-block;
}
.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
  border-right: 0;
  content: "Save";
  padding-right: 0;
}
.ql-snow .ql-tooltip[data-mode=link]::before {
  content: "Enter link:";
}
.ql-snow .ql-tooltip[data-mode=formula]::before {
  content: "Enter formula:";
}
.ql-snow .ql-tooltip[data-mode=video]::before {
  content: "Enter video:";
}
.ql-snow a {
  color: #06c;
}
.ql-container.ql-snow {
  border: 1px solid #ccc;
}

/* src/theme/ngx-datatable.scss */
.ngx-datatable.material .datatable-body .datatable-body-row .datatable-body-cell {
  padding: 0.3em 1em;
}
.ngx-datatable.material .datatable-header .datatable-header-cell {
  padding: 0.3em 1em;
}
.ngx-datatable.material .datatable-body .datatable-body-row .datatable-body-cell {
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.ngx-datatable.material .datatable-body .datatable-body-row .datatable-body-cell span {
  margin: auto;
}
.ngx-datatable .datatable-header .datatable-header-cell .datatable-header-cell-template-wrap {
  text-align: center;
}
.datatable-body-row {
  cursor: pointer;
}

/* src/theme/news.scss */
.news {
  --swiper-pagination-bottom: 0px;
}
.news .alert-container {
  height: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}
.news .alert-content-wrapper {
  display: flex;
  align-items: center;
}
.news .alert-icon {
  flex-shrink: 0;
  margin-right: 0.1em;
  height: 1.5rem;
  width: 1.5rem;
  display: inline-block;
  vertical-align: middle;
}
.news .alert-title {
  font-weight: bold;
}
.news .alert-text {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  color: black !important;
}
.news .alert-text strong {
  font-weight: 600;
}
.news .alert-link-wrapper {
  font-size: 0.875rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.news .alert-link {
  font-weight: 600;
  text-decoration: underline;
  transition: color 200ms ease-in-out;
}
.news .alert-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 0.5em;
}
.news :not(.alert-background) {
  z-index: 1;
}
.news .alert-container.Warning {
  background-color: #fee2e2;
  border: 1px solid #f87171;
  color: #b91c1c;
}
.news .alert-container.Warning .alert-icon {
  color: #ef4444;
}
.news .alert-container.Warning .alert-link {
  color: #991b1b;
}
.news .alert-container.Warning .alert-link:hover {
  color: #7f1d1d;
}
.news .alert-container.Info {
  background-color: #e0f2f7;
  border: 1px solid #29b6f6;
  color: #01579b;
}
.news .alert-container.Info .alert-icon {
  color: #2196f3;
}
.news .alert-container.Info .alert-link {
  color: #0d47a1;
}
.news .alert-container.Info .alert-link:hover {
  color: #1565c0;
}

/* src/theme/frame.scss */
ion-item.frame::part(native) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 0;
}
ion-item.frame {
  display: inline-block;
  width: -webkit-fill-available;
  padding: 0.5em;
  --inner-padding-end: 0px;
  --inner-padding-start: 0px;
  --inner-padding-bottom: 0px;
  --inner-padding-top: 0px;
}
ion-item.frame .content {
  height: 100%;
  width: 100%;
}
ion-item.frame .content.verticalCenter {
  height: fit-content;
  margin: auto;
}
ion-item.frame .content.verticalCenter div {
  vertical-align: middle;
}
ion-item.frame ::part(native) {
  height: 100%;
}
ion-item.frame .footer {
  width: 100%;
}
ion-item.frame .line {
  display: block;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
ion-item.frame .line .avatar {
  padding: 0.2em;
  display: inline-block;
  vertical-align: middle;
}
ion-item.frame .line .avatar img {
  width: 100%;
  height: auto;
}
ion-item.frame .line .avatar.wauto {
  width: auto;
}
ion-item.frame .line .avatar.w10 {
  width: 10%;
}
ion-item.frame .line .avatar.w20 {
  width: 20%;
}
ion-item.frame .line .avatar.w30 {
  width: 30%;
}
ion-item.frame .line .avatar.w40 {
  width: 40%;
}
ion-item.frame .line .avatar.w100 {
  width: 100%;
}
ion-item.frame .line .avatar.fitcontent {
  width: fit-content;
}
ion-item.frame .line .avatar.wmax4em {
  max-width: 4em;
}
ion-item.frame .line p {
  margin-top: 0.3em;
  margin-bottom: 0.3em;
  font-size: 0.8em;
}
ion-item.frame .line p.bold {
  font-weight: bold;
}
ion-item.frame .line p.isDanger {
  color: var(--ion-color-danger) !important;
  font-weight: bold;
}
ion-item.frame .line p.help {
  font-style: italic;
  opacity: 0.7;
}
ion-item.frame .line .description {
  text-align: center;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  width: 50%;
  margin-bottom: 0.5em;
  margin: auto;
}
ion-item.frame .line .description .subtitle {
  font-weight: bold;
  font-size: 1em;
  vertical-align: bottom;
}
ion-item.frame .line .description .subtitle img {
  height: 1em;
  margin-right: 0.3em;
  vertical-align: text-top;
}
ion-item.frame .line .description .title {
  font-weight: bold;
  font-size: 1.3em;
  vertical-align: bottom;
}
ion-item.frame .line .description .title img {
  height: 1.2em;
  margin-right: 0.3em;
  vertical-align: text-top;
}
ion-item.frame .line .description .date {
  color: #676767;
  font-size: 0.8em;
  vertical-align: bottom;
}
ion-item.frame .line .description .action {
  font-size: 0.6em;
  vertical-align: bottom;
  white-space: nowrap;
}
ion-item.frame .line .description .action * {
  display: inline-block;
}
ion-item.frame .line .description .action.big {
  font-size: 0.8em;
}
ion-item.frame .line .description .action.validMiddle,
ion-item.frame .line .description .action.validMiddle ion-icon {
  vertical-align: middle;
}
ion-item.frame .line .description .fileLink {
  font-size: 0.8em;
}
ion-item.frame .line .description .data ion-button {
  font-size: 0.9em;
}
ion-item.frame .line .description .chip.small {
  font-size: 0.8em;
  min-height: 2em;
}
ion-item.frame .line .description .chip.small img {
  max-width: 25px;
}
ion-item.frame .line .description p.warning {
  color: var(--ion-color-danger) !important;
}
ion-item.frame .line .description.thumbnails img {
  margin: 0.1em;
  max-width: 100%;
  max-height: 100%;
}
ion-item.frame .line .description.w10 {
  width: 10%;
}
ion-item.frame .line .description.w20 {
  width: 20%;
}
ion-item.frame .line .description.w30 {
  width: 30%;
}
ion-item.frame .line .description.w40 {
  width: 40%;
}
ion-item.frame .line .description.w50 {
  width: 50%;
}
ion-item.frame .line .description.w60 {
  width: 60%;
}
ion-item.frame .line .description.w70 {
  width: 70%;
}
ion-item.frame .line .description.w80 {
  width: 80%;
}
ion-item.frame .line .description.w90 {
  width: 90%;
}
ion-item.frame .line .description.w100 {
  width: 100%;
}
ion-item.frame .line .description.fitcontent {
  min-width: fit-content;
}
ion-item.frame .line .description.left {
  text-align: left;
  padding-left: 0.2em;
  margin-left: 0;
}
ion-item.frame .line .description.right {
  text-align: right;
  padding-right: 0.5em;
}
ion-item.frame .line .description.comment {
  white-space: pre-wrap;
}
ion-item.frame .line .description.moreInformation {
  font-size: 0.8em;
}
ion-item.frame .line .description.moreInformation ion-icon {
  vertical-align: middle;
}
ion-item.frame .line .description.vtop {
  vertical-align: top;
  margin-top: initial;
}
ion-item.frame .line.vmiddle .description {
  vertical-align: middle;
}
ion-item.frame ion-item-group,
ion-item.frame ion-item {
  width: 100%;
}
ion-item.frame.light {
  --background: var(--ion-color-light);
  background: var(--ion-color-light);
}
ion-item.frame.selected {
  border: 3px solid rgb(242, 217, 177) !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4) !important;
  --background: rgb(242, 217, 177) !important;
  background: rgb(242, 217, 177) !important;
  --transition: background 200ms linear, opacity 200ms linear;
  --transition: --background 200ms linear, opacity 200ms linear;
  --transition: box-shadow 200ms linear, opacity 200ms linear;
  --transition: border 200ms linear, opacity 200ms linear;
}
ion-item.frame.isTreatmentSucess2 {
  border: 1px solid var(--ion-color-success) !important;
}
ion-item.frame.isTreatmentError2 {
  border: 1px solid var(--ion-color-danger) !important;
}
ion-item.frame.isTreatmentInprogress2 {
  border: 1px solid var(--ion-color-warning) !important;
}
@media screen and (min-width: 500px) {
  div.frames:not(.noFrame) {
    padding: 0.5em;
  }
  div.frames:not(.noFrame) ion-item.frame {
    --background: white;
    background: white;
    border-radius: 20px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.4) inset;
    padding: 1em;
  }
  div.frames:not(.noFrame) ion-item.frame:hover {
    box-shadow: 0 0 5px #fbb13b !important;
  }
  div.frames:not(.noFrame) ion-item-group,
  div.frames:not(.noFrame) ion-item {
    --background: none;
    background: none;
  }
  div.frames:not(.noFrame) .native-input,
  div.frames:not(.noFrame) .native-textarea,
  div.frames:not(.noFrame) textarea,
  div.frames:not(.noFrame) ion-select {
    border-radius: 15px;
    height: 100%;
    padding: 0.5em 0.5em 0.5em 0.8em !important;
    --background: var(--ion-background-color) !important;
    background-color: var(--ion-background-color) !important;
    background: var(--ion-background-color) !important;
    -webkit-box-shadow: 0 0 0px 1000px var(--ion-background-color) inset !important;
  }
  div.frames:not(.noFrame) datetime-button,
  div.frames:not(.noFrame) div.input,
  div.frames:not(.noFrame) .form {
    border-radius: 15px;
    background: unset !important;
  }
  div.frames:not(.noFrame) ion-select {
    padding: 0 0.7em 0 0.7em !important;
    height: auto;
  }
}
@media screen and (min-width: 500px) and (prefers-color-scheme: dark) {
  div.frames:not(.noFrame) ion-item.frame {
    --background: rgb(26, 26, 26) !important;
    background: rgb(26, 26, 26) !important;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5) inset !important;
  }
  div.frames:not(.noFrame) .native-input,
  div.frames:not(.noFrame) .native-textarea,
  div.frames:not(.noFrame) textarea,
  div.frames:not(.noFrame) ion-select {
    border-radius: 15px;
    height: 100%;
    padding: 0.5em 0.5em 0.5em 0.8em !important;
    --background: rgb(92, 89, 89) !important;
    background-color: rgb(92, 89, 89) !important;
    background: rgb(92, 89, 89) !important;
    -webkit-box-shadow: 0 0 0px 1000px rgb(92, 89, 89) inset !important;
  }
  div.frames:not(.noFrame) datetime-button,
  div.frames:not(.noFrame) div.input,
  div.frames:not(.noFrame) .form {
    border-radius: 15px;
    background: rgb(92, 89, 89) !important;
  }
}
div.frames:not(.noFrameOnMobile):not(.noFrame) {
  padding: 0.5em;
}
div.frames:not(.noFrameOnMobile):not(.noFrame) ion-item.frame {
  --background: white;
  background: white;
  border-radius: 20px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.4) inset;
  padding: 0.7em;
}
div.frames:not(.noFrameOnMobile):not(.noFrame) ion-item-group,
div.frames:not(.noFrameOnMobile):not(.noFrame) ion-item {
  --background: none;
  background: none;
}
div.frames:not(.noFrameOnMobile):not(.noFrame) .native-input,
div.frames:not(.noFrameOnMobile):not(.noFrame) .native-textarea,
div.frames:not(.noFrameOnMobile):not(.noFrame) textarea,
div.frames:not(.noFrameOnMobile):not(.noFrame) ion-select {
  border-radius: 15px;
  height: 100%;
  --background: var(--ion-background-color) !important;
  background-color: var(--ion-background-color) !important;
  background: var(--ion-background-color) !important;
  -webkit-box-shadow: 0 0 0px 1000px var(--ion-background-color) inset !important;
}
div.frames:not(.noFrameOnMobile):not(.noFrame) datetime-button,
div.frames:not(.noFrameOnMobile):not(.noFrame) div.input,
div.frames:not(.noFrameOnMobile):not(.noFrame) .form {
  border-radius: 15px;
  background: var(--ion-background-color) !important;
}
div.frames:not(.noFrameOnMobile):not(.noFrame) ion-select {
  padding: 0 0.7em 0 0.7em !important;
  height: auto;
}
@media (prefers-color-scheme: dark) {
  div.frames:not(.noFrameOnMobile):not(.noFrame) ion-item.frame {
    --background: rgb(26, 26, 26) !important;
    background: rgb(26, 26, 26) !important;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5) inset !important;
  }
  div.frames:not(.noFrameOnMobile):not(.noFrame) .native-input,
  div.frames:not(.noFrameOnMobile):not(.noFrame) .native-textarea,
  div.frames:not(.noFrameOnMobile):not(.noFrame) textarea,
  div.frames:not(.noFrameOnMobile):not(.noFrame) ion-select {
    border-radius: 15px;
    height: 100%;
    padding: 0.5em 0.5em 0.5em 0.8em !important;
    --background: rgb(92, 89, 89) !important;
    background-color: rgb(92, 89, 89) !important;
    background: rgb(92, 89, 89) !important;
    -webkit-box-shadow: 0 0 0px 1000px rgb(92, 89, 89) inset !important;
  }
  div.frames:not(.noFrameOnMobile):not(.noFrame) datetime-button,
  div.frames:not(.noFrameOnMobile):not(.noFrame) div.input,
  div.frames:not(.noFrameOnMobile):not(.noFrame) .form {
    border-radius: 15px;
    background: rgb(92, 89, 89) !important;
  }
}
div.frames:not(.noFrameOnMobile):not(.noFrame) ion-item.frame.warning {
  --background: #fbe293;
  background: #fbe293;
}
div.frames {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  gap: 10px;
}
div.frames ion-item.frame {
  min-width: 200px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
div.frames ion-item.frame.heightFitContent {
  height: fit-content;
}
div.frames.fullWidth {
  grid-template-columns: repeat(auto-fit, 100%);
}
div.frames.fullWidth ion-item.frame {
  max-width: 100%;
}

/* src/theme/agenda.scss */
.timeFlux {
  margin-bottom: 0em;
  margin: auto;
  max-width: 600px;
  width: 100%;
}
.timeFlux div.date {
  font-size: 1.3em;
  font-weight: bold;
  margin-left: 0.8em;
}
.timeFlux ul {
  list-style: none;
  padding: 1px 30px 0px 0px;
  color: #000;
  font-size: 13px;
}
.timeFlux ul li {
  position: relative;
  margin-left: 30px;
  width: 100%;
  max-width: 100%;
  padding-bottom: 0.5em;
}
.timeFlux ul li.highlight {
  background: rgba(0, 236, 0, 0.4);
  border-radius: 6px;
  box-shadow: 0 0 4px rgba(0, 255, 0, 0.12), 0 10px 10px rgba(0, 255, 0, 0.08);
}
.timeFlux ul li > span {
  width: 2px;
  height: 100%;
  left: -10px;
  top: 0;
  position: absolute;
}
.timeFlux ul li.error > span {
  background: none;
  border-left: 2px dashed #f00;
}
.timeFlux ul li.warning > span {
  background: none;
  border-left: 2px dashed #000;
}
.timeFlux ul li.ok > span {
  border-left: 2px solid var(--ion-color-success);
}
.timeFlux ul li.birthday > span {
  background: none;
  border-left: 2px dashed #f00;
}
.timeFlux ul li.today > span {
  background: none;
  border-left: 2px solid #b2ccfe;
}
.timeFlux ul li > span:before,
.timeFlux ul li > span:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #fff;
  position: absolute;
  background: #86b7e7;
  left: -7px;
  top: 0;
}
.timeFlux ul li span:after {
  top: 100%;
}
.timeFlux ul li > div {
}
.timeFlux ul:before {
  width: 1px;
  height: 100%;
  position: absolute;
  border-left: 2px dashed #f00;
}
.timeFlux div .actionUpdate {
  float: right;
  opacity: 0.3;
}
.timeFlux div .actionUpdate a {
  color: #000;
}
.timeFlux div .title {
  font-weight: 600;
  font-size: 1em;
}
.timeFlux div .type {
  font-weight: 400;
  font-size: 1em;
}
.timeFlux div .info {
  font-weight: 300;
}
.timeFlux div .info ion-icon {
  vertical-align: middle;
}
.timeFlux span.number {
  height: 100%;
  text-align: center;
}
.timeFlux span.number span {
  position: absolute;
  font-size: 0.9em;
  left: -90px;
  font-weight: bold;
  margin-right: 0.1em;
  width: 90px;
}
.timeFlux span.number span:first-child {
  top: 20%;
}
@media (prefers-color-scheme: dark) {
  div.date {
    color: rgb(207, 207, 207);
  }
  .vaccines ul li.warning > span {
    border-left: 2px dashed rgb(207, 207, 207);
  }
  .vaccines ul li.ok > span {
    border-left: 2px solid rgb(207, 207, 207);
  }
}

/* node_modules/cropperjs/src/css/cropper.scss */
.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
.cropper-container img {
  backface-visibility: hidden;
  display: block;
  height: 100%;
  image-orientation: 0deg;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  width: 100%;
}
.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.cropper-wrap-box,
.cropper-canvas {
  overflow: hidden;
}
.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}
.cropper-modal {
  background-color: #000;
  opacity: 0.5;
}
.cropper-view-box {
  display: block;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
  overflow: hidden;
  width: 100%;
}
.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: 0.5;
  position: absolute;
}
.cropper-dashed.dashed-h {
  border-bottom-width: 1px;
  border-top-width: 1px;
  height: 33.3333333333%;
  left: 0;
  top: 33.3333333333%;
  width: 100%;
}
.cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  left: 33.3333333333%;
  top: 0;
  width: 33.3333333333%;
}
.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  width: 0;
}
.cropper-center::before,
.cropper-center::after {
  background-color: #eee;
  content: " ";
  display: block;
  position: absolute;
}
.cropper-center::before {
  height: 1px;
  left: -3px;
  top: 0;
  width: 7px;
}
.cropper-center::after {
  height: 7px;
  left: 0;
  top: -3px;
  width: 1px;
}
.cropper-face,
.cropper-line,
.cropper-point {
  display: block;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  width: 100%;
}
.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}
.cropper-line {
  background-color: #39f;
}
.cropper-line.line-e {
  cursor: ew-resize;
  right: -3px;
  top: 0;
  width: 5px;
}
.cropper-line.line-n {
  cursor: ns-resize;
  height: 5px;
  left: 0;
  top: -3px;
}
.cropper-line.line-w {
  cursor: ew-resize;
  left: -3px;
  top: 0;
  width: 5px;
}
.cropper-line.line-s {
  bottom: -3px;
  cursor: ns-resize;
  height: 5px;
  left: 0;
}
.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: 0.75;
  width: 5px;
}
.cropper-point.point-e {
  cursor: ew-resize;
  margin-top: -3px;
  right: -3px;
  top: 50%;
}
.cropper-point.point-n {
  cursor: ns-resize;
  left: 50%;
  margin-left: -3px;
  top: -3px;
}
.cropper-point.point-w {
  cursor: ew-resize;
  left: -3px;
  margin-top: -3px;
  top: 50%;
}
.cropper-point.point-s {
  bottom: -3px;
  cursor: s-resize;
  left: 50%;
  margin-left: -3px;
}
.cropper-point.point-ne {
  cursor: nesw-resize;
  right: -3px;
  top: -3px;
}
.cropper-point.point-nw {
  cursor: nwse-resize;
  left: -3px;
  top: -3px;
}
.cropper-point.point-sw {
  bottom: -3px;
  cursor: nesw-resize;
  left: -3px;
}
.cropper-point.point-se {
  bottom: -3px;
  cursor: nwse-resize;
  height: 20px;
  opacity: 1;
  right: -3px;
  width: 20px;
}
@media (min-width: 768px) {
  .cropper-point.point-se {
    height: 15px;
    width: 15px;
  }
}
@media (min-width: 992px) {
  .cropper-point.point-se {
    height: 10px;
    width: 10px;
  }
}
@media (min-width: 1200px) {
  .cropper-point.point-se {
    height: 5px;
    opacity: 0.75;
    width: 5px;
  }
}
.cropper-point.point-se::before {
  background-color: #39f;
  bottom: -50%;
  content: " ";
  display: block;
  height: 200%;
  opacity: 0;
  position: absolute;
  right: -50%;
  width: 200%;
}
.cropper-invisible {
  opacity: 0;
}
.cropper-bg {
  background-image: url("./media/bg-ML3VXWXI.png");
}
.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}
.cropper-hidden {
  display: none !important;
}
.cropper-move {
  cursor: move;
}
.cropper-crop {
  cursor: crosshair;
}
.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}

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